-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.ui
105 lines (105 loc) · 2.58 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
<?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>604</width>
<height>494</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>604</width>
<height>494</height>
</size>
</property>
<property name="windowTitle">
<string>Сапёр</string>
</property>
<property name="windowIcon">
<iconset resource="resource.qrc">
<normaloff>:/icon/src/mine.ico</normaloff>:/icon/src/mine.ico</iconset>
</property>
<widget class="QWidget" name="centralwidget"/>
<widget class="QMenuBar" name="fileMenu">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>604</width>
<height>20</height>
</rect>
</property>
<widget class="QMenu" name="menu">
<property name="title">
<string>Файл</string>
</property>
<addaction name="newgame_item"/>
<addaction name="separator"/>
<addaction name="easy_item"/>
<addaction name="medium_item"/>
<addaction name="hard_item"/>
<addaction name="custom_item"/>
<addaction name="separator"/>
<addaction name="exit_item"/>
</widget>
<widget class="QMenu" name="aboutMenu">
<property name="title">
<string>Справка</string>
</property>
<addaction name="rules_item"/>
<addaction name="about_item"/>
</widget>
<addaction name="menu"/>
<addaction name="aboutMenu"/>
</widget>
<widget class="QStatusBar" name="statusBar"/>
<action name="newgame_item">
<property name="text">
<string>Новая игра</string>
</property>
</action>
<action name="easy_item">
<property name="text">
<string>Легко</string>
</property>
</action>
<action name="medium_item">
<property name="text">
<string>Нормально</string>
</property>
</action>
<action name="hard_item">
<property name="text">
<string>Сложно</string>
</property>
</action>
<action name="custom_item">
<property name="text">
<string>Своя...</string>
</property>
</action>
<action name="exit_item">
<property name="text">
<string>Выход</string>
</property>
</action>
<action name="rules_item">
<property name="text">
<string>Правила</string>
</property>
</action>
<action name="about_item">
<property name="text">
<string>О программе...</string>
</property>
</action>
</widget>
<resources>
<include location="resource.qrc"/>
</resources>
<connections/>
</ui>