aboutsummaryrefslogtreecommitdiff
path: root/mainwindow.ui
diff options
context:
space:
mode:
authorMax Christian Pohle2015-11-18 04:12:48 +0100
committerMax Christian Pohle2015-11-18 04:12:48 +0100
commitde6cb045fd2b237e58320f0da7f3a365ca4d2ace (patch)
tree2bc3a13c3308aadaa0e92c556d587c60f8d718de /mainwindow.ui
downloadqspacestatus-de6cb045fd2b237e58320f0da7f3a365ca4d2ace.tar.bz2
qspacestatus-de6cb045fd2b237e58320f0da7f3a365ca4d2ace.zip
downloads+parses json and displays systemtray icon
can be activated by a single click and shows the corresponding window.
Diffstat (limited to 'mainwindow.ui')
-rw-r--r--mainwindow.ui76
1 files changed, 76 insertions, 0 deletions
diff --git a/mainwindow.ui b/mainwindow.ui
new file mode 100644
index 0000000..812bddc
--- /dev/null
+++ b/mainwindow.ui
@@ -0,0 +1,76 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>MainWindow</class>
4 <widget class="QMainWindow" name="MainWindow">
5 <property name="geometry">
6 <rect>
7 <x>0</x>
8 <y>0</y>
9 <width>646</width>
10 <height>486</height>
11 </rect>
12 </property>
13 <property name="windowTitle">
14 <string>MainWindow</string>
15 </property>
16 <property name="windowIcon">
17 <iconset>
18 <normaloff>folder.png</normaloff>folder.png</iconset>
19 </property>
20 <widget class="QWidget" name="centralWidget"/>
21 <widget class="QMenuBar" name="menuBar">
22 <property name="geometry">
23 <rect>
24 <x>0</x>
25 <y>0</y>
26 <width>646</width>
27 <height>29</height>
28 </rect>
29 </property>
30 <widget class="QMenu" name="menuMenu1">
31 <property name="title">
32 <string>menu1</string>
33 </property>
34 <addaction name="actionExit"/>
35 </widget>
36 <addaction name="menuMenu1"/>
37 </widget>
38 <widget class="QToolBar" name="mainToolBar">
39 <attribute name="toolBarArea">
40 <enum>TopToolBarArea</enum>
41 </attribute>
42 <attribute name="toolBarBreak">
43 <bool>false</bool>
44 </attribute>
45 </widget>
46 <widget class="QStatusBar" name="statusBar"/>
47 <action name="actionExit">
48 <property name="text">
49 <string>exit</string>
50 </property>
51 </action>
52 </widget>
53 <layoutdefault spacing="6" margin="11"/>
54 <resources/>
55 <connections>
56 <connection>
57 <sender>actionExit</sender>
58 <signal>triggered()</signal>
59 <receiver>MainWindow</receiver>
60 <slot>exitApplication()</slot>
61 <hints>
62 <hint type="sourcelabel">
63 <x>-1</x>
64 <y>-1</y>
65 </hint>
66 <hint type="destinationlabel">
67 <x>322</x>
68 <y>242</y>
69 </hint>
70 </hints>
71 </connection>
72 </connections>
73 <slots>
74 <slot>exitApplication()</slot>
75 </slots>
76</ui>
..