openmw-tes3coop/apps/opencs/view/world/scenetoolgrid.hpp
2014-04-03 14:44:48 +02:00

29 lines
552 B
C++

#ifndef CSV_WORLD_SCENETOOL_GRID_H
#define CSV_WORLD_SCENETOOL_GRID_H
#include "scenetool.hpp"
namespace CSVWorld
{
class SceneToolbar;
///< \brief Cell grid selector tool
class SceneToolGrid : public SceneTool
{
Q_OBJECT
int mIconSize;
public:
SceneToolGrid (SceneToolbar *parent);
virtual void showPanel (const QPoint& position);
public slots:
void cellIndexChanged (const std::pair<int, int>& min, const std::pair<int, int>& max);
};
}
#endif