6import QGroundControl.FactControls
7import QGroundControl.Controls
10 property var _settingsManager: QGroundControl.settingsManager
11 property var _adsbSettings: _settingsManager.adsbVehicleManagerSettings
12 property Fact _adsbServerConnectEnabled: _adsbSettings.adsbServerConnectEnabled
15 Layout.fillWidth: true
16 visible: QGroundControl.settingsManager.adsbVehicleManagerSettings.visible
19 Layout.fillWidth: true
20 text: fact.shortDescription
21 fact: _adsbServerConnectEnabled
27 Layout.fillWidth: true
28 visible: _adsbSettings.adsbServerHostAddress.visible || _adsbSettings.adsbServerPort.visible
29 enabled: _adsbServerConnectEnabled.rawValue
31 LabelledFactTextField {
32 Layout.fillWidth: true
33 label: fact.shortDescription
34 fact: _adsbSettings.adsbServerHostAddress
38 LabelledFactTextField {
39 Layout.fillWidth: true
40 label: fact.shortDescription
41 fact: _adsbSettings.adsbServerPort