FlightDisplayViewWidgets.qml 22.5 KB
Newer Older
1 2 3 4 5 6 7 8
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25


import QtQuick                  2.4
import QtQuick.Controls         1.3
import QtQuick.Controls.Styles  1.2
import QtQuick.Dialogs          1.2
import QtLocation               5.3
import QtPositioning            5.2

import QGroundControl               1.0
import QGroundControl.ScreenTools   1.0
import QGroundControl.Controls      1.0
import QGroundControl.Palette       1.0
import QGroundControl.Vehicle       1.0
import QGroundControl.FlightMap     1.0

Item {
26
    id: _root
27

Don Gagne's avatar
Don Gagne committed
28 29
    property alias guidedModeBar: _guidedModeBar

30 31 32
    property var    _activeVehicle:         QGroundControl.multiVehicleManager.activeVehicle
    property bool   _isSatellite:           _mainIsMap ? (_flightMap ? _flightMap.isSatelliteMap : true) : true
    property bool   _lightWidgetBorders:    _mainIsMap ? (_flightMap ? _flightMap.isSatelliteMap : true) : true
dogmaphobic's avatar
dogmaphobic committed
33

Don Gagne's avatar
Don Gagne committed
34 35
    readonly property real _margins: ScreenTools.defaultFontPixelHeight / 2

36
    QGCMapPalette { id: mapPal; lightColors: !isBackgroundDark }
37
    QGCPalette { id: qgcPal }
38

39 40
    function getGadgetWidth() {
        if(ScreenTools.isMobile) {
41
            return ScreenTools.isTinyScreen ? mainWindow.width * 0.2 : mainWindow.width * 0.15
42 43 44 45 46
        }
        var w = mainWindow.width * 0.15
        return Math.min(w, 200)
    }

47 48 49 50
    ExclusiveGroup {
        id: _dropButtonsExclusiveGroup
    }

Don Gagne's avatar
Don Gagne committed
51 52 53 54
    ExclusiveGroup {
        id: _mapTypeButtonsExclusiveGroup
    }

Don Gagne's avatar
Don Gagne committed
55
    //-- Map warnings
56
    Column {
Don Gagne's avatar
Don Gagne committed
57 58 59 60 61 62
        anchors.horizontalCenter:   parent.horizontalCenter
        anchors.verticalCenter:     parent.verticalCenter
        spacing:                    ScreenTools.defaultFontPixelHeight

        QGCLabel {
            anchors.horizontalCenter:   parent.horizontalCenter
63
            visible:                    _activeVehicle && !_activeVehicle.coordinateValid && _mainIsMap
Don Gagne's avatar
Don Gagne committed
64 65
            z:                          QGroundControl.zOrderTopMost
            color:                      mapPal.text
66
            font.pointSize:             ScreenTools.largeFontPointSize
67
            text:                       qsTr("No GPS Lock for Vehicle")
Don Gagne's avatar
Don Gagne committed
68 69 70 71 72 73 74
        }

        QGCLabel {
            anchors.horizontalCenter:   parent.horizontalCenter
            visible:                    _activeVehicle && !_activeVehicle.coordinateValid
            z:                          QGroundControl.zOrderTopMost
            color:                      mapPal.text
75
            font.pointSize:             ScreenTools.largeFontPointSize
Don Gagne's avatar
Don Gagne committed
76
            text:                       _activeVehicle ? _activeVehicle.prearmError : ""
77 78 79 80 81 82 83 84 85 86 87 88 89 90
        }
    }

    //-- Dismiss Drop Down (if any)
    MouseArea {
        anchors.fill:   parent
        enabled:        _dropButtonsExclusiveGroup.current != null
        onClicked: {
            if(_dropButtonsExclusiveGroup.current)
                _dropButtonsExclusiveGroup.current.checked = false
            _dropButtonsExclusiveGroup.current = null
        }
    }

dogmaphobic's avatar
dogmaphobic committed
91
    //-- Instrument Panel
92
    QGCInstrumentWidget {
93
        id:                     instrumentGadget
94
        anchors.margins:        ScreenTools.defaultFontPixelHeight / 2
Don Gagne's avatar
Don Gagne committed
95
        anchors.right:          altitudeSlider.visible ? altitudeSlider.left : parent.right
96
        anchors.verticalCenter: parent.verticalCenter
97
        visible:                !QGroundControl.virtualTabletJoystick
98
        size:                   getGadgetWidth()
99 100 101 102
        active:                 _activeVehicle != null
        heading:                _heading
        rollAngle:              _roll
        pitchAngle:             _pitch
Don Gagne's avatar
Don Gagne committed
103 104
        groundSpeedFact:        _groundSpeedFact
        airSpeedFact:           _airSpeedFact
105
        lightBorders:           _lightWidgetBorders
106
        z:                      QGroundControl.zOrderWidgets
107
        qgcView:                parent.parent.qgcView
108
        maxHeight:              parent.height - (anchors.margins * 2)
dogmaphobic's avatar
dogmaphobic committed
109 110
    }

111 112
    QGCInstrumentWidgetAlternate {
        id:                     instrumentGadgetAlternate
113
        anchors.margins:        ScreenTools.defaultFontPixelHeight / 2
114
        anchors.top:            parent.top
Don Gagne's avatar
Don Gagne committed
115
        anchors.right:          altitudeSlider.visible ? altitudeSlider.left : parent.right
116
        visible:                QGroundControl.virtualTabletJoystick
dogmaphobic's avatar
dogmaphobic committed
117
        width:                  ScreenTools.isTinyScreen ? getGadgetWidth() * 2 : getGadgetWidth()
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
        active:                 _activeVehicle != null
        heading:                _heading
        rollAngle:              _roll
        pitchAngle:             _pitch
        groundSpeedFact:        _groundSpeedFact
        airSpeedFact:           _airSpeedFact
        isSatellite:            _isSatellite
        z:                      QGroundControl.zOrderWidgets
    }

    ValuesWidget {
        anchors.topMargin:  ScreenTools.defaultFontPixelHeight
        anchors.top:        instrumentGadgetAlternate.bottom
        anchors.left:       instrumentGadgetAlternate.left
        width:              getGadgetWidth()
        qgcView:            parent.parent.qgcView
        textColor:          _isSatellite ? "white" : "black"
dogmaphobic's avatar
dogmaphobic committed
135
        visible:            QGroundControl.virtualTabletJoystick
136
        maxHeight:          multiTouchItem.y - y
dogmaphobic's avatar
dogmaphobic committed
137 138
    }

139 140 141
    //-- Vertical Tool Buttons
    Column {
        id:                         toolColumn
dogmaphobic's avatar
dogmaphobic committed
142
        visible:                    _mainIsMap
143 144
        anchors.margins:            ScreenTools.defaultFontPixelHeight
        anchors.left:               parent.left
145
        anchors.top:                parent.top
146 147 148 149
        spacing:                    ScreenTools.defaultFontPixelHeight

        //-- Map Center Control
        DropButton {
150 151 152 153 154 155 156
            id:                 centerMapDropButton
            dropDirection:      dropRight
            buttonImage:        "/qmlimages/MapCenter.svg"
            viewportMargins:    ScreenTools.defaultFontPixelWidth / 2
            exclusiveGroup:     _dropButtonsExclusiveGroup
            z:                  QGroundControl.zOrderWidgets
            lightBorders:       _lightWidgetBorders
157 158 159 160 161 162 163

            dropDownComponent: Component {
                Row {
                    spacing: ScreenTools.defaultFontPixelWidth

                    QGCCheckBox {
                        id:                 followVehicleCheckBox
164
                        text:               qsTr("Follow Vehicle")
165 166 167 168 169 170 171 172 173 174 175
                        checked:            _flightMap ? _flightMap._followVehicle : false
                        anchors.baseline:   centerMapButton.baseline

                        onClicked: {
                            _dropButtonsExclusiveGroup.current = null
                            _flightMap._followVehicle = !_flightMap._followVehicle
                        }
                    }

                    QGCButton {
                        id:         centerMapButton
176
                        text:       qsTr("Center map on Vehicle")
177 178
                        enabled:    _activeVehicle && !followVehicleCheckBox.checked

179
                        property var activeVehicle: QGroundControl.multiVehicleManager.activeVehicle
180 181 182

                        onClicked: {
                            _dropButtonsExclusiveGroup.current = null
183
                            _flightMap.center = activeVehicle.coordinate
184 185 186 187 188 189 190 191
                        }
                    }
                }
            }
        }

        //-- Map Type Control
        DropButton {
192 193 194 195 196 197 198
            id:                 mapTypeButton
            dropDirection:      dropRight
            buttonImage:        "/qmlimages/MapType.svg"
            viewportMargins:    ScreenTools.defaultFontPixelWidth / 2
            exclusiveGroup:     _dropButtonsExclusiveGroup
            z:                  QGroundControl.zOrderWidgets
            lightBorders:       _lightWidgetBorders
199 200

            dropDownComponent: Component {
Don Gagne's avatar
Don Gagne committed
201
                Column {
202 203
                    spacing: ScreenTools.defaultFontPixelWidth

Don Gagne's avatar
Don Gagne committed
204 205 206 207 208
                    Row {
                        spacing: ScreenTools.defaultFontPixelWidth

                        Repeater {
                            model: QGroundControl.flightMapSettings.mapTypes
209

Don Gagne's avatar
Don Gagne committed
210
                            QGCButton {
Don Gagne's avatar
Don Gagne committed
211 212 213 214 215
                                checkable:      true
                                checked:        _flightMap ? _flightMap.mapType === text : false
                                text:               modelData
                                width:          clearButton.width
                                exclusiveGroup: _mapTypeButtonsExclusiveGroup
Don Gagne's avatar
Don Gagne committed
216 217
                                onClicked: {
                                    _flightMap.mapType = text
Don Gagne's avatar
Don Gagne committed
218
                                    checked = true
Don Gagne's avatar
Don Gagne committed
219 220
                                    _dropButtonsExclusiveGroup.current = null
                                }
221 222 223
                            }
                        }
                    }
Don Gagne's avatar
Don Gagne committed
224 225

                    QGCButton {
dogmaphobic's avatar
dogmaphobic committed
226 227
                        id:         clearButton
                        text:       qsTr("Clear Flight Trails")
Don Gagne's avatar
Don Gagne committed
228 229 230 231 232 233
                        enabled:    QGroundControl.multiVehicleManager.activeVehicle
                        onClicked: {
                            QGroundControl.multiVehicleManager.activeVehicle.clearTrajectoryPoints()
                            _dropButtonsExclusiveGroup.current = null
                        }
                    }
234 235 236 237 238 239 240
                }
            }
        }

        //-- Zoom Map In
        RoundButton {
            id:                 mapZoomPlus
241
            visible:            !ScreenTools.isTinyScreen && _mainIsMap
242 243 244
            buttonImage:        "/qmlimages/ZoomPlus.svg"
            exclusiveGroup:     _dropButtonsExclusiveGroup
            z:                  QGroundControl.zOrderWidgets
245
            lightBorders:       _lightWidgetBorders
246 247 248 249 250 251 252 253 254 255
            onClicked: {
                if(_flightMap)
                    _flightMap.zoomLevel += 0.5
                checked = false
            }
        }

        //-- Zoom Map Out
        RoundButton {
            id:                 mapZoomMinus
256
            visible:            !ScreenTools.isTinyScreen && _mainIsMap
257 258 259
            buttonImage:        "/qmlimages/ZoomMinus.svg"
            exclusiveGroup:     _dropButtonsExclusiveGroup
            z:                  QGroundControl.zOrderWidgets
260
            lightBorders:       _lightWidgetBorders
261 262 263 264 265 266 267 268
            onClicked: {
                if(_flightMap)
                    _flightMap.zoomLevel -= 0.5
                checked = false
            }
        }
    }

Don Gagne's avatar
Don Gagne committed
269 270 271
    //-- Guided mode buttons
    Rectangle {
        id:                         _guidedModeBar
Don Gagne's avatar
Don Gagne committed
272
        anchors.margins:            _barMargin
Don Gagne's avatar
Don Gagne committed
273 274
        anchors.bottom:             parent.bottom
        anchors.horizontalCenter:   parent.horizontalCenter
275
        width:                      guidedModeColumn.width  + (_margins * 2)
Don Gagne's avatar
Don Gagne committed
276 277
        height:                     guidedModeColumn.height + (_margins * 2)
        radius:                     _margins
278
        color:                      _lightWidgetBorders ? qgcPal.mapWidgetBorderLight : qgcPal.mapWidgetBorderDark
Don Gagne's avatar
Don Gagne committed
279 280 281
        visible:                    _activeVehicle
        opacity:                    0.9
        z:                          QGroundControl.zOrderWidgets
Don Gagne's avatar
Don Gagne committed
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
        state:                      "Shown"

        states: [
            State {
                name: "Shown"
                PropertyChanges { target: showAnimation; running: true  }
                PropertyChanges { target: guidedModeHideTimer; running: true }
            },
            State {
                name: "Hidden"
                PropertyChanges { target: hideAnimation; running: true  }
            }
        ]

        PropertyAnimation {
            id:             hideAnimation
            target:         _guidedModeBar
            property:       "_barMargin"
            duration:       1000
            easing.type:    Easing.InOutQuad
            from:           _guidedModeBar._showMargin
            to:             _guidedModeBar._hideMargin
        }

        PropertyAnimation {
            id:             showAnimation
            target:         _guidedModeBar
            property:       "_barMargin"
            duration:       250
            easing.type:    Easing.InOutQuad
            from:           _guidedModeBar._hideMargin
            to:             _guidedModeBar._showMargin
        }

        Timer {
            id:             guidedModeHideTimer
            interval:       7000
            running:        true
320 321 322 323 324
            onTriggered: {
                if (ScreenTools.isShortScreen) {
                    _guidedModeBar.state = "Hidden"
                }
            }
Don Gagne's avatar
Don Gagne committed
325
        }
Don Gagne's avatar
Don Gagne committed
326 327 328 329 330 331 332 333 334

        readonly property int confirmHome:          1
        readonly property int confirmLand:          2
        readonly property int confirmTakeoff:       3
        readonly property int confirmArm:           4
        readonly property int confirmDisarm:        5
        readonly property int confirmEmergencyStop: 6
        readonly property int confirmChangeAlt:     7
        readonly property int confirmGoTo:          8
335
        readonly property int confirmRetask:        9
Don Gagne's avatar
Don Gagne committed
336 337

        property int    confirmActionCode
Don Gagne's avatar
Don Gagne committed
338 339 340
        property real   _showMargin:    _margins
        property real   _hideMargin:    _margins - _guidedModeBar.height
        property real   _barMargin:     _showMargin
Don Gagne's avatar
Don Gagne committed
341 342 343 344 345 346 347 348 349 350

        function actionConfirmed() {
            switch (confirmActionCode) {
            case confirmHome:
                _activeVehicle.guidedModeRTL()
                break;
            case confirmLand:
                _activeVehicle.guidedModeLand()
                break;
            case confirmTakeoff:
351 352 353
                var altitude1 = altitudeSlider.getValue()
                if (!isNaN(altitude1)) {
                    _activeVehicle.guidedModeTakeoff(altitude1)
Don Gagne's avatar
Don Gagne committed
354 355 356 357 358 359 360 361 362 363 364 365
                }
                break;
            case confirmArm:
                _activeVehicle.armed = true
                break;
            case confirmDisarm:
                _activeVehicle.armed = false
                break;
            case confirmEmergencyStop:
                _activeVehicle.emergencyStop()
                break;
            case confirmChangeAlt:
366 367 368
                var altitude2 = altitudeSlider.getValue()
                if (!isNaN(altitude2)) {
                    _activeVehicle.guidedModeChangeAltitude(altitude2)
Don Gagne's avatar
Don Gagne committed
369 370 371 372 373
                }
                break;
            case confirmGoTo:
                _activeVehicle.guidedModeGotoLocation(_flightMap._gotoHereCoordinate)
                break;
374 375 376
            case confirmRetask:
                _activeVehicle.setCurrentMissionSequence(_flightMap._retaskSequence)
                break;
Don Gagne's avatar
Don Gagne committed
377
            default:
378
                console.warn(qsTr("Internal error: unknown confirmActionCode"), confirmActionCode)
Don Gagne's avatar
Don Gagne committed
379 380 381
            }
        }

382 383 384 385 386
        function rejectGuidedModeConfirm() {
            guidedModeConfirm.visible = false
            guidedModeBar.visible = true
            altitudeSlider.visible = false
            _flightMap._gotoHereCoordinate = QtPositioning.coordinate()
Don Gagne's avatar
Don Gagne committed
387
            guidedModeHideTimer.restart()
388 389
        }

Don Gagne's avatar
Don Gagne committed
390
        function confirmAction(actionCode) {
Don Gagne's avatar
Don Gagne committed
391
            guidedModeHideTimer.stop()
Don Gagne's avatar
Don Gagne committed
392 393 394
            confirmActionCode = actionCode
            switch (confirmActionCode) {
            case confirmArm:
395
                guidedModeConfirm.confirmText = qsTr("arm")
Don Gagne's avatar
Don Gagne committed
396 397
                break;
            case confirmDisarm:
398
                guidedModeConfirm.confirmText = qsTr("disarm")
Don Gagne's avatar
Don Gagne committed
399 400
                break;
            case confirmEmergencyStop:
401
                guidedModeConfirm.confirmText = qsTr("STOP ALL MOTORS!")
Don Gagne's avatar
Don Gagne committed
402 403 404
                break;
            case confirmTakeoff:
                altitudeSlider.visible = true
405
                altitudeSlider.setInitialValueMeters(10)
406
                guidedModeConfirm.confirmText = qsTr("takeoff")
Don Gagne's avatar
Don Gagne committed
407 408
                break;
            case confirmLand:
409
                guidedModeConfirm.confirmText = qsTr("land")
Don Gagne's avatar
Don Gagne committed
410
                break;
Don Gagne's avatar
Don Gagne committed
411
            case confirmHome:
412
                guidedModeConfirm.confirmText = qsTr("return to land")
Don Gagne's avatar
Don Gagne committed
413
                break;
Don Gagne's avatar
Don Gagne committed
414 415
            case confirmChangeAlt:
                altitudeSlider.visible = true
416
                altitudeSlider.setInitialValueAppSettingsDistanceUnits(_activeVehicle.altitudeAMSL.value)
417
                guidedModeConfirm.confirmText = qsTr("change altitude")
Don Gagne's avatar
Don Gagne committed
418 419
                break;
            case confirmGoTo:
420
                guidedModeConfirm.confirmText = qsTr("move vehicle")
Don Gagne's avatar
Don Gagne committed
421
                break;
422
            case confirmRetask:
423
                _guidedModeBar.confirmText    = qsTr("active waypoint change")
424
                break;
Don Gagne's avatar
Don Gagne committed
425
            }
426
            guidedModeBar.visible = false
Don Gagne's avatar
Don Gagne committed
427 428 429
            guidedModeConfirm.visible = true
        }

Don Gagne's avatar
Don Gagne committed
430 431
        Column {
            id:                 guidedModeColumn
Don Gagne's avatar
Don Gagne committed
432 433 434 435 436
            anchors.margins:    _margins
            anchors.top:        parent.top
            anchors.left:       parent.left
            spacing:            _margins

437 438 439 440 441 442 443
            QGCLabel {
                anchors.horizontalCenter: parent.horizontalCenter
                color:      qgcPal.button
                text:       "Click in map to move vehicle"
                visible:    _activeVehicle && _activeVehicle.guidedMode && _activeVehicle.flying
            }

Don Gagne's avatar
Don Gagne committed
444 445 446 447
            Row {
                spacing: _margins

                QGCButton {
448
                    text:       (_activeVehicle && _activeVehicle.armed) ? (_activeVehicle.flying ? qsTr("Emergency Stop") : qsTr("Disarm")) :  qsTr("Arm")
Don Gagne's avatar
Don Gagne committed
449
                    visible:    _activeVehicle
Don Gagne's avatar
Don Gagne committed
450
                    onClicked:  _guidedModeBar.confirmAction(_activeVehicle.armed ? (_activeVehicle.flying ? _guidedModeBar.confirmEmergencyStop : _guidedModeBar.confirmDisarm) : _guidedModeBar.confirmArm)
451
                }
Don Gagne's avatar
Don Gagne committed
452

Don Gagne's avatar
Don Gagne committed
453
                QGCButton {
454
                    text:       qsTr("RTL")
455
                    visible:    (_activeVehicle && _activeVehicle.armed) && _activeVehicle.guidedModeSupported && _activeVehicle.flying
Don Gagne's avatar
Don Gagne committed
456
                    onClicked:  _guidedModeBar.confirmAction(_guidedModeBar.confirmHome)
457
                }
Don Gagne's avatar
Don Gagne committed
458

Don Gagne's avatar
Don Gagne committed
459
                QGCButton {
460
                    text:       (_activeVehicle && _activeVehicle.flying) ?  qsTr("Land"):  qsTr("Takeoff")
461
                    visible:    _activeVehicle && _activeVehicle.guidedModeSupported && _activeVehicle.armed
Don Gagne's avatar
Don Gagne committed
462
                    onClicked:  _guidedModeBar.confirmAction(_activeVehicle.flying ? _guidedModeBar.confirmLand : _guidedModeBar.confirmTakeoff)
463
                }
Don Gagne's avatar
Don Gagne committed
464

Don Gagne's avatar
Don Gagne committed
465
                QGCButton {
466
                    text:       qsTr("Pause")
467
                    visible:    (_activeVehicle && _activeVehicle.armed) && _activeVehicle.pauseVehicleSupported && _activeVehicle.flying
Don Gagne's avatar
Don Gagne committed
468 469
                    onClicked:  {
                        guidedModeHideTimer.restart()
470 471 472
                        _activeVehicle.pauseVehicle()
                    }
                }
Don Gagne's avatar
Don Gagne committed
473

Don Gagne's avatar
Don Gagne committed
474
                QGCButton {
475
                    text:       qsTr("Change Altitude")
476
                    visible:    (_activeVehicle && _activeVehicle.flying) && _activeVehicle.guidedModeSupported && _activeVehicle.armed
Don Gagne's avatar
Don Gagne committed
477
                    onClicked:  _guidedModeBar.confirmAction(_guidedModeBar.confirmChangeAlt)
478
                }
Don Gagne's avatar
Don Gagne committed
479 480
            } // Row
        } // Column
481 482
    } // Rectangle - Guided mode buttons

483
    MouseArea {
Don Gagne's avatar
Don Gagne committed
484 485 486
        anchors.fill:   parent
        enabled:        guidedModeConfirm.visible
        onClicked:      _guidedModeBar.rejectGuidedModeConfirm()
487 488
    }

489 490 491
    // Action confirmation control
    SliderSwitch {
        id:                         guidedModeConfirm
Don Gagne's avatar
Don Gagne committed
492 493
        anchors.bottomMargin:       _margins
        anchors.bottom:             parent.bottom
494
        anchors.horizontalCenter:   parent.horizontalCenter
Don Gagne's avatar
Don Gagne committed
495
        height:                     ScreenTools.defaultFontPixelHeight * 3
496 497 498 499 500 501 502 503
        visible:                    false
        z:                          QGroundControl.zOrderWidgets

        onAccept: {
            guidedModeConfirm.visible = false
            guidedModeBar.visible = true
            _guidedModeBar.actionConfirmed()
            altitudeSlider.visible = false
Don Gagne's avatar
Don Gagne committed
504
            guidedModeHideTimer.restart()
Don Gagne's avatar
Don Gagne committed
505
        }
506

Don Gagne's avatar
Don Gagne committed
507
        onReject: _guidedModeBar.rejectGuidedModeConfirm()
508
    }
Don Gagne's avatar
Don Gagne committed
509 510 511 512 513 514 515 516 517 518 519 520 521

    //-- Altitude slider
    Rectangle {
        id:                 altitudeSlider
        anchors.margins:    _margins
        anchors.right:      parent.right
        anchors.top:        parent.top
        anchors.bottom:     parent.bottom
        color:              qgcPal.window
        width:              ScreenTools.defaultFontPixelWidth * 10
        opacity:            0.8
        visible:            false

522 523 524 525 526 527 528
        function setInitialValueMeters(meters) {
            altSlider.value = QGroundControl.metersToAppSettingsDistanceUnits(meters)
        }

        function setInitialValueAppSettingsDistanceUnits(height) {
            altSlider.value = height
        }
Don Gagne's avatar
Don Gagne committed
529 530 531

        /// Returns NaN for bad value
        function getValue() {
532 533 534 535 536 537
            var value =  parseFloat(altField.text)
            if (!isNaN(value)) {
                return QGroundControl.appSettingsDistanceUnitsToMeters(value);
            } else {
                return value;
            }
Don Gagne's avatar
Don Gagne committed
538 539 540 541 542 543 544 545 546 547 548
        }

        Column {
            id:                 headerColumn
            anchors.margins:    _margins
            anchors.top:        parent.top
            anchors.left:       parent.left
            anchors.right:      parent.right

            QGCLabel {
                anchors.horizontalCenter: parent.horizontalCenter
549
                text: qsTr("Alt (rel)")
Don Gagne's avatar
Don Gagne committed
550 551 552 553
            }

            QGCLabel {
                anchors.horizontalCenter: parent.horizontalCenter
554
                text: QGroundControl.appSettingsDistanceUnitsString
Don Gagne's avatar
Don Gagne committed
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
            }

            QGCTextField {
                id:             altField
                anchors.left:   parent.left
                anchors.right:  parent.right
                text:           altSlider.value.toFixed(1)
            }
        }

        Slider {
            id:                 altSlider
            anchors.margins:    _margins
            anchors.top:        headerColumn.bottom
            anchors.bottom:     parent.bottom
            anchors.left:       parent.left
            anchors.right:      parent.right
            orientation:        Qt.Vertical
573 574
            minimumValue:       QGroundControl.metersToAppSettingsDistanceUnits((_activeVehicle && _activeVehicle.flying) ? -15 : 0)
            maximumValue:       QGroundControl.metersToAppSettingsDistanceUnits((_activeVehicle && _activeVehicle.flying) ? 15 : 60)
Don Gagne's avatar
Don Gagne committed
575 576
        }
    }
577
}