4import QGroundControl.Controls
5import QGroundControl.FlightMap
8 width: ScreenTools.defaultFontPixelHeight * 10
9 height: _outerRadius * 4
11 color: QGroundControl.globalPalette.window
13 property real extraInset: 0
14 property real extraValuesWidth: _outerRadius
16 property real _outerMargin: (width * 0.05) / 2
17 property real _outerRadius: width / 2
18 property real _innerRadius: _outerRadius - _outerMargin
20 // Prevent all clicks from going through to lower layers
27 anchors.horizontalCenter: parent.horizontalCenter
28 anchors.topMargin: _outerMargin
29 anchors.top: parent.top
30 size: _innerRadius * 2
31 vehicle: globals.activeVehicle
36 anchors.horizontalCenter: parent.horizontalCenter
37 anchors.topMargin: _outerMargin * 2
38 anchors.top: attitude.bottom
39 size: _innerRadius * 2
40 vehicle: globals.activeVehicle