You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
618 B
C++
36 lines
618 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);
|
|
|
|
virtual void setEditLock (bool locked);
|
|
|
|
private slots:
|
|
|
|
void editRequest (const CSMWorld::UniversalId& id, const std::string& hint);
|
|
};
|
|
}
|
|
|
|
#endif
|