QGCInstrumentWidget.qml 4.35 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
/*=====================================================================

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
dogmaphobic's avatar
dogmaphobic committed
26
 *   @brief QGC Fly View Widgets
dogmaphobic's avatar
dogmaphobic committed
27 28 29 30 31
 *   @author Gus Grubba <mavlink@grubba.com>
 */

import QtQuick 2.4

Don Gagne's avatar
Don Gagne committed
32 33 34
import QGroundControl.Controls      1.0
import QGroundControl.ScreenTools   1.0
import QGroundControl.FactSystem    1.0
35
import QGroundControl.FlightMap     1.0
dogmaphobic's avatar
dogmaphobic committed
36

37 38 39 40 41 42
Rectangle {
    id:     instrumentPanel
    height: compass.y + compass.height + _topBottomMargin
    width:  size
    radius: size / 2
    color:  isSatellite ? Qt.rgba(1,1,1,0.75) : Qt.rgba(0,0,0,0.75)
dogmaphobic's avatar
dogmaphobic committed
43

44 45 46
    property alias  heading:        compass.heading
    property alias  rollAngle:      attitude.rollAngle
    property alias  pitchAngle:     attitude.pitchAngle
dogmaphobic's avatar
dogmaphobic committed
47
    property real   size:           _defaultSize
48 49
    property bool   isSatellite:    false
    property bool   active:         false
50 51
    property var    qgcView
    property real   maxHeight
52

Don Gagne's avatar
Don Gagne committed
53 54 55 56 57
    property Fact   _emptyFact:         Fact { }
    property Fact   groundSpeedFact:    _emptyFact
    property Fact   airSpeedFact:       _emptyFact
    property Fact   altitudeFact:       _emptyFact

dogmaphobic's avatar
dogmaphobic committed
58 59 60 61 62 63
    property real   _defaultSize:   ScreenTools.defaultFontPixelSize * (9)

    property real   _sizeRatio:     ScreenTools.isTinyScreen ? (size / _defaultSize) * 0.5 : size / _defaultSize
    property real   _bigFontSize:   ScreenTools.defaultFontPixelSize * 2.5  * _sizeRatio
    property real   _normalFontSize:ScreenTools.defaultFontPixelSize * 1.5  * _sizeRatio
    property real   _labelFontSize: ScreenTools.defaultFontPixelSize * 0.75 * _sizeRatio
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
    property real   _spacing:       ScreenTools.defaultFontPixelSize * 0.33
    property real   _topBottomMargin: (size * 0.05) / 2
    property real   _availableValueHeight: maxHeight - (attitude.height + _spacer1.height + _spacer2.height + compass.height + (_spacing * 4))

    MouseArea {
        anchors.fill: parent
        onClicked: _valuesWidget.showPicker()
    }

    QGCAttitudeWidget {
        id:             attitude
        y:              _topBottomMargin
        size:           parent.width * 0.95
        active:         active
        anchors.horizontalCenter: parent.horizontalCenter
    }

    Rectangle {
        id:                 _spacer1
        anchors.topMargin:  _spacing
        anchors.top:        attitude.bottom
        height:             1
        width:              parent.width * 0.9
        color:              isSatellite ? Qt.rgba(0,0,0,0.25) : Qt.rgba(1,1,1,0.25)
        anchors.horizontalCenter: parent.horizontalCenter
    }

    ValuesWidget {
        id:                 _valuesWidget
        anchors.topMargin:  _spacing
        anchors.top:        _spacer1.bottom
        width:              parent.width
        qgcView:            instrumentPanel.qgcView
        textColor:          isSatellite ? "black" : "white"
        maxHeight:          _availableValueHeight
    }
100

dogmaphobic's avatar
dogmaphobic committed
101
    Rectangle {
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
        id:                 _spacer2
        anchors.topMargin:  _spacing
        anchors.top:        _valuesWidget.bottom
        height:             1
        width:              parent.width * 0.9
        color:              isSatellite ? Qt.rgba(0,0,0,0.25) : Qt.rgba(1,1,1,0.25)
        anchors.horizontalCenter: parent.horizontalCenter
    }

    QGCCompassWidget {
        id:                 compass
        anchors.topMargin:  _spacing
        anchors.top:        _spacer2.bottom
        size:               parent.width * 0.95
        active:             active
        anchors.horizontalCenter: parent.horizontalCenter
118
    }
dogmaphobic's avatar
dogmaphobic committed
119
}