X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=otk%2Fbutton.hh;h=5924e9b0ebe18783e9b10521c9f23acaccb25127;hb=b86872620805bf5deb14aed27b2748f8c1955460;hp=e73b1f12583f66574198cc65c2cd9fb2cd84f7de;hpb=a3d036f60ed2333622ee9b61dbddcdc8fbc497c3;p=chaz%2Fopenbox diff --git a/otk/button.hh b/otk/button.hh index e73b1f12..5924e9b0 100644 --- a/otk/button.hh +++ b/otk/button.hh @@ -1,12 +1,11 @@ #ifndef __button_hh #define __button_hh -#include "focuswidget.hh" -//#include "pixmap.hh" +#include "focuslabel.hh" namespace otk { -class OtkButton : public OtkFocusWidget { +class OtkButton : public OtkFocusLabel { public: @@ -26,26 +25,19 @@ public: void setTexture(BTexture *texture); void setUnfocusTexture(BTexture *texture); - inline const std::string &getText(void) const { return _text; } - void setText(const std::string &text) { _text = text; _dirty = true; } - - //inline const OtkPixmap &getPixmap(void) const { return _pixmap; } - //void setPixmap(const OtkPixmap &pixmap); - inline bool isPressed(void) const { return _pressed; } - void press(void); - void release(void); + void press(unsigned int mouse_button); + void release(unsigned int mouse_button); - void update(void); - int exposeHandler(const XExposeEvent &e); - int configureHandler(const XConfigureEvent &e); + void buttonPressHandler(const XButtonEvent &e); + void buttonReleaseHandler(const XButtonEvent &e); + virtual void setStyle(Style *style); + private: - std::string _text; - //OtkPixmap _pixmap; bool _pressed; - bool _dirty; + unsigned int _mouse_button; BTexture *_pressed_focus_tx; BTexture *_pressed_unfocus_tx;