MainToolBar.qml 21 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 30 31 32 33 34 35 36 37
/*=====================================================================

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>
 */

import QtQuick 2.3
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.2

import QGroundControl.Controls 1.0
import QGroundControl.FactControls 1.0
import QGroundControl.Palette 1.0
import QGroundControl.MainToolBar 1.0
38
import QGroundControl.ScreenTools 1.0
dogmaphobic's avatar
dogmaphobic committed
39 40

Rectangle {
dogmaphobic's avatar
dogmaphobic committed
41
    id: toolBarHolder
dogmaphobic's avatar
dogmaphobic committed
42 43

    property var qgcPal: QGCPalette { id: palette; colorGroupEnabled: true }
44 45
    property ScreenTools screenTools: ScreenTools { }

dogmaphobic's avatar
dogmaphobic committed
46 47 48
    property int cellSpacerSize: getProportionalDimmension(4)
    property int cellHeight:     getProportionalDimmension(30)
    property int cellRadius:     getProportionalDimmension(3)
dogmaphobic's avatar
dogmaphobic committed
49

dogmaphobic's avatar
dogmaphobic committed
50 51 52 53 54
    property var colorBlue:       "#1a6eaa"
    property var colorGreen:      "#079527"
    property var colorRed:        "#a81a1b"
    property var colorOrange:     "#a76f26"
    property var colorWhite:      "#f0f0f0"
dogmaphobic's avatar
dogmaphobic committed
55

56 57 58 59 60
    property var colorOrangeText: (qgcPal.globalTheme === QGCPalette.Light) ? "#b75711" : "#ea8225"
    property var colorRedText:    (qgcPal.globalTheme === QGCPalette.Light) ? "#ee1112" : "#ef2526"
    property var colorGreenText:  (qgcPal.globalTheme === QGCPalette.Light) ? "#046b1b" : "#00d930"
    property var colorWhiteText:  (qgcPal.globalTheme === QGCPalette.Light) ? "#343333" : "#f0f0f0"

61
    color:  qgcPal.windowShade
dogmaphobic's avatar
dogmaphobic committed
62

dogmaphobic's avatar
dogmaphobic committed
63 64 65 66 67 68 69 70
    Component.onCompleted: {
        console.log(cellSpacerSize, cellHeight, cellRadius);
    }

    function getProportionalDimmension(val) {
        return toolBarHolder.height * val / 40
    }

dogmaphobic's avatar
dogmaphobic committed
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
    function getMessageColor() {
        if(mainToolBar.messageType === MainToolBar.MessageNone)
            return qgcPal.button;
        if(mainToolBar.messageType === MainToolBar.MessageNormal)
            return colorBlue;
        if(mainToolBar.messageType === MainToolBar.MessageWarning)
            return colorOrange;
        if(mainToolBar.messageType === MainToolBar.MessageError)
            return colorRed;
        // Cannot be so make make it obnoxious to show error
        return "purple";
    }

    function getMessageIcon() {
        if(mainToolBar.messageType === MainToolBar.MessageNormal || mainToolBar.messageType === MainToolBar.MessageNone)
Don Gagne's avatar
Don Gagne committed
86
            return "qrc:/res/Megaphone";
dogmaphobic's avatar
dogmaphobic committed
87
        else
Don Gagne's avatar
Don Gagne committed
88
            return "qrc:/res/Yield";
dogmaphobic's avatar
dogmaphobic committed
89 90 91 92
    }

    function getBatteryIcon() {
        if(mainToolBar.batteryPercent < 20.0)
Don Gagne's avatar
Don Gagne committed
93
            return "qrc:/res/Battery_0";
dogmaphobic's avatar
dogmaphobic committed
94
        else if(mainToolBar.batteryPercent < 40.0)
Don Gagne's avatar
Don Gagne committed
95
            return "qrc:/res/Battery_20";
dogmaphobic's avatar
dogmaphobic committed
96
        else if(mainToolBar.batteryPercent < 60.0)
Don Gagne's avatar
Don Gagne committed
97
            return "qrc:/res/Battery_40";
dogmaphobic's avatar
dogmaphobic committed
98
        else if(mainToolBar.batteryPercent < 80.0)
Don Gagne's avatar
Don Gagne committed
99
            return "qrc:/res/Battery_60";
dogmaphobic's avatar
dogmaphobic committed
100
        else if(mainToolBar.batteryPercent < 90.0)
Don Gagne's avatar
Don Gagne committed
101
            return "qrc:/res/Battery_80";
dogmaphobic's avatar
dogmaphobic committed
102
        else
Don Gagne's avatar
Don Gagne committed
103
            return "qrc:/res/Battery_100";
dogmaphobic's avatar
dogmaphobic committed
104 105
    }

dogmaphobic's avatar
dogmaphobic committed
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
    function getBatteryColor() {
        if (mainToolBar.batteryPercent > 40.0)
            return colorGreen;
        if(mainToolBar.batteryPercent > 0.01)
            return colorRed;
        // This means there is no battery level data
        return colorBlue;
    }

    function getSatelliteColor() {
        // No GPS data
        if (mainToolBar.satelliteCount < 0)
            return qgcPal.button
        // No Lock
        if(mainToolBar.satelliteLock < 2)
            return colorRed;
        // 2D Lock
        if(mainToolBar.satelliteLock === 2)
            return colorBlue;
        // Lock is 3D or more
        return colorGreen;
    }

dogmaphobic's avatar
dogmaphobic committed
129 130 131 132 133
    function showMavStatus() {
         return (mainToolBar.mavPresent && mainToolBar.heartbeatTimeout === 0 && mainToolBar.connectionCount > 0);
    }

    Row {
134 135 136
        id:                     row1
        height:                 cellHeight
        anchors.left:           parent.left
dogmaphobic's avatar
dogmaphobic committed
137
        spacing:                getProportionalDimmension(4)
dogmaphobic's avatar
dogmaphobic committed
138
        anchors.verticalCenter: parent.verticalCenter
dogmaphobic's avatar
dogmaphobic committed
139
        anchors.leftMargin:     getProportionalDimmension(10)
dogmaphobic's avatar
dogmaphobic committed
140

141 142 143
        Row {
            id:                     row11
            height:                 cellHeight
dogmaphobic's avatar
dogmaphobic committed
144
            spacing:                -getProportionalDimmension(12)
dogmaphobic's avatar
dogmaphobic committed
145
            anchors.verticalCenter: parent.verticalCenter
146
            Connections {
147
                target: screenTools
148
                onRepaintRequestedChanged: {
149 150 151
                    setupButton.repaintChevron   = true;
                    planButton.repaintChevron    = true;
                    flyButton.repaintChevron     = true;
152 153
                    analyzeButton.repaintChevron = true;
                }
dogmaphobic's avatar
dogmaphobic committed
154 155
            }

156 157 158 159
            ExclusiveGroup { id: mainActionGroup }

            QGCToolBarButton {
                id: setupButton
dogmaphobic's avatar
dogmaphobic committed
160
                width: getProportionalDimmension(90)
161 162
                height: cellHeight
                exclusiveGroup: mainActionGroup
163
                text: qsTr("Setup")
164 165 166 167 168 169
                anchors.verticalCenter: parent.verticalCenter
                checked: (mainToolBar.currentView === MainToolBar.ViewSetup)
                onClicked: {
                    mainToolBar.onSetupView();
                }
                z: 1000
dogmaphobic's avatar
dogmaphobic committed
170 171
            }

172 173
            QGCToolBarButton {
                id: planButton
dogmaphobic's avatar
dogmaphobic committed
174
                width: getProportionalDimmension(90)
175 176
                height: cellHeight
                exclusiveGroup: mainActionGroup
177
                text: qsTr("Plan")
178 179 180 181 182 183
                anchors.verticalCenter: parent.verticalCenter
                checked: (mainToolBar.currentView === MainToolBar.ViewPlan)
                onClicked: {
                    mainToolBar.onPlanView();
                }
                z: 900
dogmaphobic's avatar
dogmaphobic committed
184 185
            }

186 187
            QGCToolBarButton {
                id: flyButton
dogmaphobic's avatar
dogmaphobic committed
188
                width: getProportionalDimmension(90)
189 190
                height: cellHeight
                exclusiveGroup: mainActionGroup
191
                text: qsTr("Fly")
192 193 194 195 196 197 198 199 200 201
                anchors.verticalCenter: parent.verticalCenter
                checked: (mainToolBar.currentView === MainToolBar.ViewFly)
                onClicked: {
                    mainToolBar.onFlyView();
                }
                z: 800
            }

            QGCToolBarButton {
                id: analyzeButton
dogmaphobic's avatar
dogmaphobic committed
202
                width: getProportionalDimmension(90)
203 204
                height: cellHeight
                exclusiveGroup: mainActionGroup
205
                text: qsTr("Analyze")
206 207 208 209 210 211
                anchors.verticalCenter: parent.verticalCenter
                checked: (mainToolBar.currentView === MainToolBar.ViewAnalyze)
                onClicked: {
                    mainToolBar.onAnalyzeView();
                }
                z: 700
dogmaphobic's avatar
dogmaphobic committed
212 213 214 215
            }

        }

216 217 218 219
        Row {
            id:                     row12
            height:                 cellHeight
            spacing:                cellSpacerSize
dogmaphobic's avatar
dogmaphobic committed
220 221 222
            anchors.verticalCenter: parent.verticalCenter

            Rectangle {
223
                id: messages
dogmaphobic's avatar
dogmaphobic committed
224
                width: (mainToolBar.messageCount > 99) ? getProportionalDimmension(70) : getProportionalDimmension(60)
225 226
                height: cellHeight
                visible: (mainToolBar.connectionCount > 0) && (mainToolBar.showMessages)
dogmaphobic's avatar
dogmaphobic committed
227
                anchors.verticalCenter: parent.verticalCenter
228 229 230 231 232 233 234 235 236
                color:  getMessageColor()
                radius: cellRadius
                border.color: "#00000000"
                border.width: 0
                property bool showTriangle: false

                Image {
                    id: messageIcon
                    source: getMessageIcon();
dogmaphobic's avatar
dogmaphobic committed
237
                    height: getProportionalDimmension(16)
238
                    fillMode: Image.PreserveAspectFit
dogmaphobic's avatar
dogmaphobic committed
239
                    anchors.verticalCenter: parent.verticalCenter
240
                    anchors.left: parent.left
dogmaphobic's avatar
dogmaphobic committed
241
                    anchors.leftMargin: getProportionalDimmension(10)
dogmaphobic's avatar
dogmaphobic committed
242 243
                }

244 245 246 247 248
                Rectangle {
                    id: messageTextRect
                    anchors.verticalCenter: parent.verticalCenter
                    anchors.right: parent.right
                    width: messages.width - messageIcon.width
249
                    QGCLabel {
250 251
                        id: messageText
                        text: (mainToolBar.messageCount > 0) ? mainToolBar.messageCount : ''
252
                        font.pointSize: screenTools.dpiAdjustedPointSize(14);
253 254 255 256 257 258 259
                        font.weight: Font.DemiBold
                        anchors.verticalCenter: parent.verticalCenter
                        anchors.horizontalCenter: parent.horizontalCenter
                        horizontalAlignment: Text.AlignHCenter
                        color: colorWhite
                    }
                }
dogmaphobic's avatar
dogmaphobic committed
260

261 262 263 264 265 266
                Image {
                    id: dropDown
                    source: "QGroundControl/Controls/arrow-down.png"
                    visible: (messages.showTriangle) && (mainToolBar.messageCount > 0)
                    anchors.bottom: parent.bottom
                    anchors.right: parent.right
dogmaphobic's avatar
dogmaphobic committed
267 268
                    anchors.bottomMargin: getProportionalDimmension(3)
                    anchors.rightMargin:  getProportionalDimmension(3)
dogmaphobic's avatar
dogmaphobic committed
269 270
                }

271 272 273 274 275 276 277 278
                Timer {
                    id: mouseOffTimer
                    interval: 2000;
                    running: false;
                    repeat: false
                    onTriggered: {
                        messages.showTriangle = false;
                    }
dogmaphobic's avatar
dogmaphobic committed
279
                }
280 281 282 283 284 285 286 287 288

                MouseArea {
                    anchors.fill: parent
                    hoverEnabled: true
                    onEntered: {
                        messages.showTriangle = true;
                        mouseOffTimer.start();
                    }
                    onClicked: {
dogmaphobic's avatar
dogmaphobic committed
289 290 291
                        var p = mapToItem(toolBarHolder, mouseX, mouseY);
                        mainToolBar.onEnterMessageArea(p.x, p.y);
                    }
dogmaphobic's avatar
dogmaphobic committed
292 293 294 295
                }

            }

296 297 298 299 300
            Rectangle {
                id: mavIcon
                width: cellHeight
                height: cellHeight
                visible: showMavStatus() &&  (mainToolBar.showMav)
dogmaphobic's avatar
dogmaphobic committed
301
                anchors.verticalCenter: parent.verticalCenter
302 303 304 305 306 307 308 309 310 311 312
                color: colorBlue
                radius: cellRadius
                border.color: "#00000000"
                border.width: 0
                Image {
                    source: mainToolBar.systemPixmap
                    height: cellHeight * 0.75
                    fillMode: Image.PreserveAspectFit
                    anchors.verticalCenter: parent.verticalCenter
                    anchors.horizontalCenter: parent.horizontalCenter
                }
dogmaphobic's avatar
dogmaphobic committed
313 314
            }

315 316
            Rectangle {
                id: satelitte
dogmaphobic's avatar
dogmaphobic committed
317
                width:  getProportionalDimmension(60)
318 319
                height: cellHeight
                visible: showMavStatus() && (mainToolBar.showGPS)
dogmaphobic's avatar
dogmaphobic committed
320
                anchors.verticalCenter: parent.verticalCenter
321 322 323 324 325 326
                color:  getSatelliteColor();
                radius: cellRadius
                border.color: "#00000000"
                border.width: 0

                Image {
Don Gagne's avatar
Don Gagne committed
327
                    source: "qrc:/res/Gps";
dogmaphobic's avatar
dogmaphobic committed
328
                    height: getProportionalDimmension(24)
329 330 331
                    fillMode: Image.PreserveAspectFit
                    anchors.verticalCenter: parent.verticalCenter
                    anchors.left: parent.left
dogmaphobic's avatar
dogmaphobic committed
332
                    anchors.leftMargin: getProportionalDimmension(10)
333 334 335 336
                    mipmap: true
                    smooth: true
                }

337
                QGCLabel {
338 339
                    id: satelitteText
                    text: (mainToolBar.satelliteCount > 0) ? mainToolBar.satelliteCount : ''
340
                    font.pointSize: screenTools.dpiAdjustedPointSize(14);
341 342 343
                    font.weight: Font.DemiBold
                    anchors.verticalCenter: parent.verticalCenter
                    anchors.right: parent.right
dogmaphobic's avatar
dogmaphobic committed
344
                    anchors.rightMargin: getProportionalDimmension(10)
345 346 347
                    horizontalAlignment: Text.AlignRight
                    color: colorWhite
                }
dogmaphobic's avatar
dogmaphobic committed
348 349
            }

350 351
            Rectangle {
                id: battery
dogmaphobic's avatar
dogmaphobic committed
352
                width: getProportionalDimmension(80)
353 354
                height: cellHeight
                visible: showMavStatus() && (mainToolBar.showBattery)
dogmaphobic's avatar
dogmaphobic committed
355
                anchors.verticalCenter: parent.verticalCenter
356 357 358 359 360 361 362
                color:  (mainToolBar.batteryPercent > 40.0 || mainToolBar.batteryPercent < 0.01) ? colorBlue : colorRed
                radius: cellRadius
                border.color: "#00000000"
                border.width: 0

                Image {
                    source: getBatteryIcon();
dogmaphobic's avatar
dogmaphobic committed
363
                    height: getProportionalDimmension(20)
364 365 366
                    fillMode: Image.PreserveAspectFit
                    anchors.verticalCenter: parent.verticalCenter
                    anchors.left: parent.left
dogmaphobic's avatar
dogmaphobic committed
367
                    anchors.leftMargin: getProportionalDimmension(6)
368 369 370 371
                    mipmap: true
                    smooth: true
                }

372
                QGCLabel {
373 374
                    id: batteryText
                    text: mainToolBar.batteryVoltage.toFixed(1) + ' V';
375
                    font.pointSize: screenTools.dpiAdjustedPointSize(14);
376 377 378
                    font.weight: Font.DemiBold
                    anchors.verticalCenter: parent.verticalCenter
                    anchors.right: parent.right
dogmaphobic's avatar
dogmaphobic committed
379
                    anchors.rightMargin: getProportionalDimmension(8)
380 381 382
                    horizontalAlignment: Text.AlignRight
                    color: colorWhite
                }
dogmaphobic's avatar
dogmaphobic committed
383 384
            }

385 386 387
            Column {
                visible: showMavStatus()
                height:  cellHeight * 0.85
dogmaphobic's avatar
dogmaphobic committed
388
                width:   getProportionalDimmension(80)
dogmaphobic's avatar
dogmaphobic committed
389 390
                anchors.verticalCenter: parent.verticalCenter

391 392 393 394 395 396 397 398 399
                Rectangle {
                    id: armedStatus
                    width: parent.width
                    height: parent.height / 2
                    anchors.horizontalCenter: parent.horizontalCenter
                    color: "#00000000"
                    border.color: "#00000000"
                    border.width: 0

400
                    QGCLabel {
401 402
                        id: armedStatusText
                        text: (mainToolBar.systemArmed) ? qsTr("ARMED") :  qsTr("DISARMED")
403
                        font.pointSize: screenTools.dpiAdjustedPointSize(12);
404 405
                        font.weight: Font.DemiBold
                        anchors.centerIn: parent
406
                        color: (mainToolBar.systemArmed) ? colorOrangeText : colorGreenText
407 408 409 410 411 412 413 414 415 416 417 418
                    }
                }

                Rectangle {
                    id: stateStatus
                    width: parent.width
                    height: parent.height / 2
                    anchors.horizontalCenter: parent.horizontalCenter
                    color: "#00000000"
                    border.color: "#00000000"
                    border.width: 0

419
                    QGCLabel {
420 421
                        id: stateStatusText
                        text: mainToolBar.currentState
422
                        font.pointSize: screenTools.dpiAdjustedPointSize(12);
423 424
                        font.weight: Font.DemiBold
                        anchors.centerIn: parent
425
                        color: (mainToolBar.currentState === "STANDBY") ? colorGreenText : colorRedText
426 427 428 429
                    }
                }

            }
dogmaphobic's avatar
dogmaphobic committed
430 431

            Rectangle {
432
                id: modeStatus
dogmaphobic's avatar
dogmaphobic committed
433
                width: getProportionalDimmension(90)
434 435
                height: cellHeight
                visible: showMavStatus()
dogmaphobic's avatar
dogmaphobic committed
436 437 438 439
                color: "#00000000"
                border.color: "#00000000"
                border.width: 0

440
                QGCLabel {
441 442
                    id: modeStatusText
                    text: mainToolBar.currentMode
443
                    font.pointSize: screenTools.dpiAdjustedPointSize(12);
dogmaphobic's avatar
dogmaphobic committed
444
                    font.weight: Font.DemiBold
445 446
                    anchors.horizontalCenter: parent.horizontalCenter
                    anchors.verticalCenter: parent.verticalCenter
447
                    color: colorWhiteText
dogmaphobic's avatar
dogmaphobic committed
448 449 450 451
                }
            }

            Rectangle {
452
                id: connectionStatus
dogmaphobic's avatar
dogmaphobic committed
453
                width: getProportionalDimmension(160)
454 455 456
                height: cellHeight
                visible: (mainToolBar.connectionCount > 0 && mainToolBar.mavPresent && mainToolBar.heartbeatTimeout != 0)
                anchors.verticalCenter: parent.verticalCenter
dogmaphobic's avatar
dogmaphobic committed
457 458 459 460
                color: "#00000000"
                border.color: "#00000000"
                border.width: 0

461
                QGCLabel {
462 463
                    id: connectionStatusText
                    text: qsTr("CONNECTION LOST")
464
                    font.pointSize: screenTools.dpiAdjustedPointSize(14);
dogmaphobic's avatar
dogmaphobic committed
465
                    font.weight: Font.DemiBold
466 467
                    anchors.verticalCenter: parent.verticalCenter
                    anchors.horizontalCenter: parent.horizontalCenter
468
                    color: colorRedText
dogmaphobic's avatar
dogmaphobic committed
469 470 471 472 473 474 475 476 477 478 479
                }
            }
        }
    }

    Row {
        id: row2
        height: cellHeight
        spacing: cellSpacerSize
        anchors.right: parent.right
        anchors.verticalCenter: parent.verticalCenter
dogmaphobic's avatar
dogmaphobic committed
480 481
        anchors.leftMargin:  getProportionalDimmension(10)
        anchors.rightMargin: getProportionalDimmension(10)
dogmaphobic's avatar
dogmaphobic committed
482

dogmaphobic's avatar
dogmaphobic committed
483 484
        Menu {
            id: connectMenu
dogmaphobic's avatar
dogmaphobic committed
485
            Component.onCompleted: {
dogmaphobic's avatar
dogmaphobic committed
486 487
                mainToolBar.configListChanged.connect(connectMenu.updateConnectionList);
                connectMenu.updateConnectionList();
dogmaphobic's avatar
dogmaphobic committed
488
            }
dogmaphobic's avatar
dogmaphobic committed
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
            function addMenuEntry(name) {
                var label = "Add Connection"
                if(name !== "")
                    label = name;
                var mItem = connectMenu.addItem(label);
                var menuSlot = function() {mainToolBar.onConnect(name)};
                mItem.triggered.connect(menuSlot);
            }
            function updateConnectionList() {
                connectMenu.clear();
                for(var i = 0; i < mainToolBar.configList.length; i++) {
                    connectMenu.addMenuEntry(mainToolBar.configList[i]);
                }
                if(mainToolBar.configList.length > 0) {
                    connectMenu.addSeparator();
                }
                // Add "Add Connection" to the list
                connectMenu.addMenuEntry("");
dogmaphobic's avatar
dogmaphobic committed
507 508 509 510
            }
        }

        QGCButton {
dogmaphobic's avatar
dogmaphobic committed
511
            id:         connectButton
dogmaphobic's avatar
dogmaphobic committed
512
            width:      getProportionalDimmension(100)
dogmaphobic's avatar
dogmaphobic committed
513 514 515 516 517 518 519 520
            visible:    mainToolBar.connectionCount === 0
            text:       qsTr("Connect")
            menu:       connectMenu
            anchors.verticalCenter: parent.verticalCenter
        }

        QGCButton {
            id:         disconnectButton
dogmaphobic's avatar
dogmaphobic committed
521
            width:      getProportionalDimmension(100)
dogmaphobic's avatar
dogmaphobic committed
522 523
            visible:    mainToolBar.connectionCount === 1
            text:       qsTr("Disconnect")
dogmaphobic's avatar
dogmaphobic committed
524 525
            anchors.verticalCenter: parent.verticalCenter
            onClicked: {
dogmaphobic's avatar
dogmaphobic committed
526
                mainToolBar.onDisconnect("");
dogmaphobic's avatar
dogmaphobic committed
527 528 529 530 531 532 533 534
            }
        }

        Menu {
            id: disconnectMenu
            Component.onCompleted: {
                mainToolBar.connectedListChanged.connect(disconnectMenu.onConnectedListChanged)
            }
dogmaphobic's avatar
dogmaphobic committed
535 536 537 538 539
            function addMenuEntry(name) {
                var mItem = disconnectMenu.addItem(name);
                var menuSlot = function() {mainToolBar.onDisconnect(name)};
                mItem.triggered.connect(menuSlot);
            }
dogmaphobic's avatar
dogmaphobic committed
540 541 542
            function onConnectedListChanged(conList) {
                disconnectMenu.clear();
                for(var i = 0; i < conList.length; i++) {
dogmaphobic's avatar
dogmaphobic committed
543
                    disconnectMenu.addMenuEntry(conList[i]);
dogmaphobic's avatar
dogmaphobic committed
544 545 546 547 548
                }
            }
        }

        QGCButton {
dogmaphobic's avatar
dogmaphobic committed
549
            id:         multidisconnectButton
dogmaphobic's avatar
dogmaphobic committed
550
            width:      getProportionalDimmension(100)
dogmaphobic's avatar
dogmaphobic committed
551 552 553
            text:       "Disconnect"
            visible:    mainToolBar.connectionCount > 1
            menu:       disconnectMenu
dogmaphobic's avatar
dogmaphobic committed
554 555 556 557
            anchors.verticalCenter: parent.verticalCenter
        }

    }
558 559 560

    // Progress bar
    Rectangle {
dogmaphobic's avatar
dogmaphobic committed
561
        readonly property int progressBarHeight: getProportionalDimmension(3)
562 563 564 565 566
        y:      parent.height  - progressBarHeight
        height: progressBarHeight
        width:  parent.width * mainToolBar.progressBarValue
        color:  qgcPal.text
    }
dogmaphobic's avatar
dogmaphobic committed
567 568
}