QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
LabelledFactLabel.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Layouts
3
4import QGroundControl
5import QGroundControl.Controls
6import QGroundControl.FactControls
7
8RowLayout {
9 property string label: fact.shortDescription
10 property alias fact: _factLabel.fact
11 property real labelPreferredWidth: -1
12 property alias factLabelShowUnits: _factLabel.showUnits
13 property alias factLabel: _factLabel
14
15 spacing: ScreenTools.defaultFontPixelWidth * 2
16
17 QGCLabel {
18 Layout.fillWidth: true
19 Layout.minimumWidth: implicitWidth
20 text: label
21 }
22
23 FactLabel {
24 id: _factLabel
25 Layout.preferredWidth: labelPreferredWidth
26 }
27}