-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.ui
190 lines (190 loc) · 4.36 KB
/
mainwindow.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1000</width>
<height>680</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>1000</width>
<height>680</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>1000</width>
<height>680</height>
</size>
</property>
<property name="font">
<font>
<family>Microsoft JhengHei</family>
<pointsize>12</pointsize>
</font>
</property>
<property name="windowTitle">
<string>小島生存</string>
</property>
<widget class="QWidget" name="centralWidget">
<widget class="QPushButton" name="btn_new_game">
<property name="geometry">
<rect>
<x>30</x>
<y>500</y>
<width>300</width>
<height>130</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>20</pointsize>
</font>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="btn_old_memory">
<property name="geometry">
<rect>
<x>350</x>
<y>500</y>
<width>300</width>
<height>130</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>20</pointsize>
</font>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="btn_rule_intro">
<property name="geometry">
<rect>
<x>670</x>
<y>500</y>
<width>300</width>
<height>130</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>20</pointsize>
</font>
</property>
<property name="text">
<string/>
</property>
</widget>
</widget>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1000</width>
<height>20</height>
</rect>
</property>
<widget class="QMenu" name="menu">
<property name="title">
<string>遊戲</string>
</property>
<addaction name="action_new_game"/>
<addaction name="action_old_memory"/>
<addaction name="separator"/>
<addaction name="action_exit"/>
</widget>
<widget class="QMenu" name="menu_intro">
<property name="title">
<string>說明</string>
</property>
<addaction name="action_game_intro"/>
<addaction name="action_game_control"/>
<addaction name="separator"/>
<addaction name="action_about_us"/>
</widget>
<addaction name="menu"/>
<addaction name="menu_intro"/>
</widget>
<action name="action_new_game">
<property name="text">
<string>新遊戲</string>
</property>
<property name="toolTip">
<string>新遊戲</string>
</property>
<property name="shortcut">
<string>Ctrl+N</string>
</property>
</action>
<action name="action_old_memory">
<property name="text">
<string>舊的記憶</string>
</property>
<property name="toolTip">
<string>舊的記憶</string>
</property>
<property name="shortcut">
<string>Ctrl+O</string>
</property>
</action>
<action name="action_exit">
<property name="text">
<string>離開遊戲</string>
</property>
<property name="toolTip">
<string>離開遊戲</string>
</property>
<property name="shortcut">
<string>Ctrl+R</string>
</property>
</action>
<action name="action_game_intro">
<property name="text">
<string>遊戲說明</string>
</property>
<property name="toolTip">
<string>遊戲說明</string>
</property>
<property name="shortcut">
<string>Ctrl+I</string>
</property>
</action>
<action name="action_game_control">
<property name="text">
<string>操作方式</string>
</property>
<property name="toolTip">
<string>操作方式</string>
</property>
<property name="shortcut">
<string>Ctrl+U</string>
</property>
</action>
<action name="action_about_us">
<property name="text">
<string>製作團隊</string>
</property>
<property name="toolTip">
<string>製作團隊</string>
</property>
<property name="shortcut">
<string>Ctrl+T</string>
</property>
</action>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections/>
</ui>