From a6cabdf4747b868debc8c0e0c17b4b1ed00a460e Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Tue, 28 Apr 2015 18:32:25 -0700 Subject: [PATCH] Add Reset to Default, Set RC Param, warning --- src/QmlControls/ParameterEditor.qml | 42 ++++++++++++++++++++++++----- 1 file changed, 36 insertions(+), 6 deletions(-) diff --git a/src/QmlControls/ParameterEditor.qml b/src/QmlControls/ParameterEditor.qml index a92ccb67be..28d2c8c7fb 100644 --- a/src/QmlControls/ParameterEditor.qml +++ b/src/QmlControls/ParameterEditor.qml @@ -61,7 +61,7 @@ Rectangle { property real __textWidth: __textControl.contentWidth Item { - id: editorOverlay + id: __editorOverlay anchors.fill: parent visible: false @@ -105,7 +105,7 @@ Rectangle { text: "Cancel" onClicked: { - editorOverlay.visible = false + __editorOverlay.visible = false } } @@ -117,7 +117,7 @@ Rectangle { onClicked: { __editorOverlayFact.value = valueField.text - editorOverlay.visible = false + __editorOverlay.visible = false } } } @@ -176,10 +176,40 @@ Rectangle { QGCLabel { text: "Default value:" } QGCLabel { text: __editorOverlayFact.defaultValueAvailable ? __editorOverlayFact.defaultValue : "none" } } + + QGCLabel { + width: parent.width + wrapMode: Text.WordWrap + text: "Warning: Modifying parameters while vehicle is in flight can lead to vehicle instability and possible vehicle loss. " + + "Make sure you know what you are doing and double-check your values before Save!" + } + } // Column - Fact information + } // Column - Header + Fact information + + + QGCButton { + anchors.rightMargin: __textWidth + anchors.right: rcButton.left + anchors.bottom: parent.bottom + visible: __editorOverlayFact.defaultValueAvailable + text: "Reset to default" + + onClicked: { + __editorOverlayFact.value = __editorOverlayFact.defaultValue + __editorOverlay.visible = false } } - } - } + + QGCButton { + id: rcButton + anchors.right: parent.right + anchors.bottom: parent.bottom + visible: __editorOverlayFact.defaultValueAvailable + text: "Set RC to Param..." + onClicked: __controller.setRCToParam(__editorOverlayFact.name) + } + } // Rectangle - editorDialog + } // Item - editorOverlay Component { id: factRowsComponent @@ -250,7 +280,7 @@ Rectangle { onClicked: { __editorOverlayFact = modelFact - editorOverlay.visible = true + __editorOverlay.visible = true } } } -- GitLab