mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.1 KiB
C++
98 lines
2.1 KiB
C++
#ifndef CSV_DOC_VIEWMANAGER_H
|
|
#define CSV_DOC_VIEWMANAGER_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <QObject>
|
|
|
|
#include "loader.hpp"
|
|
|
|
namespace CSMDoc
|
|
{
|
|
class Document;
|
|
class DocumentManager;
|
|
}
|
|
|
|
namespace CSVWorld
|
|
{
|
|
class CommandDelegateFactoryCollection;
|
|
}
|
|
|
|
namespace CSMWorld
|
|
{
|
|
class UniversalId;
|
|
}
|
|
|
|
namespace CSVDoc
|
|
{
|
|
class View;
|
|
|
|
class ViewManager : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
CSMDoc::DocumentManager& mDocumentManager;
|
|
std::vector<View*> mViews;
|
|
CSVWorld::CommandDelegateFactoryCollection* mDelegateFactories;
|
|
bool mExitOnSaveStateChange;
|
|
bool mUserWarned;
|
|
Loader mLoader;
|
|
|
|
// not implemented
|
|
ViewManager(const ViewManager&);
|
|
ViewManager& operator=(const ViewManager&);
|
|
|
|
void updateIndices();
|
|
bool notifySaveOnClose(View* view = nullptr);
|
|
bool showModifiedDocumentMessageBox(View* view);
|
|
bool showSaveInProgressMessageBox(View* view);
|
|
bool removeDocument(View* view);
|
|
|
|
public:
|
|
ViewManager(CSMDoc::DocumentManager& documentManager);
|
|
|
|
~ViewManager() override;
|
|
|
|
View* addView(CSMDoc::Document* document);
|
|
///< The ownership of the returned view is not transferred.
|
|
|
|
View* addView(CSMDoc::Document* document, const CSMWorld::UniversalId& id, const std::string& hint);
|
|
|
|
int countViews(const CSMDoc::Document* document) const;
|
|
///< Return number of views for \a document.
|
|
|
|
bool closeRequest(View* view);
|
|
void removeDocAndView(CSMDoc::Document* document);
|
|
|
|
signals:
|
|
|
|
void newGameRequest();
|
|
|
|
void newAddonRequest();
|
|
|
|
void loadDocumentRequest();
|
|
|
|
void closeMessageBox();
|
|
|
|
void editSettingsRequest();
|
|
|
|
void mergeDocument(CSMDoc::Document* document);
|
|
|
|
public slots:
|
|
|
|
void exitApplication(CSVDoc::View* view);
|
|
|
|
private slots:
|
|
|
|
void documentStateChanged(int state, CSMDoc::Document* document);
|
|
|
|
void progress(int current, int max, int type, int threads, CSMDoc::Document* document);
|
|
|
|
void onExitWarningHandler(int state, CSMDoc::Document* document);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|