MainWindow.ui 17.4 KB
Newer Older
pixhawk's avatar
pixhawk committed
1 2
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
pixhawk's avatar
pixhawk committed
3 4
 <class>MainWindow</class>
 <widget class="QMainWindow" name="MainWindow">
pixhawk's avatar
pixhawk committed
5 6 7 8
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
9 10
    <width>800</width>
    <height>500</height>
pixhawk's avatar
pixhawk committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24
   </rect>
  </property>
  <property name="minimumSize">
   <size>
    <width>800</width>
    <height>500</height>
   </size>
  </property>
  <property name="baseSize">
   <size>
    <width>1100</width>
    <height>800</height>
   </size>
  </property>
25 26 27
  <property name="mouseTracking">
   <bool>false</bool>
  </property>
pixhawk's avatar
pixhawk committed
28 29 30 31 32 33
  <property name="windowTitle">
   <string>MGMainWindow</string>
  </property>
  <property name="styleSheet">
   <string notr="true"/>
  </property>
34 35 36 37 38 39 40 41 42 43 44 45 46 47
  <widget class="QWidget" name="centralWidget">
   <property name="sizePolicy">
    <sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
     <horstretch>0</horstretch>
     <verstretch>0</verstretch>
    </sizepolicy>
   </property>
   <property name="minimumSize">
    <size>
     <width>200</width>
     <height>150</height>
    </size>
   </property>
  </widget>
pixhawk's avatar
pixhawk committed
48 49 50 51 52
  <widget class="QMenuBar" name="menuBar">
   <property name="geometry">
    <rect>
     <x>0</x>
     <y>0</y>
53
     <width>800</width>
54
     <height>22</height>
pixhawk's avatar
pixhawk committed
55 56 57 58 59 60
    </rect>
   </property>
   <widget class="QMenu" name="menuMGround">
    <property name="title">
     <string>File</string>
    </property>
61 62
    <widget class="QMenu" name="menuPreferences">
     <property name="title">
63
      <string>Display</string>
64 65 66 67
     </property>
     <addaction name="actionSelectStylesheet"/>
     <addaction name="actionReloadStylesheet"/>
    </widget>
68
    <addaction name="actionJoystick_Settings"/>
69
    <addaction name="actionSimulate"/>
pixhawk's avatar
pixhawk committed
70
    <addaction name="separator"/>
pixhawk's avatar
pixhawk committed
71
    <addaction name="actionMuteAudioOutput"/>
72
    <addaction name="actionJoystickSettings"/>
73
    <addaction name="actionSettings"/>
74
    <addaction name="menuPreferences"/>
pixhawk's avatar
pixhawk committed
75
    <addaction name="separator"/>
pixhawk's avatar
pixhawk committed
76 77 78 79
    <addaction name="actionExit"/>
   </widget>
   <widget class="QMenu" name="menuNetwork">
    <property name="title">
80
     <string>Communication</string>
pixhawk's avatar
pixhawk committed
81 82 83 84
    </property>
    <addaction name="actionAdd_Link"/>
    <addaction name="separator"/>
   </widget>
85
   <widget class="QMenu" name="menuConnected_Systems">
86
    <property name="enabled">
87
     <bool>false</bool>
88
    </property>
pixhawk's avatar
pixhawk committed
89
    <property name="title">
90
     <string>Select System</string>
pixhawk's avatar
pixhawk committed
91 92
    </property>
   </widget>
93
   <widget class="QMenu" name="menuUnmanned_System">
94
    <property name="enabled">
95
     <bool>false</bool>
96
    </property>
97
    <property name="title">
lm's avatar
lm committed
98
     <string>System</string>
99
    </property>
100 101 102
    <property name="separatorsCollapsible">
     <bool>false</bool>
    </property>
103
    <addaction name="actionShutdownMAV"/>
104 105 106 107
    <addaction name="actionLiftoff"/>
    <addaction name="actionLand"/>
    <addaction name="actionEmergency_Land"/>
    <addaction name="actionEmergency_Kill"/>
108
   </widget>
109
   <widget class="QMenu" name="menuTools">
110
    <property name="title">
Lorenz Meier's avatar
Lorenz Meier committed
111
     <string>Tool Widgets</string>
112
    </property>
pixhawk's avatar
pixhawk committed
113
    <addaction name="actionNewCustomWidget"/>
114
    <addaction name="actionLoadCustomWidgetFile"/>
115 116 117 118 119 120 121 122 123 124 125 126 127
   </widget>
   <widget class="QMenu" name="menuHelp">
    <property name="title">
     <string>Help</string>
    </property>
    <addaction name="actionOnline_Documentation"/>
    <addaction name="actionProject_Roadmap_2"/>
    <addaction name="actionDeveloper_Credits"/>
   </widget>
   <widget class="QMenu" name="menuPerspectives">
    <property name="title">
     <string>Perspectives</string>
    </property>
128
    <addaction name="actionOperatorsView"/>
129
    <addaction name="actionEngineersView"/>
130
    <addaction name="actionPilotsView"/>
131
    <addaction name="separator"/>
Lorenz Meier's avatar
Lorenz Meier committed
132
    <addaction name="actionFirmwareUpdateView"/>
133
    <addaction name="actionMavlinkView"/>
134
    <addaction name="actionUnconnectedView"/>
lm's avatar
lm committed
135 136 137
    <addaction name="separator"/>
    <addaction name="actionFullscreen"/>
    <addaction name="actionNormal"/>
138 139 140
   </widget>
   <widget class="QMenu" name="menuMain">
    <property name="title">
Lorenz Meier's avatar
Lorenz Meier committed
141 142 143 144
     <string>Main Widget</string>
    </property>
   </widget>
   <widget class="QMenu" name="menuPlugins">
145 146 147
    <property name="enabled">
     <bool>false</bool>
    </property>
Lorenz Meier's avatar
Lorenz Meier committed
148 149
    <property name="title">
     <string>Plugins</string>
150
    </property>
151
   </widget>
pixhawk's avatar
pixhawk committed
152 153
   <addaction name="menuMGround"/>
   <addaction name="menuNetwork"/>
154
   <addaction name="menuConnected_Systems"/>
pixhawk's avatar
pixhawk committed
155
   <addaction name="menuUnmanned_System"/>
Lorenz Meier's avatar
Lorenz Meier committed
156
   <addaction name="menuPerspectives"/>
157
   <addaction name="menuMain"/>
158
   <addaction name="menuTools"/>
Lorenz Meier's avatar
Lorenz Meier committed
159
   <addaction name="menuPlugins"/>
160
   <addaction name="menuHelp"/>
pixhawk's avatar
pixhawk committed
161 162 163 164
  </widget>
  <widget class="QStatusBar" name="statusBar"/>
  <action name="actionExit">
   <property name="icon">
lm's avatar
lm committed
165
    <iconset resource="../../qgroundcontrol.qrc">
166
     <normaloff>:/files/images/actions/system-log-out.svg</normaloff>:/files/images/actions/system-log-out.svg</iconset>
pixhawk's avatar
pixhawk committed
167 168 169 170 171 172 173 174 175
   </property>
   <property name="text">
    <string>Exit</string>
   </property>
   <property name="shortcut">
    <string>Ctrl+Q</string>
   </property>
  </action>
  <action name="actionLiftoff">
176 177 178
   <property name="enabled">
    <bool>true</bool>
   </property>
pixhawk's avatar
pixhawk committed
179
   <property name="icon">
lm's avatar
lm committed
180
    <iconset resource="../../qgroundcontrol.qrc">
181 182
     <normaloff>:/files/images/control/launch.svg</normaloff>
     <normalon>:/files/images/control/launch.svg</normalon>:/files/images/control/launch.svg</iconset>
pixhawk's avatar
pixhawk committed
183 184 185 186 187 188 189
   </property>
   <property name="text">
    <string>Liftoff</string>
   </property>
  </action>
  <action name="actionLand">
   <property name="icon">
lm's avatar
lm committed
190
    <iconset resource="../../qgroundcontrol.qrc">
191
     <normaloff>:/files/images/control/land.svg</normaloff>:/files/images/control/land.svg</iconset>
pixhawk's avatar
pixhawk committed
192 193 194 195 196 197
   </property>
   <property name="text">
    <string>Land</string>
   </property>
  </action>
  <action name="actionEmergency_Land">
198
   <property name="icon">
lm's avatar
lm committed
199
    <iconset resource="../../qgroundcontrol.qrc">
200
     <normaloff>:/files/images/actions/process-stop.svg</normaloff>:/files/images/actions/process-stop.svg</iconset>
201
   </property>
pixhawk's avatar
pixhawk committed
202 203 204 205 206 207 208 209
   <property name="text">
    <string>Emergency Land</string>
   </property>
   <property name="shortcut">
    <string>Ctrl+E</string>
   </property>
  </action>
  <action name="actionEmergency_Kill">
210
   <property name="icon">
lm's avatar
lm committed
211
    <iconset resource="../../qgroundcontrol.qrc">
212
     <normaloff>:/files/images/actions/process-stop.svg</normaloff>:/files/images/actions/process-stop.svg</iconset>
213
   </property>
pixhawk's avatar
pixhawk committed
214 215 216 217 218 219 220 221 222
   <property name="text">
    <string>Kill UAS</string>
   </property>
   <property name="shortcut">
    <string>Ctrl+K</string>
   </property>
  </action>
  <action name="actionAdd_Link">
   <property name="icon">
lm's avatar
lm committed
223
    <iconset resource="../../qgroundcontrol.qrc">
224
     <normaloff>:/files/images/actions/list-add.svg</normaloff>:/files/images/actions/list-add.svg</iconset>
pixhawk's avatar
pixhawk committed
225 226 227 228 229 230 231
   </property>
   <property name="text">
    <string>Add Link</string>
   </property>
  </action>
  <action name="actionConfiguration">
   <property name="icon">
lm's avatar
lm committed
232
    <iconset resource="../../qgroundcontrol.qrc">
233
     <normaloff>:/files/images/categories/applications-system.svg</normaloff>:/files/images/categories/applications-system.svg</iconset>
pixhawk's avatar
pixhawk committed
234 235 236 237 238 239 240 241 242 243
   </property>
   <property name="text">
    <string>Preferences</string>
   </property>
   <property name="toolTip">
    <string>Open UAS Preferences</string>
   </property>
  </action>
  <action name="actionJoystickSettings">
   <property name="icon">
lm's avatar
lm committed
244
    <iconset resource="../../qgroundcontrol.qrc">
245
     <normaloff>:/files/images/devices/input-gaming.svg</normaloff>:/files/images/devices/input-gaming.svg</iconset>
pixhawk's avatar
pixhawk committed
246 247
   </property>
   <property name="text">
248
    <string>Joystick Test</string>
pixhawk's avatar
pixhawk committed
249
   </property>
250 251 252
   <property name="visible">
    <bool>true</bool>
   </property>
pixhawk's avatar
pixhawk committed
253
  </action>
254 255 256 257 258
  <action name="actionSimulate">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
lm's avatar
lm committed
259
    <iconset resource="../../qgroundcontrol.qrc">
260
     <normaloff>:/files/images/control/launch.svg</normaloff>:/files/images/control/launch.svg</iconset>
261 262 263 264 265 266 267 268
   </property>
   <property name="text">
    <string>Simulate</string>
   </property>
   <property name="toolTip">
    <string>Simulate one vehicle to test and evaluate this application</string>
   </property>
  </action>
269 270
  <action name="actionShow_Slugs_View">
   <property name="icon">
lm's avatar
lm committed
271
    <iconset resource="../../qgroundcontrol.qrc">
272
     <normaloff>:/files/images/contrib/slugs.png</normaloff>:/files/images/contrib/slugs.png</iconset>
273 274 275 276 277
   </property>
   <property name="text">
    <string>Show Slugs View</string>
   </property>
  </action>
278 279
  <action name="actionJoystick_Settings">
   <property name="icon">
lm's avatar
lm committed
280
    <iconset resource="../../qgroundcontrol.qrc">
281
     <normaloff>:/files/images/devices/input-gaming.svg</normaloff>:/files/images/devices/input-gaming.svg</iconset>
282 283 284 285 286 287 288 289
   </property>
   <property name="text">
    <string>Joystick Settings</string>
   </property>
   <property name="visible">
    <bool>false</bool>
   </property>
  </action>
290 291
  <action name="actionOnline_Documentation">
   <property name="icon">
lm's avatar
lm committed
292
    <iconset resource="../../qgroundcontrol.qrc">
293
     <normaloff>:/files/images/apps/utilities-system-monitor.svg</normaloff>:/files/images/apps/utilities-system-monitor.svg</iconset>
294 295 296 297 298 299 300
   </property>
   <property name="text">
    <string>Online Documentation</string>
   </property>
  </action>
  <action name="actionProject_Roadmap_2">
   <property name="icon">
lm's avatar
lm committed
301
    <iconset resource="../../qgroundcontrol.qrc">
302
     <normaloff>:/files/images/status/software-update-available.svg</normaloff>:/files/images/status/software-update-available.svg</iconset>
303 304 305 306 307 308 309
   </property>
   <property name="text">
    <string>Project Roadmap</string>
   </property>
  </action>
  <action name="actionDeveloper_Credits">
   <property name="icon">
lm's avatar
lm committed
310
    <iconset resource="../../qgroundcontrol.qrc">
311
     <normaloff>:/files/images/categories/preferences-system.svg</normaloff>:/files/images/categories/preferences-system.svg</iconset>
312 313 314 315 316
   </property>
   <property name="text">
    <string>Developer Credits</string>
   </property>
  </action>
317
  <action name="actionOperatorsView">
318 319 320
   <property name="checkable">
    <bool>true</bool>
   </property>
321
   <property name="icon">
lm's avatar
lm committed
322
    <iconset resource="../../qgroundcontrol.qrc">
323
     <normaloff>:/files/images/status/weather-overcast.svg</normaloff>:/files/images/status/weather-overcast.svg</iconset>
324 325
   </property>
   <property name="text">
326
    <string>Mission</string>
327
   </property>
328 329 330
   <property name="shortcut">
    <string>Meta+O</string>
   </property>
331 332
  </action>
  <action name="actionEngineersView">
333 334 335
   <property name="checkable">
    <bool>true</bool>
   </property>
336
   <property name="icon">
lm's avatar
lm committed
337
    <iconset resource="../../qgroundcontrol.qrc">
338
     <normaloff>:/files/images/apps/utilities-system-monitor.svg</normaloff>:/files/images/apps/utilities-system-monitor.svg</iconset>
339 340
   </property>
   <property name="text">
341
    <string>Development</string>
342
   </property>
343 344 345
   <property name="shortcut">
    <string>Meta+E</string>
   </property>
346 347
  </action>
  <action name="actionMavlinkView">
348 349 350
   <property name="checkable">
    <bool>true</bool>
   </property>
351
   <property name="icon">
lm's avatar
lm committed
352
    <iconset resource="../../qgroundcontrol.qrc">
353
     <normaloff>:/files/images/devices/network-wired.svg</normaloff>:/files/images/devices/network-wired.svg</iconset>
354 355 356 357
   </property>
   <property name="text">
    <string>Mavlink</string>
   </property>
358 359 360
   <property name="shortcut">
    <string>Meta+M</string>
   </property>
361
  </action>
362
  <action name="actionSelectStylesheet">
363
   <property name="icon">
lm's avatar
lm committed
364
    <iconset resource="../../qgroundcontrol.qrc">
365
     <normaloff>:/files/images/categories/applications-internet.svg</normaloff>:/files/images/categories/applications-internet.svg</iconset>
366 367
   </property>
   <property name="text">
368
    <string>Select Stylesheet</string>
369 370
   </property>
  </action>
371
  <action name="actionPilotsView">
372 373 374
   <property name="checkable">
    <bool>true</bool>
   </property>
375
   <property name="icon">
lm's avatar
lm committed
376
    <iconset resource="../../qgroundcontrol.qrc">
377
     <normaloff>:/files/images/status/network-wireless-encrypted.svg</normaloff>:/files/images/status/network-wireless-encrypted.svg</iconset>
378 379
   </property>
   <property name="text">
380
    <string>Flight</string>
381
   </property>
382 383 384
   <property name="shortcut">
    <string>Meta+P</string>
   </property>
385
  </action>
386
  <action name="actionNewCustomWidget">
387
   <property name="icon">
lm's avatar
lm committed
388
    <iconset resource="../../qgroundcontrol.qrc">
389
     <normaloff>:/files/images/apps/utilities-system-monitor.svg</normaloff>:/files/images/apps/utilities-system-monitor.svg</iconset>
390
   </property>
391 392 393 394
   <property name="text">
    <string>New Custom Widget</string>
   </property>
  </action>
395 396 397 398 399
  <action name="actionMuteAudioOutput">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
lm's avatar
lm committed
400
    <iconset resource="../../qgroundcontrol.qrc">
401 402 403 404 405
     <normaloff>:/files/images/status/audio-volume-high.svg</normaloff>
     <normalon>:/files/images/status/audio-volume-muted.svg</normalon>
     <activeon>:/files/images/status/audio-volume-muted.svg</activeon>
     <selectedoff>:/files/images/status/audio-volume-high.svg</selectedoff>
     <selectedon>:/files/images/status/audio-volume-muted.svg</selectedon>:/files/images/status/audio-volume-high.svg</iconset>
406 407 408 409 410
   </property>
   <property name="text">
    <string>Mute Audio Output</string>
   </property>
  </action>
411 412 413 414 415
  <action name="actionUnconnectedView">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
lm's avatar
lm committed
416
    <iconset resource="../../qgroundcontrol.qrc">
417
     <normaloff>:/files/images/devices/network-wireless.svg</normaloff>:/files/images/devices/network-wireless.svg</iconset>
418 419 420 421 422 423 424 425
   </property>
   <property name="text">
    <string>Unconnected</string>
   </property>
   <property name="shortcut">
    <string>Meta+U</string>
   </property>
  </action>
426 427
  <action name="actionShutdownMAV">
   <property name="icon">
lm's avatar
lm committed
428
    <iconset resource="../../qgroundcontrol.qrc">
429
     <normaloff>:/files/images/actions/system-log-out.svg</normaloff>:/files/images/actions/system-log-out.svg</iconset>
430 431 432 433 434 435 436 437 438 439 440
   </property>
   <property name="text">
    <string>Shutdown MAV</string>
   </property>
   <property name="toolTip">
    <string>Shutdown the onboard computer - works not during flight</string>
   </property>
   <property name="statusTip">
    <string>Shutdown the onboard computer - works not during flight</string>
   </property>
  </action>
441 442 443 444 445 446 447 448
  <action name="actionReloadStylesheet">
   <property name="text">
    <string>Reload Stylesheet</string>
   </property>
   <property name="shortcut">
    <string>Meta+R</string>
   </property>
  </action>
449 450 451 452 453
  <action name="actionSettings">
   <property name="text">
    <string>Settings</string>
   </property>
  </action>
lm's avatar
lm committed
454 455 456 457 458
  <action name="actionFullscreen">
   <property name="text">
    <string>Fullscreen</string>
   </property>
   <property name="shortcut">
459
    <string>Meta+Return</string>
lm's avatar
lm committed
460 461 462 463 464 465 466 467 468 469
   </property>
  </action>
  <action name="actionNormal">
   <property name="text">
    <string>Normal</string>
   </property>
   <property name="shortcut">
    <string>Esc</string>
   </property>
  </action>
470 471
  <action name="actionLoadCustomWidgetFile">
   <property name="icon">
lm's avatar
lm committed
472
    <iconset resource="../../qgroundcontrol.qrc">
473
     <normaloff>:/files/images/status/folder-drag-accept.svg</normaloff>:/files/images/status/folder-drag-accept.svg</iconset>
474 475 476 477 478
   </property>
   <property name="text">
    <string>Load Custom Widget File</string>
   </property>
  </action>
Lorenz Meier's avatar
Lorenz Meier committed
479 480 481
  <action name="actionFirmwareUpdateView">
   <property name="icon">
    <iconset resource="../../qgroundcontrol.qrc">
482
     <normaloff>:/files/images/status/software-update-available.svg</normaloff>:/files/images/status/software-update-available.svg</iconset>
Lorenz Meier's avatar
Lorenz Meier committed
483 484 485 486 487 488 489 490
   </property>
   <property name="text">
    <string>Firmware Update</string>
   </property>
   <property name="toolTip">
    <string>Update the firmware of one of the connected autopilots</string>
   </property>
  </action>
491 492 493 494 495 496 497 498 499
  <action name="actionSimulation_View">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
    <iconset resource="../../qgroundcontrol.qrc">
     <normaloff>:/files/images/control/launch.svg</normaloff>:/files/images/control/launch.svg</iconset>
   </property>
   <property name="text">
500
    <string>Simulation</string>
501 502 503 504 505
   </property>
   <property name="toolTip">
    <string>Open the simulation view</string>
   </property>
  </action>
pixhawk's avatar
pixhawk committed
506 507 508
 </widget>
 <layoutdefault spacing="6" margin="11"/>
 <resources>
lm's avatar
lm committed
509
  <include location="../../qgroundcontrol.qrc"/>
pixhawk's avatar
pixhawk committed
510 511 512 513 514
 </resources>
 <connections>
  <connection>
   <sender>actionExit</sender>
   <signal>triggered()</signal>
pixhawk's avatar
pixhawk committed
515
   <receiver>MainWindow</receiver>
pixhawk's avatar
pixhawk committed
516 517 518 519 520 521 522 523 524 525 526 527
   <slot>close()</slot>
   <hints>
    <hint type="sourcelabel">
     <x>-1</x>
     <y>-1</y>
    </hint>
    <hint type="destinationlabel">
     <x>299</x>
     <y>199</y>
    </hint>
   </hints>
  </connection>
lm's avatar
lm committed
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
  <connection>
   <sender>actionFullscreen</sender>
   <signal>triggered()</signal>
   <receiver>MainWindow</receiver>
   <slot>showFullScreen()</slot>
   <hints>
    <hint type="sourcelabel">
     <x>-1</x>
     <y>-1</y>
    </hint>
    <hint type="destinationlabel">
     <x>399</x>
     <y>249</y>
    </hint>
   </hints>
  </connection>
  <connection>
   <sender>actionNormal</sender>
   <signal>triggered()</signal>
   <receiver>MainWindow</receiver>
   <slot>showNormal()</slot>
   <hints>
    <hint type="sourcelabel">
     <x>-1</x>
     <y>-1</y>
    </hint>
    <hint type="destinationlabel">
     <x>399</x>
     <y>249</y>
    </hint>
   </hints>
  </connection>
pixhawk's avatar
pixhawk committed
560 561
 </connections>
</ui>