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

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

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

import QtQuick 2.5
import QtQuick.Controls 1.2
import QtGraphicalEffects 1.0
import QtQuick.Controls.Styles 1.2
28
import QtQuick.Dialogs 1.1
dogmaphobic's avatar
dogmaphobic committed
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51

import QGroundControl               1.0
import QGroundControl.Controls      1.0
import QGroundControl.ScreenTools   1.0

Row {
    spacing:  tbSpacing * 2

    function getSatStrength(count) {
        if (count < 1)
            return 0
        if (count < 4)
            return 20
        if (count < 6)
            return 40
        if (count < 8)
            return 60
        if (count < 10)
            return 80
        return 100
    }

    function getMessageColor() {
52 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;
        }
dogmaphobic's avatar
dogmaphobic committed
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
        // Cannot be so make make it obnoxious to show error
        console.log("Invalid vehicle message type")
        return "purple";
    }

    function getBatteryVoltageText() {
        if (activeVehicle.batteryVoltage > 0) {
            //-- TODO: Need number of cells so I can show cell voltage instead of total voltage
            //if (battNumCells && battNumCells.value) {
            //    return (activeVehicle.batteryVoltage / battNumCells.value).toFixed(2) + 'V'
            //} else {
                return activeVehicle.batteryVoltage.toFixed(1) + 'V'
            //}
        }
        return 'N/A';
    }

    function getBatteryPercentageText() {
80 81 82 83 84 85 86
        if(activeVehicle) {
            if(activeVehicle.batteryPercent > 98.9) {
                return "100%"
            }
            if(activeVehicle.batteryPercent > 0.1) {
                return activeVehicle.batteryPercent.toFixed(0) + "%"
            }
dogmaphobic's avatar
dogmaphobic committed
87 88 89 90 91 92 93 94
        }
        return "N/A"
    }

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

        Item {
            id:                 criticalMessage
            anchors.fill:       parent
103
            visible:            activeVehicle ? (activeVehicle.messageCount > 0 && isMessageImportant) : false
dogmaphobic's avatar
dogmaphobic committed
104 105
            Image {
                source:         "/qmlimages/Yield.svg"
dogmaphobic's avatar
dogmaphobic committed
106
                height:         mainWindow.tbCellHeight * 0.75
dogmaphobic's avatar
dogmaphobic committed
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
                fillMode:       Image.PreserveAspectFit
                mipmap:         true
                smooth:         true
                cache:          false
                visible:        isMessageImportant
                anchors.verticalCenter:   parent.verticalCenter
                anchors.horizontalCenter: parent.horizontalCenter
            }
            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 }
            }
            onVisibleChanged: {
                if(messages.visible) {
                    loopAnimation.start()
                } else {
                    loopAnimation.stop()
                }
            }
        }

        Item {
            anchors.fill:       parent
            visible:            !criticalMessage.visible
            Image {
                id:             messageIcon
                source:         "/qmlimages/Megaphone.svg"
dogmaphobic's avatar
dogmaphobic committed
136
                height:         mainWindow.tbCellHeight * 0.5
dogmaphobic's avatar
dogmaphobic committed
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
                fillMode:       Image.PreserveAspectFit
                mipmap:         true
                smooth:         true
                visible:        false
                anchors.verticalCenter:   parent.verticalCenter
                anchors.horizontalCenter: parent.horizontalCenter
            }
            ColorOverlay {
                anchors.fill:   messageIcon
                source:         messageIcon
                color:          getMessageColor()
            }
        }

        MouseArea {
            anchors.fill: parent
            onClicked: {
154
                mainWindow.showMessageArea()
dogmaphobic's avatar
dogmaphobic committed
155 156 157 158 159 160 161 162 163
            }
        }
    }

    //-------------------------------------------------------------------------
    //-- GPS Indicator
    Item {
        id:     satelitte
        width:  gpsRow.width * 1.1
dogmaphobic's avatar
dogmaphobic committed
164
        height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
165 166 167 168 169 170 171 172 173
        Row {
            id:     gpsRow
            height: parent.height
            Image {
                id:             gpsIcon
                source:         "/qmlimages/Gps.svg"
                fillMode:       Image.PreserveAspectFit
                mipmap:         true
                smooth:         true
dogmaphobic's avatar
dogmaphobic committed
174 175
                width:          mainWindow.tbCellHeight * 0.65
                height:         mainWindow.tbCellHeight * 0.5
176
                opacity:        activeVehicle ? (activeVehicle.satelliteCount < 1 ? 0.5 : 1) : 0.5
dogmaphobic's avatar
dogmaphobic committed
177 178 179
                anchors.verticalCenter: parent.verticalCenter
            }
            SignalStrength {
dogmaphobic's avatar
dogmaphobic committed
180
                size:           mainWindow.tbCellHeight * 0.5
181
                percent:        activeVehicle ? getSatStrength(activeVehicle.satelliteCount) : ""
dogmaphobic's avatar
dogmaphobic committed
182 183 184 185
                anchors.verticalCenter: parent.verticalCenter
            }
        }
        QGCLabel {
186
            text:           activeVehicle ? activeVehicle.satelliteCount : 0
dogmaphobic's avatar
dogmaphobic committed
187 188
            font.pixelSize: tbFontSmall
            color:          colorWhite
189
            opacity:        activeVehicle ? (activeVehicle.satelliteCount < 1 ? 0.5 : 1) : 0.5
dogmaphobic's avatar
dogmaphobic committed
190 191 192 193 194 195 196 197 198 199 200
            anchors.top:    parent.top
            anchors.leftMargin: gpsIcon.width
            anchors.left:   parent.left
        }
    }

    //-------------------------------------------------------------------------
    //-- RC RSSI
    Item {
        id:     rcRssi
        width:  rssiRow.width * 1.1
dogmaphobic's avatar
dogmaphobic committed
201
        height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
202 203 204 205 206 207 208 209
        Row {
            id:     rssiRow
            height: parent.height
            Image {
                source:         "/qmlimages/RC.svg"
                fillMode:       Image.PreserveAspectFit
                mipmap:         true
                smooth:         true
dogmaphobic's avatar
dogmaphobic committed
210 211
                width:          mainWindow.tbCellHeight * 0.65
                height:         mainWindow.tbCellHeight * 0.5
212
                opacity:        activeVehicle ? (activeVehicle.rcRSSI < 1 ? 0.5 : 1) : 0.5
dogmaphobic's avatar
dogmaphobic committed
213 214 215
                anchors.verticalCenter: parent.verticalCenter
            }
            SignalStrength {
dogmaphobic's avatar
dogmaphobic committed
216
                size:           mainWindow.tbCellHeight * 0.5
217
                percent:        activeVehicle ? activeVehicle.rcRSSI : 0
dogmaphobic's avatar
dogmaphobic committed
218 219 220
                anchors.verticalCenter: parent.verticalCenter
            }
        }
221 222 223 224 225 226 227
        MouseArea {
            anchors.fill:   parent
            onClicked: {
                var centerX = mapToItem(toolBar, x, y).x + (width / 2)
                mainWindow.showPopUp(rcRSSIInfo, centerX)
            }
        }
dogmaphobic's avatar
dogmaphobic committed
228 229
    }

dogmaphobic's avatar
dogmaphobic committed
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
    //-------------------------------------------------------------------------
    //-- Telemetry RSSI
    Item {
        id:         telemRssi
        width:      telemIcon.width
        height:     mainWindow.tbCellHeight
        visible:    _controller.telemetryLRSSI < 0
        Image {
            id:             telemIcon
            source:         "/qmlimages/TelemRSSI.svg"
            fillMode:       Image.PreserveAspectFit
            mipmap:         true
            smooth:         true
            height:         parent.height * 0.5
            width:          height * 1.5
            visible:        false
            anchors.verticalCenter: parent.verticalCenter
        }
        ColorOverlay {
            id:             telemOverlay
            anchors.fill:   telemIcon
            source:         telemIcon
            color:          getRSSIColor(_controller.telemetryLRSSI)
        }
        MouseArea {
            anchors.fill:   parent
            onClicked: {
                var centerX = mapToItem(toolBar, x, y).x + (width / 2)
                mainWindow.showPopUp(telemRSSIInfo, centerX)
            }
        }
    }

dogmaphobic's avatar
dogmaphobic committed
263 264 265 266 267
    //-------------------------------------------------------------------------
    //-- Battery Indicator
    Item {
        id: batteryStatus
        width:  battRow.width * 1.1
dogmaphobic's avatar
dogmaphobic committed
268
        height: mainWindow.tbCellHeight
269
        opacity: activeVehicle ? ((activeVehicle.batteryVoltage > 0) ? 1 : 0.5) : 0.5
dogmaphobic's avatar
dogmaphobic committed
270 271
        Row {
            id:         battRow
dogmaphobic's avatar
dogmaphobic committed
272
            height:     mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
273
            anchors.horizontalCenter: parent.horizontalCenter
274 275 276 277 278 279
            Image {
                source:         "/qmlimages/Battery.svg"
                fillMode:       Image.PreserveAspectFit
                mipmap:         true
                smooth:         true
                height:         mainWindow.tbCellHeight * 0.65
dogmaphobic's avatar
dogmaphobic committed
280 281
                anchors.verticalCenter: parent.verticalCenter
            }
282 283 284 285
            QGCLabel {
                text:           getBatteryPercentageText()
                font.pixelSize: tbFontLarge
                color:          getBatteryColor()
dogmaphobic's avatar
dogmaphobic committed
286
                anchors.verticalCenter: parent.verticalCenter
287 288 289 290 291 292 293
            }
        }
        MouseArea {
            anchors.fill:   parent
            onClicked: {
                var centerX = mapToItem(toolBar, x, y).x + (width / 2)
                mainWindow.showPopUp(batteryInfo, centerX)
dogmaphobic's avatar
dogmaphobic committed
294 295 296 297 298 299 300
            }
        }
    }

    //-------------------------------------------------------------------------
    //-- Vehicle Selector
    QGCButton {
Don Gagne's avatar
Don Gagne committed
301 302 303
        id:                     vehicleSelectorButton
        width:                  ScreenTools.defaultFontPixelSize * 12
        height:                 mainWindow.tbButtonWidth
304
        text:                   "Vehicle " + (activeVehicle ? activeVehicle.id : "None")
Don Gagne's avatar
Don Gagne committed
305
        visible:                QGroundControl.multiVehicleManager.vehicles.count > 1
dogmaphobic's avatar
dogmaphobic committed
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 338 339 340 341 342 343 344 345 346 347 348
        anchors.verticalCenter: parent.verticalCenter

        menu: vehicleMenu

        Menu {
            id: vehicleMenu
        }

        Component {
            id: vehicleMenuItemComponent

            MenuItem {
                checkable:      true
                checked:        vehicle.active
                onTriggered:    multiVehicleManager.activeVehicle = vehicle

                property int vehicleId: Number(text.split(" ")[1])
                property var vehicle:   multiVehicleManager.getVehicleById(vehicleId)
            }
        }

        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
            for (var i=0; i<multiVehicleManager.vehicles.count; i++) {
                var vehicle = multiVehicleManager.vehicles.get(i)
                var menuItem = vehicleMenuItemComponent.createObject(null, { "text": "Vehicle " + vehicle.id })
                vehicleMenuItems.push(menuItem)
                vehicleMenu.insertItem(i, menuItem)
            }
        }

        Component.onCompleted: updateVehicleMenu()

        Connections {
            target:         multiVehicleManager.vehicles
Don Gagne's avatar
Don Gagne committed
349
            onCountChanged: vehicleSelectorButton.updateVehicleMenu
dogmaphobic's avatar
dogmaphobic committed
350 351 352 353 354 355 356 357
        }
    }

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

    Item {
        width:  selectorRow.width * 1.1
dogmaphobic's avatar
dogmaphobic committed
358
        height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
359 360 361 362 363 364 365
        anchors.verticalCenter: parent.verticalCenter
        Row {
            id:                 selectorRow
            spacing:            tbSpacing
            anchors.verticalCenter:   parent.verticalCenter
            anchors.horizontalCenter: parent.horizontalCenter
            Image {
dogmaphobic's avatar
dogmaphobic committed
366 367
                width:          mainWindow.tbCellHeight * 0.65
                height:         mainWindow.tbCellHeight * 0.65
dogmaphobic's avatar
dogmaphobic committed
368 369 370 371 372 373 374
                fillMode:       Image.PreserveAspectFit
                mipmap:         true
                smooth:         true
                source:         "/qmlimages/Quad.svg"
                anchors.verticalCenter: parent.verticalCenter
            }
            QGCLabel {
375
                text:           activeVehicle ? activeVehicle.flightMode : "N/A"
dogmaphobic's avatar
dogmaphobic committed
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
                font.pixelSize: tbFontLarge
                color:          colorWhite
                anchors.verticalCenter: parent.verticalCenter
            }
        }

        Menu {
            id: flightModesMenu
        }

        Component {
            id: flightModeMenuItemComponent

            MenuItem {
                checkable:      true
391 392 393 394 395 396
                checked:        activeVehicle ? (activeVehicle.flightMode === text) : false
                onTriggered: {
                    if(activeVehicle) {
                        activeVehicle.flightMode = text
                    }
                }
dogmaphobic's avatar
dogmaphobic committed
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
            }
        }

        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 {
            target:                 multiVehicleManager
            onActiveVehicleChanged: parent.updateFlightModesMenu
        }

        MouseArea {
426
            visible: activeVehicle ? activeVehicle.flightModeSetAvailable : false
dogmaphobic's avatar
dogmaphobic committed
427 428 429 430 431 432 433 434 435 436 437 438
            anchors.fill:   parent
            onClicked: {
                flightModesMenu.popup()
            }
        }
    }

    //-------------------------------------------------------------------------
    //-- Arm/Disarm

    Item {
        width:  armCol.width * 1.1
dogmaphobic's avatar
dogmaphobic committed
439
        height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
440 441 442 443 444 445
        anchors.verticalCenter: parent.verticalCenter
        Row {
            id:                 armCol
            spacing:            tbSpacing * 0.5
            anchors.verticalCenter: parent.verticalCenter
            Image {
dogmaphobic's avatar
dogmaphobic committed
446 447
                width:          mainWindow.tbCellHeight * 0.5
                height:         mainWindow.tbCellHeight * 0.5
dogmaphobic's avatar
dogmaphobic committed
448 449 450
                fillMode:       Image.PreserveAspectFit
                mipmap:         true
                smooth:         true
451
                source:         activeVehicle ? (activeVehicle.armed ? "/qmlimages/Disarmed.svg" : "/qmlimages/Armed.svg") : "/qmlimages/Disarmed.svg"
dogmaphobic's avatar
dogmaphobic committed
452 453 454
                anchors.verticalCenter: parent.verticalCenter
            }
            QGCLabel {
455
                text:           activeVehicle ? (activeVehicle.armed ? "Armed" : "Disarmed") : ""
dogmaphobic's avatar
dogmaphobic committed
456 457 458 459 460 461 462 463
                font.pixelSize: tbFontLarge
                color:          colorWhite
                anchors.verticalCenter: parent.verticalCenter
            }
        }
        MouseArea {
            anchors.fill:   parent
            onClicked: {
464 465 466 467 468 469 470 471
                armDialog.visible = true
            }
        }
        MessageDialog {
            id:         armDialog
            visible:    false
            icon:       StandardIcon.Warning
            standardButtons: StandardButton.Yes | StandardButton.No
472 473
            title:      activeVehicle ? (activeVehicle.armed ? "Disarming Vehicle" : "Arming Vehicle") : ""
            text:       activeVehicle ? (activeVehicle.armed ? "Do you want to disarm? This will cut power to all motors." : "Do you want to arm? This will enable all motors.") : ""
474
            onYes: {
dogmaphobic's avatar
dogmaphobic committed
475
                activeVehicle.armed = !activeVehicle.armed
476
                armDialog.visible = false
dogmaphobic's avatar
dogmaphobic committed
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
            }
        }
    }

/*
    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
498
        height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
499 500 501 502 503 504 505
        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
506
            width: mainWindow.tbCellHeight * 0.7
dogmaphobic's avatar
dogmaphobic committed
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
            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
529
        height: mainWindow.tbCellHeight
dogmaphobic's avatar
dogmaphobic committed
530 531 532 533 534 535 536
        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
537
            width: mainWindow.tbCellHeight * 0.7
dogmaphobic's avatar
dogmaphobic committed
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
            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 {
558
                    text: _controller.telemetryRRSSI + 'dBm'
dogmaphobic's avatar
dogmaphobic committed
559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
                    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 {
575
                    text: _controller.telemetryLRSSI + 'dBm'
dogmaphobic's avatar
dogmaphobic committed
576 577 578 579 580 581 582 583 584 585 586 587 588 589
                    width: getProportionalDimmension(30)
                    horizontalAlignment: Text.AlignRight
                    font.pixelSize: ScreenTools.smallFontPixelSize
                    font.weight: Font.DemiBold
                    color: colorWhite
                }
            }
        }
    }


*/

} // Row
dogmaphobic's avatar
dogmaphobic committed
590 591