mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +00:00
38 lines
686 B
C++
38 lines
686 B
C++
|
#ifndef CSV_WORLD_SCENESUBVIEW_H
|
||
|
#define CSV_WORLD_SCENESUBVIEW_H
|
||
|
|
||
|
#include "../doc/subview.hpp"
|
||
|
|
||
|
class QModelIndex;
|
||
|
|
||
|
namespace CSMDoc
|
||
|
{
|
||
|
class Document;
|
||
|
}
|
||
|
|
||
|
namespace CSVWorld
|
||
|
{
|
||
|
class Table;
|
||
|
class TableBottomBox;
|
||
|
class CreatorFactoryBase;
|
||
|
|
||
|
class SceneSubView : public CSVDoc::SubView
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
TableBottomBox *mBottom;
|
||
|
|
||
|
public:
|
||
|
|
||
|
SceneSubView (const CSMWorld::UniversalId& id, CSMDoc::Document& document);
|
||
|
|
||
|
virtual void setEditLock (bool locked);
|
||
|
|
||
|
virtual void updateEditorSetting (const QString& key, const QString& value);
|
||
|
|
||
|
virtual void setStatusBar (bool show);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|