MainWindow.ui 14 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
    <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"/>
pixhawk's avatar
pixhawk committed
66
    <addaction name="actionPreferences"/>
67
    <addaction name="actionReloadStyle"/>
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="menuConnected_Systems">
79
    <property name="enabled">
80
     <bool>true</bool>
81
    </property>
pixhawk's avatar
pixhawk committed
82
    <property name="title">
83
     <string>Select System</string>
pixhawk's avatar
pixhawk committed
84 85
    </property>
   </widget>
86
   <widget class="QMenu" name="menuUnmanned_System">
87
    <property name="enabled">
88
     <bool>true</bool>
89
    </property>
90
    <property name="title">
91
     <string>Unmanned System</string>
92
    </property>
93 94 95
    <property name="separatorsCollapsible">
     <bool>false</bool>
    </property>
96
    <addaction name="actionShutdownMAV"/>
97 98 99 100
    <addaction name="actionLiftoff"/>
    <addaction name="actionLand"/>
    <addaction name="actionEmergency_Land"/>
    <addaction name="actionEmergency_Kill"/>
101
   </widget>
102
   <widget class="QMenu" name="menuTools">
103
    <property name="title">
104
     <string>Widgets</string>
105
    </property>
pixhawk's avatar
pixhawk committed
106
    <addaction name="actionNewCustomWidget"/>
107 108 109 110 111 112 113 114 115 116 117 118 119
   </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>
120
    <addaction name="actionOperatorsView"/>
121
    <addaction name="actionEngineersView"/>
122
    <addaction name="actionPilotsView"/>
123 124
    <addaction name="separator"/>
    <addaction name="actionMavlinkView"/>
125 126 127 128 129 130
    <addaction name="actionUnconnectedView"/>
   </widget>
   <widget class="QMenu" name="menuMain">
    <property name="title">
     <string>Main</string>
    </property>
131
   </widget>
pixhawk's avatar
pixhawk committed
132 133
   <addaction name="menuMGround"/>
   <addaction name="menuNetwork"/>
134
   <addaction name="menuConnected_Systems"/>
pixhawk's avatar
pixhawk committed
135
   <addaction name="menuUnmanned_System"/>
136
   <addaction name="menuMain"/>
137
   <addaction name="menuTools"/>
138 139
   <addaction name="menuPerspectives"/>
   <addaction name="menuHelp"/>
pixhawk's avatar
pixhawk committed
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
  </widget>
  <widget class="QStatusBar" name="statusBar"/>
  <action name="actionExit">
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <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">
155 156 157
   <property name="enabled">
    <bool>true</bool>
   </property>
pixhawk's avatar
pixhawk committed
158 159
   <property name="icon">
    <iconset resource="../../mavground.qrc">
lm's avatar
lm committed
160 161
     <normaloff>:/images/control/launch.svg</normaloff>
     <normalon>:/images/control/launch.svg</normalon>:/images/control/launch.svg</iconset>
pixhawk's avatar
pixhawk committed
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
   </property>
   <property name="text">
    <string>Liftoff</string>
   </property>
  </action>
  <action name="actionLand">
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <normaloff>:/images/control/land.svg</normaloff>:/images/control/land.svg</iconset>
   </property>
   <property name="text">
    <string>Land</string>
   </property>
  </action>
  <action name="actionEmergency_Land">
177 178 179 180
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <normaloff>:/images/actions/process-stop.svg</normaloff>:/images/actions/process-stop.svg</iconset>
   </property>
pixhawk's avatar
pixhawk committed
181 182 183 184 185 186 187 188
   <property name="text">
    <string>Emergency Land</string>
   </property>
   <property name="shortcut">
    <string>Ctrl+E</string>
   </property>
  </action>
  <action name="actionEmergency_Kill">
189 190 191 192
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <normaloff>:/images/actions/process-stop.svg</normaloff>:/images/actions/process-stop.svg</iconset>
   </property>
pixhawk's avatar
pixhawk committed
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
   <property name="text">
    <string>Kill UAS</string>
   </property>
   <property name="shortcut">
    <string>Ctrl+K</string>
   </property>
  </action>
  <action name="actionAdd_Link">
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <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">
    <iconset resource="../../mavground.qrc">
     <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">
    <iconset resource="../../mavground.qrc">
     <normaloff>:/images/devices/input-gaming.svg</normaloff>:/images/devices/input-gaming.svg</iconset>
   </property>
   <property name="text">
227
    <string>Joystick Test</string>
pixhawk's avatar
pixhawk committed
228
   </property>
229 230 231
   <property name="visible">
    <bool>true</bool>
   </property>
pixhawk's avatar
pixhawk committed
232
  </action>
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
  <action name="actionSimulate">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <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>
248 249 250
  <action name="actionShow_Slugs_View">
   <property name="icon">
    <iconset resource="../../mavground.qrc">
251
     <normaloff>:/images/contrib/slugs.png</normaloff>:/images/contrib/slugs.png</iconset>
252 253 254 255 256
   </property>
   <property name="text">
    <string>Show Slugs View</string>
   </property>
  </action>
257 258 259 260 261 262 263 264 265 266 267 268
  <action name="actionJoystick_Settings">
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <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>
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
  <action name="actionOnline_Documentation">
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <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">
    <iconset resource="../../mavground.qrc">
     <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">
    <iconset resource="../../mavground.qrc">
     <normaloff>:/images/categories/preferences-system.svg</normaloff>:/images/categories/preferences-system.svg</iconset>
   </property>
   <property name="text">
    <string>Developer Credits</string>
   </property>
  </action>
296
  <action name="actionOperatorsView">
297 298 299
   <property name="checkable">
    <bool>true</bool>
   </property>
300 301 302 303 304
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <normaloff>:/images/status/weather-overcast.svg</normaloff>:/images/status/weather-overcast.svg</iconset>
   </property>
   <property name="text">
305
    <string>Operator</string>
306
   </property>
307 308 309
   <property name="shortcut">
    <string>Meta+O</string>
   </property>
310 311
  </action>
  <action name="actionEngineersView">
312 313 314
   <property name="checkable">
    <bool>true</bool>
   </property>
315 316 317 318 319 320 321
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <normaloff>:/images/apps/utilities-system-monitor.svg</normaloff>:/images/apps/utilities-system-monitor.svg</iconset>
   </property>
   <property name="text">
    <string>Engineer</string>
   </property>
322 323 324
   <property name="shortcut">
    <string>Meta+E</string>
   </property>
325 326
  </action>
  <action name="actionMavlinkView">
327 328 329
   <property name="checkable">
    <bool>true</bool>
   </property>
330 331 332 333 334 335 336
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <normaloff>:/images/devices/network-wired.svg</normaloff>:/images/devices/network-wired.svg</iconset>
   </property>
   <property name="text">
    <string>Mavlink</string>
   </property>
337 338 339
   <property name="shortcut">
    <string>Meta+M</string>
   </property>
340 341 342 343 344 345 346
  </action>
  <action name="actionReloadStyle">
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <normaloff>:/images/categories/applications-internet.svg</normaloff>:/images/categories/applications-internet.svg</iconset>
   </property>
   <property name="text">
pixhawk's avatar
pixhawk committed
347
    <string>Load Stylesheet</string>
348 349
   </property>
  </action>
350
  <action name="actionPilotsView">
351 352 353
   <property name="checkable">
    <bool>true</bool>
   </property>
354 355 356 357 358
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <normaloff>:/images/status/network-wireless-encrypted.svg</normaloff>:/images/status/network-wireless-encrypted.svg</iconset>
   </property>
   <property name="text">
359
    <string>Pilot</string>
360
   </property>
361 362 363
   <property name="shortcut">
    <string>Meta+P</string>
   </property>
364
  </action>
365
  <action name="actionNewCustomWidget">
366 367 368 369
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <normaloff>:/images/apps/utilities-system-monitor.svg</normaloff>:/images/apps/utilities-system-monitor.svg</iconset>
   </property>
370 371 372 373
   <property name="text">
    <string>New Custom Widget</string>
   </property>
  </action>
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
  <action name="actionMuteAudioOutput">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <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>
390 391 392 393 394 395 396 397 398 399 400 401
  <action name="actionPreferences">
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <normaloff>:/images/categories/preferences-system.svg</normaloff>:/images/categories/preferences-system.svg</iconset>
   </property>
   <property name="text">
    <string>Preferences</string>
   </property>
   <property name="toolTip">
    <string>QGroundControl global settings</string>
   </property>
  </action>
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
  <action name="actionUnconnectedView">
   <property name="checkable">
    <bool>true</bool>
   </property>
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <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>
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
  <action name="actionShutdownMAV">
   <property name="icon">
    <iconset resource="../../mavground.qrc">
     <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>
pixhawk's avatar
pixhawk committed
432 433 434 435 436 437 438 439 440
 </widget>
 <layoutdefault spacing="6" margin="11"/>
 <resources>
  <include location="../../mavground.qrc"/>
 </resources>
 <connections>
  <connection>
   <sender>actionExit</sender>
   <signal>triggered()</signal>
pixhawk's avatar
pixhawk committed
441
   <receiver>MainWindow</receiver>
pixhawk's avatar
pixhawk committed
442 443 444 445 446 447 448 449 450 451 452 453 454 455
   <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>
 </connections>
</ui>