X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Ffocuswidget.cc;h=e2eef1eecabfa3449440b57ca576b385edfeab89;hb=85b0dc80cff679d964820159de018a6e89997184;hp=22a6100ba4d4db3d4717841bbcff72e9586e358d;hpb=1d897f432e54400cb2a0e1499712782b336fd728;p=chaz%2Fopenbox diff --git a/otk/focuswidget.cc b/otk/focuswidget.cc index 22a6100b..e2eef1ee 100644 --- a/otk/focuswidget.cc +++ b/otk/focuswidget.cc @@ -9,57 +9,44 @@ namespace otk { OtkFocusWidget::OtkFocusWidget(OtkWidget *parent, Direction direction) - : OtkWidget(parent, direction), _unfocus_texture(0), _focused(true) + : OtkWidget(parent, direction), _unfocus_texture(0), _unfocus_bcolor(0) { - _focus_texture = parent->getTexture(); + _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() + OtkWidget::focus(); - assert(_focus_texture); - OtkWidget::setTexture(_focus_texture); - OtkWidget::update(); - - OtkWidget::OtkWidgetList children = OtkWidget::getChildren(); - - 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) @@ -68,4 +55,10 @@ void OtkFocusWidget::setTexture(BTexture *texture) _focus_texture = texture; } +void OtkFocusWidget::setBorderColor(const BColor *color) +{ + OtkWidget::setBorderColor(color); + _focus_bcolor = color; +} + }