mirror of
https://github.com/fralx/LimeReport.git
synced 2025-04-05 08:53:52 +03:00
isNeedToSave() added
This commit is contained in:
parent
e4b8701b21
commit
ba902477b9
@ -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);
|
||||
|
@ -65,6 +65,7 @@ public:
|
||||
static ReportDesignWindow* instance(){return m_instance;}
|
||||
|
||||
bool checkNeedToSave();
|
||||
bool isNeedToSave();
|
||||
void showModal();
|
||||
void showNonModal();
|
||||
void setSettings(QSettings* value);
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user