X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Fbutton.hh;h=a3805aa069f459e1dc904075ce9a0feaeef8b0e4;hb=3dfe9f4ebeb7abd8446c52db0232b9f610a78846;hp=6908322e608c1dcd601805b781fed70a4f0de97c;hpb=b3822fcfb19bfdcf775fbc6ff2f89a817d16cb4c;p=chaz%2Fopenbox diff --git a/otk/button.hh b/otk/button.hh index 6908322e..a3805aa0 100644 --- a/otk/button.hh +++ b/otk/button.hh @@ -1,52 +1,34 @@ -#include "focuswidget.hh" -//#include "pixmap.hh" +// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- +#ifndef __button_hh +#define __button_hh + +#include "label.hh" namespace otk { -class OtkButton : public OtkFocusWidget { +class Button : public Label { public: + Button(Widget *parent); + virtual ~Button(); - OtkButton(OtkWidget *parent); - ~OtkButton(); - - inline const BTexture *getPressedFocusTexture(void) const - { return _pressed_focus_tx; } - void setPressedFocusTexture(BTexture *texture) - { _pressed_focus_tx = texture; } - - inline const BTexture *getPressedUnfocusTexture(void) const - { return _pressed_unfocus_tx; } - void setPressedUnfocusTexture(BTexture *texture) - { _pressed_unfocus_tx = texture; } - - 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; } + virtual inline bool isPressed() const { return _pressed; } - //inline const OtkPixmap &getPixmap(void) const { return _pixmap; } - //void setPixmap(const OtkPixmap &pixmap); + virtual void press(unsigned int mouse_button); + virtual void release(unsigned int mouse_button); - inline bool isPressed(void) const { return _pressed; } - void press(void); - void release(void); + virtual void buttonPressHandler(const XButtonEvent &e); + virtual void buttonReleaseHandler(const XButtonEvent &e); - void update(void); + virtual void clickHandler(unsigned int button) {(void)button;} + virtual void styleChanged(const RenderStyle &style); + private: - - std::string _text; - //OtkPixmap _pixmap; bool _pressed; -// bool _dirty; - - BTexture *_pressed_focus_tx; - BTexture *_pressed_unfocus_tx; - - BTexture *_unpr_focus_tx; - BTexture *_unpr_unfocus_tx; + unsigned int _mouse_button; }; } + +#endif