1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 05:19:55 +00:00
openmw-tes3mp/apps/opencs/view/widget/scenetool.hpp
2014-07-10 11:45:45 +02:00

27 lines
440 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);
virtual void showPanel (const QPoint& position) = 0;
private slots:
void openRequest();
};
}
#endif