APMSafetyComponentSub.qml 11.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/


11
import QtQuick              2.7
12
import QtQuick.Controls     1.4
13 14 15 16 17 18 19 20
import QtGraphicalEffects   1.0

import QGroundControl.FactSystem    1.0
import QGroundControl.FactControls  1.0
import QGroundControl.Palette       1.0
import QGroundControl.Controls      1.0
import QGroundControl.ScreenTools   1.0

21 22 23
SetupPage {
    id:                 safetyPage
    pageComponent:      safetyPageComponent
24

25 26
    Component {
        id: safetyPageComponent
27

28 29 30 31
        Flow {
            id:         flowLayout
            width:      availableWidth
            spacing:    _margins
32

33
            FactPanelController { id: controller; factPanel: safetyPage.viewPanel }
34

35
            QGCPalette { id: ggcPal; colorGroupEnabled: true }
36

37 38 39 40 41 42
            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")
43

44 45 46 47 48
            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")
49

50 51
            property Fact _leakPin:            controller.getParameterFact(-1, "LEAK1_PIN")
            property Fact _leakLogic:          controller.getParameterFact(-1, "LEAK1_LOGIC")
52

53
            property Fact _armingCheck: controller.getParameterFact(-1, "ARMING_CHECK")
54

55 56
            property real _margins:     ScreenTools.defaultFontPixelHeight
            property bool _showIcon:    !ScreenTools.isTinyScreen
57

58
            ExclusiveGroup { id: fenceActionRadioGroup }
59

60 61
            Column {
                spacing: _margins / 2
62

63 64 65 66 67 68 69 70 71 72 73
                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
74 75

                    QGCLabel {
76 77 78 79 80
                        id:                 gcsEnableLabel
                        anchors.margins:    _margins
                        anchors.left:       parent.left
                        anchors.baseline:   gcsEnableCombo.baseline
                        text:               qsTr("Ground Station failsafe:")
81 82
                    }

83 84 85 86 87 88 89 90 91
                    FactComboBox {
                        id:                 gcsEnableCombo
                        anchors.margins:    _margins
                        anchors.left:       gcsEnableLabel.right
                        anchors.top:        parent.top
                        width:              ScreenTools.defaultFontPixelWidth*15
                        fact:               _failsafeGCSEnable
                        indexModel:         false
                    }
92 93

                    QGCLabel {
94 95 96 97 98
                        id:                 leakEnableLabel
                        anchors.margins:    _margins
                        anchors.left:       parent.left
                        anchors.baseline:   leakEnableCombo.baseline
                        text:               qsTr("Leak failsafe:")
99 100
                    }

101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
                    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
140
                                } else {
141 142
                                    _fenceEnable.value = 1
                                    _fenceType.value = 1
143
                                }
144 145 146
                            } else {
                                _fenceEnable.value = 0
                                _fenceType.value = 0
147 148
                            }
                        }
149
                    }
150 151

                    QGCLabel {
152 153 154 155
                        id:                 fenceAltMaxLabel
                        anchors.left:       altitudeGeo.left
                        anchors.baseline:   fenceAltMaxField.baseline
                        text:               qsTr("Max depth:")
156 157
                    }

158 159 160 161 162 163 164 165 166 167 168
                    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
169

170 171
            Column {
                spacing: _margins / 2
172

173 174
                QGCLabel {
                    id:             leakDetectorLabel
175
                    text:           qsTr("Leak Detector")
176 177
                    font.family:    ScreenTools.demiboldFontFamily
                }
178

179 180 181 182 183
                Rectangle {
                    id:     leakDetectorSettings
                    width:  leakLogicCombo.x + leakLogicCombo.width + _margins
                    height: leakLogicCombo.y + leakLogicCombo.height + _margins
                    color:  ggcPal.windowShade
184

185 186 187 188 189 190 191
                    QGCLabel {
                        id:                 leakPinLabel
                        anchors.margins:    _margins
                        anchors.left:       parent.left
                        anchors.top:        parent.top
                        text:               qsTr("Pin:")
                    }
192

193 194 195 196 197 198 199 200 201
                    FactComboBox {
                        id:                 leakPinCombo
                        anchors.margins:    _margins
                        anchors.left:       leakLogicLabel.right
                        anchors.baseline:   leakPinLabel.baseline
                        width:              ScreenTools.defaultFontPixelWidth*15
                        fact:               _leakPin
                        indexModel:         false
                    }
202 203

                    QGCLabel {
204 205 206 207
                        id:                 leakLogicLabel
                        anchors.margins:    _margins
                        anchors.left:       parent.left
                        anchors.top:        leakPinLabel.bottom
208
                        text:               qsTr("Logic (when dry):")
209 210
                    }

211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
                    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
246 247
                            anchors.left:       parent.left
                            anchors.right:      parent.right
248 249 250
                            firstEntryIsAll:    true
                            fact:               _armingCheck
                        }
251

252 253 254 255 256 257 258 259
                        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
260
                        }
261 262 263 264 265 266
                    }
                } // Rectangle - Arming checks
            } // Column - Arming Checks
        } // Flow
    } // Component - safetyPageComponent
} // SetupView