2020-05-29 19:30:33 +08:00
|
|
|
#ifndef TOOLS_INDEX1_H
|
|
|
|
|
#define TOOLS_INDEX1_H
|
|
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
#include "QFile"
|
|
|
|
|
#include "QTextStream"
|
|
|
|
|
#include "QDebug"
|
|
|
|
|
|
2020-08-01 10:53:17 +08:00
|
|
|
//#include "Scope.h"
|
2020-07-28 16:11:54 +08:00
|
|
|
|
|
|
|
|
|
2020-05-29 19:30:33 +08:00
|
|
|
namespace Ui {
|
|
|
|
|
class Tools_Index1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class Tools_Index1 : public QWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit Tools_Index1(QWidget *parent = nullptr);
|
|
|
|
|
~Tools_Index1();
|
|
|
|
|
|
|
|
|
|
void resizeEvent(QResizeEvent *event);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Ui::Tools_Index1 *ui;
|
|
|
|
|
|
2020-08-01 10:53:17 +08:00
|
|
|
//Scope *scope = nullptr;
|
2020-05-29 19:30:33 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // INDEX1_H
|