mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2025-09-23 16:49:07 +03:00
windows build fixed
This commit is contained in:
23
include/lrreportdesignwindowintrerface.h
Normal file
23
include/lrreportdesignwindowintrerface.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef LRREPORTDESIGNWINDOWINTRERFACE_H
|
||||
#define LRREPORTDESIGNWINDOWINTRERFACE_H
|
||||
|
||||
#include <QMainWindow>
|
||||
#include <QSettings>
|
||||
|
||||
namespace LimeReport {
|
||||
|
||||
class ReportDesignWindowInterface: public QMainWindow{
|
||||
public:
|
||||
ReportDesignWindowInterface(QWidget* parent = 0): QMainWindow(parent){}
|
||||
virtual bool checkNeedToSave() = 0;
|
||||
virtual void showModal() = 0;
|
||||
virtual void showNonModal() = 0;
|
||||
virtual void setSettings(QSettings* value) = 0;
|
||||
virtual QSettings* settings() = 0;
|
||||
virtual void restoreSetting() = 0;
|
||||
virtual void setShowProgressDialog(bool value) = 0;
|
||||
};
|
||||
|
||||
} // namespace LimeReport
|
||||
|
||||
#endif // LRREPORTDESIGNWINDOWINTRERFACE_H
|
Reference in New Issue
Block a user