MissionItemIndicatorDrag.qml 3.22 KB
Newer Older
1 2 3 4 5 6 7 8 9
/****************************************************************************
 *
 *   (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.
 *
 ****************************************************************************/

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
20 21 22 23
    x:              itemIndicator.x - _touchMarginHorizontal
    y:              itemIndicator.y - _touchMarginVertical
    width:          itemIndicator.width + (_touchMarginHorizontal * 2)
    height:         itemIndicator.height + (_touchMarginVertical * 2)
24 25 26 27 28 29 30
    color:          "transparent"
    z:              QGroundControl.zOrderMapItems + 1    // Above item icons

    // Properties which must be specific by consumer
    property var itemIndicator  ///< The mission item indicator to drag around
    property var itemCoordinate ///< Coordinate we are updating during drag

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

35
    property bool   _preventCoordinateBindingLoop:  false
36

37
    property bool _mobile:                  ScreenTools.isMobile
38 39 40 41
    property real _touchWidth:              Math.max(itemIndicator.width, ScreenTools.minTouchPixels)
    property real _touchHeight:             Math.max(itemIndicator.height, ScreenTools.minTouchPixels)
    property real _touchMarginHorizontal:   _mobile ? (_touchWidth - itemIndicator.width) / 2 : 0
    property real _touchMarginVertical:     _mobile ? (_touchHeight - itemIndicator.height) / 2 : 0
DonLakeFlyer's avatar
DonLakeFlyer committed
42
    property bool _dragStartSignalled:      false
43 44 45 46 47

    onXChanged: liveDrag()
    onYChanged: liveDrag()

    function liveDrag() {
48
        if (!itemDragger._preventCoordinateBindingLoop && itemDrag.drag.active) {
49
            var point = Qt.point(itemDragger.x + _touchMarginHorizontal + itemIndicator.anchorPoint.x, itemDragger.y + _touchMarginVertical + itemIndicator.anchorPoint.y)
DonLakeFlyer's avatar
DonLakeFlyer committed
50
            var coordinate = map.toCoordinate(point, false /* clipToViewPort */)
51 52 53 54 55 56 57 58 59
            itemDragger._preventCoordinateBindingLoop = true
            coordinate.altitude = itemCoordinate.altitude
            itemCoordinate = coordinate
            itemDragger._preventCoordinateBindingLoop = false
        }
    }

    Drag.active: itemDrag.drag.active

60 61 62 63 64 65 66 67 68
    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
69 70 71

        onClicked: itemDragger.clicked()

DonLakeFlyer's avatar
DonLakeFlyer committed
72 73 74 75 76 77 78 79 80 81 82
        property bool dragActive: drag.active
        onDragActiveChanged: {
            if (dragActive) {
                if (!_dragStartSignalled) {
                    _dragStartSignalled = true
                    dragStart()
                }
            } else {
                _dragStartSignalled = false
                dragStop()
            }
83
        }
84 85
    }
}