QGCInstrumentWidget.qml 6 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
37
import QGroundControl.Palette       1.0
dogmaphobic's avatar
dogmaphobic committed
38

Don Gagne's avatar
Don Gagne committed
39
Item {
40
    id:     instrumentPanel
Don Gagne's avatar
Don Gagne committed
41
    height: instrumentColumn.y + instrumentColumn.height + _topBottomMargin
42
    width:  size
dogmaphobic's avatar
dogmaphobic committed
43

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

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

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

59
    property color  _backgroundColor:   qgcPal.window
60 61
    property real   _spacing:           ScreenTools.defaultFontPixelSize * 0.33
    property real   _topBottomMargin:   (size * 0.05) / 2
Don Gagne's avatar
Don Gagne committed
62 63 64 65 66
    property real   _availableValueHeight: maxHeight - (attitudeWidget.height + _spacer1.height + _spacer2.height + (_spacing * 4)) - (_showCompass ? compass.height : 0)
    property var    _activeVehicle:     QGroundControl.multiVehicleManager.activeVehicle

    readonly property bool _showCompass:    !ScreenTools.isShortScreen

67 68
    QGCPalette { id: qgcPal }

Don Gagne's avatar
Don Gagne committed
69 70 71 72 73 74
    Rectangle {
        anchors.left:   parent.left
        anchors.right:  parent.right
        height:         (_showCompass ? instrumentColumn.height : attitudeWidget.height) + (_topBottomMargin * 2)
        radius:         size / 2
        color:          _backgroundColor
75 76
        border.width:   1
        border.color:   lightBorders ? qgcPal.mapWidgetBorderLight : qgcPal.mapWidgetBorderDark
Don Gagne's avatar
Don Gagne committed
77
    }
78 79 80 81 82 83

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

Don Gagne's avatar
Don Gagne committed
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
    Column {
        id:                 instrumentColumn
        anchors.topMargin:  _topBottomMargin
        anchors.top:        parent.top
        anchors.left:       parent.left
        anchors.right:      parent.right
        spacing:            _spacing

        Item {
            width:  parent.width
            height: attitudeWidget.height

            QGCAttitudeWidget {
                id:             attitudeWidget
                size:           parent.width * 0.95
                active:         instrumentPanel.active
                anchors.horizontalCenter: parent.horizontalCenter
            }

            Image {
                id:                 gearThingy
                anchors.bottom:     attitudeWidget.bottom
                anchors.right:      attitudeWidget.right
dogmaphobic's avatar
dogmaphobic committed
107
                source:             qgcPal.globalTheme == QGCPalette.Light ? "/res/gear-black.svg" : "/res/gear-white.svg"
Don Gagne's avatar
Don Gagne committed
108 109 110 111 112 113 114 115 116 117 118 119 120
                mipmap:             true
                opacity:            0.5
                width:              attitudeWidget.width * 0.15
                fillMode:           Image.PreserveAspectFit

                MouseArea {
                    anchors.fill:   parent
                    hoverEnabled:   true
                    onEntered:      gearThingy.opacity = 0.85
                    onExited:       gearThingy.opacity = 0.5
                    onClicked:      _valuesWidget.showPicker()
                }
            }
121
        }
122

Don Gagne's avatar
Don Gagne committed
123 124 125 126
        Rectangle {
            id:                 _spacer1
            height:             1
            width:              parent.width * 0.9
127
            color:              qgcPal.text
Don Gagne's avatar
Don Gagne committed
128 129
            anchors.horizontalCenter: parent.horizontalCenter
        }
130

Don Gagne's avatar
Don Gagne committed
131 132 133 134 135 136 137
        Item {
            width:  parent.width
            height: _valuesWidget.height

            Rectangle {
                anchors.fill:   _valuesWidget
                color:          _backgroundColor
Don Gagne's avatar
Don Gagne committed
138
                visible:        !_showCompass
Don Gagne's avatar
Don Gagne committed
139 140 141 142 143 144 145
                radius:         _spacing
            }

            InstrumentSwipeView {
                id:                 _valuesWidget
                width:              parent.width
                qgcView:            instrumentPanel.qgcView
146
                textColor:          qgcPal.text
Don Gagne's avatar
Don Gagne committed
147 148 149 150
                backgroundColor:    _backgroundColor
                maxHeight:          _availableValueHeight
            }
        }
151

152
        Rectangle {
Don Gagne's avatar
Don Gagne committed
153 154 155
            id:                 _spacer2
            height:             1
            width:              parent.width * 0.9
156
            color:              qgcPal.text
Don Gagne's avatar
Don Gagne committed
157 158
            visible:            _showCompass
            anchors.horizontalCenter: parent.horizontalCenter
159 160
        }

Don Gagne's avatar
Don Gagne committed
161 162 163 164 165 166 167
        QGCCompassWidget {
            id:                 compass
            size:               parent.width * 0.95
            active:             instrumentPanel.active
            visible:            _showCompass
            anchors.horizontalCenter: parent.horizontalCenter
        }
168
    }
dogmaphobic's avatar
dogmaphobic committed
169
}