mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-15 08:09:40 +00:00
37 lines
575 B
C++
37 lines
575 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();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|