FlightDisplayViewWidgets.qml 23.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
/*=====================================================================

QGroundControl Open Source Ground Control Station

(c) 2009, 2015 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>

This file is part of the QGROUNDCONTROL project

    QGROUNDCONTROL is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    QGROUNDCONTROL is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.

======================================================================*/

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 {
39
    id: _root
40

Don Gagne's avatar
Don Gagne committed
41 42
    property alias guidedModeBar: _guidedModeBar

43 44 45
    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
46

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

49
    QGCMapPalette { id: mapPal; lightColors: !isBackgroundDark }
50
    QGCPalette { id: qgcPal }
51

52 53 54 55 56 57 58 59
    function getGadgetWidth() {
        if(ScreenTools.isMobile) {
            return mainWindow.width * 0.15
        }
        var w = mainWindow.width * 0.15
        return Math.min(w, 200)
    }

60 61 62 63
    ExclusiveGroup {
        id: _dropButtonsExclusiveGroup
    }

Don Gagne's avatar
Don Gagne committed
64 65 66 67
    ExclusiveGroup {
        id: _mapTypeButtonsExclusiveGroup
    }

Don Gagne's avatar
Don Gagne committed
68
    //-- Map warnings
69
    Column {
Don Gagne's avatar
Don Gagne committed
70 71 72 73 74 75
        anchors.horizontalCenter:   parent.horizontalCenter
        anchors.verticalCenter:     parent.verticalCenter
        spacing:                    ScreenTools.defaultFontPixelHeight

        QGCLabel {
            anchors.horizontalCenter:   parent.horizontalCenter
76
            visible:                    _activeVehicle && !_activeVehicle.coordinateValid && _mainIsMap
Don Gagne's avatar
Don Gagne committed
77 78
            z:                          QGroundControl.zOrderTopMost
            color:                      mapPal.text
79
            font.pointSize:             ScreenTools.largeFontPointSize
80
            text:                       qsTr("No GPS Lock for Vehicle")
Don Gagne's avatar
Don Gagne committed
81 82 83 84 85 86 87
        }

        QGCLabel {
            anchors.horizontalCenter:   parent.horizontalCenter
            visible:                    _activeVehicle && !_activeVehicle.coordinateValid
            z:                          QGroundControl.zOrderTopMost
            color:                      mapPal.text
88
            font.pointSize:             ScreenTools.largeFontPointSize
Don Gagne's avatar
Don Gagne committed
89
            text:                       _activeVehicle ? _activeVehicle.prearmError : ""
90 91 92 93 94 95 96 97 98 99 100 101 102 103
        }
    }

    //-- 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
104
    //-- Instrument Panel
105
    QGCInstrumentWidget {
106
        id:                     instrumentGadget
107
        anchors.margins:        ScreenTools.defaultFontPixelHeight / 2
Don Gagne's avatar
Don Gagne committed
108
        anchors.right:          altitudeSlider.visible ? altitudeSlider.left : parent.right
109
        anchors.verticalCenter: parent.verticalCenter
110
        visible:                !QGroundControl.virtualTabletJoystick
111
        size:                   getGadgetWidth()
112 113 114 115
        active:                 _activeVehicle != null
        heading:                _heading
        rollAngle:              _roll
        pitchAngle:             _pitch
Don Gagne's avatar
Don Gagne committed
116 117
        groundSpeedFact:        _groundSpeedFact
        airSpeedFact:           _airSpeedFact
118
        lightBorders:           _lightWidgetBorders
119
        z:                      QGroundControl.zOrderWidgets
120
        qgcView:                parent.parent.qgcView
121
        maxHeight:              parent.height - (anchors.margins * 2)
dogmaphobic's avatar
dogmaphobic committed
122 123
    }

124 125
    QGCInstrumentWidgetAlternate {
        id:                     instrumentGadgetAlternate
126
        anchors.margins:        ScreenTools.defaultFontPixelHeight / 2
127
        anchors.top:            parent.top
Don Gagne's avatar
Don Gagne committed
128
        anchors.right:          altitudeSlider.visible ? altitudeSlider.left : parent.right
129
        visible:                QGroundControl.virtualTabletJoystick
dogmaphobic's avatar
dogmaphobic committed
130
        width:                  ScreenTools.isTinyScreen ? getGadgetWidth() * 2 : getGadgetWidth()
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
        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
148
        visible:            QGroundControl.virtualTabletJoystick
149
        maxHeight:          multiTouchItem.y - y
dogmaphobic's avatar
dogmaphobic committed
150 151
    }

152 153 154
    //-- Vertical Tool Buttons
    Column {
        id:                         toolColumn
dogmaphobic's avatar
dogmaphobic committed
155
        visible:                    _mainIsMap
156 157
        anchors.margins:            ScreenTools.defaultFontPixelHeight
        anchors.left:               parent.left
158
        anchors.top:                parent.top
159 160 161 162
        spacing:                    ScreenTools.defaultFontPixelHeight

        //-- Map Center Control
        DropButton {
163 164 165 166 167 168 169
            id:                 centerMapDropButton
            dropDirection:      dropRight
            buttonImage:        "/qmlimages/MapCenter.svg"
            viewportMargins:    ScreenTools.defaultFontPixelWidth / 2
            exclusiveGroup:     _dropButtonsExclusiveGroup
            z:                  QGroundControl.zOrderWidgets
            lightBorders:       _lightWidgetBorders
170 171 172 173 174 175 176

            dropDownComponent: Component {
                Row {
                    spacing: ScreenTools.defaultFontPixelWidth

                    QGCCheckBox {
                        id:                 followVehicleCheckBox
177
                        text:               qsTr("Follow Vehicle")
178 179 180 181 182 183 184 185 186 187 188
                        checked:            _flightMap ? _flightMap._followVehicle : false
                        anchors.baseline:   centerMapButton.baseline

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

                    QGCButton {
                        id:         centerMapButton
189
                        text:       qsTr("Center map on Vehicle")
190 191
                        enabled:    _activeVehicle && !followVehicleCheckBox.checked

192
                        property var activeVehicle: QGroundControl.multiVehicleManager.activeVehicle
193 194 195

                        onClicked: {
                            _dropButtonsExclusiveGroup.current = null
196
                            _flightMap.center = activeVehicle.coordinate
197 198 199 200 201 202 203 204
                        }
                    }
                }
            }
        }

        //-- Map Type Control
        DropButton {
205 206 207 208 209 210 211
            id:                 mapTypeButton
            dropDirection:      dropRight
            buttonImage:        "/qmlimages/MapType.svg"
            viewportMargins:    ScreenTools.defaultFontPixelWidth / 2
            exclusiveGroup:     _dropButtonsExclusiveGroup
            z:                  QGroundControl.zOrderWidgets
            lightBorders:       _lightWidgetBorders
212 213

            dropDownComponent: Component {
Don Gagne's avatar
Don Gagne committed
214
                Column {
215 216
                    spacing: ScreenTools.defaultFontPixelWidth

Don Gagne's avatar
Don Gagne committed
217 218 219 220 221
                    Row {
                        spacing: ScreenTools.defaultFontPixelWidth

                        Repeater {
                            model: QGroundControl.flightMapSettings.mapTypes
222

Don Gagne's avatar
Don Gagne committed
223
                            QGCButton {
Don Gagne's avatar
Don Gagne committed
224 225 226 227 228
                                checkable:      true
                                checked:        _flightMap ? _flightMap.mapType === text : false
                                text:               modelData
                                width:          clearButton.width
                                exclusiveGroup: _mapTypeButtonsExclusiveGroup
Don Gagne's avatar
Don Gagne committed
229 230
                                onClicked: {
                                    _flightMap.mapType = text
Don Gagne's avatar
Don Gagne committed
231
                                    checked = true
Don Gagne's avatar
Don Gagne committed
232 233
                                    _dropButtonsExclusiveGroup.current = null
                                }
234 235 236
                            }
                        }
                    }
Don Gagne's avatar
Don Gagne committed
237 238

                    QGCButton {
dogmaphobic's avatar
dogmaphobic committed
239 240
                        id:         clearButton
                        text:       qsTr("Clear Flight Trails")
Don Gagne's avatar
Don Gagne committed
241 242 243 244 245 246
                        enabled:    QGroundControl.multiVehicleManager.activeVehicle
                        onClicked: {
                            QGroundControl.multiVehicleManager.activeVehicle.clearTrajectoryPoints()
                            _dropButtonsExclusiveGroup.current = null
                        }
                    }
247 248 249 250 251 252 253
                }
            }
        }

        //-- Zoom Map In
        RoundButton {
            id:                 mapZoomPlus
254
            visible:            _mainIsMap
255 256 257
            buttonImage:        "/qmlimages/ZoomPlus.svg"
            exclusiveGroup:     _dropButtonsExclusiveGroup
            z:                  QGroundControl.zOrderWidgets
258
            lightBorders:       _lightWidgetBorders
259 260 261 262 263 264 265 266 267 268
            onClicked: {
                if(_flightMap)
                    _flightMap.zoomLevel += 0.5
                checked = false
            }
        }

        //-- Zoom Map Out
        RoundButton {
            id:                 mapZoomMinus
269
            visible:            _mainIsMap
270 271 272
            buttonImage:        "/qmlimages/ZoomMinus.svg"
            exclusiveGroup:     _dropButtonsExclusiveGroup
            z:                  QGroundControl.zOrderWidgets
273
            lightBorders:       _lightWidgetBorders
274 275 276 277 278 279 280 281
            onClicked: {
                if(_flightMap)
                    _flightMap.zoomLevel -= 0.5
                checked = false
            }
        }
    }

Don Gagne's avatar
Don Gagne committed
282 283 284
    //-- Guided mode buttons
    Rectangle {
        id:                         _guidedModeBar
Don Gagne's avatar
Don Gagne committed
285
        anchors.margins:            _barMargin
Don Gagne's avatar
Don Gagne committed
286 287
        anchors.bottom:             parent.bottom
        anchors.horizontalCenter:   parent.horizontalCenter
288
        width:                      guidedModeColumn.width  + (_margins * 2)
Don Gagne's avatar
Don Gagne committed
289 290
        height:                     guidedModeColumn.height + (_margins * 2)
        radius:                     _margins
291
        color:                      _lightWidgetBorders ? qgcPal.mapWidgetBorderLight : qgcPal.mapWidgetBorderDark
Don Gagne's avatar
Don Gagne committed
292 293 294
        visible:                    _activeVehicle
        opacity:                    0.9
        z:                          QGroundControl.zOrderWidgets
Don Gagne's avatar
Don Gagne committed
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 320 321 322 323 324 325 326 327 328 329 330 331 332
        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
333 334 335 336 337
            onTriggered: {
                if (ScreenTools.isShortScreen) {
                    _guidedModeBar.state = "Hidden"
                }
            }
Don Gagne's avatar
Don Gagne committed
338
        }
Don Gagne's avatar
Don Gagne committed
339 340 341 342 343 344 345 346 347

        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
348
        readonly property int confirmRetask:        9
Don Gagne's avatar
Don Gagne committed
349 350

        property int    confirmActionCode
Don Gagne's avatar
Don Gagne committed
351 352 353
        property real   _showMargin:    _margins
        property real   _hideMargin:    _margins - _guidedModeBar.height
        property real   _barMargin:     _showMargin
Don Gagne's avatar
Don Gagne committed
354 355 356 357 358 359 360 361 362 363

        function actionConfirmed() {
            switch (confirmActionCode) {
            case confirmHome:
                _activeVehicle.guidedModeRTL()
                break;
            case confirmLand:
                _activeVehicle.guidedModeLand()
                break;
            case confirmTakeoff:
364 365 366
                var altitude1 = altitudeSlider.getValue()
                if (!isNaN(altitude1)) {
                    _activeVehicle.guidedModeTakeoff(altitude1)
Don Gagne's avatar
Don Gagne committed
367 368 369 370 371 372 373 374 375 376 377 378
                }
                break;
            case confirmArm:
                _activeVehicle.armed = true
                break;
            case confirmDisarm:
                _activeVehicle.armed = false
                break;
            case confirmEmergencyStop:
                _activeVehicle.emergencyStop()
                break;
            case confirmChangeAlt:
379 380 381
                var altitude2 = altitudeSlider.getValue()
                if (!isNaN(altitude2)) {
                    _activeVehicle.guidedModeChangeAltitude(altitude2)
Don Gagne's avatar
Don Gagne committed
382 383 384 385 386
                }
                break;
            case confirmGoTo:
                _activeVehicle.guidedModeGotoLocation(_flightMap._gotoHereCoordinate)
                break;
387 388 389
            case confirmRetask:
                _activeVehicle.setCurrentMissionSequence(_flightMap._retaskSequence)
                break;
Don Gagne's avatar
Don Gagne committed
390
            default:
391
                console.warn(qsTr("Internal error: unknown confirmActionCode"), confirmActionCode)
Don Gagne's avatar
Don Gagne committed
392 393 394
            }
        }

395 396 397 398 399
        function rejectGuidedModeConfirm() {
            guidedModeConfirm.visible = false
            guidedModeBar.visible = true
            altitudeSlider.visible = false
            _flightMap._gotoHereCoordinate = QtPositioning.coordinate()
Don Gagne's avatar
Don Gagne committed
400
            guidedModeHideTimer.restart()
401 402
        }

Don Gagne's avatar
Don Gagne committed
403
        function confirmAction(actionCode) {
Don Gagne's avatar
Don Gagne committed
404
            guidedModeHideTimer.stop()
Don Gagne's avatar
Don Gagne committed
405 406 407
            confirmActionCode = actionCode
            switch (confirmActionCode) {
            case confirmArm:
408
                guidedModeConfirm.confirmText = qsTr("arm")
Don Gagne's avatar
Don Gagne committed
409 410
                break;
            case confirmDisarm:
411
                guidedModeConfirm.confirmText = qsTr("disarm")
Don Gagne's avatar
Don Gagne committed
412 413
                break;
            case confirmEmergencyStop:
414
                guidedModeConfirm.confirmText = qsTr("STOP ALL MOTORS!")
Don Gagne's avatar
Don Gagne committed
415 416 417
                break;
            case confirmTakeoff:
                altitudeSlider.visible = true
418
                altitudeSlider.setInitialValueMeters(10)
419
                guidedModeConfirm.confirmText = qsTr("takeoff")
Don Gagne's avatar
Don Gagne committed
420 421
                break;
            case confirmLand:
422
                guidedModeConfirm.confirmText = qsTr("land")
Don Gagne's avatar
Don Gagne committed
423
                break;
Don Gagne's avatar
Don Gagne committed
424
            case confirmHome:
425
                guidedModeConfirm.confirmText = qsTr("return to land")
Don Gagne's avatar
Don Gagne committed
426
                break;
Don Gagne's avatar
Don Gagne committed
427 428
            case confirmChangeAlt:
                altitudeSlider.visible = true
429
                altitudeSlider.setInitialValueAppSettingsDistanceUnits(_activeVehicle.altitudeAMSL.value)
430
                guidedModeConfirm.confirmText = qsTr("change altitude")
Don Gagne's avatar
Don Gagne committed
431 432
                break;
            case confirmGoTo:
433
                guidedModeConfirm.confirmText = qsTr("move vehicle")
Don Gagne's avatar
Don Gagne committed
434
                break;
435
            case confirmRetask:
436
                _guidedModeBar.confirmText    = qsTr("active waypoint change")
437
                break;
Don Gagne's avatar
Don Gagne committed
438
            }
439
            guidedModeBar.visible = false
Don Gagne's avatar
Don Gagne committed
440 441 442
            guidedModeConfirm.visible = true
        }

Don Gagne's avatar
Don Gagne committed
443 444
        Column {
            id:                 guidedModeColumn
Don Gagne's avatar
Don Gagne committed
445 446 447 448 449
            anchors.margins:    _margins
            anchors.top:        parent.top
            anchors.left:       parent.left
            spacing:            _margins

450 451 452 453 454 455 456
            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
457 458 459 460
            Row {
                spacing: _margins

                QGCButton {
461
                    text:       (_activeVehicle && _activeVehicle.armed) ? (_activeVehicle.flying ? qsTr("Emergency Stop") : qsTr("Disarm")) :  qsTr("Arm")
462
                    visible: (_activeVehicle && _activeVehicle.coordinateValid)
Don Gagne's avatar
Don Gagne committed
463
                    onClicked:  _guidedModeBar.confirmAction(_activeVehicle.armed ? (_activeVehicle.flying ? _guidedModeBar.confirmEmergencyStop : _guidedModeBar.confirmDisarm) : _guidedModeBar.confirmArm)
464
                }
Don Gagne's avatar
Don Gagne committed
465

Don Gagne's avatar
Don Gagne committed
466
                QGCButton {
467
                    text:       qsTr("RTL")
468
                    visible:    (_activeVehicle && _activeVehicle.armed) && _activeVehicle.guidedModeSupported && _activeVehicle.flying
Don Gagne's avatar
Don Gagne committed
469
                    onClicked:  _guidedModeBar.confirmAction(_guidedModeBar.confirmHome)
470
                }
Don Gagne's avatar
Don Gagne committed
471

Don Gagne's avatar
Don Gagne committed
472
                QGCButton {
473
                    text:       (_activeVehicle && _activeVehicle.flying) ?  qsTr("Land"):  qsTr("Takeoff")
474
                    visible:    _activeVehicle && _activeVehicle.guidedModeSupported && _activeVehicle.armed
Don Gagne's avatar
Don Gagne committed
475
                    onClicked:  _guidedModeBar.confirmAction(_activeVehicle.flying ? _guidedModeBar.confirmLand : _guidedModeBar.confirmTakeoff)
476
                }
Don Gagne's avatar
Don Gagne committed
477

Don Gagne's avatar
Don Gagne committed
478
                QGCButton {
479
                    text:       qsTr("Pause")
480
                    visible:    (_activeVehicle && _activeVehicle.armed) && _activeVehicle.pauseVehicleSupported && _activeVehicle.flying
Don Gagne's avatar
Don Gagne committed
481 482
                    onClicked:  {
                        guidedModeHideTimer.restart()
483 484 485
                        _activeVehicle.pauseVehicle()
                    }
                }
Don Gagne's avatar
Don Gagne committed
486

Don Gagne's avatar
Don Gagne committed
487
                QGCButton {
488
                    text:       qsTr("Change Altitude")
489
                    visible:    (_activeVehicle && _activeVehicle.flying) && _activeVehicle.guidedModeSupported && _activeVehicle.armed
Don Gagne's avatar
Don Gagne committed
490
                    onClicked:  _guidedModeBar.confirmAction(_guidedModeBar.confirmChangeAlt)
491
                }
Don Gagne's avatar
Don Gagne committed
492 493
            } // Row
        } // Column
494 495
    } // Rectangle - Guided mode buttons

496
    MouseArea {
Don Gagne's avatar
Don Gagne committed
497 498 499
        anchors.fill:   parent
        enabled:        guidedModeConfirm.visible
        onClicked:      _guidedModeBar.rejectGuidedModeConfirm()
500 501
    }

502 503 504
    // Action confirmation control
    SliderSwitch {
        id:                         guidedModeConfirm
Don Gagne's avatar
Don Gagne committed
505 506
        anchors.bottomMargin:       _margins
        anchors.bottom:             parent.bottom
507
        anchors.horizontalCenter:   parent.horizontalCenter
Don Gagne's avatar
Don Gagne committed
508
        height:                     ScreenTools.defaultFontPixelHeight * 3
509 510 511 512 513 514 515 516
        visible:                    false
        z:                          QGroundControl.zOrderWidgets

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

Don Gagne's avatar
Don Gagne committed
520
        onReject: _guidedModeBar.rejectGuidedModeConfirm()
521
    }
Don Gagne's avatar
Don Gagne committed
522 523 524 525 526 527 528 529 530 531 532 533 534

    //-- 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

535 536 537 538 539 540 541
        function setInitialValueMeters(meters) {
            altSlider.value = QGroundControl.metersToAppSettingsDistanceUnits(meters)
        }

        function setInitialValueAppSettingsDistanceUnits(height) {
            altSlider.value = height
        }
Don Gagne's avatar
Don Gagne committed
542 543 544

        /// Returns NaN for bad value
        function getValue() {
545 546 547 548 549 550
            var value =  parseFloat(altField.text)
            if (!isNaN(value)) {
                return QGroundControl.appSettingsDistanceUnitsToMeters(value);
            } else {
                return value;
            }
Don Gagne's avatar
Don Gagne committed
551 552 553 554 555 556 557 558 559 560 561
        }

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

            QGCLabel {
                anchors.horizontalCenter: parent.horizontalCenter
562
                text: qsTr("Alt (rel)")
Don Gagne's avatar
Don Gagne committed
563 564 565 566
            }

            QGCLabel {
                anchors.horizontalCenter: parent.horizontalCenter
567
                text: QGroundControl.appSettingsDistanceUnitsString
Don Gagne's avatar
Don Gagne committed
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585
            }

            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
586 587
            minimumValue:       QGroundControl.metersToAppSettingsDistanceUnits((_activeVehicle && _activeVehicle.flying) ? -15 : 0)
            maximumValue:       QGroundControl.metersToAppSettingsDistanceUnits((_activeVehicle && _activeVehicle.flying) ? 15 : 60)
Don Gagne's avatar
Don Gagne committed
588 589
        }
    }
590
}