FlightDisplayViewWidgets.qml 1.38 KB
Newer Older
1 2
/****************************************************************************
 *
Gus Grubba's avatar
Gus Grubba committed
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.
 *
 ****************************************************************************/
9

10 11
import QtQuick                  2.3
import QtQuick.Controls         1.2
12
import QtQuick.Controls.Styles  1.4
13
import QtQuick.Dialogs          1.2
14 15
import QtLocation               5.3
import QtPositioning            5.3
16
import QtQuick.Layouts          1.2
17

Gus Grubba's avatar
Gus Grubba committed
18 19 20 21 22 23
import QGroundControl               1.0
import QGroundControl.ScreenTools   1.0
import QGroundControl.Controls      1.0
import QGroundControl.Palette       1.0
import QGroundControl.Vehicle       1.0
import QGroundControl.FlightMap     1.0
24

25 26 27
Column {
    id:         _root
    spacing:    ScreenTools.defaultFontPixelHeight * 0.25
28

29
    property var    missionController
30
    property real   availableHeight
31

32 33 34 35
    Loader {
        width: parent.width
        source: QGroundControl.settingsManager.flyViewSettings.alternateInstrumentPanel.rawValue ?
                    "qrc:/qml/QGCInstrumentWidgetAlternate.qml" : "qrc:/qml/QGCInstrumentWidget.qml"
36

37 38
        property real maxHeight:    availableHeight - y
        property bool showValues:   !QGroundControl.airspaceManager.airspaceVisible
39
    }
40
}