MainWindow.ui 16.5 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>
Lorenz Meier's avatar
Lorenz Meier committed
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>true</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>true</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 145 146
     <string>Main Widget</string>
    </property>
   </widget>
   <widget class="QMenu" name="menuPlugins">
    <property name="title">
     <string>Plugins</string>
147
    </property>
148
   </widget>
pixhawk's avatar
pixhawk committed
149 150
   <addaction name="menuMGround"/>
   <addaction name="menuNetwork"/>
151
   <addaction name="menuConnected_Systems"/>
pixhawk's avatar
pixhawk committed
152
   <addaction name="menuUnmanned_System"/>
Lorenz Meier's avatar
Lorenz Meier committed
153
   <addaction name="menuPerspectives"/>
154
   <addaction name="menuMain"/>
155
   <addaction name="menuTools"/>
Lorenz Meier's avatar
Lorenz Meier committed
156
   <addaction name="menuPlugins"/>
157
   <addaction name="menuHelp"/>
pixhawk's avatar
pixhawk committed
158 159 160 161
  </widget>
  <widget class="QStatusBar" name="statusBar"/>
  <action name="actionExit">
   <property name="icon">
lm's avatar
lm committed
162
    <iconset resource="../../qgroundcontrol.qrc">
pixhawk's avatar
pixhawk committed
163 164 165 166 167 168 169 170 171 172
     <normaloff>:/images/actions/system-log-out.svg</normaloff>:/images/actions/system-log-out.svg</iconset>
   </property>
   <property name="text">
    <string>Exit</string>
   </property>
   <property name="shortcut">
    <string>Ctrl+Q</string>
   </property>
  </action>
  <action name="actionLiftoff">
173 174 175
   <property name="enabled">
    <bool>true</bool>
   </property>
pixhawk's avatar
pixhawk committed
176
   <property name="icon">
lm's avatar
lm committed
177
    <iconset resource="../../qgroundcontrol.qrc">
lm's avatar
lm committed
178 179
     <normaloff>:/images/control/launch.svg</normaloff>
     <normalon>:/images/control/launch.svg</normalon>:/images/control/launch.svg</iconset>
pixhawk's avatar
pixhawk committed
180 181 182 183 184 185 186
   </property>
   <property name="text">
    <string>Liftoff</string>
   </property>
  </action>
  <action name="actionLand">
   <property name="icon">
lm's avatar
lm committed
187
    <iconset resource="../../qgroundcontrol.qrc">
pixhawk's avatar
pixhawk committed
188 189 190 191 192 193 194
     <normaloff>:/images/control/land.svg</normaloff>:/images/control/land.svg</iconset>
   </property>
   <property name="text">
    <string>Land</string>
   </property>
  </action>
  <action name="actionEmergency_Land">
195
   <property name="icon">
lm's avatar
lm committed
196
    <iconset resource="../../qgroundcontrol.qrc">
197 198
     <normaloff>:/images/actions/process-stop.svg</normaloff>:/images/actions/process-stop.svg</iconset>
   </property>
pixhawk's avatar
pixhawk committed
199 200 201 202 203 204 205 206
   <property name="text">
    <string>Emergency Land</string>
   </property>
   <property name="shortcut">
    <string>Ctrl+E</string>
   </property>
  </action>
  <action name="actionEmergency_Kill">
207
   <property name="icon">
lm's avatar
lm committed
208
    <iconset resource="../../qgroundcontrol.qrc">
209 210
     <normaloff>:/images/actions/process-stop.svg</normaloff>:/images/actions/process-stop.svg</iconset>
   </property>
pixhawk's avatar
pixhawk committed
211 212 213 214 215 216 217 218 219
   <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
220
    <iconset resource="../../qgroundcontrol.qrc">
pixhawk's avatar
pixhawk committed
221 222 223 224 225 226 227 228
     <normaloff>:/images/actions/list-add.svg</normaloff>:/images/actions/list-add.svg</iconset>
   </property>
   <property name="text">
    <string>Add Link</string>
   </property>
  </action>
  <action name="actionConfiguration">
   <property name="icon">
lm's avatar
lm committed
229
    <iconset resource="../../qgroundcontrol.qrc">
pixhawk's avatar
pixhawk committed
230 231 232 233 234 235 236 237 238 239 240
     <normaloff>:/images/categories/applications-system.svg</normaloff>:/images/categories/applications-system.svg</iconset>
   </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
241
    <iconset resource="../../qgroundcontrol.qrc">
pixhawk's avatar
pixhawk committed
242 243 244
     <normaloff>:/images/devices/input-gaming.svg</normaloff>:/images/devices/input-gaming.svg</iconset>
   </property>
   <property name="text">
245
    <string>Joystick Test</string>
pixhawk's avatar
pixhawk committed
246
   </property>
247 248 249
   <property name="visible">
    <bool>true</bool>
   </property>
pixhawk's avatar
pixhawk committed
250
  </action>
251 252 253 254 255
  <action name="actionSimulate">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
lm's avatar
lm committed
256
    <iconset resource="../../qgroundcontrol.qrc">
257 258 259 260 261 262 263 264 265
     <normaloff>:/images/control/launch.svg</normaloff>:/images/control/launch.svg</iconset>
   </property>
   <property name="text">
    <string>Simulate</string>
   </property>
   <property name="toolTip">
    <string>Simulate one vehicle to test and evaluate this application</string>
   </property>
  </action>
266 267
  <action name="actionShow_Slugs_View">
   <property name="icon">
lm's avatar
lm committed
268
    <iconset resource="../../qgroundcontrol.qrc">
269
     <normaloff>:/images/contrib/slugs.png</normaloff>:/images/contrib/slugs.png</iconset>
270 271 272 273 274
   </property>
   <property name="text">
    <string>Show Slugs View</string>
   </property>
  </action>
275 276
  <action name="actionJoystick_Settings">
   <property name="icon">
lm's avatar
lm committed
277
    <iconset resource="../../qgroundcontrol.qrc">
278 279 280 281 282 283 284 285 286
     <normaloff>:/images/devices/input-gaming.svg</normaloff>:/images/devices/input-gaming.svg</iconset>
   </property>
   <property name="text">
    <string>Joystick Settings</string>
   </property>
   <property name="visible">
    <bool>false</bool>
   </property>
  </action>
287 288
  <action name="actionOnline_Documentation">
   <property name="icon">
lm's avatar
lm committed
289
    <iconset resource="../../qgroundcontrol.qrc">
290 291 292 293 294 295 296 297
     <normaloff>:/images/apps/utilities-system-monitor.svg</normaloff>:/images/apps/utilities-system-monitor.svg</iconset>
   </property>
   <property name="text">
    <string>Online Documentation</string>
   </property>
  </action>
  <action name="actionProject_Roadmap_2">
   <property name="icon">
lm's avatar
lm committed
298
    <iconset resource="../../qgroundcontrol.qrc">
299 300 301 302 303 304 305 306
     <normaloff>:/images/status/software-update-available.svg</normaloff>:/images/status/software-update-available.svg</iconset>
   </property>
   <property name="text">
    <string>Project Roadmap</string>
   </property>
  </action>
  <action name="actionDeveloper_Credits">
   <property name="icon">
lm's avatar
lm committed
307
    <iconset resource="../../qgroundcontrol.qrc">
308 309 310 311 312 313
     <normaloff>:/images/categories/preferences-system.svg</normaloff>:/images/categories/preferences-system.svg</iconset>
   </property>
   <property name="text">
    <string>Developer Credits</string>
   </property>
  </action>
314
  <action name="actionOperatorsView">
315 316 317
   <property name="checkable">
    <bool>true</bool>
   </property>
318
   <property name="icon">
lm's avatar
lm committed
319
    <iconset resource="../../qgroundcontrol.qrc">
320 321 322
     <normaloff>:/images/status/weather-overcast.svg</normaloff>:/images/status/weather-overcast.svg</iconset>
   </property>
   <property name="text">
323
    <string>Operator</string>
324
   </property>
325 326 327
   <property name="shortcut">
    <string>Meta+O</string>
   </property>
328 329
  </action>
  <action name="actionEngineersView">
330 331 332
   <property name="checkable">
    <bool>true</bool>
   </property>
333
   <property name="icon">
lm's avatar
lm committed
334
    <iconset resource="../../qgroundcontrol.qrc">
335 336 337 338 339
     <normaloff>:/images/apps/utilities-system-monitor.svg</normaloff>:/images/apps/utilities-system-monitor.svg</iconset>
   </property>
   <property name="text">
    <string>Engineer</string>
   </property>
340 341 342
   <property name="shortcut">
    <string>Meta+E</string>
   </property>
343 344
  </action>
  <action name="actionMavlinkView">
345 346 347
   <property name="checkable">
    <bool>true</bool>
   </property>
348
   <property name="icon">
lm's avatar
lm committed
349
    <iconset resource="../../qgroundcontrol.qrc">
350 351 352 353 354
     <normaloff>:/images/devices/network-wired.svg</normaloff>:/images/devices/network-wired.svg</iconset>
   </property>
   <property name="text">
    <string>Mavlink</string>
   </property>
355 356 357
   <property name="shortcut">
    <string>Meta+M</string>
   </property>
358
  </action>
359
  <action name="actionSelectStylesheet">
360
   <property name="icon">
lm's avatar
lm committed
361
    <iconset resource="../../qgroundcontrol.qrc">
362 363 364
     <normaloff>:/images/categories/applications-internet.svg</normaloff>:/images/categories/applications-internet.svg</iconset>
   </property>
   <property name="text">
365
    <string>Select Stylesheet</string>
366 367
   </property>
  </action>
368
  <action name="actionPilotsView">
369 370 371
   <property name="checkable">
    <bool>true</bool>
   </property>
372
   <property name="icon">
lm's avatar
lm committed
373
    <iconset resource="../../qgroundcontrol.qrc">
374 375 376
     <normaloff>:/images/status/network-wireless-encrypted.svg</normaloff>:/images/status/network-wireless-encrypted.svg</iconset>
   </property>
   <property name="text">
377
    <string>Pilot</string>
378
   </property>
379 380 381
   <property name="shortcut">
    <string>Meta+P</string>
   </property>
382
  </action>
383
  <action name="actionNewCustomWidget">
384
   <property name="icon">
lm's avatar
lm committed
385
    <iconset resource="../../qgroundcontrol.qrc">
386 387
     <normaloff>:/images/apps/utilities-system-monitor.svg</normaloff>:/images/apps/utilities-system-monitor.svg</iconset>
   </property>
388 389 390 391
   <property name="text">
    <string>New Custom Widget</string>
   </property>
  </action>
392 393 394 395 396
  <action name="actionMuteAudioOutput">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
lm's avatar
lm committed
397
    <iconset resource="../../qgroundcontrol.qrc">
398 399 400 401 402 403 404 405 406 407
     <normaloff>:/images/status/audio-volume-high.svg</normaloff>
     <normalon>:/images/status/audio-volume-muted.svg</normalon>
     <activeon>:/images/status/audio-volume-muted.svg</activeon>
     <selectedoff>:/images/status/audio-volume-high.svg</selectedoff>
     <selectedon>:/images/status/audio-volume-muted.svg</selectedon>:/images/status/audio-volume-high.svg</iconset>
   </property>
   <property name="text">
    <string>Mute Audio Output</string>
   </property>
  </action>
408 409 410 411 412
  <action name="actionUnconnectedView">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
lm's avatar
lm committed
413
    <iconset resource="../../qgroundcontrol.qrc">
414 415 416 417 418 419 420 421 422
     <normaloff>:/images/devices/network-wireless.svg</normaloff>:/images/devices/network-wireless.svg</iconset>
   </property>
   <property name="text">
    <string>Unconnected</string>
   </property>
   <property name="shortcut">
    <string>Meta+U</string>
   </property>
  </action>
423 424
  <action name="actionShutdownMAV">
   <property name="icon">
lm's avatar
lm committed
425
    <iconset resource="../../qgroundcontrol.qrc">
426 427 428 429 430 431 432 433 434 435 436 437
     <normaloff>:/images/actions/system-log-out.svg</normaloff>:/images/actions/system-log-out.svg</iconset>
   </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>
438 439 440 441 442 443 444 445
  <action name="actionReloadStylesheet">
   <property name="text">
    <string>Reload Stylesheet</string>
   </property>
   <property name="shortcut">
    <string>Meta+R</string>
   </property>
  </action>
446 447 448 449 450
  <action name="actionSettings">
   <property name="text">
    <string>Settings</string>
   </property>
  </action>
lm's avatar
lm committed
451 452 453 454 455
  <action name="actionFullscreen">
   <property name="text">
    <string>Fullscreen</string>
   </property>
   <property name="shortcut">
456
    <string>Meta+Return</string>
lm's avatar
lm committed
457 458 459 460 461 462 463 464 465 466
   </property>
  </action>
  <action name="actionNormal">
   <property name="text">
    <string>Normal</string>
   </property>
   <property name="shortcut">
    <string>Esc</string>
   </property>
  </action>
467 468
  <action name="actionLoadCustomWidgetFile">
   <property name="icon">
lm's avatar
lm committed
469
    <iconset resource="../../qgroundcontrol.qrc">
470 471 472 473 474 475
     <normaloff>:/images/status/folder-drag-accept.svg</normaloff>:/images/status/folder-drag-accept.svg</iconset>
   </property>
   <property name="text">
    <string>Load Custom Widget File</string>
   </property>
  </action>
Lorenz Meier's avatar
Lorenz Meier committed
476 477 478 479 480 481 482 483 484 485 486 487
  <action name="actionFirmwareUpdateView">
   <property name="icon">
    <iconset resource="../../qgroundcontrol.qrc">
     <normaloff>:/images/status/software-update-available.svg</normaloff>:/images/status/software-update-available.svg</iconset>
   </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>
pixhawk's avatar
pixhawk committed
488 489 490
 </widget>
 <layoutdefault spacing="6" margin="11"/>
 <resources>
lm's avatar
lm committed
491
  <include location="../../qgroundcontrol.qrc"/>
pixhawk's avatar
pixhawk committed
492 493 494 495 496
 </resources>
 <connections>
  <connection>
   <sender>actionExit</sender>
   <signal>triggered()</signal>
pixhawk's avatar
pixhawk committed
497
   <receiver>MainWindow</receiver>
pixhawk's avatar
pixhawk committed
498 499 500 501 502 503 504 505 506 507 508 509
   <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
510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
  <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
542 543
 </connections>
</ui>