X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Fbutton.cc;h=08dc0484a50f6b2192e306fb595227b7b3150981;hb=5dfd87b08505554688640357f3a07593f3bd9ec2;hp=410f00838bcf37eb7179ad0e8b978a4e15855eaa;hpb=0856b11de843db30b5053c8cb7d9c84eae262852;p=chaz%2Fopenbox diff --git a/otk/button.cc b/otk/button.cc index 410f0083..08dc0484 100644 --- a/otk/button.cc +++ b/otk/button.cc @@ -1,81 +1,81 @@ +// -*- 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) +Button::Button(Widget *parent) + : FocusLabel(parent), _pressed(false), _pressed_focus_tx(0), + _pressed_unfocus_tx(0), _unpr_focus_tx(0), _unpr_unfocus_tx(0) +{ + setStyle(_style); +} + +Button::~Button() { - setTexture(getStyle()->getButtonFocus()); - setUnfocusTexture(getStyle()->getButtonUnfocus()); - _pressed_focus_tx = getStyle()->getButtonPressedFocus(); - _pressed_unfocus_tx = getStyle()->getButtonPressedUnfocus(); } -OtkButton::~OtkButton() + +void Button::setStyle(RenderStyle *style) { - if (_pressed_focus_tx) delete _pressed_focus_tx; - if (_pressed_unfocus_tx) delete _pressed_unfocus_tx; + FocusLabel::setStyle(style); + + setTexture(style->buttonUnpressFocusBackground()); + setUnfocusTexture(style->buttonUnpressUnfocusBackground()); + _pressed_focus_tx = style->buttonPressFocusBackground(); + _pressed_unfocus_tx = style->buttonPressUnfocusBackground(); } -void OtkButton::press(void) + +void Button::press(unsigned int mouse_button) { + if (_pressed) return; + if (_pressed_focus_tx) - OtkFocusWidget::setTexture(_pressed_focus_tx); + FocusWidget::setTexture(_pressed_focus_tx); if (_pressed_unfocus_tx) - OtkFocusWidget::setUnfocusTexture(_pressed_unfocus_tx); + FocusWidget::setUnfocusTexture(_pressed_unfocus_tx); _pressed = true; + _mouse_button = mouse_button; } -void OtkButton::release(void) +void Button::release(unsigned int mouse_button) { - OtkFocusWidget::setTexture(_unpr_focus_tx); - OtkFocusWidget::setUnfocusTexture(_unpr_unfocus_tx); + if (_mouse_button != mouse_button) return; // wrong button + + FocusWidget::setTexture(_unpr_focus_tx); + FocusWidget::setUnfocusTexture(_unpr_unfocus_tx); _pressed = false; } -void OtkButton::setTexture(BTexture *texture) +void Button::setTexture(RenderTexture *texture) { - OtkFocusWidget::setTexture(texture); + FocusWidget::setTexture(texture); _unpr_focus_tx = texture; } -void OtkButton::setUnfocusTexture(BTexture *texture) +void Button::setUnfocusTexture(RenderTexture *texture) { - OtkFocusWidget::setUnfocusTexture(texture); + FocusWidget::setUnfocusTexture(texture); _unpr_unfocus_tx = texture; } -void OtkButton::update(void) -{ - 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); - OtkFocusWidget::update(); - - ft.drawString(getWindow(), bevel, bevel, *text_color, _text); - } else - OtkFocusWidget::update(); - - _dirty = false; -} - -bool OtkButton::expose(const XExposeEvent &e) +void Button::buttonPressHandler(const XButtonEvent &e) { - _dirty = true; - return OtkFocusWidget::expose(e); + press(e.button); + update(); + FocusWidget::buttonPressHandler(e); } -bool OtkButton::configure(const XConfigureEvent &e) +void Button::buttonReleaseHandler(const XButtonEvent &e) { - _dirty = true; - return OtkFocusWidget::configure(e); + release(e.button); + update(); + FocusWidget::buttonReleaseHandler(e); } }