Skip to content

Instantly share code, notes, and snippets.

@jbaiter
Created August 28, 2011 05:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbaiter/1176293 to your computer and use it in GitHub Desktop.
Save jbaiter/1176293 to your computer and use it in GitHub Desktop.
Simple Wizard
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Wizard</class>
<widget class="QWizard" name="Wizard">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>640</width>
<height>480</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="windowTitle">
<string>Wizard</string>
</property>
<property name="wizardStyle">
<enum>QWizard::ClassicStyle</enum>
</property>
<property name="options">
<set>QWizard::HaveHelpButton|QWizard::IgnoreSubTitles</set>
</property>
<property name="titleFormat">
<enum>Qt::PlainText</enum>
</property>
<widget class="QWizardPage" name="wizardPage1">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="title">
<string>Welcome</string>
</property>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>621</width>
<height>201</height>
</rect>
</property>
<property name="text">
<string>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin felis augue, cursus at molestie sed, auctor sit amet mi. Morbi mi arcu, sodales eu consectetur a, laoreet at ante. Vestibulum eu commodo nisi. Suspendisse suscipit orci sed nisi lobortis dictum. Sed iaculis ultricies accumsan. Suspendisse dolor felis, tristique vitae euismod pulvinar, faucibus in dolor. Fusce non orci eget felis lobortis porttitor non non augue. Phasellus porta porttitor nisl sed fringilla. Maecenas venenatis, dui in consequat volutpat, lectus velit dictum enim, non commodo est elit sed lectus. Donec suscipit quam sit amet augue auctor accumsan. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</widget>
<widget class="QWizardPage" name="wizardPage2"/>
<widget class="QWizardPage" name="wizardPage3"/>
<widget class="QWizardPage" name="wizardPage4"/>
<widget class="QWizardPage" name="wizardPage5"/>
</widget>
<resources/>
<connections/>
</ui>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment