import QtQuick 2.3 import QtQuick.Controls 1.2 import QtQuick.Controls.Styles 1.4 import QtQuick.Dialogs 1.2 import QtQml 2.2 import QGroundControl 1.0 import QGroundControl.ScreenTools 1.0 import QGroundControl.Vehicle 1.0 import QGroundControl.Controls 1.0 import QGroundControl.FactControls 1.0 import QGroundControl.Palette 1.0 /// Fly Area Item edit control Rectangle { id: _root height: editorLoader.visible ? (editorLoader.y + editorLoader.height + (_margin * 2)) : (descriptionLabel.y + descriptionLabel.height + _margin / 2) color: _currentItem ? qgcPal.missionItemEditor : qgcPal.windowShade radius: _radius property var map ///< Map control property var flyArea property var masterController property var polygon ///< MissionItem associated with this editor property bool readOnly ///< true: read only view, false: full editing view property var rootQgcView property int _index signal clicked signal remove property var _masterController: masterController property var _missionController: _masterController.missionController property bool _currentItem: polygon.interactive property color _outerTextColor: _currentItem ? qgcPal.primaryButtonText : qgcPal.text property bool _noMissionItemsAdded: ListView.view.model.count === 1 property real _sectionSpacer: ScreenTools.defaultFontPixelWidth / 2 // spacing between section headings readonly property real _editFieldWidth: Math.min(width - _margin * 2, ScreenTools.defaultFontPixelWidth * 12) readonly property real _margin: ScreenTools.defaultFontPixelWidth / 2 readonly property real _radius: ScreenTools.defaultFontPixelWidth / 2 readonly property real _hamburgerSize: descriptionLabel.height * 0.75 readonly property bool _waypointsOnlyMode: QGroundControl.corePlugin.options.missionWaypointsOnly QGCPalette { id: qgcPal colorGroupEnabled: enabled } FocusScope { id: currentItemScope anchors.fill: parent MouseArea { anchors.fill: parent onClicked: { currentItemScope.focus = true _root.clicked() } } } QGCLabel { id: label anchors.verticalCenter: descriptionLabel.verticalCenter anchors.leftMargin: _margin anchors.left: parent.left text: index color: _outerTextColor } QGCColoredImage { id: hamburger anchors.rightMargin: ScreenTools.defaultFontPixelWidth anchors.right: parent.right anchors.verticalCenter: descriptionLabel.verticalCenter width: _hamburgerSize height: _hamburgerSize sourceSize.height: _hamburgerSize source: "qrc:/qmlimages/Hamburger.svg" visible: _currentItem color: qgcPal.text } QGCMouseArea { fillItem: hamburger visible: hamburger.visible onClicked: { currentItemScope.focus = true hamburgerMenu.popup() } Menu { id: hamburgerMenu MenuItem { text: qsTr("Insert Fly Area") onTriggered: flyArea.appendFlyAreaPolygon() } MenuItem { text: qsTr("Delete") onTriggered: remove() } MenuItem { text: qsTr("Copy Fly Area") //onTriggered: //To Do } } } QGCLabel { id: descriptionLabel anchors.topMargin: _margin / 2 anchors.leftMargin: ScreenTools.defaultFontPixelWidth * 2 anchors.rightMargin: ScreenTools.defaultFontPixelWidth anchors.left: label.right anchors.top: parent.top text: "Fly Area" verticalAlignment: Text.AlignVCenter color: _outerTextColor } Loader { id: editorLoader anchors.leftMargin: _margin anchors.topMargin: _margin anchors.left: parent.left anchors.top: descriptionLabel.bottom source: "FlyAreaEditor.qml" visible: _currentItem property var masterController: _masterController property real availableWidth: _root.width - (_margin * 2) ///< How wide the editor should be property var editorRoot: _root } } // Rectangle