APMPowerComponent.cc 1.24 KB
Newer Older
1 2
/****************************************************************************
 *
Gus Grubba's avatar
Gus Grubba committed
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
Don Gagne's avatar
Don Gagne committed
9 10 11 12 13


#include "APMPowerComponent.h"
#include "APMAutoPilotPlugin.h"
#include "APMAirframeComponent.h"
14
#include "ParameterManager.h"
Don Gagne's avatar
Don Gagne committed
15 16

APMPowerComponent::APMPowerComponent(Vehicle* vehicle, AutoPilotPlugin* autopilot, QObject* parent)
17
    : VehicleComponent(vehicle, autopilot, parent),
Don Gagne's avatar
Don Gagne committed
18
    _name(tr("Power"))
Don Gagne's avatar
Don Gagne committed
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
{
}

QString APMPowerComponent::name(void) const
{
    return _name;
}

QString APMPowerComponent::description(void) const
{
    return tr("The Power Component is used to setup battery parameters.");
}

QString APMPowerComponent::iconResource(void) const
{
34
    return QStringLiteral("/qmlimages/PowerComponentIcon.png");
Don Gagne's avatar
Don Gagne committed
35 36 37 38
}

QUrl APMPowerComponent::setupSource(void) const
{
39
    return QUrl::fromUserInput(QStringLiteral("qrc:/qml/APMPowerComponent.qml"));
Don Gagne's avatar
Don Gagne committed
40 41 42 43
}

QUrl APMPowerComponent::summaryQmlSource(void) const
{
44
    return QUrl::fromUserInput(QStringLiteral("qrc:/qml/APMPowerComponentSummary.qml"));
Don Gagne's avatar
Don Gagne committed
45
}