2020-10-13 18:41:23 +08:00
|
|
|
#ifndef TOOLS_INDEX3_H
|
2020-06-04 18:20:13 +08:00
|
|
|
#define TOOLS_INDEX3_H
|
|
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
#include "QFile"
|
|
|
|
|
#include "QTextStream"
|
|
|
|
|
#include "QDebug"
|
|
|
|
|
|
2020-10-13 18:41:23 +08:00
|
|
|
#include "QAction"
|
|
|
|
|
#include "QContextMenuEvent"
|
|
|
|
|
#include "QMenu"
|
|
|
|
|
#include "QScreen"
|
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
|
2020-06-04 18:20:13 +08:00
|
|
|
namespace Ui {
|
|
|
|
|
class Tools_Index3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class Tools_Index3 : public QWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit Tools_Index3(QWidget *parent = nullptr);
|
|
|
|
|
~Tools_Index3();
|
|
|
|
|
|
|
|
|
|
void resizeEvent(QResizeEvent *event);
|
|
|
|
|
|
2020-10-13 18:41:23 +08:00
|
|
|
public slots:
|
|
|
|
|
void setFloat(void);
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void closeEvent(QCloseEvent *event);
|
|
|
|
|
|
|
|
|
|
void contextMenuEvent(QContextMenuEvent *event);
|
|
|
|
|
|
2020-06-04 18:20:13 +08:00
|
|
|
private:
|
|
|
|
|
Ui::Tools_Index3 *ui;
|
2020-10-13 18:41:23 +08:00
|
|
|
QWidget *m_parent;
|
2020-06-04 18:20:13 +08:00
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // INDEX1_H
|