PDA

View Full Version : StackedLayout



manaila
17th August 2011, 14:53
Hi
I have read that navigation between stacked layout pages is through QComboBox and QListView, but I don't like to use them.
I want to make a GUI application which consists of stacked layout pages, such that it starts with radio button menus so that I can select a menu and then press Next button which will display a page for the sub-menus of the selected menu. In the sub-menu page I want to be able to return back to main menu, and also to be able to go to the next sub-sub-menu page, just like in web pages.
Can this be achieved using Qt and how?

wysota
17th August 2011, 20:58
How about creating a wizard using QWizard?

manaila
18th August 2011, 14:23
Exactly what I wanted, thank you!