0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-04-05 17:03:46 +03:00

isNeedToSave() added

This commit is contained in:
Sanych 2023-11-16 10:54:37 +03:00
parent e4b8701b21
commit ba902477b9
3 changed files with 7 additions and 0 deletions

View File

@ -940,6 +940,11 @@ bool ReportDesignWindow::checkNeedToSave()
return true;
}
bool LimeReport::ReportDesignWindow::isNeedToSave()
{
return m_reportDesignWidget->isNeedToSave();
}
void ReportDesignWindow::showModal()
{
bool deleteOnClose = testAttribute(Qt::WA_DeleteOnClose);

View File

@ -65,6 +65,7 @@ public:
static ReportDesignWindow* instance(){return m_instance;}
bool checkNeedToSave();
bool isNeedToSave();
void showModal();
void showNonModal();
void setSettings(QSettings* value);

View File

@ -11,6 +11,7 @@ class LIMEREPORT_EXPORT ReportDesignWindowInterface: public QMainWindow{
public:
ReportDesignWindowInterface(QWidget* parent = 0): QMainWindow(parent){}
virtual bool checkNeedToSave() = 0;
virtual bool isNeedToSave() = 0;
virtual void showModal() = 0;
virtual void showNonModal() = 0;
virtual void setSettings(QSettings* value) = 0;