|
|
@ -264,6 +264,9 @@ public: |
|
|
|
Q_PROPERTY(QString takeControlFlightMode READ takeControlFlightMode CONSTANT) |
|
|
|
Q_PROPERTY(QString takeControlFlightMode READ takeControlFlightMode CONSTANT) |
|
|
|
Q_PROPERTY(QString firmwareTypeString READ firmwareTypeString NOTIFY firmwareTypeChanged) |
|
|
|
Q_PROPERTY(QString firmwareTypeString READ firmwareTypeString NOTIFY firmwareTypeChanged) |
|
|
|
Q_PROPERTY(QString vehicleTypeString READ vehicleTypeString NOTIFY vehicleTypeChanged) |
|
|
|
Q_PROPERTY(QString vehicleTypeString READ vehicleTypeString NOTIFY vehicleTypeChanged) |
|
|
|
|
|
|
|
Q_PROPERTY(QString vehicleImageOpaque READ vehicleImageOpaque CONSTANT) |
|
|
|
|
|
|
|
Q_PROPERTY(QString vehicleImageOutline READ vehicleImageOutline CONSTANT) |
|
|
|
|
|
|
|
Q_PROPERTY(QString vehicleImageCompass READ vehicleImageCompass CONSTANT) |
|
|
|
|
|
|
|
|
|
|
|
/// true: Vehicle is flying, false: Vehicle is on ground
|
|
|
|
/// true: Vehicle is flying, false: Vehicle is on ground
|
|
|
|
Q_PROPERTY(bool flying READ flying WRITE setFlying NOTIFY flyingChanged) |
|
|
|
Q_PROPERTY(bool flying READ flying WRITE setFlying NOTIFY flyingChanged) |
|
|
@ -582,6 +585,10 @@ public: |
|
|
|
/// and destroyed when the vehicle goes away.
|
|
|
|
/// and destroyed when the vehicle goes away.
|
|
|
|
void setFirmwarePluginInstanceData(QObject* firmwarePluginInstanceData); |
|
|
|
void setFirmwarePluginInstanceData(QObject* firmwarePluginInstanceData); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QString vehicleImageOpaque () const; |
|
|
|
|
|
|
|
QString vehicleImageOutline () const; |
|
|
|
|
|
|
|
QString vehicleImageCompass () const; |
|
|
|
|
|
|
|
|
|
|
|
public slots: |
|
|
|
public slots: |
|
|
|
void setLatitude(double latitude); |
|
|
|
void setLatitude(double latitude); |
|
|
|
void setLongitude(double longitude); |
|
|
|
void setLongitude(double longitude); |
|
|
|