MainToolBar.qml 22 KB
Newer Older
dogmaphobic's avatar
dogmaphobic committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*=====================================================================

QGroundControl Open Source Ground Control Station

(c) 2009, 2015 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>

This file is part of the QGROUNDCONTROL project

    QGROUNDCONTROL is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    QGROUNDCONTROL is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.

======================================================================*/

/**
 * @file
 *   @brief QGC Main Tool Bar
 *   @author Gus Grubba <mavlink@grubba.com>
 */

dogmaphobic's avatar
dogmaphobic committed
30
import QtQuick 2.5
31
import QtQuick.Layouts 1.2
dogmaphobic's avatar
dogmaphobic committed
32 33 34
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.2

Don Gagne's avatar
Don Gagne committed
35
import QGroundControl                       1.0
36 37 38 39
import QGroundControl.Controls              1.0
import QGroundControl.Palette               1.0
import QGroundControl.MultiVehicleManager   1.0
import QGroundControl.ScreenTools           1.0
40
import QGroundControl.Controllers           1.0
dogmaphobic's avatar
dogmaphobic committed
41

42
Rectangle {
dogmaphobic's avatar
dogmaphobic committed
43
    id:     toolBar
dogmaphobic's avatar
dogmaphobic committed
44
    color:  opaqueBackground ? "#404040" : Qt.rgba(0,0,0,0.75)
dogmaphobic's avatar
dogmaphobic committed
45

Don Gagne's avatar
Don Gagne committed
46
    QGCPalette { id: qgcPal; colorGroupEnabled: true }
47

dogmaphobic's avatar
dogmaphobic committed
48
    property var  activeVehicle:        multiVehicleManager.activeVehicle
dogmaphobic's avatar
dogmaphobic committed
49
    property var  mainWindow:           null
dogmaphobic's avatar
dogmaphobic committed
50 51
    property bool isMessageImportant:   activeVehicle ? !activeVehicle.messageTypeNormal && !activeVehicle.messageTypeNone : false
    property bool isBackgroundDark:     true
dogmaphobic's avatar
dogmaphobic committed
52
    property bool opaqueBackground:     false
53

dogmaphobic's avatar
dogmaphobic committed
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
    /*
        Dev System (Mac OS)

        qml: Main Window Width:   1008
        qml: Toolbar height:      51.2
        qml: Default font:        12.8
        qml: Font (.75):          9.600000000000001
        qml: Font (.85):          10.88
        qml: Font 1.5):           19.200000000000003
        qml: Default Font Width:  8.328125
        qml: Default Font Height: 12.8
        qml: --
        qml: Real Font Height:    16
        qml: fontHRatio:          1
        qml: --
        qml: cellHeight:          38
        qml: tbFontSmall:         10
        qml: tbFontNormal:        12
        qml: tbFontLarge:         18
        qml: tbSpacing:           9.54

        Nexus 9

        qml: Main Window Width:   2048
        qml: Toolbar height:      90.9312
        qml: Default font:        38
        qml: Font (.75):          28.5
        qml: Font (.85):          32.3
        qml: Font 1.5):           57
        qml: Default Font Width:  20.0625
        qml: Default Font Height: 38
        qml: --
        qml: Real Font Height:    38
        qml: fontHRatio:          2.375
        qml: --
        qml: cellHeight:          68
        qml: tbFontSmall:         23.75
        qml: tbFontNormal:        28.5
        qml: tbFontLarge:         42.75
        qml: tbSpacing:           16.87552

        Nexus 7

        qml: Main Window Width:   1920
        qml: Toolbar height:      85.248
        qml: Default font:        38
        qml: Font (.75):          28.5
        qml: Font (.85):          32.3
        qml: Font 1.5):           57
        qml: Default Font Width:  20.140625
        qml: Default Font Height: 38
        qml: --
        qml: Real Font Height:    38
        qml: fontHRatio:          2.375
        qml: --
        qml: cellHeight:          63
        qml: tbFontSmall:         23.75
        qml: tbFontNormal:        28.5
        qml: tbFontLarge:         42.75
        qml: tbSpacing:           15.820800000000002

        Nexus 4

        qml: Main Window Width:   1196
        qml: Toolbar height:      79.65360000000001
        qml: Default font:        38
        qml: Font (.75):          28.5
        qml: Font (.85):          32.3
        qml: Font 1.5):           57
        qml: Default Font Width:  20.140625
        qml: Default Font Height: 38
        qml: --
        qml: Real Font Height:    38
        qml: fontHRatio:          2.375
        qml: --
        qml: cellHeight:          59
        qml: tbFontSmall:         23.75
        qml: tbFontNormal:        28.5
        qml: tbFontLarge:         42.75
        qml: tbSpacing:           9.85504

    */

    readonly property real  tbFontSmall:    10 * ScreenTools.fontHRatio
    readonly property real  tbFontNormal:   12 * ScreenTools.fontHRatio
    readonly property real  tbFontLarge:    18 * ScreenTools.fontHRatio
dogmaphobic's avatar
dogmaphobic committed
140

dogmaphobic's avatar
dogmaphobic committed
141 142 143 144 145 146
    readonly property var   colorGreen:     "#05f068"
    readonly property var   colorOrange:    "#f0ab06"
    readonly property var   colorRed:       "#fc4638"
    readonly property var   colorGrey:      "#7f7f7f"
    readonly property var   colorBlue:      "#636efe"
    readonly property var   colorWhite:     "#ffffff"
147

Don Gagne's avatar
Don Gagne committed
148 149 150 151
    signal showSetupView()
    signal showPlanView()
    signal showFlyView()

152
    MainToolBarController { id: _controller }
dogmaphobic's avatar
dogmaphobic committed
153

Don Gagne's avatar
Don Gagne committed
154 155 156 157 158 159 160 161 162 163 164 165
    function checkSetupButton() {
        setupButton.checked = true
    }

    function checkPlanButton() {
        planButton.checked = true
    }

    function checkFlyButton() {
        flyButton.checked = true
    }

166 167
    function getBatteryColor() {
        if(activeVehicle) {
Don Gagne's avatar
Don Gagne committed
168
            if(activeVehicle.battery.percentRemaining.value > 75) {
169 170
                return colorGreen
            }
Don Gagne's avatar
Don Gagne committed
171
            if(activeVehicle.battery.percentRemaining.value > 50) {
172 173
                return colorOrange
            }
Don Gagne's avatar
Don Gagne committed
174
            if(activeVehicle.battery.percentRemaining.value > 0.1) {
175 176 177 178 179 180
                return colorRed
            }
        }
        return colorGrey
    }

dogmaphobic's avatar
dogmaphobic committed
181 182 183 184 185 186 187 188 189 190
    function getRSSIColor(value) {
        if(value >= 0)
            return colorGrey;
        if(value > -60)
            return colorGreen;
        if(value > -90)
            return colorOrange;
        return colorRed;
    }

dogmaphobic's avatar
dogmaphobic committed
191 192 193 194
    Component.onCompleted: {
        //-- TODO: Get this from the actual state
        flyButton.checked = true
    }
195

dogmaphobic's avatar
dogmaphobic committed
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
    //---------------------------------------------
    // GPS Info
    Component {
        id: gpsInfo
        Rectangle {
            color:          Qt.rgba(0,0,0,0.75)
            width:          gpsCol.width   + ScreenTools.defaultFontPixelWidth  * 3
            height:         gpsCol.height  + ScreenTools.defaultFontPixelHeight * 2
            radius:         ScreenTools.defaultFontPixelHeight * 0.5
            Column {
                id:                 gpsCol
                spacing:            ScreenTools.defaultFontPixelHeight * 0.5
                width:              Math.max(gpsGrid.width, gpsLabel.width)
                anchors.margins:    ScreenTools.defaultFontPixelHeight
                anchors.centerIn:   parent
                QGCLabel {
                    id:         gpsLabel
Don Gagne's avatar
Don Gagne committed
213
                    text:       (activeVehicle && activeVehicle.gps.count.value >= 0) ? "GPS Status" : "GPS Data Unavailable"
dogmaphobic's avatar
dogmaphobic committed
214
                    font.weight:Font.DemiBold
215
                    color:      colorWhite
dogmaphobic's avatar
dogmaphobic committed
216 217 218 219
                    anchors.horizontalCenter: parent.horizontalCenter
                }
                GridLayout {
                    id:                 gpsGrid
Don Gagne's avatar
Don Gagne committed
220
                    visible:            (activeVehicle && activeVehicle.gps.count.value >= 0)
dogmaphobic's avatar
dogmaphobic committed
221 222 223 224 225 226
                    anchors.margins:    ScreenTools.defaultFontPixelHeight
                    columnSpacing:      ScreenTools.defaultFontPixelWidth
                    anchors.horizontalCenter: parent.horizontalCenter
                    columns: 2
                    QGCLabel {
                        text:   "GPS Count:"
227
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
228 229
                    }
                    QGCLabel {
Don Gagne's avatar
Don Gagne committed
230
                        text:   activeVehicle ? activeVehicle.gps.count.valueString : "N/A"
231
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
232 233 234
                    }
                    QGCLabel {
                        text:   "GPS Lock:"
235
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
236 237
                    }
                    QGCLabel {
Don Gagne's avatar
Don Gagne committed
238
                        text:   activeVehicle ? activeVehicle.gps.lock.enumStringValue : "N/A"
239
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
240
                    }
241 242 243 244 245
                    QGCLabel {
                        text:   "HDOP:"
                        color:  colorWhite
                    }
                    QGCLabel {
Don Gagne's avatar
Don Gagne committed
246
                        text:   activeVehicle ? (activeVehicle.gps.hdop.value < 10000 ? activeVehicle.gps.hdop.valueString : "N/A") : "N/A"
247 248 249 250 251 252 253
                        color:  colorWhite
                    }
                    QGCLabel {
                        text:   "VDOP:"
                        color:  colorWhite
                    }
                    QGCLabel {
Don Gagne's avatar
Don Gagne committed
254
                        text:   activeVehicle ? (activeVehicle.gps.vdop.value < 10000 ? activeVehicle.gps.vdop.valueString : "N/A") : "N/A"
255 256 257 258 259 260 261
                        color:  colorWhite
                    }
                    QGCLabel {
                        text:   "Course Over Ground:"
                        color:  colorWhite
                    }
                    QGCLabel {
Don Gagne's avatar
Don Gagne committed
262
                        text:   activeVehicle ? activeVehicle.gps.courseOverGround.valueString : "N/A"
263 264
                        color:  colorWhite
                    }
dogmaphobic's avatar
dogmaphobic committed
265 266 267 268 269 270 271 272 273 274
                }
            }
            Component.onCompleted: {
                var pos = mapFromItem(toolBar, centerX - (width / 2), toolBar.height)
                x = pos.x
                y = pos.y + ScreenTools.defaultFontPixelHeight
            }
        }
    }

275 276 277 278
    //---------------------------------------------
    // Battery Info
    Component {
        id: batteryInfo
Don Gagne's avatar
Don Gagne committed
279

280 281 282 283 284
        Rectangle {
            color:          Qt.rgba(0,0,0,0.75)
            width:          battCol.width   + ScreenTools.defaultFontPixelWidth  * 3
            height:         battCol.height  + ScreenTools.defaultFontPixelHeight * 2
            radius:         ScreenTools.defaultFontPixelHeight * 0.5
Don Gagne's avatar
Don Gagne committed
285

286 287 288 289 290 291
            Column {
                id:                 battCol
                spacing:            ScreenTools.defaultFontPixelHeight * 0.5
                width:              Math.max(battGrid.width, battLabel.width)
                anchors.margins:    ScreenTools.defaultFontPixelHeight
                anchors.centerIn:   parent
Don Gagne's avatar
Don Gagne committed
292

293 294
                QGCLabel {
                    id:         battLabel
Don Gagne's avatar
Don Gagne committed
295
                    text:       "Battery Status"
296
                    color:      colorWhite
297 298 299 300 301 302 303 304 305 306 307
                    font.weight:Font.DemiBold
                    anchors.horizontalCenter: parent.horizontalCenter
                }
                GridLayout {
                    id:                 battGrid
                    anchors.margins:    ScreenTools.defaultFontPixelHeight
                    columnSpacing:      ScreenTools.defaultFontPixelWidth
                    anchors.horizontalCenter: parent.horizontalCenter
                    columns: 2
                    QGCLabel {
                        text:   "Voltage:"
308
                        color:  colorWhite
309 310
                    }
                    QGCLabel {
Don Gagne's avatar
Don Gagne committed
311
                        text:   (activeVehicle && activeVehicle.battery.voltage.value != -1) ? (activeVehicle.battery.voltage.valueString + " " + activeVehicle.battery.voltage.units) : "N/A"
312 313 314 315
                        color:  getBatteryColor()
                    }
                    QGCLabel {
                        text:   "Accumulated Consumption:"
316
                        color:  colorWhite
317 318
                    }
                    QGCLabel {
Don Gagne's avatar
Don Gagne committed
319
                        text:   (activeVehicle && activeVehicle.battery.mahConsumed.value != -1) ? (activeVehicle.battery.mahConsumed.valueString + " " + activeVehicle.battery.mahConsumed.units) : "N/A"
320 321 322 323
                        color:  getBatteryColor()
                    }
                }
            }
Don Gagne's avatar
Don Gagne committed
324

325 326 327 328 329 330 331 332 333 334 335 336 337 338
            Component.onCompleted: {
                var pos = mapFromItem(toolBar, centerX - (width / 2), toolBar.height)
                x = pos.x
                y = pos.y + ScreenTools.defaultFontPixelHeight
            }
        }
    }

    //---------------------------------------------
    // RC RSSI Info
    Component {
        id: rcRSSIInfo
        Rectangle {
            color:          Qt.rgba(0,0,0,0.75)
dogmaphobic's avatar
dogmaphobic committed
339 340
            width:          rcrssiCol.width   + ScreenTools.defaultFontPixelWidth  * 3
            height:         rcrssiCol.height  + ScreenTools.defaultFontPixelHeight * 2
341 342
            radius:         ScreenTools.defaultFontPixelHeight * 0.5
            Column {
dogmaphobic's avatar
dogmaphobic committed
343
                id:                 rcrssiCol
344
                spacing:            ScreenTools.defaultFontPixelHeight * 0.5
dogmaphobic's avatar
dogmaphobic committed
345
                width:              Math.max(rcrssiGrid.width, rssiLabel.width)
346 347 348 349
                anchors.margins:    ScreenTools.defaultFontPixelHeight
                anchors.centerIn:   parent
                QGCLabel {
                    id:         rssiLabel
dogmaphobic's avatar
dogmaphobic committed
350
                    text:       activeVehicle ? (activeVehicle.rcRSSI > 0 ? "RC RSSI Status" : "RC RSSI Data Unavailable") : "N/A"
351
                    color:      colorWhite
352 353 354 355
                    font.weight:Font.DemiBold
                    anchors.horizontalCenter: parent.horizontalCenter
                }
                GridLayout {
dogmaphobic's avatar
dogmaphobic committed
356 357
                    id:                 rcrssiGrid
                    visible:            activeVehicle && activeVehicle.rcRSSI > 0
358 359 360 361 362 363
                    anchors.margins:    ScreenTools.defaultFontPixelHeight
                    columnSpacing:      ScreenTools.defaultFontPixelWidth
                    anchors.horizontalCenter: parent.horizontalCenter
                    columns: 2
                    QGCLabel {
                        text:   "RSSI:"
364
                        color:  colorWhite
365 366 367
                    }
                    QGCLabel {
                        text:   activeVehicle ? (activeVehicle.rcRSSI + "%") : 0
368
                        color:  colorWhite
369 370 371 372 373 374 375 376 377 378 379
                    }
                }
            }
            Component.onCompleted: {
                var pos = mapFromItem(toolBar, centerX - (width / 2), toolBar.height)
                x = pos.x
                y = pos.y + ScreenTools.defaultFontPixelHeight
            }
        }
    }

dogmaphobic's avatar
dogmaphobic committed
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
    //---------------------------------------------
    // Telemetry RSSI Info
    Component {
        id: telemRSSIInfo
        Rectangle {
            color:          Qt.rgba(0,0,0,0.75)
            width:          telemCol.width   + ScreenTools.defaultFontPixelWidth  * 3
            height:         telemCol.height  + ScreenTools.defaultFontPixelHeight * 2
            radius:         ScreenTools.defaultFontPixelHeight * 0.5
            Column {
                id:                 telemCol
                spacing:            ScreenTools.defaultFontPixelHeight * 0.5
                width:              Math.max(telemGrid.width, telemLabel.width)
                anchors.margins:    ScreenTools.defaultFontPixelHeight
                anchors.centerIn:   parent
                QGCLabel {
                    id:         telemLabel
                    text:       "Telemetry RSSI Status"
398
                    color:      colorWhite
dogmaphobic's avatar
dogmaphobic committed
399 400 401 402 403 404 405 406 407 408 409
                    font.weight:Font.DemiBold
                    anchors.horizontalCenter: parent.horizontalCenter
                }
                GridLayout {
                    id:                 telemGrid
                    anchors.margins:    ScreenTools.defaultFontPixelHeight
                    columnSpacing:      ScreenTools.defaultFontPixelWidth
                    anchors.horizontalCenter: parent.horizontalCenter
                    columns: 2
                    QGCLabel {
                        text:   "Local RSSI:"
410
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
411 412 413
                    }
                    QGCLabel {
                        text:   _controller.telemetryLRSSI + " dBm"
414
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
415 416 417
                    }
                    QGCLabel {
                        text:   "Remote RSSI:"
418
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
419 420 421
                    }
                    QGCLabel {
                        text:   _controller.telemetryRRSSI + " dBm"
422
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
423 424 425
                    }
                    QGCLabel {
                        text:   "RX Errors:"
426
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
427 428 429
                    }
                    QGCLabel {
                        text:   _controller.telemetryRXErrors
430
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
431 432 433
                    }
                    QGCLabel {
                        text:   "Errors Fixed:"
434
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
435 436 437
                    }
                    QGCLabel {
                        text:   _controller.telemetryFixed
438
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
439 440 441
                    }
                    QGCLabel {
                        text:   "TX Buffer:"
442
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
443 444 445
                    }
                    QGCLabel {
                        text:   _controller.telemetryTXBuffer
446
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
447 448 449
                    }
                    QGCLabel {
                        text:   "Local Noise:"
450
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
451 452 453
                    }
                    QGCLabel {
                        text:   _controller.telemetryLNoise
454
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
455 456 457
                    }
                    QGCLabel {
                        text:   "Remote Noise:"
458
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
459 460 461
                    }
                    QGCLabel {
                        text:   _controller.telemetryRNoise
462
                        color:  colorWhite
dogmaphobic's avatar
dogmaphobic committed
463 464 465 466 467 468 469 470 471 472 473
                    }
                }
            }
            Component.onCompleted: {
                var pos = mapFromItem(toolBar, centerX - (width / 2), toolBar.height)
                x = pos.x
                y = pos.y + ScreenTools.defaultFontPixelHeight
            }
        }
    }

474 475
    //---------------------------------------------
    // Toolbar Row
dogmaphobic's avatar
dogmaphobic committed
476 477
    Row {
        id:             viewRow
dogmaphobic's avatar
dogmaphobic committed
478 479
        height:         mainWindow.tbCellHeight
        spacing:        mainWindow.tbSpacing
dogmaphobic's avatar
dogmaphobic committed
480
        anchors.left:   parent.left
dogmaphobic's avatar
dogmaphobic committed
481
        anchors.leftMargin:     mainWindow.tbSpacing
dogmaphobic's avatar
dogmaphobic committed
482 483 484 485
        anchors.verticalCenter: parent.verticalCenter

        ExclusiveGroup { id: mainActionGroup }

dogmaphobic's avatar
dogmaphobic committed
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
        QGCToolBarButton {
            id:                 preferencesButton
            width:              mainWindow.tbButtonWidth
            height:             mainWindow.tbCellHeight
            source:             "/qmlimages/Hamburger.svg"
            onClicked: {
                mainWindow.showLeftMenu();
                preferencesButton.checked = false;
            }
        }

        Rectangle {
            height: mainWindow.tbCellHeight
            width:  1
            color: Qt.rgba(1,1,1,0.45)
        }

dogmaphobic's avatar
dogmaphobic committed
503 504
        QGCToolBarButton {
            id:                 setupButton
dogmaphobic's avatar
dogmaphobic committed
505 506
            width:              mainWindow.tbButtonWidth
            height:             mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
507
            exclusiveGroup:     mainActionGroup
dogmaphobic's avatar
dogmaphobic committed
508
            source:             "/qmlimages/Gears.svg"
Don Gagne's avatar
Don Gagne committed
509
            onClicked:          toolBar.showSetupView()
dogmaphobic's avatar
dogmaphobic committed
510
        }
511

dogmaphobic's avatar
dogmaphobic committed
512
        Rectangle {
dogmaphobic's avatar
dogmaphobic committed
513
            height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
514 515 516
            width:  1
            color: Qt.rgba(1,1,1,0.45)
        }
517

dogmaphobic's avatar
dogmaphobic committed
518 519
        QGCToolBarButton {
            id:                 planButton
dogmaphobic's avatar
dogmaphobic committed
520 521
            width:              mainWindow.tbButtonWidth
            height:             mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
522
            exclusiveGroup:     mainActionGroup
dogmaphobic's avatar
dogmaphobic committed
523
            source:             "/qmlimages/Plan.svg"
Don Gagne's avatar
Don Gagne committed
524
            onClicked:          toolBar.showPlanView()
dogmaphobic's avatar
dogmaphobic committed
525
        }
Don Gagne's avatar
Don Gagne committed
526

dogmaphobic's avatar
dogmaphobic committed
527
        Rectangle {
dogmaphobic's avatar
dogmaphobic committed
528
            height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
529 530
            width:  1
            color: Qt.rgba(1,1,1,0.45)
Don Gagne's avatar
Don Gagne committed
531
        }
dogmaphobic's avatar
dogmaphobic committed
532

dogmaphobic's avatar
dogmaphobic committed
533 534
        QGCToolBarButton {
            id:                 flyButton
dogmaphobic's avatar
dogmaphobic committed
535 536
            width:              mainWindow.tbButtonWidth
            height:             mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
537
            exclusiveGroup:     mainActionGroup
dogmaphobic's avatar
dogmaphobic committed
538
            source:             "/qmlimages/PaperPlane.svg"
Don Gagne's avatar
Don Gagne committed
539
            onClicked:          toolBar.showFlyView()
Don Gagne's avatar
Don Gagne committed
540
        }
541

Don Gagne's avatar
Don Gagne committed
542
        Rectangle {
dogmaphobic's avatar
dogmaphobic committed
543
            height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
544 545
            width:  1
            color: Qt.rgba(1,1,1,0.45)
Don Gagne's avatar
Don Gagne committed
546
        }
547

dogmaphobic's avatar
dogmaphobic committed
548
    }
549

dogmaphobic's avatar
dogmaphobic committed
550
    Item {
dogmaphobic's avatar
dogmaphobic committed
551
        id:                     vehicleIndicators
dogmaphobic's avatar
dogmaphobic committed
552 553
        height:                 mainWindow.tbCellHeight
        anchors.leftMargin:     mainWindow.tbSpacing * 2
Don Gagne's avatar
Don Gagne committed
554 555
        anchors.left:           viewRow.right
        anchors.right:          parent.right
dogmaphobic's avatar
dogmaphobic committed
556
        anchors.verticalCenter: parent.verticalCenter
Don Gagne's avatar
Don Gagne committed
557

558
        property bool vehicleConnectionLost: activeVehicle ? activeVehicle.connectionLost : false
Don Gagne's avatar
Don Gagne committed
559

dogmaphobic's avatar
dogmaphobic committed
560
        Loader {
561
            source:                 activeVehicle && !parent.vehicleConnectionLost ? "MainToolBarIndicators.qml" : ""
Don Gagne's avatar
Don Gagne committed
562 563
            anchors.left:           parent.left
            anchors.verticalCenter: parent.verticalCenter
Don Gagne's avatar
Don Gagne committed
564
        }
dogmaphobic's avatar
dogmaphobic committed
565

Don Gagne's avatar
Don Gagne committed
566 567 568 569 570 571 572 573
        QGCLabel {
            id:                     connectionLost
            text:                   "CONNECTION LOST"
            font.pixelSize:         tbFontLarge
            font.weight:            Font.DemiBold
            color:                  colorRed
            anchors.left:           parent.left
            anchors.verticalCenter: parent.verticalCenter
574
            visible:                parent.vehicleConnectionLost
Don Gagne's avatar
Don Gagne committed
575 576 577 578 579 580 581 582

        }

        QGCButton {
            anchors.rightMargin:     mainWindow.tbSpacing * 2
            anchors.right:          parent.right
            anchors.verticalCenter: parent.verticalCenter
            text:                   "Disconnect"
583
            visible:                parent.vehicleConnectionLost
Don Gagne's avatar
Don Gagne committed
584 585
            onClicked:              activeVehicle.disconnectInactiveVehicle()
        }
dogmaphobic's avatar
dogmaphobic committed
586
    }
dogmaphobic's avatar
dogmaphobic committed
587

588 589
    // Progress bar
    Rectangle {
Don Gagne's avatar
Don Gagne committed
590
        id:             progressBar
dogmaphobic's avatar
dogmaphobic committed
591 592
        anchors.bottom: parent.bottom
        height:         toolBar.height * 0.05
593
        width:          parent.width * _controller.progressBarValue
dogmaphobic's avatar
dogmaphobic committed
594
        color:          colorGreen
595
    }
dogmaphobic's avatar
dogmaphobic committed
596

597
}