Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
5dffd405
Commit
5dffd405
authored
Oct 14, 2016
by
Rustom Jehangir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Sub's safetyComponent to use new SetupPage structure.
parent
1386aaa0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
205 additions
and
214 deletions
+205
-214
APMSafetyComponentSub.qml
src/AutoPilotPlugins/APM/APMSafetyComponentSub.qml
+205
-214
No files found.
src/AutoPilotPlugins/APM/APMSafetyComponentSub.qml
View file @
5dffd405
...
...
@@ -18,258 +18,249 @@ import QGroundControl.Palette 1.0
import
QGroundControl
.
Controls
1.0
import
QGroundControl
.
ScreenTools
1.0
QGCView
{
id
:
_safetyView
viewPanel
:
panel
anchors.fill
:
parent
SetupPage
{
id
:
safetyPage
pageComponent
:
safetyPageComponent
FactPanelController
{
id
:
controller
;
factPanel
:
panel
}
Component
{
id
:
safetyPageComponent
QGCPalette
{
id
:
ggcPal
;
colorGroupEnabled
:
enabled
}
Flow
{
id
:
flowLayout
width
:
availableWidth
spacing
:
_margins
property
Fact
_failsafeGCSEnable
:
controller
.
getParameterFact
(
-
1
,
"
FS_GCS_ENABLE
"
)
property
Fact
_failsafeLeakEnable
:
controller
.
getParameterFact
(
-
1
,
"
FS_LEAK_ENABLE
"
)
property
Fact
_failsafePressureEnable
:
controller
.
getParameterFact
(
-
1
,
"
FS_PRESS_ENABLE
"
)
property
Fact
_failsafePressureValue
:
controller
.
getParameterFact
(
-
1
,
"
FS_PRESS_MAX
"
)
property
Fact
_failsafeTempEnable
:
controller
.
getParameterFact
(
-
1
,
"
FS_TEMP_ENABLE
"
)
property
Fact
_failsafeTempValue
:
controller
.
getParameterFact
(
-
1
,
"
FS_TEMP_MAX
"
)
FactPanelController
{
id
:
controller
;
factPanel
:
safetyPage
.
viewPanel
}
property
Fact
_fenceAction
:
controller
.
getParameterFact
(
-
1
,
"
FENCE_ACTION
"
)
property
Fact
_fenceAltMax
:
controller
.
getParameterFact
(
-
1
,
"
FENCE_ALT_MAX
"
)
property
Fact
_fenceEnable
:
controller
.
getParameterFact
(
-
1
,
"
FENCE_ENABLE
"
)
property
Fact
_fenceMargin
:
controller
.
getParameterFact
(
-
1
,
"
FENCE_MARGIN
"
)
property
Fact
_fenceType
:
controller
.
getParameterFact
(
-
1
,
"
FENCE_TYPE
"
)
QGCPalette
{
id
:
ggcPal
;
colorGroupEnabled
:
true
}
property
Fact
_leakPin
:
controller
.
getParameterFact
(
-
1
,
"
LEAK1_PIN
"
)
property
Fact
_leakLogic
:
controller
.
getParameterFact
(
-
1
,
"
LEAK1_LOGIC
"
)
property
Fact
_failsafeGCSEnable
:
controller
.
getParameterFact
(
-
1
,
"
FS_GCS_ENABLE
"
)
property
Fact
_failsafeLeakEnable
:
controller
.
getParameterFact
(
-
1
,
"
FS_LEAK_ENABLE
"
)
property
Fact
_failsafePressureEnable
:
controller
.
getParameterFact
(
-
1
,
"
FS_PRESS_ENABLE
"
)
property
Fact
_failsafePressureValue
:
controller
.
getParameterFact
(
-
1
,
"
FS_PRESS_MAX
"
)
property
Fact
_failsafeTempEnable
:
controller
.
getParameterFact
(
-
1
,
"
FS_TEMP_ENABLE
"
)
property
Fact
_failsafeTempValue
:
controller
.
getParameterFact
(
-
1
,
"
FS_TEMP_MAX
"
)
property
Fact
_armingCheck
:
controller
.
getParameterFact
(
-
1
,
"
ARMING_CHECK
"
)
property
Fact
_fenceAction
:
controller
.
getParameterFact
(
-
1
,
"
FENCE_ACTION
"
)
property
Fact
_fenceAltMax
:
controller
.
getParameterFact
(
-
1
,
"
FENCE_ALT_MAX
"
)
property
Fact
_fenceEnable
:
controller
.
getParameterFact
(
-
1
,
"
FENCE_ENABLE
"
)
property
Fact
_fenceMargin
:
controller
.
getParameterFact
(
-
1
,
"
FENCE_MARGIN
"
)
property
Fact
_fenceType
:
controller
.
getParameterFact
(
-
1
,
"
FENCE_TYPE
"
)
property
real
_margins
:
ScreenTools
.
defaultFontPixelHeight
property
bool
_showIcon
:
!
ScreenTools
.
isTinyScreen
property
Fact
_leakPin
:
controller
.
getParameterFact
(
-
1
,
"
LEAK1_PIN
"
)
property
Fact
_leakLogic
:
controller
.
getParameterFact
(
-
1
,
"
LEAK1_LOGIC
"
)
ExclusiveGroup
{
id
:
fenceActionRadioGroup
}
property
Fact
_armingCheck
:
controller
.
getParameterFact
(
-
1
,
"
ARMING_CHECK
"
)
QGCViewPanel
{
id
:
panel
anchors.fill
:
parent
property
real
_margins
:
ScreenTools
.
defaultFontPixelHeight
property
bool
_showIcon
:
!
ScreenTools
.
isTinyScreen
QGCFlickable
{
clip
:
true
anchors.fill
:
parent
contentHeight
:
flowLayout
.
height
contentWidth
:
flowLayout
.
width
ExclusiveGroup
{
id
:
fenceActionRadioGroup
}
Flow
{
id
:
flowLayout
width
:
panel
.
width
// parent.width doesn't work for some reason
spacing
:
_margins
Column
{
spacing
:
_margins
/
2
Column
{
spacing
:
_margins
/
2
QGCLabel
{
id
:
failsafeLabel
text
:
qsTr
(
"
Failsafe Actions
"
)
font.family
:
ScreenTools
.
demiboldFontFamily
}
Rectangle
{
id
:
failsafeSettings
width
:
leakEnableCombo
.
x
+
leakEnableCombo
.
width
+
_margins
height
:
leakEnableCombo
.
y
+
leakEnableCombo
.
height
+
_margins
color
:
ggcPal
.
windowShade
QGCLabel
{
id
:
failsafeLabel
text
:
qsTr
(
"
Failsafe Actions
"
)
font.family
:
ScreenTools
.
demiboldFontFamily
id
:
gcsEnableLabel
anchors.margins
:
_margins
anchors.left
:
parent
.
left
anchors.baseline
:
gcsEnableCombo
.
baseline
text
:
qsTr
(
"
Ground Station failsafe:
"
)
}
Rectangle
{
id
:
failsafeSettings
width
:
leakEnableCombo
.
x
+
leakEnableCombo
.
width
+
_margins
height
:
leakEnableCombo
.
y
+
leakEnableCombo
.
height
+
_margins
color
:
ggcPal
.
windowShade
QGCLabel
{
id
:
gcsEnableLabel
anchors.margins
:
_margins
anchors.left
:
parent
.
left
anchors.baseline
:
gcsEnableCombo
.
baseline
text
:
qsTr
(
"
Ground Station failsafe:
"
)
}
FactComboBox
{
id
:
gcsEnableCombo
anchors.margins
:
_margins
anchors.left
:
gcsEnableLabel
.
right
anchors.top
:
parent
.
top
width
:
ScreenTools
.
defaultFontPixelWidth
*
15
fact
:
_failsafeGCSEnable
indexModel
:
false
}
QGCLabel
{
id
:
leakEnableLabel
anchors.margins
:
_margins
anchors.left
:
parent
.
left
anchors.baseline
:
leakEnableCombo
.
baseline
text
:
qsTr
(
"
Leak failsafe:
"
)
}
FactComboBox
{
id
:
leakEnableCombo
anchors.topMargin
:
_margins
anchors.left
:
gcsEnableCombo
.
left
anchors.top
:
gcsEnableCombo
.
bottom
width
:
ScreenTools
.
defaultFontPixelWidth
*
15
fact
:
_failsafeLeakEnable
indexModel
:
false
}
}
// Rectangle - Failsafe Settings
}
// Column - Failsafe Settings
Column
{
spacing
:
_margins
/
2
FactComboBox
{
id
:
gcsEnableCombo
anchors.margins
:
_margins
anchors.left
:
gcsEnableLabel
.
right
anchors.top
:
parent
.
top
width
:
ScreenTools
.
defaultFontPixelWidth
*
15
fact
:
_failsafeGCSEnable
indexModel
:
false
}
QGCLabel
{
id
:
geoFenceLabel
text
:
qsTr
(
"
GeoFence
"
)
font.family
:
ScreenTools
.
demiboldFontFamily
id
:
leakEnableLabel
anchors.margins
:
_margins
anchors.left
:
parent
.
left
anchors.baseline
:
leakEnableCombo
.
baseline
text
:
qsTr
(
"
Leak failsafe:
"
)
}
Rectangle
{
id
:
geoFenceSettings
width
:
fenceAltMaxField
.
x
+
fenceAltMaxField
.
width
+
_margins
height
:
fenceAltMaxField
.
y
+
fenceAltMaxField
.
height
+
_margins
color
:
ggcPal
.
windowShade
QGCCheckBox
{
id
:
altitudeGeo
anchors.margins
:
_margins
anchors.left
:
parent
.
left
anchors.top
:
parent
.
top
text
:
qsTr
(
"
Depth GeoFence enabled
\n
(report only)
"
)
checked
:
_fenceEnable
.
value
!=
0
&&
_fenceType
.
value
&
1
onClicked
:
{
if
(
checked
)
{
if
(
_fenceEnable
.
value
==
1
)
{
_fenceType
.
value
|=
1
}
else
{
_fenceEnable
.
value
=
1
_fenceType
.
value
=
1
}
FactComboBox
{
id
:
leakEnableCombo
anchors.topMargin
:
_margins
anchors.left
:
gcsEnableCombo
.
left
anchors.top
:
gcsEnableCombo
.
bottom
width
:
ScreenTools
.
defaultFontPixelWidth
*
15
fact
:
_failsafeLeakEnable
indexModel
:
false
}
}
// Rectangle - Failsafe Settings
}
// Column - Failsafe Settings
Column
{
spacing
:
_margins
/
2
QGCLabel
{
id
:
geoFenceLabel
text
:
qsTr
(
"
GeoFence
"
)
font.family
:
ScreenTools
.
demiboldFontFamily
}
Rectangle
{
id
:
geoFenceSettings
width
:
fenceAltMaxField
.
x
+
fenceAltMaxField
.
width
+
_margins
height
:
fenceAltMaxField
.
y
+
fenceAltMaxField
.
height
+
_margins
color
:
ggcPal
.
windowShade
QGCCheckBox
{
id
:
altitudeGeo
anchors.margins
:
_margins
anchors.left
:
parent
.
left
anchors.top
:
parent
.
top
text
:
qsTr
(
"
Depth GeoFence enabled
\n
(report only)
"
)
checked
:
_fenceEnable
.
value
!=
0
&&
_fenceType
.
value
&
1
onClicked
:
{
if
(
checked
)
{
if
(
_fenceEnable
.
value
==
1
)
{
_fenceType
.
value
|=
1
}
else
{
_fenceEnable
.
value
=
0
_fenceType
.
value
=
0
_fenceEnable
.
value
=
1
_fenceType
.
value
=
1
}
}
else
{
_fenceEnable
.
value
=
0
_fenceType
.
value
=
0
}
}
QGCLabel
{
id
:
fenceAltMaxLabel
anchors.left
:
altitudeGeo
.
left
anchors.baseline
:
fenceAltMaxField
.
baseline
text
:
qsTr
(
"
Max depth:
"
)
}
FactTextField
{
id
:
fenceAltMaxField
anchors.topMargin
:
_margins
/
2
anchors.leftMargin
:
_margins
anchors.left
:
fenceAltMaxLabel
.
right
anchors.top
:
altitudeGeo
.
bottom
fact
:
_fenceAltMax
showUnits
:
true
}
}
// Rectangle - GeoFence Settings
}
// Column - GeoFence Settings
Column
{
spacing
:
_margins
/
2
}
QGCLabel
{
id
:
leakDetectorLabel
text
:
qsTr
(
"
Leak detector
"
)
font.family
:
ScreenTools
.
demiboldFontFamily
id
:
fenceAltMaxLabel
anchors.left
:
altitudeGeo
.
left
anchors.baseline
:
fenceAltMaxField
.
baseline
text
:
qsTr
(
"
Max depth:
"
)
}
Rectangle
{
id
:
leakDetectorSettings
width
:
leakLogicCombo
.
x
+
leakLogicCombo
.
width
+
_margins
height
:
leakLogicCombo
.
y
+
leakLogicCombo
.
height
+
_margins
color
:
ggcPal
.
windowShade
FactTextField
{
id
:
fenceAltMaxField
anchors.topMargin
:
_margins
/
2
anchors.leftMargin
:
_margins
anchors.left
:
fenceAltMaxLabel
.
right
anchors.top
:
altitudeGeo
.
bottom
fact
:
_fenceAltMax
showUnits
:
true
}
}
// Rectangle - GeoFence Settings
}
// Column - GeoFence Settings
QGCLabel
{
id
:
leakPinLabel
anchors.margins
:
_margins
anchors.left
:
parent
.
left
anchors.top
:
parent
.
top
text
:
qsTr
(
"
Pin:
"
)
}
Column
{
spacing
:
_margins
/
2
FactComboBox
{
id
:
leakPinCombo
anchors.margins
:
_margins
anchors.left
:
leakLogicLabel
.
right
anchors.baseline
:
leakPinLabel
.
baseline
width
:
ScreenTools
.
defaultFontPixelWidth
*
15
fact
:
_leakPin
indexModel
:
false
}
QGCLabel
{
id
:
leakDetectorLabel
text
:
qsTr
(
"
Leak detector
"
)
font.family
:
ScreenTools
.
demiboldFontFamily
}
QGCLabel
{
id
:
leakLogicLabel
anchors.margins
:
_margins
anchors.left
:
parent
.
left
anchors.top
:
leakPinLabel
.
bottom
text
:
qsTr
(
"
Logic:
"
)
}
Rectangle
{
id
:
leakDetectorSettings
width
:
leakLogicCombo
.
x
+
leakLogicCombo
.
width
+
_margins
height
:
leakLogicCombo
.
y
+
leakLogicCombo
.
height
+
_margins
color
:
ggcPal
.
windowShade
FactComboBox
{
id
:
leakLogicCombo
anchors.margins
:
_margins
anchors.left
:
leakLogicLabel
.
right
anchors.baseline
:
leakLogicLabel
.
baseline
width
:
ScreenTools
.
defaultFontPixelWidth
*
15
fact
:
_leakLogic
indexModel
:
false
}
}
// Rectangle - Leak Detector Settings
}
// Column - Leak Detector Settings
QGCLabel
{
id
:
leakPinLabel
anchors.margins
:
_margins
anchors.left
:
parent
.
left
anchors.top
:
parent
.
top
text
:
qsTr
(
"
Pin:
"
)
}
Column
{
spacing
:
_margins
/
2
FactComboBox
{
id
:
leakPinCombo
anchors.margins
:
_margins
anchors.left
:
leakLogicLabel
.
right
anchors.baseline
:
leakPinLabel
.
baseline
width
:
ScreenTools
.
defaultFontPixelWidth
*
15
fact
:
_leakPin
indexModel
:
false
}
QGCLabel
{
text
:
qsTr
(
"
Arming Checks
"
)
font.family
:
ScreenTools
.
demiboldFontFamily
id
:
leakLogicLabel
anchors.margins
:
_margins
anchors.left
:
parent
.
left
anchors.top
:
leakPinLabel
.
bottom
text
:
qsTr
(
"
Logic:
"
)
}
Rectangle
{
width
:
flowLayout
.
width
height
:
armingCheckInnerColumn
.
height
+
(
_margins
*
2
)
color
:
ggcPal
.
windowShade
Column
{
id
:
armingCheckInnerColumn
anchors.margins
:
_margins
anchors.top
:
parent
.
top
FactComboBox
{
id
:
leakLogicCombo
anchors.margins
:
_margins
anchors.left
:
leakLogicLabel
.
right
anchors.baseline
:
leakLogicLabel
.
baseline
width
:
ScreenTools
.
defaultFontPixelWidth
*
15
fact
:
_leakLogic
indexModel
:
false
}
}
// Rectangle - Leak Detector Settings
}
// Column - Leak Detector Settings
Column
{
spacing
:
_margins
/
2
QGCLabel
{
text
:
qsTr
(
"
Arming Checks
"
)
font.family
:
ScreenTools
.
demiboldFontFamily
}
Rectangle
{
width
:
flowLayout
.
width
height
:
armingCheckInnerColumn
.
height
+
(
_margins
*
2
)
color
:
ggcPal
.
windowShade
Column
{
id
:
armingCheckInnerColumn
anchors.margins
:
_margins
anchors.top
:
parent
.
top
anchors.left
:
parent
.
left
anchors.right
:
parent
.
right
spacing
:
_margins
FactBitmask
{
id
:
armingCheckBitmask
anchors.left
:
parent
.
left
anchors.right
:
parent
.
right
spacing
:
_margins
FactBitmask
{
id
:
armingCheckBitmask
anchors.left
:
parent
.
left
anchors.right
:
parent
.
right
firstEntryIsAll
:
true
fact
:
_armingCheck
}
firstEntryIsAll
:
true
fact
:
_armingCheck
}
QGCLabel
{
id
:
armingCheckWarning
anchors.left
:
parent
.
left
anchors.right
:
parent
.
right
wrapMode
:
Text
.
WordWrap
color
:
qgcPal
.
warningText
text
:
qsTr
(
"
Warning: Turning off arming checks can lead to loss of Vehicle control.
"
)
visible
:
_armingCheck
.
value
!=
1
}
QGCLabel
{
id
:
armingCheckWarning
anchors.left
:
parent
.
left
anchors.right
:
parent
.
right
wrapMode
:
Text
.
WordWrap
color
:
qgcPal
.
warningText
text
:
qsTr
(
"
Warning: Turning off arming checks can lead to loss of Vehicle control.
"
)
visible
:
_armingCheck
.
value
!=
1
}
}
// Rectangle - Arming checks
}
//
Column - Arming C
hecks
}
//
Flow
}
//
QGCFlickable
}
//
QGCViewPanel
}
//
QGC
View
}
}
//
Rectangle - Arming c
hecks
}
//
Column - Arming Checks
}
//
Flow
}
//
Component - safetyPageComponent
}
//
Setup
View
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment