-
Notifications
You must be signed in to change notification settings - Fork 3
/
stackandconquer.ui
146 lines (146 loc) · 3.84 KB
/
stackandconquer.ui
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>StackAndConquer</class>
<widget class="QMainWindow" name="StackAndConquer">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>600</width>
<height>480</height>
</rect>
</property>
<property name="windowTitle">
<string notr="true">StackAndConquer</string>
</property>
<property name="windowIcon">
<iconset resource="data/data.qrc">
<normaloff>:/stackandconquer.png</normaloff>:/stackandconquer.png</iconset>
</property>
<property name="locale">
<locale language="English" country="UnitedKingdom"/>
</property>
<widget class="QWidget" name="centralWidget"/>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>600</width>
<height>30</height>
</rect>
</property>
<widget class="QMenu" name="menuGame">
<property name="title">
<string>&Game</string>
</property>
<addaction name="action_NewGame"/>
<addaction name="action_LoadGame"/>
<addaction name="action_SaveGame"/>
<addaction name="separator"/>
<addaction name="action_Preferences"/>
<addaction name="separator"/>
<addaction name="action_Quit"/>
</widget>
<widget class="QMenu" name="menu_Help">
<property name="title">
<string>&Help</string>
</property>
<addaction name="action_Rules"/>
<addaction name="separator"/>
<addaction name="action_ReportBug"/>
<addaction name="action_Info"/>
</widget>
<addaction name="menuGame"/>
<addaction name="menu_Help"/>
</widget>
<widget class="QStatusBar" name="statusBar"/>
<action name="action_NewGame">
<property name="icon">
<iconset theme="document-new">
<normalon>:/menu/document-new.png</normalon>
</iconset>
</property>
<property name="text">
<string>&New game</string>
</property>
<property name="toolTip">
<string>New game</string>
</property>
</action>
<action name="action_Quit">
<property name="icon">
<iconset theme="application-exit">
<normalon>:/menu/system-log-out.png</normalon>
</iconset>
</property>
<property name="text">
<string>&Quit</string>
</property>
</action>
<action name="action_Info">
<property name="icon">
<iconset theme="help-about">
<normalon>:/menu/help-browser.png</normalon>
</iconset>
</property>
<property name="text">
<string>&About</string>
</property>
</action>
<action name="action_SaveGame">
<property name="enabled">
<bool>false</bool>
</property>
<property name="icon">
<iconset theme="document-save">
<normalon>:/menu/document-save.png</normalon>
</iconset>
</property>
<property name="text">
<string>&Save game</string>
</property>
<property name="toolTip">
<string>Save game</string>
</property>
</action>
<action name="action_LoadGame">
<property name="icon">
<iconset theme="document-open">
<normalon>:/menu/document-open.png</normalon>
</iconset>
</property>
<property name="text">
<string>&Load game</string>
</property>
<property name="toolTip">
<string>Load game</string>
</property>
</action>
<action name="action_ReportBug">
<property name="text">
<string>Report &bug</string>
</property>
</action>
<action name="action_Preferences">
<property name="icon">
<iconset theme="preferences-system">
<normalon>:/menu/preferences-system.png</normalon>
</iconset>
</property>
<property name="text">
<string>S&ettings</string>
</property>
</action>
<action name="action_Rules">
<property name="text">
<string>&Rules</string>
</property>
</action>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources>
<include location="data/data.qrc"/>
</resources>
<connections/>
</ui>