0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-23 16:22:58 +03:00
LimeReport/include/lrreportdesignwindowintrerface.h
Андрей Лухнов 0fca7169d3 Define code style and format all source file using clang-format-14
except those placed in 3rdparty directories.
2024-09-19 21:09:38 +03:00

24 lines
665 B
C++

#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