QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
LabelledFactComboBox.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 alias label: label.text
10 property alias fact: _comboBox.fact
11 property alias indexModel: _comboBox.indexModel
12 property var comboBox: _comboBox
13 property real comboBoxPreferredWidth: -1
14
15 spacing: ScreenTools.defaultFontPixelWidth * 2
16
17 signal activated(int index)
18
19 QGCLabel {
20 id: label
21 Layout.fillWidth: true
22 }
23
24 FactComboBox {
25 id: _comboBox
26 Layout.preferredWidth: comboBoxPreferredWidth
27 sizeToContents: true
28
29 onActivated: (index) => { parent.activated(index) }
30 }
31}