SetupView.qml 11.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*=====================================================================

QGroundControl Open Source Ground Control Station

(c) 2009, 2015 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>

This file is part of the QGROUNDCONTROL project

QGROUNDCONTROL is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

QGROUNDCONTROL is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.

======================================================================*/

/// @file
///     @brief Setup View
///     @author Don Gagne <don@thegagnes.com>

28
import QtQuick          2.3
29 30
import QtQuick.Controls 1.2

Gus Grubba's avatar
Gus Grubba committed
31
import QGroundControl                       1.0
32 33 34 35 36
import QGroundControl.AutoPilotPlugin       1.0
import QGroundControl.Palette               1.0
import QGroundControl.Controls              1.0
import QGroundControl.ScreenTools           1.0
import QGroundControl.MultiVehicleManager   1.0
37

38
Rectangle {
dogmaphobic's avatar
dogmaphobic committed
39
    //color:          qgcPal.windowShadeDark
40
    color:          qgcPal.window
Gus Grubba's avatar
Gus Grubba committed
41
    z:              QGroundControl.zOrderTopMost
42

Don Gagne's avatar
Don Gagne committed
43
    QGCPalette { id: qgcPal; colorGroupEnabled: true }
44 45 46

    ExclusiveGroup { id: setupButtonGroup }

Don Gagne's avatar
Don Gagne committed
47 48 49
    readonly property real      _defaultTextHeight: ScreenTools.defaultFontPixelHeight
    readonly property real      _defaultTextWidth:  ScreenTools.defaultFontPixelWidth
    readonly property real      _margin:            _defaultTextHeight / 2
50
    readonly property real      _buttonWidth:       _defaultTextWidth * 17
Don Gagne's avatar
Don Gagne committed
51
    readonly property string    _armedVehicleText:  "This operation cannot be performed while vehicle is armed."
52

Don Gagne's avatar
Don Gagne committed
53 54
    property string _messagePanelText:              "missing message panel text"
    property bool   _fullParameterVehicleAvailable: multiVehicleManager.parameterReadyVehicleAvailable && !multiVehicleManager.activeVehicle.missingParameters
55

56 57
    function showSummaryPanel()
    {
Don Gagne's avatar
Don Gagne committed
58
        if (_fullParameterVehicleAvailable) {
59 60 61 62 63
            if (multiVehicleManager.activeVehicle.autopilot.vehicleComponents.length == 0) {
                panelLoader.sourceComponent = noComponentsVehicleSummaryComponent
            } else {
                panelLoader.source = "VehicleSummary.qml";
            }
64 65
        } else if (multiVehicleManager.parameterReadyVehicleAvailable) {
            panelLoader.sourceComponent = missingParametersVehicleSummaryComponent
66 67 68 69 70 71 72
        } else {
            panelLoader.sourceComponent = disconnectedVehicleSummaryComponent
        }
    }

    function showFirmwarePanel()
    {
73
        if (!ScreenTools.isMobile) {
Don Gagne's avatar
Don Gagne committed
74
            if (multiVehicleManager.activeVehicleAvailable && multiVehicleManager.activeVehicle.armed) {
Don Gagne's avatar
Don Gagne committed
75
                _messagePanelText = _armedVehicleText
76 77 78 79 80 81 82
                panelLoader.sourceComponent = messagePanelComponent
            } else {
                panelLoader.source = "FirmwareUpgrade.qml";
            }
        }
    }

83 84
    function showJoystickPanel()
    {
Don Gagne's avatar
Don Gagne committed
85
        if (multiVehicleManager.activeVehicleAvailable && multiVehicleManager.activeVehicle.armed) {
Don Gagne's avatar
Don Gagne committed
86
            _messagePanelText = _armedVehicleText
87 88 89 90 91 92
            panelLoader.sourceComponent = messagePanelComponent
        } else {
            panelLoader.source = "JoystickConfig.qml";
        }
    }

93 94 95 96 97
    function showParametersPanel()
    {
        panelLoader.source = "SetupParameterEditor.qml";
    }

Don Gagne's avatar
Don Gagne committed
98
    function showVehicleComponentPanel(vehicleComponent)
99
    {
Don Gagne's avatar
Don Gagne committed
100
        if (multiVehicleManager.activeVehicle.armed) {
Don Gagne's avatar
Don Gagne committed
101
            _messagePanelText = _armedVehicleText
102 103
            panelLoader.sourceComponent = messagePanelComponent
        } else {
Don Gagne's avatar
Don Gagne committed
104
            if (vehicleComponent.prerequisiteSetup != "") {
Don Gagne's avatar
Don Gagne committed
105
                _messagePanelText = vehicleComponent.prerequisiteSetup + " setup must be completed prior to " + vehicleComponent.name + " setup."
Don Gagne's avatar
Don Gagne committed
106 107 108 109
                panelLoader.sourceComponent = messagePanelComponent
            } else {
                panelLoader.source = vehicleComponent.setupSource
            }
110 111 112
        }
    }

113 114 115 116 117
    function showDebugPanel()
    {
        panelLoader.source = "DebugWindow.qml";
    }

118 119
    Component.onCompleted: showSummaryPanel()

120
    Connections {
121
        target: multiVehicleManager
122

123
        onParameterReadyVehicleAvailableChanged: {
124 125 126 127 128 129
            summaryButton.checked = true
            showSummaryPanel()
        }
    }

    Component {
130
        id: noComponentsVehicleSummaryComponent
131 132

        Rectangle {
Don Gagne's avatar
Don Gagne committed
133
            color: qgcPal.windowShade
134 135

            QGCLabel {
Don Gagne's avatar
Don Gagne committed
136
                anchors.margins:        _defaultTextWidth * 2
137 138 139 140
                anchors.fill:           parent
                verticalAlignment:      Text.AlignVCenter
                horizontalAlignment:    Text.AlignHCenter
                wrapMode:               Text.WordWrap
141
                font.pixelSize:         ScreenTools.mediumFontPixelSize
142 143
                text:                   "QGroundControl does not currently support setup of your vehicle type. " +
                                            "If your vehicle is already configured you can still Fly."
144 145 146 147 148 149

                onLinkActivated: Qt.openUrlExternally(link)
            }
        }
    }

150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
    Component {
        id: disconnectedVehicleSummaryComponent

        Rectangle {
            color: qgcPal.windowShade

            QGCLabel {
                anchors.margins:        _defaultTextWidth * 2
                anchors.fill:           parent
                verticalAlignment:      Text.AlignVCenter
                horizontalAlignment:    Text.AlignHCenter
                wrapMode:               Text.WordWrap
                font.pixelSize:         ScreenTools.largeFontPixelSize
                text:                   "Click Connect on the top right to Fly. Click Firmware on the left to upgrade your vehicle."

                onLinkActivated: Qt.openUrlExternally(link)
            }
        }
    }
169 170 171 172
    Component {
        id: missingParametersVehicleSummaryComponent

        Rectangle {
Don Gagne's avatar
Don Gagne committed
173
            color: qgcPal.windowShade
174 175

            QGCLabel {
Don Gagne's avatar
Don Gagne committed
176
                anchors.margins:        _defaultTextWidth * 2
177 178 179 180 181 182
                anchors.fill:           parent
                verticalAlignment:      Text.AlignVCenter
                horizontalAlignment:    Text.AlignHCenter
                wrapMode:               Text.WordWrap
                font.pixelSize:         ScreenTools.mediumFontPixelSize
                text:                   "You are currently connected to a vehicle, but that vehicle did not return back the full parameter list. " +
Don Gagne's avatar
Don Gagne committed
183
                                        "Because of this the full set of vehicle setup options are not available."
184 185 186 187 188 189

                onLinkActivated: Qt.openUrlExternally(link)
            }
        }
    }

190 191 192 193 194
    Component {
        id: messagePanelComponent

        Item {
            QGCLabel {
Don Gagne's avatar
Don Gagne committed
195
                anchors.margins:        _defaultTextWidth * 2
Don Gagne's avatar
Don Gagne committed
196 197 198 199
                anchors.fill:           parent
                verticalAlignment:      Text.AlignVCenter
                horizontalAlignment:    Text.AlignHCenter
                wrapMode:               Text.WordWrap
200
                font.pixelSize:         ScreenTools.mediumFontPixelSize
Don Gagne's avatar
Don Gagne committed
201
                text:                   _messagePanelText
202 203 204 205
            }
        }
    }

Don Gagne's avatar
Don Gagne committed
206
    Rectangle {
dogmaphobic's avatar
dogmaphobic committed
207 208 209 210 211 212 213 214 215 216 217 218 219
        //-- Limit height to available height (below tool bar)
        anchors.topMargin:  _margin
        height:             mainWindow.avaiableHeight
        anchors.bottom:     parent.bottom
        anchors.left:       parent.left
        anchors.right:      parent.right
        color:              qgcPal.window

        Flickable {
            id:                 buttonScroll
            width:              _buttonWidth
            anchors.topMargin:  _defaultTextHeight / 2
            anchors.top:        parent.top
Don Gagne's avatar
Don Gagne committed
220
            anchors.bottom:     parent.bottom
dogmaphobic's avatar
dogmaphobic committed
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 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
            clip:               true
            contentHeight:      buttonColumn.height
            contentWidth:       parent.width
            boundsBehavior:     Flickable.StopAtBounds
            flickableDirection: Flickable.VerticalFlick

            Column {
                id:         buttonColumn
                width:      _buttonWidth
                spacing:    _defaultTextHeight / 2

                SubMenuButton {
                    id:             summaryButton
                    width:          _buttonWidth
                    imageResource: "/qmlimages/VehicleSummaryIcon.png"
                    setupIndicator: false
                    checked:        true
                    exclusiveGroup: setupButtonGroup
                    text:           "SUMMARY"

                    onClicked: showSummaryPanel()
                }

                SubMenuButton {
                    id:             firmwareButton
                    width:          _buttonWidth
                    imageResource:  "/qmlimages/FirmwareUpgradeIcon.png"
                    setupIndicator: false
                    exclusiveGroup: setupButtonGroup
                    visible:        !ScreenTools.isMobile
                    text:           "FIRMWARE"

                    onClicked: showFirmwarePanel()
                }

                SubMenuButton {
                    id:             joystickButton
                    width:          _buttonWidth
                    setupIndicator: true
                    setupComplete:  joystickManager.activeJoystick ? joystickManager.activeJoystick.calibrated : false
                    exclusiveGroup: setupButtonGroup
                    visible:        _fullParameterVehicleAvailable && joystickManager.joysticks.length != 0
                    text:           "JOYSTICK"

                    onClicked: showJoystickPanel()
                }

                Repeater {
                    model: _fullParameterVehicleAvailable ? multiVehicleManager.activeVehicle.autopilot.vehicleComponents : 0
Don Gagne's avatar
Don Gagne committed
270 271 272

                    SubMenuButton {
                        width:          _buttonWidth
dogmaphobic's avatar
dogmaphobic committed
273 274 275
                        imageResource:  modelData.iconResource
                        setupIndicator: modelData.requiresSetup
                        setupComplete:  modelData.setupComplete
Don Gagne's avatar
Don Gagne committed
276
                        exclusiveGroup: setupButtonGroup
dogmaphobic's avatar
dogmaphobic committed
277
                        text:           modelData.name.toUpperCase()
Don Gagne's avatar
Don Gagne committed
278

dogmaphobic's avatar
dogmaphobic committed
279
                        onClicked: showVehicleComponentPanel(modelData)
Don Gagne's avatar
Don Gagne committed
280
                    }
dogmaphobic's avatar
dogmaphobic committed
281
                }
Don Gagne's avatar
Don Gagne committed
282

dogmaphobic's avatar
dogmaphobic committed
283 284 285 286 287 288
                SubMenuButton {
                    width:          _buttonWidth
                    setupIndicator: false
                    exclusiveGroup: setupButtonGroup
                    visible:        multiVehicleManager.parameterReadyVehicleAvailable
                    text:           "PARAMETERS"
Don Gagne's avatar
Don Gagne committed
289

dogmaphobic's avatar
dogmaphobic committed
290 291
                    onClicked: showParametersPanel()
                }
292

dogmaphobic's avatar
dogmaphobic committed
293 294 295 296 297 298
                SubMenuButton {
                    width:          _buttonWidth
                    setupIndicator: false
                    exclusiveGroup: setupButtonGroup
                    visible:        ScreenTools.isDebug
                    text:           "DEBUG"
299

dogmaphobic's avatar
dogmaphobic committed
300 301
                    onClicked: showDebugPanel()
                }
302

Don Gagne's avatar
Don Gagne committed
303
            }
Don Gagne's avatar
Don Gagne committed
304
        }
dogmaphobic's avatar
dogmaphobic committed
305 306 307 308 309 310 311 312 313 314 315 316

        Loader {
            id:                     panelLoader
            anchors.topMargin:      _margin
            anchors.bottomMargin:   _margin
            anchors.leftMargin:     _defaultTextWidth
            anchors.rightMargin:    _defaultTextWidth
            anchors.left:           buttonScroll.right
            anchors.right:          parent.right
            anchors.top:            parent.top
            anchors.bottom:         parent.bottom
        }
317 318
    }
}