QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
LabelledSlider.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Layouts
3
4import QGroundControl
5import QGroundControl.Controls
6
7RowLayout {
8 property alias label: label.text
9 property alias from: slider.from
10 property alias to: slider.to
11 property real sliderPreferredWidth: -1
12
13 spacing: ScreenTools.defaultFontPixelWidth * 2
14
15 QGCLabel {
16 id: label
17 Layout.fillWidth: true
18 }
19
20 QGCSlider {
21 id: slider
22 Layout.preferredWidth: sliderPreferredWidth
23 }
24}