4import QGroundControl.Controls
5import QGroundControl.Toolbar
8 objectName: "flyViewToolBarIndicators"
9 implicitWidth: mainLayout.width + _widthMargin
11 property var _activeVehicle: QGroundControl.multiVehicleManager.activeVehicle
12 property real _toolIndicatorMargins: ScreenTools.defaultFontPixelHeight * 0.66
13 property real _widthMargin: _toolIndicatorMargins * 2
17 anchors.margins: _toolIndicatorMargins
18 anchors.left: parent.left
19 anchors.top: parent.top
20 anchors.bottom: parent.bottom
21 spacing: ScreenTools.defaultFontPixelWidth * 1.75
25 model: QGroundControl.corePlugin.toolBarIndicators
27 anchors.top: parent.top
28 anchors.bottom: parent.bottom
30 visible: item.showIndicator
35 id: toolIndicatorsRepeater
36 model: _activeVehicle ? _activeVehicle.toolIndicators : []
39 anchors.top: parent.top
40 anchors.bottom: parent.bottom
42 visible: item.showIndicator