PlotterHMI/drawingsetdialog.h
huahaiyan 3ce55cebbd 20240308
1、梳理代码,修改绘制会绘制两次的bug;
2、增加正向旋转功能,线宽设置功能;
3、测试压缩算法,完成;
2024-03-08 16:33:05 +08:00

34 lines
612 B
C++

#ifndef DRAWINGSETDIALOG_H
#define DRAWINGSETDIALOG_H
#include <QDialog>
#include <QDir>
#include <QSettings>
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();
private:
Ui::DrawingSetDialog *ui;
QString m_configfile;
};
#endif // DRAWINGSETDIALOG_H