GeneralSettings.qml 61.9 KB
Newer Older
1 2 3 4 5 6 7 8
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
dogmaphobic's avatar
dogmaphobic committed
9 10


11 12
import QtQuick                  2.3
import QtQuick.Controls         1.2
13
import QtQuick.Controls.Styles  1.4
14
import QtQuick.Dialogs          1.2
15
import QtQuick.Layouts          1.2
dogmaphobic's avatar
dogmaphobic committed
16 17 18

import QGroundControl                       1.0
import QGroundControl.FactSystem            1.0
19
import QGroundControl.FactControls          1.0
dogmaphobic's avatar
dogmaphobic committed
20 21 22 23
import QGroundControl.Controls              1.0
import QGroundControl.ScreenTools           1.0
import QGroundControl.MultiVehicleManager   1.0
import QGroundControl.Palette               1.0
24
import QGroundControl.Controllers           1.0
25
import QGroundControl.SettingsManager       1.0
dogmaphobic's avatar
dogmaphobic committed
26

27
Rectangle {
28
    id:                 _root
29
    color:              qgcPal.window
30 31
    anchors.fill:       parent
    anchors.margins:    ScreenTools.defaultFontPixelWidth
dogmaphobic's avatar
dogmaphobic committed
32

33
    property Fact _percentRemainingAnnounce:    QGroundControl.settingsManager.appSettings.batteryPercentRemainingAnnounce
34
    property Fact _savePath:                    QGroundControl.settingsManager.appSettings.savePath
35
    property Fact _appFontPointSize:            QGroundControl.settingsManager.appSettings.appFontPointSize
36 37
    property Fact _userBrandImageIndoor:        QGroundControl.settingsManager.brandImageSettings.userBrandImageIndoor
    property Fact _userBrandImageOutdoor:       QGroundControl.settingsManager.brandImageSettings.userBrandImageOutdoor
38
    property real _labelWidth:                  ScreenTools.defaultFontPixelWidth * 20
39
    property real _comboFieldWidth:             ScreenTools.defaultFontPixelWidth * 28
40
    property real _valueFieldWidth:             ScreenTools.defaultFontPixelWidth * 10
41 42
    property Fact _mapProvider:                 QGroundControl.settingsManager.flightMapSettings.mapProvider
    property Fact _mapType:                     QGroundControl.settingsManager.flightMapSettings.mapType
43
    property Fact _followTarget:                QGroundControl.settingsManager.appSettings.followTarget
44
    property real _panelWidth:                  _root.width * _internalWidthRatio
45
    property real _margins:                     ScreenTools.defaultFontPixelWidth
Don Gagne's avatar
Don Gagne committed
46

47 48
    property string _videoSource:               QGroundControl.settingsManager.videoSettings.videoSource.value
    property bool   _isGst:                     QGroundControl.videoManager.isGStreamer
Gus Grubba's avatar
Gus Grubba committed
49
    property bool   _isUDP264:                  _isGst && _videoSource === QGroundControl.settingsManager.videoSettings.udp264VideoSource
50
    property bool   _isUDP265:                  _isGst && _videoSource === QGroundControl.settingsManager.videoSettings.udp265VideoSource
51 52
    property bool   _isRTSP:                    _isGst && _videoSource === QGroundControl.settingsManager.videoSettings.rtspVideoSource
    property bool   _isTCP:                     _isGst && _videoSource === QGroundControl.settingsManager.videoSettings.tcpVideoSource
53
    property bool   _isMPEGTS:                  _isGst && _videoSource === QGroundControl.settingsManager.videoSettings.mpegtsVideoSource
54

55 56 57
    property string gpsDisabled: "Disabled"
    property string gpsUdpPort:  "UDP Port"

58
    readonly property real _internalWidthRatio: 0.8
59

60 61 62
        QGCFlickable {
            clip:               true
            anchors.fill:       parent
63 64
            contentHeight:      outerItem.height
            contentWidth:       outerItem.width
65

66 67
            Item {
                id:     outerItem
68
            width:  Math.max(_root.width, settingsColumn.width)
69
                height: settingsColumn.height
70

71 72 73
                ColumnLayout {
                    id:                         settingsColumn
                    anchors.horizontalCenter:   parent.horizontalCenter
74

75 76
                    QGCLabel {
                        id:         unitsSectionLabel
77
                        text:       qsTr("Units")
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
                        visible:    QGroundControl.settingsManager.unitsSettings.visible
                    }
                    Rectangle {
                        Layout.preferredHeight: unitsGrid.height + (_margins * 2)
                        Layout.preferredWidth:  unitsGrid.width + (_margins * 2)
                        color:                  qgcPal.windowShade
                        visible:                miscSectionLabel.visible
                        Layout.fillWidth:       true

                        GridLayout {
                            id:                         unitsGrid
                            anchors.topMargin:          _margins
                            anchors.top:                parent.top
                            Layout.fillWidth:           false
                            anchors.horizontalCenter:   parent.horizontalCenter
                            flow:                       GridLayout.TopToBottom
                            rows:                       4
95

96 97 98
                            Repeater {
                                model: [ qsTr("Distance"), qsTr("Area"), qsTr("Speed"), qsTr("Temperature") ]
                                QGCLabel { text: modelData }
99
                            }
100 101
                            Repeater {
                                model:  [ QGroundControl.settingsManager.unitsSettings.distanceUnits, QGroundControl.settingsManager.unitsSettings.areaUnits, QGroundControl.settingsManager.unitsSettings.speedUnits, QGroundControl.settingsManager.unitsSettings.temperatureUnits ]
102
                                FactComboBox {
103 104 105
                                    Layout.preferredWidth:  _comboFieldWidth
                                    fact:                   modelData
                                    indexModel:             false
106
                                }
107 108 109 110
                            }
                        }
                    }

111
                    Item { width: 1; height: _margins }
112

113
                    QGCLabel {
114 115 116
                        id:         miscSectionLabel
                        text:       qsTr("Miscellaneous")
                        visible:    QGroundControl.settingsManager.appSettings.visible
117
                    }
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
                    Rectangle {
                        Layout.preferredWidth:  Math.max(comboGrid.width, miscCol.width) + (_margins * 2)
                        Layout.preferredHeight: (pathRow.visible ? pathRow.y + pathRow.height : miscColItem.y + miscColItem.height)  + (_margins * 2)
                        Layout.fillWidth:       true
                        color:                  qgcPal.windowShade
                        visible:                miscSectionLabel.visible

                        Item {
                            id:                 comboGridItem
                            anchors.margins:    _margins
                            anchors.top:        parent.top
                            anchors.left:       parent.left
                            anchors.right:      parent.right
                            height:             comboGrid.height

                            GridLayout {
                                id:                         comboGrid
                                anchors.horizontalCenter:   parent.horizontalCenter
                                columns:                    2
137

138
                                QGCLabel {
139 140 141 142 143 144 145 146 147
                                    text:           qsTr("Language")
                                    visible: QGroundControl.settingsManager.appSettings.language.visible
                                }
                                FactComboBox {
                                    Layout.preferredWidth:  _comboFieldWidth
                                    fact:                   QGroundControl.settingsManager.appSettings.language
                                    indexModel:             false
                                    visible:                QGroundControl.settingsManager.appSettings.language.visible
                                }
148

149
                                QGCLabel {
150 151
                                    text:           qsTr("Color Scheme")
                                    visible: QGroundControl.settingsManager.appSettings.indoorPalette.visible
152
                                }
153 154 155 156 157
                                FactComboBox {
                                    Layout.preferredWidth:  _comboFieldWidth
                                    fact:                   QGroundControl.settingsManager.appSettings.indoorPalette
                                    indexModel:             false
                                    visible:                QGroundControl.settingsManager.appSettings.indoorPalette.visible
158
                                }
159 160 161 162

                                QGCLabel {
                                    text:       qsTr("Map Provider")
                                    width:      _labelWidth
163
                                    visible:    _mapProvider.visible
164
                                }
165 166 167 168
                                FactComboBox {
                                    Layout.preferredWidth:  _comboFieldWidth
                                    fact:                   _mapProvider
                                    indexModel:             false
169
                                    visible:                _mapProvider.visible
170 171 172 173
                                }

                                QGCLabel {
                                    text:       qsTr("Map Type")
Gus Grubba's avatar
Gus Grubba committed
174
                                    visible:    _mapType && _mapType.visible
175 176 177 178 179 180
                                }
                                FactComboBox {
                                    id:                     mapTypes
                                    Layout.preferredWidth:  _comboFieldWidth
                                    fact:                   _mapType
                                    indexModel:             false
Gus Grubba's avatar
Gus Grubba committed
181
                                    visible:                _mapType && _mapType.visible
182 183 184 185
                                    Connections {
                                        target: QGroundControl.settingsManager.flightMapSettings
                                        onMapTypeChanged: {
                                            mapTypes.model = _mapType.enumStrings
186 187
                                        }
                                    }
188 189
                                }

190 191
                                QGCLabel {
                                    text:       qsTr("Stream GCS Position")
192
                                    visible:    _followTarget.visible
193 194 195 196 197
                                }
                                FactComboBox {
                                    Layout.preferredWidth:  _comboFieldWidth
                                    fact:                   _followTarget
                                    indexModel:             false
198
                                    visible:                _followTarget.visible
199
                                }
200
                            }
Gus Grubba's avatar
Gus Grubba committed
201
                        }
202

203 204 205 206 207 208 209
                        Item {
                            id:                 miscColItem
                            anchors.margins:    _margins
                            anchors.left:       parent.left
                            anchors.right:      parent.right
                            anchors.top:        comboGridItem.bottom
                            height:             miscCol.height
210

211 212 213 214
                            ColumnLayout {
                                id:                         miscCol
                                anchors.horizontalCenter:   parent.horizontalCenter
                                spacing:                    _margins
215

216 217 218
                                RowLayout {
                                    Layout.fillWidth:   false
                                    Layout.alignment:   Qt.AlignHCenter
219
                                    visible:             _appFontPointSize.visible
220 221 222 223 224 225 226 227 228 229 230 231 232

                                    QGCLabel {
                                        text:   qsTr("Font Size:")
                                    }
                                    QGCButton {
                                        Layout.preferredWidth:  height
                                        Layout.preferredHeight: baseFontEdit.height
                                        text:                   "-"
                                        onClicked: {
                                            if (_appFontPointSize.value > _appFontPointSize.min) {
                                                _appFontPointSize.value = _appFontPointSize.value - 1
                                            }
                                        }
233
                                    }
234 235 236 237 238 239 240 241 242 243 244 245 246 247
                                    FactTextField {
                                        id:                     baseFontEdit
                                        Layout.preferredWidth:  _valueFieldWidth
                                        fact:                   QGroundControl.settingsManager.appSettings.appFontPointSize
                                    }
                                    QGCButton {
                                        Layout.preferredWidth:  height
                                        Layout.preferredHeight: baseFontEdit.height
                                        text:                   "+"
                                        onClicked: {
                                            if (_appFontPointSize.value < _appFontPointSize.max) {
                                                _appFontPointSize.value = _appFontPointSize.value + 1
                                            }
                                        }
248 249 250
                                    }
                                }

Gus Grubba's avatar
Gus Grubba committed
251 252 253
                                FactCheckBox {
                                    text:       qsTr("Use Vehicle Pairing")
                                    fact:       _usePairing
254
                                    visible:    _usePairing.visible && QGroundControl.supportsPairing
Gus Grubba's avatar
Gus Grubba committed
255 256 257
                                    property Fact _usePairing: QGroundControl.settingsManager.appSettings.usePairing
                                }

258 259 260
                                FactCheckBox {
                                    text:       qsTr("Mute all audio output")
                                    fact:       _audioMuted
261
                                    visible:    _audioMuted.visible
262
                                    property Fact _audioMuted: QGroundControl.settingsManager.appSettings.audioMuted
263
                                }
264

265 266 267
                                FactCheckBox {
                                    text:       qsTr("Check for Internet connection")
                                    fact:       _checkInternet
Gus Grubba's avatar
Gus Grubba committed
268
                                    visible:    _checkInternet && _checkInternet.visible
269 270 271
                                    property Fact _checkInternet: QGroundControl.settingsManager.appSettings.checkInternet
                                }

272 273 274
                                FactCheckBox {
                                    text:       qsTr("AutoLoad Missions")
                                    fact:       _autoLoad
Gus Grubba's avatar
Gus Grubba committed
275
                                    visible:    _autoLoad && _autoLoad.visible
276 277 278

                                    property Fact _autoLoad: QGroundControl.settingsManager.appSettings.autoLoadMissions
                                }
279 280

                                QGCCheckBox {
281 282 283
                                    id:         clearCheck
                                    text:       qsTr("Clear all settings on next start")
                                    checked:    false
284
                                    onClicked: {
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
                                        checked ? clearDialog.visible = true : QGroundControl.clearDeleteAllSettingsNextBoot()
                                    }
                                    MessageDialog {
                                        id:                 clearDialog
                                        visible:            false
                                        icon:               StandardIcon.Warning
                                        standardButtons:    StandardButton.Yes | StandardButton.No
                                        title:              qsTr("Clear Settings")
                                        text:               qsTr("All saved settings will be reset the next time you start %1. Is this really what you want?").arg(QGroundControl.appName)
                                        onYes: {
                                            QGroundControl.deleteAllSettingsNextBoot()
                                            clearDialog.visible = false
                                        }
                                        onNo: {
                                            clearCheck.checked  = false
                                            clearDialog.visible = false
301 302
                                        }
                                    }
303
                                }
304

305 306 307 308 309 310
                                RowLayout {
                                    visible: QGroundControl.settingsManager.appSettings.batteryPercentRemainingAnnounce.visible

                                    QGCCheckBox {
                                        id:         announcePercentCheckbox
                                        text:       qsTr("Announce battery lower than")
311
                                        checked:    _percentRemainingAnnounce.value !== 0
312 313 314 315 316 317 318 319 320 321 322 323 324
                                        onClicked: {
                                            if (checked) {
                                                _percentRemainingAnnounce.value = _percentRemainingAnnounce.defaultValueString
                                            } else {
                                                _percentRemainingAnnounce.value = 0
                                            }
                                        }
                                    }
                                    FactTextField {
                                        fact:                   _percentRemainingAnnounce
                                        Layout.preferredWidth:  _valueFieldWidth
                                        enabled:                announcePercentCheckbox.checked
                                    }
325
                                }
326 327 328
                            }
                        }

329 330
                        //-----------------------------------------------------------------
                        //-- Save path
Don Gagne's avatar
Don Gagne committed
331
                        RowLayout {
332 333 334 335 336
                            id:                 pathRow
                            anchors.margins:    _margins
                            anchors.left:       parent.left
                            anchors.right:      parent.right
                            anchors.top:        miscColItem.bottom
337
                            visible:            _savePath.visible && !ScreenTools.isMobile
338 339 340 341 342

                            QGCLabel { text: qsTr("Application Load/Save Path") }
                            QGCTextField {
                                Layout.fillWidth:   true
                                readOnly:           true
343
                                text:               _savePath.rawValue === "" ? qsTr("<not set>") : _savePath.value
344 345
                            }
                            QGCButton {
346
                                text:       qsTr("Browse")
347 348 349
                                onClicked:  savePathBrowseDialog.openForLoad()
                                QGCFileDialog {
                                    id:             savePathBrowseDialog
350
                                    title:          qsTr("Choose the location to save/load files")
351
                                    folder:         _savePath.rawValue
352
                                    selectExisting: true
353
                                    selectFolder:   true
354
                                    onAcceptedForLoad: _savePath.rawValue = file
355
                                }
356 357
                            }
                        }
Don Gagne's avatar
Don Gagne committed
358
                    }
359

360 361 362
                    Item { width: 1; height: _margins }
                    QGCLabel {
                        id:         loggingSectionLabel
363
                        text:       qsTr("Data Persistence")
364
                    }
365
                    Rectangle {
366 367
                        Layout.preferredHeight: dataPersistCol.height + (_margins * 2)
                        Layout.preferredWidth:  dataPersistCol.width + (_margins * 2)
368 369 370
                        color:                  qgcPal.windowShade
                        Layout.fillWidth:       true
                        ColumnLayout {
371
                            id:                         dataPersistCol
372 373 374
                            anchors.margins:            _margins
                            anchors.top:                parent.top
                            anchors.horizontalCenter:   parent.horizontalCenter
375
                            spacing:                    _margins * 1.5
376
                            FactCheckBox {
377 378 379
                                id:         disableDataPersistence
                                text:       qsTr("Disable all data persistence")
                                fact:       _disableDataPersistence
380
                                visible:    _disableDataPersistence.visible
381
                                property Fact _disableDataPersistence: QGroundControl.settingsManager.appSettings.disableAllPersistence
382
                            }
383 384 385 386 387 388
                            QGCLabel {
                                text:       qsTr("When Data Persistence is disabled, all telemetry logging and map tile caching is disabled and not written to disk.")
                                wrapMode:   Text.WordWrap
                                font.pointSize:       ScreenTools.smallFontPointSize
                                Layout.maximumWidth:  logIfNotArmed.visible ? logIfNotArmed.width : disableDataPersistence.width * 1.5
                            }
389 390
                        }
                    }
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406

                    Item { width: 1; height: _margins }
                    QGCLabel {
                        text:       qsTr("Telemetry Logs from Vehicle")
                    }
                    Rectangle {
                        Layout.preferredHeight: loggingCol.height + (_margins * 2)
                        Layout.preferredWidth:  loggingCol.width + (_margins * 2)
                        color:                  qgcPal.windowShade
                        Layout.fillWidth:       true
                        ColumnLayout {
                            id:                         loggingCol
                            anchors.margins:            _margins
                            anchors.top:                parent.top
                            anchors.horizontalCenter:   parent.horizontalCenter
                            spacing:                    _margins
407 408
                            FactCheckBox {
                                id:         promptSaveLog
Gus Grubba's avatar
Gus Grubba committed
409
                                text:       qsTr("Save log after each flight")
410
                                fact:       _telemetrySave
411
                                visible:    _telemetrySave.visible
412
                                enabled:    !disableDataPersistence.checked
413 414 415 416
                                property Fact _telemetrySave: QGroundControl.settingsManager.appSettings.telemetrySave
                            }
                            FactCheckBox {
                                id:         logIfNotArmed
Gus Grubba's avatar
Gus Grubba committed
417
                                text:       qsTr("Save logs even if vehicle was not armed")
418
                                fact:       _telemetrySaveNotArmed
419
                                visible:    _telemetrySaveNotArmed.visible
420
                                enabled:    promptSaveLog.checked && !disableDataPersistence.checked
421 422
                                property Fact _telemetrySaveNotArmed: QGroundControl.settingsManager.appSettings.telemetrySaveNotArmed
                            }
423 424 425 426 427 428 429 430
                            FactCheckBox {
                                id:         promptSaveCsv
                                text:       qsTr("Save CSV log of telemetry data")
                                fact:       _saveCsvTelemetry
                                visible:    _saveCsvTelemetry.visible
                                enabled:    !disableDataPersistence.checked
                                property Fact _saveCsvTelemetry: QGroundControl.settingsManager.appSettings.saveCsvTelemetry
                            }
431
                        }
432
                    }
433 434

                    Item { width: 1; height: _margins }
435 436 437 438 439 440 441 442 443 444 445
                    QGCLabel {
                        id:         flyViewSectionLabel
                        text:       qsTr("Fly View")
                        visible:    QGroundControl.settingsManager.flyViewSettings.visible
                    }
                    Rectangle {
                        Layout.preferredHeight: flyViewCol.height + (_margins * 2)
                        Layout.preferredWidth:  flyViewCol.width + (_margins * 2)
                        color:                  qgcPal.windowShade
                        visible:                flyViewSectionLabel.visible
                        Layout.fillWidth:       true
446

447 448 449 450 451 452
                        ColumnLayout {
                            id:                         flyViewCol
                            anchors.margins:            _margins
                            anchors.top:                parent.top
                            anchors.horizontalCenter:   parent.horizontalCenter
                            spacing:                    _margins
453

454
                            FactCheckBox {
455
                                text:       qsTr("Use Preflight Checklist")
456
                                fact:       _useChecklist
457
                                visible:    _useChecklist.visible && QGroundControl.corePlugin.options.preFlightChecklistUrl.toString().length
458

459
                                property Fact _useChecklist: QGroundControl.settingsManager.appSettings.useChecklist
460
                            }
Don Gagne's avatar
Don Gagne committed
461

462 463 464
                            FactCheckBox {
                                text:       qsTr("Show Telemetry Log Replay Status Bar")
                                fact:       _showLogReplayStatusBar
465
                                visible:    _showLogReplayStatusBar.visible
466 467 468 469

                                property Fact _showLogReplayStatusBar: QGroundControl.settingsManager.flyViewSettings.showLogReplayStatusBar
                            }

470 471
                            FactCheckBox {
                                text:       qsTr("Virtual Joystick")
472
                                visible:    _virtualJoystick.visible
473 474 475
                                fact:       _virtualJoystick

                                property Fact _virtualJoystick: QGroundControl.settingsManager.appSettings.virtualJoystick
476 477
                            }

478 479
                            FactCheckBox {
                                text:       qsTr("Auto-Center throttle")
480
                                visible:    _virtualJoystickCentralized.visible && activeVehicle && (activeVehicle.sub || activeVehicle.rover)
481 482
                                fact:       _virtualJoystickCentralized
                                Layout.leftMargin: _margins
483

484 485
                                property Fact _virtualJoystickCentralized: QGroundControl.settingsManager.appSettings.virtualJoystickCentralized
                            }
486
                            FactCheckBox {
487
                                text:       qsTr("Use Vertical Instrument Panel")
488
                                visible:    _alternateInstrumentPanel.visible
489 490 491 492
                                fact:       _alternateInstrumentPanel

                                property Fact _alternateInstrumentPanel: QGroundControl.settingsManager.flyViewSettings.alternateInstrumentPanel
                            }
493
                            FactCheckBox {
494
                                text:       qsTr("Show additional heading indicators on Compass")
495
                                visible:    _showAdditionalIndicatorsCompass.visible
496
                                fact:       _showAdditionalIndicatorsCompass
497

498
                                property Fact _showAdditionalIndicatorsCompass: QGroundControl.settingsManager.flyViewSettings.showAdditionalIndicatorsCompass
499 500
                            }
                            FactCheckBox {
501
                                text:       qsTr("Lock Compass Nose-Up")
502
                                visible:    _lockNoseUpCompass.visible
503
                                fact:       _lockNoseUpCompass
504

505
                                property Fact _lockNoseUpCompass: QGroundControl.settingsManager.flyViewSettings.lockNoseUpCompass
506
                            }
507

508

509 510 511
                            GridLayout {
                                columns: 2

512 513 514 515 516
                                property Fact _guidedMinimumAltitude:   QGroundControl.settingsManager.flyViewSettings.guidedMinimumAltitude
                                property Fact _guidedMaximumAltitude:   QGroundControl.settingsManager.flyViewSettings.guidedMaximumAltitude
                                property Fact _maxGoToLocationDistance: QGroundControl.settingsManager.flyViewSettings.maxGoToLocationDistance

                                QGCLabel {
Gus Grubba's avatar
Gus Grubba committed
517
                                    text:                   qsTr("Guided Minimum Altitude")
518
                                    visible:                parent._guidedMinimumAltitude.visible
519
                                }
520 521
                                FactTextField {
                                    Layout.preferredWidth:  _valueFieldWidth
522
                                    visible:                parent._guidedMinimumAltitude.visible
523
                                    fact:                   parent._guidedMinimumAltitude
524 525
                                }

526
                                QGCLabel {
Gus Grubba's avatar
Gus Grubba committed
527
                                    text:                   qsTr("Guided Maximum Altitude")
528
                                    visible:                parent._guidedMaximumAltitude.visible
529
                                }
530 531
                                FactTextField {
                                    Layout.preferredWidth:  _valueFieldWidth
532
                                    visible:                parent._guidedMaximumAltitude.visible
533 534 535 536
                                    fact:                   parent._guidedMaximumAltitude
                                }

                                QGCLabel {
Gus Grubba's avatar
Gus Grubba committed
537
                                    text:                   qsTr("Go To Location Max Distance")
538
                                    visible:                parent._maxGoToLocationDistance.visible
539
                                }
540 541
                                FactTextField {
                                    Layout.preferredWidth:  _valueFieldWidth
542
                                    visible:                parent._maxGoToLocationDistance.visible
543
                                    fact:                   parent._maxGoToLocationDistance
544
                                }
545
                            }
546 547
                        }
                    }
548

549
                    Item { width: 1; height: _margins }
550

551 552 553 554 555 556 557 558 559 560 561
                    QGCLabel {
                        id:         planViewSectionLabel
                        text:       qsTr("Plan View")
                        visible:    QGroundControl.settingsManager.planViewSettings.visible
                    }
                    Rectangle {
                        Layout.preferredHeight: planViewCol.height + (_margins * 2)
                        Layout.preferredWidth:  planViewCol.width + (_margins * 2)
                        color:                  qgcPal.windowShade
                        visible:                planViewSectionLabel.visible
                        Layout.fillWidth:       true
562

563 564 565 566 567 568
                        ColumnLayout {
                            id:                         planViewCol
                            anchors.margins:            _margins
                            anchors.top:                parent.top
                            anchors.horizontalCenter:   parent.horizontalCenter
                            spacing:                    _margins
569

570 571 572 573 574 575 576 577
                            RowLayout {
                                spacing:    ScreenTools.defaultFontPixelWidth
                                visible:    QGroundControl.settingsManager.appSettings.defaultMissionItemAltitude.visible

                                QGCLabel { text: qsTr("Default Mission Altitude") }
                                FactTextField {
                                    Layout.preferredWidth:  _valueFieldWidth
                                    fact:                   QGroundControl.settingsManager.appSettings.defaultMissionItemAltitude
578
                                }
579
                            }
580
                        }
581
                    }
582

583
                    Item { width: 1; height: _margins }
584

585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
                    QGCLabel {
                        id:         autoConnectSectionLabel
                        text:       qsTr("AutoConnect to the following devices")
                        visible:    QGroundControl.settingsManager.autoConnectSettings.visible
                    }
                    Rectangle {
                        Layout.preferredWidth:  autoConnectCol.width + (_margins * 2)
                        Layout.preferredHeight: autoConnectCol.height + (_margins * 2)
                        color:                  qgcPal.windowShade
                        visible:                autoConnectSectionLabel.visible
                        Layout.fillWidth:       true

                        ColumnLayout {
                            id:                 autoConnectCol
                            anchors.margins:    _margins
                            anchors.left:       parent.left
                            anchors.top:        parent.top
                            spacing:            _margins

                            RowLayout {
                                spacing: _margins

                                Repeater {
                                    id:     autoConnectRepeater
                                    model:  [ QGroundControl.settingsManager.autoConnectSettings.autoConnectPixhawk,
                                        QGroundControl.settingsManager.autoConnectSettings.autoConnectSiKRadio,
                                        QGroundControl.settingsManager.autoConnectSettings.autoConnectPX4Flow,
                                        QGroundControl.settingsManager.autoConnectSettings.autoConnectLibrePilot,
                                        QGroundControl.settingsManager.autoConnectSettings.autoConnectUDP,
                                        QGroundControl.settingsManager.autoConnectSettings.autoConnectRTKGPS
                                    ]

                                    property var names: [ qsTr("Pixhawk"), qsTr("SiK Radio"), qsTr("PX4 Flow"), qsTr("LibrePilot"), qsTr("UDP"), qsTr("RTK GPS") ]

                                    FactCheckBox {
                                        text:       autoConnectRepeater.names[index]
                                        fact:       modelData
                                        visible:    modelData.visible
                                    }
                                }
625
                            }
626

627 628 629 630 631 632 633 634 635 636
                            GridLayout {
                                Layout.fillWidth:   false
                                Layout.alignment:   Qt.AlignHCenter
                                columns:            2
                                visible:            !ScreenTools.isMobile
                                                    && QGroundControl.settingsManager.autoConnectSettings.autoConnectNmeaPort.visible
                                                    && QGroundControl.settingsManager.autoConnectSettings.autoConnectNmeaBaud.visible

                                QGCLabel {
                                    text: qsTr("NMEA GPS Device")
637
                                }
638 639 640
                                QGCComboBox {
                                    id:                     nmeaPortCombo
                                    Layout.preferredWidth:  _comboFieldWidth
641

642 643 644 645 646 647 648 649 650
                                    model:  ListModel {
                                    }

                                    onActivated: {
                                        if (index != -1) {
                                            QGroundControl.settingsManager.autoConnectSettings.autoConnectNmeaPort.value = textAt(index);
                                        }
                                    }
                                    Component.onCompleted: {
651 652 653
                                        model.append({text: gpsDisabled})
                                        model.append({text: gpsUdpPort})

654 655 656 657 658
                                        for (var i in QGroundControl.linkManager.serialPorts) {
                                            nmeaPortCombo.model.append({text:QGroundControl.linkManager.serialPorts[i]})
                                        }
                                        var index = nmeaPortCombo.find(QGroundControl.settingsManager.autoConnectSettings.autoConnectNmeaPort.valueString);
                                        nmeaPortCombo.currentIndex = index;
659 660 661
                                        if (QGroundControl.linkManager.serialPorts.length === 0) {
                                            nmeaPortCombo.model.append({text: "Serial <none available>"})
                                        }
662 663 664
                                    }
                                }

665
                                QGCLabel {
666
                                    visible:          nmeaPortCombo.currentText !== gpsUdpPort && nmeaPortCombo.currentText !== gpsDisabled
667 668 669
                                    text:             qsTr("NMEA GPS Baudrate")
                                }
                                QGCComboBox {
670
                                    visible:                nmeaPortCombo.currentText !== gpsUdpPort && nmeaPortCombo.currentText !== gpsDisabled
671 672 673 674 675 676 677 678
                                    id:                     nmeaBaudCombo
                                    Layout.preferredWidth:  _comboFieldWidth
                                    model:                  [4800, 9600, 19200, 38400, 57600, 115200]

                                    onActivated: {
                                        if (index != -1) {
                                            QGroundControl.settingsManager.autoConnectSettings.autoConnectNmeaBaud.value = textAt(index);
                                        }
679
                                    }
680 681 682
                                    Component.onCompleted: {
                                        var index = nmeaBaudCombo.find(QGroundControl.settingsManager.autoConnectSettings.autoConnectNmeaBaud.valueString);
                                        nmeaBaudCombo.currentIndex = index;
683 684
                                    }
                                }
685 686 687 688 689 690 691 692 693 694

                                QGCLabel {
                                    text:       qsTr("NMEA stream UDP port")
                                    visible:    nmeaPortCombo.currentText === gpsUdpPort
                                }
                                FactTextField {
                                    visible:                nmeaPortCombo.currentText === gpsUdpPort
                                    Layout.preferredWidth:  _valueFieldWidth
                                    fact:                   QGroundControl.settingsManager.autoConnectSettings.nmeaUdpPort
                                }
695
                            }
696 697
                        }
                    }
698

699 700
                    Item { width: 1; height: _margins }

Don Gagne's avatar
Don Gagne committed
701
                    QGCLabel {
702
                        id:         rtkSectionLabel
703
                        text:       qsTr("RTK GPS")
704
                        visible:    QGroundControl.settingsManager.rtkSettings.visible
Don Gagne's avatar
Don Gagne committed
705
                    }
706 707 708 709 710 711 712 713 714 715 716
                    Rectangle {
                        Layout.preferredHeight: rtkGrid.height + (_margins * 2)
                        Layout.preferredWidth:  rtkGrid.width + (_margins * 2)
                        color:                  qgcPal.windowShade
                        visible:                rtkSectionLabel.visible
                        Layout.fillWidth:       true

                        GridLayout {
                            id:                         rtkGrid
                            anchors.topMargin:          _margins
                            anchors.top:                parent.top
717
                            Layout.fillWidth:           true
718
                            anchors.horizontalCenter:   parent.horizontalCenter
719
                            columns:                    3
720

Gus Grubba's avatar
Gus Grubba committed
721
                            property var  rtkSettings:      QGroundControl.settingsManager.rtkSettings
722
                            property bool useFixedPosition: rtkSettings.useFixedBasePosition.rawValue
723
                            property real firstColWidth:    ScreenTools.defaultFontPixelWidth * 3
724

725 726
                            QGCRadioButton {
                                text:               qsTr("Perform Survey-In")
727 728
                                visible:            rtkGrid.rtkSettings.useFixedBasePosition.visible
                                checked:            rtkGrid.rtkSettings.useFixedBasePosition.value === false
729
                                Layout.columnSpan:  3
730
                                onClicked:          rtkGrid.rtkSettings.useFixedBasePosition.value = false
731
                            }
732

733
                            Item { width: rtkGrid.firstColWidth; height: 1 }
734
                            QGCLabel {
735 736
                                text:               rtkGrid.rtkSettings.surveyInAccuracyLimit.shortDescription
                                visible:            rtkGrid.rtkSettings.surveyInAccuracyLimit.visible
Gus Grubba's avatar
Gus Grubba committed
737
                                enabled:            !rtkGrid.useFixedPosition
738
                            }
739
                            FactTextField {
740 741
                                fact:               rtkGrid.rtkSettings.surveyInAccuracyLimit
                                visible:            rtkGrid.rtkSettings.surveyInAccuracyLimit.visible
Gus Grubba's avatar
Gus Grubba committed
742
                                enabled:            !rtkGrid.useFixedPosition
743
                                Layout.preferredWidth:  _valueFieldWidth
744
                            }
745

746
                            Item { width: rtkGrid.firstColWidth; height: 1 }
747
                            QGCLabel {
748 749
                                text:               rtkGrid.rtkSettings.surveyInMinObservationDuration.shortDescription
                                visible:            rtkGrid.rtkSettings.surveyInMinObservationDuration.visible
Gus Grubba's avatar
Gus Grubba committed
750
                                enabled:            !rtkGrid.useFixedPosition
751
                            }
752
                            FactTextField {
753 754
                                fact:               rtkGrid.rtkSettings.surveyInMinObservationDuration
                                visible:            rtkGrid.rtkSettings.surveyInMinObservationDuration.visible
Gus Grubba's avatar
Gus Grubba committed
755
                                enabled:            !rtkGrid.useFixedPosition
756
                                Layout.preferredWidth:  _valueFieldWidth
757
                            }
758

759 760
                            QGCRadioButton {
                                text:               qsTr("Use Specified Base Position")
761 762 763
                                visible:            rtkGrid.rtkSettings.useFixedBasePosition.visible
                                checked:            rtkGrid.rtkSettings.useFixedBasePosition.value === true
                                onClicked:          rtkGrid.rtkSettings.useFixedBasePosition.value = true
764
                                Layout.columnSpan:  3
765
                            }
766

767
                            Item { width: rtkGrid.firstColWidth; height: 1 }
768
                            QGCLabel {
769 770
                                text:               rtkGrid.rtkSettings.fixedBasePositionLatitude.shortDescription
                                visible:            rtkGrid.rtkSettings.fixedBasePositionLatitude.visible
Gus Grubba's avatar
Gus Grubba committed
771
                                enabled:            rtkGrid.useFixedPosition
772 773
                            }
                            FactTextField {
774 775
                                fact:               rtkGrid.rtkSettings.fixedBasePositionLatitude
                                visible:            rtkGrid.rtkSettings.fixedBasePositionLatitude.visible
776 777 778
                                enabled:            rtkGrid.useFixedPosition
                                Layout.fillWidth:   true
                            }
779

780
                            Item { width: rtkGrid.firstColWidth; height: 1 }
781
                            QGCLabel {
782 783
                                text:               rtkGrid.rtkSettings.fixedBasePositionLongitude.shortDescription
                                visible:            rtkGrid.rtkSettings.fixedBasePositionLongitude.visible
Gus Grubba's avatar
Gus Grubba committed
784
                                enabled:            rtkGrid.useFixedPosition
785 786
                            }
                            FactTextField {
787 788
                                fact:               rtkGrid.rtkSettings.fixedBasePositionLongitude
                                visible:            rtkGrid.rtkSettings.fixedBasePositionLongitude.visible
789 790 791
                                enabled:            rtkGrid.useFixedPosition
                                Layout.fillWidth:   true
                            }
792

793
                            Item { width: rtkGrid.firstColWidth; height: 1 }
794
                            QGCLabel {
795 796
                                text:           rtkGrid.rtkSettings.fixedBasePositionAltitude.shortDescription
                                visible:        rtkGrid.rtkSettings.fixedBasePositionAltitude.visible
797
                                enabled:        rtkGrid.useFixedPosition
798 799
                            }
                            FactTextField {
800 801
                                fact:               rtkGrid.rtkSettings.fixedBasePositionAltitude
                                visible:            rtkGrid.rtkSettings.fixedBasePositionAltitude.visible
802 803 804
                                enabled:            rtkGrid.useFixedPosition
                                Layout.fillWidth:   true
                            }
805

806
                            Item { width: rtkGrid.firstColWidth; height: 1 }
807
                            QGCLabel {
808 809
                                text:           rtkGrid.rtkSettings.fixedBasePositionAccuracy.shortDescription
                                visible:        rtkGrid.rtkSettings.fixedBasePositionAccuracy.visible
810
                                enabled:        rtkGrid.useFixedPosition
811 812
                            }
                            FactTextField {
813 814
                                fact:               rtkGrid.rtkSettings.fixedBasePositionAccuracy
                                visible:            rtkGrid.rtkSettings.fixedBasePositionAccuracy.visible
815 816 817
                                enabled:            rtkGrid.useFixedPosition
                                Layout.fillWidth:   true
                            }
818

819
                            Item { width: rtkGrid.firstColWidth; height: 1 }
820 821
                            QGCButton {
                                text:               qsTr("Save Current Base Position")
822
                                enabled:            QGroundControl.gpsRtk && QGroundControl.gpsRtk.valid.value
823
                                Layout.columnSpan:  2
824 825 826 827 828 829
                                onClicked: {
                                    rtkGrid.rtkSettings.fixedBasePositionLatitude.rawValue =    QGroundControl.gpsRtk.currentLatitude.rawValue
                                    rtkGrid.rtkSettings.fixedBasePositionLongitude.rawValue =   QGroundControl.gpsRtk.currentLongitude.rawValue
                                    rtkGrid.rtkSettings.fixedBasePositionAltitude.rawValue =    QGroundControl.gpsRtk.currentAltitude.rawValue
                                    rtkGrid.rtkSettings.fixedBasePositionAccuracy.rawValue =    QGroundControl.gpsRtk.currentAccuracy.rawValue
                                }
830
                            }
831
                        }
832
                    }
833 834

                    Item { width: 1; height: _margins }
835

836
                    QGCLabel {
837 838
                        id:         videoSectionLabel
                        text:       qsTr("Video")
839
                        visible:    QGroundControl.settingsManager.videoSettings.visible && !QGroundControl.videoManager.autoStreamConfigured
840
                    }
841 842 843 844 845 846 847 848 849 850 851 852 853 854 855
                    Rectangle {
                        Layout.preferredWidth:  videoGrid.width + (_margins * 2)
                        Layout.preferredHeight: videoGrid.height + (_margins * 2)
                        Layout.fillWidth:       true
                        color:                  qgcPal.windowShade
                        visible:                videoSectionLabel.visible

                        GridLayout {
                            id:                         videoGrid
                            anchors.margins:            _margins
                            anchors.top:                parent.top
                            anchors.horizontalCenter:   parent.horizontalCenter
                            Layout.fillWidth:           false
                            Layout.fillHeight:          false
                            columns:                    2
856
                            QGCLabel {
857 858
                                text:                   qsTr("Video Source")
                                visible:                QGroundControl.settingsManager.videoSettings.videoSource.visible
859
                            }
860
                            FactComboBox {
861 862 863 864 865
                                id:                     videoSource
                                Layout.preferredWidth:  _comboFieldWidth
                                indexModel:             false
                                fact:                   QGroundControl.settingsManager.videoSettings.videoSource
                                visible:                QGroundControl.settingsManager.videoSettings.videoSource.visible
866
                            }
867

868
                            QGCLabel {
869
                                text:                   qsTr("UDP Port")
870
                                visible:                (_isUDP264 || _isUDP265 || _isMPEGTS)  && QGroundControl.settingsManager.videoSettings.udpPort.visible
871
                            }
872
                            FactTextField {
873 874
                                Layout.preferredWidth:  _comboFieldWidth
                                fact:                   QGroundControl.settingsManager.videoSettings.udpPort
875
                                visible:                (_isUDP264 || _isUDP265 || _isMPEGTS) && QGroundControl.settingsManager.videoSettings.udpPort.visible
876
                            }
877

878
                            QGCLabel {
879 880
                                text:                   qsTr("RTSP URL")
                                visible:                _isRTSP && QGroundControl.settingsManager.videoSettings.rtspUrl.visible
881
                            }
882
                            FactTextField {
883 884
                                Layout.preferredWidth:  _comboFieldWidth
                                fact:                   QGroundControl.settingsManager.videoSettings.rtspUrl
885
                                visible:                _isRTSP && QGroundControl.settingsManager.videoSettings.rtspUrl.visible
886
                            }
887

888
                            QGCLabel {
889 890
                                text:                   qsTr("TCP URL")
                                visible:                _isTCP && QGroundControl.settingsManager.videoSettings.tcpUrl.visible
891 892
                            }
                            FactTextField {
893 894
                                Layout.preferredWidth:  _comboFieldWidth
                                fact:                   QGroundControl.settingsManager.videoSettings.tcpUrl
895
                                visible:                _isTCP && QGroundControl.settingsManager.videoSettings.tcpUrl.visible
896
                            }
897
                            QGCLabel {
898
                                text:                   qsTr("Aspect Ratio")
899
                                visible:                _isGst && QGroundControl.settingsManager.videoSettings.aspectRatio.visible
900 901
                            }
                            FactTextField {
902 903
                                Layout.preferredWidth:  _comboFieldWidth
                                fact:                   QGroundControl.settingsManager.videoSettings.aspectRatio
904
                                visible:                _isGst && QGroundControl.settingsManager.videoSettings.aspectRatio.visible
905
                            }
906

907
                            QGCLabel {
908 909
                                text:                   qsTr("Disable When Disarmed")
                                visible:                _isGst && QGroundControl.settingsManager.videoSettings.disableWhenDisarmed.visible
910
                            }
911
                            FactCheckBox {
912 913 914
                                text:                   ""
                                fact:                   QGroundControl.settingsManager.videoSettings.disableWhenDisarmed
                                visible:                _isGst && QGroundControl.settingsManager.videoSettings.disableWhenDisarmed.visible
915
                            }
916 917
                        }
                    }
918

919
                    Item { width: 1; height: _margins }
920

921
                    QGCLabel {
922 923
                        id:                             videoRecSectionLabel
                        text:                           qsTr("Video Recording")
924
                        visible:                        (QGroundControl.settingsManager.videoSettings.visible && _isGst) || QGroundControl.videoManager.autoStreamConfigured
925
                    }
926
                    Rectangle {
927
                        Layout.preferredWidth:          videoRecCol.width  + (_margins * 2)
928 929 930 931
                        Layout.preferredHeight:         videoRecCol.height + (_margins * 2)
                        Layout.fillWidth:               true
                        color:                          qgcPal.windowShade
                        visible:                        videoRecSectionLabel.visible
932 933 934 935 936 937 938 939

                        GridLayout {
                            id:                         videoRecCol
                            anchors.margins:            _margins
                            anchors.top:                parent.top
                            anchors.horizontalCenter:   parent.horizontalCenter
                            Layout.fillWidth:           false
                            columns:                    2
940

941
                            QGCLabel {
942 943
                                text:                   qsTr("Auto-Delete Files")
                                visible:                QGroundControl.settingsManager.videoSettings.enableStorageLimit.visible
944 945
                            }
                            FactCheckBox {
946 947 948
                                text:                   ""
                                fact:                   QGroundControl.settingsManager.videoSettings.enableStorageLimit
                                visible:                QGroundControl.settingsManager.videoSettings.enableStorageLimit.visible
949
                            }
950

951
                            QGCLabel {
952 953
                                text:                   qsTr("Max Storage Usage")
                                visible:                QGroundControl.settingsManager.videoSettings.maxVideoSize.visible && QGroundControl.settingsManager.videoSettings.enableStorageLimit.value
954 955
                            }
                            FactTextField {
956 957 958
                                Layout.preferredWidth:  _comboFieldWidth
                                fact:                   QGroundControl.settingsManager.videoSettings.maxVideoSize
                                visible:                QGroundControl.settingsManager.videoSettings.maxVideoSize.visible && QGroundControl.settingsManager.videoSettings.enableStorageLimit.value
959
                            }
960

961
                            QGCLabel {
962 963
                                text:                   qsTr("Video File Format")
                                visible:                QGroundControl.settingsManager.videoSettings.recordingFormat.visible
964 965
                            }
                            FactComboBox {
966 967 968
                                Layout.preferredWidth:  _comboFieldWidth
                                fact:                   QGroundControl.settingsManager.videoSettings.recordingFormat
                                visible:                QGroundControl.settingsManager.videoSettings.recordingFormat.visible
969
                            }
970 971 972
                        }
                    }

973 974
                    Item { width: 1; height: _margins; visible: videoRecSectionLabel.visible }

975
                    QGCLabel {
976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993
                        id:         brandImageSectionLabel
                        text:       qsTr("Brand Image")
                        visible:    QGroundControl.settingsManager.brandImageSettings.visible && !ScreenTools.isMobile
                    }
                    Rectangle {
                        Layout.preferredWidth:  brandImageGrid.width + (_margins * 2)
                        Layout.preferredHeight: brandImageGrid.height + (_margins * 2)
                        Layout.fillWidth:       true
                        color:                  qgcPal.windowShade
                        visible:                brandImageSectionLabel.visible

                        GridLayout {
                            id:                 brandImageGrid
                            anchors.margins:    _margins
                            anchors.top:        parent.top
                            anchors.left:       parent.left
                            anchors.right:      parent.right
                            columns:            3
994 995

                            QGCLabel {
Gus Grubba's avatar
Gus Grubba committed
996
                                text:           qsTr("Indoor Image")
997
                                visible:        _userBrandImageIndoor.visible
998 999 1000
                            }
                            QGCTextField {
                                readOnly:           true
1001
                                Layout.fillWidth:   true
1002
                                text:               _userBrandImageIndoor.valueString.replace("file:///","")
1003 1004
                            }
                            QGCButton {
1005
                                text:       qsTr("Browse")
1006 1007
                                onClicked:  userBrandImageIndoorBrowseDialog.openForLoad()
                                QGCFileDialog {
1008 1009 1010 1011 1012 1013
                                    id:                 userBrandImageIndoorBrowseDialog
                                    title:              qsTr("Choose custom brand image file")
                                    folder:             _userBrandImageIndoor.rawValue.replace("file:///","")
                                    selectExisting:     true
                                    selectFolder:       false
                                    onAcceptedForLoad:  _userBrandImageIndoor.rawValue = "file:///" + file
1014
                                }
1015 1016
                            }

1017
                            QGCLabel {
1018
                                text:       qsTr("Outdoor Image")
1019
                                visible:    _userBrandImageOutdoor.visible
1020
                            }
1021 1022
                            QGCTextField {
                                readOnly:           true
1023
                                Layout.fillWidth:   true
1024
                                text:                _userBrandImageOutdoor.valueString.replace("file:///","")
1025 1026
                            }
                            QGCButton {
1027
                                text:       qsTr("Browse")
1028 1029
                                onClicked:  userBrandImageOutdoorBrowseDialog.openForLoad()
                                QGCFileDialog {
1030 1031 1032 1033 1034 1035
                                    id:                 userBrandImageOutdoorBrowseDialog
                                    title:              qsTr("Choose custom brand image file")
                                    folder:             _userBrandImageOutdoor.rawValue.replace("file:///","")
                                    selectExisting:     true
                                    selectFolder:       false
                                    onAcceptedForLoad:  _userBrandImageOutdoor.rawValue = "file:///" + file
1036 1037 1038
                                }
                            }
                            QGCButton {
1039 1040 1041
                                text:               qsTr("Reset Default Brand Image")
                                Layout.columnSpan:  3
                                Layout.alignment:   Qt.AlignHCenter
1042 1043 1044 1045
                                onClicked:  {
                                    _userBrandImageIndoor.rawValue = ""
                                    _userBrandImageOutdoor.rawValue = ""
                                }
1046 1047
                            }
                        }
1048
                    }
1049

1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
                    Item { width: 1; height: _margins }

                    QGCLabel {
                        text:               qsTr("%1 Version").arg(QGroundControl.appName)
                        Layout.alignment:   Qt.AlignHCenter
                    }
                    QGCLabel {
                        text:               QGroundControl.qgcVersion
                        Layout.alignment:   Qt.AlignHCenter
                    }
                } // settingsColumn
            }
1062 1063
    }
}