PlotterHMI/drawingsetdialog.h

34 lines
612 B
C
Raw Normal View History

2024-02-06 06:19:53 +00:00
#ifndef DRAWINGSETDIALOG_H
#define DRAWINGSETDIALOG_H
#include <QDialog>
#include <QDir>
#include <QSettings>
2024-02-06 06:19:53 +00:00
namespace Ui {
class DrawingSetDialog;
}
class DrawingSetDialog : public QDialog
{
Q_OBJECT
public:
explicit DrawingSetDialog(QWidget *parent = 0);
~DrawingSetDialog();
void refreshLanguage();
void refreshConfigPara(QString filePath);//刷新配置参数
double getRotateAngle();
private slots:
void on_pushButton_cancel_clicked();
void on_pushButton_ok_clicked();
2024-02-06 06:19:53 +00:00
private:
Ui::DrawingSetDialog *ui;
QString m_configfile;
2024-02-06 06:19:53 +00:00
};
#endif // DRAWINGSETDIALOG_H