X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fbuttonwidget.cc;h=52398d92a88c03740c96b6368026dcb51748639f;hb=b683a4e0efe470ab38b75a767b4ea2abf004626a;hp=867cc5be1c797d9fc2b8780c88f1ce415d224eff;hpb=83727b8e6404f7e00e7369c39da8779dfb85ae09;p=chaz%2Fopenbox diff --git a/src/buttonwidget.cc b/src/buttonwidget.cc index 867cc5be..52398d92 100644 --- a/src/buttonwidget.cc +++ b/src/buttonwidget.cc @@ -5,52 +5,170 @@ #endif #include "buttonwidget.hh" +#include "otk/gccache.hh" // otk::BPen namespace ob { -OBButtonWidget::OBButtonWidget(otk::OtkWidget *parent, - OBWidget::WidgetType type) - : otk::OtkButton(parent), - OBWidget(type) +ButtonWidget::ButtonWidget(otk::Widget *parent, + WidgetBase::WidgetType type) + : otk::Widget(parent), + WidgetBase(type), + _pressed(false), + _button(0) { } -OBButtonWidget::~OBButtonWidget() +ButtonWidget::~ButtonWidget() { } -void OBButtonWidget::setStyle(otk::Style *style) +void ButtonWidget::setTextures() { - otk::OtkButton::setStyle(style); + switch (type()) { + case Type_LeftGrip: + case Type_RightGrip: + if (_focused) + setTexture(_style->getGripFocus()); + else + setTexture(_style->getGripUnfocus()); + break; + case Type_StickyButton: + case Type_CloseButton: + case Type_MaximizeButton: + case Type_IconifyButton: + if (_pressed) { + if (_focused) + setTexture(_style->getButtonPressedFocus()); + else + setTexture(_style->getButtonPressedUnfocus()); + } else { + if (_focused) + setTexture(_style->getButtonFocus()); + else + setTexture(_style->getButtonUnfocus()); + } + break; + default: + assert(false); // there's no other button widgets! + } +} + + +void ButtonWidget::setStyle(otk::Style *style) +{ + otk::Widget::setStyle(style); + setTextures(); switch (type()) { case Type_LeftGrip: case Type_RightGrip: - setTexture(style->getGripFocus()); - setUnfocusTexture(style->getGripUnfocus()); - setPressedFocusTexture(style->getGripFocus()); - setPressedUnfocusTexture(style->getGripUnfocus()); - setTexture(style->getGripFocus()); - setUnfocusTexture(style->getGripUnfocus()); - setPressedFocusTexture(style->getGripFocus()); - setPressedUnfocusTexture(style->getGripUnfocus()); setBorderColor(_style->getBorderColor()); - setUnfocusBorderColor(style->getBorderColor()); break; - default: + case Type_StickyButton: + case Type_CloseButton: + case Type_MaximizeButton: + case Type_IconifyButton: break; + default: + assert(false); // there's no other button widgets! } } -void OBButtonWidget::adjust() +void ButtonWidget::update() { - otk::OtkButton::adjust(); + otk::PixmapMask *pm; + int width; + bool draw = _dirty; + + otk::Widget::update(); + + if (draw) { + switch (type()) { + case Type_StickyButton: + pm = _style->getStickyButtonMask(); + break; + case Type_CloseButton: + pm = _style->getCloseButtonMask(); + break; + case Type_MaximizeButton: + pm = _style->getMaximizeButtonMask(); + break; + case Type_IconifyButton: + pm = _style->getIconifyButtonMask(); + break; + case Type_LeftGrip: + case Type_RightGrip: + return; // no drawing + default: + assert(false); // there's no other button widgets! + } - // XXX: adjust shit + if (pm->mask == None) return; // no mask for the button, leave it empty + + width = _rect.width(); + + otk::Pen pen(_focused ? *_style->getButtonPicFocus() : + *_style->getButtonPicUnfocus()); + + // set the clip region + XSetClipMask(**otk::display, pen.gc(), pm->mask); + XSetClipOrigin(**otk::display, pen.gc(), + (width - pm->w)/2, (width - pm->h)/2); + + // fill in the clipped region + XFillRectangle(**otk::display, _window, pen.gc(), + (width - pm->w)/2, (width - pm->h)/2, + (width + pm->w)/2, (width + pm->h)/2); + + // unset the clip region + XSetClipMask(**otk::display, pen.gc(), None); + XSetClipOrigin(**otk::display, pen.gc(), 0, 0); + } } +void ButtonWidget::adjust() +{ + // nothing to adjust. no children. +} + + +void ButtonWidget::focus() +{ + otk::Widget::focus(); + setTextures(); +} + + +void ButtonWidget::unfocus() +{ + otk::Widget::unfocus(); + setTextures(); +} + + +void ButtonWidget::buttonPressHandler(const XButtonEvent &e) +{ + otk::Widget::buttonPressHandler(e); + if (_button) return; + _button = e.button; + _pressed = true; + setTextures(); + update(); +} + + +void ButtonWidget::buttonReleaseHandler(const XButtonEvent &e) +{ + otk::Widget::buttonPressHandler(e); + if (e.button != _button) return; + _button = 0; + _pressed = false; + setTextures(); + update(); +} + }