1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 05:53:54 +00:00
openmw/apps/opencs/view/widget/scenetool.hpp
2014-09-06 16:11:06 +02:00

27 lines
466 B
C++

#ifndef CSV_WIDGET_SCENETOOL_H
#define CSV_WIDGET_SCENETOOL_H
#include "pushbutton.hpp"
namespace CSVWidget
{
class SceneToolbar;
///< \brief Tool base class
class SceneTool : public PushButton
{
Q_OBJECT
public:
SceneTool (SceneToolbar *parent, Type type = Type_TopMode);
virtual void showPanel (const QPoint& position) = 0;
private slots:
void openRequest();
};
}
#endif