OpenMW
apps/opencs/view/world/scenetool.hpp
Go to the documentation of this file.
00001 #ifndef CSV_WORLD_SCENETOOL_H
00002 #define CSV_WORLD_SCENETOOL_H
00003 
00004 #include <QPushButton>
00005 
00006 namespace CSVWorld
00007 {
00008     class SceneToolbar;
00009 
00011     class SceneTool : public QPushButton
00012     {
00013             Q_OBJECT
00014 
00015         public:
00016 
00017             SceneTool (SceneToolbar *parent);
00018 
00019             virtual void showPanel (const QPoint& position) = 0;
00020 
00021         private slots:
00022 
00023             void openRequest();
00024     };
00025 }
00026 
00027 #endif