1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
7 #include <X11/extensions/shape.h>
13 #include "otk/display.hh"
14 #include "otk/surface.hh"
21 const long Frame::event_mask
;
23 Window
createWindow(const otk::ScreenInfo
*info
, Window parent
,
24 unsigned long mask
, XSetWindowAttributes
*attrib
)
26 return XCreateWindow(**otk::display
, parent
, 0, 0, 1, 1, 0,
27 info
->depth(), InputOutput
, info
->visual(),
32 Frame::Frame(Client
*client
)
58 _iconify_press(false),
65 XSetWindowAttributes attrib
;
67 const otk::ScreenInfo
*info
= otk::display
->screenInfo(client
->screen());
69 // create all of the decor windows (except title bar buttons)
70 mask
= CWOverrideRedirect
| CWEventMask
;
71 attrib
.event_mask
= Frame::event_mask
;
72 attrib
.override_redirect
= true;
73 _frame
= createWindow(info
, info
->rootWindow(), mask
, &attrib
);
76 _plate
= createWindow(info
, _frame
, mask
, &attrib
);
78 attrib
.event_mask
= (ButtonPressMask
| ButtonReleaseMask
| ButtonMotionMask
|
80 _title
= createWindow(info
, _frame
, mask
, &attrib
);
81 _label
= createWindow(info
, _title
, mask
, &attrib
);
82 _max
= createWindow(info
, _title
, mask
, &attrib
);
83 _close
= createWindow(info
, _title
, mask
, &attrib
);
84 _desk
= createWindow(info
, _title
, mask
, &attrib
);
85 _icon
= createWindow(info
, _title
, mask
, &attrib
);
86 _iconify
= createWindow(info
, _title
, mask
, &attrib
);
87 _handle
= createWindow(info
, _frame
, mask
, &attrib
);
89 attrib
.cursor
= openbox
->cursors().ll_angle
;
90 _lgrip
= createWindow(info
, _handle
, mask
, &attrib
);
91 attrib
.cursor
= openbox
->cursors().lr_angle
;
92 _rgrip
= createWindow(info
, _handle
, mask
, &attrib
);
94 // the other stuff is shown based on decor settings
95 XMapWindow(**otk::display
, _plate
);
96 XMapWindow(**otk::display
, _lgrip
);
97 XMapWindow(**otk::display
, _rgrip
);
98 XMapWindow(**otk::display
, _label
);
100 applyStyle(*otk::RenderStyle::style(_client
->screen()));
102 _layout
= openbox
->screen(_client
->screen())->config().titlebar_layout
;
104 // register all of the windows with the event dispatcher
105 Window
*w
= allWindows();
106 for (unsigned int i
= 0; w
[i
]; ++i
)
107 openbox
->registerHandler(w
[i
], this);
113 // unregister all of the windows with the event dispatcher
114 Window
*w
= allWindows();
115 for (unsigned int i
= 0; w
[i
]; ++i
)
116 openbox
->clearHandler(w
[i
]);
119 XDestroyWindow(**otk::display
, _rgrip
);
120 XDestroyWindow(**otk::display
, _lgrip
);
121 XDestroyWindow(**otk::display
, _handle
);
122 XDestroyWindow(**otk::display
, _max
);
123 XDestroyWindow(**otk::display
, _icon
);
124 XDestroyWindow(**otk::display
, _iconify
);
125 XDestroyWindow(**otk::display
, _desk
);
126 XDestroyWindow(**otk::display
, _close
);
127 XDestroyWindow(**otk::display
, _label
);
128 XDestroyWindow(**otk::display
, _title
);
129 XDestroyWindow(**otk::display
, _frame
);
131 if (_frame_sur
) delete _frame_sur
;
132 if (_title_sur
) delete _title_sur
;
133 if (_label_sur
) delete _label_sur
;
134 if (_handle_sur
) delete _handle_sur
;
135 if (_grip_sur
) delete _grip_sur
;
136 if (_max_sur
) delete _max_sur
;
137 if (_desk_sur
) delete _desk_sur
;
138 if (_iconify_sur
) delete _iconify_sur
;
139 if (_icon_sur
) delete _icon_sur
;
140 if (_close_sur
) delete _close_sur
;
147 XMapWindow(**otk::display
, _frame
);
155 XUnmapWindow(**otk::display
, _frame
);
159 void Frame::buttonPressHandler(const XButtonEvent
&e
)
161 if (_press_button
) return;
162 _press_button
= e
.button
;
164 if (e
.window
== _max
) {
168 if (e
.window
== _close
) {
172 if (e
.window
== _desk
) {
176 if (e
.window
== _iconify
) {
177 _iconify_press
= true;
180 if (e
.window
== _icon
) {
186 void Frame::buttonReleaseHandler(const XButtonEvent
&e
)
188 if (e
.button
!= _press_button
) return;
191 if (e
.window
== _max
) {
195 if (e
.window
== _close
) {
196 _close_press
= false;
199 if (e
.window
== _desk
) {
203 if (e
.window
== _iconify
) {
204 _iconify_press
= false;
207 if (e
.window
== _icon
) {
213 MouseContext::MC
Frame::mouseContext(Window win
) const
215 if (win
== _frame
) return MouseContext::Frame
;
217 win
== _label
) return MouseContext::Titlebar
;
218 if (win
== _handle
) return MouseContext::Handle
;
219 if (win
== _plate
) return MouseContext::Window
;
221 win
== _rgrip
) return MouseContext::Grip
;
222 if (win
== _max
) return MouseContext::MaximizeButton
;
223 if (win
== _close
) return MouseContext::CloseButton
;
224 if (win
== _desk
) return MouseContext::AllDesktopsButton
;
225 if (win
== _iconify
)return MouseContext::IconifyButton
;
226 if (win
== _icon
) return MouseContext::IconButton
;
227 return (MouseContext::MC
) -1;
230 Window
*Frame::allWindows() const
232 Window
*w
= new Window
[12 + 1];
250 void Frame::applyStyle(const otk::RenderStyle
&style
)
252 // set static border colors
253 XSetWindowBorder(**otk::display
, _frame
, style
.frameBorderColor()->pixel());
254 XSetWindowBorder(**otk::display
, _title
, style
.frameBorderColor()->pixel());
255 XSetWindowBorder(**otk::display
, _handle
, style
.frameBorderColor()->pixel());
256 XSetWindowBorder(**otk::display
, _lgrip
, style
.frameBorderColor()->pixel());
257 XSetWindowBorder(**otk::display
, _rgrip
, style
.frameBorderColor()->pixel());
259 // size all the fixed-size elements
260 geom
.font_height
= style
.labelFont()->height();
261 if (geom
.font_height
< 1) geom
.font_height
= 1;
262 geom
.button_size
= geom
.font_height
- 2;
263 if (geom
.button_size
< 1) geom
.button_size
= 1;
264 geom
.handle_height
= style
.handleWidth();
265 if (geom
.handle_height
< 1) geom
.handle_height
= 1;
266 geom
.bevel
= style
.bevelWidth();
268 XResizeWindow(**otk::display
, _lgrip
, geom
.grip_width(), geom
.handle_height
);
269 XResizeWindow(**otk::display
, _rgrip
, geom
.grip_width(), geom
.handle_height
);
271 XResizeWindow(**otk::display
, _max
, geom
.button_size
, geom
.button_size
);
272 XResizeWindow(**otk::display
, _close
, geom
.button_size
, geom
.button_size
);
273 XResizeWindow(**otk::display
, _desk
, geom
.button_size
, geom
.button_size
);
274 XResizeWindow(**otk::display
, _iconify
, geom
.button_size
, geom
.button_size
);
275 XResizeWindow(**otk::display
, _icon
, geom
.button_size
, geom
.button_size
);
278 void Frame::styleChanged(const otk::RenderStyle
&style
)
282 // size/position everything
287 void Frame::adjustFocus()
289 // XXX optimizations later...
293 void Frame::adjustTitle()
295 // XXX optimizations later...
299 static void render(int screen
, const otk::Size
&size
, Window win
,
300 otk::Surface
**surface
,
301 const otk::RenderTexture
&texture
, bool freedata
=true)
303 otk::Surface
*s
= new otk::Surface(screen
, size
);
304 if (texture
.parentRelative())
305 XSetWindowBackgroundPixmap(**otk::display
, win
, ParentRelative
);
307 otk::display
->renderControl(screen
)->drawBackground(*s
, texture
);
308 XSetWindowBackgroundPixmap(**otk::display
, win
, s
->pixmap());
310 XClearWindow(**otk::display
, win
);
311 if (*surface
) delete *surface
;
312 if (freedata
) s
->freePixelData();
316 void Frame::adjustSize()
318 _decorations
= _client
->decorations();
319 const otk::RenderStyle
*style
= otk::RenderStyle::style(_client
->screen());
321 if (_decorations
& Client::Decor_Border
) {
322 geom
.bwidth
= style
->frameBorderWidth();
323 geom
.cbwidth
= style
->clientBorderWidth();
325 geom
.bwidth
= geom
.cbwidth
= 0;
327 _innersize
.left
= _innersize
.top
= _innersize
.bottom
= _innersize
.right
=
329 geom
.width
= _client
->area().width() + geom
.cbwidth
* 2;
330 assert(geom
.width
> 0);
333 XSetWindowBorderWidth(**otk::display
, _plate
, geom
.cbwidth
);
334 XSetWindowBorderWidth(**otk::display
, _frame
, geom
.bwidth
);
335 XSetWindowBorderWidth(**otk::display
, _title
, geom
.bwidth
);
336 XSetWindowBorderWidth(**otk::display
, _handle
, geom
.bwidth
);
337 XSetWindowBorderWidth(**otk::display
, _lgrip
, geom
.bwidth
);
338 XSetWindowBorderWidth(**otk::display
, _rgrip
, geom
.bwidth
);
340 // position/size and map/unmap all the windows
342 if (_decorations
& Client::Decor_Titlebar
) {
343 XMoveResizeWindow(**otk::display
, _title
, -geom
.bwidth
, -geom
.bwidth
,
344 geom
.width
, geom
.title_height());
345 _innersize
.top
+= geom
.title_height() + geom
.bwidth
;
346 XMapWindow(**otk::display
, _title
);
348 // layout the title bar elements
351 XUnmapWindow(**otk::display
, _title
);
352 // make all the titlebar stuff not render
353 _decorations
&= ~(Client::Decor_Icon
| Client::Decor_Iconify
|
354 Client::Decor_Maximize
| Client::Decor_Close
|
355 Client::Decor_AllDesktops
);
358 if (_decorations
& Client::Decor_Handle
) {
359 geom
.handle_y
= _innersize
.top
+ _client
->area().height() + geom
.cbwidth
;
360 XMoveResizeWindow(**otk::display
, _handle
, -geom
.bwidth
, geom
.handle_y
,
361 geom
.width
, geom
.handle_height
);
362 XMoveWindow(**otk::display
, _lgrip
, -geom
.bwidth
, -geom
.bwidth
);
363 XMoveWindow(**otk::display
, _rgrip
,
364 -geom
.bwidth
+ geom
.width
- geom
.grip_width(),
366 _innersize
.bottom
+= geom
.handle_height
+ geom
.bwidth
;
367 XMapWindow(**otk::display
, _handle
);
369 XUnmapWindow(**otk::display
, _handle
);
371 XResizeWindow(**otk::display
, _frame
, geom
.width
,
372 (_client
->shaded() ? geom
.title_height() :
373 _innersize
.top
+ _innersize
.bottom
+
374 _client
->area().height()));
376 // do this in two steps because clients whose gravity is set to
377 // 'Static' don't end up getting moved at all with an XMoveResizeWindow
378 XMoveWindow(**otk::display
, _plate
, _innersize
.left
- geom
.cbwidth
,
379 _innersize
.top
- geom
.cbwidth
);
380 XResizeWindow(**otk::display
, _plate
, _client
->area().width(),
381 _client
->area().height());
383 _size
.left
= _innersize
.left
+ geom
.bwidth
;
384 _size
.right
= _innersize
.right
+ geom
.bwidth
;
385 _size
.top
= _innersize
.top
+ geom
.bwidth
;
386 _size
.bottom
= _innersize
.bottom
+ geom
.bwidth
;
388 _area
= otk::Rect(_area
.position(), otk::Size(_client
->area().width() +
389 _size
.left
+ _size
.right
,
390 _client
->area().height() +
391 _size
.top
+ _size
.bottom
));
393 // render all the elements
394 int screen
= _client
->screen();
395 bool focus
= _client
->focused();
396 if (_decorations
& Client::Decor_Titlebar
) {
397 render(screen
, otk::Size(geom
.width
, geom
.title_height()), _title
,
398 &_title_sur
, *(focus
? style
->titlebarFocusBackground() :
399 style
->titlebarUnfocusBackground()), false);
409 if (_decorations
& Client::Decor_Handle
) {
410 render(screen
, otk::Size(geom
.width
, geom
.handle_height
), _handle
,
411 &_handle_sur
, *(focus
? style
->handleFocusBackground() :
412 style
->handleUnfocusBackground()));
413 render(screen
, otk::Size(geom
.grip_width(), geom
.handle_height
), _lgrip
,
414 &_grip_sur
, *(focus
? style
->gripFocusBackground() :
415 style
->gripUnfocusBackground()));
416 if ((focus
? style
->gripFocusBackground() :
417 style
->gripUnfocusBackground())->parentRelative())
418 XSetWindowBackgroundPixmap(**otk::display
, _rgrip
, ParentRelative
);
420 XSetWindowBackgroundPixmap(**otk::display
, _rgrip
, _grip_sur
->pixmap());
422 XClearWindow(**otk::display
, _rgrip
);
425 XSetWindowBorder(**otk::display
, _plate
,
426 focus
? style
->clientBorderFocusColor()->pixel() :
427 style
->clientBorderUnfocusColor()->pixel());
432 void Frame::renderLabel()
434 const otk::RenderStyle
*style
= otk::RenderStyle::style(_client
->screen());
435 const otk::RenderControl
*control
=
436 otk::display
->renderControl(_client
->screen());
437 const otk::Font
*font
= style
->labelFont();
439 otk::Surface
*s
= new otk::Surface(_client
->screen(),
440 otk::Size(geom
.label_width
,
441 geom
.label_height()));
442 const otk::RenderTexture
*tx
= (_client
->focused() ?
443 style
->labelFocusBackground() :
444 style
->labelUnfocusBackground());
445 if (tx
->parentRelative()) {
446 otk::pixel32
*dest
= s
->pixelData(), *src
;
447 int w
= _title_sur
->size().width();
449 src
= _title_sur
->pixelData() + w
* (geom
.bevel
+ 1) + geom
.title_x
;
451 // get the background under the label
452 int xd
= s
->size().width();
453 int yd
= s
->size().height();
454 for (int y
= 0; y
< yd
; ++y
, src
+= w
- xd
)
455 for (int x
= 0; x
< xd
; ++x
, ++dest
, ++src
)
457 control
->drawImage(*s
, 0, 0, 0); // no image but draw the new background
459 control
->drawBackground(*s
, *tx
);
461 otk::ustring t
= _client
->title(); // the actual text to draw
462 int x
= geom
.bevel
; // x coord for the text
464 if (x
* 2 < geom
.label_width
) {
465 // find a string that will fit inside the area for text
466 otk::ustring::size_type text_len
= t
.size();
468 int maxsize
= geom
.label_width
- geom
.bevel
* 2;
472 length
= font
->measureString(t
);// this returns an unsigned, so check < 0
473 if (length
< 0) length
= maxsize
;// if the string's that long just adjust
474 } while (length
> maxsize
&& text_len
-- > 0);
477 switch (style
->labelTextJustify()) {
478 case otk::RenderStyle::RightBottomJustify
:
479 x
+= maxsize
- length
;
481 case otk::RenderStyle::CenterJustify
:
482 x
+= (maxsize
- length
) / 2;
484 case otk::RenderStyle::LeftTopJustify
:
489 control
->drawString(*s
, *font
, x
, 0,
490 *(_client
->focused() ? style
->textFocusColor() :
491 style
->textUnfocusColor()), t
);
494 XSetWindowBackgroundPixmap(**otk::display
, _label
, s
->pixmap());
495 XClearWindow(**otk::display
, _label
);
496 if (_label_sur
) delete _label_sur
;
501 static void renderButton(int screen
, bool focus
, bool press
, Window win
,
502 otk::Surface
**sur
, int butsize
,
503 const otk::PixmapMask
*mask
, int xoffset
, int yoffset
,
504 otk::Surface
*bgsurface
)
506 const otk::RenderStyle
*style
= otk::RenderStyle::style(screen
);
507 const otk::RenderControl
*control
= otk::display
->renderControl(screen
);
508 otk::Surface
*s
= new otk::Surface(screen
, otk::Size(butsize
, butsize
));
510 const otk::RenderTexture
*tx
= (focus
?
512 style
->buttonPressFocusBackground() :
513 style
->buttonUnpressFocusBackground()) :
515 style
->buttonPressUnfocusBackground() :
516 style
->buttonUnpressUnfocusBackground()));
517 const otk::RenderColor
*maskcolor
= (focus
?
518 style
->buttonFocusColor() :
519 style
->buttonUnfocusColor());
520 if (tx
->parentRelative()) {
521 otk::pixel32
*dest
= s
->pixelData(), *src
;
522 int w
= bgsurface
->size().width();
524 src
= bgsurface
->pixelData() + w
* yoffset
+ xoffset
;
526 // get the background under the button
527 for (int y
= 0; y
< butsize
; ++y
, src
+= w
- butsize
)
528 for (int x
= 0; x
< butsize
; ++x
, ++dest
, ++src
)
530 control
->drawImage(*s
, 0, 0, 0); // no image but draw the new background
532 control
->drawBackground(*s
, *tx
);
533 control
->drawMask(*s
, *maskcolor
, *mask
);
535 XSetWindowBackgroundPixmap(**otk::display
, win
, s
->pixmap());
536 XClearWindow(**otk::display
, win
);
537 if (*sur
) delete *sur
;
542 void Frame::renderMax()
544 if (!(_decorations
& Client::Decor_Maximize
)) return;
545 bool press
= _max_press
|| _client
->maxVert() || _client
->maxHorz();
546 renderButton(_client
->screen(), _client
->focused(), press
, _max
,
547 &_max_sur
, geom
.button_size
,
548 otk::RenderStyle::style(_client
->screen())->maximizeMask(),
549 geom
.max_x
, (geom
.bevel
+ 1), _title_sur
);
552 void Frame::renderDesk()
554 if (!(_decorations
& Client::Decor_AllDesktops
)) return;
555 bool press
= _desk_press
|| _client
->desktop() == 0xffffffff;
556 renderButton(_client
->screen(), _client
->focused(), press
, _desk
,
557 &_desk_sur
, geom
.button_size
,
558 otk::RenderStyle::style(_client
->screen())->alldesktopsMask(),
559 geom
.desktop_x
, (geom
.bevel
+ 1), _title_sur
);
562 void Frame::renderIconify()
564 if (!(_decorations
& Client::Decor_Iconify
)) return;
565 renderButton(_client
->screen(), _client
->focused(), _iconify_press
, _iconify
,
566 &_iconify_sur
, geom
.button_size
,
567 otk::RenderStyle::style(_client
->screen())->iconifyMask(),
568 geom
.iconify_x
, (geom
.bevel
+ 1), _title_sur
);
571 void Frame::renderClose()
573 if (!(_decorations
& Client::Decor_Close
)) return;
574 renderButton(_client
->screen(), _client
->focused(), _close_press
, _close
,
575 &_close_sur
, geom
.button_size
,
576 otk::RenderStyle::style(_client
->screen())->closeMask(),
577 geom
.close_x
, (geom
.bevel
+ 1), _title_sur
);
580 void Frame::renderIcon()
582 if (!(_decorations
& Client::Decor_Icon
)) return;
583 const int screen
= _client
->screen();
584 const otk::RenderControl
*control
= otk::display
->renderControl(screen
);
586 otk::Surface
*s
= new otk::Surface(screen
, otk::Size(geom
.button_size
,
588 otk::pixel32
*dest
= s
->pixelData(), *src
;
589 int w
= _title_sur
->size().width();
591 src
= _title_sur
->pixelData() + w
* (geom
.bevel
+ 1) + geom
.icon_x
;
593 // get the background under the icon button
594 for (int y
= 0; y
< geom
.button_size
; ++y
, src
+= w
- geom
.button_size
)
595 for (int x
= 0; x
< geom
.button_size
; ++x
, ++dest
, ++src
)
597 // draw the icon over it
598 const Icon
*icon
= _client
->icon(otk::Size(geom
.button_size
,
600 control
->drawImage(*s
, icon
->w
, icon
->h
, icon
->data
);
602 Pixmap p
= _client
->pixmapIcon(), m
= _client
->pixmapIconMask();
604 control
->drawImage(*s
, p
, m
);
607 XSetWindowBackgroundPixmap(**otk::display
, _icon
, s
->pixmap());
608 XClearWindow(**otk::display
, _icon
);
609 if (_icon_sur
) delete _icon_sur
;
613 void Frame::layoutTitle()
615 // figure out whats being shown, and the width of the label
616 geom
.label_width
= geom
.width
- geom
.bevel
* 2;
617 bool n
, d
, i
, t
, m
,c
;
618 n
= d
= i
= t
= m
= c
= false;
619 for (const char *l
= _layout
.c_str(); *l
; ++l
) {
623 if (!(_decorations
& Client::Decor_Icon
)) break;
625 geom
.label_width
-= geom
.button_size
+ geom
.bevel
;
629 if (!(_decorations
& Client::Decor_AllDesktops
)) break;
631 geom
.label_width
-= geom
.button_size
+ geom
.bevel
;
635 if (!(_decorations
& Client::Decor_Iconify
)) break;
637 geom
.label_width
-= geom
.button_size
+ geom
.bevel
;
645 if (!(_decorations
& Client::Decor_Maximize
)) break;
647 geom
.label_width
-= geom
.button_size
+ geom
.bevel
;
651 if (!(_decorations
& Client::Decor_Close
)) break;
653 geom
.label_width
-= geom
.button_size
+ geom
.bevel
;
657 if (geom
.label_width
< 1) geom
.label_width
= 1;
659 XResizeWindow(**otk::display
, _label
, geom
.label_width
, geom
.font_height
);
662 _decorations
&= ~Client::Decor_Icon
;
663 XUnmapWindow(**otk::display
, _icon
);
666 _decorations
&= ~Client::Decor_AllDesktops
;
667 XUnmapWindow(**otk::display
, _desk
);
670 _decorations
&= ~Client::Decor_Iconify
;
671 XUnmapWindow(**otk::display
, _iconify
);
674 XUnmapWindow(**otk::display
, _label
);
676 _decorations
&= ~Client::Decor_Maximize
;
677 XUnmapWindow(**otk::display
, _max
);
680 _decorations
&= ~Client::Decor_Close
;
681 XUnmapWindow(**otk::display
, _close
);
685 for (const char *lc
= _layout
.c_str(); *lc
; ++lc
) {
691 XMapWindow(**otk::display
, _icon
);
692 XMoveWindow(**otk::display
, _icon
, x
, geom
.bevel
+ 1);
693 x
+= geom
.button_size
+ geom
.bevel
;
699 XMapWindow(**otk::display
, _desk
);
700 XMoveWindow(**otk::display
, _desk
, x
, geom
.bevel
+ 1);
701 x
+= geom
.button_size
+ geom
.bevel
;
707 XMapWindow(**otk::display
, _iconify
);
708 XMoveWindow(**otk::display
, _iconify
, x
, geom
.bevel
+ 1);
709 x
+= geom
.button_size
+ geom
.bevel
;
715 XMapWindow(**otk::display
, _label
);
716 XMoveWindow(**otk::display
, _label
, x
, geom
.bevel
);
717 x
+= geom
.label_width
+ geom
.bevel
;
723 XMapWindow(**otk::display
, _max
);
724 XMoveWindow(**otk::display
, _max
, x
, geom
.bevel
+ 1);
725 x
+= geom
.button_size
+ geom
.bevel
;
731 XMapWindow(**otk::display
, _close
);
732 XMoveWindow(**otk::display
, _close
, x
, geom
.bevel
+ 1);
733 x
+= geom
.button_size
+ geom
.bevel
;
739 void Frame::adjustPosition()
742 x
= _client
->area().x();
743 y
= _client
->area().y();
745 XMoveWindow(**otk::display
, _frame
, x
, y
);
746 _area
= otk::Rect(otk::Point(x
, y
), _area
.size());
750 void Frame::adjustShape()
753 if (!_client
->shaped()) {
754 // clear the shape on the frame window
755 XShapeCombineMask(**otk::display
, _frame
, ShapeBounding
,
760 // make the frame's shape match the clients
761 XShapeCombineShape(**otk::display
, _frame
, ShapeBounding
,
764 _client
->window(), ShapeBounding
, ShapeSet
);
769 if (_decorations
& Client::Decor_Titlebar
) {
770 xrect
[0].x
= -geom
.bevel
;
771 xrect
[0].y
= -geom
.bevel
;
772 xrect
[0].width
= geom
.width
+ geom
.bwidth
* 2;
773 xrect
[0].height
= geom
.title_height() + geom
.bwidth
* 2;
777 if (_decorations
& Client::Decor_Handle
) {
778 xrect
[1].x
= -geom
.bevel
;
779 xrect
[1].y
= geom
.handle_y
;
780 xrect
[1].width
= geom
.width
+ geom
.bwidth
* 2;
781 xrect
[1].height
= geom
.handle_height
+ geom
.bwidth
* 2;
785 XShapeCombineRectangles(**otk::display
, _frame
,
786 ShapeBounding
, 0, 0, xrect
, num
,
787 ShapeUnion
, Unsorted
);
792 void Frame::adjustState()
798 void Frame::adjustIcon()
803 void Frame::grabClient()
805 // reparent the client to the frame
806 XReparentWindow(**otk::display
, _client
->window(), _plate
, 0, 0);
808 When reparenting the client window, it is usually not mapped yet, since
809 this occurs from a MapRequest. However, in the case where Openbox is
810 starting up, the window is already mapped, so we'll see unmap events for
811 it. There are 2 unmap events generated that we see, one with the 'event'
812 member set the root window, and one set to the client, but both get handled
813 and need to be ignored.
815 if (openbox
->state() == Openbox::State_Starting
)
816 _client
->ignore_unmaps
+= 2;
818 // select the event mask on the client's parent (to receive config/map req's)
819 XSelectInput(**otk::display
, _plate
, SubstructureRedirectMask
);
821 // map the client so it maps when the frame does
822 XMapWindow(**otk::display
, _client
->window());
829 void Frame::releaseClient()
833 // check if the app has already reparented its window away
834 if (XCheckTypedWindowEvent(**otk::display
, _client
->window(),
835 ReparentNotify
, &ev
)) {
836 XPutBackEvent(**otk::display
, &ev
);
837 // re-map the window since the unmanaging process unmaps it
838 XMapWindow(**otk::display
, _client
->window());
840 // according to the ICCCM - if the client doesn't reparent itself, then we
841 // will reparent the window to root for them
842 XReparentWindow(**otk::display
, _client
->window(),
843 otk::display
->screenInfo(_client
->screen())->rootWindow(),
844 _client
->area().x(), _client
->area().y());
849 void Frame::clientGravity(int &x
, int &y
)
852 switch (_client
->gravity()) {
854 case NorthWestGravity
:
855 case SouthWestGravity
:
862 x
-= (_size
.left
+ _size
.right
) / 2;
865 case NorthEastGravity
:
866 case SouthEastGravity
:
868 x
-= _size
.left
+ _size
.right
;
878 switch (_client
->gravity()) {
880 case NorthWestGravity
:
881 case NorthEastGravity
:
888 y
-= (_size
.top
+ _size
.bottom
) / 2;
891 case SouthWestGravity
:
892 case SouthEastGravity
:
894 y
-= _size
.top
+ _size
.bottom
;
905 void Frame::frameGravity(int &x
, int &y
)
908 switch (_client
->gravity()) {
910 case NorthWestGravity
:
912 case SouthWestGravity
:
917 x
+= (_size
.left
+ _size
.right
) / 2;
919 case NorthEastGravity
:
921 case SouthEastGravity
:
922 x
+= _size
.left
+ _size
.right
;
931 switch (_client
->gravity()) {
933 case NorthWestGravity
:
935 case SouthWestGravity
:
940 y
+= (_size
.top
+ _size
.bottom
) / 2;
942 case NorthEastGravity
:
944 case SouthEastGravity
:
945 y
+= _size
.top
+ _size
.bottom
;