QGCHilConfiguration.h 625 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef QGCHILCONFIGURATION_H
#define QGCHILCONFIGURATION_H

#include <QWidget>

#include "QGCHilLink.h"

namespace Ui {
class QGCHilConfiguration;
}

class QGCHilConfiguration : public QWidget
{
    Q_OBJECT
    
public:
    QGCHilConfiguration(QGCHilLink* link, QWidget *parent = 0);
    ~QGCHilConfiguration();

public slots:
21
    /** @brief Start / stop simulation */
22
    void toggleSimulation(bool connect);
23 24
    /** @brief Receive status message */
    void receiveStatusMessage(const QString& message);
25 26 27 28 29 30 31 32 33

protected:
    QGCHilLink* link;
    
private:
    Ui::QGCHilConfiguration *ui;
};

#endif // QGCHILCONFIGURATION_H