X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Fwidget.cc;h=161e3e71d6523c5b014136944bc2937c183895de;hb=e05d5f7934ce27893f900627fbd06b1679d4c0ad;hp=0e5eaf15748c5c2a6b43c9538ff2477ded81be53;hpb=12a95bfdb31595ec53d72adef4e0fd6bf1ccf218;p=chaz%2Fopenbox diff --git a/otk/widget.cc b/otk/widget.cc index 0e5eaf15..161e3e71 100644 --- a/otk/widget.cc +++ b/otk/widget.cc @@ -1,3 +1,9 @@ +// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- + +#ifdef HAVE_CONFIG_H +# include "../config.h" +#endif // HAVE_CONFIG_H + #include "widget.hh" #include "display.hh" #include "assassin.hh" @@ -10,38 +16,40 @@ namespace otk { OtkWidget::OtkWidget(OtkWidget *parent, Direction direction) : OtkEventHandler(), - _dirty(false), - _parent(parent), _style(parent->getStyle()), _direction(direction), - _cursor(parent->getCursor()), _bevel_width(parent->getBevelWidth()), + _dirty(false), _focused(false), + _parent(parent), _style(parent->style()), _direction(direction), + _cursor(parent->cursor()), _bevel_width(parent->bevelWidth()), _ignore_config(0), - _visible(false), _focused(false), _grabbed_mouse(false), + _visible(false), _grabbed_mouse(false), _grabbed_keyboard(false), _stretchable_vert(false), _stretchable_horz(false), _texture(0), _bg_pixmap(0), _bg_pixel(0), - _screen(parent->getScreen()), _fixed_width(false), _fixed_height(false), - _event_dispatcher(parent->getEventDispatcher()), _application(0) + _bcolor(0), _bwidth(0), _screen(parent->screen()), _fixed_width(false), + _fixed_height(false), _event_dispatcher(parent->eventDispatcher()) { assert(parent); parent->addChild(this); create(); _event_dispatcher->registerHandler(_window, this); + setStyle(_style); // let the widget initialize stuff } OtkWidget::OtkWidget(OtkEventDispatcher *event_dispatcher, Style *style, Direction direction, Cursor cursor, int bevel_width) : OtkEventHandler(), - _dirty(false), + _dirty(false),_focused(false), _parent(0), _style(style), _direction(direction), _cursor(cursor), _bevel_width(bevel_width), _ignore_config(0), _visible(false), - _focused(false), _grabbed_mouse(false), _grabbed_keyboard(false), + _grabbed_mouse(false), _grabbed_keyboard(false), _stretchable_vert(false), _stretchable_horz(false), _texture(0), - _bg_pixmap(0), _bg_pixel(0), _screen(style->getScreen()), - _fixed_width(false), _fixed_height(false), - _event_dispatcher(event_dispatcher), _application(0) + _bg_pixmap(0), _bg_pixel(0), _bcolor(0), _bwidth(0), + _screen(style->getScreen()), _fixed_width(false), _fixed_height(false), + _event_dispatcher(event_dispatcher) { assert(event_dispatcher); assert(style); create(); _event_dispatcher->registerHandler(_window, this); + setStyle(_style); // let the widget initialize stuff } OtkWidget::~OtkWidget() @@ -49,6 +57,8 @@ OtkWidget::~OtkWidget() if (_visible) hide(); + _event_dispatcher->clearHandler(_window); + std::for_each(_children.begin(), _children.end(), PointerAssassin()); if (_parent) @@ -60,7 +70,7 @@ OtkWidget::~OtkWidget() void OtkWidget::create(void) { const ScreenInfo *scr_info = otk::OBDisplay::screenInfo(_screen); - Window p_window = _parent ? _parent->getWindow() : scr_info->getRootWindow(); + Window p_window = _parent ? _parent->window() : scr_info->rootWindow(); _rect.setRect(0, 0, 1, 1); // just some initial values @@ -68,7 +78,7 @@ void OtkWidget::create(void) unsigned long create_mask = CWBackPixmap | CWBorderPixel | CWEventMask; attrib_create.background_pixmap = None; - attrib_create.colormap = scr_info->getColormap(); + attrib_create.colormap = scr_info->colormap(); attrib_create.event_mask = ButtonPressMask | ButtonReleaseMask | ButtonMotionMask | ExposureMask | StructureNotifyMask; @@ -79,8 +89,8 @@ void OtkWidget::create(void) _window = XCreateWindow(otk::OBDisplay::display, p_window, _rect.x(), _rect.y(), _rect.width(), _rect.height(), 0, - scr_info->getDepth(), InputOutput, - scr_info->getVisual(), create_mask, &attrib_create); + scr_info->depth(), InputOutput, + scr_info->visual(), create_mask, &attrib_create); _ignore_config++; } @@ -141,7 +151,7 @@ void OtkWidget::setGeometry(int x, int y, int width, int height) _ignore_config++; } -void OtkWidget::show(void) +void OtkWidget::show(bool recursive) { if (_visible) return; @@ -150,34 +160,49 @@ void OtkWidget::show(void) if (_dirty) update(); - OtkWidgetList::iterator it = _children.begin(), end = _children.end(); - for (; it != end; ++it) - (*it)->show(); + if (recursive) { + OtkWidgetList::iterator it = _children.begin(), end = _children.end(); + for (; it != end; ++it) + (*it)->show(); + } XMapWindow(otk::OBDisplay::display, _window); _visible = true; } -void OtkWidget::hide(void) +void OtkWidget::hide(bool recursive) { if (! _visible) return; - OtkWidgetList::iterator it = _children.begin(), end = _children.end(); - for (; it != end; ++it) - (*it)->hide(); - + if (recursive) { + OtkWidgetList::iterator it = _children.begin(), end = _children.end(); + for (; it != end; ++it) + (*it)->hide(); + } + XUnmapWindow(otk::OBDisplay::display, _window); _visible = false; } void OtkWidget::focus(void) { - if (! _visible) - return; + _focused = true; + + OtkWidget::OtkWidgetList::iterator it = _children.begin(), + end = _children.end(); + for (; it != end; ++it) + (*it)->focus(); +} - XSetInputFocus(otk::OBDisplay::display, _window, RevertToPointerRoot, - CurrentTime); +void OtkWidget::unfocus(void) +{ + _focused = false; + + OtkWidget::OtkWidgetList::iterator it = _children.begin(), + end = _children.end(); + for (; it != end; ++it) + (*it)->unfocus(); } bool OtkWidget::grabMouse(void) @@ -221,11 +246,14 @@ void OtkWidget::ungrabKeyboard(void) void OtkWidget::render(void) { + if (!_texture) return; + _bg_pixmap = _texture->render(_rect.width(), _rect.height(), _bg_pixmap); - if (_bg_pixmap) + if (_bg_pixmap) { XSetWindowBackgroundPixmap(otk::OBDisplay::display, _window, _bg_pixmap); - else { + _bg_pixel = None; + } else { unsigned int pix = _texture->color().pixel(); if (pix != _bg_pixel) { _bg_pixel = pix; @@ -405,6 +433,18 @@ void OtkWidget::removeChild(OtkWidget *child) _children.erase(it); } +void OtkWidget::setStyle(Style *style) +{ + assert(style); + _style = style; + _dirty = true; + + OtkWidgetList::iterator it, end = _children.end(); + for (it = _children.begin(); it != end; ++it) + (*it)->setStyle(style); +} + + void OtkWidget::setEventDispatcher(OtkEventDispatcher *disp) { if (_event_dispatcher)