Browse Source

Update lightsComponent to new SetupPage structure.

QGC4.4
Rustom Jehangir 9 years ago
parent
commit
1386aaa0f8
  1. 2
      src/AutoPilotPlugins/APM/APMLightsComponent.cc
  2. 307
      src/AutoPilotPlugins/APM/APMLightsComponent.qml

2
src/AutoPilotPlugins/APM/APMLightsComponent.cc

@ -30,7 +30,7 @@ QString APMLightsComponent::name(void) const
QString APMLightsComponent::description(void) const QString APMLightsComponent::description(void) const
{ {
return tr("The Lights Component is used to setup lights settings."); return tr("Lights setup is used to adjust light output channels.");
} }
QString APMLightsComponent::iconResource(void) const QString APMLightsComponent::iconResource(void) const

307
src/AutoPilotPlugins/APM/APMLightsComponent.qml

@ -17,181 +17,174 @@ import QGroundControl.Palette 1.0
import QGroundControl.Controls 1.0 import QGroundControl.Controls 1.0
import QGroundControl.ScreenTools 1.0 import QGroundControl.ScreenTools 1.0
QGCView { SetupPage {
id: _lightsView id: lightsPage
viewPanel: panel pageComponent: lightsPageComponent
anchors.fill: parent
FactPanelController { id: controller; factPanel: panel }
QGCPalette { id: palette; colorGroupEnabled: enabled }
property Fact _rc5Function: controller.getParameterFact(-1, "RC5_FUNCTION")
property Fact _rc6Function: controller.getParameterFact(-1, "RC6_FUNCTION")
property Fact _rc7Function: controller.getParameterFact(-1, "RC7_FUNCTION")
property Fact _rc8Function: controller.getParameterFact(-1, "RC8_FUNCTION")
property Fact _rc9Function: controller.getParameterFact(-1, "RC9_FUNCTION")
property Fact _rc10Function: controller.getParameterFact(-1, "RC10_FUNCTION")
property Fact _rc11Function: controller.getParameterFact(-1, "RC11_FUNCTION")
property Fact _rc12Function: controller.getParameterFact(-1, "RC12_FUNCTION")
property Fact _rc13Function: controller.getParameterFact(-1, "RC13_FUNCTION")
property Fact _rc14Function: controller.getParameterFact(-1, "RC14_FUNCTION")
readonly property real _margins: ScreenTools.defaultFontPixelHeight
readonly property int _rcFunctionDisabled: 0
readonly property int _rcFunctionRCIN9: 59
readonly property int _rcFunctionRCIN10: 60
readonly property int _firstLightsOutChannel: 5
readonly property int _lastLightsOutChannel: 14
Component.onCompleted: {
calcLightOutValues()
}
/// Light output channels are stored in RC#_FUNCTION parameters. We need to loop through those
/// to find them and setup the ui accordindly.
function calcLightOutValues() {
lightsLoader.lights1OutIndex = 0
lightsLoader.lights2OutIndex = 0
for (var channel=_firstLightsOutChannel; channel<=_lastLightsOutChannel; channel++) {
var functionFact = controller.getParameterFact(-1, "RC" + channel + "_FUNCTION")
if (functionFact.value == _rcFunctionRCIN9) {
lightsLoader.lights1OutIndex = channel - 4
} else if (functionFact.value == _rcFunctionRCIN10) {
lightsLoader.lights2OutIndex = channel - 4
}
}
}
function setRCFunction(channel, rcFunction) {
// First clear any previous settings for this function
for (var index=_firstLightsOutChannel; index<=_lastLightsOutChannel; index++) {
var functionFact = controller.getParameterFact(-1, "RC" + index + "_FUNCTION")
if (functionFact.value != _rcFunctionDisabled && functionFact.value == rcFunction) {
functionFact.value = _rcFunctionDisabled
}
}
// Now set the function into the new channel
if (channel != 0) {
var functionFact = controller.getParameterFact(-1, "RC" + channel + "_FUNCTION")
functionFact.value = rcFunction
}
}
// Whenever any RC#_FUNCTION parameters chagnes we need to go looking for light output channels again
Connections { target: _rc5Function; onValueChanged: calcLightOutValues() }
Connections { target: _rc6Function; onValueChanged: calcLightOutValues() }
Connections { target: _rc7Function; onValueChanged: calcLightOutValues() }
Connections { target: _rc8Function; onValueChanged: calcLightOutValues() }
Connections { target: _rc9Function; onValueChanged: calcLightOutValues() }
Connections { target: _rc10Function; onValueChanged: calcLightOutValues() }
Connections { target: _rc11Function; onValueChanged: calcLightOutValues() }
Connections { target: _rc12Function; onValueChanged: calcLightOutValues() }
Connections { target: _rc13Function; onValueChanged: calcLightOutValues() }
Connections { target: _rc14Function; onValueChanged: calcLightOutValues() }
ListModel {
id: lightsOutModel
ListElement { text: qsTr("Disabled"); value: 0 }
ListElement { text: qsTr("Channel 5"); value: 5 }
ListElement { text: qsTr("Channel 6"); value: 6 }
ListElement { text: qsTr("Channel 7"); value: 7 }
ListElement { text: qsTr("Channel 8"); value: 8 }
ListElement { text: qsTr("Channel 9"); value: 9 }
ListElement { text: qsTr("Channel 10"); value: 10 }
ListElement { text: qsTr("Channel 11"); value: 11 }
ListElement { text: qsTr("Channel 12"); value: 12 }
ListElement { text: qsTr("Channel 13"); value: 13 }
ListElement { text: qsTr("Channel 14"); value: 14 }
}
Component { Component {
id: lightSettings id: lightsPageComponent
Item { Column {
width: rectangle.x + rectangle.width spacing: _margins
height: rectangle.y + rectangle.height width: availableWidth
QGCLabel { FactPanelController { id: controller; factPanel: lightsPage.viewPanel }
id: settingsLabel
text: qsTr("Light Settings") QGCPalette { id: palette; colorGroupEnabled: true }
font.family: ScreenTools.demiboldFontFamily
property Fact _rc5Function: controller.getParameterFact(-1, "RC5_FUNCTION")
property Fact _rc6Function: controller.getParameterFact(-1, "RC6_FUNCTION")
property Fact _rc7Function: controller.getParameterFact(-1, "RC7_FUNCTION")
property Fact _rc8Function: controller.getParameterFact(-1, "RC8_FUNCTION")
property Fact _rc9Function: controller.getParameterFact(-1, "RC9_FUNCTION")
property Fact _rc10Function: controller.getParameterFact(-1, "RC10_FUNCTION")
property Fact _rc11Function: controller.getParameterFact(-1, "RC11_FUNCTION")
property Fact _rc12Function: controller.getParameterFact(-1, "RC12_FUNCTION")
property Fact _rc13Function: controller.getParameterFact(-1, "RC13_FUNCTION")
property Fact _rc14Function: controller.getParameterFact(-1, "RC14_FUNCTION")
readonly property real _margins: ScreenTools.defaultFontPixelHeight
readonly property int _rcFunctionDisabled: 0
readonly property int _rcFunctionRCIN9: 59
readonly property int _rcFunctionRCIN10: 60
readonly property int _firstLightsOutChannel: 5
readonly property int _lastLightsOutChannel: 14
Component.onCompleted: {
calcLightOutValues()
} }
Rectangle { /// Light output channels are stored in RC#_FUNCTION parameters. We need to loop through those
id: rectangle /// to find them and setup the ui accordindly.
anchors.topMargin: _margins / 2 function calcLightOutValues() {
anchors.top: settingsLabel.bottom lightsLoader.lights1OutIndex = 0
width: lights1Combo.x + lights1Combo.width + _margins lightsLoader.lights2OutIndex = 0
height: lights2Combo.y + lights2Combo.height + _margins for (var channel=_firstLightsOutChannel; channel<=_lastLightsOutChannel; channel++) {
color: palette.windowShade var functionFact = controller.getParameterFact(-1, "RC" + channel + "_FUNCTION")
if (functionFact.value == _rcFunctionRCIN9) {
QGCLabel { lightsLoader.lights1OutIndex = channel - 4
id: lights1Label } else if (functionFact.value == _rcFunctionRCIN10) {
anchors.margins: _margins lightsLoader.lights2OutIndex = channel - 4
anchors.left: parent.left }
anchors.baseline: lights1Combo.baseline
text: qsTr("Lights 1:")
}
QGCComboBox {
id: lights1Combo
anchors.margins: _margins
anchors.top: parent.top
anchors.left: lights1Label.right
width: ScreenTools.defaultFontPixelWidth * 15
model: lightsOutModel
currentIndex: lights1OutIndex
onActivated: setRCFunction(lightsOutModel.get(index).value, lights1Function)
} }
}
QGCLabel { function setRCFunction(channel, rcFunction) {
id: lights2Label // First clear any previous settings for this function
anchors.margins: _margins for (var index=_firstLightsOutChannel; index<=_lastLightsOutChannel; index++) {
anchors.left: parent.left var functionFact = controller.getParameterFact(-1, "RC" + index + "_FUNCTION")
anchors.baseline: lights2Combo.baseline if (functionFact.value != _rcFunctionDisabled && functionFact.value == rcFunction) {
text: qsTr("Lights 2:") functionFact.value = _rcFunctionDisabled
}
} }
QGCComboBox { // Now set the function into the new channel
id: lights2Combo if (channel != 0) {
anchors.margins: _margins var functionFact = controller.getParameterFact(-1, "RC" + channel + "_FUNCTION")
anchors.top: lights1Combo.bottom functionFact.value = rcFunction
anchors.left: lights2Label.right
width: lights1Combo.width
model: lightsOutModel
currentIndex: lights2OutIndex
onActivated: setRCFunction(lightsOutModel.get(index).value, lights2Function)
} }
} // Rectangle }
} // Item
} // Component - lightSettings
QGCViewPanel { // Whenever any RC#_FUNCTION parameters chagnes we need to go looking for light output channels again
id: panel Connections { target: _rc5Function; onValueChanged: calcLightOutValues() }
anchors.fill: parent Connections { target: _rc6Function; onValueChanged: calcLightOutValues() }
Connections { target: _rc7Function; onValueChanged: calcLightOutValues() }
Connections { target: _rc8Function; onValueChanged: calcLightOutValues() }
Connections { target: _rc9Function; onValueChanged: calcLightOutValues() }
Connections { target: _rc10Function; onValueChanged: calcLightOutValues() }
Connections { target: _rc11Function; onValueChanged: calcLightOutValues() }
Connections { target: _rc12Function; onValueChanged: calcLightOutValues() }
Connections { target: _rc13Function; onValueChanged: calcLightOutValues() }
Connections { target: _rc14Function; onValueChanged: calcLightOutValues() }
ListModel {
id: lightsOutModel
ListElement { text: qsTr("Disabled"); value: 0 }
ListElement { text: qsTr("Channel 5"); value: 5 }
ListElement { text: qsTr("Channel 6"); value: 6 }
ListElement { text: qsTr("Channel 7"); value: 7 }
ListElement { text: qsTr("Channel 8"); value: 8 }
ListElement { text: qsTr("Channel 9"); value: 9 }
ListElement { text: qsTr("Channel 10"); value: 10 }
ListElement { text: qsTr("Channel 11"); value: 11 }
ListElement { text: qsTr("Channel 12"); value: 12 }
ListElement { text: qsTr("Channel 13"); value: 13 }
ListElement { text: qsTr("Channel 14"); value: 14 }
}
QGCFlickable { Component {
clip: true id: lightSettings
anchors.fill: parent
contentWidth: lightsLoader.x + lightsLoader.width Item {
contentHeight: lightsLoader.y + lightsLoader.height width: rectangle.x + rectangle.width
height: rectangle.y + rectangle.height
QGCLabel {
id: settingsLabel
text: qsTr("Light Settings")
font.family: ScreenTools.demiboldFontFamily
}
Rectangle {
id: rectangle
anchors.topMargin: _margins / 2
anchors.top: settingsLabel.bottom
width: lights1Combo.x + lights1Combo.width + _margins
height: lights2Combo.y + lights2Combo.height + _margins
color: palette.windowShade
QGCLabel {
id: lights1Label
anchors.margins: _margins
anchors.left: parent.left
anchors.baseline: lights1Combo.baseline
text: qsTr("Lights 1:")
}
QGCComboBox {
id: lights1Combo
anchors.margins: _margins
anchors.top: parent.top
anchors.left: lights1Label.right
width: ScreenTools.defaultFontPixelWidth * 15
model: lightsOutModel
currentIndex: lights1OutIndex
onActivated: setRCFunction(lightsOutModel.get(index).value, lights1Function)
}
QGCLabel {
id: lights2Label
anchors.margins: _margins
anchors.left: parent.left
anchors.baseline: lights2Combo.baseline
text: qsTr("Lights 2:")
}
QGCComboBox {
id: lights2Combo
anchors.margins: _margins
anchors.top: lights1Combo.bottom
anchors.left: lights2Label.right
width: lights1Combo.width
model: lightsOutModel
currentIndex: lights2OutIndex
onActivated: setRCFunction(lightsOutModel.get(index).value, lights2Function)
}
} // Rectangle
} // Item
} // Component - lightSettings
Loader { Loader {
id: lightsLoader id: lightsLoader
sourceComponent: lightSettings sourceComponent: lightSettings
anchors.margins: _margins
anchors.top: parent.top
property int lights1OutIndex: 0 property int lights1OutIndex: 0
property int lights2OutIndex: 0 property int lights2OutIndex: 0
property int lights1Function: _rcFunctionRCIN9 property int lights1Function: _rcFunctionRCIN9
property int lights2Function: _rcFunctionRCIN10 property int lights2Function: _rcFunctionRCIN10
} }
} // Flickable } // Column
} // QGCViewPanel } // Component
} // QGCView } // SetupPage

Loading…
Cancel
Save