PDA

View Full Version : QToolBox pages visibility



creep33
3rd September 2010, 13:43
Hey guys,

I have a qtoolbox that initially has only three pages. After some time the user decides to add more pages to it. The result is that the inner widgets from the pages lose visibility.

51335134

Any thoughts?

tbscope
3rd September 2010, 15:04
I know this isn't going to help you but in such cases it's always a good idea to rethink what you want to do or are doing.

If a certain widget reaches its limits, then maybe you should try another approach.

A popular approach is to use a listwidget and a widget assigned to each item.
On the left you have a listwidget wich contains all the different pages (as a list).
On the right you have a widget which shows the settings of each page.

creep33
3rd September 2010, 16:17
I know this isn't going to help you but in such cases it's always a good idea to rethink what you want to do or are doing.

If a certain widget reaches its limits, then maybe you should try another approach.

A popular approach is to use a listwidget and a widget assigned to each item.
On the left you have a listwidget wich contains all the different pages (as a list).
On the right you have a widget which shows the settings of each page.

that is a good idea. However it will take me some time to do it. I am pretty sure there must be a way to keep a widget always visible. Any other thoughts?

creep33
8th September 2010, 14:43
I added the list as suggested. It worked fine. Thanks again.