forked from mavlink/qgroundcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpeedSection.h
61 lines (48 loc) · 2.18 KB
/
SpeedSection.h
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/****************************************************************************
*
* (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);
///< Signals specifiedFlightSpeedChanged
///< @return The flight speed specified by this item, NaN if not specified
double specifiedFlightSpeed(void) const;
// 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;
bool scanForSection (QmlObjectListModel* visualItems, int scanIndex) override;
void appendSectionItems (QList<MissionItem*>& items, QObject* missionItemParent, int& seqNum) override;
int itemCount (void) const override;
bool settingsSpecified (void) const override;
signals:
void specifyFlightSpeedChanged (bool specifyFlightSpeed);
void specifiedFlightSpeedChanged (double flightSpeed);
private slots:
void _updateSpecifiedFlightSpeed(void);
void _flightSpeedChanged (void);
private:
bool _available;
bool _dirty;
bool _specifyFlightSpeed;
Fact _flightSpeedFact;
static QMap<QString, FactMetaData*> _metaDataMap;
static const char* _flightSpeedName;
};