mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
39 lines
641 B
C++
39 lines
641 B
C++
#ifndef CSV_WORLD_PREVIEWSUBVIEW_H
|
|
#define CSV_WORLD_PREVIEWSUBVIEW_H
|
|
|
|
#include "../doc/subview.hpp"
|
|
|
|
namespace CSMDoc
|
|
{
|
|
class Document;
|
|
}
|
|
|
|
namespace CSVRender
|
|
{
|
|
class PreviewWidget;
|
|
}
|
|
|
|
namespace CSVWorld
|
|
{
|
|
class PreviewSubView : public CSVDoc::SubView
|
|
{
|
|
Q_OBJECT
|
|
|
|
CSVRender::PreviewWidget *mScene;
|
|
|
|
public:
|
|
|
|
PreviewSubView (const CSMWorld::UniversalId& id, CSMDoc::Document& document);
|
|
|
|
virtual void setEditLock (bool locked);
|
|
|
|
private slots:
|
|
|
|
void closeRequest();
|
|
|
|
void referenceableIdChanged (const std::string& id);
|
|
};
|
|
}
|
|
|
|
#endif
|