FlightDisplayViewWidgets.qml 23.4 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

28 29
    property alias  guidedModeBar:  _guidedModeBar
    property bool   gotoEnabled:    _activeVehicle && _activeVehicle.guidedMode && _activeVehicle.flying
Don Gagne's avatar
Don Gagne committed
30

31 32 33 34 35
    property var    _activeVehicle:             QGroundControl.multiVehicleManager.activeVehicle
    property bool   _isSatellite:               _mainIsMap ? (_flightMap ? _flightMap.isSatelliteMap : true) : true
    property bool   _lightWidgetBorders:        _mainIsMap ? (_flightMap ? _flightMap.isSatelliteMap : true) : true
    property bool   _useAlternateInstruments:   QGroundControl.virtualTabletJoystick || ScreenTools.isTinyScreen

dogmaphobic's avatar
dogmaphobic committed
36

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

39
    QGCMapPalette { id: mapPal; lightColors: !isBackgroundDark }
40
    QGCPalette { id: qgcPal }
41

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

50 51 52 53
    ExclusiveGroup {
        id: _dropButtonsExclusiveGroup
    }

Don Gagne's avatar
Don Gagne committed
54 55 56 57
    ExclusiveGroup {
        id: _mapTypeButtonsExclusiveGroup
    }

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

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

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

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

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

    ValuesWidget {
132 133 134 135 136 137 138 139
        anchors.topMargin:          ScreenTools.defaultFontPixelHeight
        anchors.top:                instrumentGadgetAlternate.bottom
        anchors.horizontalCenter:   instrumentGadgetAlternate.horizontalCenter
        width:                      getGadgetWidth()
        qgcView:                    parent.parent.qgcView
        textColor:                  _isSatellite ? "white" : "black"
        visible:                    _useAlternateInstruments
        maxHeight:                  virtualJoystickMultiTouch.visible ? virtualJoystickMultiTouch.y - y : parent.height - anchors.margins - y
dogmaphobic's avatar
dogmaphobic committed
140 141
    }

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

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

            dropDownComponent: Component {
                Row {
                    spacing: ScreenTools.defaultFontPixelWidth

                    QGCCheckBox {
Don Gagne's avatar
Don Gagne committed
166 167 168 169 170
                        id:         followVehicleCheckBox
                        text:       qsTr("Follow Vehicle")
                        checked:    _flightMap ? _flightMap._followVehicle : false
                        anchors.verticalCenter: parent.verticalCenter
                        //anchors.baseline:   centerMapButton.baseline - This doesn't work correctly on mobile for some strange reason, so we center instead
171 172 173 174 175 176 177 178 179

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

                    QGCButton {
                        id:         centerMapButton
180
                        text:       qsTr("Center map on Vehicle")
181 182
                        enabled:    _activeVehicle && !followVehicleCheckBox.checked

183
                        property var activeVehicle: QGroundControl.multiVehicleManager.activeVehicle
184 185 186

                        onClicked: {
                            _dropButtonsExclusiveGroup.current = null
187
                            _flightMap.center = activeVehicle.coordinate
188 189 190 191 192 193 194 195
                        }
                    }
                }
            }
        }

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

            dropDownComponent: Component {
Don Gagne's avatar
Don Gagne committed
205
                Column {
206 207
                    spacing: ScreenTools.defaultFontPixelWidth

Don Gagne's avatar
Don Gagne committed
208 209 210 211 212
                    Row {
                        spacing: ScreenTools.defaultFontPixelWidth

                        Repeater {
                            model: QGroundControl.flightMapSettings.mapTypes
213

Don Gagne's avatar
Don Gagne committed
214
                            QGCButton {
Don Gagne's avatar
Don Gagne committed
215
                                checkable:      true
216 217
                                checked:        QGroundControl.flightMapSettings.mapType === text
                                text:           modelData
Don Gagne's avatar
Don Gagne committed
218 219
                                width:          clearButton.width
                                exclusiveGroup: _mapTypeButtonsExclusiveGroup
220

Don Gagne's avatar
Don Gagne committed
221
                                onClicked: {
222
                                    QGroundControl.flightMapSettings.mapType = text
Don Gagne's avatar
Don Gagne committed
223
                                    checked = true
Don Gagne's avatar
Don Gagne committed
224 225
                                    _dropButtonsExclusiveGroup.current = null
                                }
226 227 228
                            }
                        }
                    }
Don Gagne's avatar
Don Gagne committed
229 230

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

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

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

Don Gagne's avatar
Don Gagne committed
274 275 276
    //-- Guided mode buttons
    Rectangle {
        id:                         _guidedModeBar
Don Gagne's avatar
Don Gagne committed
277
        anchors.margins:            _barMargin
Don Gagne's avatar
Don Gagne committed
278 279
        anchors.bottom:             parent.bottom
        anchors.horizontalCenter:   parent.horizontalCenter
280
        width:                      guidedModeColumn.width  + (_margins * 2)
Don Gagne's avatar
Don Gagne committed
281 282
        height:                     guidedModeColumn.height + (_margins * 2)
        radius:                     _margins
283
        color:                      _lightWidgetBorders ? qgcPal.mapWidgetBorderLight : qgcPal.mapWidgetBorderDark
Don Gagne's avatar
Don Gagne committed
284 285 286
        visible:                    _activeVehicle
        opacity:                    0.9
        z:                          QGroundControl.zOrderWidgets
Don Gagne's avatar
Don Gagne committed
287 288
        state:                      "Shown"

289 290
        property real _fontPointSize: ScreenTools.isMobile ? ScreenTools.largeFontPointSize : ScreenTools.defaultFontPointSize

Don Gagne's avatar
Don Gagne committed
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 320 321 322 323 324 325 326
        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
327 328 329 330 331
            onTriggered: {
                if (ScreenTools.isShortScreen) {
                    _guidedModeBar.state = "Hidden"
                }
            }
Don Gagne's avatar
Don Gagne committed
332
        }
Don Gagne's avatar
Don Gagne committed
333 334 335 336 337 338 339 340 341

        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
342
        readonly property int confirmRetask:        9
Don Gagne's avatar
Don Gagne committed
343 344

        property int    confirmActionCode
Don Gagne's avatar
Don Gagne committed
345 346 347
        property real   _showMargin:    _margins
        property real   _hideMargin:    _margins - _guidedModeBar.height
        property real   _barMargin:     _showMargin
Don Gagne's avatar
Don Gagne committed
348 349 350 351 352 353 354 355 356 357

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

389 390
        function rejectGuidedModeConfirm() {
            guidedModeConfirm.visible = false
Don Gagne's avatar
Don Gagne committed
391
            _guidedModeBar.visible = true
392 393
            altitudeSlider.visible = false
            _flightMap._gotoHereCoordinate = QtPositioning.coordinate()
Don Gagne's avatar
Don Gagne committed
394
            guidedModeHideTimer.restart()
395 396
        }

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

Don Gagne's avatar
Don Gagne committed
437 438
        Column {
            id:                 guidedModeColumn
Don Gagne's avatar
Don Gagne committed
439 440 441 442 443
            anchors.margins:    _margins
            anchors.top:        parent.top
            anchors.left:       parent.left
            spacing:            _margins

444 445
            QGCLabel {
                anchors.horizontalCenter: parent.horizontalCenter
Don Gagne's avatar
Don Gagne committed
446
                color:      _lightWidgetBorders ? qgcPal.mapWidgetBorderDark : qgcPal.mapWidgetBorderLight
447
                text:       "Click in map to move vehicle"
448
                visible:    gotoEnabled
449 450
            }

Don Gagne's avatar
Don Gagne committed
451
            Row {
Don Gagne's avatar
Don Gagne committed
452
                spacing: _margins * 2
Don Gagne's avatar
Don Gagne committed
453 454

                QGCButton {
455
                    pointSize:  _guidedModeBar._fontPointSize
456
                    text:       (_activeVehicle && _activeVehicle.armed) ? (_activeVehicle.flying ? qsTr("Emergency Stop") : qsTr("Disarm")) :  qsTr("Arm")
Don Gagne's avatar
Don Gagne committed
457
                    visible:    _activeVehicle
Don Gagne's avatar
Don Gagne committed
458
                    onClicked:  _guidedModeBar.confirmAction(_activeVehicle.armed ? (_activeVehicle.flying ? _guidedModeBar.confirmEmergencyStop : _guidedModeBar.confirmDisarm) : _guidedModeBar.confirmArm)
459
                }
Don Gagne's avatar
Don Gagne committed
460

Don Gagne's avatar
Don Gagne committed
461
                QGCButton {
462
                    pointSize:  _guidedModeBar._fontPointSize
463
                    text:       qsTr("RTL")
464
                    visible:    (_activeVehicle && _activeVehicle.armed) && _activeVehicle.guidedModeSupported && _activeVehicle.flying
Don Gagne's avatar
Don Gagne committed
465
                    onClicked:  _guidedModeBar.confirmAction(_guidedModeBar.confirmHome)
466
                }
Don Gagne's avatar
Don Gagne committed
467

Don Gagne's avatar
Don Gagne committed
468
                QGCButton {
469
                    pointSize:  _guidedModeBar._fontPointSize
470
                    text:       (_activeVehicle && _activeVehicle.flying) ?  qsTr("Land"):  qsTr("Takeoff")
471
                    visible:    _activeVehicle && _activeVehicle.guidedModeSupported && _activeVehicle.armed
Don Gagne's avatar
Don Gagne committed
472
                    onClicked:  _guidedModeBar.confirmAction(_activeVehicle.flying ? _guidedModeBar.confirmLand : _guidedModeBar.confirmTakeoff)
473
                }
Don Gagne's avatar
Don Gagne committed
474

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

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

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

501 502 503
    // Action confirmation control
    SliderSwitch {
        id:                         guidedModeConfirm
Don Gagne's avatar
Don Gagne committed
504 505
        anchors.bottomMargin:       _margins
        anchors.bottom:             parent.bottom
506 507 508
        anchors.horizontalCenter:   parent.horizontalCenter
        visible:                    false
        z:                          QGroundControl.zOrderWidgets
509
        fontPointSize:              _guidedModeBar._fontPointSize
510 511 512

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

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

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

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

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

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

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

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

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

            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
Don Gagne's avatar
Don Gagne committed
585 586
            minimumValue:       QGroundControl.metersToAppSettingsDistanceUnits(2)
            maximumValue:       QGroundControl.metersToAppSettingsDistanceUnits((_activeVehicle && _activeVehicle.flying) ? 100 : 10)
Don Gagne's avatar
Don Gagne committed
587 588
        }
    }
589
}