Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to dynamically hide/show widget like so:

Default:
|-------|
|       |
| text  |
| editor|
|-------|


With webkit preview:
|-------|-------|
|       |       |
| text  | web   |
| editor| widget|
|-------|-------|


With okular preview:
|-------|-------|
|       |       |
| text  | okular|
| editor| widget|
|-------|-------|
share|improve this question
So? What have you tried? – Mat Feb 16 '12 at 6:11
how? I've got the two widgets in a QHBoxLayout but I'm unsure how to do retract widgets. – Roman A. Taycher Feb 16 '12 at 6:16
1  
Can you check the QWidget docs if it has any sort of hide method or something? Or QLayout docs to see if you can remove stuff from them? – Mat Feb 16 '12 at 6:19
Interesting isn't it? Did you try using it? What happened? – Mat Feb 16 '12 at 6:21
show 1 more comment

1 Answer

Just add all your widgets into the layout and use QWidget::hide(), QWidget::show() when needed.

For more complex situations you can use The State Machine Framework.

share|improve this answer
1  
+1 for the state machine. Didn't knew it. – UmNyobe Feb 16 '12 at 8:31
I edited the link to point to the Qt 5.0 page. The original link was broken. – Adri C.S. Mar 18 at 17:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.