VehicleRotationCal.qml 1.86 KB
Newer Older
1 2 3 4 5 6 7 8
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
9 10


11 12
import QtQuick 2.3
import QtQuick.Controls 1.2
13
import QtQuick.Controls.Styles 1.4
14 15

import QGroundControl.Palette 1.0
16
import QGroundControl.ScreenTools 1.0
17 18 19 20 21 22 23 24

Rectangle {
    // Indicates whether calibration is valid for this control
    property bool calValid: false

    // Indicates whether the control is currently being calibrated
    property bool calInProgress: false

Don Gagne's avatar
Don Gagne committed
25
    // Text to show while calibration is in progress
Tomaz Canabrava's avatar
Tomaz Canabrava committed
26
    property string calInProgressText: qsTr("Hold Still")
Don Gagne's avatar
Don Gagne committed
27

28 29 30
    // Image source
    property var imageSource: ""

Don Gagne's avatar
Don Gagne committed
31 32
    property var __qgcPal: QGCPalette { colorGroupEnabled: enabled }

33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
    color:  calInProgress ? "yellow" : (calValid ? "green" : "red")

    Rectangle {
        readonly property int inset: 5

        x:      inset
        y:      inset
        width:  parent.width - (inset * 2)
        height: parent.height - (inset * 2)
        color: qgcPal.windowShade

        Image {
            width:      parent.width
            height:     parent.height
            source:     imageSource
            fillMode:   Image.PreserveAspectFit
            smooth: true
        }

52
        QGCLabel {
53 54 55 56
            width:                  parent.width
            height:                 parent.height
            horizontalAlignment:    Text.AlignHCenter
            verticalAlignment:      Text.AlignBottom
57
            font.pointSize:         ScreenTools.mediumFontPointSize
Tomaz Canabrava's avatar
Tomaz Canabrava committed
58
            text:                   calInProgress ? calInProgressText : (calValid ? qsTr("Completed") : qsTr("Incomplete"))
59 60 61
        }
    }
}