QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
LabelledFactTextField.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: _factTextField.fact
11 property real textFieldPreferredWidth: -1
12 property alias textFieldUnitsLabel: _factTextField.unitsLabel
13 property alias textFieldShowUnits: _factTextField.showUnits
14 property alias textFieldShowHelp: _factTextField.showHelp
15 property alias textField: _factTextField
16
17 spacing: ScreenTools.defaultFontPixelWidth * 2
18
19 QGCLabel {
20 Layout.fillWidth: true
21 text: label
22 visible: label !== ""
23 }
24
25 FactTextField {
26 id: _factTextField
27 Layout.preferredWidth: textFieldPreferredWidth
28 }
29}