Skip to content
PowerComponentSummary.qml 1.7 KiB
Newer Older
/****************************************************************************
 *
 *   (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.
 *
 ****************************************************************************/
dogmaphobic's avatar
dogmaphobic committed


/// @file
///     @brief Battery, propeller and magnetometer summary
///     @author Gus Grubba <mavlink@grubba.com>

import QtQuick 2.2
dogmaphobic's avatar
dogmaphobic committed
import QtQuick.Controls 1.2

import QGroundControl.FactSystem 1.0
import QGroundControl.FactControls 1.0
import QGroundControl.Controls 1.0
import QGroundControl.Palette 1.0
dogmaphobic's avatar
dogmaphobic committed

FactPanel {
    id:             panel
    anchors.fill:   parent
    color:          qgcPal.windowShadeDark
dogmaphobic's avatar
dogmaphobic committed

Don Gagne's avatar
Don Gagne committed
    QGCPalette { id: qgcPal; colorGroupEnabled: enabled }
    FactPanelController { id: controller; factPanel: panel }

    property Fact batVChargedFact:  controller.getParameterFact(-1, "BAT_V_CHARGED")
    property Fact batVEmptyFact:    controller.getParameterFact(-1, "BAT_V_EMPTY")
    property Fact batCellsFact:     controller.getParameterFact(-1, "BAT_N_CELLS")
dogmaphobic's avatar
dogmaphobic committed

    Column {
        anchors.fill:       parent
dogmaphobic's avatar
dogmaphobic committed

        VehicleSummaryRow {
            labelText: qsTr("Battery Full:")
Don Gagne's avatar
Don Gagne committed
            valueText: batVChargedFact ? batVChargedFact.valueString + " " + batVChargedFact.units : ""
        VehicleSummaryRow {
            labelText: qsTr("Battery Empty:")
Don Gagne's avatar
Don Gagne committed
            valueText: batVEmptyFact ? batVEmptyFact.valueString + " " + batVEmptyFact.units : ""
dogmaphobic's avatar
dogmaphobic committed

        VehicleSummaryRow {
            labelText: qsTr("Number of Cells:")
dogmaphobic's avatar
dogmaphobic committed
            valueText: batCellsFact ? batCellsFact.valueString : ""
dogmaphobic's avatar
dogmaphobic committed
    }
dogmaphobic's avatar
dogmaphobic committed
}