GeneralSettings.qml 31.4 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 16
import QtMultimedia             5.5
import QtQuick.Layouts          1.2
dogmaphobic's avatar
dogmaphobic committed
17 18 19

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

28
QGCView {
29
    id:                 _qgcView
30
    viewPanel:          panel
31
    color:              qgcPal.window
32 33
    anchors.fill:       parent
    anchors.margins:    ScreenTools.defaultFontPixelWidth
dogmaphobic's avatar
dogmaphobic committed
34

35
    property Fact _percentRemainingAnnounce:    QGroundControl.settingsManager.appSettings.batteryPercentRemainingAnnounce
36
    property Fact _savePath:                    QGroundControl.settingsManager.appSettings.savePath
37
    property Fact _appFontPointSize:            QGroundControl.settingsManager.appSettings.appFontPointSize
38 39
    property real _labelWidth:                  ScreenTools.defaultFontPixelWidth * 15
    property real _editFieldWidth:              ScreenTools.defaultFontPixelWidth * 30
40
    property Fact _videoPath:                   QGroundControl.settingsManager.videoSettings.videoSavePath
41 42
    property Fact _mapProvider:                 QGroundControl.settingsManager.flightMapSettings.mapProvider
    property Fact _mapType:                     QGroundControl.settingsManager.flightMapSettings.mapType
43 44

    readonly property string _requiresRestart:  qsTr("(Requires Restart)")
45

46
    QGCPalette { id: qgcPal }
dogmaphobic's avatar
dogmaphobic committed
47

48 49 50 51 52 53 54 55 56 57
    QGCViewPanel {
        id:             panel
        anchors.fill:   parent
        QGCFlickable {
            clip:               true
            anchors.fill:       parent
            contentHeight:      settingsColumn.height
            contentWidth:       settingsColumn.width
            Column {
                id:                 settingsColumn
58
                width:              _qgcView.width
59
                spacing:            ScreenTools.defaultFontPixelHeight * 0.5
60
                anchors.margins:    ScreenTools.defaultFontPixelWidth
61

62
                //-----------------------------------------------------------------
63 64
                //-- Units
                Item {
65
                    width:                      _qgcView.width * 0.8
66 67 68 69
                    height:                     unitLabel.height
                    anchors.margins:            ScreenTools.defaultFontPixelWidth
                    anchors.horizontalCenter:   parent.horizontalCenter
                    visible:                    QGroundControl.settingsManager.unitsSettings.visible
70
                    QGCLabel {
71 72 73
                        id:             unitLabel
                        text:           qsTr("Units (Requires Restart)")
                        font.family:    ScreenTools.demiboldFontFamily
74
                    }
75 76
                }
                Rectangle {
77
                    height:                     unitsCol.height + (ScreenTools.defaultFontPixelHeight * 2)
78
                    width:                      _qgcView.width * 0.8
79 80 81 82
                    color:                      qgcPal.windowShade
                    anchors.margins:            ScreenTools.defaultFontPixelWidth
                    anchors.horizontalCenter:   parent.horizontalCenter
                    visible:                    QGroundControl.settingsManager.unitsSettings.visible
83 84 85 86
                    Column {
                        id:         unitsCol
                        spacing:    ScreenTools.defaultFontPixelWidth
                        anchors.centerIn: parent
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108

                        Repeater {
                            id:     unitsRepeater
                            model:  [ QGroundControl.settingsManager.unitsSettings.distanceUnits, QGroundControl.settingsManager.unitsSettings.areaUnits, QGroundControl.settingsManager.unitsSettings.speedUnits ]

                            property var names: [ qsTr("Distance:"), qsTr("Area:"), qsTr("Speed:") ]

                            Row {
                                spacing:    ScreenTools.defaultFontPixelWidth
                                visible:    modelData.visible

                                QGCLabel {
                                    width:              _labelWidth
                                    anchors.baseline:   factCombo.baseline
                                    text:               unitsRepeater.names[index]
                                }
                                FactComboBox {
                                    id:                 factCombo
                                    width:              _editFieldWidth
                                    fact:               modelData
                                    indexModel:         false
                                }
109 110 111 112
                            }
                        }
                    }
                }
113

114
                //-----------------------------------------------------------------
115
                //-- Miscellanous
116
                Item {
117
                    width:                      _qgcView.width * 0.8
118 119 120 121
                    height:                     miscLabel.height
                    anchors.margins:            ScreenTools.defaultFontPixelWidth
                    anchors.horizontalCenter:   parent.horizontalCenter
                    visible:                    QGroundControl.settingsManager.appSettings.visible
122
                    QGCLabel {
123
                        id:             miscLabel
124
                        text:           qsTr("Miscellaneous")
125
                        font.family:    ScreenTools.demiboldFontFamily
126
                    }
127 128
                }
                Rectangle {
129
                    height:                     miscCol.height + (ScreenTools.defaultFontPixelHeight * 2)
130
                    width:                      _qgcView.width * 0.8
131 132 133 134
                    color:                      qgcPal.windowShade
                    anchors.margins:            ScreenTools.defaultFontPixelWidth
                    anchors.horizontalCenter:   parent.horizontalCenter
                    visible:                    QGroundControl.settingsManager.appSettings.visible
135 136 137 138 139 140 141
                    Column {
                        id:         miscCol
                        spacing:    ScreenTools.defaultFontPixelWidth
                        anchors.centerIn: parent
                        //-----------------------------------------------------------------
                        //-- Base UI Font Point Size
                        Row {
142
                            visible: _appFontPointSize.visible
143 144 145
                            spacing: ScreenTools.defaultFontPixelWidth
                            QGCLabel {
                                id:     baseFontLabel
146
                                text:   qsTr("Font size:")
147 148 149 150 151 152 153 154 155 156 157 158
                                anchors.verticalCenter: parent.verticalCenter
                            }
                            Row {
                                id:         baseFontRow
                                spacing:    ScreenTools.defaultFontPixelWidth / 2
                                anchors.verticalCenter: parent.verticalCenter
                                QGCButton {
                                    id:     decrementButton
                                    width:  height
                                    height: baseFontEdit.height
                                    text:   "-"
                                    onClicked: {
159 160
                                        if (_appFontPointSize.value > _appFontPointSize.min) {
                                            _appFontPointSize.value = _appFontPointSize.value - 1
161 162 163
                                        }
                                    }
                                }
164 165 166 167
                                FactTextField {
                                    id:     baseFontEdit
                                    width:  _editFieldWidth - (decrementButton.width * 2) - (baseFontRow.spacing * 2)
                                    fact:   QGroundControl.settingsManager.appSettings.appFontPointSize
168 169 170 171 172 173
                                }
                                QGCButton {
                                    width:  height
                                    height: baseFontEdit.height
                                    text:   "+"
                                    onClicked: {
174 175
                                        if (_appFontPointSize.value < _appFontPointSize.max) {
                                            _appFontPointSize.value = _appFontPointSize.value + 1
176 177 178 179 180 181
                                        }
                                    }
                                }
                            }
                            QGCLabel {
                                anchors.verticalCenter: parent.verticalCenter
182
                                text:                   _requiresRestart
183 184 185
                            }
                        }
                        //-----------------------------------------------------------------
186 187 188
                        //-- Palette Styles
                        Row {
                            spacing: ScreenTools.defaultFontPixelWidth
189
                            visible: QGroundControl.settingsManager.appSettings.indoorPalette.visible
190 191
                            QGCLabel {
                                anchors.baseline:   paletteCombo.baseline
192
                                text:               qsTr("Color scheme:")
193 194
                                width:              _labelWidth
                            }
195 196 197 198 199
                            FactComboBox {
                                id:         paletteCombo
                                width:      _editFieldWidth
                                fact:       QGroundControl.settingsManager.appSettings.indoorPalette
                                indexModel: false
200 201 202
                            }
                        }
                        //-----------------------------------------------------------------
203
                        //-- Audio preferences
204
                        FactCheckBox {
205 206 207 208 209
                            text:       qsTr("Mute all audio output")
                            fact:       _audioMuted
                            visible:    _audioMuted.visible

                            property Fact _audioMuted: QGroundControl.settingsManager.appSettings.audioMuted
210
                        }
211

212
                        //-----------------------------------------------------------------
213
                        //-- Save telemetry log
214
                        FactCheckBox {
215
                            id:         promptSaveLog
216 217 218
                            text:       qsTr("Save telemetry log after each flight")
                            fact:       _telemetrySave
                            visible:    !ScreenTools.isMobile && _telemetrySave.visible
219

220
                            property Fact _telemetrySave: QGroundControl.settingsManager.appSettings.telemetrySave
221
                        }
222

223
                        //-----------------------------------------------------------------
224
                        //-- Save even if not armed
225
                        FactCheckBox {
226 227 228
                            text:       qsTr("Save telemetry log even if vehicle was not armed")
                            fact:       _telemetrySaveNotArmed
                            visible:    !ScreenTools.isMobile && _telemetrySaveNotArmed.visible
229
                            enabled:    promptSaveLog.checked
230

231
                            property Fact _telemetrySaveNotArmed: QGroundControl.settingsManager.appSettings.telemetrySaveNotArmed
232
                        }
233

234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
                        //-----------------------------------------------------------------
                        //-- Clear settings
                        QGCCheckBox {
                            id:         clearCheck
                            text:       qsTr("Clear all settings on next start")
                            checked:    false
                            onClicked: {
                                checked ? clearDialog.visible = true : QGroundControl.clearDeleteAllSettingsNextBoot()
                            }
                            MessageDialog {
                                id:         clearDialog
                                visible:    false
                                icon:       StandardIcon.Warning
                                standardButtons: StandardButton.Yes | StandardButton.No
                                title:      qsTr("Clear Settings")
249
                                text:       qsTr("All saved settings will be reset the next time you start %1. Is this really what you want?").arg(QGroundControl.appName)
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
                                onYes: {
                                    QGroundControl.deleteAllSettingsNextBoot()
                                    clearDialog.visible = false
                                }
                                onNo: {
                                    clearCheck.checked  = false
                                    clearDialog.visible = false
                                }
                            }
                        }
                        //-----------------------------------------------------------------
                        //-- Battery talker
                        Row {
                            spacing: ScreenTools.defaultFontPixelWidth
                            QGCCheckBox {
                                id:                 announcePercentCheckbox
                                anchors.verticalCenter: parent.verticalCenter
                                text:               qsTr("Announce battery lower than:")
                                checked:            _percentRemainingAnnounce.value != 0
                                onClicked: {
                                    if (checked) {
                                        _percentRemainingAnnounce.value = _percentRemainingAnnounce.defaultValueString
                                    } else {
                                        _percentRemainingAnnounce.value = 0
                                    }
                                }
                            }
                            FactTextField {
                                id:                 announcePercent
                                fact:               _percentRemainingAnnounce
                                enabled:            announcePercentCheckbox.checked
                                anchors.verticalCenter: parent.verticalCenter
                            }
                        }
                        //-----------------------------------------------------------------
                        //-- Virtual joystick settings
286
                        FactCheckBox {
287
                            text:       qsTr("Virtual Joystick")
288 289 290 291
                            visible:    _virtualJoystick.visible
                            fact:       _virtualJoystick

                            property Fact _virtualJoystick: QGroundControl.settingsManager.appSettings.virtualJoystick
292 293
                        }
                        //-----------------------------------------------------------------
294 295 296
                        //-- Default mission item altitude
                        Row {
                            spacing:    ScreenTools.defaultFontPixelWidth
Donald Gagne's avatar
Donald Gagne committed
297
                            visible:    QGroundControl.settingsManager.appSettings.defaultMissionItemAltitude.visible
298 299 300 301 302 303
                            QGCLabel {
                                anchors.baseline:   defaultItemAltitudeField.baseline
                                text:               qsTr("Default mission item altitude:")
                            }
                            FactTextField {
                                id:     defaultItemAltitudeField
304
                                fact:   QGroundControl.settingsManager.appSettings.defaultMissionItemAltitude
305 306
                            }
                        }
307

308
                        //-----------------------------------------------------------------
309
                        //-- Mission AutoLoad
310 311 312 313 314 315 316 317 318 319
                        FactCheckBox {
                            text:       qsTr("AutoLoad missions")
                            fact:       _autoLoad
                            visible:    _autoLoad.visible

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

                        //-----------------------------------------------------------------
                        //-- Save path
Don Gagne's avatar
Don Gagne committed
320
                        Row {
DonLakeFlyer's avatar
DonLakeFlyer committed
321
                            spacing:    ScreenTools.defaultFontPixelWidth
322
                            visible:    _savePath.visible
DonLakeFlyer's avatar
DonLakeFlyer committed
323

324 325 326
                            QGCLabel {
                                anchors.baseline:   savePathBrowse.baseline
                                text:               qsTr("File save path:")
Don Gagne's avatar
Don Gagne committed
327
                            }
328 329 330
                            QGCLabel {
                                anchors.baseline:   savePathBrowse.baseline
                                text:               _savePath.rawValue === "" ? qsTr("<not set>") : _savePath.value
331 332
                            }
                            QGCButton {
333 334 335 336 337 338 339 340 341 342
                                id:         savePathBrowse
                                text:       "Browse"
                                onClicked:  savePathBrowseDialog.openForLoad()

                                QGCFileDialog {
                                    id:             savePathBrowseDialog
                                    qgcView:        _qgcView
                                    title:          qsTr("Choose the location to save files:")
                                    folder:         _savePath.rawValue
                                    selectExisting: true
343
                                    selectFolder:   true
344 345

                                    onAcceptedForLoad: _savePath.rawValue = file
346
                                }
Don Gagne's avatar
Don Gagne committed
347 348
                            }
                        }
349

Don Gagne's avatar
Don Gagne committed
350
                        //-----------------------------------------------------------------
351
                        //-- Map Provider
352 353
                        Row {
                            spacing:    ScreenTools.defaultFontPixelWidth
354 355
                            visible:    _mapProvider.visible

356 357 358 359 360
                            QGCLabel {
                                anchors.baseline:   mapProviders.baseline
                                text:               qsTr("Map Provider:")
                                width:              _labelWidth
                            }
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391

                            FactComboBox {
                                id:         mapProviders
                                width:      _editFieldWidth
                                fact:       _mapProvider
                                indexModel: false
                            }
                        }

                        //-----------------------------------------------------------------
                        //-- Map Type
                        Row {
                            spacing:    ScreenTools.defaultFontPixelWidth
                            visible:    _mapType.visible

                            QGCLabel {
                                anchors.baseline:   mapTypes.baseline
                                text:               qsTr("Map Type:")
                                width:              _labelWidth
                            }

                            FactComboBox {
                                id:         mapTypes
                                width:      _editFieldWidth
                                fact:       _mapType
                                indexModel: false

                                Connections {
                                    target: QGroundControl.settingsManager.flightMapSettings
                                    onMapTypeChanged: {
                                        mapTypes.model = _mapType.enumStrings
392 393 394 395
                                    }
                                }
                            }
                        }
dogmaphobic's avatar
dogmaphobic committed
396 397
                    }
                }
398

399 400 401
                //-----------------------------------------------------------------
                //-- Autoconnect settings
                Item {
402
                    width:                      _qgcView.width * 0.8
403 404 405 406
                    height:                     autoConnectLabel.height
                    anchors.margins:            ScreenTools.defaultFontPixelWidth
                    anchors.horizontalCenter:   parent.horizontalCenter
                    visible:                    QGroundControl.settingsManager.autoConnectSettings.visible
407
                    QGCLabel {
408
                        id:             autoConnectLabel
Don Gagne's avatar
Don Gagne committed
409
                        text:           qsTr("AutoConnect to the following devices:")
410
                        font.family:    ScreenTools.demiboldFontFamily
411 412
                    }
                }
413
                Rectangle {
414
                    height:                     autoConnectCol.height + (ScreenTools.defaultFontPixelHeight * 2)
415
                    width:                      _qgcView.width * 0.8
416 417 418 419
                    color:                      qgcPal.windowShade
                    anchors.margins:            ScreenTools.defaultFontPixelWidth
                    anchors.horizontalCenter:   parent.horizontalCenter
                    visible:                    QGroundControl.settingsManager.autoConnectSettings.visible
420

421 422 423 424
                    Column {
                        id:         autoConnectCol
                        spacing:    ScreenTools.defaultFontPixelWidth
                        anchors.centerIn: parent
425

426 427
                        Row {
                            spacing: ScreenTools.defaultFontPixelWidth * 2
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445

                            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:    !ScreenTools.isiOS && modelData.visible
                                }
446 447
                            }
                        }
448 449
                    }
                }
450

451 452 453
                //-----------------------------------------------------------------
                //-- Video Source
                Item {
454
                    width:                      _qgcView.width * 0.8
455 456 457 458
                    height:                     videoLabel.height
                    anchors.margins:            ScreenTools.defaultFontPixelWidth
                    anchors.horizontalCenter:   parent.horizontalCenter
                    visible:                    QGroundControl.settingsManager.videoSettings.visible
459 460 461 462 463 464 465
                    QGCLabel {
                        id:             videoLabel
                        text:           qsTr("Video (Requires Restart)")
                        font.family:    ScreenTools.demiboldFontFamily
                    }
                }
                Rectangle {
466
                    height:                     videoCol.height + (ScreenTools.defaultFontPixelHeight * 2)
467
                    width:                      _qgcView.width * 0.8
468 469 470 471
                    color:                      qgcPal.windowShade
                    anchors.margins:            ScreenTools.defaultFontPixelWidth
                    anchors.horizontalCenter:   parent.horizontalCenter
                    visible:                    QGroundControl.settingsManager.videoSettings.visible
472

473 474 475 476
                    Column {
                        id:         videoCol
                        spacing:    ScreenTools.defaultFontPixelWidth
                        anchors.centerIn: parent
477 478


479 480
                        Row {
                            spacing:    ScreenTools.defaultFontPixelWidth
481
                            visible:    QGroundControl.settingsManager.videoSettings.videoSource.visible
482 483 484 485 486
                            QGCLabel {
                                anchors.baseline:   videoSource.baseline
                                text:               qsTr("Video Source:")
                                width:              _labelWidth
                            }
487 488 489 490 491
                            FactComboBox {
                                id:         videoSource
                                width:      _editFieldWidth
                                indexModel: false
                                fact:       QGroundControl.settingsManager.videoSettings.videoSource
492 493 494 495
                            }
                        }
                        Row {
                            spacing:    ScreenTools.defaultFontPixelWidth
496
                            visible:    QGroundControl.settingsManager.videoSettings.udpPort.visible && QGroundControl.videoManager.isGStreamer && videoSource.currentIndex === 0
497 498 499 500 501
                            QGCLabel {
                                anchors.baseline:   udpField.baseline
                                text:               qsTr("UDP Port:")
                                width:              _labelWidth
                            }
502
                            FactTextField {
503 504
                                id:                 udpField
                                width:              _editFieldWidth
505
                                fact:               QGroundControl.settingsManager.videoSettings.udpPort
506 507 508 509
                            }
                        }
                        Row {
                            spacing:    ScreenTools.defaultFontPixelWidth
510
                            visible:    QGroundControl.settingsManager.videoSettings.rtspUrl.visible && QGroundControl.videoManager.isGStreamer && videoSource.currentIndex === 1
511 512 513 514 515
                            QGCLabel {
                                anchors.baseline:   rtspField.baseline
                                text:               qsTr("RTSP URL:")
                                width:              _labelWidth
                            }
516
                            FactTextField {
517 518
                                id:                 rtspField
                                width:              _editFieldWidth
519
                                fact:               QGroundControl.settingsManager.videoSettings.rtspUrl
520 521
                            }
                        }
522
                        Row {
523
                            spacing:    ScreenTools.defaultFontPixelWidth
524
                            visible:    QGroundControl.videoManager.isGStreamer && videoSource.currentIndex < 2 && QGroundControl.settingsManager.videoSettings.aspectRatio.visible
525 526 527 528 529 530 531 532 533 534 535 536
                            QGCLabel {
                                anchors.baseline:   aspectField.baseline
                                text:               qsTr("Aspect Ratio:")
                                width:              _labelWidth
                            }
                            FactTextField {
                                id:                 aspectField
                                width:              _editFieldWidth
                                fact:               QGroundControl.settingsManager.videoSettings.aspectRatio
                            }
                        }
                        Row {
537 538 539 540 541 542 543 544 545 546 547 548 549 550
                            spacing:    ScreenTools.defaultFontPixelWidth
                            visible:    QGroundControl.videoManager.isGStreamer && videoSource.currentIndex < 2 && QGroundControl.settingsManager.videoSettings.gridLines.visible
                            QGCLabel {
                                anchors.baseline:   gridField.baseline
                                text:               qsTr("Grid Lines:")
                                width:              _labelWidth
                            }
                            FactComboBox {
                                id:                 gridField
                                width:              _editFieldWidth
                                fact:               QGroundControl.settingsManager.videoSettings.gridLines
                            }
                        }
                        Row {
551
                            spacing:    ScreenTools.defaultFontPixelWidth
552
                            visible:    QGroundControl.settingsManager.videoSettings.videoSavePath.visible && QGroundControl.videoManager.isGStreamer && QGroundControl.videoManager.recordingEnabled
553

554
                            QGCLabel {
555 556 557
                                anchors.baseline:   videoBrowse.baseline
                                text:               qsTr("Save path:")
                                enabled:            promptSaveLog.checked
558
                            }
559 560 561
                            QGCLabel {
                                anchors.baseline:   videoBrowse.baseline
                                text:               _videoPath.value == "" ? qsTr("<not set>") : _videoPath.value
562
                            }
563
                            QGCButton {
564
                                id:         videoBrowse
565
                                text:       "Browse"
566
                                onClicked:  videoDialog.visible = true
567 568

                                FileDialog {
569
                                    id:             videoDialog
570
                                    title:          "Choose a location to save video files."
571
                                    folder:         "file://" + _videoPath.value
572
                                    selectFolder:   true
573
                                    onAccepted:     _videoPath.value = QGroundControl.urlToLocalFile(videoDialog.fileUrl)
574
                                }
575 576
                            }
                        }
577
                    }
578
                } // Video Source - Rectangle
579 580 581

                QGCLabel {
                    anchors.horizontalCenter:   parent.horizontalCenter
582
                    text:                       qsTr("%1 Version: %2").arg(QGroundControl.appName).arg(QGroundControl.qgcVersion)
583
                }
584 585
            } // settingsColumn
        } // QGCFlickable
586 587
    } // QGCViewPanel
} // QGCView