X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=otk%2Ffocuswidget.cc;h=e2eef1eecabfa3449440b57ca576b385edfeab89;hb=6ca5c5891a58c616b32b733c99fe373aa58bc360;hp=ffbaeb7e09bd995b4596eec63b99500bd06f18e4;hpb=a3d036f60ed2333622ee9b61dbddcdc8fbc497c3;p=chaz%2Fopenbox diff --git a/otk/focuswidget.cc b/otk/focuswidget.cc index ffbaeb7e..e2eef1ee 100644 --- a/otk/focuswidget.cc +++ b/otk/focuswidget.cc @@ -1,73 +1,52 @@ +// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- + +#ifdef HAVE_CONFIG_H +# include "../config.h" +#endif + #include "focuswidget.hh" namespace otk { OtkFocusWidget::OtkFocusWidget(OtkWidget *parent, Direction direction) - : OtkWidget(parent, direction), _unfocus_texture(0), _focused(true) -{ - _focus_texture = parent->getTexture(); -} - -OtkFocusWidget::OtkFocusWidget(OtkApplication *app, Direction direction, - Cursor cursor, int bevel_width) - : OtkWidget(app, direction, cursor, bevel_width), - _unfocus_texture(0), _focused(true) -{ -} - -OtkFocusWidget::OtkFocusWidget(Style *style, Direction direction, - Cursor cursor, int bevel_width) - : OtkWidget(style, direction, cursor, bevel_width), - _unfocus_texture(0), _focused(true) + : OtkWidget(parent, direction), _unfocus_texture(0), _unfocus_bcolor(0) { + _focused = true; + _focus_texture = parent->texture(); + _focus_bcolor = parent->borderColor(); } OtkFocusWidget::~OtkFocusWidget() { } +#include void OtkFocusWidget::focus(void) { if (_focused) return; - // XXX: what about OtkWidget::focus() - - assert(_focus_texture); - OtkWidget::setTexture(_focus_texture); - OtkWidget::update(); - - OtkWidget::OtkWidgetList children = OtkWidget::getChildren(); + OtkWidget::focus(); - OtkWidget::OtkWidgetList::iterator it = children.begin(), - end = children.end(); + if (_focus_bcolor) + OtkWidget::setBorderColor(_focus_bcolor); - OtkFocusWidget *tmp = 0; - for (; it != end; ++it) { - tmp = dynamic_cast(*it); - if (tmp) tmp->focus(); - } + OtkWidget::setTexture(_focus_texture); + update(); } void OtkFocusWidget::unfocus(void) { - if (! _focused) + if (!_focused) return; - assert(_unfocus_texture); - OtkWidget::setTexture(_unfocus_texture); - OtkWidget::update(); - - OtkWidget::OtkWidgetList children = OtkWidget::getChildren(); + OtkWidget::unfocus(); - OtkWidget::OtkWidgetList::iterator it = children.begin(), - end = children.end(); + if (_unfocus_bcolor) + OtkWidget::setBorderColor(_unfocus_bcolor); - OtkFocusWidget *tmp = 0; - for (; it != end; ++it) { - tmp = dynamic_cast(*it); - if (tmp) tmp->unfocus(); - } + OtkWidget::setTexture(_unfocus_texture); + update(); } void OtkFocusWidget::setTexture(BTexture *texture) @@ -76,4 +55,10 @@ void OtkFocusWidget::setTexture(BTexture *texture) _focus_texture = texture; } +void OtkFocusWidget::setBorderColor(const BColor *color) +{ + OtkWidget::setBorderColor(color); + _focus_bcolor = color; +} + }