X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=otk%2Fbutton.hh;h=fd2e5e4494f8fb91f75d3777d04b84ebe5236821;hb=d9a5620f805d99738adc4cacdce9077f74574466;hp=2fa8e7da20b960776122c041688e95918124377a;hpb=cbf9dd0c4c8669392d9c7c8461d1af411f0ab0a4;p=chaz%2Fopenbox diff --git a/otk/button.hh b/otk/button.hh index 2fa8e7da..fd2e5e44 100644 --- a/otk/button.hh +++ b/otk/button.hh @@ -1,34 +1,52 @@ -#include "widget.hh" -#include "style.hh" -#include "texture.hh" -//#include "pixmap.hh" +// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- +#ifndef __button_hh +#define __button_hh + +#include "focuslabel.hh" namespace otk { -class OtkButton : public OtkWidget { +class Button : public FocusLabel { public: - OtkButton(OtkWidget *parent); - ~OtkButton(); + Button(Widget *parent); + ~Button(); + + inline const Texture *getPressedFocusTexture(void) const + { return _pressed_focus_tx; } + void setPressedFocusTexture(Texture *texture) + { _pressed_focus_tx = texture; } - inline const std::string &getText(void) const { return _text; } - void setText(const std::string &text); + inline const Texture *getPressedUnfocusTexture(void) const + { return _pressed_unfocus_tx; } + void setPressedUnfocusTexture(Texture *texture) + { _pressed_unfocus_tx = texture; } - //inline const OtkPixmap &getPixmap(void) const { return _pixmap; } - //void setPixmap(const OtkPixmap &pixmap); + void setTexture(Texture *texture); + void setUnfocusTexture(Texture *texture); 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 buttonPressHandler(const XButtonEvent &e); + void buttonReleaseHandler(const XButtonEvent &e); + virtual void setStyle(Style *style); + private: - std::string _text; - //OtkPixmap _pixmap; bool _pressed; - BTexture *_unfocus_tx; + unsigned int _mouse_button; + Texture *_pressed_focus_tx; + Texture *_pressed_unfocus_tx; + + Texture *_unpr_focus_tx; + Texture *_unpr_unfocus_tx; }; } + +#endif