ApmPlaneLevel.h 513 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#ifndef APMPLANELEVEL_H
#define APMPLANELEVEL_H

#include <QWidget>
#include "ui_ApmPlaneLevel.h"
#include "AP2ConfigWidget.h"

class ApmPlaneLevel : public AP2ConfigWidget
{
    Q_OBJECT
    
public:
    explicit ApmPlaneLevel(QWidget *parent = 0);
    ~ApmPlaneLevel();
private slots:
    void parameterChanged(int uas, int component, QString parameterName, QVariant value);
    void levelClicked();
    void manualCheckBoxToggled(bool checked);
private:
    Ui::ApmPlaneLevel ui;
};

#endif // APMPLANELEVEL_H