MainToolBarIndicators.qml 19 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
/*=====================================================================

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

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

24 25 26 27 28
import QtQuick                  2.5
import QtQuick.Controls         1.2
import QtGraphicalEffects       1.0
import QtQuick.Controls.Styles  1.2
import QtQuick.Dialogs          1.1
dogmaphobic's avatar
dogmaphobic committed
29 30 31 32

import QGroundControl               1.0
import QGroundControl.Controls      1.0
import QGroundControl.ScreenTools   1.0
33
import QGroundControl.Palette       1.0
dogmaphobic's avatar
dogmaphobic committed
34 35 36 37

Row {
    spacing:  tbSpacing * 2

38 39
    QGCPalette { id: qgcPal }

40
    function getSatStrength(hdop) {
41
        if (hdop <= 1.0)
42
            return 100
43
        if (hdop <= 1.4)
44
            return 75
45
        if (hdop <= 1.8)
46
            return 50
47
        if (hdop <= 3.0)
48 49
            return 25
        return 0
dogmaphobic's avatar
dogmaphobic committed
50 51 52
    }

    function getMessageColor() {
53 54 55 56 57 58 59 60 61
        if (activeVehicle) {
            if (activeVehicle.messageTypeNone)
                return colorGrey
            if (activeVehicle.messageTypeNormal)
                return colorBlue;
            if (activeVehicle.messageTypeWarning)
                return colorOrange;
            if (activeVehicle.messageTypeError)
                return colorRed;
62 63 64
            // Cannot be so make make it obnoxious to show error
            console.log("Invalid vehicle message type")
            return "purple";
65
        }
66 67
        //-- It can only get here when closing (vehicle gone while window active)
        return "white";
dogmaphobic's avatar
dogmaphobic committed
68 69 70
    }

    function getBatteryVoltageText() {
Don Gagne's avatar
Don Gagne committed
71 72
        if (activeVehicle.battery.voltage.value >= 0) {
            return activeVehicle.battery.voltage.valueString + activeVehicle.battery.voltage.units
dogmaphobic's avatar
dogmaphobic committed
73 74 75 76 77
        }
        return 'N/A';
    }

    function getBatteryPercentageText() {
78
        if(activeVehicle) {
Don Gagne's avatar
Don Gagne committed
79
            if(activeVehicle.battery.percentRemaining.value > 98.9) {
80 81
                return "100%"
            }
Don Gagne's avatar
Don Gagne committed
82 83
            if(activeVehicle.battery.percentRemaining.value > 0.1) {
                return activeVehicle.battery.percentRemaining.valueString + activeVehicle.battery.percentRemaining.units
84
            }
Don Gagne's avatar
Don Gagne committed
85 86
            if(activeVehicle.battery.voltage.value >= 0) {
                return activeVehicle.battery.voltage.valueString + activeVehicle.battery.voltage.units
87
            }
dogmaphobic's avatar
dogmaphobic committed
88 89 90 91 92 93 94 95
        }
        return "N/A"
    }

    //-------------------------------------------------------------------------
    //-- Message Indicator
    Item {
        id:         messages
dogmaphobic's avatar
dogmaphobic committed
96 97
        width:      mainWindow.tbCellHeight
        height:     mainWindow.tbCellHeight
98
        visible:    activeVehicle ? activeVehicle.messageCount : false
dogmaphobic's avatar
dogmaphobic committed
99 100 101 102 103
        anchors.verticalCenter: parent.verticalCenter

        Item {
            id:                 criticalMessage
            anchors.fill:       parent
104
            visible:            activeVehicle ? (activeVehicle.messageCount > 0 && isMessageImportant) : false
105

dogmaphobic's avatar
dogmaphobic committed
106 107
            Image {
                source:         "/qmlimages/Yield.svg"
dogmaphobic's avatar
dogmaphobic committed
108
                height:         mainWindow.tbCellHeight * 0.75
dogmaphobic's avatar
dogmaphobic committed
109 110 111 112 113 114
                fillMode:       Image.PreserveAspectFit
                cache:          false
                visible:        isMessageImportant
                anchors.verticalCenter:   parent.verticalCenter
                anchors.horizontalCenter: parent.horizontalCenter
            }
115

dogmaphobic's avatar
dogmaphobic committed
116 117 118 119 120 121
            SequentialAnimation {
                id:    loopAnimation
                loops: Animation.Infinite
                NumberAnimation { target: criticalMessage; property: "opacity"; duration: 1000; from: 0.25; to: 1 }
                NumberAnimation { target: criticalMessage; property: "opacity"; duration: 1000; from: 1; to: 0.25 }
            }
122

dogmaphobic's avatar
dogmaphobic committed
123 124 125 126 127 128 129 130 131 132 133 134
            onVisibleChanged: {
                if(messages.visible) {
                    loopAnimation.start()
                } else {
                    loopAnimation.stop()
                }
            }
        }

        Item {
            anchors.fill:       parent
            visible:            !criticalMessage.visible
135 136 137 138 139 140 141

            QGCColoredImage {
                id:         messageIcon
                source:     "/qmlimages/Megaphone.svg"
                height:     mainWindow.tbCellHeight * 0.5
                fillMode:   Image.PreserveAspectFit
                color:      getMessageColor()
dogmaphobic's avatar
dogmaphobic committed
142 143 144 145 146 147 148 149
                anchors.verticalCenter:   parent.verticalCenter
                anchors.horizontalCenter: parent.horizontalCenter
            }
        }

        MouseArea {
            anchors.fill: parent
            onClicked: {
150
                mainWindow.showMessageArea()
dogmaphobic's avatar
dogmaphobic committed
151 152 153 154 155 156 157 158 159
            }
        }
    }

    //-------------------------------------------------------------------------
    //-- GPS Indicator
    Item {
        id:     satelitte
        width:  gpsRow.width * 1.1
dogmaphobic's avatar
dogmaphobic committed
160
        height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
161 162 163
        Row {
            id:     gpsRow
            height: parent.height
164 165

            QGCColoredImage {
dogmaphobic's avatar
dogmaphobic committed
166 167 168
                id:             gpsIcon
                source:         "/qmlimages/Gps.svg"
                fillMode:       Image.PreserveAspectFit
dogmaphobic's avatar
dogmaphobic committed
169 170
                width:          mainWindow.tbCellHeight * 0.65
                height:         mainWindow.tbCellHeight * 0.5
Don Gagne's avatar
Don Gagne committed
171
                opacity:        (activeVehicle && activeVehicle.gps.count.value >= 0) ? 1 : 0.5
172
                color:          qgcPal.buttonText
dogmaphobic's avatar
dogmaphobic committed
173 174
                anchors.verticalCenter: parent.verticalCenter
            }
175

dogmaphobic's avatar
dogmaphobic committed
176
            SignalStrength {
dogmaphobic's avatar
dogmaphobic committed
177
                size:           mainWindow.tbCellHeight * 0.5
Don Gagne's avatar
Don Gagne committed
178
                percent:        activeVehicle ? getSatStrength(activeVehicle.gps.hdop.value) : ""
dogmaphobic's avatar
dogmaphobic committed
179 180 181
                anchors.verticalCenter: parent.verticalCenter
            }
        }
182

dogmaphobic's avatar
dogmaphobic committed
183
        QGCLabel {
184
            anchors.top:        parent.top
dogmaphobic's avatar
dogmaphobic committed
185
            anchors.leftMargin: gpsIcon.width
186 187 188 189 190
            anchors.left:       parent.left
            visible:            activeVehicle && !isNaN(activeVehicle.gps.hdop.value)
            font.pixelSize:     tbFontSmall
            color:              qgcPal.buttonText
            text:               activeVehicle ? activeVehicle.gps.hdop.valueString : ""
dogmaphobic's avatar
dogmaphobic committed
191
        }
192

dogmaphobic's avatar
dogmaphobic committed
193 194 195 196 197 198 199
        MouseArea {
            anchors.fill:   parent
            onClicked: {
                var centerX = mapToItem(toolBar, x, y).x + (width / 2)
                mainWindow.showPopUp(gpsInfo, centerX)
            }
        }
dogmaphobic's avatar
dogmaphobic committed
200 201 202 203 204 205 206
    }

    //-------------------------------------------------------------------------
    //-- RC RSSI
    Item {
        id:     rcRssi
        width:  rssiRow.width * 1.1
dogmaphobic's avatar
dogmaphobic committed
207
        height: mainWindow.tbCellHeight
208

dogmaphobic's avatar
dogmaphobic committed
209 210 211
        Row {
            id:     rssiRow
            height: parent.height
212 213

            QGCColoredImage {
dogmaphobic's avatar
dogmaphobic committed
214 215
                width:          mainWindow.tbCellHeight * 0.65
                height:         mainWindow.tbCellHeight * 0.5
216 217
                source:         "/qmlimages/RC.svg"
                fillMode:       Image.PreserveAspectFit
218
                opacity:        activeVehicle ? (activeVehicle.rcRSSI < 1 ? 0.5 : 1) : 0.5
219
                color:          qgcPal.buttonText
dogmaphobic's avatar
dogmaphobic committed
220 221
                anchors.verticalCenter: parent.verticalCenter
            }
222

dogmaphobic's avatar
dogmaphobic committed
223
            SignalStrength {
224 225
                size:       mainWindow.tbCellHeight * 0.5
                percent:    activeVehicle ? activeVehicle.rcRSSI : 0
dogmaphobic's avatar
dogmaphobic committed
226 227 228
                anchors.verticalCenter: parent.verticalCenter
            }
        }
229

230 231 232 233 234 235 236
        MouseArea {
            anchors.fill:   parent
            onClicked: {
                var centerX = mapToItem(toolBar, x, y).x + (width / 2)
                mainWindow.showPopUp(rcRSSIInfo, centerX)
            }
        }
dogmaphobic's avatar
dogmaphobic committed
237 238
    }

dogmaphobic's avatar
dogmaphobic committed
239 240 241 242 243 244 245
    //-------------------------------------------------------------------------
    //-- Telemetry RSSI
    Item {
        id:         telemRssi
        width:      telemIcon.width
        height:     mainWindow.tbCellHeight
        visible:    _controller.telemetryLRSSI < 0
246 247 248 249 250 251 252 253

        QGCColoredImage {
            id:         telemIcon
            height:     parent.height * 0.5
            width:      height * 1.5
            source:     "/qmlimages/TelemRSSI.svg"
            fillMode:   Image.PreserveAspectFit
            color:      qgcPal.buttonText
dogmaphobic's avatar
dogmaphobic committed
254 255
            anchors.verticalCenter: parent.verticalCenter
        }
256

dogmaphobic's avatar
dogmaphobic committed
257 258 259 260 261 262 263 264 265
        MouseArea {
            anchors.fill:   parent
            onClicked: {
                var centerX = mapToItem(toolBar, x, y).x + (width / 2)
                mainWindow.showPopUp(telemRSSIInfo, centerX)
            }
        }
    }

dogmaphobic's avatar
dogmaphobic committed
266 267 268
    //-------------------------------------------------------------------------
    //-- Battery Indicator
    Item {
269 270 271 272 273
        id:         batteryStatus
        width:      battRow.width * 1.1
        height:     mainWindow.tbCellHeight
        opacity:    (activeVehicle && activeVehicle.battery.voltage.value >= 0) ? 1 : 0.5

dogmaphobic's avatar
dogmaphobic committed
274
        Row {
275 276
            id:     battRow
            height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
277
            anchors.horizontalCenter: parent.horizontalCenter
278 279 280 281 282 283

            QGCColoredImage {
                height:     mainWindow.tbCellHeight * 0.65
                source:     "/qmlimages/Battery.svg"
                fillMode:   Image.PreserveAspectFit
                color:      qgcPal.buttonText
dogmaphobic's avatar
dogmaphobic committed
284 285
                anchors.verticalCenter: parent.verticalCenter
            }
286

287 288 289 290
            QGCLabel {
                text:           getBatteryPercentageText()
                font.pixelSize: tbFontLarge
                color:          getBatteryColor()
dogmaphobic's avatar
dogmaphobic committed
291
                anchors.verticalCenter: parent.verticalCenter
292 293
            }
        }
294

295 296 297
        MouseArea {
            anchors.fill:   parent
            onClicked: {
Don Gagne's avatar
Don Gagne committed
298 299 300 301
                if (activeVehicle) {
                    var centerX = mapToItem(toolBar, x, y).x + (width / 2)
                    mainWindow.showPopUp(batteryInfo, centerX)
                }
dogmaphobic's avatar
dogmaphobic committed
302 303 304 305 306 307 308
            }
        }
    }

    //-------------------------------------------------------------------------
    //-- Vehicle Selector
    QGCButton {
Don Gagne's avatar
Don Gagne committed
309
        id:                     vehicleSelectorButton
310
        width:                  ScreenTools.defaultFontPixelSize * 8
311
        text:                   "Vehicle " + (activeVehicle ? activeVehicle.id : "None")
Don Gagne's avatar
Don Gagne committed
312
        visible:                QGroundControl.multiVehicleManager.vehicles.count > 1
dogmaphobic's avatar
dogmaphobic committed
313 314 315 316 317 318 319 320 321 322 323 324 325
        anchors.verticalCenter: parent.verticalCenter

        menu: vehicleMenu

        Menu {
            id: vehicleMenu
        }

        Component {
            id: vehicleMenuItemComponent

            MenuItem {
                checkable:      true
326
                onTriggered:    QGroundControl.multiVehicleManager.activeVehicle = vehicle
dogmaphobic's avatar
dogmaphobic committed
327 328

                property int vehicleId: Number(text.split(" ")[1])
329
                property var vehicle:   QGroundControl.multiVehicleManager.getVehicleById(vehicleId)
dogmaphobic's avatar
dogmaphobic committed
330 331 332 333 334 335 336 337 338 339 340 341 342
            }
        }

        property var vehicleMenuItems: []

        function updateVehicleMenu() {
            // Remove old menu items
            for (var i = 0; i < vehicleMenuItems.length; i++) {
                vehicleMenu.removeItem(vehicleMenuItems[i])
            }
            vehicleMenuItems.length = 0

            // Add new items
343 344
            for (var i=0; i<QGroundControl.multiVehicleManager.vehicles.count; i++) {
                var vehicle = QGroundControl.multiVehicleManager.vehicles.get(i)
dogmaphobic's avatar
dogmaphobic committed
345 346 347 348 349 350 351 352 353
                var menuItem = vehicleMenuItemComponent.createObject(null, { "text": "Vehicle " + vehicle.id })
                vehicleMenuItems.push(menuItem)
                vehicleMenu.insertItem(i, menuItem)
            }
        }

        Component.onCompleted: updateVehicleMenu()

        Connections {
354
            target:         QGroundControl.multiVehicleManager.vehicles
355
            onCountChanged: vehicleSelectorButton.updateVehicleMenu()
dogmaphobic's avatar
dogmaphobic committed
356 357 358 359 360 361 362
        }
    }

    //-------------------------------------------------------------------------
    //-- Mode Selector

    Item {
363
        id:     flightModeSelector
dogmaphobic's avatar
dogmaphobic committed
364
        width:  selectorRow.width * 1.1
dogmaphobic's avatar
dogmaphobic committed
365
        height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
366
        anchors.verticalCenter: parent.verticalCenter
367

dogmaphobic's avatar
dogmaphobic committed
368 369 370 371 372
        Row {
            id:                 selectorRow
            spacing:            tbSpacing
            anchors.verticalCenter:   parent.verticalCenter
            anchors.horizontalCenter: parent.horizontalCenter
373 374 375 376 377 378 379

            QGCColoredImage {
                width:      mainWindow.tbCellHeight * 0.65
                height:     mainWindow.tbCellHeight * 0.65
                fillMode:   Image.PreserveAspectFit
                source:     "/qmlimages/Quad.svg"
                color:      qgcPal.buttonText
dogmaphobic's avatar
dogmaphobic committed
380 381
                anchors.verticalCenter: parent.verticalCenter
            }
382

dogmaphobic's avatar
dogmaphobic committed
383
            QGCLabel {
384
                text:           activeVehicle ? activeVehicle.flightMode : "N/A"
dogmaphobic's avatar
dogmaphobic committed
385
                font.pixelSize: tbFontLarge
386
                color:          qgcPal.buttonText
dogmaphobic's avatar
dogmaphobic committed
387 388 389 390 391 392 393 394 395 396 397 398
                anchors.verticalCenter: parent.verticalCenter
            }
        }

        Menu {
            id: flightModesMenu
        }

        Component {
            id: flightModeMenuItemComponent

            MenuItem {
399 400 401 402 403
                onTriggered: {
                    if(activeVehicle) {
                        activeVehicle.flightMode = text
                    }
                }
dogmaphobic's avatar
dogmaphobic committed
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
            }
        }

        property var flightModesMenuItems: []

        function updateFlightModesMenu() {
            if (activeVehicle.flightModeSetAvailable) {
                // Remove old menu items
                for (var i = 0; i < flightModesMenuItems.length; i++) {
                    flightModesMenu.removeItem(flightModesMenuItems[i])
                }
                flightModesMenuItems.length = 0
                // Add new items
                for (var i = 0; i < activeVehicle.flightModes.length; i++) {
                    var menuItem = flightModeMenuItemComponent.createObject(null, { "text": activeVehicle.flightModes[i] })
                    flightModesMenuItems.push(menuItem)
                    flightModesMenu.insertItem(i, menuItem)
                }
            }
        }

        Component.onCompleted: updateFlightModesMenu()

        Connections {
428
            target:                 QGroundControl.multiVehicleManager
429
            onActiveVehicleChanged: flightModeSelector.updateFlightModesMenu
dogmaphobic's avatar
dogmaphobic committed
430 431 432
        }

        MouseArea {
433
            visible: activeVehicle ? activeVehicle.flightModeSetAvailable : false
dogmaphobic's avatar
dogmaphobic committed
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
            anchors.fill:   parent
            onClicked: {
                flightModesMenu.popup()
            }
        }
    }

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

    function getRSSIColor(value) {
        if(value < 10)
            return colorRed;
        if(value < 50)
            return colorOrange;
        return colorGreen;
    }

    Rectangle {
        id: rssiRC
        width:  getProportionalDimmension(55)
dogmaphobic's avatar
dogmaphobic committed
458
        height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
459 460 461 462 463 464 465
        visible: _controller.remoteRSSI <= 100
        anchors.verticalCenter: parent.verticalCenter
        color:  getRSSIColor(_controller.remoteRSSI);
        border.color: "#00000000"
        border.width: 0
        Image {
            source: "qrc:/res/AntennaRC";
dogmaphobic's avatar
dogmaphobic committed
466
            width: mainWindow.tbCellHeight * 0.7
dogmaphobic's avatar
dogmaphobic committed
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
            fillMode: Image.PreserveAspectFit
            anchors.verticalCenter: parent.verticalCenter
            anchors.left: parent.left
            anchors.leftMargin: getProportionalDimmension(6)
            mipmap: true
            smooth: true
        }
        QGCLabel {
            text: _controller.remoteRSSI
            anchors.right: parent.right
            anchors.rightMargin: getProportionalDimmension(6)
            anchors.verticalCenter: parent.verticalCenter
            horizontalAlignment: Text.AlignRight
            font.pixelSize: ScreenTools.smallFontPixelSize
            font.weight: Font.DemiBold
            color: colorWhite
        }
    }

    Rectangle {
        id: rssiTelemetry
        width:  getProportionalDimmension(80)
dogmaphobic's avatar
dogmaphobic committed
489
        height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
490 491 492 493 494 495 496
        visible: (_controller.telemetryRRSSI > 0) && (_controller.telemetryLRSSI > 0)
        anchors.verticalCenter: parent.verticalCenter
        color:  getRSSIColor(Math.min(_controller.telemetryRRSSI,_controller.telemetryLRSSI));
        border.color: "#00000000"
        border.width: 0
        Image {
            source: "qrc:/res/AntennaT";
dogmaphobic's avatar
dogmaphobic committed
497
            width: mainWindow.tbCellHeight * 0.7
dogmaphobic's avatar
dogmaphobic committed
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517
            fillMode: Image.PreserveAspectFit
            anchors.verticalCenter: parent.verticalCenter
            anchors.left: parent.left
            anchors.leftMargin: getProportionalDimmension(6)
            mipmap: true
            smooth: true
        }
        Column {
            anchors.verticalCenter: parent.verticalCenter
            anchors.right:          parent.right
            anchors.rightMargin:    getProportionalDimmension(6)
            Row {
                anchors.right: parent.right
                QGCLabel {
                    text: 'R '
                    font.pixelSize: ScreenTools.smallFontPixelSize
                    font.weight: Font.DemiBold
                    color: colorWhite
                }
                QGCLabel {
518
                    text: _controller.telemetryRRSSI + 'dBm'
dogmaphobic's avatar
dogmaphobic committed
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
                    width: getProportionalDimmension(30)
                    horizontalAlignment: Text.AlignRight
                    font.pixelSize: ScreenTools.smallFontPixelSize
                    font.weight: Font.DemiBold
                    color: colorWhite
                }
            }
            Row {
                anchors.right: parent.right
                QGCLabel {
                    text: 'L '
                    font.pixelSize: ScreenTools.smallFontPixelSize
                    font.weight: Font.DemiBold
                    color: colorWhite
                }
                QGCLabel {
535
                    text: _controller.telemetryLRSSI + 'dBm'
dogmaphobic's avatar
dogmaphobic committed
536 537 538 539 540 541 542 543 544 545 546 547 548 549
                    width: getProportionalDimmension(30)
                    horizontalAlignment: Text.AlignRight
                    font.pixelSize: ScreenTools.smallFontPixelSize
                    font.weight: Font.DemiBold
                    color: colorWhite
                }
            }
        }
    }


*/

} // Row
dogmaphobic's avatar
dogmaphobic committed
550 551