2020-05-29 19:30:33 +08:00
|
|
|
#ifndef TOOLS_INDEX0_H
|
|
|
|
|
#define TOOLS_INDEX0_H
|
|
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
#include "QFile"
|
|
|
|
|
#include "QTextStream"
|
|
|
|
|
|
|
|
|
|
#include "QDebug"
|
|
|
|
|
|
2020-06-11 17:32:58 +08:00
|
|
|
#include "MAVLinkInspector.h"
|
2020-05-29 19:30:33 +08:00
|
|
|
|
2020-08-01 10:53:17 +08:00
|
|
|
//#include "Scope.h"
|
|
|
|
|
|
2020-05-29 19:30:33 +08:00
|
|
|
namespace Ui {
|
|
|
|
|
class Tools_Index0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Tools_Index0 : public QWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit Tools_Index0(QWidget *parent = nullptr);
|
|
|
|
|
~Tools_Index0();
|
|
|
|
|
|
|
|
|
|
void resizeEvent(QResizeEvent *event);
|
|
|
|
|
|
2020-06-11 17:32:58 +08:00
|
|
|
MAVLinkInspector *mavlinkinspector = nullptr;
|
|
|
|
|
|
2020-05-29 19:30:33 +08:00
|
|
|
public slots:
|
|
|
|
|
|
|
|
|
|
void setInstallWidget(QWidget *w);
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Ui::Tools_Index0 *ui;
|
|
|
|
|
QWidget *Inspect = nullptr;
|
|
|
|
|
|
2020-08-01 10:53:17 +08:00
|
|
|
//Scope *scope = nullptr;
|
2020-06-11 17:32:58 +08:00
|
|
|
|
2020-05-29 19:30:33 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // INDEX0_H
|