WaypointEditableView.ui 21.4 KB
Newer Older
pixhawk's avatar
pixhawk committed
1 2
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
3 4
 <class>WaypointEditableView</class>
 <widget class="QWidget" name="WaypointEditableView">
pixhawk's avatar
pixhawk committed
5 6 7 8
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
9
    <width>2208</width>
10
    <height>39</height>
pixhawk's avatar
pixhawk committed
11 12 13
   </rect>
  </property>
  <property name="sizePolicy">
14
   <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
pixhawk's avatar
pixhawk committed
15 16 17 18 19 20 21 22 23 24 25 26 27 28
    <horstretch>0</horstretch>
    <verstretch>0</verstretch>
   </sizepolicy>
  </property>
  <property name="minimumSize">
   <size>
    <width>200</width>
    <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 32 33

QWidget {
background-color: #252528;
color: #DDDDDF;
34
border-color: #CCCCCF;
pixhawk's avatar
pixhawk committed
35 36 37 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
}

QCheckBox {
background-color: #252528;
color: #454545;
}

QGroupBox {
	border: 1px solid #EEEEEE;
	border-radius: 5px;
	padding: 0px 0px 0px 0px;
margin-top: 1ex; /* leave space at the top for the title */
	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;
 }

 QDockWidget {
	font: bold;
    border: 1px solid #32345E;
}

QPushButton {
	font-weight: bold;
	font-size: 12px;
	border: 1px solid #999999;
	border-radius: 10px;
	min-width:22px;
	max-width: 36px;
	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);
}
79
</string>
pixhawk's avatar
pixhawk committed
80 81 82 83 84 85 86 87 88 89
  </property>
  <layout class="QGridLayout" name="gridLayout">
   <property name="margin">
    <number>0</number>
   </property>
   <property name="spacing">
    <number>0</number>
   </property>
   <item row="0" column="0">
    <widget class="QGroupBox" name="groupBox">
90 91 92 93 94 95
     <property name="sizePolicy">
      <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
       <horstretch>0</horstretch>
       <verstretch>0</verstretch>
      </sizepolicy>
     </property>
pixhawk's avatar
pixhawk committed
96 97 98
     <property name="title">
      <string/>
     </property>
99
     <layout class="QHBoxLayout" name="horizontalLayout" stretch="5,5,5,5,50,50,50,50,50,50,5,20,20,5,10,10,10,20,5,5,5,5">
pixhawk's avatar
pixhawk committed
100 101 102 103
      <property name="spacing">
       <number>2</number>
      </property>
      <property name="margin">
104
       <number>4</number>
pixhawk's avatar
pixhawk committed
105 106 107
      </property>
      <item>
       <widget class="QCheckBox" name="selectedBox">
108 109 110 111 112 113 114 115 116 117 118 119
        <property name="sizePolicy">
         <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
        <property name="minimumSize">
         <size>
          <width>25</width>
          <height>0</height>
         </size>
        </property>
pixhawk's avatar
pixhawk committed
120 121 122
        <property name="focusPolicy">
         <enum>Qt::TabFocus</enum>
        </property>
pixhawk's avatar
pixhawk committed
123 124 125
        <property name="toolTip">
         <string>Currently selected waypoint</string>
        </property>
lm's avatar
lm committed
126 127 128
        <property name="statusTip">
         <string>Currently selected waypoint</string>
        </property>
pixhawk's avatar
pixhawk committed
129 130 131 132 133 134 135 136 137 138 139 140
        <property name="text">
         <string/>
        </property>
        <property name="iconSize">
         <size>
          <width>16</width>
          <height>16</height>
         </size>
        </property>
       </widget>
      </item>
      <item>
141
       <widget class="QLabel" name="idLabel">
142 143 144 145 146 147
        <property name="sizePolicy">
         <sizepolicy hsizetype="Fixed" vsizetype="Preferred">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
pixhawk's avatar
pixhawk committed
148 149
        <property name="minimumSize">
         <size>
150
          <width>25</width>
pixhawk's avatar
pixhawk committed
151 152 153 154 155 156
          <height>0</height>
         </size>
        </property>
        <property name="toolTip">
         <string>Waypoint Sequence Number</string>
        </property>
pixhawk's avatar
pixhawk committed
157
        <property name="text">
158
         <string>ID</string>
pixhawk's avatar
pixhawk committed
159
        </property>
pixhawk's avatar
pixhawk committed
160 161 162
        <property name="alignment">
         <set>Qt::AlignCenter</set>
        </property>
pixhawk's avatar
pixhawk committed
163 164 165
       </widget>
      </item>
      <item>
166 167 168 169 170 171
       <widget class="QComboBox" name="comboBox_action">
        <property name="sizePolicy">
         <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
pixhawk's avatar
pixhawk committed
172
        </property>
lm's avatar
lm committed
173 174 175 176 177 178
        <property name="toolTip">
         <string>Action at Waypoint</string>
        </property>
        <property name="statusTip">
         <string>Action at Waypoint</string>
        </property>
179 180 181
        <property name="sizeAdjustPolicy">
         <enum>QComboBox::AdjustToContentsOnFirstShow</enum>
        </property>
182 183 184 185 186 187 188 189 190
       </widget>
      </item>
      <item>
       <widget class="QComboBox" name="comboBox_frame">
        <property name="sizePolicy">
         <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
pixhawk's avatar
pixhawk committed
191
        </property>
lm's avatar
lm committed
192 193 194 195 196 197
        <property name="toolTip">
         <string>Coordinate frame</string>
        </property>
        <property name="statusTip">
         <string>Coordinate frame</string>
        </property>
198 199 200
        <property name="sizeAdjustPolicy">
         <enum>QComboBox::AdjustToContentsOnFirstShow</enum>
        </property>
201
       </widget>
pixhawk's avatar
pixhawk committed
202 203
      </item>
      <item>
204 205 206 207 208 209 210
       <widget class="QDoubleSpinBox" name="posNSpinBox">
        <property name="sizePolicy">
         <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
pixhawk's avatar
pixhawk committed
211
        <property name="focusPolicy">
212
         <enum>Qt::WheelFocus</enum>
pixhawk's avatar
pixhawk committed
213
        </property>
pixhawk's avatar
pixhawk committed
214 215 216
        <property name="toolTip">
         <string>Position X coordinate</string>
        </property>
lm's avatar
lm committed
217 218 219
        <property name="statusTip">
         <string>Position X corrdinate</string>
        </property>
220 221 222
        <property name="wrapping">
         <bool>false</bool>
        </property>
pixhawk's avatar
pixhawk committed
223 224 225 226 227 228
        <property name="frame">
         <bool>true</bool>
        </property>
        <property name="accelerated">
         <bool>true</bool>
        </property>
229 230 231
        <property name="prefix">
         <string>N </string>
        </property>
pixhawk's avatar
pixhawk committed
232
        <property name="suffix">
pixhawk's avatar
pixhawk committed
233
         <string> m</string>
pixhawk's avatar
pixhawk committed
234
        </property>
pixhawk's avatar
pixhawk committed
235
        <property name="minimum">
236
         <double>-10000.000000000000000</double>
pixhawk's avatar
pixhawk committed
237 238
        </property>
        <property name="maximum">
239
         <double>10000.000000000000000</double>
pixhawk's avatar
pixhawk committed
240
        </property>
pixhawk's avatar
pixhawk committed
241 242 243
        <property name="singleStep">
         <double>0.050000000000000</double>
        </property>
pixhawk's avatar
pixhawk committed
244 245 246
       </widget>
      </item>
      <item>
247 248 249 250 251 252 253
       <widget class="QDoubleSpinBox" name="posESpinBox">
        <property name="sizePolicy">
         <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
pixhawk's avatar
pixhawk committed
254
        <property name="focusPolicy">
255
         <enum>Qt::WheelFocus</enum>
pixhawk's avatar
pixhawk committed
256
        </property>
pixhawk's avatar
pixhawk committed
257
        <property name="toolTip">
lm's avatar
lm committed
258 259 260 261
         <string>Position Y/Longitude coordinate</string>
        </property>
        <property name="statusTip">
         <string>Position Y/Longitude coordinate</string>
pixhawk's avatar
pixhawk committed
262
        </property>
263 264 265
        <property name="prefix">
         <string>E </string>
        </property>
pixhawk's avatar
pixhawk committed
266
        <property name="suffix">
pixhawk's avatar
pixhawk committed
267
         <string> m</string>
pixhawk's avatar
pixhawk committed
268
        </property>
pixhawk's avatar
pixhawk committed
269
        <property name="minimum">
270
         <double>-10000.000000000000000</double>
pixhawk's avatar
pixhawk committed
271 272
        </property>
        <property name="maximum">
273
         <double>10000.000000000000000</double>
pixhawk's avatar
pixhawk committed
274
        </property>
pixhawk's avatar
pixhawk committed
275 276 277
        <property name="singleStep">
         <double>0.050000000000000</double>
        </property>
pixhawk's avatar
pixhawk committed
278 279 280 281 282 283
        <property name="value">
         <double>0.000000000000000</double>
        </property>
       </widget>
      </item>
      <item>
284 285 286 287 288 289 290
       <widget class="QDoubleSpinBox" name="posDSpinBox">
        <property name="sizePolicy">
         <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
pixhawk's avatar
pixhawk committed
291
        <property name="focusPolicy">
292
         <enum>Qt::WheelFocus</enum>
pixhawk's avatar
pixhawk committed
293
        </property>
pixhawk's avatar
pixhawk committed
294
        <property name="toolTip">
lm's avatar
lm committed
295 296 297 298
         <string>Position Z coordinate (local frame, negative)</string>
        </property>
        <property name="statusTip">
         <string/>
pixhawk's avatar
pixhawk committed
299
        </property>
300 301 302
        <property name="prefix">
         <string>D </string>
        </property>
pixhawk's avatar
pixhawk committed
303
        <property name="suffix">
pixhawk's avatar
pixhawk committed
304
         <string> m</string>
pixhawk's avatar
pixhawk committed
305
        </property>
pixhawk's avatar
pixhawk committed
306
        <property name="minimum">
307
         <double>-10000.000000000000000</double>
pixhawk's avatar
pixhawk committed
308 309
        </property>
        <property name="maximum">
310
         <double>10000.000000000000000</double>
pixhawk's avatar
pixhawk committed
311 312 313
        </property>
        <property name="singleStep">
         <double>0.050000000000000</double>
pixhawk's avatar
pixhawk committed
314 315 316
        </property>
       </widget>
      </item>
317 318 319 320 321 322 323 324
      <item>
       <widget class="QDoubleSpinBox" name="latSpinBox">
        <property name="sizePolicy">
         <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
pixhawk's avatar
pixhawk committed
325
        <property name="focusPolicy">
326
         <enum>Qt::WheelFocus</enum>
pixhawk's avatar
pixhawk committed
327
        </property>
lm's avatar
lm committed
328 329 330 331 332 333
        <property name="toolTip">
         <string>Latitude in degrees</string>
        </property>
        <property name="statusTip">
         <string>Latitude in degrees</string>
        </property>
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
        <property name="prefix">
         <string>lat </string>
        </property>
        <property name="suffix">
         <string>°</string>
        </property>
        <property name="decimals">
         <number>7</number>
        </property>
        <property name="minimum">
         <double>-90.000000000000000</double>
        </property>
        <property name="maximum">
         <double>90.000000000000000</double>
        </property>
349 350 351
        <property name="singleStep">
         <double>0.000010000000000</double>
        </property>
352 353 354 355 356 357 358 359 360 361
       </widget>
      </item>
      <item>
       <widget class="QDoubleSpinBox" name="lonSpinBox">
        <property name="sizePolicy">
         <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
pixhawk's avatar
pixhawk committed
362
        <property name="focusPolicy">
363
         <enum>Qt::WheelFocus</enum>
pixhawk's avatar
pixhawk committed
364
        </property>
lm's avatar
lm committed
365 366 367 368 369 370
        <property name="toolTip">
         <string>Longitude in degrees</string>
        </property>
        <property name="statusTip">
         <string>Longitude in degrees</string>
        </property>
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
        <property name="prefix">
         <string>lon </string>
        </property>
        <property name="suffix">
         <string>°</string>
        </property>
        <property name="decimals">
         <number>7</number>
        </property>
        <property name="minimum">
         <double>-180.000000000000000</double>
        </property>
        <property name="maximum">
         <double>180.000000000000000</double>
        </property>
386 387 388
        <property name="singleStep">
         <double>0.000010000000000</double>
        </property>
389 390 391 392 393 394 395 396 397 398
       </widget>
      </item>
      <item>
       <widget class="QDoubleSpinBox" name="altSpinBox">
        <property name="sizePolicy">
         <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
lm's avatar
lm committed
399 400 401 402 403 404
        <property name="toolTip">
         <string>Altitude in meters</string>
        </property>
        <property name="statusTip">
         <string>Altitude in meters</string>
        </property>
405 406 407 408 409 410 411
        <property name="prefix">
         <string>alt </string>
        </property>
        <property name="suffix">
         <string>m</string>
        </property>
        <property name="decimals">
412
         <number>2</number>
413 414 415 416 417 418 419 420 421
        </property>
        <property name="minimum">
         <double>-100000.000000000000000</double>
        </property>
        <property name="maximum">
         <double>100000.000000000000000</double>
        </property>
       </widget>
      </item>
pixhawk's avatar
pixhawk committed
422
      <item>
pixhawk's avatar
pixhawk committed
423
       <widget class="QSpinBox" name="yawSpinBox">
424 425 426 427 428 429
        <property name="sizePolicy">
         <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
pixhawk's avatar
pixhawk committed
430 431 432
        <property name="focusPolicy">
         <enum>Qt::StrongFocus</enum>
        </property>
pixhawk's avatar
pixhawk committed
433
        <property name="toolTip">
lm's avatar
lm committed
434 435 436 437
         <string>Rotary wing only: Desired yaw angle at waypoint</string>
        </property>
        <property name="statusTip">
         <string>Rotary wing only: Desired yaw angle at waypoint</string>
pixhawk's avatar
pixhawk committed
438 439 440 441 442 443
        </property>
        <property name="wrapping">
         <bool>true</bool>
        </property>
        <property name="suffix">
         <string>°</string>
pixhawk's avatar
pixhawk committed
444
        </property>
pixhawk's avatar
pixhawk committed
445 446 447
        <property name="minimum">
         <number>-180</number>
        </property>
pixhawk's avatar
pixhawk committed
448
        <property name="maximum">
pixhawk's avatar
pixhawk committed
449
         <number>180</number>
pixhawk's avatar
pixhawk committed
450
        </property>
pixhawk's avatar
pixhawk committed
451 452 453 454 455 456 457
        <property name="singleStep">
         <number>10</number>
        </property>
       </widget>
      </item>
      <item>
       <widget class="QDoubleSpinBox" name="orbitSpinBox">
458 459 460 461 462 463
        <property name="sizePolicy">
         <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
pixhawk's avatar
pixhawk committed
464 465 466
        <property name="focusPolicy">
         <enum>Qt::StrongFocus</enum>
        </property>
pixhawk's avatar
pixhawk committed
467
        <property name="toolTip">
468
         <string>Loiter radius. Negative for counter-clockwise</string>
lm's avatar
lm committed
469 470
        </property>
        <property name="statusTip">
471
         <string>Loiter radius. Negative for counter-clockwise</string>
pixhawk's avatar
pixhawk committed
472 473 474 475 476
        </property>
        <property name="suffix">
         <string> m</string>
        </property>
        <property name="minimum">
477
         <double>-5000.000000000000000</double>
pixhawk's avatar
pixhawk committed
478 479
        </property>
        <property name="maximum">
480
         <double>5000.000000000000000</double>
pixhawk's avatar
pixhawk committed
481 482
        </property>
        <property name="singleStep">
483
         <double>1.000000000000000</double>
pixhawk's avatar
pixhawk committed
484
        </property>
485 486 487
        <property name="value">
         <double>20.000000000000000</double>
        </property>
pixhawk's avatar
pixhawk committed
488 489
       </widget>
      </item>
490 491
      <item>
       <widget class="QDoubleSpinBox" name="acceptanceSpinBox">
492 493 494 495 496 497
        <property name="sizePolicy">
         <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
lm's avatar
lm committed
498 499 500 501 502 503 504
        <property name="toolTip">
         <string>Uncertainty radius in meters
where to accept this waypoint as reached</string>
        </property>
        <property name="statusTip">
         <string>Uncertainty radius in meters where to accept this waypoint as reached</string>
        </property>
505 506 507 508 509 510 511 512
        <property name="suffix">
         <string> m</string>
        </property>
        <property name="value">
         <double>0.200000000000000</double>
        </property>
       </widget>
      </item>
pixhawk's avatar
pixhawk committed
513
      <item>
lm's avatar
lm committed
514
       <widget class="QDoubleSpinBox" name="holdTimeSpinBox">
515 516 517 518 519 520
        <property name="sizePolicy">
         <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
pixhawk's avatar
pixhawk committed
521
        <property name="toolTip">
522
         <string>Time to stay/loiter at this position before advancing</string>
pixhawk's avatar
pixhawk committed
523
        </property>
pixhawk's avatar
pixhawk committed
524
        <property name="statusTip">
525
         <string>Time to stay/loiter at this position before advancing</string>
pixhawk's avatar
pixhawk committed
526
        </property>
pixhawk's avatar
pixhawk committed
527
        <property name="suffix">
lm's avatar
lm committed
528
         <string> s</string>
pixhawk's avatar
pixhawk committed
529 530
        </property>
        <property name="maximum">
lm's avatar
lm committed
531
         <double>9999.989999999999782</double>
pixhawk's avatar
pixhawk committed
532
        </property>
pixhawk's avatar
pixhawk committed
533 534
       </widget>
      </item>
535 536
      <item>
       <widget class="QSpinBox" name="turnsSpinBox">
537 538 539 540 541 542
        <property name="sizePolicy">
         <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
543 544 545 546 547 548 549 550 551
        <property name="toolTip">
         <string>Number of turns to loiter</string>
        </property>
        <property name="statusTip">
         <string>Number of turns to loiter</string>
        </property>
        <property name="suffix">
         <string> turns</string>
        </property>
552 553 554
        <property name="maximum">
         <number>99</number>
        </property>
555 556
       </widget>
      </item>
pixhawk's avatar
pixhawk committed
557
      <item>
558 559 560 561 562 563 564
       <widget class="QDoubleSpinBox" name="takeOffAngleSpinBox">
        <property name="sizePolicy">
         <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
pixhawk's avatar
pixhawk committed
565 566 567
        <property name="focusPolicy">
         <enum>Qt::StrongFocus</enum>
        </property>
pixhawk's avatar
pixhawk committed
568
        <property name="toolTip">
569
         <string>Take off pitch angle</string>
pixhawk's avatar
pixhawk committed
570
        </property>
lm's avatar
lm committed
571
        <property name="statusTip">
572
         <string>Take off pitch angle</string>
lm's avatar
lm committed
573
        </property>
574
        <property name="prefix">
pixhawk's avatar
pixhawk committed
575
         <string/>
James Goppert's avatar
James Goppert committed
576
        </property>
577 578 579
        <property name="suffix">
         <string>°</string>
        </property>
lm's avatar
lm committed
580 581 582
        <property name="decimals">
         <number>0</number>
        </property>
583 584 585 586 587 588 589 590 591
        <property name="minimum">
         <double>-180.000000000000000</double>
        </property>
        <property name="maximum">
         <double>180.000000000000000</double>
        </property>
        <property name="singleStep">
         <double>10.000000000000000</double>
        </property>
James Goppert's avatar
James Goppert committed
592 593
       </widget>
      </item>
594 595 596 597 598 599 600 601 602 603
      <item>
       <widget class="QWidget" name="customActionWidget" native="true">
        <property name="sizePolicy">
         <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
       </widget>
      </item>
604 605 606 607 608 609 610 611 612 613 614 615 616
      <item>
       <spacer name="removeSpacer">
        <property name="orientation">
         <enum>Qt::Horizontal</enum>
        </property>
        <property name="sizeHint" stdset="0">
         <size>
          <width>5</width>
          <height>20</height>
         </size>
        </property>
       </spacer>
      </item>
James Goppert's avatar
James Goppert committed
617
      <item>
618
       <widget class="QCheckBox" name="autoContinue">
619 620 621 622 623 624
        <property name="sizePolicy">
         <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
James Goppert's avatar
James Goppert committed
625
        <property name="toolTip">
626
         <string>Automatically continue after this waypoint</string>
James Goppert's avatar
James Goppert committed
627
        </property>
lm's avatar
lm committed
628 629 630
        <property name="statusTip">
         <string>Automatically continue after this waypoint</string>
        </property>
James Goppert's avatar
James Goppert committed
631 632
        <property name="text">
         <string/>
pixhawk's avatar
pixhawk committed
633 634 635 636 637 638 639 640 641 642 643
        </property>
       </widget>
      </item>
      <item>
       <widget class="QPushButton" name="upButton">
        <property name="minimumSize">
         <size>
          <width>28</width>
          <height>22</height>
         </size>
        </property>
pixhawk's avatar
pixhawk committed
644 645 646
        <property name="focusPolicy">
         <enum>Qt::NoFocus</enum>
        </property>
pixhawk's avatar
pixhawk committed
647
        <property name="toolTip">
lm's avatar
lm committed
648 649 650 651
         <string>Move Up in List</string>
        </property>
        <property name="statusTip">
         <string>Move Up in List</string>
pixhawk's avatar
pixhawk committed
652
        </property>
pixhawk's avatar
pixhawk committed
653 654 655 656
        <property name="text">
         <string/>
        </property>
        <property name="icon">
657
         <iconset resource="../../qgroundcontrol.qrc">
pixhawk's avatar
pixhawk committed
658 659 660 661 662 663 664 665 666 667 668 669
          <normaloff>:/images/actions/go-up.svg</normaloff>:/images/actions/go-up.svg</iconset>
        </property>
       </widget>
      </item>
      <item>
       <widget class="QPushButton" name="downButton">
        <property name="minimumSize">
         <size>
          <width>28</width>
          <height>22</height>
         </size>
        </property>
pixhawk's avatar
pixhawk committed
670 671 672
        <property name="focusPolicy">
         <enum>Qt::NoFocus</enum>
        </property>
pixhawk's avatar
pixhawk committed
673
        <property name="toolTip">
lm's avatar
lm committed
674 675 676 677
         <string>Move Down in List</string>
        </property>
        <property name="statusTip">
         <string>Move Down in List</string>
pixhawk's avatar
pixhawk committed
678
        </property>
pixhawk's avatar
pixhawk committed
679 680 681 682
        <property name="text">
         <string/>
        </property>
        <property name="icon">
683
         <iconset resource="../../qgroundcontrol.qrc">
pixhawk's avatar
pixhawk committed
684 685 686 687 688 689 690 691 692 693 694 695
          <normaloff>:/images/actions/go-down.svg</normaloff>:/images/actions/go-down.svg</iconset>
        </property>
       </widget>
      </item>
      <item>
       <widget class="QPushButton" name="removeButton">
        <property name="minimumSize">
         <size>
          <width>28</width>
          <height>22</height>
         </size>
        </property>
pixhawk's avatar
pixhawk committed
696 697 698
        <property name="focusPolicy">
         <enum>Qt::NoFocus</enum>
        </property>
pixhawk's avatar
pixhawk committed
699 700 701
        <property name="toolTip">
         <string>Delete</string>
        </property>
pixhawk's avatar
pixhawk committed
702 703 704 705
        <property name="text">
         <string/>
        </property>
        <property name="icon">
706
         <iconset resource="../../qgroundcontrol.qrc">
pixhawk's avatar
pixhawk committed
707 708 709 710 711 712 713 714 715
          <normaloff>:/images/actions/list-remove.svg</normaloff>:/images/actions/list-remove.svg</iconset>
        </property>
       </widget>
      </item>
     </layout>
    </widget>
   </item>
  </layout>
 </widget>
pixhawk's avatar
pixhawk committed
716
 <resources>
717
  <include location="../../qgroundcontrol.qrc"/>
pixhawk's avatar
pixhawk committed
718
 </resources>
pixhawk's avatar
pixhawk committed
719 720
 <connections/>
</ui>