-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainwindow.ui
More file actions
170 lines (170 loc) · 4.79 KB
/
Copy pathmainwindow.ui
File metadata and controls
170 lines (170 loc) · 4.79 KB
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
<?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>894</width>
<height>719</height>
</rect>
</property>
<property name="windowTitle">
<string>Labirynt</string>
</property>
<widget class="QWidget" name="centralwidget"/>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>894</width>
<height>26</height>
</rect>
</property>
<widget class="QMenu" name="menuLabyrinth">
<property name="title">
<string>Labirynt</string>
</property>
<widget class="QMenu" name="menuSzukaj_wyj_cia">
<property name="title">
<string>Szukaj wyjścia</string>
</property>
<addaction name="actionBlindfold_Right"/>
<addaction name="actionBlindfold_Left"/>
<addaction name="actionSi_owo_bruteforce"/>
<addaction name="actionWave_propagation"/>
<addaction name="actionTime_table"/>
</widget>
<widget class="QMenu" name="menuGenerateNew">
<property name="title">
<string>Generuj nowy</string>
</property>
<addaction name="actionNormal_maze"/>
<addaction name="separator"/>
<addaction name="actionHorizontal_maze"/>
<addaction name="actionVertical_maze"/>
<addaction name="separator"/>
<addaction name="actionSpiral"/>
<addaction name="separator"/>
<addaction name="actionStraight_lines_division_in_half"/>
<addaction name="actionStraight_lines_random_split"/>
<addaction name="separator"/>
<addaction name="actionZigzag"/>
</widget>
<addaction name="menuGenerateNew"/>
<addaction name="menuSzukaj_wyj_cia"/>
<addaction name="separator"/>
<addaction name="actionQuit"/>
</widget>
<widget class="QMenu" name="menuSettings">
<property name="title">
<string>Ustawienia</string>
</property>
<widget class="QMenu" name="menuJ_zyk_menu">
<property name="title">
<string>Język menu</string>
</property>
<addaction name="actionPolish"/>
<addaction name="actionEnglish"/>
</widget>
<addaction name="menuJ_zyk_menu"/>
<addaction name="actionMaze_settings"/>
</widget>
<addaction name="menuLabyrinth"/>
<addaction name="menuSettings"/>
</widget>
<action name="actionPolish">
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>true</bool>
</property>
<property name="text">
<string>Polish</string>
</property>
</action>
<action name="actionEnglish">
<property name="checkable">
<bool>true</bool>
</property>
<property name="text">
<string>English</string>
</property>
</action>
<action name="actionBlindfold_Right">
<property name="text">
<string>Po omacku (prawa ręka)</string>
</property>
</action>
<action name="actionSi_owo_bruteforce">
<property name="text">
<string>Siłowo (bruteforce)</string>
</property>
</action>
<action name="actionBlindfold_Left">
<property name="text">
<string>Po omacku (lewa ręka)</string>
</property>
</action>
<action name="actionWave_propagation">
<property name="text">
<string>Propagacja fali</string>
</property>
</action>
<action name="actionTime_table">
<property name="text">
<string>Tablica czasu</string>
</property>
</action>
<action name="actionQuit">
<property name="text">
<string>Zamknij</string>
</property>
</action>
<action name="actionNormal_maze">
<property name="text">
<string>Normalny labirynt</string>
</property>
</action>
<action name="actionHorizontal_maze">
<property name="text">
<string>Poziomy labirynt</string>
</property>
</action>
<action name="actionVertical_maze">
<property name="text">
<string>Pionowy labirynt</string>
</property>
</action>
<action name="actionMaze_settings">
<property name="text">
<string>Ustawienia labiryntu</string>
</property>
</action>
<action name="actionSpiral">
<property name="text">
<string>Spiralny labirynt, cyklony</string>
</property>
</action>
<action name="actionStraight_lines_division_in_half">
<property name="text">
<string>Proste linie (podział na pół)</string>
</property>
</action>
<action name="actionStraight_lines_random_split">
<property name="text">
<string>Proste linie (losowy podział)</string>
</property>
</action>
<action name="actionZigzag">
<property name="text">
<string>Zigzag</string>
</property>
</action>
</widget>
<resources/>
<connections/>
</ui>