Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
305 | KeyOz | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | <ui version="4.0"> |
||
3 | <class>dlg_Map_UI</class> |
||
4 | <widget class="QDialog" name="dlg_Map_UI"> |
||
5 | <property name="geometry"> |
||
6 | <rect> |
||
7 | <x>0</x> |
||
8 | <y>0</y> |
||
9 | <width>600</width> |
||
309 | KeyOz | 10 | <height>350</height> |
305 | KeyOz | 11 | </rect> |
12 | </property> |
||
13 | <property name="minimumSize"> |
||
14 | <size> |
||
15 | <width>600</width> |
||
16 | <height>0</height> |
||
17 | </size> |
||
18 | </property> |
||
19 | <property name="windowTitle"> |
||
20 | <string>Flug-Karte</string> |
||
21 | </property> |
||
22 | <layout class="QGridLayout" name="gridLayout_3"> |
||
23 | <item row="0" column="1"> |
||
24 | <widget class="QFrame" name="w_Map"> |
||
25 | <property name="frameShape"> |
||
26 | <enum>QFrame::StyledPanel</enum> |
||
27 | </property> |
||
28 | <property name="frameShadow"> |
||
29 | <enum>QFrame::Raised</enum> |
||
30 | </property> |
||
31 | <layout class="QGridLayout" name="gridLayout_4"> |
||
32 | <item row="0" column="1"> |
||
33 | <layout class="QHBoxLayout" name="l_Map"/> |
||
34 | </item> |
||
35 | </layout> |
||
36 | </widget> |
||
37 | </item> |
||
38 | <item row="0" column="3" rowspan="2"> |
||
39 | <layout class="QVBoxLayout" name="verticalLayout"> |
||
40 | <item> |
||
41 | <widget class="QGroupBox" name="groupBox"> |
||
42 | <property name="title"> |
||
43 | <string>Route</string> |
||
44 | </property> |
||
45 | <layout class="QGridLayout" name="gridLayout"> |
||
46 | <item row="2" column="0"> |
||
47 | <layout class="QHBoxLayout" name="horizontalLayout_3"> |
||
48 | <item> |
||
49 | <widget class="QSpinBox" name="sb_Time"> |
||
50 | <property name="maximum"> |
||
51 | <number>300</number> |
||
52 | </property> |
||
53 | <property name="value"> |
||
54 | <number>60</number> |
||
55 | </property> |
||
56 | </widget> |
||
57 | </item> |
||
58 | <item> |
||
59 | <widget class="QLabel" name="label"> |
||
60 | <property name="text"> |
||
61 | <string>Sek.</string> |
||
62 | </property> |
||
63 | </widget> |
||
64 | </item> |
||
65 | </layout> |
||
66 | </item> |
||
67 | <item row="3" column="0"> |
||
68 | <widget class="QPushButton" name="pb_Add"> |
||
69 | <property name="text"> |
||
70 | <string>hinzufügen</string> |
||
71 | </property> |
||
72 | </widget> |
||
73 | </item> |
||
74 | <item row="4" column="0"> |
||
306 | KeyOz | 75 | <widget class="QPushButton" name="pb_SendWaypoints"> |
305 | KeyOz | 76 | <property name="enabled"> |
77 | <bool>false</bool> |
||
78 | </property> |
||
79 | <property name="text"> |
||
80 | <string>abfliegen</string> |
||
81 | </property> |
||
82 | </widget> |
||
83 | </item> |
||
84 | <item row="5" column="0"> |
||
85 | <widget class="QPushButton" name="pb_Delete"> |
||
86 | <property name="text"> |
||
87 | <string>löschen</string> |
||
88 | </property> |
||
89 | </widget> |
||
90 | </item> |
||
91 | <item row="6" column="0"> |
||
92 | <widget class="QCheckBox" name="cb_ShowRoute"> |
||
93 | <property name="text"> |
||
94 | <string>geflogene |
||
95 | Route anzeigen</string> |
||
96 | </property> |
||
306 | KeyOz | 97 | <property name="checked"> |
98 | <bool>true</bool> |
||
99 | </property> |
||
305 | KeyOz | 100 | </widget> |
101 | </item> |
||
102 | <item row="7" column="0"> |
||
103 | <widget class="QCheckBox" name="cb_CenterPos"> |
||
104 | <property name="text"> |
||
105 | <string>auf IST-Position |
||
106 | zentrieren</string> |
||
107 | </property> |
||
306 | KeyOz | 108 | <property name="checked"> |
109 | <bool>true</bool> |
||
110 | </property> |
||
305 | KeyOz | 111 | </widget> |
112 | </item> |
||
113 | <item row="1" column="0"> |
||
114 | <widget class="QLabel" name="label_2"> |
||
115 | <property name="text"> |
||
116 | <string>Verweilzeit</string> |
||
117 | </property> |
||
118 | </widget> |
||
119 | </item> |
||
120 | </layout> |
||
121 | </widget> |
||
122 | </item> |
||
123 | <item> |
||
124 | <widget class="QGroupBox" name="groupBox_2"> |
||
125 | <property name="title"> |
||
126 | <string>Position</string> |
||
127 | </property> |
||
128 | <layout class="QGridLayout" name="gridLayout_2"> |
||
129 | <item row="0" column="0"> |
||
306 | KeyOz | 130 | <widget class="QPushButton" name="pb_Goto"> |
305 | KeyOz | 131 | <property name="text"> |
132 | <string>Anfliegen</string> |
||
133 | </property> |
||
134 | </widget> |
||
135 | </item> |
||
136 | </layout> |
||
137 | </widget> |
||
138 | </item> |
||
139 | <item> |
||
309 | KeyOz | 140 | <widget class="QPushButton" name="pb_Close"> |
141 | <property name="text"> |
||
142 | <string>Schließen</string> |
||
143 | </property> |
||
144 | </widget> |
||
145 | </item> |
||
146 | <item> |
||
305 | KeyOz | 147 | <spacer name="verticalSpacer"> |
148 | <property name="orientation"> |
||
149 | <enum>Qt::Vertical</enum> |
||
150 | </property> |
||
151 | <property name="sizeHint" stdset="0"> |
||
152 | <size> |
||
153 | <width>20</width> |
||
154 | <height>40</height> |
||
155 | </size> |
||
156 | </property> |
||
157 | </spacer> |
||
158 | </item> |
||
159 | </layout> |
||
160 | </item> |
||
161 | <item row="1" column="1"> |
||
162 | <layout class="QHBoxLayout" name="horizontalLayout"> |
||
163 | <item> |
||
164 | <widget class="QLabel" name="label_3"> |
||
165 | <property name="text"> |
||
166 | <string>Zoom:</string> |
||
167 | </property> |
||
168 | </widget> |
||
169 | </item> |
||
170 | <item> |
||
171 | <widget class="QSlider" name="sl_Zoom"> |
||
172 | <property name="maximum"> |
||
173 | <number>18</number> |
||
174 | </property> |
||
175 | <property name="pageStep"> |
||
176 | <number>1</number> |
||
177 | </property> |
||
178 | <property name="orientation"> |
||
179 | <enum>Qt::Horizontal</enum> |
||
180 | </property> |
||
181 | <property name="tickPosition"> |
||
182 | <enum>QSlider::NoTicks</enum> |
||
183 | </property> |
||
184 | </widget> |
||
185 | </item> |
||
186 | <item> |
||
187 | <spacer name="horizontalSpacer"> |
||
188 | <property name="orientation"> |
||
189 | <enum>Qt::Horizontal</enum> |
||
190 | </property> |
||
191 | <property name="sizeHint" stdset="0"> |
||
192 | <size> |
||
193 | <width>40</width> |
||
194 | <height>20</height> |
||
195 | </size> |
||
196 | </property> |
||
197 | </spacer> |
||
198 | </item> |
||
199 | <item> |
||
306 | KeyOz | 200 | <widget class="QLabel" name="lb_Maps"> |
305 | KeyOz | 201 | <property name="text"> |
202 | <string>Karten:</string> |
||
203 | </property> |
||
204 | </widget> |
||
205 | </item> |
||
206 | <item> |
||
207 | <widget class="QComboBox" name="cb_Maps"> |
||
208 | <property name="enabled"> |
||
306 | KeyOz | 209 | <bool>true</bool> |
305 | KeyOz | 210 | </property> |
211 | <item> |
||
212 | <property name="text"> |
||
213 | <string>OpenStreetMap</string> |
||
214 | </property> |
||
215 | </item> |
||
216 | <item> |
||
217 | <property name="text"> |
||
334 | KeyOz | 218 | <string>OpenAerialMap</string> |
219 | </property> |
||
220 | </item> |
||
221 | <item> |
||
222 | <property name="text"> |
||
306 | KeyOz | 223 | <string>Google: Map</string> |
305 | KeyOz | 224 | </property> |
225 | </item> |
||
226 | <item> |
||
227 | <property name="text"> |
||
306 | KeyOz | 228 | <string>Google: Satellit</string> |
305 | KeyOz | 229 | </property> |
230 | </item> |
||
231 | <item> |
||
232 | <property name="text"> |
||
306 | KeyOz | 233 | <string>Yahoo: Map </string> |
305 | KeyOz | 234 | </property> |
235 | </item> |
||
306 | KeyOz | 236 | <item> |
237 | <property name="text"> |
||
238 | <string>Yahoo: Satellit</string> |
||
239 | </property> |
||
240 | </item> |
||
305 | KeyOz | 241 | </widget> |
242 | </item> |
||
243 | </layout> |
||
244 | </item> |
||
245 | <item row="0" column="2"> |
||
246 | <spacer name="verticalSpacer_2"> |
||
247 | <property name="orientation"> |
||
248 | <enum>Qt::Vertical</enum> |
||
249 | </property> |
||
250 | <property name="sizeHint" stdset="0"> |
||
251 | <size> |
||
252 | <width>2</width> |
||
253 | <height>40</height> |
||
254 | </size> |
||
255 | </property> |
||
256 | </spacer> |
||
257 | </item> |
||
258 | </layout> |
||
259 | </widget> |
||
260 | <resources> |
||
261 | <include location="../MKTool.qrc"/> |
||
262 | </resources> |
||
309 | KeyOz | 263 | <connections> |
264 | <connection> |
||
265 | <sender>pb_Close</sender> |
||
266 | <signal>clicked()</signal> |
||
267 | <receiver>dlg_Map_UI</receiver> |
||
268 | <slot>close()</slot> |
||
269 | <hints> |
||
270 | <hint type="sourcelabel"> |
||
271 | <x>529</x> |
||
272 | <y>328</y> |
||
273 | </hint> |
||
274 | <hint type="destinationlabel"> |
||
275 | <x>299</x> |
||
276 | <y>174</y> |
||
277 | </hint> |
||
278 | </hints> |
||
279 | </connection> |
||
280 | </connections> |
||
305 | KeyOz | 281 | </ui> |