0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-23 16:22:58 +03:00
LimeReport/lrdview/SettingDialog.h

31 lines
572 B
C
Raw Normal View History

2021-09-11 19:03:57 +03:00
#ifndef SETTINGDIALOG_H
#define SETTINGDIALOG_H
#include <QDialog>
namespace Ui {
class SettingDialog;
}
class SettingDialog: public QDialog {
2021-09-11 19:03:57 +03:00
Q_OBJECT
public:
explicit SettingDialog(QWidget* parent = 0);
2021-09-11 19:03:57 +03:00
~SettingDialog();
void setCertPrinterName(QString printerName);
void setOtherPrinterName(QString printerName);
QString certPrinterName();
QString othenPrinterName();
bool deleteLastFile();
void setDeleteLastFile(bool value);
2021-09-11 19:03:57 +03:00
private:
void initPrinters();
private:
Ui::SettingDialog* ui;
2021-09-11 19:03:57 +03:00
};
#endif // SETTINGDIALOG_H