APMFlightModesComponent.cc 1.61 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 9
 *
 * 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
10 11 12

#include "APMFlightModesComponent.h"
#include "APMAutoPilotPlugin.h"
13 14
#include "APMAirframeComponent.h"
#include "APMRadioComponent.h"
Don Gagne's avatar
Don Gagne committed
15 16

APMFlightModesComponent::APMFlightModesComponent(Vehicle* vehicle, AutoPilotPlugin* autopilot, QObject* parent) :
17
    VehicleComponent(vehicle, autopilot, parent),
Don Gagne's avatar
Don Gagne committed
18 19 20 21 22 23 24 25 26 27 28
    _name(tr("Flight Modes"))
{
}

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

QString APMFlightModesComponent::description(void) const
{
29
    return tr("Flight Modes Setup is used to configure the transmitter switches associated with Flight Modes.");
Don Gagne's avatar
Don Gagne committed
30 31 32 33
}

QString APMFlightModesComponent::iconResource(void) const
{
34
    return QStringLiteral("/qmlimages/FlightModesComponentIcon.png");
Don Gagne's avatar
Don Gagne committed
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
}

bool APMFlightModesComponent::requiresSetup(void) const
{
    return true;
}

bool APMFlightModesComponent::setupComplete(void) const
{
    return true;
}

QStringList APMFlightModesComponent::setupCompleteChangedTriggerList(void) const
{
    return QStringList();
}

QUrl APMFlightModesComponent::setupSource(void) const
{
54
    return QUrl::fromUserInput(QStringLiteral("qrc:/qml/APMFlightModesComponent.qml"));
Don Gagne's avatar
Don Gagne committed
55 56 57 58
}

QUrl APMFlightModesComponent::summaryQmlSource(void) const
{
59
    return QUrl::fromUserInput(QStringLiteral("qrc:/qml/APMFlightModesComponentSummary.qml"));
Don Gagne's avatar
Don Gagne committed
60
}