SignalStrength.qml 1.34 KB
Newer Older
1 2
/****************************************************************************
 *
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
dogmaphobic's avatar
dogmaphobic committed
9 10 11 12 13


/**
 * @file
 *   @brief QGC Main Tool Signal Strength
14
 *   @author Gus Grubba <gus@auterion.com>
dogmaphobic's avatar
dogmaphobic committed
15 16
 */

17
import QtQuick 2.3
18 19 20

import QGroundControl.Controls  1.0
import QGroundControl.Palette   1.0
dogmaphobic's avatar
dogmaphobic committed
21 22 23 24 25

Item {
    id:     signalRoot
    width:  size
    height: size
26 27 28 29 30 31

    property real size:     50
    property real percent:  0

    QGCPalette { id: qgcPal }

dogmaphobic's avatar
dogmaphobic committed
32 33 34 35 36 37 38 39 40
    function getIcon() {
        if (percent < 20)
            return "/qmlimages/Signal0.svg"
        if (percent < 40)
            return "/qmlimages/Signal20.svg"
        if (percent < 60)
            return "/qmlimages/Signal40.svg"
        if (percent < 80)
            return "/qmlimages/Signal60.svg"
41
        if (percent < 95)
dogmaphobic's avatar
dogmaphobic committed
42 43 44
            return "/qmlimages/Signal80.svg"
        return "/qmlimages/Signal100.svg"
    }
45 46

    QGCColoredImage {
dogmaphobic's avatar
dogmaphobic committed
47 48 49 50 51
        source:             getIcon()
        fillMode:           Image.PreserveAspectFit
        anchors.fill:       parent
        color:              qgcPal.buttonText
        sourceSize.height:  size
dogmaphobic's avatar
dogmaphobic committed
52 53
    }
}