GuidedActionList.qml 4.12 KB
Newer Older
1 2
/****************************************************************************
 *
Gus Grubba's avatar
Gus Grubba committed
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

import QtQuick          2.3
import QtQuick.Controls 1.2
import QtQuick.Layouts  1.2

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

/// Dialog showing list of available guided actions
20
Rectangle {
21 22 23 24 25 26 27 28 29 30 31 32 33
    id:         _root
    width:      actionColumn.width  + (_margins * 4)
    height:     actionColumn.height + (_margins * 4)
    radius:     _margins / 2
    color:      qgcPal.window
    opacity:    0.9
    z:          guidedController.z
    visible:    false

    property var    guidedController
    property var    altitudeSlider
    property alias  model:              actionRepeater.model

Don Gagne's avatar
Don Gagne committed
34 35 36 37
    property real _margins:             Math.round(ScreenTools.defaultFontPixelHeight * 0.66)
    property real _actionWidth:         ScreenTools.defaultFontPixelWidth * 25
    property real _actionHorizSpacing:  ScreenTools.defaultFontPixelHeight * 2

38 39 40

    QGCPalette { id: qgcPal }

41 42 43 44
    DeadMouseArea {
        anchors.fill: parent
    }

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
    ColumnLayout {
        id:                 actionColumn
        anchors.margins:    _root._margins
        anchors.centerIn:   parent
        spacing:            _margins

        QGCLabel {
            text:               qsTr("Select Action")
            Layout.alignment:   Qt.AlignHCenter
        }

        QGCFlickable {
            contentWidth:           actionRow.width
            contentHeight:          actionRow.height
            Layout.minimumHeight:   actionRow.height
            Layout.maximumHeight:   actionRow.height
            Layout.minimumWidth:    _width
            Layout.maximumWidth:    _width

Don Gagne's avatar
Don Gagne committed
64
            property real _width: Math.min((_actionWidth * 2) + _actionHorizSpacing, actionRow.width)
65 66 67

            RowLayout {
                id:         actionRow
Don Gagne's avatar
Don Gagne committed
68
                spacing:    _actionHorizSpacing
69 70 71 72 73 74 75 76 77 78 79

                Repeater {
                    id: actionRepeater

                    ColumnLayout {
                        spacing:            ScreenTools.defaultFontPixelHeight / 2
                        visible:            modelData.visible
                        Layout.fillHeight:  true

                        QGCLabel {
                            id:                     actionMessage
Don Gagne's avatar
Don Gagne committed
80
                            text:                   modelData.text
81 82
                            horizontalAlignment:    Text.AlignHCenter
                            wrapMode:               Text.WordWrap
Don Gagne's avatar
Don Gagne committed
83 84
                            Layout.minimumWidth:    _actionWidth
                            Layout.maximumWidth:    _actionWidth
85 86 87 88 89 90
                            Layout.fillHeight:      true

                            property real _width: ScreenTools.defaultFontPixelWidth * 25
                        }

                        QGCButton {
91 92 93
                            id:                 actionButton
                            text:               modelData.title
                            Layout.alignment:   Qt.AlignCenter
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122

                            onClicked: {
                                _root.visible = false
                                guidedController.confirmAction(modelData.action)
                            }
                        }
                    }
                }
            }
        }
    }

    QGCColoredImage {
        anchors.margins:    _margins
        anchors.top:        parent.top
        anchors.right:      parent.right
        width:              ScreenTools.defaultFontPixelHeight
        height:             width
        sourceSize.height:  width
        source:             "/res/XDelete.svg"
        fillMode:           Image.PreserveAspectFit
        color:              qgcPal.text

        QGCMouseArea {
            fillItem:   parent
            onClicked:  _root.visible = false
        }
    }
}