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>1024</width>
    <height>600</height>
pixhawk's avatar
pixhawk committed
11 12 13 14
   </rect>
  </property>
  <property name="minimumSize">
   <size>
15 16
    <width>640</width>
    <height>400</height>
pixhawk's avatar
pixhawk committed
17 18 19 20 21 22 23 24
   </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>1024</width>
54
     <height>21</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
    <addaction name="actionJoystick_Settings"/>
62
    <addaction name="actionSimulate"/>
pixhawk's avatar
pixhawk committed
63
    <addaction name="separator"/>
pixhawk's avatar
pixhawk committed
64
    <addaction name="actionMuteAudioOutput"/>
65
    <addaction name="actionJoystickSettings"/>
66
    <addaction name="actionSettings"/>
67
    <addaction name="actionAdvanced_Mode"/>
pixhawk's avatar
pixhawk committed
68
    <addaction name="separator"/>
pixhawk's avatar
pixhawk committed
69 70 71 72
    <addaction name="actionExit"/>
   </widget>
   <widget class="QMenu" name="menuNetwork">
    <property name="title">
73
     <string>Communication</string>
pixhawk's avatar
pixhawk committed
74 75 76 77
    </property>
    <addaction name="actionAdd_Link"/>
    <addaction name="separator"/>
   </widget>
78
   <widget class="QMenu" name="menuTools">
79
    <property name="title">
Lorenz Meier's avatar
Lorenz Meier committed
80
     <string>Tool Widgets</string>
81
    </property>
pixhawk's avatar
pixhawk committed
82
    <addaction name="actionNewCustomWidget"/>
83
    <addaction name="actionLoadCustomWidgetFile"/>
84
    <addaction name="separator"/>
85 86 87 88 89 90 91 92 93 94 95 96 97
   </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>
98
    <addaction name="actionMissionView"/>
99
    <addaction name="actionFlightView"/>
100
    <addaction name="actionHardwareConfig"/>
101
    <addaction name="actionEngineersView"/>
102 103
    <addaction name="actionGoogleEarthView"/>
    <addaction name="actionLocal3DView"/>
104 105 106
    <addaction name="actionSoftwareConfig"/>
    <addaction name="actionTerminalView"/>
    <addaction name="actionSimulationView"/>
Lorenz Meier's avatar
Lorenz Meier committed
107
    <addaction name="actionFirmwareUpdateView"/>
lm's avatar
lm committed
108 109 110
    <addaction name="separator"/>
    <addaction name="actionFullscreen"/>
    <addaction name="actionNormal"/>
111
   </widget>
pixhawk's avatar
pixhawk committed
112 113
   <addaction name="menuMGround"/>
   <addaction name="menuNetwork"/>
Lorenz Meier's avatar
Lorenz Meier committed
114
   <addaction name="menuPerspectives"/>
115
   <addaction name="menuTools"/>
116
   <addaction name="menuHelp"/>
pixhawk's avatar
pixhawk committed
117 118 119 120
  </widget>
  <widget class="QStatusBar" name="statusBar"/>
  <action name="actionExit">
   <property name="icon">
lm's avatar
lm committed
121
    <iconset resource="../../qgroundcontrol.qrc">
122
     <normaloff>:/files/images/actions/system-log-out.svg</normaloff>:/files/images/actions/system-log-out.svg</iconset>
pixhawk's avatar
pixhawk committed
123 124 125 126 127 128 129 130 131
   </property>
   <property name="text">
    <string>Exit</string>
   </property>
   <property name="shortcut">
    <string>Ctrl+Q</string>
   </property>
  </action>
  <action name="actionLiftoff">
132 133 134
   <property name="enabled">
    <bool>true</bool>
   </property>
pixhawk's avatar
pixhawk committed
135
   <property name="icon">
lm's avatar
lm committed
136
    <iconset resource="../../qgroundcontrol.qrc">
137 138
     <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
139 140 141 142 143 144 145
   </property>
   <property name="text">
    <string>Liftoff</string>
   </property>
  </action>
  <action name="actionLand">
   <property name="icon">
lm's avatar
lm committed
146
    <iconset resource="../../qgroundcontrol.qrc">
147
     <normaloff>:/files/images/control/land.svg</normaloff>:/files/images/control/land.svg</iconset>
pixhawk's avatar
pixhawk committed
148 149 150 151 152 153
   </property>
   <property name="text">
    <string>Land</string>
   </property>
  </action>
  <action name="actionEmergency_Land">
154
   <property name="icon">
lm's avatar
lm committed
155
    <iconset resource="../../qgroundcontrol.qrc">
156
     <normaloff>:/files/images/actions/process-stop.svg</normaloff>:/files/images/actions/process-stop.svg</iconset>
157
   </property>
pixhawk's avatar
pixhawk committed
158 159 160 161
   <property name="text">
    <string>Emergency Land</string>
   </property>
   <property name="shortcut">
162
    <string>Ctrl+L</string>
pixhawk's avatar
pixhawk committed
163 164 165
   </property>
  </action>
  <action name="actionEmergency_Kill">
166
   <property name="icon">
lm's avatar
lm committed
167
    <iconset resource="../../qgroundcontrol.qrc">
168
     <normaloff>:/files/images/actions/process-stop.svg</normaloff>:/files/images/actions/process-stop.svg</iconset>
169
   </property>
pixhawk's avatar
pixhawk committed
170 171 172 173 174 175 176 177 178
   <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
179
    <iconset resource="../../qgroundcontrol.qrc">
180
     <normaloff>:/files/images/actions/list-add.svg</normaloff>:/files/images/actions/list-add.svg</iconset>
pixhawk's avatar
pixhawk committed
181 182 183 184 185 186 187
   </property>
   <property name="text">
    <string>Add Link</string>
   </property>
  </action>
  <action name="actionConfiguration">
   <property name="icon">
lm's avatar
lm committed
188
    <iconset resource="../../qgroundcontrol.qrc">
189
     <normaloff>:/files/images/categories/applications-system.svg</normaloff>:/files/images/categories/applications-system.svg</iconset>
pixhawk's avatar
pixhawk committed
190 191 192 193 194 195 196 197 198 199
   </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
200
    <iconset resource="../../qgroundcontrol.qrc">
201
     <normaloff>:/files/images/devices/input-gaming.svg</normaloff>:/files/images/devices/input-gaming.svg</iconset>
pixhawk's avatar
pixhawk committed
202 203
   </property>
   <property name="text">
204
    <string>Joystick Configuration</string>
pixhawk's avatar
pixhawk committed
205
   </property>
206 207 208
   <property name="visible">
    <bool>true</bool>
   </property>
pixhawk's avatar
pixhawk committed
209
  </action>
210 211 212 213 214
  <action name="actionSimulate">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
lm's avatar
lm committed
215
    <iconset resource="../../qgroundcontrol.qrc">
216
     <normaloff>:/files/images/control/launch.svg</normaloff>:/files/images/control/launch.svg</iconset>
217 218 219 220 221 222 223 224
   </property>
   <property name="text">
    <string>Simulate</string>
   </property>
   <property name="toolTip">
    <string>Simulate one vehicle to test and evaluate this application</string>
   </property>
  </action>
225 226
  <action name="actionShow_Slugs_View">
   <property name="icon">
lm's avatar
lm committed
227
    <iconset resource="../../qgroundcontrol.qrc">
228
     <normaloff>:/files/images/contrib/slugs.png</normaloff>:/files/images/contrib/slugs.png</iconset>
229 230 231 232 233
   </property>
   <property name="text">
    <string>Show Slugs View</string>
   </property>
  </action>
234 235
  <action name="actionJoystick_Settings">
   <property name="icon">
lm's avatar
lm committed
236
    <iconset resource="../../qgroundcontrol.qrc">
237
     <normaloff>:/files/images/devices/input-gaming.svg</normaloff>:/files/images/devices/input-gaming.svg</iconset>
238 239 240 241 242 243 244 245
   </property>
   <property name="text">
    <string>Joystick Settings</string>
   </property>
   <property name="visible">
    <bool>false</bool>
   </property>
  </action>
246 247
  <action name="actionOnline_Documentation">
   <property name="icon">
lm's avatar
lm committed
248
    <iconset resource="../../qgroundcontrol.qrc">
249
     <normaloff>:/files/images/apps/utilities-system-monitor.svg</normaloff>:/files/images/apps/utilities-system-monitor.svg</iconset>
250 251 252 253 254 255 256
   </property>
   <property name="text">
    <string>Online Documentation</string>
   </property>
  </action>
  <action name="actionProject_Roadmap_2">
   <property name="icon">
lm's avatar
lm committed
257
    <iconset resource="../../qgroundcontrol.qrc">
258
     <normaloff>:/files/images/status/software-update-available.svg</normaloff>:/files/images/status/software-update-available.svg</iconset>
259 260 261 262 263 264 265
   </property>
   <property name="text">
    <string>Project Roadmap</string>
   </property>
  </action>
  <action name="actionDeveloper_Credits">
   <property name="icon">
lm's avatar
lm committed
266
    <iconset resource="../../qgroundcontrol.qrc">
267
     <normaloff>:/files/images/categories/preferences-system.svg</normaloff>:/files/images/categories/preferences-system.svg</iconset>
268 269 270 271 272
   </property>
   <property name="text">
    <string>Developer Credits</string>
   </property>
  </action>
273
  <action name="actionMissionView">
274 275 276
   <property name="checkable">
    <bool>true</bool>
   </property>
277
   <property name="icon">
lm's avatar
lm committed
278
    <iconset resource="../../qgroundcontrol.qrc">
279
     <normaloff>:/files/images/categories/applications-internet.svg</normaloff>:/files/images/categories/applications-internet.svg</iconset>
280 281
   </property>
   <property name="text">
282
    <string>Mission</string>
283 284 285
   </property>
  </action>
  <action name="actionEngineersView">
286 287 288
   <property name="checkable">
    <bool>true</bool>
   </property>
289
   <property name="icon">
lm's avatar
lm committed
290
    <iconset resource="../../qgroundcontrol.qrc">
291
     <normaloff>:/files/images/apps/utilities-system-monitor.svg</normaloff>:/files/images/apps/utilities-system-monitor.svg</iconset>
292 293
   </property>
   <property name="text">
Lorenz Meier's avatar
Lorenz Meier committed
294
    <string>Plot</string>
295 296 297
   </property>
  </action>
  <action name="actionMavlinkView">
298 299 300
   <property name="checkable">
    <bool>true</bool>
   </property>
301
   <property name="icon">
lm's avatar
lm committed
302
    <iconset resource="../../qgroundcontrol.qrc">
303
     <normaloff>:/files/images/devices/network-wired.svg</normaloff>:/files/images/devices/network-wired.svg</iconset>
304 305 306 307 308
   </property>
   <property name="text">
    <string>Mavlink</string>
   </property>
  </action>
309
  <action name="actionFlightView">
310 311 312
   <property name="checkable">
    <bool>true</bool>
   </property>
313
   <property name="icon">
lm's avatar
lm committed
314
    <iconset resource="../../qgroundcontrol.qrc">
315
     <normaloff>:/files/images/status/network-wireless-encrypted.svg</normaloff>:/files/images/status/network-wireless-encrypted.svg</iconset>
316 317
   </property>
   <property name="text">
318
    <string>Instruments</string>
319 320
   </property>
  </action>
321
  <action name="actionNewCustomWidget">
322
   <property name="icon">
lm's avatar
lm committed
323
    <iconset resource="../../qgroundcontrol.qrc">
324
     <normaloff>:/files/images/apps/utilities-system-monitor.svg</normaloff>:/files/images/apps/utilities-system-monitor.svg</iconset>
325
   </property>
326 327 328 329
   <property name="text">
    <string>New Custom Widget</string>
   </property>
  </action>
330 331 332 333 334
  <action name="actionMuteAudioOutput">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
lm's avatar
lm committed
335
    <iconset resource="../../qgroundcontrol.qrc">
336 337 338 339 340
     <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>
341 342 343 344 345
   </property>
   <property name="text">
    <string>Mute Audio Output</string>
   </property>
  </action>
346 347 348 349 350
  <action name="actionUnconnectedView">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
lm's avatar
lm committed
351
    <iconset resource="../../qgroundcontrol.qrc">
352
     <normaloff>:/files/images/devices/network-wireless.svg</normaloff>:/files/images/devices/network-wireless.svg</iconset>
353 354 355 356 357
   </property>
   <property name="text">
    <string>Unconnected</string>
   </property>
  </action>
358 359
  <action name="actionShutdownMAV">
   <property name="icon">
lm's avatar
lm committed
360
    <iconset resource="../../qgroundcontrol.qrc">
361
     <normaloff>:/files/images/actions/system-log-out.svg</normaloff>:/files/images/actions/system-log-out.svg</iconset>
362 363 364 365 366 367 368 369 370 371 372
   </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>
373 374 375 376
  <action name="actionSettings">
   <property name="text">
    <string>Settings</string>
   </property>
377 378 379
   <property name="toolTip">
    <string>Application settings</string>
   </property>
380
  </action>
lm's avatar
lm committed
381
  <action name="actionFullscreen">
382 383 384 385 386 387
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="checked">
    <bool>false</bool>
   </property>
lm's avatar
lm committed
388 389 390 391 392
   <property name="text">
    <string>Fullscreen</string>
   </property>
  </action>
  <action name="actionNormal">
393 394 395 396 397 398
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="checked">
    <bool>false</bool>
   </property>
lm's avatar
lm committed
399 400 401 402 403 404 405
   <property name="text">
    <string>Normal</string>
   </property>
   <property name="shortcut">
    <string>Esc</string>
   </property>
  </action>
406 407
  <action name="actionLoadCustomWidgetFile">
   <property name="icon">
lm's avatar
lm committed
408
    <iconset resource="../../qgroundcontrol.qrc">
409
     <normaloff>:/files/images/status/folder-drag-accept.svg</normaloff>:/files/images/status/folder-drag-accept.svg</iconset>
410 411 412 413 414
   </property>
   <property name="text">
    <string>Load Custom Widget File</string>
   </property>
  </action>
Lorenz Meier's avatar
Lorenz Meier committed
415
  <action name="actionFirmwareUpdateView">
416 417 418
   <property name="checkable">
    <bool>true</bool>
   </property>
Lorenz Meier's avatar
Lorenz Meier committed
419 420
   <property name="icon">
    <iconset resource="../../qgroundcontrol.qrc">
421
     <normaloff>:/files/images/status/software-update-available.svg</normaloff>:/files/images/status/software-update-available.svg</iconset>
Lorenz Meier's avatar
Lorenz Meier committed
422 423 424 425 426 427 428
   </property>
   <property name="text">
    <string>Firmware Update</string>
   </property>
   <property name="toolTip">
    <string>Update the firmware of one of the connected autopilots</string>
   </property>
429 430 431
   <property name="visible">
    <bool>false</bool>
   </property>
Lorenz Meier's avatar
Lorenz Meier committed
432
  </action>
433
  <action name="actionHardwareConfig">
434 435 436
   <property name="checkable">
    <bool>true</bool>
   </property>
437 438 439 440 441
   <property name="icon">
    <iconset resource="../../qgroundcontrol.qrc">
     <normaloff>:/files/images/categories/preferences-system.svg</normaloff>:/files/images/categories/preferences-system.svg</iconset>
   </property>
   <property name="text">
442
    <string>Vehicle Setup</string>
443 444
   </property>
   <property name="toolTip">
445
    <string>Hardware setup of the vehicle</string>
446 447
   </property>
  </action>
448 449 450 451 452 453 454 455
  <action name="actionAdvanced_Mode">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="text">
    <string>Advanced Mode</string>
   </property>
  </action>
456
  <action name="actionSimulationView">
457 458 459 460 461 462 463
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
    <iconset resource="../../qgroundcontrol.qrc">
     <normaloff>:/files/images/apps/accessories-calculator.svg</normaloff>:/files/images/apps/accessories-calculator.svg</iconset>
   </property>
464 465 466 467
   <property name="text">
    <string>Simulation</string>
   </property>
  </action>
468
  <action name="actionSoftwareConfig">
469 470 471
   <property name="checkable">
    <bool>true</bool>
   </property>
472 473 474 475
   <property name="icon">
    <iconset resource="../../qgroundcontrol.qrc">
     <normaloff>:/files/images/categories/applications-system.svg</normaloff>:/files/images/categories/applications-system.svg</iconset>
   </property>
476 477 478 479
   <property name="text">
    <string>Software</string>
   </property>
  </action>
480 481 482 483 484 485 486 487 488 489 490 491
  <action name="actionTerminalView">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
    <iconset resource="../../qgroundcontrol.qrc">
     <normaloff>:/files/images/apps/utilities-terminal.svg</normaloff>:/files/images/apps/utilities-terminal.svg</iconset>
   </property>
   <property name="text">
    <string>Terminal</string>
   </property>
  </action>
492
  <action name="actionGoogleEarthView">
493 494 495
   <property name="checkable">
    <bool>true</bool>
   </property>
496 497 498 499 500
   <property name="text">
    <string>Google Earth</string>
   </property>
  </action>
  <action name="actionLocal3DView">
501 502 503
   <property name="checkable">
    <bool>true</bool>
   </property>
504 505 506 507
   <property name="text">
    <string>Local 3D View</string>
   </property>
  </action>
pixhawk's avatar
pixhawk committed
508 509 510
 </widget>
 <layoutdefault spacing="6" margin="11"/>
 <resources>
lm's avatar
lm committed
511
  <include location="../../qgroundcontrol.qrc"/>
pixhawk's avatar
pixhawk committed
512 513 514 515 516
 </resources>
 <connections>
  <connection>
   <sender>actionExit</sender>
   <signal>triggered()</signal>
pixhawk's avatar
pixhawk committed
517
   <receiver>MainWindow</receiver>
pixhawk's avatar
pixhawk committed
518 519 520 521 522 523 524 525 526 527 528 529
   <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
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 560 561
  <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
562 563
 </connections>
</ui>