diff options
author | Andrew <forkk@forkk.net> | 2013-02-05 16:34:20 -0600 |
---|---|---|
committer | Andrew <forkk@forkk.net> | 2013-02-05 16:34:20 -0600 |
commit | a416c58a93dd9d108f4c4fa968b9431e30834c5c (patch) | |
tree | 4f9cb446abc035fca98628358ab4a65d81f1f962 /gui/taskdialog.ui | |
parent | f8ea8d9e3bb949d7c4ea39c47ca6091f61dc1cfc (diff) | |
download | PrismLauncher-a416c58a93dd9d108f4c4fa968b9431e30834c5c.tar.gz PrismLauncher-a416c58a93dd9d108f4c4fa968b9431e30834c5c.tar.bz2 PrismLauncher-a416c58a93dd9d108f4c4fa968b9431e30834c5c.zip |
Started working on task system and login system.
Diffstat (limited to 'gui/taskdialog.ui')
-rw-r--r-- | gui/taskdialog.ui | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/gui/taskdialog.ui b/gui/taskdialog.ui new file mode 100644 index 00000000..1cdf7978 --- /dev/null +++ b/gui/taskdialog.ui @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>TaskDialog</class> + <widget class="QDialog" name="TaskDialog"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>400</width> + <height>58</height> + </rect> + </property> + <property name="minimumSize"> + <size> + <width>400</width> + <height>0</height> + </size> + </property> + <property name="maximumSize"> + <size> + <width>600</width> + <height>16777215</height> + </size> + </property> + <property name="windowTitle"> + <string>Please wait...</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QLabel" name="statusLabel"> + <property name="text"> + <string>Task Status...</string> + </property> + <property name="wordWrap"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QProgressBar" name="taskProgressBar"> + <property name="value"> + <number>24</number> + </property> + <property name="textVisible"> + <bool>false</bool> + </property> + </widget> + </item> + </layout> + </widget> + <resources/> + <connections/> +</ui> |