SpeedSection.h 2.18 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/****************************************************************************
 *
 *   (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.
 *
 ****************************************************************************/

#pragma once

#include "Section.h"
#include "FactSystem.h"
#include "QmlObjectListModel.h"

class SpeedSection : public Section
{
    Q_OBJECT

public:
    SpeedSection(Vehicle* vehicle, QObject* parent = NULL);

    Q_PROPERTY(bool     specifyFlightSpeed  READ specifyFlightSpeed WRITE setSpecifyFlightSpeed NOTIFY specifyFlightSpeedChanged)
    Q_PROPERTY(Fact*    flightSpeed         READ flightSpeed                                    CONSTANT)

    bool    specifyFlightSpeed      (void) const { return _specifyFlightSpeed; }
    Fact*   flightSpeed             (void) { return &_flightSpeedFact; }
    void    setSpecifyFlightSpeed   (bool specifyFlightSpeed);

30 31 32 33
    ///< Signals specifiedFlightSpeedChanged
    ///< @return The flight speed specified by this item, NaN if not specified
    double specifiedFlightSpeed(void) const;

34 35 36 37 38
    // Overrides from Section
    bool available          (void) const override { return _available; }
    bool dirty              (void) const override { return _dirty; }
    void setAvailable       (bool available) override;
    void setDirty           (bool dirty) override;
39
    bool scanForSection     (QmlObjectListModel* visualItems, int scanIndex) override;
40 41 42 43 44
    void appendSectionItems (QList<MissionItem*>& items, QObject* missionItemParent, int& seqNum) override;
    int  itemCount          (void) const override;
    bool settingsSpecified  (void) const override;

signals:
45 46
    void specifyFlightSpeedChanged      (bool specifyFlightSpeed);
    void specifiedFlightSpeedChanged    (double flightSpeed);
47 48

private slots:
49
    void _updateSpecifiedFlightSpeed(void);
50
    void _flightSpeedChanged        (void);
51 52

private:
53 54 55 56
    bool    _available;
    bool    _dirty;
    bool    _specifyFlightSpeed;
    Fact    _flightSpeedFact;
57 58 59 60 61

    static QMap<QString, FactMetaData*> _metaDataMap;

    static const char* _flightSpeedName;
};