mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
28 lines
440 B
C++
28 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
|