You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
658 B
33 lines
658 B
#ifndef QGCHILXPLANECONFIGURATION_H |
|
#define QGCHILXPLANECONFIGURATION_H |
|
|
|
#include <QWidget> |
|
|
|
#include "QGCHilLink.h" |
|
|
|
namespace Ui { |
|
class QGCHilXPlaneConfiguration; |
|
} |
|
|
|
class QGCHilXPlaneConfiguration : public QWidget |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit QGCHilXPlaneConfiguration(QGCHilLink* link, QWidget *parent = 0); |
|
~QGCHilXPlaneConfiguration(); |
|
|
|
public slots: |
|
/** @brief Start / stop simulation */ |
|
void toggleSimulation(bool connect); |
|
/** @brief Set X-Plane version */ |
|
void setVersion(int version); |
|
|
|
protected: |
|
QGCHilLink* link; |
|
|
|
private: |
|
Ui::QGCHilXPlaneConfiguration *ui; |
|
}; |
|
|
|
#endif // QGCHILXPLANECONFIGURATION_H
|
|
|