diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-11 19:17:13 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-11 19:17:13 +0000 |
| commit | 8f8acc24933830d4f5784616b9b0c5896bde0b93 (patch) | |
| tree | e34d995f6ef854e3ac2b365326ffabf3dad265da /otk/button.hh | |
| parent | 684405eec8553918b62e334bffe29eb4712ec95c (diff) | |
rm prefixes for all elements in the otk namepsace
Diffstat (limited to 'otk/button.hh')
| -rw-r--r-- | otk/button.hh | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/otk/button.hh b/otk/button.hh index 17ddce03..fd2e5e44 100644 --- a/otk/button.hh +++ b/otk/button.hh @@ -1,3 +1,4 @@ +// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- #ifndef __button_hh #define __button_hh @@ -5,25 +6,25 @@ namespace otk { -class OtkButton : public OtkFocusLabel { +class Button : public FocusLabel { public: - OtkButton(OtkWidget *parent); - ~OtkButton(); + Button(Widget *parent); + ~Button(); - inline const otk::BTexture *getPressedFocusTexture(void) const + inline const Texture *getPressedFocusTexture(void) const { return _pressed_focus_tx; } - void setPressedFocusTexture(otk::BTexture *texture) + void setPressedFocusTexture(Texture *texture) { _pressed_focus_tx = texture; } - inline const otk::BTexture *getPressedUnfocusTexture(void) const + inline const Texture *getPressedUnfocusTexture(void) const { return _pressed_unfocus_tx; } - void setPressedUnfocusTexture(otk::BTexture *texture) + void setPressedUnfocusTexture(Texture *texture) { _pressed_unfocus_tx = texture; } - void setTexture(otk::BTexture *texture); - void setUnfocusTexture(otk::BTexture *texture); + void setTexture(Texture *texture); + void setUnfocusTexture(Texture *texture); inline bool isPressed(void) const { return _pressed; } void press(unsigned int mouse_button); @@ -32,18 +33,18 @@ public: void buttonPressHandler(const XButtonEvent &e); void buttonReleaseHandler(const XButtonEvent &e); - virtual void setStyle(otk::Style *style); + virtual void setStyle(Style *style); private: bool _pressed; unsigned int _mouse_button; - BTexture *_pressed_focus_tx; - BTexture *_pressed_unfocus_tx; + Texture *_pressed_focus_tx; + Texture *_pressed_unfocus_tx; - BTexture *_unpr_focus_tx; - BTexture *_unpr_unfocus_tx; + Texture *_unpr_focus_tx; + Texture *_unpr_unfocus_tx; }; } |
