-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathddmMainWindow.ui
142 lines (142 loc) · 4.25 KB
/
ddmMainWindow.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
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ddmMainWindow</class>
<widget class="QMainWindow" name="ddmMainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle">
<string>Distance Decay Map</string>
</property>
<widget class="QWidget" name="centralWidget"/>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>21</height>
</rect>
</property>
<widget class="QMenu" name="menu">
<property name="title">
<string>Файл</string>
</property>
<addaction name="openAction"/>
<addaction name="separator"/>
<addaction name="quitAction"/>
</widget>
<widget class="QMenu" name="menuData">
<property name="title">
<string>Данные</string>
</property>
<property name="toolTipsVisible">
<bool>false</bool>
</property>
<addaction name="createTableViewAction"/>
</widget>
<widget class="QMenu" name="menuMap">
<property name="title">
<string>Карта</string>
</property>
<addaction name="reloadAction"/>
<addaction name="increaseZoomAction"/>
<addaction name="decreaseZoomAction"/>
</widget>
<addaction name="menu"/>
<addaction name="menuData"/>
<addaction name="menuMap"/>
</widget>
<widget class="QToolBar" name="mainToolBar">
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
<addaction name="reloadAction"/>
<addaction name="increaseZoomAction"/>
<addaction name="decreaseZoomAction"/>
</widget>
<widget class="QToolBar" name="toolBar">
<property name="windowTitle">
<string>toolBar</string>
</property>
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
<addaction name="separator"/>
<addaction name="openAction"/>
<addaction name="createTableViewAction"/>
<addaction name="quitAction"/>
</widget>
<widget class="QStatusBar" name="statusBar"/>
<action name="openAction">
<property name="icon">
<iconset resource="icons.qrc">
<normaloff>:/icons/icons/icon_document_open.png</normaloff>:/icons/icons/icon_document_open.png</iconset>
</property>
<property name="text">
<string>Открыть</string>
</property>
</action>
<action name="quitAction">
<property name="icon">
<iconset resource="icons.qrc">
<normaloff>:/icons/icons/icon_exit.png</normaloff>:/icons/icons/icon_exit.png</iconset>
</property>
<property name="text">
<string>Выход</string>
</property>
</action>
<action name="reloadAction">
<property name="icon">
<iconset resource="icons.qrc">
<normaloff>:/icons/icons/icon_refresh.png</normaloff>:/icons/icons/icon_refresh.png</iconset>
</property>
<property name="text">
<string>Обновить</string>
</property>
</action>
<action name="increaseZoomAction">
<property name="icon">
<iconset resource="icons.qrc">
<normaloff>:/icons/icons/icon_zoom_in.png</normaloff>:/icons/icons/icon_zoom_in.png</iconset>
</property>
<property name="text">
<string>Увеличить масштаб</string>
</property>
</action>
<action name="decreaseZoomAction">
<property name="icon">
<iconset resource="icons.qrc">
<normaloff>:/icons/icons/icon_zoom_out.png</normaloff>:/icons/icons/icon_zoom_out.png</iconset>
</property>
<property name="text">
<string>Уменьшить масшаб</string>
</property>
</action>
<action name="createTableViewAction">
<property name="icon">
<iconset resource="icons.qrc">
<normaloff>:/icons/icons/table.png</normaloff>:/icons/icons/table.png</iconset>
</property>
<property name="text">
<string>Таблица</string>
</property>
</action>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources>
<include location="icons.qrc"/>
</resources>
<connections/>
</ui>