QGCInstrumentWidget.qml 5.34 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

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

38 39 40 41 42
Rectangle {
    id:     instrumentPanel
    height: compass.y + compass.height + _topBottomMargin
    width:  size
    radius: size / 2
43
    color:  _backgroundColor
dogmaphobic's avatar
dogmaphobic committed
44

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

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

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

60 61 62 63 64 65 66
    property color  _backgroundColor:   isSatellite ? Qt.rgba(1,1,1,0.75) : Qt.rgba(0,0,0,0.75)
    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
    property real   _spacing:           ScreenTools.defaultFontPixelSize * 0.33
    property real   _topBottomMargin:   (size * 0.05) / 2
67 68 69 70 71 72 73 74 75 76 77
    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
Don Gagne's avatar
Don Gagne committed
78
        active:         instrumentPanel.active
79 80 81
        anchors.horizontalCenter: parent.horizontalCenter
    }

82
    Image {
83
        id:                 gearThingy
84 85 86 87
        anchors.bottom:     attitude.bottom
        anchors.right:      attitude.right
        source:             "/res/gear.svg"
        mipmap:             true
88
        opacity:            0.5
89 90
        width:              attitude.width * 0.15
        fillMode:           Image.PreserveAspectFit
91 92
        visible:            QGroundControl.multiVehicleManager.activeVehicle

93 94 95 96 97 98 99
        MouseArea {
            anchors.fill:   parent
            hoverEnabled:   true
            onEntered:      gearThingy.opacity = 0.85
            onExited:       gearThingy.opacity = 0.5
            onClicked:      _valuesWidget.showPicker()
        }
100 101
    }

102 103 104 105 106 107 108 109 110 111
    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
    }

112
    InstrumentSwipeView {
113 114 115 116 117 118
        id:                 _valuesWidget
        anchors.topMargin:  _spacing
        anchors.top:        _spacer1.bottom
        width:              parent.width
        qgcView:            instrumentPanel.qgcView
        textColor:          isSatellite ? "black" : "white"
119
        backgroundColor:    _backgroundColor
120 121
        maxHeight:          _availableValueHeight
    }
122

123 124 125 126 127 128 129 130 131 132
    Component {
        id: valuesPage

        Rectangle {
            width: 100
            height: 100
            color: index == 0 ? "red" : "blue"
        }
    }

dogmaphobic's avatar
dogmaphobic committed
133
    Rectangle {
134 135 136 137 138 139 140 141 142 143 144 145 146 147
        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
Don Gagne's avatar
Don Gagne committed
148
        active:             instrumentPanel.active
149
        anchors.horizontalCenter: parent.horizontalCenter
150
    }
dogmaphobic's avatar
dogmaphobic committed
151
}