PowerComponent.h 1.43 KB
Newer Older
1 2 3 4 5 6 7 8 9
/****************************************************************************
 *
 *   (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
10 11 12 13

#ifndef PowerComponent_H
#define PowerComponent_H

14
#include "VehicleComponent.h"
dogmaphobic's avatar
dogmaphobic committed
15 16 17 18 19

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

20
class PowerComponent : public VehicleComponent
dogmaphobic's avatar
dogmaphobic committed
21 22 23 24
{
    Q_OBJECT
    
public:
25
    PowerComponent(Vehicle* vehicle, AutoPilotPlugin* autopilot, QObject* parent = NULL);
dogmaphobic's avatar
dogmaphobic committed
26
    
27
    // Virtuals from VehicleComponent
dogmaphobic's avatar
dogmaphobic committed
28 29 30 31 32 33 34 35
    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;
36
    virtual QUrl        setupSource             (void) const;
dogmaphobic's avatar
dogmaphobic committed
37 38 39 40 41 42 43 44 45
    virtual QUrl        summaryQmlSource        (void) const;
    virtual QString     prerequisiteSetup       (void) const;
    
private:
    const QString   _name;
    QVariantList    _summaryItems;
};

#endif