PowerComponent.h 1.42 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.
 *
 ****************************************************************************/

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

/// @file
///     @brief Battery, propeller and magnetometer settings
Gus Grubba's avatar
Gus Grubba committed
18
///     @author Gus Grubba <gus@auterion.com>
dogmaphobic's avatar
dogmaphobic committed
19

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 = nullptr);
dogmaphobic's avatar
dogmaphobic committed
26
    
27
    // Overrides from VehicleComponent
28
    QStringList setupCompleteChangedTriggerList(void) const override;
dogmaphobic's avatar
dogmaphobic committed
29
    
30 31 32 33 34 35 36 37 38 39
    // Overrides from VehicleComponent
    QString name                    (void) const override;
    QString description             (void) const override;
    QString iconResource            (void) const override;
    bool    requiresSetup           (void) const override;
    bool    setupComplete           (void) const override;
    QUrl    setupSource             (void) const override;
    QUrl    summaryQmlSource        (void) const override;
    bool    allowSetupWhileArmed    (void) const override { return true; }

dogmaphobic's avatar
dogmaphobic committed
40 41 42 43 44 45
private:
    const QString   _name;
    QVariantList    _summaryItems;
};

#endif