X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Fbutton.cc;h=2b17458206432bad0e1d4714c5c939fb40f61395;hb=70eb03ad50e1a71fd64c8cb1ebabbff311850553;hp=98d5780504d8335eaecb40558dca4170c0fecf64;hpb=b169547797768acdb1ca90330375bba5b5caa19e;p=chaz%2Fopenbox diff --git a/otk/button.cc b/otk/button.cc index 98d57805..2b174582 100644 --- a/otk/button.cc +++ b/otk/button.cc @@ -1,35 +1,51 @@ +// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- + +#ifdef HAVE_CONFIG_H +# include "../config.h" +#endif + #include "button.hh" namespace otk { OtkButton::OtkButton(OtkWidget *parent) - : OtkFocusWidget(parent), _text(""), _pressed(false), _dirty(false), - _pressed_focus_tx(0), _pressed_unfocus_tx(0), _unpr_focus_tx(0), - _unpr_unfocus_tx(0) + : OtkFocusLabel(parent), _pressed(false), _pressed_focus_tx(0), + _pressed_unfocus_tx(0), _unpr_focus_tx(0), _unpr_unfocus_tx(0) +{ +} + +OtkButton::~OtkButton() +{ +} + + +void OtkButton::setStyle(Style *style) { + OtkFocusLabel::setStyle(style); + setTexture(getStyle()->getButtonFocus()); setUnfocusTexture(getStyle()->getButtonUnfocus()); _pressed_focus_tx = getStyle()->getButtonPressedFocus(); _pressed_unfocus_tx = getStyle()->getButtonPressedUnfocus(); } -OtkButton::~OtkButton() -{ - if (_pressed_focus_tx) delete _pressed_focus_tx; - if (_pressed_unfocus_tx) delete _pressed_unfocus_tx; -} -void OtkButton::press(void) +void OtkButton::press(unsigned int mouse_button) { + if (_pressed) return; + if (_pressed_focus_tx) OtkFocusWidget::setTexture(_pressed_focus_tx); if (_pressed_unfocus_tx) OtkFocusWidget::setUnfocusTexture(_pressed_unfocus_tx); _pressed = true; + _mouse_button = mouse_button; } -void OtkButton::release(void) +void OtkButton::release(unsigned int mouse_button) { + if (_mouse_button != mouse_button) return; // wrong button + OtkFocusWidget::setTexture(_unpr_focus_tx); OtkFocusWidget::setUnfocusTexture(_unpr_unfocus_tx); _pressed = false; @@ -47,22 +63,18 @@ void OtkButton::setUnfocusTexture(BTexture *texture) _unpr_unfocus_tx = texture; } -void OtkButton::update(void) +void OtkButton::buttonPressHandler(const XButtonEvent &e) { - if (_dirty) { - const BFont ft = getStyle()->getFont(); - BColor *text_color = (isFocused() ? getStyle()->getTextFocus() - : getStyle()->getTextUnfocus()); - unsigned int bevel = getStyle()->getBevelWidth(); - - OtkFocusWidget::resize(ft.measureString(_text) + bevel * 2, - ft.height() + bevel * 2); - ft.drawString(getWindow(), bevel, bevel, *text_color, _text); - - OtkFocusWidget::update(); - } + press(e.button); + update(); + OtkFocusWidget::buttonPressHandler(e); +} - _dirty = false; +void OtkButton::buttonReleaseHandler(const XButtonEvent &e) +{ + release(e.button); + update(); + OtkFocusWidget::buttonReleaseHandler(e); } }