QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
AnalyzeView.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Controls
3
4import QGroundControl
5import QGroundControl.Controls
6
7Rectangle {
8 id: _root
9 color: qgcPal.window
10 z: QGroundControl.zOrderTopMost
11
12 readonly property real _defaultTextHeight: ScreenTools.defaultFontPixelHeight
13 readonly property real _defaultTextWidth: ScreenTools.defaultFontPixelWidth
14 readonly property real _horizontalMargin: _defaultTextWidth / 2
15 readonly property real _verticalMargin: _defaultTextHeight / 2
16
17 property var _activeVehicle: QGroundControl.multiVehicleManager.activeVehicle
18 property var _currentPage: null
19 property var _currentItem: null
20 // Destroy the in-panel page item while panelContainer is still alive, before the
21 // loader clears the source and tears down this component.
22 Component.onDestruction: mainWindow.destroyInPanelAnalyzePage()
23
24 function _loadPage(source) {
25 // Clear reference before calling mainWindow.createAnalyzePage (which destroys the old item).
26 _currentItem = null
27 if (source !== "") {
28 // mainWindow creates and owns the item (QObject parent = mainWindow) so it
29 // survives AnalyzeView being unloaded in the popped-out case.
30 // anchors.fill: parent in AnalyzePage.qml automatically fills panelContainer.
31 _currentItem = mainWindow.createAnalyzePage(source)
32 if (_currentItem) {
33 _currentItem.parent = panelContainer
34 }
35 } else {
36 mainWindow.destroyInPanelAnalyzePage()
37 }
38 }
39
40 function _updatePanelSource() {
41 if (_currentPage) {
42 if (_currentPage.requiresVehicle && !_activeVehicle) {
43 _loadPage("")
44 } else {
45 _loadPage(_currentPage.url)
46 }
47 }
48 }
49
50 on_ActiveVehicleChanged: {
51 if (_currentPage && _currentPage.requiresVehicle) {
52 _loadPage("")
53 if (_activeVehicle) {
54 Qt.callLater(_updatePanelSource)
55 }
56 }
57 }
58
59 // This need to block click event leakage to underlying map.
60 DeadMouseArea {
61 anchors.fill: parent
62 }
63
64 QGCFlickable {
65 id: buttonScroll
66 width: buttonColumn.width
67 anchors.topMargin: _defaultTextHeight / 2
68 anchors.top: parent.top
69 anchors.bottom: parent.bottom
70 anchors.leftMargin: _horizontalMargin
71 anchors.left: parent.left
72 contentHeight: buttonColumn.height
73 flickableDirection: Flickable.VerticalFlick
74 clip: true
75
76 Column {
77 id: buttonColumn
78 width: _maxButtonWidth
79 spacing: _defaultTextHeight / 2
80
81 property real _maxButtonWidth: {
82 var maxW = 0
83 for (var i = 0; i < buttonRepeater.count; i++) {
84 var item = buttonRepeater.itemAt(i)
85 if (item) maxW = Math.max(maxW, item.implicitWidth)
86 }
87 return maxW
88 }
89
90 Repeater {
91 id: buttonRepeater
92 model: QGroundControl.corePlugin ? QGroundControl.corePlugin.analyzePages : []
93
94 Component.onCompleted: {
95 if (count > 0) {
96 itemAt(0).checked = true
97 _currentPage = QGroundControl.corePlugin.analyzePages[0]
98 panelContainer.title = _currentPage.title
99 _updatePanelSource()
100 }
101 }
102
103 SubMenuButton {
104 objectName: "analyzeButton_" + modelData.title
105 imageResource: modelData.icon
106 autoExclusive: true
107 text: modelData.title
108 width: buttonColumn._maxButtonWidth
109
110 onClicked: {
111 _currentPage = modelData
112 panelContainer.title = modelData.title
113 checked = true
114 _updatePanelSource()
115 }
116 }
117 }
118 }
119 }
120
121 Rectangle {
122 id: divider
123 anchors.topMargin: _verticalMargin
124 anchors.bottomMargin: _verticalMargin
125 anchors.leftMargin: _horizontalMargin
126 anchors.left: buttonScroll.right
127 anchors.top: parent.top
128 anchors.bottom: parent.bottom
129 width: 1
130 color: qgcPal.windowShade
131 }
132
133 Item {
134 id: panelContainer
135 anchors.topMargin: _verticalMargin
136 anchors.bottomMargin: _verticalMargin
137 anchors.leftMargin: _horizontalMargin
138 anchors.rightMargin: _horizontalMargin
139 anchors.left: divider.right
140 anchors.right: parent.right
141 anchors.top: parent.top
142 anchors.bottom: parent.bottom
143
144 property string title
145
146 Connections {
147 target: _currentItem
148
149 function onPopout() {
150 var existingItem = _currentItem
151 var pageTitle = panelContainer.title
152 var pageSource = _currentPage.url
153 var requiresVehicle = _currentPage ? _currentPage.requiresVehicle : false
154 // Clear references before handing item to the popup window.
155 _currentItem = null
156 // Tell mainWindow this item has moved to a popup so it is not destroyed
157 // when AnalyzeView is torn down.
158 mainWindow.analyzePageMovedToPopup()
159 existingItem.visible = false
160 // Hand the existing item to the popout window.
161 mainWindow.createWindowedAnalyzePage(pageTitle, pageSource, requiresVehicle, existingItem)
162 // Create a fresh in-panel instance.
163 _loadPage(pageSource)
164 }
165 }
166 }
167
168 QGCLabel {
169 anchors.centerIn: panelContainer
170 text: qsTr("Requires a connected vehicle")
171 visible: _currentPage && _currentPage.requiresVehicle && !_activeVehicle
172 }
173}