FlightModeMenu.qml 2.33 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
 *
 * 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.11
import QtQuick.Controls             2.4
12 13 14 15 16 17 18 19

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

// Label control whichs pop up a flight mode change menu when clicked
QGCLabel {
    id:     flightModeMenuLabel
20
    text:   currentVehicle ? currentVehicle.flightMode : qsTr("N/A", "No data to display")
21

22 23
    property var    currentVehicle:         QGroundControl.multiVehicleManager.activeVehicle
    property real   mouseAreaLeftMargin:    0
24

25
    QGCMenu {
26 27 28 29 30 31
        id: flightModesMenu
    }

    Component {
        id: flightModeMenuItemComponent

32
        QGCMenuItem {
33
            onTriggered: currentVehicle.flightMode = text
34 35 36 37 38 39
        }
    }

    property var flightModesMenuItems: []

    function updateFlightModesMenu() {
40
        if (currentVehicle && currentVehicle.flightModeSetAvailable) {
41
            var i;
42
            // Remove old menu items
43
            for (i = 0; i < flightModesMenuItems.length; i++) {
44 45 46 47
                flightModesMenu.removeItem(flightModesMenuItems[i])
            }
            flightModesMenuItems.length = 0
            // Add new items
48 49
            for (i = 0; i < currentVehicle.flightModes.length; i++) {
                var menuItem = flightModeMenuItemComponent.createObject(null, { "text": currentVehicle.flightModes[i] })
50 51 52 53 54 55 56 57 58 59 60 61 62 63
                flightModesMenuItems.push(menuItem)
                flightModesMenu.insertItem(i, menuItem)
            }
        }
    }

    Component.onCompleted: flightModeMenuLabel.updateFlightModesMenu()

    Connections {
        target:                 QGroundControl.multiVehicleManager
        onActiveVehicleChanged: flightModeMenuLabel.updateFlightModesMenu()
    }

    MouseArea {
64 65 66 67 68
        id:                 mouseArea
        visible:            currentVehicle && currentVehicle.flightModeSetAvailable
        anchors.leftMargin: mouseAreaLeftMargin
        anchors.fill:       parent
        onClicked:          flightModesMenu.popup()
69 70
    }
}