MainToolBar.qml 18.6 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
dogmaphobic's avatar
dogmaphobic committed
31 32 33
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.2

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

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

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

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

dogmaphobic's avatar
dogmaphobic committed
53 54
    property string formatedMessage:    activeVehicle ? activeVehicle.formatedMessage : ""

dogmaphobic's avatar
dogmaphobic committed
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 140
    /*
        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
141

dogmaphobic's avatar
dogmaphobic committed
142 143 144 145 146 147
    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"
148

149
    MainToolBarController { id: _controller }
dogmaphobic's avatar
dogmaphobic committed
150

dogmaphobic's avatar
dogmaphobic committed
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
    onFormatedMessageChanged: {
        if(messageArea.visible) {
            messageText.append(formatedMessage)
            //-- Hack to scroll down
            messageFlick.flick(0,-500)
        }
    }

    function showMessageArea() {
        if(multiVehicleManager.activeVehicleAvailable) {
            messageText.text = activeVehicle.formatedMessages
            //-- Hack to scroll to last message
            for (var i = 0; i < activeVehicle.messageCount; i++)
                messageFlick.flick(0,-5000)
            activeVehicle.resetMessages()
        } else {
            messageText.text = "No Messages"
        }
        messageArea.visible = true
        mainWindow.setMapInteractive(false)
    }

173 174 175
    function showToolbarMessage(message) {
        toolBarMessage.text = message
        toolBarMessageArea.visible = true
Don Gagne's avatar
Don Gagne committed
176 177
    }

dogmaphobic's avatar
dogmaphobic committed
178
    function showMavStatus() {
179
         return (multiVehicleManager.activeVehicleAvailable && activeVehicle.heartbeatTimeout === 0 && _controller.connectionCount > 0);
dogmaphobic's avatar
dogmaphobic committed
180 181
    }

dogmaphobic's avatar
dogmaphobic committed
182 183 184 185
    Component.onCompleted: {
        //-- TODO: Get this from the actual state
        flyButton.checked = true
    }
186

dogmaphobic's avatar
dogmaphobic committed
187 188 189 190 191 192
    Connections {
        target:         controller
        onShowFlyView:  { flyButton.checked   = true }
        onShowPlanView: { planButton.checked  = true }
        onShowSetupView:{ setupButton.checked = true }
    }
193

dogmaphobic's avatar
dogmaphobic committed
194 195
    Row {
        id:             viewRow
dogmaphobic's avatar
dogmaphobic committed
196 197
        height:         mainWindow.tbCellHeight
        spacing:        mainWindow.tbSpacing
dogmaphobic's avatar
dogmaphobic committed
198
        anchors.left:   parent.left
dogmaphobic's avatar
dogmaphobic committed
199
        anchors.leftMargin:     mainWindow.tbSpacing
dogmaphobic's avatar
dogmaphobic committed
200 201 202 203
        anchors.verticalCenter: parent.verticalCenter

        ExclusiveGroup { id: mainActionGroup }

dogmaphobic's avatar
dogmaphobic committed
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
        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
221 222
        QGCToolBarButton {
            id:                 setupButton
dogmaphobic's avatar
dogmaphobic committed
223 224
            width:              mainWindow.tbButtonWidth
            height:             mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
225
            exclusiveGroup:     mainActionGroup
dogmaphobic's avatar
dogmaphobic committed
226
            source:             "/qmlimages/Gears.svg"
dogmaphobic's avatar
dogmaphobic committed
227
            onClicked: {
228
                _controller.onSetupView();
dogmaphobic's avatar
dogmaphobic committed
229 230
            }
        }
231

dogmaphobic's avatar
dogmaphobic committed
232
        Rectangle {
dogmaphobic's avatar
dogmaphobic committed
233
            height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
234 235 236
            width:  1
            color: Qt.rgba(1,1,1,0.45)
        }
237

dogmaphobic's avatar
dogmaphobic committed
238 239
        QGCToolBarButton {
            id:                 planButton
dogmaphobic's avatar
dogmaphobic committed
240 241
            width:              mainWindow.tbButtonWidth
            height:             mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
242
            exclusiveGroup:     mainActionGroup
dogmaphobic's avatar
dogmaphobic committed
243
            source:             "/qmlimages/Plan.svg"
dogmaphobic's avatar
dogmaphobic committed
244
            onClicked: {
245
                _controller.onPlanView();
dogmaphobic's avatar
dogmaphobic committed
246 247
            }
        }
Don Gagne's avatar
Don Gagne committed
248

dogmaphobic's avatar
dogmaphobic committed
249
        Rectangle {
dogmaphobic's avatar
dogmaphobic committed
250
            height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
251 252
            width:  1
            color: Qt.rgba(1,1,1,0.45)
Don Gagne's avatar
Don Gagne committed
253
        }
dogmaphobic's avatar
dogmaphobic committed
254

dogmaphobic's avatar
dogmaphobic committed
255 256
        QGCToolBarButton {
            id:                 flyButton
dogmaphobic's avatar
dogmaphobic committed
257 258
            width:              mainWindow.tbButtonWidth
            height:             mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
259
            exclusiveGroup:     mainActionGroup
dogmaphobic's avatar
dogmaphobic committed
260
            source:             "/qmlimages/PaperPlane.svg"
dogmaphobic's avatar
dogmaphobic committed
261 262
            onClicked: {
                _controller.onFlyView();
263
            }
Don Gagne's avatar
Don Gagne committed
264
        }
265

Don Gagne's avatar
Don Gagne committed
266
        Rectangle {
dogmaphobic's avatar
dogmaphobic committed
267
            height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
268 269
            width:  1
            color: Qt.rgba(1,1,1,0.45)
Don Gagne's avatar
Don Gagne committed
270
        }
271

dogmaphobic's avatar
dogmaphobic committed
272
    }
273

dogmaphobic's avatar
dogmaphobic committed
274
    Item {
dogmaphobic's avatar
dogmaphobic committed
275
        id:                     vehicleIndicators
dogmaphobic's avatar
dogmaphobic committed
276
        visible:                showMavStatus() && !connectionStatus.visible
dogmaphobic's avatar
dogmaphobic committed
277
        height:                 mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
278 279
        width:                  (toolBar.width - viewRow.width - connectRow.width)
        anchors.left:           viewRow.right
dogmaphobic's avatar
dogmaphobic committed
280
        anchors.leftMargin:     mainWindow.tbSpacing * 2
dogmaphobic's avatar
dogmaphobic committed
281 282 283 284 285
        anchors.verticalCenter: parent.verticalCenter
        Loader {
            source:             multiVehicleManager.activeVehicleAvailable ? "MainToolBarIndicators.qml" : ""
            anchors.left:       parent.left
            anchors.verticalCenter:   parent.verticalCenter
Don Gagne's avatar
Don Gagne committed
286
        }
dogmaphobic's avatar
dogmaphobic committed
287
    }
dogmaphobic's avatar
dogmaphobic committed
288

dogmaphobic's avatar
dogmaphobic committed
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
    //-------------------------------------------------------------------------
    //-- System Message Area
    Rectangle {
        id:             messageArea
        width:          mainWindow.width  * 0.5
        height:         mainWindow.height * 0.5
        anchors.top:    parent.bottom
        anchors.horizontalCenter: parent.horizontalCenter
        color:          Qt.rgba(0,0,0,0.75)
        visible:        false
        radius:         ScreenTools.defaultFontPixelHeight * 0.5
        Flickable {
            id:                 messageFlick
            anchors.margins:    ScreenTools.defaultFontPixelHeight
            anchors.fill:       parent
            contentHeight:      messageText.height
            contentWidth:       messageText.width
            boundsBehavior:     Flickable.StopAtBounds
            pixelAligned:       true
            clip:               true
            TextEdit {
                id:         messageText
                readOnly:   true
                textFormat: TextEdit.RichText
                color:      "white"
            }
        }
        //-- Dismiss System Message
        Image {
            anchors.margins:    ScreenTools.defaultFontPixelHeight
            anchors.top:        parent.top
            anchors.right:      parent.right
            width:              ScreenTools.defaultFontPixelHeight * 1.5
            height:             ScreenTools.defaultFontPixelHeight * 1.5
            source:             "/res/XDelete.svg"
            fillMode:           Image.PreserveAspectFit
            mipmap:             true
            smooth:             true
            MouseArea {
                anchors.fill:   parent
                onClicked: {
                    messageText.text    = ""
                    messageArea.visible = false
                    mainWindow.setMapInteractive(true)
                }
            }
        }
    }

dogmaphobic's avatar
dogmaphobic committed
338 339 340 341 342 343 344 345
    QGCLabel {
        id:             connectionStatus
        visible:        (_controller.connectionCount > 0 && multiVehicleManager.activeVehicleAvailable && activeVehicle.heartbeatTimeout != 0)
        text:           "CONNECTION LOST"
        font.pixelSize: tbFontLarge
        font.weight:    Font.DemiBold
        color:          colorRed
        anchors.left:           viewRow.right
dogmaphobic's avatar
dogmaphobic committed
346
        anchors.leftMargin:     mainWindow.tbSpacing * 2
dogmaphobic's avatar
dogmaphobic committed
347 348
        anchors.verticalCenter: parent.verticalCenter
    }
dogmaphobic's avatar
dogmaphobic committed
349 350

    Row {
Don Gagne's avatar
Don Gagne committed
351
        id:                     connectRow
dogmaphobic's avatar
dogmaphobic committed
352 353 354
        height:                 mainWindow.tbCellHeight
        spacing:                mainWindow.tbSpacing
        anchors.rightMargin:    mainWindow.tbSpacing
Don Gagne's avatar
Don Gagne committed
355
        anchors.right:          parent.right
dogmaphobic's avatar
dogmaphobic committed
356
        anchors.verticalCenter: parent.verticalCenter
dogmaphobic's avatar
dogmaphobic committed
357

dogmaphobic's avatar
dogmaphobic committed
358 359
        Menu {
            id: connectMenu
dogmaphobic's avatar
dogmaphobic committed
360
            Component.onCompleted: {
361
                _controller.configListChanged.connect(connectMenu.updateConnectionList);
dogmaphobic's avatar
dogmaphobic committed
362
                connectMenu.updateConnectionList();
dogmaphobic's avatar
dogmaphobic committed
363
            }
dogmaphobic's avatar
dogmaphobic committed
364 365 366 367 368
            function addMenuEntry(name) {
                var label = "Add Connection"
                if(name !== "")
                    label = name;
                var mItem = connectMenu.addItem(label);
369
                var menuSlot = function() {_controller.onConnect(name)};
dogmaphobic's avatar
dogmaphobic committed
370 371 372 373
                mItem.triggered.connect(menuSlot);
            }
            function updateConnectionList() {
                connectMenu.clear();
374 375
                for(var i = 0; i < _controller.configList.length; i++) {
                    connectMenu.addMenuEntry(_controller.configList[i]);
dogmaphobic's avatar
dogmaphobic committed
376
                }
377
                if(_controller.configList.length > 0) {
dogmaphobic's avatar
dogmaphobic committed
378 379 380 381
                    connectMenu.addSeparator();
                }
                // Add "Add Connection" to the list
                connectMenu.addMenuEntry("");
dogmaphobic's avatar
dogmaphobic committed
382 383 384
            }
        }

dogmaphobic's avatar
dogmaphobic committed
385
        Rectangle {
dogmaphobic's avatar
dogmaphobic committed
386
            height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
387 388
            width:  1
            color: Qt.rgba(1,1,1,0.45)
dogmaphobic's avatar
dogmaphobic committed
389 390
        }

dogmaphobic's avatar
dogmaphobic committed
391 392
        QGCToolBarButton {
            id:             connectButton
dogmaphobic's avatar
dogmaphobic committed
393 394
            width:          mainWindow.tbButtonWidth
            height:         mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
            visible:        _controller.connectionCount === 0
            source:         "/qmlimages/Connect.svg"
            checked:        false
            onClicked: {
                checked = false
                connectMenu.popup()
                /*
                console.log("Main Window Width:   " + mainWindow.width)
                console.log("Toolbar height:      " + toolBar.height)
                console.log("Default font:        " + ScreenTools.defaultFontPixelSize)
                console.log("Font (.75):          " + ScreenTools.defaultFontPixelSize * 0.75)
                console.log("Font (.85):          " + ScreenTools.defaultFontPixelSize * 0.85)
                console.log("Font 1.5):           " + ScreenTools.defaultFontPixelSize * 1.5)
                console.log("Default Font Width:  " + ScreenTools.defaultFontPixelWidth)
                console.log("Default Font Height: " + ScreenTools.defaultFontPixelHeight)
                console.log("--")
                console.log("Real Font Height:    " + ScreenTools.realFontHeight)
                console.log("fontHRatio:          " + ScreenTools.fontHRatio)
                console.log("--")
                console.log("cellHeight:          " + cellHeight)
                console.log("tbFontSmall:         " + tbFontSmall);
                console.log("tbFontNormal:        " + tbFontNormal);
                console.log("tbFontLarge:         " + tbFontLarge);
dogmaphobic's avatar
dogmaphobic committed
418
                console.log("mainWindow.tbSpacing:           " + tbSpacing);
dogmaphobic's avatar
dogmaphobic committed
419 420 421 422 423 424
                */
            }
        }

        QGCToolBarButton {
            id:             disconnectButton
dogmaphobic's avatar
dogmaphobic committed
425 426
            width:          mainWindow.tbButtonWidth
            height:         mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
427 428 429
            visible:        _controller.connectionCount === 1
            source:         "/qmlimages/Disconnect.svg"
            checked:        false
dogmaphobic's avatar
dogmaphobic committed
430
            onClicked: {
dogmaphobic's avatar
dogmaphobic committed
431
                checked = false
432
                _controller.onDisconnect("");
dogmaphobic's avatar
dogmaphobic committed
433 434 435 436 437 438
            }
        }

        Menu {
            id: disconnectMenu
            Component.onCompleted: {
439
                _controller.connectedListChanged.connect(disconnectMenu.onConnectedListChanged)
dogmaphobic's avatar
dogmaphobic committed
440
            }
dogmaphobic's avatar
dogmaphobic committed
441 442
            function addMenuEntry(name) {
                var mItem = disconnectMenu.addItem(name);
443
                var menuSlot = function() {_controller.onDisconnect(name)};
dogmaphobic's avatar
dogmaphobic committed
444 445
                mItem.triggered.connect(menuSlot);
            }
dogmaphobic's avatar
dogmaphobic committed
446 447 448
            function onConnectedListChanged(conList) {
                disconnectMenu.clear();
                for(var i = 0; i < conList.length; i++) {
dogmaphobic's avatar
dogmaphobic committed
449
                    disconnectMenu.addMenuEntry(conList[i]);
dogmaphobic's avatar
dogmaphobic committed
450 451 452 453
                }
            }
        }

dogmaphobic's avatar
dogmaphobic committed
454 455
        QGCToolBarButton {
            id:             multidisconnectButton
dogmaphobic's avatar
dogmaphobic committed
456 457
            width:          mainWindow.tbButtonWidth
            height:         mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
458 459 460 461 462 463 464
            visible:        _controller.connectionCount > 1
            source:         "/qmlimages/Disconnect.svg"
            checked:        false
            onClicked: {
                checked = false
                disconnectMenu.popup()
            }
dogmaphobic's avatar
dogmaphobic committed
465
        }
dogmaphobic's avatar
dogmaphobic committed
466 467

    }
468 469 470

    // Progress bar
    Rectangle {
Don Gagne's avatar
Don Gagne committed
471
        id:             progressBar
dogmaphobic's avatar
dogmaphobic committed
472 473
        anchors.bottom: parent.bottom
        height:         toolBar.height * 0.05
474
        width:          parent.width * _controller.progressBarValue
dogmaphobic's avatar
dogmaphobic committed
475
        color:          colorGreen
476
    }
dogmaphobic's avatar
dogmaphobic committed
477

Don Gagne's avatar
Don Gagne committed
478 479
    // Toolbar message area
    Rectangle {
dogmaphobic's avatar
dogmaphobic committed
480 481 482 483 484 485 486
        id:             toolBarMessageArea
        x:              toolBar.parent.width * 0.225
        y:              toolBar.parent.height - (ScreenTools.defaultFontPixelHeight * ScreenTools.fontHRatio * 6)
        width:          toolBar.parent.width * 0.55
        height:         ScreenTools.defaultFontPixelHeight * ScreenTools.fontHRatio * 6
        color:          Qt.rgba(0,0,0,0.65)
        visible:        false
dogmaphobic's avatar
dogmaphobic committed
487
        ScrollView {
dogmaphobic's avatar
dogmaphobic committed
488 489 490
            width:              toolBarMessageArea.width - toolBarMessageCloseButton.width
            anchors.top:        parent.top
            anchors.bottom:     parent.bottom
dogmaphobic's avatar
dogmaphobic committed
491 492 493 494 495 496 497
            frameVisible:       false
            horizontalScrollBarPolicy:  Qt.ScrollBarAlwaysOff
            verticalScrollBarPolicy:    Qt.ScrollBarAlwaysOff
            QGCLabel {
                id:                 toolBarMessage
                width:              toolBarMessageArea.width - toolBarMessageCloseButton.width
                wrapMode:           Text.WordWrap
dogmaphobic's avatar
dogmaphobic committed
498
                color:              "#e4e428"
dogmaphobic's avatar
dogmaphobic committed
499 500
                lineHeightMode:     Text.ProportionalHeight
                lineHeight:         1.15
dogmaphobic's avatar
dogmaphobic committed
501
                anchors.margins:    mainWindow.tbSpacing
dogmaphobic's avatar
dogmaphobic committed
502
            }
Don Gagne's avatar
Don Gagne committed
503 504
        }
        QGCButton {
dogmaphobic's avatar
dogmaphobic committed
505 506
            id:                 toolBarMessageCloseButton
            primary:            true
dogmaphobic's avatar
dogmaphobic committed
507
            text:               "Close"
dogmaphobic's avatar
dogmaphobic committed
508 509
            anchors.right:      parent.right
            anchors.bottom:     parent.bottom
dogmaphobic's avatar
dogmaphobic committed
510
            anchors.margins:    mainWindow.tbSpacing
Don Gagne's avatar
Don Gagne committed
511
            onClicked: {
dogmaphobic's avatar
dogmaphobic committed
512
                toolBarMessageArea.visible = false
513
                _controller.onToolBarMessageClosed()
Don Gagne's avatar
Don Gagne committed
514 515 516
            }
        }
    }
Don Gagne's avatar
Don Gagne committed
517

Don Gagne's avatar
Don Gagne committed
518
} // Rectangle