1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-10 06:39:49 +00:00
OpenMW/apps/opencs/view/widget/scenetool.hpp

28 lines
440 B
C++
Raw Normal View History

#ifndef CSV_WIDGET_SCENETOOL_H
#define CSV_WIDGET_SCENETOOL_H
#include "pushbutton.hpp"
namespace CSVWidget
{
class SceneToolbar;
2013-09-28 09:27:24 +00:00
///< \brief Tool base class
class SceneTool : public PushButton
{
Q_OBJECT
public:
SceneTool (SceneToolbar *parent);
virtual void showPanel (const QPoint& position) = 0;
private slots:
void openRequest();
};
}
#endif