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 text: label
20 }
21
22 FactLabel {
23 id: _factLabel
24 Layout.preferredWidth: labelPreferredWidth
25 }
26}