1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 21:19:57 +00:00
openmw-tes3mp/apps/opencs/view/world/regionmapsubview.hpp
2020-10-16 22:18:54 +04:00

35 lines
619 B
C++

#ifndef CSV_WORLD_REGIONMAPSUBVIEW_H
#define CSV_WORLD_REGIONMAPSUBVIEW_H
#include "../doc/subview.hpp"
class QAction;
namespace CSMDoc
{
class Document;
}
namespace CSVWorld
{
class RegionMap;
class RegionMapSubView : public CSVDoc::SubView
{
Q_OBJECT
RegionMap *mRegionMap;
public:
RegionMapSubView (CSMWorld::UniversalId universalId, CSMDoc::Document& document);
void setEditLock (bool locked) override;
private slots:
void editRequest (const CSMWorld::UniversalId& id, const std::string& hint);
};
}
#endif