1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>ctkCmdLineModuleExplorerProgressWidget</class>
- <widget class="QWidget" name="ctkCmdLineModuleExplorerProgressWidget">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>400</width>
- <height>98</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Form</string>
- </property>
- <layout class="QVBoxLayout" name="verticalLayout">
- <item>
- <widget class="QLabel" name="ProgressTitle">
- <property name="text">
- <string>TextLabel</string>
- </property>
- </widget>
- </item>
- <item>
- <layout class="QHBoxLayout" name="horizontalLayout">
- <item>
- <widget class="QProgressBar" name="ProgressBar">
- <property name="value">
- <number>0</number>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QToolButton" name="PauseButton">
- <property name="text">
- <string>...</string>
- </property>
- <property name="icon">
- <iconset resource="resources/ctkCmdLineModuleExplorer.qrc">
- <normaloff>:/icons/pause.png</normaloff>:/icons/pause.png</iconset>
- </property>
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="autoRaise">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QToolButton" name="CancelButton">
- <property name="text">
- <string>...</string>
- </property>
- <property name="icon">
- <iconset resource="resources/ctkCmdLineModuleExplorer.qrc">
- <normaloff>:/icons/stop.png</normaloff>:/icons/stop.png</iconset>
- </property>
- <property name="autoRaise">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- <item>
- <widget class="QLabel" name="ProgressText">
- <property name="text">
- <string>TextLabel</string>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <resources>
- <include location="resources/ctkCmdLineModuleExplorer.qrc"/>
- </resources>
- <connections/>
- </ui>
|