]> icculus.org git repositories - dana/openbox.git/blob - otk/widget.cc
support the button pressed resources better
[dana/openbox.git] / otk / widget.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2
3 #ifdef    HAVE_CONFIG_H
4 #  include "../config.h"
5 #endif // HAVE_CONFIG_H
6
7 #include "widget.hh"
8 #include "display.hh"
9 #include "assassin.hh"
10 #include "screeninfo.hh"
11
12 #include <algorithm>
13 #include <iostream>
14
15 namespace otk {
16
17 OtkWidget::OtkWidget(OtkWidget *parent, Direction direction)
18   : OtkEventHandler(),
19     _dirty(false), _focused(false),
20     _parent(parent), _style(parent->style()), _direction(direction),
21     _cursor(parent->cursor()), _bevel_width(parent->bevelWidth()),
22     _ignore_config(0),
23     _visible(false), _grabbed_mouse(false),
24     _grabbed_keyboard(false), _stretchable_vert(false),
25     _stretchable_horz(false), _texture(0), _bg_pixmap(0), _bg_pixel(0),
26     _bcolor(0), _bwidth(0), _screen(parent->screen()), _fixed_width(false),
27     _fixed_height(false), _event_dispatcher(parent->eventDispatcher())
28 {
29   assert(parent);
30   parent->addChild(this);
31   create();
32   _event_dispatcher->registerHandler(_window, this);
33   setStyle(_style); // let the widget initialize stuff
34 }
35
36 OtkWidget::OtkWidget(OtkEventDispatcher *event_dispatcher, Style *style,
37                      Direction direction, Cursor cursor, int bevel_width)
38   : OtkEventHandler(),
39     _dirty(false),_focused(false),
40     _parent(0), _style(style), _direction(direction), _cursor(cursor),
41     _bevel_width(bevel_width), _ignore_config(0), _visible(false),
42     _grabbed_mouse(false), _grabbed_keyboard(false),
43     _stretchable_vert(false), _stretchable_horz(false), _texture(0),
44     _bg_pixmap(0), _bg_pixel(0), _bcolor(0), _bwidth(0),
45     _screen(style->getScreen()), _fixed_width(false), _fixed_height(false),
46     _event_dispatcher(event_dispatcher)
47 {
48   assert(event_dispatcher);
49   assert(style);
50   create();
51   _event_dispatcher->registerHandler(_window, this);
52   setStyle(_style); // let the widget initialize stuff
53 }
54
55 OtkWidget::~OtkWidget()
56 {
57   if (_visible)
58     hide();
59
60   _event_dispatcher->clearHandler(_window);
61
62   std::for_each(_children.begin(), _children.end(), PointerAssassin());
63
64   if (_parent)
65     _parent->removeChild(this);
66
67   XDestroyWindow(otk::OBDisplay::display, _window);
68 }
69
70 void OtkWidget::create(void)
71 {
72   const ScreenInfo *scr_info = otk::OBDisplay::screenInfo(_screen);
73   Window p_window = _parent ? _parent->window() : scr_info->rootWindow();
74
75   _rect.setRect(0, 0, 1, 1); // just some initial values
76
77   XSetWindowAttributes attrib_create;
78   unsigned long create_mask = CWBackPixmap | CWBorderPixel | CWEventMask;
79
80   attrib_create.background_pixmap = None;
81   attrib_create.colormap = scr_info->colormap();
82   attrib_create.event_mask = ButtonPressMask | ButtonReleaseMask |
83     ButtonMotionMask | ExposureMask | StructureNotifyMask;
84
85   if (_cursor) {
86     create_mask |= CWCursor;
87     attrib_create.cursor = _cursor;
88   }
89
90   _window = XCreateWindow(otk::OBDisplay::display, p_window, _rect.x(),
91                           _rect.y(), _rect.width(), _rect.height(), 0,
92                           scr_info->depth(), InputOutput,
93                           scr_info->visual(), create_mask, &attrib_create);
94   _ignore_config++;
95 }
96
97 void OtkWidget::setWidth(int w)
98 {
99   assert(w > 0);
100   _fixed_width = true;  
101   setGeometry(_rect.x(), _rect.y(), w, _rect.height());
102 }
103
104 void OtkWidget::setHeight(int h)
105 {
106   assert(h > 0);
107   _fixed_height = true;
108   setGeometry(_rect.x(), _rect.y(), _rect.width(), h);
109 }
110
111 void OtkWidget::move(const Point &to)
112 {
113   move(to.x(), to.y());
114 }
115
116 void OtkWidget::move(int x, int y)
117 {
118   _rect.setPos(x, y);
119   XMoveWindow(otk::OBDisplay::display, _window, x, y);
120   _ignore_config++;
121 }
122
123 void OtkWidget::resize(const Point &to)
124 {
125   resize(to.x(), to.y());
126 }
127
128 void OtkWidget::resize(int w, int h)
129 {
130   assert(w > 0 && h > 0);
131   _fixed_width = _fixed_height = true;
132   setGeometry(_rect.x(), _rect.y(), w, h);
133 }
134
135 void OtkWidget::setGeometry(const Rect &new_geom)
136 {
137   setGeometry(new_geom.x(), new_geom.y(), new_geom.width(), new_geom.height());
138 }
139  
140 void OtkWidget::setGeometry(const Point &topleft, int width, int height)
141 {
142   setGeometry(topleft.x(), topleft.y(), width, height);
143 }
144
145 void OtkWidget::setGeometry(int x, int y, int width, int height)
146 {
147   _rect = Rect(x, y, width, height);
148   _dirty = true;
149
150   XMoveResizeWindow(otk::OBDisplay::display, _window, x, y, width, height);
151   _ignore_config++;
152 }
153
154 void OtkWidget::show(bool recursive)
155 {
156   if (_visible)
157     return;
158
159   // make sure the internal state isn't mangled
160   if (_dirty)
161     update();
162
163   if (recursive) {
164     OtkWidgetList::iterator it = _children.begin(), end = _children.end();
165     for (; it != end; ++it)
166       (*it)->show();
167   }
168
169   XMapWindow(otk::OBDisplay::display, _window);
170   _visible = true;
171 }
172
173 void OtkWidget::hide(bool recursive)
174 {
175   if (! _visible)
176     return;
177
178   if (recursive) {
179     OtkWidgetList::iterator it = _children.begin(), end = _children.end();
180     for (; it != end; ++it)
181       (*it)->hide();
182   }
183   
184   XUnmapWindow(otk::OBDisplay::display, _window);
185   _visible = false;
186 }
187
188 void OtkWidget::focus(void)
189 {
190   _focused = true;
191   
192   OtkWidget::OtkWidgetList::iterator it = _children.begin(),
193     end = _children.end();
194   for (; it != end; ++it)
195     (*it)->focus();
196 }
197
198 void OtkWidget::unfocus(void)
199 {
200   _focused = false;
201   
202   OtkWidget::OtkWidgetList::iterator it = _children.begin(),
203     end = _children.end();
204   for (; it != end; ++it)
205     (*it)->unfocus();
206 }
207
208 bool OtkWidget::grabMouse(void)
209 {
210   Status ret = XGrabPointer(otk::OBDisplay::display, _window, True,
211                             (ButtonPressMask | ButtonReleaseMask |
212                              ButtonMotionMask | EnterWindowMask |
213                              LeaveWindowMask | PointerMotionMask),
214                             GrabModeSync, GrabModeAsync, None, None,
215                             CurrentTime);
216   _grabbed_mouse = (ret == GrabSuccess);
217   return _grabbed_mouse;
218 }
219
220 void OtkWidget::ungrabMouse(void)
221 {
222   if (! _grabbed_mouse)
223     return;
224
225   XUngrabPointer(otk::OBDisplay::display, CurrentTime);
226   _grabbed_mouse = false;
227 }
228
229 bool OtkWidget::grabKeyboard(void)
230 {
231   Status ret = XGrabKeyboard(otk::OBDisplay::display, _window, True,
232                              GrabModeSync, GrabModeAsync, CurrentTime);
233   _grabbed_keyboard = (ret == GrabSuccess);
234   return _grabbed_keyboard;
235
236 }
237
238 void OtkWidget::ungrabKeyboard(void)
239 {
240   if (! _grabbed_keyboard)
241     return;
242
243   XUngrabKeyboard(otk::OBDisplay::display, CurrentTime);
244   _grabbed_keyboard = false;
245 }
246
247 void OtkWidget::render(void)
248 {
249   if (!_texture) return;
250
251   printf("rendering %lx\n", _texture);
252
253   _bg_pixmap = _texture->render(_rect.width(), _rect.height(), _bg_pixmap);
254
255   if (_bg_pixmap)
256     XSetWindowBackgroundPixmap(otk::OBDisplay::display, _window, _bg_pixmap);
257   else {
258     unsigned int pix = _texture->color().pixel();
259     if (pix != _bg_pixel) {
260       _bg_pixel = pix;
261       XSetWindowBackground(otk::OBDisplay::display, _window, pix);
262     }
263   }
264 }
265
266 void OtkWidget::adjust(void)
267 {
268   if (_direction == Horizontal)
269     adjustHorz();
270   else
271     adjustVert();
272 }
273
274 void OtkWidget::adjustHorz(void)
275 {
276   if (_children.size() == 0)
277     return;
278
279   OtkWidget *tmp;
280   OtkWidgetList::iterator it, end = _children.end();
281
282   int tallest = 0;
283   int width = _bevel_width;
284   OtkWidgetList stretchable;
285
286   for (it = _children.begin(); it != end; ++it) {
287     tmp = *it;
288     if (tmp->isStretchableVert())
289       tmp->setHeight(_rect.height() > _bevel_width * 2 ?
290                      _rect.height() - _bevel_width * 2 : _bevel_width);
291     if (tmp->isStretchableHorz())
292       stretchable.push_back(tmp);
293     else
294       width += tmp->_rect.width() + _bevel_width;
295
296     if (tmp->_rect.height() > tallest)
297       tallest = tmp->_rect.height();
298   }
299
300   if (stretchable.size() > 0) {
301     OtkWidgetList::iterator str_it = stretchable.begin(),
302       str_end = stretchable.end();
303
304     int str_width = _rect.width() - width / stretchable.size();
305
306     for (; str_it != str_end; ++str_it)
307       (*str_it)->setWidth(str_width > _bevel_width ? str_width - _bevel_width
308                           : _bevel_width);
309   }
310
311   OtkWidget *prev_widget = 0;
312
313   for (it = _children.begin(); it != end; ++it) {
314     tmp = *it;
315     int x, y;
316
317     if (prev_widget)
318       x = prev_widget->_rect.x() + prev_widget->_rect.width() + _bevel_width;
319     else
320       x = _rect.x() + _bevel_width;
321     y = (tallest - tmp->_rect.height()) / 2 + _bevel_width;
322
323     tmp->move(x, y);
324
325     prev_widget = tmp;
326   }
327
328   internalResize(width, tallest + _bevel_width * 2);
329 }
330
331 void OtkWidget::adjustVert(void)
332 {
333   if (_children.size() == 0)
334     return;
335
336   OtkWidget *tmp;
337   OtkWidgetList::iterator it, end = _children.end();
338
339   int widest = 0;
340   int height = _bevel_width;
341   OtkWidgetList stretchable;
342
343   for (it = _children.begin(); it != end; ++it) {
344     tmp = *it;
345     if (tmp->isStretchableHorz())
346       tmp->setWidth(_rect.width() > _bevel_width * 2 ?
347                     _rect.width() - _bevel_width * 2 : _bevel_width);
348     if (tmp->isStretchableVert())
349       stretchable.push_back(tmp);
350     else
351       height += tmp->_rect.height() + _bevel_width;
352
353     if (tmp->_rect.width() > widest)
354       widest = tmp->_rect.width();
355   }
356
357   if (stretchable.size() > 0) {
358     OtkWidgetList::iterator str_it = stretchable.begin(),
359       str_end = stretchable.end();
360
361     int str_height = _rect.height() - height / stretchable.size();
362
363     for (; str_it != str_end; ++str_it)
364       (*str_it)->setHeight(str_height > _bevel_width ?
365                            str_height - _bevel_width : _bevel_width);
366   }
367
368   OtkWidget *prev_widget = 0;
369
370   for (it = _children.begin(); it != end; ++it) {
371     tmp = *it;
372     int x, y;
373
374     if (prev_widget)
375       y = prev_widget->_rect.y() + prev_widget->_rect.height() + _bevel_width;
376     else
377       y = _rect.y() + _bevel_width;
378     x = (widest - tmp->_rect.width()) / 2 + _bevel_width;
379
380     tmp->move(x, y);
381
382     prev_widget = tmp;
383   }
384
385   internalResize(widest + _bevel_width * 2, height);
386 }
387
388 void OtkWidget::update(void)
389 {
390   if (_dirty) {
391     printf("widget dirty, redrawing\n");
392     adjust();
393     render();
394     XClearWindow(OBDisplay::display, _window);
395   }
396
397   OtkWidgetList::iterator it = _children.begin(), end = _children.end();
398   for (; it != end; ++it)
399     (*it)->update();
400
401   _dirty = false;
402 }
403
404 void OtkWidget::internalResize(int w, int h)
405 {
406   assert(w > 0 && h > 0);
407
408   if (! _fixed_width && ! _fixed_height)
409     resize(w, h);
410   else if (! _fixed_width)
411     resize(w, _rect.height());
412   else if (! _fixed_height)
413     resize(_rect.width(), h);
414 }
415
416 void OtkWidget::addChild(OtkWidget *child, bool front)
417 {
418   assert(child);
419   if (front)
420     _children.push_front(child);
421   else
422     _children.push_back(child);
423 }
424
425 void OtkWidget::removeChild(OtkWidget *child)
426 {
427   assert(child);
428   OtkWidgetList::iterator it, end = _children.end();
429   for (it = _children.begin(); it != end; ++it) {
430     if ((*it) == child)
431       break;
432   }
433
434   if (it != _children.end())
435     _children.erase(it);
436 }
437
438 void OtkWidget::setStyle(Style *style)
439 {
440   assert(style);
441   _style = style;
442   _dirty = true;
443
444   OtkWidgetList::iterator it, end = _children.end();
445   for (it = _children.begin(); it != end; ++it)
446     (*it)->setStyle(style);
447 }
448
449
450 void OtkWidget::setEventDispatcher(OtkEventDispatcher *disp)
451 {
452   if (_event_dispatcher)
453     _event_dispatcher->clearHandler(_window);
454   _event_dispatcher = disp;
455   _event_dispatcher->registerHandler(_window, this);
456 }
457
458 void OtkWidget::exposeHandler(const XExposeEvent &e)
459 {
460   OtkEventHandler::exposeHandler(e);
461   _dirty = true;
462   update();
463 }
464
465 void OtkWidget::configureHandler(const XConfigureEvent &e)
466 {
467   OtkEventHandler::configureHandler(e);
468   if (_ignore_config) {
469     _ignore_config--;
470   } else {
471     if (!(e.width == _rect.width() && e.height == _rect.height())) {
472       _dirty = true;
473       _rect.setSize(e.width, e.height);
474     }
475     update();
476   }
477 }
478
479 }