gui: more refactoring work.
[fail.git] / gui / Button_i.h
blob8b82b162611eff9a835acb59ab98be7173abcec9
1 #ifndef AWFUL_GUI_BUTTON_I_H_
2 #define AWFUL_GUI_BUTTON_I_H_
4 #include "core/core.h"
5 #include "Widget_i.h"
7 namespace awful { namespace gui
9 class Button_i : public Widget_i
11 public:
12 virtual const std::string& getLabel() const = 0;
13 virtual void setLabel( const std::string& Label_ ) = 0;
15 Signal<> m_Depressed;
19 #endif