Commit 9df678f1 authored by Valentin Platzgummer's avatar Valentin Platzgummer

wimaMenu variable size added

parent 3b151cb4
...@@ -546,6 +546,59 @@ QGCView { ...@@ -546,6 +546,59 @@ QGCView {
visible: singleVehicleView.checked && !QGroundControl.videoManager.fullScreen visible: singleVehicleView.checked && !QGroundControl.videoManager.fullScreen
} }
/*Rectangle {
z: _panel.z + 4
anchors.left: parent.left
anchors.bottom: parent.bottom
anchors.leftMargin: ScreenTools.defaultFontPixelWidth
anchors.bottomMargin: ScreenTools.defaultFontPixelWidth
color: "red"
width: childrenRect.width
height: childrenRect.height
Rectangle {
height: 20
width: 100
anchors.bottom: innerRectangle.top
anchors.left: parent.left
color: "green"
}
Rectangle {
id:innerRectangle
height: 100
width: 100
anchors.bottom: parent.bottom
anchors.left: parent.left
color: "blue"
}
MouseArea {
property bool value: false
anchors.fill: innerRectangle
onClicked: {
if (value) {
innerRectangle.height /= 2
innerRectangle.width /= 2
value = false
}
else
{
innerRectangle.height *= 2
innerRectangle.width *= 2
value = true
}
}
}
}*/
FlightDisplayWimaMenu { FlightDisplayWimaMenu {
id: wimaMenu id: wimaMenu
z: _panel.z + 4 z: _panel.z + 4
...@@ -553,6 +606,8 @@ QGCView { ...@@ -553,6 +606,8 @@ QGCView {
anchors.bottom: parent.bottom anchors.bottom: parent.bottom
anchors.leftMargin: ScreenTools.defaultFontPixelWidth anchors.leftMargin: ScreenTools.defaultFontPixelWidth
anchors.bottomMargin: ScreenTools.defaultFontPixelWidth anchors.bottomMargin: ScreenTools.defaultFontPixelWidth
maxWidth: 300
maxHeight: 500
wimaController: wimaController wimaController: wimaController
......
...@@ -21,14 +21,16 @@ Item { ...@@ -21,14 +21,16 @@ Item {
id: _root id: _root
height: mainFrame.height height: mainFrame.height
width: mainFrame.width width: mainFrame.width
property var maxHeight: 500
property var maxWidth: 300 property int maxHeight: 500
property int maxWidth: 300
property var wimaController // must be provided by the user property var wimaController // must be provided by the user
property var planMasterController // must be provided by the user property var planMasterController // must be provided by the user
property bool _controllerValid: planMasterController !== undefined property bool _controllerValid: planMasterController !== undefined
property real _controllerProgressPct: _controllerValid ? planMasterController.missionController.progressPct : 0 property real _controllerProgressPct: _controllerValid ? planMasterController.missionController.progressPct : 0
property double _margins: ScreenTools.defaultPixelWidth*0.3 property real _margins: ScreenTools.defaultPixelWidth*0.3
signal initSmartRTL(); signal initSmartRTL();
...@@ -58,13 +60,13 @@ Item { ...@@ -58,13 +60,13 @@ Item {
// box containing all items // box containing all items
Rectangle { // maybe replace with column and remove anchors => dynamic height: Rectangle { // maybe replace with column and remove anchors => dynamic height:
id: mainFrame id: mainFrame
anchors.left: parent.left height: enableWima.height + flickable.height
anchors.bottom: parent.bottom width: Math.max(enableWima.width, flickable.width)
height: enableWima.enableWimaBoolean ? Math.min(parent.maxHeight, enableWima.height + flickable.contentHeight + 2*_margins) : enableWima.height + _margins
width: enableWima.enableWimaBoolean ? Math.min(parent.maxWidth, flickable.contentWidth + 2*_margins) : enableWima.width
color: enableWima.enableWimaBoolean ? qgcPal.window : "transparent" color: enableWima.enableWimaBoolean ? qgcPal.window : "transparent"
radius: ScreenTools.defaultFontPixelHeight / 4 radius: Math.min(height, width)/50
clip: false clip: true
property real _margins: _root._margins
Component.onCompleted: { Component.onCompleted: {
console.log('onCompleted') console.log('onCompleted')
...@@ -72,46 +74,65 @@ Item { ...@@ -72,46 +74,65 @@ Item {
console.log(height) console.log(height)
console.log('width') console.log('width')
console.log(width) console.log(width)
console.log(enableWima.width)
console.log(enableWima.height)
console.log(flickable.contentWidth)
console.log(flickable.contentHeight)
width = enableWima.width + flickable.contentWidth + 2*_margins
console.log('width')
console.log(width)
} }
onHeightChanged: { onHeightChanged: {
console.log('height') console.log('height')
console.log(height) console.log(height)
_root.height = mainFrame.height //_root.height = mainFrame.height
} }
onWidthChanged: { onWidthChanged: {
console.log('width') console.log('width')
console.log(width) console.log(width)
_root.width = mainFrame.width //_root.width = mainFrame.width
} }
// checkbox to enable/ disable wima // checkbox to enable/ disable wima
SliderSwitch { SliderSwitch {
id: enableWima id: enableWima
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: flickable.horizontalCenter
anchors.topMargin: _margins anchors.bottom: flickable.top
anchors.top: parent.top
confirmText: enableWimaBoolean ? qsTr("disable WiMA") : qsTr("enable WiMA") confirmText: enableWimaBoolean ? qsTr("disable WiMA") : qsTr("enable WiMA")
property var enableWimaFact: wimaController.enableWimaController property var enableWimaFact: wimaController.enableWimaController
property bool enableWimaBoolean: enableWimaFact.value property bool enableWimaBoolean: enableWimaFact.value
Component.onCompleted: { /*onXChanged: {
enableWimaFact.value = false console.log('x')
}
onYChanged: {
console.log('y')
} }
Component.onCompleted: {
enableWimaFact.value = true
}*/
onAccept: { onAccept: {
if (enableWimaBoolean) { if (enableWimaBoolean) {
enableWimaFact.value = false enableWimaFact.value = false
enableWimaMouseArea.enabled = true
timer.start()
} else { } else {
enableWimaFact.value = true enableWimaFact.value = true
enableWimaMouseArea.enabled = false
timer.stop()
} }
} }
} }
/*MouseArea { MouseArea {
id: enableWimaMouseArea
anchors.fill: enableWima anchors.fill: enableWima
hoverEnabled: true hoverEnabled: true
...@@ -119,48 +140,68 @@ Item { ...@@ -119,48 +140,68 @@ Item {
property var enableWimaFact: wimaController.enableWimaController property var enableWimaFact: wimaController.enableWimaController
property bool enableWimaBoolean: enableWimaFact.value property bool enableWimaBoolean: enableWimaFact.value
onEntered: { onEntered: {
timer.stop()
enableWima.visible = true enableWima.visible = true
} enabled = false
onExited: {
if (enableWimaBoolean === false) {
timer.start() timer.start()
} }
}
onExited: timer.start()
} }
Timer { Timer {
id: timer id: timer
interval: 1000 interval: 3000
running: false running: false
repeat: false repeat: false
onTriggered: enableWima.visible = false onTriggered: triggerHandler()
}*/
function triggerHandler() {
if (enableWima.enableWimaBoolean === false) {
enableWima.visible = false
enableWimaMouseArea.enabled = true
}
}
Component.onCompleted: {
start()
}
}
QGCFlickable { QGCFlickable {
id: flickable id: flickable
clip: false clip: true
anchors.top: enableWima.bottom visible: enableWima.enableWimaBoolean
anchors.left: parent.left anchors.left: parent.left
contentHeight: mainColumn.height anchors.bottom: parent.bottom
contentWidth: mainColumn.width width: enableWima.enableWimaBoolean ? Math.min(contentWidth, maxWidth) : enableWima.width
height: enableWima.enableWimaBoolean ? Math.min(contentHeight, maxHeight) : 0
contentHeight: columnWrapper.height
contentWidth: columnWrapper.width
onContentHeightChanged: { onContentHeightChanged: {
console.log('contentHeight') console.log('contentHeight')
console.log(contentHeight) console.log(contentHeight)
mainFrame.height = enableWima.enableWimaBoolean ? Math.min(parent.maxHeight, enableWima.height + flickable.contentHeight + 2*_margins) : enableWima.height + _margins //mainFrame.height = enableWima.enableWimaBoolean ? Math.min(parent.maxHeight, enableWima.height + flickable.contentHeight + 2*_margins) : enableWima.height + _margins
} }
onContentWidthChanged: { onContentWidthChanged: {
console.log('contentWidth') console.log('contentWidth')
console.log(contentWidth) console.log(contentWidth)
mainFrame.width = enableWima.enableWimaBoolean ? Math.min(parent.maxWidth, flickable.contentWidth + 2*_margins) : enableWima.width //mainFrame.width = enableWima.enableWimaBoolean ? Math.min(parent.maxWidth, flickable.contentWidth + 2*_margins) : enableWima.width
} }
Row {
id: columnWrapper
Item{ // spacer
width: 6
height: 1
}
Column { Column {
id: mainColumn id: mainColumn
anchors.horizontalCenter: parent.horizontalCenter
spacing: ScreenTools.defaultFontPixelHeight * 0.3 spacing: ScreenTools.defaultFontPixelHeight * 0.3
SectionHeader{ SectionHeader{
...@@ -381,6 +422,14 @@ Item { ...@@ -381,6 +422,14 @@ Item {
} }
} }
} // settingsColumn } // settingsColumn
Item { // spacer
width: 6
height: 1
}
}
} // QGCFlickable } // QGCFlickable
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment