Merge remote-tracking branch 'origin/QetGraphicsTableItem'

This commit is contained in:
Laurent Trinques
2020-04-12 18:51:38 +02:00
parent 41541dde2c
commit 73149973e3
38 changed files with 3232 additions and 528 deletions

View File

@@ -25,6 +25,7 @@
#include "titleblockproperties.h"
#include "templatescollection.h"
#include "properties/xrefproperties.h"
#include "projectdatabase.h"
#include "reportproperties.h"
class Diagram;
@@ -72,6 +73,8 @@ class QETProject : public QObject
// methods
public:
projectDataBase *dataBase();
QUuid uuid() const;
ProjectState state() const;
QList<Diagram *> diagrams() const;
int getFolioSheetsQuantity() const; /// get the folio sheets quantity for this project
@@ -267,6 +270,8 @@ class QETProject : public QObject
QTimer m_save_backup_timer,
m_autosave_timer;
KAutoSaveFile *m_backup_file = nullptr;
QUuid m_uuid = QUuid::createUuid();
projectDataBase m_data_base;
};
Q_DECLARE_METATYPE(QETProject *)