mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 11:49:56 +00:00
82 lines
No EOL
2.1 KiB
C++
82 lines
No EOL
2.1 KiB
C++
#ifndef CSM_DOC_DOCUMENT_H
|
|
#define CSM_DOC_DOCUMENT_H
|
|
|
|
#include <string>
|
|
|
|
#include <QUndoStack>
|
|
#include <QObject>
|
|
#include <QTimer>
|
|
|
|
#include "../world/data.hpp"
|
|
|
|
#include "../tools/tools.hpp"
|
|
|
|
#include "state.hpp"
|
|
|
|
namespace CSMDoc
|
|
{
|
|
class Document : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
|
|
std::string mName; ///< \todo replace name with ESX list
|
|
CSMWorld::Data mData;
|
|
CSMTools::Tools mTools;
|
|
|
|
// It is important that the undo stack is declared last, because on desctruction it fires a signal, that is connected to a slot, that is
|
|
// using other member variables. Unfortunately this connection is cut only in the QObject destructor, which is way too late.
|
|
QUndoStack mUndoStack;
|
|
|
|
int mSaveCount; ///< dummy implementation -> remove when proper save is implemented.
|
|
QTimer mSaveTimer; ///< dummy implementation -> remove when proper save is implemented.
|
|
|
|
// not implemented
|
|
Document (const Document&);
|
|
Document& operator= (const Document&);
|
|
|
|
public:
|
|
|
|
Document (const std::string& name);
|
|
///< \todo replace name with ESX list
|
|
|
|
QUndoStack& getUndoStack();
|
|
|
|
int getState() const;
|
|
|
|
const std::string& getName() const;
|
|
///< \todo replace with ESX list
|
|
|
|
void save();
|
|
|
|
void verify();
|
|
|
|
void abortOperation (int type);
|
|
|
|
const CSMWorld::Data& getData() const;
|
|
|
|
CSMWorld::Data& getData();
|
|
|
|
signals:
|
|
|
|
void stateChanged (int state, CSMDoc::Document *document);
|
|
|
|
void progress (int current, int max, int type, int threads, CSMDoc::Document *document);
|
|
|
|
private slots:
|
|
|
|
void modificationStateChanged (bool clean);
|
|
|
|
void operationDone (int type);
|
|
|
|
void saving();
|
|
///< dummy implementation -> remove when proper save is implemented.
|
|
|
|
public slots:
|
|
|
|
void progress (int current, int max, int type);
|
|
};
|
|
}
|
|
|
|
#endif |