1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-20 03:53:54 +00:00
openmw/apps/opencs/view/world/regionmapsubview.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
642 B
C++
Raw Normal View History

#ifndef CSV_WORLD_REGIONMAPSUBVIEW_H
#define CSV_WORLD_REGIONMAPSUBVIEW_H
2022-10-19 17:02:00 +00:00
#include <string>
#include "../doc/subview.hpp"
2022-10-19 17:02:00 +00:00
#include <apps/opencs/model/world/universalid.hpp>
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:
2014-04-13 13:46:31 +00:00
void editRequest(const CSMWorld::UniversalId& id, const std::string& hint);
};
}
#endif