Skip to content
PX4RadioComponent.h 1.14 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.
 *
 ****************************************************************************/

Don Gagne's avatar
Don Gagne committed
#ifndef PX4RadioComponent_H
#define PX4RadioComponent_H
#include "VehicleComponent.h"
class PX4RadioComponent : public VehicleComponent
{
    Q_OBJECT
    
public:
Don Gagne's avatar
Don Gagne committed
    PX4RadioComponent(Vehicle* vehicle, AutoPilotPlugin* autopilot, QObject* parent = NULL);
    // Virtuals from VehicleComponent
Don Gagne's avatar
Don Gagne committed
    virtual QStringList setupCompleteChangedTriggerList(void) const;
    
    // Virtuals from VehicleComponent
    virtual QString name(void) const;
    virtual QString description(void) const;
    virtual QString iconResource(void) const;
    virtual bool requiresSetup(void) const;
    virtual bool setupComplete(void) const;
    virtual QUrl setupSource(void) const;
    virtual QUrl summaryQmlSource(void) const;
    const QString   _name;
    QVariantList    _summaryItems;