0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-12-14 08:50:58 +03:00

Some changes

This commit is contained in:
Sanych
2023-11-14 11:37:14 +03:00
parent 85ec78dd3d
commit 8dd7540a8b
5 changed files with 36 additions and 3 deletions

View File

@@ -3,10 +3,11 @@
#include <QMainWindow>
#include <QSettings>
#include "lrglobal.h"
namespace LimeReport {
class ReportDesignWindowInterface: public QMainWindow{
class LIMEREPORT_EXPORT ReportDesignWindowInterface: public QMainWindow{
public:
ReportDesignWindowInterface(QWidget* parent = 0): QMainWindow(parent){}
virtual bool checkNeedToSave() = 0;
@@ -16,6 +17,7 @@ public:
virtual QSettings* settings() = 0;
virtual void restoreSetting() = 0;
virtual void setShowProgressDialog(bool value) = 0;
virtual void newReport() = 0;
};
} // namespace LimeReport