diff options
Diffstat (limited to 'korn/progress_dialog.ui')
-rw-r--r-- | korn/progress_dialog.ui | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/korn/progress_dialog.ui b/korn/progress_dialog.ui new file mode 100644 index 000000000..6e6b53fad --- /dev/null +++ b/korn/progress_dialog.ui @@ -0,0 +1,120 @@ +<!DOCTYPE UI><UI version="3.3" stdsetdef="1"> +<class>DoubleProgressDialog</class> +<widget class="QDialog"> + <property name="name"> + <cstring>DoubleProgressDialog</cstring> + </property> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>286</width> + <height>140</height> + </rect> + </property> + <property name="caption"> + <string>Progress</string> + </property> + <vbox> + <property name="name"> + <cstring>unnamed</cstring> + </property> + <widget class="QLabel"> + <property name="name"> + <cstring>lbText</cstring> + </property> + <property name="text"> + <string></string> + </property> + </widget> + <widget class="QProgressBar"> + <property name="name"> + <cstring>pbBoxes</cstring> + </property> + </widget> + <widget class="QProgressBar"> + <property name="name"> + <cstring>pbProgress</cstring> + </property> + </widget> + <widget class="QLayoutWidget"> + <property name="name"> + <cstring>layout1</cstring> + </property> + <hbox> + <property name="name"> + <cstring>unnamed</cstring> + </property> + <spacer> + <property name="name"> + <cstring>spacer1</cstring> + </property> + <property name="orientation"> + <enum>Horizontal</enum> + </property> + <property name="sizeType"> + <enum>Expanding</enum> + </property> + <property name="sizeHint"> + <size> + <width>41</width> + <height>20</height> + </size> + </property> + </spacer> + <widget class="QPushButton"> + <property name="name"> + <cstring>pbCancel</cstring> + </property> + <property name="text"> + <string>&Cancel</string> + </property> + </widget> + <spacer> + <property name="name"> + <cstring>spacer2</cstring> + </property> + <property name="orientation"> + <enum>Horizontal</enum> + </property> + <property name="sizeType"> + <enum>Expanding</enum> + </property> + <property name="sizeHint"> + <size> + <width>41</width> + <height>31</height> + </size> + </property> + </spacer> + </hbox> + </widget> + </vbox> +</widget> +<connections> + <connection> + <sender>pbCancel</sender> + <signal>clicked()</signal> + <receiver>DoubleProgressDialog</receiver> + <slot>cancelbutton()</slot> + </connection> +</connections> +<tabstops> + <tabstop>pbCancel</tabstop> +</tabstops> +<includes> + <include location="local" impldecl="in implementation">progress_dialog.ui.h</include> +</includes> +<signals> + <signal>cancelPressed()</signal> +</signals> +<slots> + <slot>setText( const QString & str )</slot> + <slot>setNumberOfBoxes( int number )</slot> + <slot>setProgressOfBoxes( int number )</slot> + <slot>setNumberOfSteps( int number )</slot> + <slot>setProgress( int number )</slot> + <slot access="private" specifier="non virtual">cancelbutton()</slot> +</slots> +<layoutdefaults spacing="6" margin="11"/> +</UI> |