PDA

View Full Version : How to add a Wizard ?



npc
8th January 2007, 13:47
How to add a New Wizard in a Qt designer 4.2.2.

Im using windows version of Qt. want to creat wizards.

many thanks in advance

jpn
8th January 2007, 14:15
http://doc.trolltech.com/4.2/porting4.html#qwizard


The QWizard class is no longer part of the Qt public API. It has been renamed Q3Wizard and moved to Qt3Support. In Qt 4 applications, you can obtain the same result by combining a QStackedWidget with a QDialog and provide QPushButtons yourself.

There is also a QtWizard solution available from Trolltech. The new class was designed to work both for linear wizards and for wizards with more complex structures which let users reach different pages depending on the options they select. Based on the feedback we get, QtWizard may be considered for inclusion in a future Qt release.

ufo-vl
24th July 2007, 04:41
Hello,

At me the same question.
I'm using Qt 4.3, in this version was introduced class QWizard.
Can I use this class from Designer?
Thanks.

jpn
24th July 2007, 09:57
You can design individual pages in designer but not the wizard dialog itself.

ufo-vl
24th July 2007, 15:28
Thanks for your message,

What does it mean?
When need to create some Dialogs (create files for them), and using this classes for create my wizard?

Thanks.