Skip to content
GuidedActionConfirm.qml 4.78 KiB
Newer Older
/****************************************************************************
 *
Gus Grubba's avatar
Gus Grubba committed
 * (c) 2009-2020 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.
 *
 ****************************************************************************/

DonLakeFlyer's avatar
 
DonLakeFlyer committed
import QtQuick          2.12
import QtQuick.Controls 2.4
import QtQuick.Layouts  1.12

import QGroundControl               1.0
import QGroundControl.ScreenTools   1.0
import QGroundControl.Controls      1.0
import QGroundControl.Palette       1.0

DonLakeFlyer's avatar
 
DonLakeFlyer committed
    id:                     _root
    Layout.minimumWidth:    mainLayout.width + (_margins * 2)
    Layout.preferredHeight: mainLayout.height + (_margins * 2)
    radius:                 ScreenTools.defaultFontPixelWidth / 2
    color:                  qgcPal.windowShadeLight
    visible:                false

    property var    guidedController
    property var    altitudeSlider
DonLakeFlyer's avatar
 
DonLakeFlyer committed
    property string title                                       // Currently unused
    property alias  message:            messageText.text
    property int    action
    property var    actionData
    property bool   hideTrigger:        false
Don Gagne's avatar
 
Don Gagne committed
    property var    mapIndicator
DonLakeFlyer's avatar
 
DonLakeFlyer committed
    property alias  optionText:         optionCheckBox.text
    property alias  optionChecked:      optionCheckBox.checked
DonLakeFlyer's avatar
 
DonLakeFlyer committed
    property real _margins:         ScreenTools.defaultFontPixelWidth / 2
    property bool _emergencyAction: action === guidedController.actionEmergencyStop
DonLakeFlyer's avatar
 
DonLakeFlyer committed
    Component.onCompleted: guidedController.confirmDialog = this

    onHideTriggerChanged: {
        if (hideTrigger) {
Don Gagne's avatar
 
Don Gagne committed
            confirmCancelled()
    function show(immediate) {
        if (immediate) {
            visible = true
        } else {
DonLakeFlyer's avatar
 
DonLakeFlyer committed
            // We delay showing the confirmation for a small amount in order for any other state
            // changes to propogate through the system. This way only the final state shows up.
            visibleTimer.restart()
        }
    }

Don Gagne's avatar
 
Don Gagne committed
    function confirmCancelled() {
        altitudeSlider.visible = false
        visible = false
        hideTrigger = false
        visibleTimer.stop()
        if (mapIndicator) {
            mapIndicator.actionCancelled()
            mapIndicator = undefined
        }
    }

    Timer {
        id:             visibleTimer
        interval:       1000
        repeat:         false
        onTriggered:    visible = true
    }

    QGCPalette { id: qgcPal }

DonLakeFlyer's avatar
 
DonLakeFlyer committed
    ColumnLayout {
        id:                         mainLayout
        anchors.horizontalCenter:   parent.horizontalCenter
        spacing:                    _margins

        QGCLabel {
            id:                     messageText
DonLakeFlyer's avatar
 
DonLakeFlyer committed
            Layout.fillWidth:       true
            horizontalAlignment:    Text.AlignHCenter
            wrapMode:               Text.WordWrap
        }

DonLakeFlyer's avatar
 
DonLakeFlyer committed
        QGCCheckBox {
DonLakeFlyer's avatar
 
DonLakeFlyer committed
            id:                 optionCheckBox
            Layout.alignment:   Qt.AlignHCenter
            text:               ""
            visible:            text !== ""
DonLakeFlyer's avatar
 
DonLakeFlyer committed
        }

DonLakeFlyer's avatar
 
DonLakeFlyer committed
        RowLayout {
            Layout.alignment:       Qt.AlignHCenter
            spacing:                ScreenTools.defaultFontPixelWidth

            SliderSwitch {
                id:                     slider
                confirmText:            qsTr("Slide to confirm")
                Layout.minimumWidth:    Math.max(implicitWidth, ScreenTools.defaultFontPixelWidth * 30)

                onAccept: {
                    _root.visible = false
                    var altitudeChange = 0
                    if (altitudeSlider.visible) {
                        altitudeChange = altitudeSlider.getAltitudeChangeValue()
                        altitudeSlider.visible = false
                    }
                    hideTrigger = false
                    guidedController.executeAction(_root.action, _root.actionData, altitudeChange, _root.optionChecked)
                    if (mapIndicator) {
                        mapIndicator.actionConfirmed()
                        mapIndicator = undefined
                    }
Don Gagne's avatar
 
Don Gagne committed
                }
DonLakeFlyer's avatar
 
DonLakeFlyer committed
            Rectangle {
                height: slider.height * 0.75
                width:  height
                radius: height / 2
                color:  qgcPal.primaryButton

                QGCColoredImage {
                    anchors.margins:    parent.height / 4
                    anchors.fill:       parent
                    source:             "/res/XDelete.svg"
                    fillMode:           Image.PreserveAspectFit
                    color:              qgcPal.text
                }

                QGCMouseArea {
                    fillItem:   parent
                    onClicked:  confirmCancelled()
                }
            }
DonLakeFlyer's avatar
 
DonLakeFlyer committed