UASView.ui 17 KB
Newer Older
pixhawk's avatar
pixhawk committed
1 2 3 4 5 6 7 8
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>UASView</class>
 <widget class="QWidget" name="UASView">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
9
    <width>370</width>
10
    <height>120</height>
pixhawk's avatar
pixhawk committed
11 12 13 14 15 16 17 18 19 20
   </rect>
  </property>
  <property name="sizePolicy">
   <sizepolicy hsizetype="Maximum" vsizetype="Fixed">
    <horstretch>0</horstretch>
    <verstretch>0</verstretch>
   </sizepolicy>
  </property>
  <property name="minimumSize">
   <size>
21
    <width>370</width>
pixhawk's avatar
pixhawk committed
22 23 24 25 26 27 28
    <height>0</height>
   </size>
  </property>
  <property name="windowTitle">
   <string>Form</string>
  </property>
  <property name="styleSheet">
29
   <string notr="true">QWidget#colorIcon {}
pixhawk's avatar
pixhawk committed
30 31

QWidget {
pixhawk's avatar
pixhawk committed
32
background-color: none;
pixhawk's avatar
pixhawk committed
33 34 35 36 37
color: #DDDDDF;
border-color: #EEEEEE;
background-clip: margin;
}

pixhawk's avatar
pixhawk committed
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
QLabel#nameLabel {
	font: bold 16px;
	color: #3C7B9E;
}

QLabel#modeLabel {
	font: 12px;
}

QLabel#stateLabel {
	font: 12px;
}

QLabel#gpsLabel {
	font: 8px;
}

QLabel#positionLabel {
	font: 8px;
}

QLabel#timeElapsedLabel {
	font: 8px;
}

QLabel#groundDistanceLabel {
	font: 8px;
}

QLabel#speedLabel {
	font: 8px;
}

QLabel#timeRemainingLabel {
	font: 8px;
}

QLabel#waypointLabel {
	font: 24px;
}

pixhawk's avatar
pixhawk committed
79
QGroupBox {
pixhawk's avatar
pixhawk committed
80
	border: 1px solid #4A4A4F;
pixhawk's avatar
pixhawk committed
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
	border-radius: 5px;
	padding: 0px 0px 0px 0px;
	margin: 0px;
}

 QGroupBox::title {
     subcontrol-origin: margin;
     subcontrol-position: top center; /* position at the top center */
     margin: 0 3px 0px 3px;
     padding: 0 3px 0px 0px;
     font: bold 8px;
 }

QGroupBox#heartbeatIcon {
	background-color: red;
}

pixhawk's avatar
pixhawk committed
98 99 100 101 102 103 104 105 106 107 108 109 110
QToolButton#typeButton {
	font-weight: bold;
	font-size: 12px;
	border: 2px solid #999999;
	border-radius: 5px;
	min-width:44px;
	max-width: 44px;
	min-height: 44px;
	max-height: 44px;
	padding: 0px;
	background-color: none;
}

pixhawk's avatar
pixhawk committed
111 112 113 114 115
QPushButton {
	font-weight: bold;
	font-size: 12px;
	border: 1px solid #999999;
	border-radius: 10px;
116
	min-width: 20px;
pixhawk's avatar
pixhawk committed
117 118 119 120 121 122 123 124 125 126 127
	max-width: 40px;
	min-height: 16px;
	max-height: 16px;
	padding: 2px;
	background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #777777, stop: 1 #555555);
}

QPushButton:pressed {
	background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #444444, stop: 1 #555555);
}

pixhawk's avatar
pixhawk committed
128
QPushButton#abortButton {
pixhawk's avatar
pixhawk committed
129
	background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
pixhawk's avatar
pixhawk committed
130
                             stop:0 #ffee01, stop:1 #ae8f00);
pixhawk's avatar
pixhawk committed
131 132
}

pixhawk's avatar
pixhawk committed
133
QPushButton:pressed#abortButton {
pixhawk's avatar
pixhawk committed
134
	background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
pixhawk's avatar
pixhawk committed
135
                             stop:0 #bbaa00, stop:1 #a05b00);
pixhawk's avatar
pixhawk committed
136 137 138 139
}

QPushButton#killButton {
	background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
pixhawk's avatar
pixhawk committed
140
                             stop:0 #ffb917, stop:1 #b37300);
pixhawk's avatar
pixhawk committed
141 142 143 144
}

QPushButton:pressed#killButton {
	background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
pixhawk's avatar
pixhawk committed
145
                             stop:0 #bb8500, stop:1 #903000);
pixhawk's avatar
pixhawk committed
146 147
}

pixhawk's avatar
pixhawk committed
148

pixhawk's avatar
pixhawk committed
149
QProgressBar {
pixhawk's avatar
pixhawk committed
150
	border: 1px solid #4A4A4F;
pixhawk's avatar
pixhawk committed
151 152 153
	border-radius: 4px;
	text-align: center;
	padding: 2px;
pixhawk's avatar
pixhawk committed
154 155
	color: #DDDDDF;
	background-color: #111118;
pixhawk's avatar
pixhawk committed
156 157 158
}

QProgressBar:horizontal {
pixhawk's avatar
pixhawk committed
159
	height: 10px;
pixhawk's avatar
pixhawk committed
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
}

QProgressBar QLabel {
	font-size: 8px;
}

QProgressBar:vertical {
	width: 12px;
}

QProgressBar::chunk {
	background-color: #656565;
}

QProgressBar::chunk#batteryBar {
	background-color: green;
}

QProgressBar::chunk#speedBar {
	background-color: yellow;
}

QProgressBar::chunk#thrustBar {
	background-color: orange;
}</string>
  </property>
  <layout class="QHBoxLayout" name="horizontalLayout_2">
   <property name="margin">
    <number>6</number>
   </property>
   <item>
191
    <widget class="QGroupBox" name="uasViewFrame">
pixhawk's avatar
pixhawk committed
192
     <property name="sizePolicy">
193
      <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
pixhawk's avatar
pixhawk committed
194 195 196 197 198 199
       <horstretch>0</horstretch>
       <verstretch>0</verstretch>
      </sizepolicy>
     </property>
     <property name="minimumSize">
      <size>
200
       <width>0</width>
pixhawk's avatar
pixhawk committed
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
       <height>0</height>
      </size>
     </property>
     <property name="title">
      <string/>
     </property>
     <layout class="QGridLayout" name="gridLayout">
      <property name="horizontalSpacing">
       <number>6</number>
      </property>
      <property name="verticalSpacing">
       <number>2</number>
      </property>
      <property name="margin">
       <number>6</number>
      </property>
      <item row="0" column="0" rowspan="5" colspan="2">
       <widget class="QToolButton" name="typeButton">
        <property name="minimumSize">
         <size>
pixhawk's avatar
pixhawk committed
221 222
          <width>48</width>
          <height>48</height>
pixhawk's avatar
pixhawk committed
223 224 225 226
         </size>
        </property>
        <property name="maximumSize">
         <size>
pixhawk's avatar
pixhawk committed
227 228
          <width>48</width>
          <height>48</height>
pixhawk's avatar
pixhawk committed
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
         </size>
        </property>
        <property name="baseSize">
         <size>
          <width>30</width>
          <height>30</height>
         </size>
        </property>
        <property name="text">
         <string>...</string>
        </property>
        <property name="icon">
         <iconset resource="../../mavground.qrc">
          <normaloff>:/images/mavs/unknown.svg</normaloff>:/images/mavs/unknown.svg</iconset>
        </property>
        <property name="iconSize">
         <size>
          <width>42</width>
          <height>42</height>
         </size>
        </property>
       </widget>
      </item>
      <item row="0" column="2" rowspan="8">
       <spacer name="horizontalSpacer_2">
        <property name="orientation">
         <enum>Qt::Horizontal</enum>
        </property>
        <property name="sizeHint" stdset="0">
         <size>
          <width>6</width>
          <height>88</height>
         </size>
        </property>
       </spacer>
      </item>
      <item row="0" column="3" colspan="3">
       <widget class="QLabel" name="nameLabel">
        <property name="maximumSize">
         <size>
          <width>16777215</width>
          <height>16</height>
         </size>
        </property>
        <property name="font">
         <font>
pixhawk's avatar
pixhawk committed
275
          <pointsize>-1</pointsize>
pixhawk's avatar
pixhawk committed
276
          <weight>75</weight>
pixhawk's avatar
pixhawk committed
277
          <italic>false</italic>
pixhawk's avatar
pixhawk committed
278 279 280 281 282 283 284 285 286
          <bold>true</bold>
         </font>
        </property>
        <property name="text">
         <string>UAS001</string>
        </property>
       </widget>
      </item>
      <item row="0" column="6" colspan="2">
pixhawk's avatar
pixhawk committed
287
       <widget class="QLabel" name="modeLabel">
pixhawk's avatar
pixhawk committed
288 289 290 291 292 293 294 295
        <property name="maximumSize">
         <size>
          <width>16777215</width>
          <height>16</height>
         </size>
        </property>
        <property name="font">
         <font>
pixhawk's avatar
pixhawk committed
296
          <pointsize>-1</pointsize>
pixhawk's avatar
pixhawk committed
297
          <weight>50</weight>
pixhawk's avatar
pixhawk committed
298
          <italic>false</italic>
pixhawk's avatar
pixhawk committed
299 300 301 302 303 304 305 306 307 308 309 310
          <bold>false</bold>
         </font>
        </property>
        <property name="text">
         <string>Waiting for first update..</string>
        </property>
       </widget>
      </item>
      <item row="1" column="3" rowspan="3">
       <widget class="QLabel" name="timeRemainingLabel">
        <property name="font">
         <font>
pixhawk's avatar
pixhawk committed
311 312 313 314
          <pointsize>-1</pointsize>
          <weight>50</weight>
          <italic>false</italic>
          <bold>false</bold>
pixhawk's avatar
pixhawk committed
315 316 317 318 319 320 321 322 323 324 325
         </font>
        </property>
        <property name="text">
         <string>00:00:00</string>
        </property>
       </widget>
      </item>
      <item row="1" column="4" rowspan="3" colspan="2">
       <widget class="QLabel" name="timeElapsedLabel">
        <property name="font">
         <font>
pixhawk's avatar
pixhawk committed
326 327 328 329
          <pointsize>-1</pointsize>
          <weight>50</weight>
          <italic>false</italic>
          <bold>false</bold>
pixhawk's avatar
pixhawk committed
330 331 332 333 334 335 336
         </font>
        </property>
        <property name="text">
         <string>00:00:00</string>
        </property>
       </widget>
      </item>
pixhawk's avatar
pixhawk committed
337
      <item row="3" column="6" rowspan="2" colspan="2">
pixhawk's avatar
pixhawk committed
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
       <widget class="QProgressBar" name="thrustBar">
        <property name="font">
         <font>
          <pointsize>8</pointsize>
         </font>
        </property>
        <property name="value">
         <number>0</number>
        </property>
       </widget>
      </item>
      <item row="4" column="3">
       <widget class="QLabel" name="groundDistanceLabel">
        <property name="font">
         <font>
pixhawk's avatar
pixhawk committed
353 354 355 356
          <pointsize>-1</pointsize>
          <weight>50</weight>
          <italic>false</italic>
          <bold>false</bold>
pixhawk's avatar
pixhawk committed
357 358 359 360 361 362 363 364
         </font>
        </property>
        <property name="text">
         <string>00.00 m</string>
        </property>
       </widget>
      </item>
      <item row="4" column="4" colspan="2">
pixhawk's avatar
pixhawk committed
365
       <widget class="QLabel" name="speedLabel">
pixhawk's avatar
pixhawk committed
366 367
        <property name="font">
         <font>
pixhawk's avatar
pixhawk committed
368 369 370 371
          <pointsize>-1</pointsize>
          <weight>50</weight>
          <italic>false</italic>
          <bold>false</bold>
pixhawk's avatar
pixhawk committed
372 373 374
         </font>
        </property>
        <property name="text">
pixhawk's avatar
pixhawk committed
375
         <string>00.0 m/s</string>
pixhawk's avatar
pixhawk committed
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
        </property>
       </widget>
      </item>
      <item row="5" column="0" rowspan="3">
       <widget class="QGroupBox" name="heartbeatIcon">
        <property name="sizePolicy">
         <sizepolicy hsizetype="Fixed" vsizetype="Preferred">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
        <property name="minimumSize">
         <size>
          <width>18</width>
          <height>0</height>
         </size>
        </property>
        <property name="maximumSize">
         <size>
          <width>18</width>
          <height>40</height>
         </size>
        </property>
        <property name="title">
         <string/>
        </property>
       </widget>
      </item>
      <item row="5" column="1" rowspan="3">
       <widget class="QProgressBar" name="batteryBar">
        <property name="minimumSize">
         <size>
          <width>18</width>
          <height>0</height>
         </size>
        </property>
        <property name="maximumSize">
         <size>
          <width>18</width>
          <height>40</height>
         </size>
        </property>
        <property name="font">
         <font>
          <pointsize>6</pointsize>
         </font>
        </property>
        <property name="value">
         <number>0</number>
        </property>
        <property name="orientation">
         <enum>Qt::Vertical</enum>
        </property>
       </widget>
      </item>
      <item row="5" column="3" rowspan="2" colspan="2">
       <widget class="QLabel" name="stateLabel">
        <property name="font">
         <font>
pixhawk's avatar
pixhawk committed
435 436 437 438
          <pointsize>-1</pointsize>
          <weight>50</weight>
          <italic>false</italic>
          <bold>false</bold>
pixhawk's avatar
pixhawk committed
439 440 441 442 443 444 445 446 447 448 449
         </font>
        </property>
        <property name="text">
         <string>UNINIT</string>
        </property>
       </widget>
      </item>
      <item row="7" column="3" colspan="2">
       <widget class="QLabel" name="waypointLabel">
        <property name="font">
         <font>
pixhawk's avatar
pixhawk committed
450 451 452 453
          <pointsize>-1</pointsize>
          <weight>50</weight>
          <italic>false</italic>
          <bold>false</bold>
pixhawk's avatar
pixhawk committed
454 455 456 457 458
         </font>
        </property>
        <property name="text">
         <string>WPX</string>
        </property>
pixhawk's avatar
pixhawk committed
459 460 461
        <property name="alignment">
         <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
        </property>
pixhawk's avatar
pixhawk committed
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
       </widget>
      </item>
      <item row="2" column="6">
       <widget class="QLabel" name="positionLabel">
        <property name="minimumSize">
         <size>
          <width>0</width>
          <height>12</height>
         </size>
        </property>
        <property name="maximumSize">
         <size>
          <width>16777215</width>
          <height>12</height>
         </size>
        </property>
        <property name="font">
         <font>
pixhawk's avatar
pixhawk committed
480 481 482 483
          <pointsize>-1</pointsize>
          <weight>50</weight>
          <italic>false</italic>
          <bold>false</bold>
pixhawk's avatar
pixhawk committed
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
         </font>
        </property>
        <property name="text">
         <string>00.0  00.0  00.0 m</string>
        </property>
       </widget>
      </item>
      <item row="2" column="7">
       <widget class="QLabel" name="gpsLabel">
        <property name="minimumSize">
         <size>
          <width>0</width>
          <height>12</height>
         </size>
        </property>
        <property name="maximumSize">
         <size>
          <width>16777215</width>
          <height>12</height>
         </size>
        </property>
        <property name="font">
         <font>
pixhawk's avatar
pixhawk committed
507 508 509 510
          <pointsize>-1</pointsize>
          <weight>50</weight>
          <italic>false</italic>
          <bold>false</bold>
pixhawk's avatar
pixhawk committed
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
         </font>
        </property>
        <property name="text">
         <string>00 00 00 N  00 00 00 E</string>
        </property>
       </widget>
      </item>
      <item row="5" column="6" colspan="2">
       <widget class="QLabel" name="statusTextLabel">
        <property name="maximumSize">
         <size>
          <width>16777215</width>
          <height>12</height>
         </size>
        </property>
        <property name="font">
         <font>
          <pointsize>10</pointsize>
         </font>
        </property>
        <property name="text">
         <string>Unknown status</string>
        </property>
       </widget>
      </item>
pixhawk's avatar
pixhawk committed
536
      <item row="6" column="5" rowspan="2" colspan="3">
pixhawk's avatar
pixhawk committed
537 538 539 540 541
       <layout class="QHBoxLayout" name="horizontalLayout">
        <property name="spacing">
         <number>4</number>
        </property>
        <property name="sizeConstraint">
pixhawk's avatar
pixhawk committed
542
         <enum>QLayout::SetMinimumSize</enum>
pixhawk's avatar
pixhawk committed
543 544 545 546 547
        </property>
        <item>
         <widget class="QPushButton" name="liftoffButton">
          <property name="minimumSize">
           <size>
548
            <width>26</width>
pixhawk's avatar
pixhawk committed
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564
            <height>22</height>
           </size>
          </property>
          <property name="text">
           <string/>
          </property>
          <property name="icon">
           <iconset resource="../../mavground.qrc">
            <normaloff>:/images/control/launch.svg</normaloff>:/images/control/launch.svg</iconset>
          </property>
         </widget>
        </item>
        <item>
         <widget class="QPushButton" name="haltButton">
          <property name="minimumSize">
           <size>
565
            <width>26</width>
pixhawk's avatar
pixhawk committed
566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581
            <height>22</height>
           </size>
          </property>
          <property name="text">
           <string/>
          </property>
          <property name="icon">
           <iconset resource="../../mavground.qrc">
            <normaloff>:/images/actions/media-playback-pause.svg</normaloff>:/images/actions/media-playback-pause.svg</iconset>
          </property>
         </widget>
        </item>
        <item>
         <widget class="QPushButton" name="continueButton">
          <property name="minimumSize">
           <size>
582
            <width>26</width>
pixhawk's avatar
pixhawk committed
583 584 585 586 587 588 589 590 591 592 593 594 595
            <height>22</height>
           </size>
          </property>
          <property name="text">
           <string/>
          </property>
          <property name="icon">
           <iconset resource="../../mavground.qrc">
            <normaloff>:/images/actions/media-playback-start.svg</normaloff>:/images/actions/media-playback-start.svg</iconset>
          </property>
         </widget>
        </item>
        <item>
pixhawk's avatar
pixhawk committed
596
         <widget class="QPushButton" name="landButton">
pixhawk's avatar
pixhawk committed
597 598
          <property name="minimumSize">
           <size>
599
            <width>26</width>
pixhawk's avatar
pixhawk committed
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618
            <height>22</height>
           </size>
          </property>
          <property name="text">
           <string/>
          </property>
          <property name="icon">
           <iconset resource="../../mavground.qrc">
            <normaloff>:/images/control/land.svg</normaloff>:/images/control/land.svg</iconset>
          </property>
         </widget>
        </item>
        <item>
         <widget class="QPushButton" name="shutdownButton">
          <property name="text">
           <string/>
          </property>
          <property name="icon">
           <iconset resource="../../mavground.qrc">
pixhawk's avatar
pixhawk committed
619
            <normaloff>:/images/actions/system-log-out.svg</normaloff>:/images/actions/system-log-out.svg</iconset>
pixhawk's avatar
pixhawk committed
620 621 622 623
          </property>
         </widget>
        </item>
        <item>
pixhawk's avatar
pixhawk committed
624
         <widget class="QPushButton" name="abortButton">
pixhawk's avatar
pixhawk committed
625 626
          <property name="minimumSize">
           <size>
627
            <width>26</width>
pixhawk's avatar
pixhawk committed
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
            <height>22</height>
           </size>
          </property>
          <property name="text">
           <string/>
          </property>
          <property name="icon">
           <iconset resource="../../mavground.qrc">
            <normaloff>:/images/actions/media-playback-stop.svg</normaloff>:/images/actions/media-playback-stop.svg</iconset>
          </property>
         </widget>
        </item>
        <item>
         <widget class="QPushButton" name="killButton">
          <property name="minimumSize">
           <size>
644
            <width>26</width>
pixhawk's avatar
pixhawk committed
645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668
            <height>22</height>
           </size>
          </property>
          <property name="text">
           <string/>
          </property>
          <property name="icon">
           <iconset resource="../../mavground.qrc">
            <normaloff>:/images/actions/process-stop.svg</normaloff>:/images/actions/process-stop.svg</iconset>
          </property>
         </widget>
        </item>
       </layout>
      </item>
     </layout>
    </widget>
   </item>
  </layout>
 </widget>
 <resources>
  <include location="../../mavground.qrc"/>
 </resources>
 <connections/>
</ui>