MissionItemIndicatorDrag.qml 3.74 KB
Newer Older
1 2
/****************************************************************************
 *
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8 9
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

10 11
import QtQuick      2.3
import QtLocation   5.3
12 13 14 15 16

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

17
/// Use to drag a MissionItemIndicator
18 19
Rectangle {
    id:             itemDragger
Don Gagne's avatar
Don Gagne committed
20 21 22 23
    x:              _itemIndicatorX - _touchMarginHorizontal
    y:              _itemIndicatorY - _touchMarginVertical
    width:          _itemIndicatorWidth + (_touchMarginHorizontal * 2)
    height:         _itemIndicatorHeight + (_touchMarginVertical * 2)
24 25 26 27
    color:          "transparent"
    z:              QGroundControl.zOrderMapItems + 1    // Above item icons

    // Properties which must be specific by consumer
28
    property var mapControl     ///< Map control which contains this item
29 30 31
    property var itemIndicator  ///< The mission item indicator to drag around
    property var itemCoordinate ///< Coordinate we are updating during drag

32
    signal clicked
DonLakeFlyer's avatar
DonLakeFlyer committed
33 34
    signal dragStart
    signal dragStop
35

36
    property bool   _preventCoordinateBindingLoop:  false
37

Don Gagne's avatar
Don Gagne committed
38 39 40 41
    property real _itemIndicatorX:          itemIndicator ? itemIndicator.x : 0
    property real _itemIndicatorY:          itemIndicator ? itemIndicator.y : 0
    property real _itemIndicatorWidth:      itemIndicator ? itemIndicator.width : 0
    property real _itemIndicatorHeight:     itemIndicator ? itemIndicator.height : 0
42
    property bool _mobile:                  ScreenTools.isMobile
Don Gagne's avatar
Don Gagne committed
43 44 45 46
    property real _touchWidth:              Math.max(_itemIndicatorWidth, ScreenTools.minTouchPixels)
    property real _touchHeight:             Math.max(_itemIndicatorHeight, ScreenTools.minTouchPixels)
    property real _touchMarginHorizontal:   _mobile ? (_touchWidth - _itemIndicatorWidth) / 2 : 0
    property real _touchMarginVertical:     _mobile ? (_touchHeight - _itemIndicatorHeight) / 2 : 0
DonLakeFlyer's avatar
DonLakeFlyer committed
47
    property bool _dragStartSignalled:      false
48 49 50 51 52

    onXChanged: liveDrag()
    onYChanged: liveDrag()

    function liveDrag() {
53
        if (!itemDragger._preventCoordinateBindingLoop && itemDrag.drag.active) {
54
            var point = Qt.point(itemDragger.x + _touchMarginHorizontal + itemIndicator.anchorPoint.x, itemDragger.y + _touchMarginVertical + itemIndicator.anchorPoint.y)
55
            var coordinate = mapControl.toCoordinate(point, false /* clipToViewPort */)
56 57 58 59 60 61 62 63 64
            itemDragger._preventCoordinateBindingLoop = true
            coordinate.altitude = itemCoordinate.altitude
            itemCoordinate = coordinate
            itemDragger._preventCoordinateBindingLoop = false
        }
    }

    Drag.active: itemDrag.drag.active

65 66 67 68 69 70 71 72 73
    QGCMouseArea {
        id:                 itemDrag
        anchors.fill:       parent
        drag.target:        parent
        drag.minimumX:      0
        drag.minimumY:      0
        drag.maximumX:      itemDragger.parent.width - parent.width
        drag.maximumY:      itemDragger.parent.height - parent.height
        preventStealing:    true
74
        enabled:            itemDragger.visible
75

76 77 78 79
        onClicked: {
            focus = true
            itemDragger.clicked()
        }
80

DonLakeFlyer's avatar
DonLakeFlyer committed
81 82 83
        property bool dragActive: drag.active
        onDragActiveChanged: {
            if (dragActive) {
84
                focus = true
DonLakeFlyer's avatar
DonLakeFlyer committed
85 86 87 88 89 90 91 92
                if (!_dragStartSignalled) {
                    _dragStartSignalled = true
                    dragStart()
                }
            } else {
                _dragStartSignalled = false
                dragStop()
            }
93
        }
94 95
    }
}