MissionItemIndexLabel.qml 5.8 KB
Newer Older
DonLakeFlyer's avatar
DonLakeFlyer committed
1 2
import QtQuick          2.3
import QtQuick.Controls 1.2
3 4

import QGroundControl.ScreenTools 1.0
5
import QGroundControl.Palette     1.0
6

7 8
Canvas {
    id:     root
9

DonLakeFlyer's avatar
DonLakeFlyer committed
10
    width:  _width
11
    height: _height
12

13 14
    signal clicked

15 16
    property string label                           ///< Label to show to the side of the index indicator
    property int    index:                  0       ///< Index to show in the indicator, 0 will show single char label instead, -1 first char of label in indicator full label to the side
17
    property bool   checked:                false
18
    property bool   small:                  !checked
19
    property bool   child:                  false
Gus Grubba's avatar
Gus Grubba committed
20
    property bool   highlightSelected:      false
21
    property var    color:                  checked ? "green" : (child ? qgcPal.mapIndicatorChild : qgcPal.mapIndicator)
22 23
    property real   anchorPointX:           _height / 2
    property real   anchorPointY:           _height / 2
24
    property bool   specifiesCoordinate:    true
DonLakeFlyer's avatar
DonLakeFlyer committed
25 26 27
    property real   gimbalYaw
    property real   vehicleYaw
    property bool   showGimbalYaw:          false
28
    property bool   showSequenceNumbers:    false
29

DonLakeFlyer's avatar
DonLakeFlyer committed
30
    property real   _width:             showGimbalYaw ? Math.max(_gimbalYawWidth, labelControl.visible ? labelControl.width : indicator.width) : (labelControl.visible ? labelControl.width : indicator.width)
31 32 33
    property real   _height:            showGimbalYaw ? _gimbalYawWidth : (labelControl.visible ? labelControl.height : indicator.height)
    property real   _gimbalYawRadius:   ScreenTools.defaultFontPixelHeight
    property real   _gimbalYawWidth:    _gimbalYawRadius * 2
34
    property real   _smallRadius:       ((ScreenTools.defaultFontPixelHeight * ScreenTools.smallFontPointRatio) / 2) + 1
35 36
    property real   _normalRadius:      ScreenTools.defaultFontPixelHeight * 0.66
    property real   _indicatorRadius:   small ? _smallRadius : _normalRadius
37 38 39
    property real   _gimbalRadians:     degreesToRadians(vehicleYaw + gimbalYaw - 90)
    property real   _labelMargin:       2
    property real   _labelRadius:       _indicatorRadius + _labelMargin
40
    property string _label:             label.length > 1 ? label : ""
41
    property string _index:             index === 0 || index === -1 ? label.charAt(0) : (showSequenceNumbers ? index : "")
42

DonLakeFlyer's avatar
DonLakeFlyer committed
43 44 45 46
    onColorChanged:         requestPaint()
    onShowGimbalYawChanged: requestPaint()
    onGimbalYawChanged:     requestPaint()
    onVehicleYawChanged:    requestPaint()
47 48 49

    QGCPalette { id: qgcPal }

DonLakeFlyer's avatar
DonLakeFlyer committed
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
    function degreesToRadians(degrees) {
        return (Math.PI/180)*degrees
    }

    function paintGimbalYaw(context) {
        if (showGimbalYaw) {
            context.save()
            context.globalAlpha = 0.75
            context.beginPath()
            context.moveTo(anchorPointX, anchorPointY)
            context.arc(anchorPointX, anchorPointY, _gimbalYawRadius,  _gimbalRadians + degreesToRadians(45), _gimbalRadians + degreesToRadians(-45), true /* clockwise */)
            context.closePath()
            context.fillStyle = "white"
            context.fill()
            context.restore()
        }
    }

68 69
    onPaint: {
        var context = getContext("2d")
DonLakeFlyer's avatar
DonLakeFlyer committed
70 71
        context.clearRect(0, 0, width, height)
        paintGimbalYaw(context)
72 73
    }

74 75
    Behavior on _indicatorRadius { PropertyAnimation {} }

76
    Rectangle {
DonLakeFlyer's avatar
DonLakeFlyer committed
77 78 79 80 81 82 83
        id:                     labelControl
        anchors.leftMargin:     -((_labelMargin * 2) + indicator.width)
        anchors.rightMargin:    -(_labelMargin * 2)
        anchors.fill:           labelControlLabel
        color:                  "white"
        opacity:                0.5
        radius:                 _labelRadius
84
        visible:                _label.length !== 0 && !small
85 86
    }

87
    QGCLabel {
88
        id:                     labelControlLabel
DonLakeFlyer's avatar
DonLakeFlyer committed
89 90 91 92 93 94
        anchors.topMargin:      -_labelMargin
        anchors.bottomMargin:   -_labelMargin
        anchors.leftMargin:     _labelMargin
        anchors.left:           indicator.right
        anchors.top:            indicator.top
        anchors.bottom:         indicator.bottom
DonLakeFlyer's avatar
DonLakeFlyer committed
95
        color:                  "white"
96
        text:                   _label
DonLakeFlyer's avatar
DonLakeFlyer committed
97 98
        verticalAlignment:      Text.AlignVCenter
        visible:                labelControl.visible
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
    }

    Rectangle {
        id:                             indicator
        anchors.horizontalCenter:       parent.left
        anchors.verticalCenter:         parent.top
        anchors.horizontalCenterOffset: anchorPointX
        anchors.verticalCenterOffset:   anchorPointY
        width:                          _indicatorRadius * 2
        height:                         width
        color:                          root.color
        radius:                         _indicatorRadius

        QGCLabel {
            anchors.fill:           parent
            horizontalAlignment:    Text.AlignHCenter
            verticalAlignment:      Text.AlignVCenter
            color:                  "white"
            font.pointSize:         ScreenTools.defaultFontPointSize
118
            fontSizeMode:           Text.Fit
119 120
            text:                   _index
        }
121
    }
122

123
    // Extra circle to indicate selection
Gus Grubba's avatar
Gus Grubba committed
124 125 126 127 128 129 130 131 132 133 134
    Rectangle {
        width:          indicator.width * 2
        height:         width
        radius:         width * 0.5
        color:          Qt.rgba(0,0,0,0)
        border.color:   Qt.rgba(1,1,1,0.5)
        border.width:   1
        visible:        checked && highlightSelected
        anchors.centerIn: indicator
    }

135 136 137 138 139 140 141
    // The mouse click area is always the size of a normal indicator
    Item {
        id:                 mouseAreaFill
        anchors.margins:    small ? -(_normalRadius - _smallRadius) : 0
        anchors.fill:       indicator
    }

142
    QGCMouseArea {
143
        fillItem:   mouseAreaFill
144 145 146 147
        onClicked: {
            focus = true
            parent.clicked()
        }
148
    }
149
}