|
|
|
@ -49,8 +49,9 @@ public:
@@ -49,8 +49,9 @@ public:
|
|
|
|
|
Q_PROPERTY(QObject* flyViewSettings READ flyViewSettings CONSTANT) |
|
|
|
|
Q_PROPERTY(QObject* planViewSettings READ planViewSettings CONSTANT) |
|
|
|
|
Q_PROPERTY(QObject* brandImageSettings READ brandImageSettings CONSTANT) |
|
|
|
|
#if !defined(NO_ARDUPILOT_DIALECT) |
|
|
|
|
Q_PROPERTY(QObject* apmMavlinkStreamRateSettings READ apmMavlinkStreamRateSettings CONSTANT) |
|
|
|
|
|
|
|
|
|
#endif |
|
|
|
|
// Override from QGCTool
|
|
|
|
|
virtual void setToolbox(QGCToolbox *toolbox); |
|
|
|
|
|
|
|
|
@ -66,8 +67,9 @@ public:
@@ -66,8 +67,9 @@ public:
|
|
|
|
|
FlyViewSettings* flyViewSettings (void) { return _flyViewSettings; } |
|
|
|
|
PlanViewSettings* planViewSettings (void) { return _planViewSettings; } |
|
|
|
|
BrandImageSettings* brandImageSettings (void) { return _brandImageSettings; } |
|
|
|
|
#if !defined(NO_ARDUPILOT_DIALECT) |
|
|
|
|
APMMavlinkStreamRateSettings* apmMavlinkStreamRateSettings(void) { return _apmMavlinkStreamRateSettings; } |
|
|
|
|
|
|
|
|
|
#endif |
|
|
|
|
private: |
|
|
|
|
#if defined(QGC_AIRMAP_ENABLED) |
|
|
|
|
AirMapSettings* _airMapSettings; |
|
|
|
@ -81,7 +83,9 @@ private:
@@ -81,7 +83,9 @@ private:
|
|
|
|
|
FlyViewSettings* _flyViewSettings; |
|
|
|
|
PlanViewSettings* _planViewSettings; |
|
|
|
|
BrandImageSettings* _brandImageSettings; |
|
|
|
|
#if !defined(NO_ARDUPILOT_DIALECT) |
|
|
|
|
APMMavlinkStreamRateSettings* _apmMavlinkStreamRateSettings; |
|
|
|
|
#endif |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
#endif |
|
|
|
|