0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-11-25 00:18:06 +03:00

lrdview has been added

This commit is contained in:
fralx
2021-09-11 19:03:57 +03:00
parent 1ec6aeef7e
commit 4318c7d0c9
30 changed files with 859 additions and 1 deletions

30
lrdview/SettingDialog.h Normal file
View File

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