diff options
author | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-02-10 15:13:12 (GMT) |
---|---|---|
committer | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-02-10 15:13:12 (GMT) |
commit | 8038ee0406c05b1bc9c147e47a7ae8c02da6afbf (patch) | |
tree | 3cc3dca407633ab420aa96cbb7d9308b2d76e3b1 /src/ProgressWidget.ui | |
parent | c021720bfd2d45d35786b6d31d23402ec23df404 (diff) |
Moved progress display to status bar. Disabled by default but can be enabled in .pro file with CONFIG += progresswidget. Please test and enable as default if it looks good on all platforms.
git-svn-id: http://svn.clifford.at/openscad/trunk@432 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'src/ProgressWidget.ui')
-rw-r--r-- | src/ProgressWidget.ui | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/src/ProgressWidget.ui b/src/ProgressWidget.ui new file mode 100644 index 0000000..895586c --- /dev/null +++ b/src/ProgressWidget.ui @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>ProgressWidget</class> + <widget class="QWidget" name="ProgressWidget"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>121</width> + <height>20</height> + </rect> + </property> + <property name="windowTitle"> + <string>Form</string> + </property> + <layout class="QHBoxLayout" name="horizontalLayout"> + <property name="spacing"> + <number>5</number> + </property> + <property name="margin"> + <number>0</number> + </property> + <item> + <widget class="QProgressBar" name="progressBar"> + <property name="value"> + <number>24</number> + </property> + <property name="format"> + <string>%v / %m</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="stopButton"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="maximumSize"> + <size> + <width>12</width> + <height>12</height> + </size> + </property> + <property name="baseSize"> + <size> + <width>12</width> + <height>12</height> + </size> + </property> + <property name="icon"> + <iconset resource="../openscad.qrc"> + <normaloff>:/icons/stopbutton.png</normaloff>:/icons/stopbutton.png</iconset> + </property> + <property name="iconSize"> + <size> + <width>12</width> + <height>12</height> + </size> + </property> + <property name="flat"> + <bool>true</bool> + </property> + </widget> + </item> + </layout> + </widget> + <resources> + <include location="../openscad.qrc"/> + </resources> + <connections/> +</ui> |