MissionItemIndicator.qml 1.1 KB
Newer Older
1 2 3 4 5 6 7 8
/****************************************************************************
 *
 *   (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.
 *
 ****************************************************************************/
9 10 11 12 13 14 15


import QtQuick      2.4
import QtLocation   5.3

import QGroundControl.ScreenTools   1.0
import QGroundControl.Controls      1.0
16
import QGroundControl.Vehicle       1.0
17 18 19

/// Marker for displaying a mission item on the map
MapQuickItem {
20 21
    id: _item

22
    property var missionItem
23
    property int sequenceNumber
24

25 26
    signal clicked

27 28
    anchorPoint.x:  sourceItem.width  / 2
    anchorPoint.y:  sourceItem.height / 2
29 30 31

    sourceItem:
        MissionItemIndexLabel {
32
            id:             _label
33
            isCurrentItem:  _isCurrentItem
Don Gagne's avatar
Don Gagne committed
34
            label:          missionItem ? missionItem.abbreviation : ""
35
            onClicked:      _item.clicked()
36 37

            property bool _isCurrentItem:   missionItem ? missionItem.isCurrentItem : false
38 39
        }
}