MultiVehicleView.qml 13.5 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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 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 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
/****************************************************************************
 *
 *   (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.
 *
 ****************************************************************************/

import QtQuick          2.4
import QtQuick.Controls 1.3
import QtQuick.Dialogs  1.2
import QtQuick.Layouts  1.2

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

/// Multi-Vehicle View
QGCView {
    id:         qgcView
    viewPanel:  panel

    property real   _margins: ScreenTools.defaultFontPixelWidth
    property var    _fileDialogController

    readonly property string _loadingText: qsTr("Loading...")

    QGCPalette { id: qgcPal; colorGroupEnabled: enabled }

    QGCViewPanel {
        id:             panel
        anchors.fill:   parent

        Rectangle {
            anchors.fill:   parent
            color:          qgcPal.window

            QGCFlickable {
                anchors.fill:       parent
                contentHeight:      vehicleColumn.height
                flickableDirection: Flickable.VerticalFlick
                clip:               true

                Column {
                    id:                 vehicleColumn
                    anchors.margins:    _margins
                    anchors.left:       parent.left
                    anchors.right:      parent.right
                    anchors.top:        parent.top
                    spacing:            _margins

                    QGCLabel { text: qsTr("All Vehicles") }

                    Repeater {
                        model: QGroundControl.multiVehicleManager.vehicles

                        Column {
                            anchors.left:   parent.left
                            anchors.right:  parent.right
                            spacing:        ScreenTools.defaultFontPixelHeight / 2

                            MissionController {
                                id: missionController

                                Component.onCompleted: startStaticActiveVehicle(object)

                                property bool missionAvailable: visualItems && visualItems.count > 1

                                function loadFromSelectedFile() {
                                    if (ScreenTools.isMobile) {
                                        _fileDialogController = missionController
                                        qgcView.showDialog(mobileFilePicker, qsTr("Select Mission File"), qgcView.showDialogDefaultWidth, StandardButton.Yes | StandardButton.Cancel)
                                    } else {
                                        missionController.loadFromFilePicker()
                                        missionController.sendToVehicle()
                                    }
                                }
                            } // MissionController

                            GeoFenceController {
                                id: geoFenceController

                                Component.onCompleted: startStaticActiveVehicle(object)

                                property bool fenceAvailable: fenceSupported && (circleSupported || polygonSupported)

                                function loadFromSelectedFile() {
                                    if (ScreenTools.isMobile) {
                                        _fileDialogController = geoFenceController
                                        qgcView.showDialog(mobileFilePicker, qsTr("Select Fence File"), qgcView.showDialogDefaultWidth, StandardButton.Yes | StandardButton.Cancel)
                                    } else {
                                        geoFenceController.loadFromFilePicker()
                                        geoFenceController.sendToVehicle()
                                    }
                                }
                            } // GeoFenceController

                            RallyPointController {
                                id: rallyPointController

                                Component.onCompleted: startStaticActiveVehicle(object)

                                property bool pointsAvailable: rallyPointsSupported && points.count

                                function loadFromSelectedFile() {
                                    if (ScreenTools.isMobile) {
                                        _fileDialogController = rallyPointController
                                        qgcView.showDialog(mobileFilePicker, qsTr("Select Rally Point File"), qgcView.showDialogDefaultWidth, StandardButton.Yes | StandardButton.Cancel)
                                    } else {
                                        rallyPointController.loadFromFilePicker()
                                        rallyPointController.sendToVehicle()
                                    }
                                }
                            } // RallyPointController

                            QGCLabel {
                                text: "Vehicle #" + object.id
                            }

                            Rectangle {
                                anchors.left:   parent.left
                                anchors.right:  parent.right
                                height:         vehicleDisplayColumn.height + (_margins * 2)
                                color:          qgcPal.windowShade

                                Column {
                                    id:                 vehicleDisplayColumn
                                    anchors.margins:    _margins
                                    anchors.left:       parent.left
                                    anchors.right:      parent.right
                                    anchors.top:        parent.top

                                    Row {
                                        id:                 indicatorRow
                                        spacing:            _margins
                                        visible:            !object.connectionLost

                                        Rectangle {
                                            width:          missionLabel.contentWidth + _margins
                                            height:         ScreenTools.defaultFontPixelHeight + _margins
                                            radius:         height / 4
                                            color:          missionController.missionAvailable ? "green" : qgcPal.window
                                            border.width:   1
                                            border.color:   qgcPal.text

                                            QGCLabel {
                                                id:                 missionLabel
                                                anchors.margins:    _margins / 2
                                                anchors.left:       parent.left
                                                anchors.top:        parent.top
                                                text:               missionController.syncInProgress ? _loadingText : qsTr("Mission")
                                            }

                                            MouseArea {
                                                anchors.fill:   parent
                                                enabled:        !missionController.syncInProgress
                                                onClicked:      missionController.loadFromSelectedFile()
                                            }
                                        }

                                        Rectangle {
                                            width:          fenceLabel.contentWidth + _margins
                                            height:         ScreenTools.defaultFontPixelHeight + _margins
                                            radius:         height / 4
                                            color:          geoFenceController.fenceAvailable ? "green" : qgcPal.window
                                            border.width:   1
                                            border.color:   qgcPal.text

                                            QGCLabel {
                                                id:                 fenceLabel
                                                anchors.margins:    _margins / 2
                                                anchors.left:       parent.left
                                                anchors.top:        parent.top
                                                text:               geoFenceController.syncInProgress ? _loadingText : qsTr("Fence")
                                            }

                                            MouseArea {
                                                anchors.fill:   parent
                                                enabled:        !geoFenceController.syncInProgress
                                                onClicked:      geoFenceController.loadFromSelectedFile()
                                            }
                                        }

                                        Rectangle {
                                            width:          rallyLabel.contentWidth + _margins
                                            height:         ScreenTools.defaultFontPixelHeight + _margins
                                            radius:         height / 4
                                            color:          rallyPointController.pointsAvailable ? "green" : qgcPal.window
                                            border.width:   1
                                            border.color:   qgcPal.text

                                            QGCLabel {
                                                id:                 rallyLabel
                                                anchors.margins:    _margins / 2
                                                anchors.left:       parent.left
                                                anchors.top:        parent.top
                                                text:               rallyPointController.syncInProgress ? _loadingText : qsTr("Rally")
                                            }

                                            MouseArea {
                                                anchors.fill:   parent
                                                enabled:        !rallyPointController.syncInProgress
                                                onClicked:      rallyPointController.loadFromSelectedFile()
                                            }
                                        }

                                        FlightModeDropdown { activeVehicle: object }

                                        GuidedBar { activeVehicle: object }
                                    } // Row - contents display

                                    Flow {
                                        anchors.left:       parent.left
                                        anchors.right:      parent.right
                                        layoutDirection:    Qt.LeftToRight
                                        spacing:            _margins

                                        Repeater {
                                            model: [ "battery.voltage", "battery.percentRemaining", "altitudeRelative", "altitudeAMSL", "groundSpeed", "heading"]

                                            Column {
                                                property Fact fact: object.getFact(modelData)

                                                QGCLabel {
                                                    anchors.horizontalCenter:    parent.horizontalCenter
                                                    text:                       fact.shortDescription
                                                }
                                                Row {
                                                    anchors.horizontalCenter:    parent.horizontalCenter
                                                    //spacing:                    ScreenTools.defaultFontPixelWidth

                                                    QGCLabel {
                                                        text: fact.enumOrValueString
                                                    }
                                                    QGCLabel {
                                                        text: fact.units
                                                    }
                                                }
                                            }
                                        } // Repeater - Small
                                    } // Flow
                                } // Column
                            } // Rectangle - contents display
                        } // Column - layout for vehicle
                    } // Repeater - vehicle repeater
                } // Column
            } // QGCFlickable
        } // Rectangle - View background
    } // QGCViewPanel

    Component {
        id: mobileFilePicker

        QGCMobileFileDialog {
            openDialog:         true
            fileExtension:      _fileDialogController.fileExtension

            onFilenameReturned: {
                _fileDialogController.loadFromFile(filename)
                _fileDialogController.sendToVehicle()
            }
        }
    }
} // QGCView