mirror of
https://github.com/fralx/LimeReport.git
synced 2025-04-05 17:03:46 +03:00
isNeedToSave() added
This commit is contained in:
parent
e4b8701b21
commit
ba902477b9
@ -940,6 +940,11 @@ bool ReportDesignWindow::checkNeedToSave()
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool LimeReport::ReportDesignWindow::isNeedToSave()
|
||||||
|
{
|
||||||
|
return m_reportDesignWidget->isNeedToSave();
|
||||||
|
}
|
||||||
|
|
||||||
void ReportDesignWindow::showModal()
|
void ReportDesignWindow::showModal()
|
||||||
{
|
{
|
||||||
bool deleteOnClose = testAttribute(Qt::WA_DeleteOnClose);
|
bool deleteOnClose = testAttribute(Qt::WA_DeleteOnClose);
|
||||||
|
@ -65,6 +65,7 @@ public:
|
|||||||
static ReportDesignWindow* instance(){return m_instance;}
|
static ReportDesignWindow* instance(){return m_instance;}
|
||||||
|
|
||||||
bool checkNeedToSave();
|
bool checkNeedToSave();
|
||||||
|
bool isNeedToSave();
|
||||||
void showModal();
|
void showModal();
|
||||||
void showNonModal();
|
void showNonModal();
|
||||||
void setSettings(QSettings* value);
|
void setSettings(QSettings* value);
|
||||||
|
@ -11,6 +11,7 @@ class LIMEREPORT_EXPORT ReportDesignWindowInterface: public QMainWindow{
|
|||||||
public:
|
public:
|
||||||
ReportDesignWindowInterface(QWidget* parent = 0): QMainWindow(parent){}
|
ReportDesignWindowInterface(QWidget* parent = 0): QMainWindow(parent){}
|
||||||
virtual bool checkNeedToSave() = 0;
|
virtual bool checkNeedToSave() = 0;
|
||||||
|
virtual bool isNeedToSave() = 0;
|
||||||
virtual void showModal() = 0;
|
virtual void showModal() = 0;
|
||||||
virtual void showNonModal() = 0;
|
virtual void showNonModal() = 0;
|
||||||
virtual void setSettings(QSettings* value) = 0;
|
virtual void setSettings(QSettings* value) = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user