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

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

30 31 32 33 34
    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
35

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

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

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

49 50 51 52
    ExclusiveGroup {
        id: _dropButtonsExclusiveGroup
    }

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

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

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

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

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

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

    ValuesWidget {
131 132 133 134 135 136 137 138
        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
139 140
    }

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

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

            dropDownComponent: Component {
                Row {
                    spacing: ScreenTools.defaultFontPixelWidth

                    QGCCheckBox {
Don Gagne's avatar
Don Gagne committed
165 166 167 168 169
                        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
170 171 172 173 174 175 176 177 178

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

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

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

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

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

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

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

                        Repeater {
                            model: QGroundControl.flightMapSettings.mapTypes
212

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        onAccept: {
            guidedModeConfirm.visible = false
            guidedModeBar.visible = true
            _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
}