2024-02-06 06:19:53 +00:00
|
|
|
#ifndef DRAWINGSETDIALOG_H
|
|
|
|
#define DRAWINGSETDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2024-03-08 08:33:05 +00:00
|
|
|
#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();
|
2024-03-08 08:33:05 +00:00
|
|
|
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;
|
2024-03-08 08:33:05 +00:00
|
|
|
QString m_configfile;
|
|
|
|
|
2024-02-06 06:19:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DRAWINGSETDIALOG_H
|