@ -1,6 +1,19 @@
@@ -1,6 +1,19 @@
import QtQuick 2.3
/ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* ( c ) 2009 - 2016 QGROUNDCONTROL PROJECT < http: / / w w w . q g r o u n d c o n t r o l . o r g >
*
* QGroundControl is licensed according to the terms in the file
* COPYING . md in the root of the source code directory .
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /
import QtQuick 2.3
import QtQuick . Dialogs 1.2
import QtQuick . Layouts 1.2
import QGroundControl 1.0
import QGroundControl . FactSystem 1.0
import QGroundControl . Controls 1.0
import QGroundControl . ScreenTools 1.0
FactTextField {
unitsLabel: fact ? fact.units : ""
@ -16,7 +29,8 @@ FactTextField {
@@ -16,7 +29,8 @@ FactTextField {
readonly property string _altModeAboveTerrainExtraUnits : qsTr ( "(Abv Terr)" )
readonly property string _altModeTerrainFrameExtraUnits : qsTr ( "(TerrF)" )
property string _altitudeModeExtraUnits : _altModeNoneExtraUnits
property string _altitudeModeExtraUnits : _altModeNoneExtraUnits
property Fact _aboveTerrainWarning : QGroundControl . settingsManager . planViewSettings . aboveTerrainWarning
onAltitudeModeChanged: updateAltitudeModeExtraUnits ( )
@ -29,6 +43,9 @@ FactTextField {
@@ -29,6 +43,9 @@ FactTextField {
_altitudeModeExtraUnits = _altModeAbsoluteExtraUnits
} else if ( altitudeMode === QGroundControl . AltitudeModeAboveTerrain ) {
_altitudeModeExtraUnits = _altModeAboveTerrainExtraUnits
if ( ! _aboveTerrainWarning . rawValue ) {
mainWindow . showComponentDialog ( aboveTerrainWarning , qsTr ( "Warning" ) , mainWindow . showDialogDefaultWidth , StandardButton . Ok )
}
} else if ( missionItem . altitudeMode === QGroundControl . AltitudeModeTerrainFrame ) {
_altitudeModeExtraUnits = _altModeTerrainFrameExtraUnits
} else {
@ -36,4 +53,26 @@ FactTextField {
@@ -36,4 +53,26 @@ FactTextField {
_altitudeModeExtraUnits = ""
}
}
Component {
id: aboveTerrainWarning
QGCViewDialog {
ColumnLayout {
anchors.left: parent . left
anchors.right: parent . right
spacing: ScreenTools . defaultFontPixelHeight
QGCLabel {
Layout.fillWidth: true
wrapMode: Text . WordWrap
text: qsTr ( "'Above Terrain' will set an absolute altitude for the item based on the terrain height at the location and the requested altitude above terrain. It does not send terrain heights to the vehicle." )
}
FactCheckBox {
text: qsTr ( "Don't show again" )
fact: _aboveTerrainWarning
}
}
}
}
}