1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 frame.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 See the COPYING file for a copy of the GNU General Public License.
25 #include "framerender.h"
26 #include "focus_cycle.h"
27 #include "focus_cycle_indicator.h"
28 #include "moveresize.h"
30 #include "render/theme.h"
31 #include "obt/display.h"
34 #define FRAME_EVENTMASK (EnterWindowMask | LeaveWindowMask | \
35 ButtonPressMask | ButtonReleaseMask | \
36 SubstructureRedirectMask | FocusChangeMask)
37 #define ELEMENT_EVENTMASK (ButtonPressMask | ButtonReleaseMask | \
38 ButtonMotionMask | PointerMotionMask | \
39 EnterWindowMask | LeaveWindowMask)
41 #define FRAME_ANIMATE_ICONIFY_TIME 150000 /* .15 seconds */
42 #define FRAME_ANIMATE_ICONIFY_STEP_TIME (G_USEC_PER_SEC / 60) /* 60 Hz */
44 #define FRAME_HANDLE_Y(f) (f->size.top + f->client->area.height + f->cbwidth_b)
46 static void flash_done(gpointer data
);
47 static gboolean
flash_timeout(gpointer data
);
49 static void layout_title(ObFrame
*self
);
50 static void set_theme_statics(ObFrame
*self
);
51 static void free_theme_statics(ObFrame
*self
);
52 static gboolean
frame_animate_iconify(gpointer self
);
53 static void frame_adjust_cursors(ObFrame
*self
);
55 static Window
createWindow(Window parent
, Visual
*visual
,
56 gulong mask
, XSetWindowAttributes
*attrib
)
58 return XCreateWindow(obt_display
, parent
, 0, 0, 1, 1, 0,
59 (visual
? 32 : RrDepth(ob_rr_inst
)), InputOutput
,
60 (visual
? visual
: RrVisual(ob_rr_inst
)),
65 static Visual
*check_32bit_client(ObClient
*c
)
67 XWindowAttributes wattrib
;
70 /* we're already running at 32 bit depth, yay. we don't need to use their
72 if (RrDepth(ob_rr_inst
) == 32)
75 ret
= XGetWindowAttributes(obt_display
, c
->window
, &wattrib
);
76 g_assert(ret
!= BadDrawable
);
77 g_assert(ret
!= BadWindow
);
79 if (wattrib
.depth
== 32)
80 return wattrib
.visual
;
84 ObFrame
*frame_new(ObClient
*client
)
86 XSetWindowAttributes attrib
;
91 self
= g_new0(ObFrame
, 1);
92 self
->client
= client
;
94 visual
= check_32bit_client(client
);
96 /* create the non-visible decor windows */
100 /* client has a 32-bit visual */
101 mask
= CWColormap
| CWBackPixel
| CWBorderPixel
;
102 /* create a colormap with the visual */
103 self
->colormap
= attrib
.colormap
=
104 XCreateColormap(obt_display
, obt_root(ob_screen
),
106 attrib
.background_pixel
= BlackPixel(obt_display
, ob_screen
);
107 attrib
.border_pixel
= BlackPixel(obt_display
, ob_screen
);
109 self
->window
= createWindow(obt_root(ob_screen
), visual
,
112 /* create the visible decor windows */
116 /* client has a 32-bit visual */
117 mask
= CWColormap
| CWBackPixel
| CWBorderPixel
;
118 attrib
.colormap
= RrColormap(ob_rr_inst
);
121 self
->backback
= createWindow(self
->window
, NULL
, mask
, &attrib
);
122 self
->backfront
= createWindow(self
->backback
, NULL
, mask
, &attrib
);
125 attrib
.event_mask
= ELEMENT_EVENTMASK
;
126 self
->innerleft
= createWindow(self
->window
, NULL
, mask
, &attrib
);
127 self
->innertop
= createWindow(self
->window
, NULL
, mask
, &attrib
);
128 self
->innerright
= createWindow(self
->window
, NULL
, mask
, &attrib
);
129 self
->innerbottom
= createWindow(self
->window
, NULL
, mask
, &attrib
);
131 self
->innerblb
= createWindow(self
->innerbottom
, NULL
, mask
, &attrib
);
132 self
->innerbrb
= createWindow(self
->innerbottom
, NULL
, mask
, &attrib
);
133 self
->innerbll
= createWindow(self
->innerleft
, NULL
, mask
, &attrib
);
134 self
->innerbrr
= createWindow(self
->innerright
, NULL
, mask
, &attrib
);
136 self
->title
= createWindow(self
->window
, NULL
, mask
, &attrib
);
137 self
->titleleft
= createWindow(self
->window
, NULL
, mask
, &attrib
);
138 self
->titletop
= createWindow(self
->window
, NULL
, mask
, &attrib
);
139 self
->titletopleft
= createWindow(self
->window
, NULL
, mask
, &attrib
);
140 self
->titletopright
= createWindow(self
->window
, NULL
, mask
, &attrib
);
141 self
->titleright
= createWindow(self
->window
, NULL
, mask
, &attrib
);
142 self
->titlebottom
= createWindow(self
->window
, NULL
, mask
, &attrib
);
144 self
->topresize
= createWindow(self
->title
, NULL
, mask
, &attrib
);
145 self
->tltresize
= createWindow(self
->title
, NULL
, mask
, &attrib
);
146 self
->tllresize
= createWindow(self
->title
, NULL
, mask
, &attrib
);
147 self
->trtresize
= createWindow(self
->title
, NULL
, mask
, &attrib
);
148 self
->trrresize
= createWindow(self
->title
, NULL
, mask
, &attrib
);
150 self
->left
= createWindow(self
->window
, NULL
, mask
, &attrib
);
151 self
->right
= createWindow(self
->window
, NULL
, mask
, &attrib
);
153 self
->label
= createWindow(self
->title
, NULL
, mask
, &attrib
);
154 self
->max
= createWindow(self
->title
, NULL
, mask
, &attrib
);
155 self
->close
= createWindow(self
->title
, NULL
, mask
, &attrib
);
156 self
->desk
= createWindow(self
->title
, NULL
, mask
, &attrib
);
157 self
->shade
= createWindow(self
->title
, NULL
, mask
, &attrib
);
158 self
->icon
= createWindow(self
->title
, NULL
, mask
, &attrib
);
159 self
->iconify
= createWindow(self
->title
, NULL
, mask
, &attrib
);
161 self
->handle
= createWindow(self
->window
, NULL
, mask
, &attrib
);
162 self
->lgrip
= createWindow(self
->handle
, NULL
, mask
, &attrib
);
163 self
->rgrip
= createWindow(self
->handle
, NULL
, mask
, &attrib
);
165 self
->handleleft
= createWindow(self
->handle
, NULL
, mask
, &attrib
);
166 self
->handleright
= createWindow(self
->handle
, NULL
, mask
, &attrib
);
168 self
->handletop
= createWindow(self
->window
, NULL
, mask
, &attrib
);
169 self
->handlebottom
= createWindow(self
->window
, NULL
, mask
, &attrib
);
170 self
->lgripleft
= createWindow(self
->window
, NULL
, mask
, &attrib
);
171 self
->lgriptop
= createWindow(self
->window
, NULL
, mask
, &attrib
);
172 self
->lgripbottom
= createWindow(self
->window
, NULL
, mask
, &attrib
);
173 self
->rgripright
= createWindow(self
->window
, NULL
, mask
, &attrib
);
174 self
->rgriptop
= createWindow(self
->window
, NULL
, mask
, &attrib
);
175 self
->rgripbottom
= createWindow(self
->window
, NULL
, mask
, &attrib
);
177 self
->focused
= FALSE
;
179 /* the other stuff is shown based on decor settings */
180 XMapWindow(obt_display
, self
->label
);
181 XMapWindow(obt_display
, self
->backback
);
182 XMapWindow(obt_display
, self
->backfront
);
184 self
->max_press
= self
->close_press
= self
->desk_press
=
185 self
->iconify_press
= self
->shade_press
= FALSE
;
186 self
->max_hover
= self
->close_hover
= self
->desk_hover
=
187 self
->iconify_hover
= self
->shade_hover
= FALSE
;
189 set_theme_statics(self
);
194 static void set_theme_statics(ObFrame
*self
)
196 /* set colors/appearance/sizes for stuff that doesn't change */
197 XResizeWindow(obt_display
, self
->max
,
198 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
199 XResizeWindow(obt_display
, self
->iconify
,
200 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
201 XResizeWindow(obt_display
, self
->icon
,
202 ob_rr_theme
->button_size
+ 2, ob_rr_theme
->button_size
+ 2);
203 XResizeWindow(obt_display
, self
->close
,
204 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
205 XResizeWindow(obt_display
, self
->desk
,
206 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
207 XResizeWindow(obt_display
, self
->shade
,
208 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
209 XResizeWindow(obt_display
, self
->tltresize
,
210 ob_rr_theme
->grip_width
, ob_rr_theme
->paddingy
+ 1);
211 XResizeWindow(obt_display
, self
->trtresize
,
212 ob_rr_theme
->grip_width
, ob_rr_theme
->paddingy
+ 1);
213 XResizeWindow(obt_display
, self
->tllresize
,
214 ob_rr_theme
->paddingx
+ 1, ob_rr_theme
->title_height
);
215 XResizeWindow(obt_display
, self
->trrresize
,
216 ob_rr_theme
->paddingx
+ 1, ob_rr_theme
->title_height
);
219 static void free_theme_statics(ObFrame
*self
)
223 void frame_free(ObFrame
*self
)
225 free_theme_statics(self
);
227 XDestroyWindow(obt_display
, self
->window
);
229 XFreeColormap(obt_display
, self
->colormap
);
234 void frame_show(ObFrame
*self
)
236 if (!self
->visible
) {
237 self
->visible
= TRUE
;
238 framerender_frame(self
);
239 /* Grab the server to make sure that the frame window is mapped before
240 the client gets its MapNotify, i.e. to make sure the client is
241 _visible_ when it gets MapNotify. */
243 XMapWindow(obt_display
, self
->client
->window
);
244 XMapWindow(obt_display
, self
->window
);
249 void frame_hide(ObFrame
*self
)
252 self
->visible
= FALSE
;
253 if (!frame_iconify_animating(self
))
254 XUnmapWindow(obt_display
, self
->window
);
255 /* we unmap the client itself so that we can get MapRequest
256 events, and because the ICCCM tells us to! */
257 XUnmapWindow(obt_display
, self
->client
->window
);
258 self
->client
->ignore_unmaps
+= 1;
262 void frame_adjust_theme(ObFrame
*self
)
264 free_theme_statics(self
);
265 set_theme_statics(self
);
268 void frame_adjust_shape(ObFrame
*self
)
274 if (!self
->client
->shaped
) {
275 /* clear the shape on the frame window */
276 XShapeCombineMask(obt_display
, self
->window
, ShapeBounding
,
281 /* make the frame's shape match the clients */
282 XShapeCombineShape(obt_display
, self
->window
, ShapeBounding
,
285 self
->client
->window
,
286 ShapeBounding
, ShapeSet
);
289 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
) {
292 xrect
[0].width
= self
->area
.width
;
293 xrect
[0].height
= self
->size
.top
;
297 if (self
->decorations
& OB_FRAME_DECOR_HANDLE
&&
298 ob_rr_theme
->handle_height
> 0)
301 xrect
[1].y
= FRAME_HANDLE_Y(self
);
302 xrect
[1].width
= self
->area
.width
;
303 xrect
[1].height
= ob_rr_theme
->handle_height
+
308 XShapeCombineRectangles(obt_display
, self
->window
,
309 ShapeBounding
, 0, 0, xrect
, num
,
310 ShapeUnion
, Unsorted
);
315 void frame_adjust_area(ObFrame
*self
, gboolean moved
,
316 gboolean resized
, gboolean fake
)
320 oldsize
= self
->size
;
323 /* do this before changing the frame's status like max_horz max_vert */
324 frame_adjust_cursors(self
);
326 self
->functions
= self
->client
->functions
;
327 self
->decorations
= self
->client
->decorations
;
328 self
->max_horz
= self
->client
->max_horz
;
329 self
->max_vert
= self
->client
->max_vert
;
330 self
->shaded
= self
->client
->shaded
;
332 if (self
->decorations
& OB_FRAME_DECOR_BORDER
||
333 (self
->client
->undecorated
&& config_theme_keepborder
))
334 self
->bwidth
= ob_rr_theme
->fbwidth
;
338 if (self
->decorations
& OB_FRAME_DECOR_BORDER
) {
339 self
->cbwidth_l
= self
->cbwidth_r
= ob_rr_theme
->cbwidthx
;
340 self
->cbwidth_t
= self
->cbwidth_b
= ob_rr_theme
->cbwidthy
;
342 self
->cbwidth_l
= self
->cbwidth_t
=
343 self
->cbwidth_r
= self
->cbwidth_b
= 0;
345 if (self
->max_horz
) {
346 self
->cbwidth_l
= self
->cbwidth_r
= 0;
347 self
->width
= self
->client
->area
.width
;
351 self
->width
= self
->client
->area
.width
+
352 self
->cbwidth_l
+ self
->cbwidth_r
;
354 /* some elements are sized based of the width, so don't let them have
356 self
->width
= MAX(self
->width
,
357 (ob_rr_theme
->grip_width
+ self
->bwidth
) * 2 + 1);
359 STRUT_SET(self
->size
,
360 self
->cbwidth_l
+ (!self
->max_horz
? self
->bwidth
: 0),
362 (!self
->max_horz
|| !self
->max_vert
||
363 !self
->client
->undecorated
? self
->bwidth
: 0),
364 self
->cbwidth_r
+ (!self
->max_horz
? self
->bwidth
: 0),
366 (!self
->max_horz
|| !self
->max_vert
? self
->bwidth
: 0));
368 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
)
369 self
->size
.top
+= ob_rr_theme
->title_height
+ self
->bwidth
;
370 if (self
->decorations
& OB_FRAME_DECOR_HANDLE
&&
371 ob_rr_theme
->handle_height
> 0)
373 self
->size
.bottom
+= ob_rr_theme
->handle_height
+ self
->bwidth
;
376 /* position/size and map/unmap all the windows */
379 gint innercornerheight
=
380 ob_rr_theme
->grip_width
- self
->size
.bottom
;
382 if (self
->cbwidth_l
) {
383 XMoveResizeWindow(obt_display
, self
->innerleft
,
384 self
->size
.left
- self
->cbwidth_l
,
386 self
->cbwidth_l
, self
->client
->area
.height
);
388 XMapWindow(obt_display
, self
->innerleft
);
390 XUnmapWindow(obt_display
, self
->innerleft
);
392 if (self
->cbwidth_l
&& innercornerheight
> 0) {
393 XMoveResizeWindow(obt_display
, self
->innerbll
,
395 self
->client
->area
.height
-
396 (ob_rr_theme
->grip_width
-
399 ob_rr_theme
->grip_width
- self
->size
.bottom
);
401 XMapWindow(obt_display
, self
->innerbll
);
403 XUnmapWindow(obt_display
, self
->innerbll
);
405 if (self
->cbwidth_r
) {
406 XMoveResizeWindow(obt_display
, self
->innerright
,
407 self
->size
.left
+ self
->client
->area
.width
,
409 self
->cbwidth_r
, self
->client
->area
.height
);
411 XMapWindow(obt_display
, self
->innerright
);
413 XUnmapWindow(obt_display
, self
->innerright
);
415 if (self
->cbwidth_r
&& innercornerheight
> 0) {
416 XMoveResizeWindow(obt_display
, self
->innerbrr
,
418 self
->client
->area
.height
-
419 (ob_rr_theme
->grip_width
-
422 ob_rr_theme
->grip_width
- self
->size
.bottom
);
424 XMapWindow(obt_display
, self
->innerbrr
);
426 XUnmapWindow(obt_display
, self
->innerbrr
);
428 if (self
->cbwidth_t
) {
429 XMoveResizeWindow(obt_display
, self
->innertop
,
430 self
->size
.left
- self
->cbwidth_l
,
431 self
->size
.top
- self
->cbwidth_t
,
432 self
->client
->area
.width
+
433 self
->cbwidth_l
+ self
->cbwidth_r
,
436 XMapWindow(obt_display
, self
->innertop
);
438 XUnmapWindow(obt_display
, self
->innertop
);
440 if (self
->cbwidth_b
) {
441 XMoveResizeWindow(obt_display
, self
->innerbottom
,
442 self
->size
.left
- self
->cbwidth_l
,
443 self
->size
.top
+ self
->client
->area
.height
,
444 self
->client
->area
.width
+
445 self
->cbwidth_l
+ self
->cbwidth_r
,
448 XMoveResizeWindow(obt_display
, self
->innerblb
,
450 ob_rr_theme
->grip_width
+ self
->bwidth
,
452 XMoveResizeWindow(obt_display
, self
->innerbrb
,
453 self
->client
->area
.width
+
454 self
->cbwidth_l
+ self
->cbwidth_r
-
455 (ob_rr_theme
->grip_width
+ self
->bwidth
),
457 ob_rr_theme
->grip_width
+ self
->bwidth
,
460 XMapWindow(obt_display
, self
->innerbottom
);
461 XMapWindow(obt_display
, self
->innerblb
);
462 XMapWindow(obt_display
, self
->innerbrb
);
464 XUnmapWindow(obt_display
, self
->innerbottom
);
465 XUnmapWindow(obt_display
, self
->innerblb
);
466 XUnmapWindow(obt_display
, self
->innerbrb
);
472 /* height of titleleft and titleright */
473 titlesides
= (!self
->max_horz
? ob_rr_theme
->grip_width
: 0);
475 XMoveResizeWindow(obt_display
, self
->titletop
,
476 ob_rr_theme
->grip_width
+ self
->bwidth
, 0,
477 /* width + bwidth*2 - bwidth*2 - grips*2 */
478 self
->width
- ob_rr_theme
->grip_width
* 2,
480 XMoveResizeWindow(obt_display
, self
->titletopleft
,
482 ob_rr_theme
->grip_width
+ self
->bwidth
,
484 XMoveResizeWindow(obt_display
, self
->titletopright
,
485 self
->client
->area
.width
+
486 self
->size
.left
+ self
->size
.right
-
487 ob_rr_theme
->grip_width
- self
->bwidth
,
489 ob_rr_theme
->grip_width
+ self
->bwidth
,
492 if (titlesides
> 0) {
493 XMoveResizeWindow(obt_display
, self
->titleleft
,
497 XMoveResizeWindow(obt_display
, self
->titleright
,
498 self
->client
->area
.width
+
499 self
->size
.left
+ self
->size
.right
-
505 XMapWindow(obt_display
, self
->titleleft
);
506 XMapWindow(obt_display
, self
->titleright
);
508 XUnmapWindow(obt_display
, self
->titleleft
);
509 XUnmapWindow(obt_display
, self
->titleright
);
512 XMapWindow(obt_display
, self
->titletop
);
513 XMapWindow(obt_display
, self
->titletopleft
);
514 XMapWindow(obt_display
, self
->titletopright
);
516 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
) {
517 XMoveResizeWindow(obt_display
, self
->titlebottom
,
518 (self
->max_horz
? 0 : self
->bwidth
),
519 ob_rr_theme
->title_height
+ self
->bwidth
,
523 XMapWindow(obt_display
, self
->titlebottom
);
525 XUnmapWindow(obt_display
, self
->titlebottom
);
527 XUnmapWindow(obt_display
, self
->titlebottom
);
529 XUnmapWindow(obt_display
, self
->titletop
);
530 XUnmapWindow(obt_display
, self
->titletopleft
);
531 XUnmapWindow(obt_display
, self
->titletopright
);
532 XUnmapWindow(obt_display
, self
->titleleft
);
533 XUnmapWindow(obt_display
, self
->titleright
);
536 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
) {
537 XMoveResizeWindow(obt_display
, self
->title
,
538 (self
->max_horz
? 0 : self
->bwidth
),
540 self
->width
, ob_rr_theme
->title_height
);
542 XMapWindow(obt_display
, self
->title
);
544 if (self
->decorations
& OB_FRAME_DECOR_GRIPS
) {
545 XMoveResizeWindow(obt_display
, self
->topresize
,
546 ob_rr_theme
->grip_width
,
548 self
->width
- ob_rr_theme
->grip_width
*2,
549 ob_rr_theme
->paddingy
+ 1);
551 XMoveWindow(obt_display
, self
->tltresize
, 0, 0);
552 XMoveWindow(obt_display
, self
->tllresize
, 0, 0);
553 XMoveWindow(obt_display
, self
->trtresize
,
554 self
->width
- ob_rr_theme
->grip_width
, 0);
555 XMoveWindow(obt_display
, self
->trrresize
,
556 self
->width
- ob_rr_theme
->paddingx
- 1, 0);
558 XMapWindow(obt_display
, self
->topresize
);
559 XMapWindow(obt_display
, self
->tltresize
);
560 XMapWindow(obt_display
, self
->tllresize
);
561 XMapWindow(obt_display
, self
->trtresize
);
562 XMapWindow(obt_display
, self
->trrresize
);
564 XUnmapWindow(obt_display
, self
->topresize
);
565 XUnmapWindow(obt_display
, self
->tltresize
);
566 XUnmapWindow(obt_display
, self
->tllresize
);
567 XUnmapWindow(obt_display
, self
->trtresize
);
568 XUnmapWindow(obt_display
, self
->trrresize
);
571 XUnmapWindow(obt_display
, self
->title
);
574 if ((self
->decorations
& OB_FRAME_DECOR_TITLEBAR
))
575 /* layout the title bar elements */
579 gint sidebwidth
= self
->max_horz
? 0 : self
->bwidth
;
581 if (self
->bwidth
&& self
->size
.bottom
) {
582 XMoveResizeWindow(obt_display
, self
->handlebottom
,
583 ob_rr_theme
->grip_width
+
584 self
->bwidth
+ sidebwidth
,
585 self
->size
.top
+ self
->client
->area
.height
+
586 self
->size
.bottom
- self
->bwidth
,
587 self
->width
- (ob_rr_theme
->grip_width
+
593 XMoveResizeWindow(obt_display
, self
->lgripleft
,
596 self
->client
->area
.height
+
599 ob_rr_theme
->grip_width
:
600 self
->size
.bottom
- self
->cbwidth_b
),
603 ob_rr_theme
->grip_width
:
604 self
->size
.bottom
- self
->cbwidth_b
));
605 XMoveResizeWindow(obt_display
, self
->rgripright
,
607 self
->client
->area
.width
+
608 self
->size
.right
- self
->bwidth
,
610 self
->client
->area
.height
+
613 ob_rr_theme
->grip_width
:
614 self
->size
.bottom
- self
->cbwidth_b
),
617 ob_rr_theme
->grip_width
:
618 self
->size
.bottom
- self
->cbwidth_b
));
620 XMapWindow(obt_display
, self
->lgripleft
);
621 XMapWindow(obt_display
, self
->rgripright
);
623 XUnmapWindow(obt_display
, self
->lgripleft
);
624 XUnmapWindow(obt_display
, self
->rgripright
);
627 XMoveResizeWindow(obt_display
, self
->lgripbottom
,
629 self
->size
.top
+ self
->client
->area
.height
+
630 self
->size
.bottom
- self
->bwidth
,
631 ob_rr_theme
->grip_width
+ self
->bwidth
,
633 XMoveResizeWindow(obt_display
, self
->rgripbottom
,
634 self
->size
.left
+ self
->client
->area
.width
+
635 self
->size
.right
- self
->bwidth
- sidebwidth
-
636 ob_rr_theme
->grip_width
,
637 self
->size
.top
+ self
->client
->area
.height
+
638 self
->size
.bottom
- self
->bwidth
,
639 ob_rr_theme
->grip_width
+ self
->bwidth
,
642 XMapWindow(obt_display
, self
->handlebottom
);
643 XMapWindow(obt_display
, self
->lgripbottom
);
644 XMapWindow(obt_display
, self
->rgripbottom
);
646 if (self
->decorations
& OB_FRAME_DECOR_HANDLE
&&
647 ob_rr_theme
->handle_height
> 0)
649 XMoveResizeWindow(obt_display
, self
->handletop
,
650 ob_rr_theme
->grip_width
+
651 self
->bwidth
+ sidebwidth
,
652 FRAME_HANDLE_Y(self
),
653 self
->width
- (ob_rr_theme
->grip_width
+
656 XMapWindow(obt_display
, self
->handletop
);
658 if (self
->decorations
& OB_FRAME_DECOR_GRIPS
) {
659 XMoveResizeWindow(obt_display
, self
->handleleft
,
660 ob_rr_theme
->grip_width
,
663 ob_rr_theme
->handle_height
);
664 XMoveResizeWindow(obt_display
, self
->handleright
,
666 ob_rr_theme
->grip_width
-
670 ob_rr_theme
->handle_height
);
672 XMoveResizeWindow(obt_display
, self
->lgriptop
,
674 FRAME_HANDLE_Y(self
),
675 ob_rr_theme
->grip_width
+
678 XMoveResizeWindow(obt_display
, self
->rgriptop
,
680 self
->client
->area
.width
+
681 self
->size
.right
- self
->bwidth
-
682 sidebwidth
- ob_rr_theme
->grip_width
,
683 FRAME_HANDLE_Y(self
),
684 ob_rr_theme
->grip_width
+
688 XMapWindow(obt_display
, self
->handleleft
);
689 XMapWindow(obt_display
, self
->handleright
);
690 XMapWindow(obt_display
, self
->lgriptop
);
691 XMapWindow(obt_display
, self
->rgriptop
);
693 XUnmapWindow(obt_display
, self
->handleleft
);
694 XUnmapWindow(obt_display
, self
->handleright
);
695 XUnmapWindow(obt_display
, self
->lgriptop
);
696 XUnmapWindow(obt_display
, self
->rgriptop
);
699 XUnmapWindow(obt_display
, self
->handleleft
);
700 XUnmapWindow(obt_display
, self
->handleright
);
701 XUnmapWindow(obt_display
, self
->lgriptop
);
702 XUnmapWindow(obt_display
, self
->rgriptop
);
704 XUnmapWindow(obt_display
, self
->handletop
);
707 XUnmapWindow(obt_display
, self
->handleleft
);
708 XUnmapWindow(obt_display
, self
->handleright
);
709 XUnmapWindow(obt_display
, self
->lgriptop
);
710 XUnmapWindow(obt_display
, self
->rgriptop
);
712 XUnmapWindow(obt_display
, self
->handletop
);
714 XUnmapWindow(obt_display
, self
->handlebottom
);
715 XUnmapWindow(obt_display
, self
->lgripleft
);
716 XUnmapWindow(obt_display
, self
->rgripright
);
717 XUnmapWindow(obt_display
, self
->lgripbottom
);
718 XUnmapWindow(obt_display
, self
->rgripbottom
);
721 if (self
->decorations
& OB_FRAME_DECOR_HANDLE
&&
722 ob_rr_theme
->handle_height
> 0)
724 XMoveResizeWindow(obt_display
, self
->handle
,
726 FRAME_HANDLE_Y(self
) + self
->bwidth
,
727 self
->width
, ob_rr_theme
->handle_height
);
728 XMapWindow(obt_display
, self
->handle
);
730 if (self
->decorations
& OB_FRAME_DECOR_GRIPS
) {
731 XMoveResizeWindow(obt_display
, self
->lgrip
,
733 ob_rr_theme
->grip_width
,
734 ob_rr_theme
->handle_height
);
735 XMoveResizeWindow(obt_display
, self
->rgrip
,
736 self
->width
- ob_rr_theme
->grip_width
,
738 ob_rr_theme
->grip_width
,
739 ob_rr_theme
->handle_height
);
741 XMapWindow(obt_display
, self
->lgrip
);
742 XMapWindow(obt_display
, self
->rgrip
);
744 XUnmapWindow(obt_display
, self
->lgrip
);
745 XUnmapWindow(obt_display
, self
->rgrip
);
748 XUnmapWindow(obt_display
, self
->lgrip
);
749 XUnmapWindow(obt_display
, self
->rgrip
);
751 XUnmapWindow(obt_display
, self
->handle
);
754 if (self
->bwidth
&& !self
->max_horz
&&
755 (self
->client
->area
.height
+ self
->size
.top
+
756 self
->size
.bottom
) > ob_rr_theme
->grip_width
* 2)
758 XMoveResizeWindow(obt_display
, self
->left
,
760 self
->bwidth
+ ob_rr_theme
->grip_width
,
762 self
->client
->area
.height
+
763 self
->size
.top
+ self
->size
.bottom
-
764 ob_rr_theme
->grip_width
* 2);
766 XMapWindow(obt_display
, self
->left
);
768 XUnmapWindow(obt_display
, self
->left
);
770 if (self
->bwidth
&& !self
->max_horz
&&
771 (self
->client
->area
.height
+ self
->size
.top
+
772 self
->size
.bottom
) > ob_rr_theme
->grip_width
* 2)
774 XMoveResizeWindow(obt_display
, self
->right
,
775 self
->client
->area
.width
+ self
->cbwidth_l
+
776 self
->cbwidth_r
+ self
->bwidth
,
777 self
->bwidth
+ ob_rr_theme
->grip_width
,
779 self
->client
->area
.height
+
780 self
->size
.top
+ self
->size
.bottom
-
781 ob_rr_theme
->grip_width
* 2);
783 XMapWindow(obt_display
, self
->right
);
785 XUnmapWindow(obt_display
, self
->right
);
787 XMoveResizeWindow(obt_display
, self
->backback
,
788 self
->size
.left
, self
->size
.top
,
789 self
->client
->area
.width
,
790 self
->client
->area
.height
);
794 /* shading can change without being moved or resized */
795 RECT_SET_SIZE(self
->area
,
796 self
->client
->area
.width
+
797 self
->size
.left
+ self
->size
.right
,
798 (self
->client
->shaded
?
799 ob_rr_theme
->title_height
+ self
->bwidth
* 2:
800 self
->client
->area
.height
+
801 self
->size
.top
+ self
->size
.bottom
));
803 if ((moved
|| resized
) && !fake
) {
804 /* find the new coordinates, done after setting the frame.size, for
805 frame_client_gravity. */
806 self
->area
.x
= self
->client
->area
.x
;
807 self
->area
.y
= self
->client
->area
.y
;
808 frame_client_gravity(self
, &self
->area
.x
, &self
->area
.y
);
812 if (!frame_iconify_animating(self
))
813 /* move and resize the top level frame.
814 shading can change without being moved or resized.
816 but don't do this during an iconify animation. it will be
817 reflected afterwards.
819 XMoveResizeWindow(obt_display
, self
->window
,
825 /* when the client has StaticGravity, it likes to move around.
826 also this correctly positions the client when it maps.
827 this also needs to be run when the frame's decorations sizes change!
829 XMoveWindow(obt_display
, self
->client
->window
,
830 self
->size
.left
, self
->size
.top
);
833 self
->need_render
= TRUE
;
834 framerender_frame(self
);
835 frame_adjust_shape(self
);
838 if (!STRUT_EQUAL(self
->size
, oldsize
)) {
840 vals
[0] = self
->size
.left
;
841 vals
[1] = self
->size
.right
;
842 vals
[2] = self
->size
.top
;
843 vals
[3] = self
->size
.bottom
;
844 OBT_PROP_SETA32(self
->client
->window
, NET_FRAME_EXTENTS
,
846 OBT_PROP_SETA32(self
->client
->window
, KDE_NET_WM_FRAME_STRUT
,
850 /* if this occurs while we are focus cycling, the indicator needs to
852 if (focus_cycle_target
== self
->client
)
853 focus_cycle_draw_indicator(self
->client
);
855 if (resized
&& (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
))
856 XResizeWindow(obt_display
, self
->label
, self
->label_width
,
857 ob_rr_theme
->label_height
);
861 static void frame_adjust_cursors(ObFrame
*self
)
863 if ((self
->functions
& OB_CLIENT_FUNC_RESIZE
) !=
864 (self
->client
->functions
& OB_CLIENT_FUNC_RESIZE
) ||
865 self
->max_horz
!= self
->client
->max_horz
||
866 self
->max_vert
!= self
->client
->max_vert
||
867 self
->shaded
!= self
->client
->shaded
)
869 gboolean r
= (self
->client
->functions
& OB_CLIENT_FUNC_RESIZE
) &&
870 !(self
->client
->max_horz
&& self
->client
->max_vert
);
871 gboolean topbot
= !self
->client
->max_vert
;
872 gboolean sh
= self
->client
->shaded
;
873 XSetWindowAttributes a
;
875 /* these ones turn off when max vert, and some when shaded */
876 a
.cursor
= ob_cursor(r
&& topbot
&& !sh
?
877 OB_CURSOR_NORTH
: OB_CURSOR_NONE
);
878 XChangeWindowAttributes(obt_display
, self
->topresize
, CWCursor
, &a
);
879 XChangeWindowAttributes(obt_display
, self
->titletop
, CWCursor
, &a
);
880 a
.cursor
= ob_cursor(r
&& topbot
? OB_CURSOR_SOUTH
: OB_CURSOR_NONE
);
881 XChangeWindowAttributes(obt_display
, self
->handle
, CWCursor
, &a
);
882 XChangeWindowAttributes(obt_display
, self
->handletop
, CWCursor
, &a
);
883 XChangeWindowAttributes(obt_display
, self
->handlebottom
, CWCursor
, &a
);
884 XChangeWindowAttributes(obt_display
, self
->innerbottom
, CWCursor
, &a
);
886 /* these ones change when shaded */
887 a
.cursor
= ob_cursor(r
? (sh
? OB_CURSOR_WEST
: OB_CURSOR_NORTHWEST
) :
889 XChangeWindowAttributes(obt_display
, self
->titleleft
, CWCursor
, &a
);
890 XChangeWindowAttributes(obt_display
, self
->tltresize
, CWCursor
, &a
);
891 XChangeWindowAttributes(obt_display
, self
->tllresize
, CWCursor
, &a
);
892 XChangeWindowAttributes(obt_display
, self
->titletopleft
, CWCursor
, &a
);
893 a
.cursor
= ob_cursor(r
? (sh
? OB_CURSOR_EAST
: OB_CURSOR_NORTHEAST
) :
895 XChangeWindowAttributes(obt_display
, self
->titleright
, CWCursor
, &a
);
896 XChangeWindowAttributes(obt_display
, self
->trtresize
, CWCursor
, &a
);
897 XChangeWindowAttributes(obt_display
, self
->trrresize
, CWCursor
, &a
);
898 XChangeWindowAttributes(obt_display
, self
->titletopright
, CWCursor
,&a
);
900 /* these ones are pretty static */
901 a
.cursor
= ob_cursor(r
? OB_CURSOR_WEST
: OB_CURSOR_NONE
);
902 XChangeWindowAttributes(obt_display
, self
->left
, CWCursor
, &a
);
903 XChangeWindowAttributes(obt_display
, self
->innerleft
, CWCursor
, &a
);
904 a
.cursor
= ob_cursor(r
? OB_CURSOR_EAST
: OB_CURSOR_NONE
);
905 XChangeWindowAttributes(obt_display
, self
->right
, CWCursor
, &a
);
906 XChangeWindowAttributes(obt_display
, self
->innerright
, CWCursor
, &a
);
907 a
.cursor
= ob_cursor(r
? OB_CURSOR_SOUTHWEST
: OB_CURSOR_NONE
);
908 XChangeWindowAttributes(obt_display
, self
->lgrip
, CWCursor
, &a
);
909 XChangeWindowAttributes(obt_display
, self
->handleleft
, CWCursor
, &a
);
910 XChangeWindowAttributes(obt_display
, self
->lgripleft
, CWCursor
, &a
);
911 XChangeWindowAttributes(obt_display
, self
->lgriptop
, CWCursor
, &a
);
912 XChangeWindowAttributes(obt_display
, self
->lgripbottom
, CWCursor
, &a
);
913 XChangeWindowAttributes(obt_display
, self
->innerbll
, CWCursor
, &a
);
914 XChangeWindowAttributes(obt_display
, self
->innerblb
, CWCursor
, &a
);
915 a
.cursor
= ob_cursor(r
? OB_CURSOR_SOUTHEAST
: OB_CURSOR_NONE
);
916 XChangeWindowAttributes(obt_display
, self
->rgrip
, CWCursor
, &a
);
917 XChangeWindowAttributes(obt_display
, self
->handleright
, CWCursor
, &a
);
918 XChangeWindowAttributes(obt_display
, self
->rgripright
, CWCursor
, &a
);
919 XChangeWindowAttributes(obt_display
, self
->rgriptop
, CWCursor
, &a
);
920 XChangeWindowAttributes(obt_display
, self
->rgripbottom
, CWCursor
, &a
);
921 XChangeWindowAttributes(obt_display
, self
->innerbrr
, CWCursor
, &a
);
922 XChangeWindowAttributes(obt_display
, self
->innerbrb
, CWCursor
, &a
);
926 void frame_adjust_client_area(ObFrame
*self
)
928 /* adjust the window which is there to prevent flashing on unmap */
929 XMoveResizeWindow(obt_display
, self
->backfront
, 0, 0,
930 self
->client
->area
.width
,
931 self
->client
->area
.height
);
934 void frame_adjust_state(ObFrame
*self
)
936 self
->need_render
= TRUE
;
937 framerender_frame(self
);
940 void frame_adjust_focus(ObFrame
*self
, gboolean hilite
)
942 self
->focused
= hilite
;
943 self
->need_render
= TRUE
;
944 framerender_frame(self
);
948 void frame_adjust_title(ObFrame
*self
)
950 self
->need_render
= TRUE
;
951 framerender_frame(self
);
954 void frame_adjust_icon(ObFrame
*self
)
956 self
->need_render
= TRUE
;
957 framerender_frame(self
);
960 void frame_grab_client(ObFrame
*self
)
962 /* DO NOT map the client window here. we used to do that, but it is bogus.
963 we need to set up the client's dimensions and everything before we
964 send a mapnotify or we create race conditions.
967 /* reparent the client to the frame */
968 XReparentWindow(obt_display
, self
->client
->window
, self
->window
, 0, 0);
971 When reparenting the client window, it is usually not mapped yet, since
972 this occurs from a MapRequest. However, in the case where Openbox is
973 starting up, the window is already mapped, so we'll see an unmap event
976 if (ob_state() == OB_STATE_STARTING
)
977 ++self
->client
->ignore_unmaps
;
979 /* select the event mask on the client's parent (to receive config/map
980 req's) the ButtonPress is to catch clicks on the client border */
981 XSelectInput(obt_display
, self
->window
, FRAME_EVENTMASK
);
983 /* set all the windows for the frame in the window_map */
984 window_add(&self
->window
, CLIENT_AS_WINDOW(self
->client
));
985 window_add(&self
->backback
, CLIENT_AS_WINDOW(self
->client
));
986 window_add(&self
->backfront
, CLIENT_AS_WINDOW(self
->client
));
987 window_add(&self
->innerleft
, CLIENT_AS_WINDOW(self
->client
));
988 window_add(&self
->innertop
, CLIENT_AS_WINDOW(self
->client
));
989 window_add(&self
->innerright
, CLIENT_AS_WINDOW(self
->client
));
990 window_add(&self
->innerbottom
, CLIENT_AS_WINDOW(self
->client
));
991 window_add(&self
->innerblb
, CLIENT_AS_WINDOW(self
->client
));
992 window_add(&self
->innerbll
, CLIENT_AS_WINDOW(self
->client
));
993 window_add(&self
->innerbrb
, CLIENT_AS_WINDOW(self
->client
));
994 window_add(&self
->innerbrr
, CLIENT_AS_WINDOW(self
->client
));
995 window_add(&self
->title
, CLIENT_AS_WINDOW(self
->client
));
996 window_add(&self
->label
, CLIENT_AS_WINDOW(self
->client
));
997 window_add(&self
->max
, CLIENT_AS_WINDOW(self
->client
));
998 window_add(&self
->close
, CLIENT_AS_WINDOW(self
->client
));
999 window_add(&self
->desk
, CLIENT_AS_WINDOW(self
->client
));
1000 window_add(&self
->shade
, CLIENT_AS_WINDOW(self
->client
));
1001 window_add(&self
->icon
, CLIENT_AS_WINDOW(self
->client
));
1002 window_add(&self
->iconify
, CLIENT_AS_WINDOW(self
->client
));
1003 window_add(&self
->handle
, CLIENT_AS_WINDOW(self
->client
));
1004 window_add(&self
->lgrip
, CLIENT_AS_WINDOW(self
->client
));
1005 window_add(&self
->rgrip
, CLIENT_AS_WINDOW(self
->client
));
1006 window_add(&self
->topresize
, CLIENT_AS_WINDOW(self
->client
));
1007 window_add(&self
->tltresize
, CLIENT_AS_WINDOW(self
->client
));
1008 window_add(&self
->tllresize
, CLIENT_AS_WINDOW(self
->client
));
1009 window_add(&self
->trtresize
, CLIENT_AS_WINDOW(self
->client
));
1010 window_add(&self
->trrresize
, CLIENT_AS_WINDOW(self
->client
));
1011 window_add(&self
->left
, CLIENT_AS_WINDOW(self
->client
));
1012 window_add(&self
->right
, CLIENT_AS_WINDOW(self
->client
));
1013 window_add(&self
->titleleft
, CLIENT_AS_WINDOW(self
->client
));
1014 window_add(&self
->titletop
, CLIENT_AS_WINDOW(self
->client
));
1015 window_add(&self
->titletopleft
, CLIENT_AS_WINDOW(self
->client
));
1016 window_add(&self
->titletopright
, CLIENT_AS_WINDOW(self
->client
));
1017 window_add(&self
->titleright
, CLIENT_AS_WINDOW(self
->client
));
1018 window_add(&self
->titlebottom
, CLIENT_AS_WINDOW(self
->client
));
1019 window_add(&self
->handleleft
, CLIENT_AS_WINDOW(self
->client
));
1020 window_add(&self
->handletop
, CLIENT_AS_WINDOW(self
->client
));
1021 window_add(&self
->handleright
, CLIENT_AS_WINDOW(self
->client
));
1022 window_add(&self
->handlebottom
, CLIENT_AS_WINDOW(self
->client
));
1023 window_add(&self
->lgripleft
, CLIENT_AS_WINDOW(self
->client
));
1024 window_add(&self
->lgriptop
, CLIENT_AS_WINDOW(self
->client
));
1025 window_add(&self
->lgripbottom
, CLIENT_AS_WINDOW(self
->client
));
1026 window_add(&self
->rgripright
, CLIENT_AS_WINDOW(self
->client
));
1027 window_add(&self
->rgriptop
, CLIENT_AS_WINDOW(self
->client
));
1028 window_add(&self
->rgripbottom
, CLIENT_AS_WINDOW(self
->client
));
1031 void frame_release_client(ObFrame
*self
)
1034 gboolean reparent
= TRUE
;
1036 /* if there was any animation going on, kill it */
1037 obt_main_loop_timeout_remove_data(ob_main_loop
, frame_animate_iconify
,
1040 /* check if the app has already reparented its window away */
1041 while (XCheckTypedWindowEvent(obt_display
, self
->client
->window
,
1042 ReparentNotify
, &ev
))
1044 /* This check makes sure we don't catch our own reparent action to
1045 our frame window. This doesn't count as the app reparenting itself
1048 Reparent events that are generated by us are just discarded here.
1049 They are of no consequence to us anyhow.
1051 if (ev
.xreparent
.parent
!= self
->window
) {
1053 XPutBackEvent(obt_display
, &ev
);
1059 /* according to the ICCCM - if the client doesn't reparent itself,
1060 then we will reparent the window to root for them */
1061 XReparentWindow(obt_display
, self
->client
->window
, obt_root(ob_screen
),
1062 self
->client
->area
.x
, self
->client
->area
.y
);
1065 /* remove all the windows for the frame from the window_map */
1066 window_remove(self
->window
);
1067 window_remove(self
->backback
);
1068 window_remove(self
->backfront
);
1069 window_remove(self
->innerleft
);
1070 window_remove(self
->innertop
);
1071 window_remove(self
->innerright
);
1072 window_remove(self
->innerbottom
);
1073 window_remove(self
->innerblb
);
1074 window_remove(self
->innerbll
);
1075 window_remove(self
->innerbrb
);
1076 window_remove(self
->innerbrr
);
1077 window_remove(self
->title
);
1078 window_remove(self
->label
);
1079 window_remove(self
->max
);
1080 window_remove(self
->close
);
1081 window_remove(self
->desk
);
1082 window_remove(self
->shade
);
1083 window_remove(self
->icon
);
1084 window_remove(self
->iconify
);
1085 window_remove(self
->handle
);
1086 window_remove(self
->lgrip
);
1087 window_remove(self
->rgrip
);
1088 window_remove(self
->topresize
);
1089 window_remove(self
->tltresize
);
1090 window_remove(self
->tllresize
);
1091 window_remove(self
->trtresize
);
1092 window_remove(self
->trrresize
);
1093 window_remove(self
->left
);
1094 window_remove(self
->right
);
1095 window_remove(self
->titleleft
);
1096 window_remove(self
->titletop
);
1097 window_remove(self
->titletopleft
);
1098 window_remove(self
->titletopright
);
1099 window_remove(self
->titleright
);
1100 window_remove(self
->titlebottom
);
1101 window_remove(self
->handleleft
);
1102 window_remove(self
->handletop
);
1103 window_remove(self
->handleright
);
1104 window_remove(self
->handlebottom
);
1105 window_remove(self
->lgripleft
);
1106 window_remove(self
->lgriptop
);
1107 window_remove(self
->lgripbottom
);
1108 window_remove(self
->rgripright
);
1109 window_remove(self
->rgriptop
);
1110 window_remove(self
->rgripbottom
);
1112 obt_main_loop_timeout_remove_data(ob_main_loop
, flash_timeout
, self
, TRUE
);
1115 /* is there anything present between us and the label? */
1116 static gboolean
is_button_present(ObFrame
*self
, const gchar
*lc
, gint dir
) {
1117 for (; *lc
!= '\0' && lc
>= config_title_layout
; lc
+= dir
) {
1118 if (*lc
== ' ') continue; /* it was invalid */
1119 if (*lc
== 'N' && self
->decorations
& OB_FRAME_DECOR_ICON
)
1121 if (*lc
== 'D' && self
->decorations
& OB_FRAME_DECOR_ALLDESKTOPS
)
1123 if (*lc
== 'S' && self
->decorations
& OB_FRAME_DECOR_SHADE
)
1125 if (*lc
== 'I' && self
->decorations
& OB_FRAME_DECOR_ICONIFY
)
1127 if (*lc
== 'M' && self
->decorations
& OB_FRAME_DECOR_MAXIMIZE
)
1129 if (*lc
== 'C' && self
->decorations
& OB_FRAME_DECOR_CLOSE
)
1131 if (*lc
== 'L') return FALSE
;
1136 static void place_button(ObFrame
*self
, const char *lc
, gint bwidth
,
1138 gint
*x
, gint
*button_on
, gint
*button_x
)
1140 if (!(*button_on
= is_button_present(self
, lc
, i
)))
1143 self
->label_width
-= bwidth
;
1148 if (self
->label_x
<= left
|| *x
> self
->label_x
) {
1151 /* the button would have been drawn on top of another button */
1153 self
->label_width
+= bwidth
;
1158 static void layout_title(ObFrame
*self
)
1163 const gint bwidth
= ob_rr_theme
->button_size
+ ob_rr_theme
->paddingx
+ 1;
1164 /* position of the leftmost button */
1165 const gint left
= ob_rr_theme
->paddingx
+ 1;
1166 /* position of the rightmost button */
1167 const gint right
= self
->width
;
1169 /* turn them all off */
1170 self
->icon_on
= self
->desk_on
= self
->shade_on
= self
->iconify_on
=
1171 self
->max_on
= self
->close_on
= self
->label_on
= FALSE
;
1172 self
->label_width
= self
->width
- (ob_rr_theme
->paddingx
+ 1) * 2;
1173 self
->leftmost
= self
->rightmost
= OB_FRAME_CONTEXT_NONE
;
1175 /* figure out what's being shown, find each element's position, and the
1178 do the ones before the label, then after the label,
1179 i will be +1 the first time through when working to the left,
1180 and -1 the second time through when working to the right */
1181 for (i
= 1; i
>= -1; i
-=2) {
1183 ObFrameContext
*firstcon
;
1187 lc
= config_title_layout
;
1188 firstcon
= &self
->leftmost
;
1191 lc
= config_title_layout
+ strlen(config_title_layout
)-1;
1192 firstcon
= &self
->rightmost
;
1195 /* stop at the end of the string (or the label, which calls break) */
1196 for (; *lc
!= '\0' && lc
>= config_title_layout
; lc
+=i
) {
1199 self
->label_on
= TRUE
;
1202 break; /* break the for loop, do other side of label */
1203 } else if (*lc
== 'N') {
1204 if (firstcon
) *firstcon
= OB_FRAME_CONTEXT_ICON
;
1205 /* icon is bigger than buttons */
1206 place_button(self
, lc
, bwidth
+ 2, left
, i
, &x
, &self
->icon_on
, &self
->icon_x
);
1207 } else if (*lc
== 'D') {
1208 if (firstcon
) *firstcon
= OB_FRAME_CONTEXT_ALLDESKTOPS
;
1209 place_button(self
, lc
, bwidth
, left
, i
, &x
, &self
->desk_on
, &self
->desk_x
);
1210 } else if (*lc
== 'S') {
1211 if (firstcon
) *firstcon
= OB_FRAME_CONTEXT_SHADE
;
1212 place_button(self
, lc
, bwidth
, left
, i
, &x
, &self
->shade_on
, &self
->shade_x
);
1213 } else if (*lc
== 'I') {
1214 if (firstcon
) *firstcon
= OB_FRAME_CONTEXT_ICONIFY
;
1215 place_button(self
, lc
, bwidth
, left
, i
, &x
, &self
->iconify_on
, &self
->iconify_x
);
1216 } else if (*lc
== 'M') {
1217 if (firstcon
) *firstcon
= OB_FRAME_CONTEXT_MAXIMIZE
;
1218 place_button(self
, lc
, bwidth
, left
, i
, &x
, &self
->max_on
, &self
->max_x
);
1219 } else if (*lc
== 'C') {
1220 if (firstcon
) *firstcon
= OB_FRAME_CONTEXT_CLOSE
;
1221 place_button(self
, lc
, bwidth
, left
, i
, &x
, &self
->close_on
, &self
->close_x
);
1223 continue; /* don't set firstcon */
1228 /* position and map the elements */
1229 if (self
->icon_on
) {
1230 XMapWindow(obt_display
, self
->icon
);
1231 XMoveWindow(obt_display
, self
->icon
, self
->icon_x
,
1232 ob_rr_theme
->paddingy
);
1234 XUnmapWindow(obt_display
, self
->icon
);
1236 if (self
->desk_on
) {
1237 XMapWindow(obt_display
, self
->desk
);
1238 XMoveWindow(obt_display
, self
->desk
, self
->desk_x
,
1239 ob_rr_theme
->paddingy
+ 1);
1241 XUnmapWindow(obt_display
, self
->desk
);
1243 if (self
->shade_on
) {
1244 XMapWindow(obt_display
, self
->shade
);
1245 XMoveWindow(obt_display
, self
->shade
, self
->shade_x
,
1246 ob_rr_theme
->paddingy
+ 1);
1248 XUnmapWindow(obt_display
, self
->shade
);
1250 if (self
->iconify_on
) {
1251 XMapWindow(obt_display
, self
->iconify
);
1252 XMoveWindow(obt_display
, self
->iconify
, self
->iconify_x
,
1253 ob_rr_theme
->paddingy
+ 1);
1255 XUnmapWindow(obt_display
, self
->iconify
);
1258 XMapWindow(obt_display
, self
->max
);
1259 XMoveWindow(obt_display
, self
->max
, self
->max_x
,
1260 ob_rr_theme
->paddingy
+ 1);
1262 XUnmapWindow(obt_display
, self
->max
);
1264 if (self
->close_on
) {
1265 XMapWindow(obt_display
, self
->close
);
1266 XMoveWindow(obt_display
, self
->close
, self
->close_x
,
1267 ob_rr_theme
->paddingy
+ 1);
1269 XUnmapWindow(obt_display
, self
->close
);
1271 if (self
->label_on
&& self
->label_width
> 0) {
1272 XMapWindow(obt_display
, self
->label
);
1273 XMoveWindow(obt_display
, self
->label
, self
->label_x
,
1274 ob_rr_theme
->paddingy
);
1276 XUnmapWindow(obt_display
, self
->label
);
1279 ObFrameContext
frame_context_from_string(const gchar
*name
)
1281 if (!g_ascii_strcasecmp("Desktop", name
))
1282 return OB_FRAME_CONTEXT_DESKTOP
;
1283 else if (!g_ascii_strcasecmp("Root", name
))
1284 return OB_FRAME_CONTEXT_ROOT
;
1285 else if (!g_ascii_strcasecmp("Client", name
))
1286 return OB_FRAME_CONTEXT_CLIENT
;
1287 else if (!g_ascii_strcasecmp("Titlebar", name
))
1288 return OB_FRAME_CONTEXT_TITLEBAR
;
1289 else if (!g_ascii_strcasecmp("Frame", name
))
1290 return OB_FRAME_CONTEXT_FRAME
;
1291 else if (!g_ascii_strcasecmp("TLCorner", name
))
1292 return OB_FRAME_CONTEXT_TLCORNER
;
1293 else if (!g_ascii_strcasecmp("TRCorner", name
))
1294 return OB_FRAME_CONTEXT_TRCORNER
;
1295 else if (!g_ascii_strcasecmp("BLCorner", name
))
1296 return OB_FRAME_CONTEXT_BLCORNER
;
1297 else if (!g_ascii_strcasecmp("BRCorner", name
))
1298 return OB_FRAME_CONTEXT_BRCORNER
;
1299 else if (!g_ascii_strcasecmp("Top", name
))
1300 return OB_FRAME_CONTEXT_TOP
;
1301 else if (!g_ascii_strcasecmp("Bottom", name
))
1302 return OB_FRAME_CONTEXT_BOTTOM
;
1303 else if (!g_ascii_strcasecmp("Left", name
))
1304 return OB_FRAME_CONTEXT_LEFT
;
1305 else if (!g_ascii_strcasecmp("Right", name
))
1306 return OB_FRAME_CONTEXT_RIGHT
;
1307 else if (!g_ascii_strcasecmp("Maximize", name
))
1308 return OB_FRAME_CONTEXT_MAXIMIZE
;
1309 else if (!g_ascii_strcasecmp("AllDesktops", name
))
1310 return OB_FRAME_CONTEXT_ALLDESKTOPS
;
1311 else if (!g_ascii_strcasecmp("Shade", name
))
1312 return OB_FRAME_CONTEXT_SHADE
;
1313 else if (!g_ascii_strcasecmp("Iconify", name
))
1314 return OB_FRAME_CONTEXT_ICONIFY
;
1315 else if (!g_ascii_strcasecmp("Icon", name
))
1316 return OB_FRAME_CONTEXT_ICON
;
1317 else if (!g_ascii_strcasecmp("Close", name
))
1318 return OB_FRAME_CONTEXT_CLOSE
;
1319 else if (!g_ascii_strcasecmp("MoveResize", name
))
1320 return OB_FRAME_CONTEXT_MOVE_RESIZE
;
1321 return OB_FRAME_CONTEXT_NONE
;
1324 ObFrameContext
frame_context(ObClient
*client
, Window win
, gint x
, gint y
)
1328 if (moveresize_in_progress
)
1329 return OB_FRAME_CONTEXT_MOVE_RESIZE
;
1331 if (win
== obt_root(ob_screen
))
1332 return OB_FRAME_CONTEXT_ROOT
;
1333 if (client
== NULL
) return OB_FRAME_CONTEXT_NONE
;
1334 if (win
== client
->window
) {
1335 /* conceptually, this is the desktop, as far as users are
1337 if (client
->type
== OB_CLIENT_TYPE_DESKTOP
)
1338 return OB_FRAME_CONTEXT_DESKTOP
;
1339 return OB_FRAME_CONTEXT_CLIENT
;
1342 self
= client
->frame
;
1344 /* when the user clicks in the corners of the titlebar and the client
1345 is fully maximized, then treat it like they clicked in the
1346 button that is there */
1347 if (self
->max_horz
&& self
->max_vert
&&
1348 (win
== self
->title
|| win
== self
->titletop
||
1349 win
== self
->titleleft
|| win
== self
->titletopleft
||
1350 win
== self
->titleright
|| win
== self
->titletopright
))
1352 /* get the mouse coords in reference to the whole frame */
1356 /* these windows are down a border width from the top of the frame */
1357 if (win
== self
->title
||
1358 win
== self
->titleleft
|| win
== self
->titleright
)
1361 /* title is a border width in from the edge */
1362 if (win
== self
->title
)
1364 /* titletop is a bit to the right */
1365 else if (win
== self
->titletop
)
1366 fx
+= ob_rr_theme
->grip_width
+ self
->bwidth
;
1367 /* titletopright is way to the right edge */
1368 else if (win
== self
->titletopright
)
1369 fx
+= self
->area
.width
- (ob_rr_theme
->grip_width
+ self
->bwidth
);
1370 /* titleright is even more way to the right edge */
1371 else if (win
== self
->titleright
)
1372 fx
+= self
->area
.width
- self
->bwidth
;
1374 /* figure out if we're over the area that should be considered a
1376 if (fy
< self
->bwidth
+ ob_rr_theme
->paddingy
+ 1 +
1377 ob_rr_theme
->button_size
)
1379 if (fx
< (self
->bwidth
+ ob_rr_theme
->paddingx
+ 1 +
1380 ob_rr_theme
->button_size
))
1382 if (self
->leftmost
!= OB_FRAME_CONTEXT_NONE
)
1383 return self
->leftmost
;
1385 else if (fx
>= (self
->area
.width
-
1386 (self
->bwidth
+ ob_rr_theme
->paddingx
+ 1 +
1387 ob_rr_theme
->button_size
)))
1389 if (self
->rightmost
!= OB_FRAME_CONTEXT_NONE
)
1390 return self
->rightmost
;
1394 /* there is no resizing maximized windows so make them the titlebar
1396 return OB_FRAME_CONTEXT_TITLEBAR
;
1398 else if (self
->max_vert
&&
1399 (win
== self
->titletop
|| win
== self
->topresize
))
1400 /* can't resize vertically when max vert */
1401 return OB_FRAME_CONTEXT_TITLEBAR
;
1402 else if (self
->shaded
&&
1403 (win
== self
->titletop
|| win
== self
->topresize
))
1404 /* can't resize vertically when shaded */
1405 return OB_FRAME_CONTEXT_TITLEBAR
;
1407 if (win
== self
->window
) return OB_FRAME_CONTEXT_FRAME
;
1408 if (win
== self
->label
) return OB_FRAME_CONTEXT_TITLEBAR
;
1409 if (win
== self
->handle
) return OB_FRAME_CONTEXT_BOTTOM
;
1410 if (win
== self
->handletop
) return OB_FRAME_CONTEXT_BOTTOM
;
1411 if (win
== self
->handlebottom
) return OB_FRAME_CONTEXT_BOTTOM
;
1412 if (win
== self
->handleleft
) return OB_FRAME_CONTEXT_BLCORNER
;
1413 if (win
== self
->lgrip
) return OB_FRAME_CONTEXT_BLCORNER
;
1414 if (win
== self
->lgripleft
) return OB_FRAME_CONTEXT_BLCORNER
;
1415 if (win
== self
->lgriptop
) return OB_FRAME_CONTEXT_BLCORNER
;
1416 if (win
== self
->lgripbottom
) return OB_FRAME_CONTEXT_BLCORNER
;
1417 if (win
== self
->handleright
) return OB_FRAME_CONTEXT_BRCORNER
;
1418 if (win
== self
->rgrip
) return OB_FRAME_CONTEXT_BRCORNER
;
1419 if (win
== self
->rgripright
) return OB_FRAME_CONTEXT_BRCORNER
;
1420 if (win
== self
->rgriptop
) return OB_FRAME_CONTEXT_BRCORNER
;
1421 if (win
== self
->rgripbottom
) return OB_FRAME_CONTEXT_BRCORNER
;
1422 if (win
== self
->title
) return OB_FRAME_CONTEXT_TITLEBAR
;
1423 if (win
== self
->titlebottom
) return OB_FRAME_CONTEXT_TITLEBAR
;
1424 if (win
== self
->titleleft
) return OB_FRAME_CONTEXT_TLCORNER
;
1425 if (win
== self
->titletopleft
) return OB_FRAME_CONTEXT_TLCORNER
;
1426 if (win
== self
->titleright
) return OB_FRAME_CONTEXT_TRCORNER
;
1427 if (win
== self
->titletopright
) return OB_FRAME_CONTEXT_TRCORNER
;
1428 if (win
== self
->titletop
) return OB_FRAME_CONTEXT_TOP
;
1429 if (win
== self
->topresize
) return OB_FRAME_CONTEXT_TOP
;
1430 if (win
== self
->tltresize
) return OB_FRAME_CONTEXT_TLCORNER
;
1431 if (win
== self
->tllresize
) return OB_FRAME_CONTEXT_TLCORNER
;
1432 if (win
== self
->trtresize
) return OB_FRAME_CONTEXT_TRCORNER
;
1433 if (win
== self
->trrresize
) return OB_FRAME_CONTEXT_TRCORNER
;
1434 if (win
== self
->left
) return OB_FRAME_CONTEXT_LEFT
;
1435 if (win
== self
->right
) return OB_FRAME_CONTEXT_RIGHT
;
1436 if (win
== self
->innertop
) return OB_FRAME_CONTEXT_TITLEBAR
;
1437 if (win
== self
->innerleft
) return OB_FRAME_CONTEXT_LEFT
;
1438 if (win
== self
->innerbottom
) return OB_FRAME_CONTEXT_BOTTOM
;
1439 if (win
== self
->innerright
) return OB_FRAME_CONTEXT_RIGHT
;
1440 if (win
== self
->innerbll
) return OB_FRAME_CONTEXT_BLCORNER
;
1441 if (win
== self
->innerblb
) return OB_FRAME_CONTEXT_BLCORNER
;
1442 if (win
== self
->innerbrr
) return OB_FRAME_CONTEXT_BRCORNER
;
1443 if (win
== self
->innerbrb
) return OB_FRAME_CONTEXT_BRCORNER
;
1444 if (win
== self
->max
) return OB_FRAME_CONTEXT_MAXIMIZE
;
1445 if (win
== self
->iconify
) return OB_FRAME_CONTEXT_ICONIFY
;
1446 if (win
== self
->close
) return OB_FRAME_CONTEXT_CLOSE
;
1447 if (win
== self
->icon
) return OB_FRAME_CONTEXT_ICON
;
1448 if (win
== self
->desk
) return OB_FRAME_CONTEXT_ALLDESKTOPS
;
1449 if (win
== self
->shade
) return OB_FRAME_CONTEXT_SHADE
;
1451 return OB_FRAME_CONTEXT_NONE
;
1454 void frame_client_gravity(ObFrame
*self
, gint
*x
, gint
*y
)
1457 switch (self
->client
->gravity
) {
1459 case NorthWestGravity
:
1460 case SouthWestGravity
:
1467 /* the middle of the client will be the middle of the frame */
1468 *x
-= (self
->size
.right
- self
->size
.left
) / 2;
1471 case NorthEastGravity
:
1472 case SouthEastGravity
:
1474 /* the right side of the client will be the right side of the frame */
1475 *x
-= self
->size
.right
+ self
->size
.left
-
1476 self
->client
->border_width
* 2;
1481 /* the client's position won't move */
1482 *x
-= self
->size
.left
- self
->client
->border_width
;
1487 switch (self
->client
->gravity
) {
1489 case NorthWestGravity
:
1490 case NorthEastGravity
:
1497 /* the middle of the client will be the middle of the frame */
1498 *y
-= (self
->size
.bottom
- self
->size
.top
) / 2;
1501 case SouthWestGravity
:
1502 case SouthEastGravity
:
1504 /* the bottom of the client will be the bottom of the frame */
1505 *y
-= self
->size
.bottom
+ self
->size
.top
-
1506 self
->client
->border_width
* 2;
1511 /* the client's position won't move */
1512 *y
-= self
->size
.top
- self
->client
->border_width
;
1517 void frame_frame_gravity(ObFrame
*self
, gint
*x
, gint
*y
)
1520 switch (self
->client
->gravity
) {
1522 case NorthWestGravity
:
1524 case SouthWestGravity
:
1529 /* the middle of the client will be the middle of the frame */
1530 *x
+= (self
->size
.right
- self
->size
.left
) / 2;
1532 case NorthEastGravity
:
1534 case SouthEastGravity
:
1535 /* the right side of the client will be the right side of the frame */
1536 *x
+= self
->size
.right
+ self
->size
.left
-
1537 self
->client
->border_width
* 2;
1541 /* the client's position won't move */
1542 *x
+= self
->size
.left
- self
->client
->border_width
;
1547 switch (self
->client
->gravity
) {
1549 case NorthWestGravity
:
1551 case NorthEastGravity
:
1556 /* the middle of the client will be the middle of the frame */
1557 *y
+= (self
->size
.bottom
- self
->size
.top
) / 2;
1559 case SouthWestGravity
:
1561 case SouthEastGravity
:
1562 /* the bottom of the client will be the bottom of the frame */
1563 *y
+= self
->size
.bottom
+ self
->size
.top
-
1564 self
->client
->border_width
* 2;
1568 /* the client's position won't move */
1569 *y
+= self
->size
.top
- self
->client
->border_width
;
1574 void frame_rect_to_frame(ObFrame
*self
, Rect
*r
)
1576 r
->width
+= self
->size
.left
+ self
->size
.right
;
1577 r
->height
+= self
->size
.top
+ self
->size
.bottom
;
1578 frame_client_gravity(self
, &r
->x
, &r
->y
);
1581 void frame_rect_to_client(ObFrame
*self
, Rect
*r
)
1583 r
->width
-= self
->size
.left
+ self
->size
.right
;
1584 r
->height
-= self
->size
.top
+ self
->size
.bottom
;
1585 frame_frame_gravity(self
, &r
->x
, &r
->y
);
1588 static void flash_done(gpointer data
)
1590 ObFrame
*self
= data
;
1592 if (self
->focused
!= self
->flash_on
)
1593 frame_adjust_focus(self
, self
->focused
);
1596 static gboolean
flash_timeout(gpointer data
)
1598 ObFrame
*self
= data
;
1601 g_get_current_time(&now
);
1602 if (now
.tv_sec
> self
->flash_end
.tv_sec
||
1603 (now
.tv_sec
== self
->flash_end
.tv_sec
&&
1604 now
.tv_usec
>= self
->flash_end
.tv_usec
))
1605 self
->flashing
= FALSE
;
1607 if (!self
->flashing
)
1608 return FALSE
; /* we are done */
1610 self
->flash_on
= !self
->flash_on
;
1611 if (!self
->focused
) {
1612 frame_adjust_focus(self
, self
->flash_on
);
1613 self
->focused
= FALSE
;
1616 return TRUE
; /* go again */
1619 void frame_flash_start(ObFrame
*self
)
1621 self
->flash_on
= self
->focused
;
1623 if (!self
->flashing
)
1624 obt_main_loop_timeout_add(ob_main_loop
,
1625 G_USEC_PER_SEC
* 0.6,
1630 g_get_current_time(&self
->flash_end
);
1631 g_time_val_add(&self
->flash_end
, G_USEC_PER_SEC
* 5);
1633 self
->flashing
= TRUE
;
1636 void frame_flash_stop(ObFrame
*self
)
1638 self
->flashing
= FALSE
;
1641 static gulong
frame_animate_iconify_time_left(ObFrame
*self
,
1642 const GTimeVal
*now
)
1645 sec
= self
->iconify_animation_end
.tv_sec
- now
->tv_sec
;
1646 usec
= self
->iconify_animation_end
.tv_usec
- now
->tv_usec
;
1648 usec
+= G_USEC_PER_SEC
;
1651 /* no negative values */
1652 return MAX(sec
* G_USEC_PER_SEC
+ usec
, 0);
1655 static gboolean
frame_animate_iconify(gpointer p
)
1659 gint iconx
, icony
, iconw
;
1662 gboolean iconifying
;
1664 if (self
->client
->icon_geometry
.width
== 0) {
1665 /* there is no icon geometry set so just go straight down */
1666 Rect
*a
= screen_physical_area_monitor
1667 (screen_find_monitor(&self
->area
));
1668 iconx
= self
->area
.x
+ self
->area
.width
/ 2 + 32;
1669 icony
= a
->y
+ a
->width
;
1673 iconx
= self
->client
->icon_geometry
.x
;
1674 icony
= self
->client
->icon_geometry
.y
;
1675 iconw
= self
->client
->icon_geometry
.width
;
1678 iconifying
= self
->iconify_animation_going
> 0;
1680 /* how far do we have left to go ? */
1681 g_get_current_time(&now
);
1682 time
= frame_animate_iconify_time_left(self
, &now
);
1684 if ((time
> 0 && iconifying
) || (time
== 0 && !iconifying
)) {
1685 /* start where the frame is supposed to be */
1688 w
= self
->area
.width
;
1689 h
= self
->area
.height
;
1691 /* start at the icon */
1695 h
= self
->size
.top
; /* just the titlebar */
1702 dx
= self
->area
.x
- iconx
;
1703 dy
= self
->area
.y
- icony
;
1704 dw
= self
->area
.width
- self
->bwidth
* 2 - iconw
;
1705 /* if restoring, we move in the opposite direction */
1706 if (!iconifying
) { dx
= -dx
; dy
= -dy
; dw
= -dw
; }
1708 elapsed
= FRAME_ANIMATE_ICONIFY_TIME
- time
;
1709 x
= x
- (dx
* elapsed
) / FRAME_ANIMATE_ICONIFY_TIME
;
1710 y
= y
- (dy
* elapsed
) / FRAME_ANIMATE_ICONIFY_TIME
;
1711 w
= w
- (dw
* elapsed
) / FRAME_ANIMATE_ICONIFY_TIME
;
1712 h
= self
->size
.top
; /* just the titlebar */
1715 XMoveResizeWindow(obt_display
, self
->window
, x
, y
, w
, h
);
1716 XFlush(obt_display
);
1719 frame_end_iconify_animation(self
);
1721 return time
> 0; /* repeat until we're out of time */
1724 void frame_end_iconify_animation(ObFrame
*self
)
1726 /* see if there is an animation going */
1727 if (self
->iconify_animation_going
== 0) return;
1730 XUnmapWindow(obt_display
, self
->window
);
1732 /* Send a ConfigureNotify when the animation is done, this fixes
1733 KDE's pager showing the window in the wrong place. since the
1734 window is mapped at a different location and is then moved, we
1735 need to send the synthetic configurenotify, since apps may have
1736 read the position when the client mapped, apparently. */
1737 client_reconfigure(self
->client
, TRUE
);
1740 /* we're not animating any more ! */
1741 self
->iconify_animation_going
= 0;
1743 XMoveResizeWindow(obt_display
, self
->window
,
1744 self
->area
.x
, self
->area
.y
,
1745 self
->area
.width
, self
->area
.height
);
1746 /* we delay re-rendering until after we're done animating */
1747 framerender_frame(self
);
1748 XFlush(obt_display
);
1751 void frame_begin_iconify_animation(ObFrame
*self
, gboolean iconifying
)
1754 gboolean new_anim
= FALSE
;
1755 gboolean set_end
= TRUE
;
1758 /* if there is no titlebar, just don't animate for now
1759 XXX it would be nice tho.. */
1760 if (!(self
->decorations
& OB_FRAME_DECOR_TITLEBAR
))
1763 /* get the current time */
1764 g_get_current_time(&now
);
1766 /* get how long until the end */
1767 time
= FRAME_ANIMATE_ICONIFY_TIME
;
1768 if (self
->iconify_animation_going
) {
1769 if (!!iconifying
!= (self
->iconify_animation_going
> 0)) {
1770 /* animation was already going on in the opposite direction */
1771 time
= time
- frame_animate_iconify_time_left(self
, &now
);
1773 /* animation was already going in the same direction */
1777 self
->iconify_animation_going
= iconifying
? 1 : -1;
1779 /* set the ending time */
1781 self
->iconify_animation_end
.tv_sec
= now
.tv_sec
;
1782 self
->iconify_animation_end
.tv_usec
= now
.tv_usec
;
1783 g_time_val_add(&self
->iconify_animation_end
, time
);
1787 obt_main_loop_timeout_remove_data(ob_main_loop
, frame_animate_iconify
,
1789 obt_main_loop_timeout_add(ob_main_loop
,
1790 FRAME_ANIMATE_ICONIFY_STEP_TIME
,
1791 frame_animate_iconify
, self
,
1792 g_direct_equal
, NULL
);
1794 /* do the first step */
1795 frame_animate_iconify(self
);
1797 /* show it during the animation even if it is not "visible" */
1799 XMapWindow(obt_display
, self
->window
);