开发者

Qt switching between views

How do I switch between the two screens on the Qt?

For example, I have a button - static text plus a toolbar. Now I will add it to a frame and set it as a central widget. It works well for one window.

What if I move it to the next window? Then I need to show some other stuff like another button, some images etc... and what if I come back to the first view again?

How do I show my old开发者_C百科 widgets back?


I'm not sure I got your problem right but, you could have different scenarios :

  1. You could simply use groupboxes... Some widgets in groupbox1, otherWidget in groupbox2, and you display the groupbox you want to use, hiding the others...

  2. You could use stackedWidget, which simulates "pages" of widgets stacked on top of eachothers... more informations here : http://qt.nokia.com/doc/4.6/qstackedwidget.html.

  3. You could use other way like using tabs : http://doc.trolltech.com/4.6/qtabwidget.html

  4. Maybe this example would be useful to you : http://qt.nokia.com/doc/4.6/dialogs-configdialog.html

Hope it helps a bit !


I'd recommend checking out Animation/States example (should be in /qt/examples/animation/states/ subdirectory of your Qt installation). It shows how to combine state machine representing application logic with presentation layer and get cool animation effects for free (of course if you don't need eye candy, you can set widgets properties without any animation).

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜