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.
23 #include "extensions.h"
27 #include "framerender.h"
29 #include "focus_cycle.h"
30 #include "focus_cycle_indicator.h"
31 #include "moveresize.h"
33 #include "render/theme.h"
35 #define FRAME_EVENTMASK (EnterWindowMask | LeaveWindowMask | \
36 ButtonPressMask | ButtonReleaseMask | \
37 SubstructureRedirectMask | FocusChangeMask)
38 #define ELEMENT_EVENTMASK (ButtonPressMask | ButtonReleaseMask | \
39 ButtonMotionMask | PointerMotionMask | \
40 EnterWindowMask | LeaveWindowMask)
42 #define FRAME_ANIMATE_ICONIFY_TIME 150000 /* .15 seconds */
43 #define FRAME_ANIMATE_ICONIFY_STEP_TIME (G_USEC_PER_SEC / 60) /* 60 Hz */
45 #define FRAME_HANDLE_Y(f) (f->size.top + f->client->area.height + f->cbwidth_b)
47 static void flash_done(gpointer data
);
48 static gboolean
flash_timeout(gpointer data
);
50 static void layout_title(ObFrame
*self
);
51 static void set_theme_statics(ObFrame
*self
);
52 static void free_theme_statics(ObFrame
*self
);
53 static gboolean
frame_animate_iconify(gpointer self
);
54 static void frame_adjust_cursors(ObFrame
*self
);
56 static Window
createWindow(Window parent
, Visual
*visual
,
57 gulong mask
, XSetWindowAttributes
*attrib
)
59 return XCreateWindow(ob_display
, parent
, 0, 0, 1, 1, 0,
60 (visual
? 32 : RrDepth(ob_rr_inst
)), InputOutput
,
61 (visual
? visual
: RrVisual(ob_rr_inst
)),
66 static Visual
*check_32bit_client(ObClient
*c
)
68 XWindowAttributes wattrib
;
71 /* we're already running at 32 bit depth, yay. we don't need to use their
73 if (RrDepth(ob_rr_inst
) == 32)
76 ret
= XGetWindowAttributes(ob_display
, c
->window
, &wattrib
);
77 g_assert(ret
!= BadDrawable
);
78 g_assert(ret
!= BadWindow
);
80 if (wattrib
.depth
== 32)
81 return wattrib
.visual
;
85 ObFrame
*frame_new(ObClient
*client
)
87 XSetWindowAttributes attrib
;
92 self
= g_new0(ObFrame
, 1);
93 self
->client
= client
;
95 visual
= check_32bit_client(client
);
97 /* create the non-visible decor windows */
101 /* client has a 32-bit visual */
102 mask
= CWColormap
| CWBackPixel
| CWBorderPixel
;
103 /* create a colormap with the visual */
104 self
->colormap
= attrib
.colormap
=
105 XCreateColormap(ob_display
,
106 RootWindow(ob_display
, ob_screen
),
108 attrib
.background_pixel
= BlackPixel(ob_display
, ob_screen
);
109 attrib
.border_pixel
= BlackPixel(ob_display
, ob_screen
);
111 self
->window
= createWindow(RootWindow(ob_display
, ob_screen
), visual
,
114 /* create the visible decor windows */
118 /* client has a 32-bit visual */
119 mask
= CWColormap
| CWBackPixel
| CWBorderPixel
;
120 attrib
.colormap
= RrColormap(ob_rr_inst
);
123 self
->backback
= createWindow(self
->window
, NULL
, mask
, &attrib
);
124 self
->backfront
= createWindow(self
->backback
, NULL
, mask
, &attrib
);
127 attrib
.event_mask
= ELEMENT_EVENTMASK
;
128 self
->innerleft
= createWindow(self
->window
, NULL
, mask
, &attrib
);
129 self
->innertop
= createWindow(self
->window
, NULL
, mask
, &attrib
);
130 self
->innerright
= createWindow(self
->window
, NULL
, mask
, &attrib
);
131 self
->innerbottom
= createWindow(self
->window
, NULL
, mask
, &attrib
);
133 self
->innerblb
= createWindow(self
->innerbottom
, NULL
, mask
, &attrib
);
134 self
->innerbrb
= createWindow(self
->innerbottom
, NULL
, mask
, &attrib
);
135 self
->innerbll
= createWindow(self
->innerleft
, NULL
, mask
, &attrib
);
136 self
->innerbrr
= createWindow(self
->innerright
, NULL
, mask
, &attrib
);
138 self
->title
= createWindow(self
->window
, NULL
, mask
, &attrib
);
139 self
->titleleft
= createWindow(self
->window
, NULL
, mask
, &attrib
);
140 self
->titletop
= createWindow(self
->window
, NULL
, mask
, &attrib
);
141 self
->titletopleft
= createWindow(self
->window
, NULL
, mask
, &attrib
);
142 self
->titletopright
= createWindow(self
->window
, NULL
, mask
, &attrib
);
143 self
->titleright
= createWindow(self
->window
, NULL
, mask
, &attrib
);
144 self
->titlebottom
= createWindow(self
->window
, NULL
, mask
, &attrib
);
146 self
->topresize
= createWindow(self
->title
, NULL
, mask
, &attrib
);
147 self
->tltresize
= createWindow(self
->title
, NULL
, mask
, &attrib
);
148 self
->tllresize
= createWindow(self
->title
, NULL
, mask
, &attrib
);
149 self
->trtresize
= createWindow(self
->title
, NULL
, mask
, &attrib
);
150 self
->trrresize
= createWindow(self
->title
, NULL
, mask
, &attrib
);
152 self
->left
= createWindow(self
->window
, NULL
, mask
, &attrib
);
153 self
->right
= createWindow(self
->window
, NULL
, mask
, &attrib
);
155 self
->label
= createWindow(self
->title
, NULL
, mask
, &attrib
);
156 self
->max
= createWindow(self
->title
, NULL
, mask
, &attrib
);
157 self
->close
= createWindow(self
->title
, NULL
, mask
, &attrib
);
158 self
->desk
= createWindow(self
->title
, NULL
, mask
, &attrib
);
159 self
->shade
= createWindow(self
->title
, NULL
, mask
, &attrib
);
160 self
->icon
= createWindow(self
->title
, NULL
, mask
, &attrib
);
161 self
->iconify
= createWindow(self
->title
, NULL
, mask
, &attrib
);
163 self
->handle
= createWindow(self
->window
, NULL
, mask
, &attrib
);
164 self
->lgrip
= createWindow(self
->handle
, NULL
, mask
, &attrib
);
165 self
->rgrip
= createWindow(self
->handle
, NULL
, mask
, &attrib
);
167 self
->handleleft
= createWindow(self
->handle
, NULL
, mask
, &attrib
);
168 self
->handleright
= createWindow(self
->handle
, NULL
, mask
, &attrib
);
170 self
->handletop
= createWindow(self
->window
, NULL
, mask
, &attrib
);
171 self
->handlebottom
= createWindow(self
->window
, NULL
, mask
, &attrib
);
172 self
->lgripleft
= createWindow(self
->window
, NULL
, mask
, &attrib
);
173 self
->lgriptop
= createWindow(self
->window
, NULL
, mask
, &attrib
);
174 self
->lgripbottom
= createWindow(self
->window
, NULL
, mask
, &attrib
);
175 self
->rgripright
= createWindow(self
->window
, NULL
, mask
, &attrib
);
176 self
->rgriptop
= createWindow(self
->window
, NULL
, mask
, &attrib
);
177 self
->rgripbottom
= createWindow(self
->window
, NULL
, mask
, &attrib
);
179 self
->focused
= FALSE
;
181 /* the other stuff is shown based on decor settings */
182 XMapWindow(ob_display
, self
->label
);
183 XMapWindow(ob_display
, self
->backback
);
184 XMapWindow(ob_display
, self
->backfront
);
186 self
->max_press
= self
->close_press
= self
->desk_press
=
187 self
->iconify_press
= self
->shade_press
= FALSE
;
188 self
->max_hover
= self
->close_hover
= self
->desk_hover
=
189 self
->iconify_hover
= self
->shade_hover
= FALSE
;
191 set_theme_statics(self
);
196 static void set_theme_statics(ObFrame
*self
)
198 /* set colors/appearance/sizes for stuff that doesn't change */
199 XResizeWindow(ob_display
, self
->max
,
200 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
201 XResizeWindow(ob_display
, self
->iconify
,
202 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
203 XResizeWindow(ob_display
, self
->icon
,
204 ob_rr_theme
->button_size
+ 2, ob_rr_theme
->button_size
+ 2);
205 XResizeWindow(ob_display
, self
->close
,
206 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
207 XResizeWindow(ob_display
, self
->desk
,
208 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
209 XResizeWindow(ob_display
, self
->shade
,
210 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
211 XResizeWindow(ob_display
, self
->tltresize
,
212 ob_rr_theme
->grip_width
, ob_rr_theme
->paddingy
+ 1);
213 XResizeWindow(ob_display
, self
->trtresize
,
214 ob_rr_theme
->grip_width
, ob_rr_theme
->paddingy
+ 1);
215 XResizeWindow(ob_display
, self
->tllresize
,
216 ob_rr_theme
->paddingx
+ 1, ob_rr_theme
->title_height
);
217 XResizeWindow(ob_display
, self
->trrresize
,
218 ob_rr_theme
->paddingx
+ 1, ob_rr_theme
->title_height
);
221 static void free_theme_statics(ObFrame
*self
)
225 void frame_free(ObFrame
*self
)
227 free_theme_statics(self
);
229 XDestroyWindow(ob_display
, self
->window
);
231 XFreeColormap(ob_display
, self
->colormap
);
236 void frame_show(ObFrame
*self
)
238 if (!self
->visible
) {
239 self
->visible
= TRUE
;
240 framerender_frame(self
);
241 /* Grab the server to make sure that the frame window is mapped before
242 the client gets its MapNotify, i.e. to make sure the client is
243 _visible_ when it gets MapNotify. */
245 XMapWindow(ob_display
, self
->client
->window
);
246 XMapWindow(ob_display
, self
->window
);
251 void frame_hide(ObFrame
*self
)
254 self
->visible
= FALSE
;
255 if (!frame_iconify_animating(self
))
256 XUnmapWindow(ob_display
, self
->window
);
257 /* we unmap the client itself so that we can get MapRequest
258 events, and because the ICCCM tells us to! */
259 XUnmapWindow(ob_display
, self
->client
->window
);
260 self
->client
->ignore_unmaps
+= 1;
264 void frame_adjust_theme(ObFrame
*self
)
266 free_theme_statics(self
);
267 set_theme_statics(self
);
270 void frame_adjust_shape(ObFrame
*self
)
276 if (!self
->client
->shaped
) {
277 /* clear the shape on the frame window */
278 XShapeCombineMask(ob_display
, self
->window
, ShapeBounding
,
283 /* make the frame's shape match the clients */
284 XShapeCombineShape(ob_display
, self
->window
, ShapeBounding
,
287 self
->client
->window
,
288 ShapeBounding
, ShapeSet
);
291 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
) {
294 xrect
[0].width
= self
->area
.width
;
295 xrect
[0].height
= self
->size
.top
;
299 if (self
->decorations
& OB_FRAME_DECOR_HANDLE
&&
300 ob_rr_theme
->handle_height
> 0)
303 xrect
[1].y
= FRAME_HANDLE_Y(self
);
304 xrect
[1].width
= self
->area
.width
;
305 xrect
[1].height
= ob_rr_theme
->handle_height
+
310 XShapeCombineRectangles(ob_display
, self
->window
,
311 ShapeBounding
, 0, 0, xrect
, num
,
312 ShapeUnion
, Unsorted
);
317 void frame_adjust_area(ObFrame
*self
, gboolean moved
,
318 gboolean resized
, gboolean fake
)
322 oldsize
= self
->size
;
325 /* do this before changing the frame's status like max_horz max_vert */
326 frame_adjust_cursors(self
);
328 self
->functions
= self
->client
->functions
;
329 self
->decorations
= self
->client
->decorations
;
330 self
->max_horz
= self
->client
->max_horz
;
331 self
->max_vert
= self
->client
->max_vert
;
332 self
->shaded
= self
->client
->shaded
;
334 if (self
->decorations
& OB_FRAME_DECOR_BORDER
||
335 (self
->client
->undecorated
&& config_theme_keepborder
))
336 self
->bwidth
= ob_rr_theme
->fbwidth
;
340 if (self
->decorations
& OB_FRAME_DECOR_BORDER
) {
341 self
->cbwidth_l
= self
->cbwidth_r
= ob_rr_theme
->cbwidthx
;
342 self
->cbwidth_t
= self
->cbwidth_b
= ob_rr_theme
->cbwidthy
;
344 self
->cbwidth_l
= self
->cbwidth_t
=
345 self
->cbwidth_r
= self
->cbwidth_b
= 0;
347 if (self
->max_horz
) {
348 self
->cbwidth_l
= self
->cbwidth_r
= 0;
349 self
->width
= self
->client
->area
.width
;
353 self
->width
= self
->client
->area
.width
+
354 self
->cbwidth_l
+ self
->cbwidth_r
;
356 /* some elements are sized based of the width, so don't let them have
358 self
->width
= MAX(self
->width
,
359 (ob_rr_theme
->grip_width
+ self
->bwidth
) * 2 + 1);
361 STRUT_SET(self
->size
,
362 self
->cbwidth_l
+ (!self
->max_horz
? self
->bwidth
: 0),
364 (!self
->max_horz
|| !self
->max_vert
||
365 !self
->client
->undecorated
? self
->bwidth
: 0),
366 self
->cbwidth_r
+ (!self
->max_horz
? self
->bwidth
: 0),
368 (!self
->max_horz
|| !self
->max_vert
? self
->bwidth
: 0));
370 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
)
371 self
->size
.top
+= ob_rr_theme
->title_height
+ self
->bwidth
;
372 if (self
->decorations
& OB_FRAME_DECOR_HANDLE
&&
373 ob_rr_theme
->handle_height
> 0)
375 self
->size
.bottom
+= ob_rr_theme
->handle_height
+ self
->bwidth
;
378 /* position/size and map/unmap all the windows */
381 gint innercornerheight
=
382 ob_rr_theme
->grip_width
- self
->size
.bottom
;
384 if (self
->cbwidth_l
) {
385 XMoveResizeWindow(ob_display
, self
->innerleft
,
386 self
->size
.left
- self
->cbwidth_l
,
388 self
->cbwidth_l
, self
->client
->area
.height
);
390 XMapWindow(ob_display
, self
->innerleft
);
392 XUnmapWindow(ob_display
, self
->innerleft
);
394 if (self
->cbwidth_l
&& innercornerheight
> 0) {
395 XMoveResizeWindow(ob_display
, self
->innerbll
,
397 self
->client
->area
.height
-
398 (ob_rr_theme
->grip_width
-
401 ob_rr_theme
->grip_width
- self
->size
.bottom
);
403 XMapWindow(ob_display
, self
->innerbll
);
405 XUnmapWindow(ob_display
, self
->innerbll
);
407 if (self
->cbwidth_r
) {
408 XMoveResizeWindow(ob_display
, self
->innerright
,
409 self
->size
.left
+ self
->client
->area
.width
,
411 self
->cbwidth_r
, self
->client
->area
.height
);
413 XMapWindow(ob_display
, self
->innerright
);
415 XUnmapWindow(ob_display
, self
->innerright
);
417 if (self
->cbwidth_r
&& innercornerheight
> 0) {
418 XMoveResizeWindow(ob_display
, self
->innerbrr
,
420 self
->client
->area
.height
-
421 (ob_rr_theme
->grip_width
-
424 ob_rr_theme
->grip_width
- self
->size
.bottom
);
426 XMapWindow(ob_display
, self
->innerbrr
);
428 XUnmapWindow(ob_display
, self
->innerbrr
);
430 if (self
->cbwidth_t
) {
431 XMoveResizeWindow(ob_display
, self
->innertop
,
432 self
->size
.left
- self
->cbwidth_l
,
433 self
->size
.top
- self
->cbwidth_t
,
434 self
->client
->area
.width
+
435 self
->cbwidth_l
+ self
->cbwidth_r
,
438 XMapWindow(ob_display
, self
->innertop
);
440 XUnmapWindow(ob_display
, self
->innertop
);
442 if (self
->cbwidth_b
) {
443 XMoveResizeWindow(ob_display
, self
->innerbottom
,
444 self
->size
.left
- self
->cbwidth_l
,
445 self
->size
.top
+ self
->client
->area
.height
,
446 self
->client
->area
.width
+
447 self
->cbwidth_l
+ self
->cbwidth_r
,
450 XMoveResizeWindow(ob_display
, self
->innerblb
,
452 ob_rr_theme
->grip_width
+ self
->bwidth
,
454 XMoveResizeWindow(ob_display
, self
->innerbrb
,
455 self
->client
->area
.width
+
456 self
->cbwidth_l
+ self
->cbwidth_r
-
457 (ob_rr_theme
->grip_width
+ self
->bwidth
),
459 ob_rr_theme
->grip_width
+ self
->bwidth
,
462 XMapWindow(ob_display
, self
->innerbottom
);
463 XMapWindow(ob_display
, self
->innerblb
);
464 XMapWindow(ob_display
, self
->innerbrb
);
466 XUnmapWindow(ob_display
, self
->innerbottom
);
467 XUnmapWindow(ob_display
, self
->innerblb
);
468 XUnmapWindow(ob_display
, self
->innerbrb
);
474 /* height of titleleft and titleright */
475 titlesides
= (!self
->max_horz
? ob_rr_theme
->grip_width
: 0);
477 XMoveResizeWindow(ob_display
, self
->titletop
,
478 ob_rr_theme
->grip_width
+ self
->bwidth
, 0,
479 /* width + bwidth*2 - bwidth*2 - grips*2 */
480 self
->width
- ob_rr_theme
->grip_width
* 2,
482 XMoveResizeWindow(ob_display
, self
->titletopleft
,
484 ob_rr_theme
->grip_width
+ self
->bwidth
,
486 XMoveResizeWindow(ob_display
, self
->titletopright
,
487 self
->client
->area
.width
+
488 self
->size
.left
+ self
->size
.right
-
489 ob_rr_theme
->grip_width
- self
->bwidth
,
491 ob_rr_theme
->grip_width
+ self
->bwidth
,
494 if (titlesides
> 0) {
495 XMoveResizeWindow(ob_display
, self
->titleleft
,
499 XMoveResizeWindow(ob_display
, self
->titleright
,
500 self
->client
->area
.width
+
501 self
->size
.left
+ self
->size
.right
-
507 XMapWindow(ob_display
, self
->titleleft
);
508 XMapWindow(ob_display
, self
->titleright
);
510 XUnmapWindow(ob_display
, self
->titleleft
);
511 XUnmapWindow(ob_display
, self
->titleright
);
514 XMapWindow(ob_display
, self
->titletop
);
515 XMapWindow(ob_display
, self
->titletopleft
);
516 XMapWindow(ob_display
, self
->titletopright
);
518 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
) {
519 XMoveResizeWindow(ob_display
, self
->titlebottom
,
520 (self
->max_horz
? 0 : self
->bwidth
),
521 ob_rr_theme
->title_height
+ self
->bwidth
,
525 XMapWindow(ob_display
, self
->titlebottom
);
527 XUnmapWindow(ob_display
, self
->titlebottom
);
529 XUnmapWindow(ob_display
, self
->titlebottom
);
531 XUnmapWindow(ob_display
, self
->titletop
);
532 XUnmapWindow(ob_display
, self
->titletopleft
);
533 XUnmapWindow(ob_display
, self
->titletopright
);
534 XUnmapWindow(ob_display
, self
->titleleft
);
535 XUnmapWindow(ob_display
, self
->titleright
);
538 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
) {
539 XMoveResizeWindow(ob_display
, self
->title
,
540 (self
->max_horz
? 0 : self
->bwidth
),
542 self
->width
, ob_rr_theme
->title_height
);
544 XMapWindow(ob_display
, self
->title
);
546 if (self
->decorations
& OB_FRAME_DECOR_GRIPS
) {
547 XMoveResizeWindow(ob_display
, self
->topresize
,
548 ob_rr_theme
->grip_width
,
550 self
->width
- ob_rr_theme
->grip_width
*2,
551 ob_rr_theme
->paddingy
+ 1);
553 XMoveWindow(ob_display
, self
->tltresize
, 0, 0);
554 XMoveWindow(ob_display
, self
->tllresize
, 0, 0);
555 XMoveWindow(ob_display
, self
->trtresize
,
556 self
->width
- ob_rr_theme
->grip_width
, 0);
557 XMoveWindow(ob_display
, self
->trrresize
,
558 self
->width
- ob_rr_theme
->paddingx
- 1, 0);
560 XMapWindow(ob_display
, self
->topresize
);
561 XMapWindow(ob_display
, self
->tltresize
);
562 XMapWindow(ob_display
, self
->tllresize
);
563 XMapWindow(ob_display
, self
->trtresize
);
564 XMapWindow(ob_display
, self
->trrresize
);
566 XUnmapWindow(ob_display
, self
->topresize
);
567 XUnmapWindow(ob_display
, self
->tltresize
);
568 XUnmapWindow(ob_display
, self
->tllresize
);
569 XUnmapWindow(ob_display
, self
->trtresize
);
570 XUnmapWindow(ob_display
, self
->trrresize
);
573 XUnmapWindow(ob_display
, self
->title
);
576 if ((self
->decorations
& OB_FRAME_DECOR_TITLEBAR
))
577 /* layout the title bar elements */
581 gint sidebwidth
= self
->max_horz
? 0 : self
->bwidth
;
583 if (self
->bwidth
&& self
->size
.bottom
) {
584 XMoveResizeWindow(ob_display
, self
->handlebottom
,
585 ob_rr_theme
->grip_width
+
586 self
->bwidth
+ sidebwidth
,
587 self
->size
.top
+ self
->client
->area
.height
+
588 self
->size
.bottom
- self
->bwidth
,
589 self
->width
- (ob_rr_theme
->grip_width
+
594 XMoveResizeWindow(ob_display
, self
->lgripleft
,
597 self
->client
->area
.height
+
600 ob_rr_theme
->grip_width
:
601 self
->size
.bottom
- self
->cbwidth_b
),
604 ob_rr_theme
->grip_width
:
605 self
->size
.bottom
- self
->cbwidth_b
));
606 XMoveResizeWindow(ob_display
, self
->rgripright
,
608 self
->client
->area
.width
+
609 self
->size
.right
- self
->bwidth
,
611 self
->client
->area
.height
+
614 ob_rr_theme
->grip_width
:
615 self
->size
.bottom
- self
->cbwidth_b
),
618 ob_rr_theme
->grip_width
:
619 self
->size
.bottom
- self
->cbwidth_b
));
621 XMapWindow(ob_display
, self
->lgripleft
);
622 XMapWindow(ob_display
, self
->rgripright
);
624 XUnmapWindow(ob_display
, self
->lgripleft
);
625 XUnmapWindow(ob_display
, self
->rgripright
);
628 XMoveResizeWindow(ob_display
, self
->lgripbottom
,
630 self
->size
.top
+ self
->client
->area
.height
+
631 self
->size
.bottom
- self
->bwidth
,
632 ob_rr_theme
->grip_width
+ self
->bwidth
,
634 XMoveResizeWindow(ob_display
, self
->rgripbottom
,
635 self
->size
.left
+ self
->client
->area
.width
+
636 self
->size
.right
- self
->bwidth
- sidebwidth
-
637 ob_rr_theme
->grip_width
,
638 self
->size
.top
+ self
->client
->area
.height
+
639 self
->size
.bottom
- self
->bwidth
,
640 ob_rr_theme
->grip_width
+ self
->bwidth
,
643 XMapWindow(ob_display
, self
->handlebottom
);
644 XMapWindow(ob_display
, self
->lgripbottom
);
645 XMapWindow(ob_display
, self
->rgripbottom
);
647 if (self
->decorations
& OB_FRAME_DECOR_HANDLE
&&
648 ob_rr_theme
->handle_height
> 0)
650 XMoveResizeWindow(ob_display
, self
->handletop
,
651 ob_rr_theme
->grip_width
+
652 self
->bwidth
+ sidebwidth
,
653 FRAME_HANDLE_Y(self
),
654 self
->width
- (ob_rr_theme
->grip_width
+
657 XMapWindow(ob_display
, self
->handletop
);
659 if (self
->decorations
& OB_FRAME_DECOR_GRIPS
) {
660 XMoveResizeWindow(ob_display
, self
->handleleft
,
661 ob_rr_theme
->grip_width
,
664 ob_rr_theme
->handle_height
);
665 XMoveResizeWindow(ob_display
, self
->handleright
,
667 ob_rr_theme
->grip_width
-
671 ob_rr_theme
->handle_height
);
673 XMoveResizeWindow(ob_display
, self
->lgriptop
,
675 FRAME_HANDLE_Y(self
),
676 ob_rr_theme
->grip_width
+
679 XMoveResizeWindow(ob_display
, self
->rgriptop
,
681 self
->client
->area
.width
+
682 self
->size
.right
- self
->bwidth
-
683 sidebwidth
- ob_rr_theme
->grip_width
,
684 FRAME_HANDLE_Y(self
),
685 ob_rr_theme
->grip_width
+
689 XMapWindow(ob_display
, self
->handleleft
);
690 XMapWindow(ob_display
, self
->handleright
);
691 XMapWindow(ob_display
, self
->lgriptop
);
692 XMapWindow(ob_display
, self
->rgriptop
);
694 XUnmapWindow(ob_display
, self
->handleleft
);
695 XUnmapWindow(ob_display
, self
->handleright
);
696 XUnmapWindow(ob_display
, self
->lgriptop
);
697 XUnmapWindow(ob_display
, self
->rgriptop
);
700 XUnmapWindow(ob_display
, self
->handleleft
);
701 XUnmapWindow(ob_display
, self
->handleright
);
702 XUnmapWindow(ob_display
, self
->lgriptop
);
703 XUnmapWindow(ob_display
, self
->rgriptop
);
705 XUnmapWindow(ob_display
, self
->handletop
);
708 XUnmapWindow(ob_display
, self
->handleleft
);
709 XUnmapWindow(ob_display
, self
->handleright
);
710 XUnmapWindow(ob_display
, self
->lgriptop
);
711 XUnmapWindow(ob_display
, self
->rgriptop
);
713 XUnmapWindow(ob_display
, self
->handletop
);
715 XUnmapWindow(ob_display
, self
->handlebottom
);
716 XUnmapWindow(ob_display
, self
->lgripleft
);
717 XUnmapWindow(ob_display
, self
->rgripright
);
718 XUnmapWindow(ob_display
, self
->lgripbottom
);
719 XUnmapWindow(ob_display
, self
->rgripbottom
);
722 if (self
->decorations
& OB_FRAME_DECOR_HANDLE
&&
723 ob_rr_theme
->handle_height
> 0)
725 XMoveResizeWindow(ob_display
, self
->handle
,
727 FRAME_HANDLE_Y(self
) + self
->bwidth
,
728 self
->width
, ob_rr_theme
->handle_height
);
729 XMapWindow(ob_display
, self
->handle
);
731 if (self
->decorations
& OB_FRAME_DECOR_GRIPS
) {
732 XMoveResizeWindow(ob_display
, self
->lgrip
,
734 ob_rr_theme
->grip_width
,
735 ob_rr_theme
->handle_height
);
736 XMoveResizeWindow(ob_display
, self
->rgrip
,
737 self
->width
- ob_rr_theme
->grip_width
,
739 ob_rr_theme
->grip_width
,
740 ob_rr_theme
->handle_height
);
742 XMapWindow(ob_display
, self
->lgrip
);
743 XMapWindow(ob_display
, self
->rgrip
);
745 XUnmapWindow(ob_display
, self
->lgrip
);
746 XUnmapWindow(ob_display
, self
->rgrip
);
749 XUnmapWindow(ob_display
, self
->lgrip
);
750 XUnmapWindow(ob_display
, self
->rgrip
);
752 XUnmapWindow(ob_display
, self
->handle
);
755 if (self
->bwidth
&& !self
->max_horz
&&
756 (self
->client
->area
.height
+ self
->size
.top
+
757 self
->size
.bottom
) > ob_rr_theme
->grip_width
* 2)
759 XMoveResizeWindow(ob_display
, self
->left
,
761 self
->bwidth
+ ob_rr_theme
->grip_width
,
763 self
->client
->area
.height
+
764 self
->size
.top
+ self
->size
.bottom
-
765 ob_rr_theme
->grip_width
* 2);
767 XMapWindow(ob_display
, self
->left
);
769 XUnmapWindow(ob_display
, self
->left
);
771 if (self
->bwidth
&& !self
->max_horz
&&
772 (self
->client
->area
.height
+ self
->size
.top
+
773 self
->size
.bottom
) > ob_rr_theme
->grip_width
* 2)
775 XMoveResizeWindow(ob_display
, self
->right
,
776 self
->client
->area
.width
+ self
->cbwidth_l
+
777 self
->cbwidth_r
+ self
->bwidth
,
778 self
->bwidth
+ ob_rr_theme
->grip_width
,
780 self
->client
->area
.height
+
781 self
->size
.top
+ self
->size
.bottom
-
782 ob_rr_theme
->grip_width
* 2);
784 XMapWindow(ob_display
, self
->right
);
786 XUnmapWindow(ob_display
, self
->right
);
788 XMoveResizeWindow(ob_display
, self
->backback
,
789 self
->size
.left
, self
->size
.top
,
790 self
->client
->area
.width
,
791 self
->client
->area
.height
);
795 /* shading can change without being moved or resized */
796 RECT_SET_SIZE(self
->area
,
797 self
->client
->area
.width
+
798 self
->size
.left
+ self
->size
.right
,
799 (self
->client
->shaded
?
800 ob_rr_theme
->title_height
+ self
->bwidth
* 2:
801 self
->client
->area
.height
+
802 self
->size
.top
+ self
->size
.bottom
));
804 if ((moved
|| resized
) && !fake
) {
805 /* find the new coordinates, done after setting the frame.size, for
806 frame_client_gravity. */
807 self
->area
.x
= self
->client
->area
.x
;
808 self
->area
.y
= self
->client
->area
.y
;
809 frame_client_gravity(self
, &self
->area
.x
, &self
->area
.y
);
813 if (!frame_iconify_animating(self
))
814 /* move and resize the top level frame.
815 shading can change without being moved or resized.
817 but don't do this during an iconify animation. it will be
818 reflected afterwards.
820 XMoveResizeWindow(ob_display
, self
->window
,
826 /* when the client has StaticGravity, it likes to move around.
827 also this correctly positions the client when it maps.
828 this also needs to be run when the frame's decorations sizes change!
830 XMoveWindow(ob_display
, self
->client
->window
,
831 self
->size
.left
, self
->size
.top
);
834 self
->need_render
= TRUE
;
835 framerender_frame(self
);
836 frame_adjust_shape(self
);
839 if (!STRUT_EQUAL(self
->size
, oldsize
)) {
841 vals
[0] = self
->size
.left
;
842 vals
[1] = self
->size
.right
;
843 vals
[2] = self
->size
.top
;
844 vals
[3] = self
->size
.bottom
;
845 PROP_SETA32(self
->client
->window
, net_frame_extents
,
847 PROP_SETA32(self
->client
->window
, kde_net_wm_frame_strut
,
851 /* if this occurs while we are focus cycling, the indicator needs to
853 if (focus_cycle_target
== self
->client
)
854 focus_cycle_draw_indicator(self
->client
);
856 if (resized
&& (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
))
857 XResizeWindow(ob_display
, self
->label
, self
->label_width
,
858 ob_rr_theme
->label_height
);
862 static void frame_adjust_cursors(ObFrame
*self
)
864 if ((self
->functions
& OB_CLIENT_FUNC_RESIZE
) !=
865 (self
->client
->functions
& OB_CLIENT_FUNC_RESIZE
) ||
866 self
->max_horz
!= self
->client
->max_horz
||
867 self
->max_vert
!= self
->client
->max_vert
||
868 self
->shaded
!= self
->client
->shaded
)
870 gboolean r
= (self
->client
->functions
& OB_CLIENT_FUNC_RESIZE
) &&
871 !(self
->client
->max_horz
&& self
->client
->max_vert
);
872 gboolean topbot
= !self
->client
->max_vert
;
873 gboolean sh
= self
->client
->shaded
;
874 XSetWindowAttributes a
;
876 /* these ones turn off when max vert, and some when shaded */
877 a
.cursor
= ob_cursor(r
&& topbot
&& !sh
?
878 OB_CURSOR_NORTH
: OB_CURSOR_NONE
);
879 XChangeWindowAttributes(ob_display
, self
->topresize
, CWCursor
, &a
);
880 XChangeWindowAttributes(ob_display
, self
->titletop
, CWCursor
, &a
);
881 a
.cursor
= ob_cursor(r
&& topbot
? OB_CURSOR_SOUTH
: OB_CURSOR_NONE
);
882 XChangeWindowAttributes(ob_display
, self
->handle
, CWCursor
, &a
);
883 XChangeWindowAttributes(ob_display
, self
->handletop
, CWCursor
, &a
);
884 XChangeWindowAttributes(ob_display
, self
->handlebottom
, CWCursor
, &a
);
885 XChangeWindowAttributes(ob_display
, self
->innerbottom
, CWCursor
, &a
);
887 /* these ones change when shaded */
888 a
.cursor
= ob_cursor(r
? (sh
? OB_CURSOR_WEST
: OB_CURSOR_NORTHWEST
) :
890 XChangeWindowAttributes(ob_display
, self
->titleleft
, CWCursor
, &a
);
891 XChangeWindowAttributes(ob_display
, self
->tltresize
, CWCursor
, &a
);
892 XChangeWindowAttributes(ob_display
, self
->tllresize
, CWCursor
, &a
);
893 XChangeWindowAttributes(ob_display
, self
->titletopleft
, CWCursor
, &a
);
894 a
.cursor
= ob_cursor(r
? (sh
? OB_CURSOR_EAST
: OB_CURSOR_NORTHEAST
) :
896 XChangeWindowAttributes(ob_display
, self
->titleright
, CWCursor
, &a
);
897 XChangeWindowAttributes(ob_display
, self
->trtresize
, CWCursor
, &a
);
898 XChangeWindowAttributes(ob_display
, self
->trrresize
, CWCursor
, &a
);
899 XChangeWindowAttributes(ob_display
, self
->titletopright
, CWCursor
, &a
);
901 /* these ones are pretty static */
902 a
.cursor
= ob_cursor(r
? OB_CURSOR_WEST
: OB_CURSOR_NONE
);
903 XChangeWindowAttributes(ob_display
, self
->left
, CWCursor
, &a
);
904 XChangeWindowAttributes(ob_display
, self
->innerleft
, CWCursor
, &a
);
905 a
.cursor
= ob_cursor(r
? OB_CURSOR_EAST
: OB_CURSOR_NONE
);
906 XChangeWindowAttributes(ob_display
, self
->right
, CWCursor
, &a
);
907 XChangeWindowAttributes(ob_display
, self
->innerright
, CWCursor
, &a
);
908 a
.cursor
= ob_cursor(r
? OB_CURSOR_SOUTHWEST
: OB_CURSOR_NONE
);
909 XChangeWindowAttributes(ob_display
, self
->lgrip
, CWCursor
, &a
);
910 XChangeWindowAttributes(ob_display
, self
->handleleft
, CWCursor
, &a
);
911 XChangeWindowAttributes(ob_display
, self
->lgripleft
, CWCursor
, &a
);
912 XChangeWindowAttributes(ob_display
, self
->lgriptop
, CWCursor
, &a
);
913 XChangeWindowAttributes(ob_display
, self
->lgripbottom
, CWCursor
, &a
);
914 XChangeWindowAttributes(ob_display
, self
->innerbll
, CWCursor
, &a
);
915 XChangeWindowAttributes(ob_display
, self
->innerblb
, CWCursor
, &a
);
916 a
.cursor
= ob_cursor(r
? OB_CURSOR_SOUTHEAST
: OB_CURSOR_NONE
);
917 XChangeWindowAttributes(ob_display
, self
->rgrip
, CWCursor
, &a
);
918 XChangeWindowAttributes(ob_display
, self
->handleright
, CWCursor
, &a
);
919 XChangeWindowAttributes(ob_display
, self
->rgripright
, CWCursor
, &a
);
920 XChangeWindowAttributes(ob_display
, self
->rgriptop
, CWCursor
, &a
);
921 XChangeWindowAttributes(ob_display
, self
->rgripbottom
, CWCursor
, &a
);
922 XChangeWindowAttributes(ob_display
, self
->innerbrr
, CWCursor
, &a
);
923 XChangeWindowAttributes(ob_display
, self
->innerbrb
, CWCursor
, &a
);
927 void frame_adjust_client_area(ObFrame
*self
)
929 /* adjust the window which is there to prevent flashing on unmap */
930 XMoveResizeWindow(ob_display
, self
->backfront
, 0, 0,
931 self
->client
->area
.width
,
932 self
->client
->area
.height
);
935 void frame_adjust_state(ObFrame
*self
)
937 self
->need_render
= TRUE
;
938 framerender_frame(self
);
941 void frame_adjust_focus(ObFrame
*self
, gboolean hilite
)
943 self
->focused
= hilite
;
944 self
->need_render
= TRUE
;
945 framerender_frame(self
);
949 void frame_adjust_title(ObFrame
*self
)
951 self
->need_render
= TRUE
;
952 framerender_frame(self
);
955 void frame_adjust_icon(ObFrame
*self
)
957 self
->need_render
= TRUE
;
958 framerender_frame(self
);
961 void frame_grab_client(ObFrame
*self
)
963 /* DO NOT map the client window here. we used to do that, but it is bogus.
964 we need to set up the client's dimensions and everything before we
965 send a mapnotify or we create race conditions.
968 /* reparent the client to the frame */
969 XReparentWindow(ob_display
, self
->client
->window
, self
->window
, 0, 0);
972 When reparenting the client window, it is usually not mapped yet, since
973 this occurs from a MapRequest. However, in the case where Openbox is
974 starting up, the window is already mapped, so we'll see an unmap event
977 if (ob_state() == OB_STATE_STARTING
)
978 ++self
->client
->ignore_unmaps
;
980 /* select the event mask on the client's parent (to receive config/map
981 req's) the ButtonPress is to catch clicks on the client border */
982 XSelectInput(ob_display
, self
->window
, FRAME_EVENTMASK
);
984 /* set all the windows for the frame in the window_map */
985 g_hash_table_insert(window_map
, &self
->window
, self
->client
);
986 g_hash_table_insert(window_map
, &self
->backback
, self
->client
);
987 g_hash_table_insert(window_map
, &self
->backfront
, self
->client
);
988 g_hash_table_insert(window_map
, &self
->innerleft
, self
->client
);
989 g_hash_table_insert(window_map
, &self
->innertop
, self
->client
);
990 g_hash_table_insert(window_map
, &self
->innerright
, self
->client
);
991 g_hash_table_insert(window_map
, &self
->innerbottom
, self
->client
);
992 g_hash_table_insert(window_map
, &self
->innerblb
, self
->client
);
993 g_hash_table_insert(window_map
, &self
->innerbll
, self
->client
);
994 g_hash_table_insert(window_map
, &self
->innerbrb
, self
->client
);
995 g_hash_table_insert(window_map
, &self
->innerbrr
, self
->client
);
996 g_hash_table_insert(window_map
, &self
->title
, self
->client
);
997 g_hash_table_insert(window_map
, &self
->label
, self
->client
);
998 g_hash_table_insert(window_map
, &self
->max
, self
->client
);
999 g_hash_table_insert(window_map
, &self
->close
, self
->client
);
1000 g_hash_table_insert(window_map
, &self
->desk
, self
->client
);
1001 g_hash_table_insert(window_map
, &self
->shade
, self
->client
);
1002 g_hash_table_insert(window_map
, &self
->icon
, self
->client
);
1003 g_hash_table_insert(window_map
, &self
->iconify
, self
->client
);
1004 g_hash_table_insert(window_map
, &self
->handle
, self
->client
);
1005 g_hash_table_insert(window_map
, &self
->lgrip
, self
->client
);
1006 g_hash_table_insert(window_map
, &self
->rgrip
, self
->client
);
1007 g_hash_table_insert(window_map
, &self
->topresize
, self
->client
);
1008 g_hash_table_insert(window_map
, &self
->tltresize
, self
->client
);
1009 g_hash_table_insert(window_map
, &self
->tllresize
, self
->client
);
1010 g_hash_table_insert(window_map
, &self
->trtresize
, self
->client
);
1011 g_hash_table_insert(window_map
, &self
->trrresize
, self
->client
);
1012 g_hash_table_insert(window_map
, &self
->left
, self
->client
);
1013 g_hash_table_insert(window_map
, &self
->right
, self
->client
);
1014 g_hash_table_insert(window_map
, &self
->titleleft
, self
->client
);
1015 g_hash_table_insert(window_map
, &self
->titletop
, self
->client
);
1016 g_hash_table_insert(window_map
, &self
->titletopleft
, self
->client
);
1017 g_hash_table_insert(window_map
, &self
->titletopright
, self
->client
);
1018 g_hash_table_insert(window_map
, &self
->titleright
, self
->client
);
1019 g_hash_table_insert(window_map
, &self
->titlebottom
, self
->client
);
1020 g_hash_table_insert(window_map
, &self
->handleleft
, self
->client
);
1021 g_hash_table_insert(window_map
, &self
->handletop
, self
->client
);
1022 g_hash_table_insert(window_map
, &self
->handleright
, self
->client
);
1023 g_hash_table_insert(window_map
, &self
->handlebottom
, self
->client
);
1024 g_hash_table_insert(window_map
, &self
->lgripleft
, self
->client
);
1025 g_hash_table_insert(window_map
, &self
->lgriptop
, self
->client
);
1026 g_hash_table_insert(window_map
, &self
->lgripbottom
, self
->client
);
1027 g_hash_table_insert(window_map
, &self
->rgripright
, self
->client
);
1028 g_hash_table_insert(window_map
, &self
->rgriptop
, self
->client
);
1029 g_hash_table_insert(window_map
, &self
->rgripbottom
, self
->client
);
1032 void frame_release_client(ObFrame
*self
)
1035 gboolean reparent
= TRUE
;
1037 /* if there was any animation going on, kill it */
1038 ob_main_loop_timeout_remove_data(ob_main_loop
, frame_animate_iconify
,
1041 /* check if the app has already reparented its window away */
1042 while (XCheckTypedWindowEvent(ob_display
, self
->client
->window
,
1043 ReparentNotify
, &ev
))
1045 /* This check makes sure we don't catch our own reparent action to
1046 our frame window. This doesn't count as the app reparenting itself
1049 Reparent events that are generated by us are just discarded here.
1050 They are of no consequence to us anyhow.
1052 if (ev
.xreparent
.parent
!= self
->window
) {
1054 XPutBackEvent(ob_display
, &ev
);
1060 /* according to the ICCCM - if the client doesn't reparent itself,
1061 then we will reparent the window to root for them */
1062 XReparentWindow(ob_display
, self
->client
->window
,
1063 RootWindow(ob_display
, ob_screen
),
1064 self
->client
->area
.x
,
1065 self
->client
->area
.y
);
1068 /* remove all the windows for the frame from the window_map */
1069 g_hash_table_remove(window_map
, &self
->window
);
1070 g_hash_table_remove(window_map
, &self
->backback
);
1071 g_hash_table_remove(window_map
, &self
->backfront
);
1072 g_hash_table_remove(window_map
, &self
->innerleft
);
1073 g_hash_table_remove(window_map
, &self
->innertop
);
1074 g_hash_table_remove(window_map
, &self
->innerright
);
1075 g_hash_table_remove(window_map
, &self
->innerbottom
);
1076 g_hash_table_remove(window_map
, &self
->innerblb
);
1077 g_hash_table_remove(window_map
, &self
->innerbll
);
1078 g_hash_table_remove(window_map
, &self
->innerbrb
);
1079 g_hash_table_remove(window_map
, &self
->innerbrr
);
1080 g_hash_table_remove(window_map
, &self
->title
);
1081 g_hash_table_remove(window_map
, &self
->label
);
1082 g_hash_table_remove(window_map
, &self
->max
);
1083 g_hash_table_remove(window_map
, &self
->close
);
1084 g_hash_table_remove(window_map
, &self
->desk
);
1085 g_hash_table_remove(window_map
, &self
->shade
);
1086 g_hash_table_remove(window_map
, &self
->icon
);
1087 g_hash_table_remove(window_map
, &self
->iconify
);
1088 g_hash_table_remove(window_map
, &self
->handle
);
1089 g_hash_table_remove(window_map
, &self
->lgrip
);
1090 g_hash_table_remove(window_map
, &self
->rgrip
);
1091 g_hash_table_remove(window_map
, &self
->topresize
);
1092 g_hash_table_remove(window_map
, &self
->tltresize
);
1093 g_hash_table_remove(window_map
, &self
->tllresize
);
1094 g_hash_table_remove(window_map
, &self
->trtresize
);
1095 g_hash_table_remove(window_map
, &self
->trrresize
);
1096 g_hash_table_remove(window_map
, &self
->left
);
1097 g_hash_table_remove(window_map
, &self
->right
);
1098 g_hash_table_remove(window_map
, &self
->titleleft
);
1099 g_hash_table_remove(window_map
, &self
->titletop
);
1100 g_hash_table_remove(window_map
, &self
->titletopleft
);
1101 g_hash_table_remove(window_map
, &self
->titletopright
);
1102 g_hash_table_remove(window_map
, &self
->titleright
);
1103 g_hash_table_remove(window_map
, &self
->titlebottom
);
1104 g_hash_table_remove(window_map
, &self
->handleleft
);
1105 g_hash_table_remove(window_map
, &self
->handletop
);
1106 g_hash_table_remove(window_map
, &self
->handleright
);
1107 g_hash_table_remove(window_map
, &self
->handlebottom
);
1108 g_hash_table_remove(window_map
, &self
->lgripleft
);
1109 g_hash_table_remove(window_map
, &self
->lgriptop
);
1110 g_hash_table_remove(window_map
, &self
->lgripbottom
);
1111 g_hash_table_remove(window_map
, &self
->rgripright
);
1112 g_hash_table_remove(window_map
, &self
->rgriptop
);
1113 g_hash_table_remove(window_map
, &self
->rgripbottom
);
1115 ob_main_loop_timeout_remove_data(ob_main_loop
, flash_timeout
, self
, TRUE
);
1118 /* is there anything present between us and the label? */
1119 static gboolean
is_button_present(ObFrame
*self
, const gchar
*lc
, gint dir
) {
1120 for (; *lc
!= '\0' && lc
>= config_title_layout
; lc
+= dir
) {
1121 if (*lc
== ' ') continue; /* it was invalid */
1122 if (*lc
== 'N' && self
->decorations
& OB_FRAME_DECOR_ICON
)
1124 if (*lc
== 'D' && self
->decorations
& OB_FRAME_DECOR_ALLDESKTOPS
)
1126 if (*lc
== 'S' && self
->decorations
& OB_FRAME_DECOR_SHADE
)
1128 if (*lc
== 'I' && self
->decorations
& OB_FRAME_DECOR_ICONIFY
)
1130 if (*lc
== 'M' && self
->decorations
& OB_FRAME_DECOR_MAXIMIZE
)
1132 if (*lc
== 'C' && self
->decorations
& OB_FRAME_DECOR_CLOSE
)
1134 if (*lc
== 'L') return FALSE
;
1139 static void place_button(ObFrame
*self
, const char *lc
, gint bwidth
,
1141 gint
*x
, gint
*button_on
, gint
*button_x
)
1143 if (!(*button_on
= is_button_present(self
, lc
, i
)))
1146 self
->label_width
-= bwidth
;
1151 if (self
->label_x
<= left
|| *x
> self
->label_x
) {
1154 /* the button would have been drawn on top of another button */
1156 self
->label_width
+= bwidth
;
1161 static void layout_title(ObFrame
*self
)
1166 const gint bwidth
= ob_rr_theme
->button_size
+ ob_rr_theme
->paddingx
+ 1;
1167 /* position of the leftmost button */
1168 const gint left
= ob_rr_theme
->paddingx
+ 1;
1169 /* position of the rightmost button */
1170 const gint right
= self
->width
;
1172 /* turn them all off */
1173 self
->icon_on
= self
->desk_on
= self
->shade_on
= self
->iconify_on
=
1174 self
->max_on
= self
->close_on
= self
->label_on
= FALSE
;
1175 self
->label_width
= self
->width
- (ob_rr_theme
->paddingx
+ 1) * 2;
1176 self
->leftmost
= self
->rightmost
= OB_FRAME_CONTEXT_NONE
;
1178 /* figure out what's being shown, find each element's position, and the
1181 do the ones before the label, then after the label,
1182 i will be +1 the first time through when working to the left,
1183 and -1 the second time through when working to the right */
1184 for (i
= 1; i
>= -1; i
-=2) {
1186 ObFrameContext
*firstcon
;
1190 lc
= config_title_layout
;
1191 firstcon
= &self
->leftmost
;
1194 lc
= config_title_layout
+ strlen(config_title_layout
)-1;
1195 firstcon
= &self
->rightmost
;
1198 /* stop at the end of the string (or the label, which calls break) */
1199 for (; *lc
!= '\0' && lc
>= config_title_layout
; lc
+=i
) {
1202 self
->label_on
= TRUE
;
1205 break; /* break the for loop, do other side of label */
1206 } else if (*lc
== 'N') {
1207 if (firstcon
) *firstcon
= OB_FRAME_CONTEXT_ICON
;
1208 /* icon is bigger than buttons */
1209 place_button(self
, lc
, bwidth
+ 2, left
, i
, &x
, &self
->icon_on
, &self
->icon_x
);
1210 } else if (*lc
== 'D') {
1211 if (firstcon
) *firstcon
= OB_FRAME_CONTEXT_ALLDESKTOPS
;
1212 place_button(self
, lc
, bwidth
, left
, i
, &x
, &self
->desk_on
, &self
->desk_x
);
1213 } else if (*lc
== 'S') {
1214 if (firstcon
) *firstcon
= OB_FRAME_CONTEXT_SHADE
;
1215 place_button(self
, lc
, bwidth
, left
, i
, &x
, &self
->shade_on
, &self
->shade_x
);
1216 } else if (*lc
== 'I') {
1217 if (firstcon
) *firstcon
= OB_FRAME_CONTEXT_ICONIFY
;
1218 place_button(self
, lc
, bwidth
, left
, i
, &x
, &self
->iconify_on
, &self
->iconify_x
);
1219 } else if (*lc
== 'M') {
1220 if (firstcon
) *firstcon
= OB_FRAME_CONTEXT_MAXIMIZE
;
1221 place_button(self
, lc
, bwidth
, left
, i
, &x
, &self
->max_on
, &self
->max_x
);
1222 } else if (*lc
== 'C') {
1223 if (firstcon
) *firstcon
= OB_FRAME_CONTEXT_CLOSE
;
1224 place_button(self
, lc
, bwidth
, left
, i
, &x
, &self
->close_on
, &self
->close_x
);
1226 continue; /* don't set firstcon */
1231 /* position and map the elements */
1232 if (self
->icon_on
) {
1233 XMapWindow(ob_display
, self
->icon
);
1234 XMoveWindow(ob_display
, self
->icon
, self
->icon_x
,
1235 ob_rr_theme
->paddingy
);
1237 XUnmapWindow(ob_display
, self
->icon
);
1239 if (self
->desk_on
) {
1240 XMapWindow(ob_display
, self
->desk
);
1241 XMoveWindow(ob_display
, self
->desk
, self
->desk_x
,
1242 ob_rr_theme
->paddingy
+ 1);
1244 XUnmapWindow(ob_display
, self
->desk
);
1246 if (self
->shade_on
) {
1247 XMapWindow(ob_display
, self
->shade
);
1248 XMoveWindow(ob_display
, self
->shade
, self
->shade_x
,
1249 ob_rr_theme
->paddingy
+ 1);
1251 XUnmapWindow(ob_display
, self
->shade
);
1253 if (self
->iconify_on
) {
1254 XMapWindow(ob_display
, self
->iconify
);
1255 XMoveWindow(ob_display
, self
->iconify
, self
->iconify_x
,
1256 ob_rr_theme
->paddingy
+ 1);
1258 XUnmapWindow(ob_display
, self
->iconify
);
1261 XMapWindow(ob_display
, self
->max
);
1262 XMoveWindow(ob_display
, self
->max
, self
->max_x
,
1263 ob_rr_theme
->paddingy
+ 1);
1265 XUnmapWindow(ob_display
, self
->max
);
1267 if (self
->close_on
) {
1268 XMapWindow(ob_display
, self
->close
);
1269 XMoveWindow(ob_display
, self
->close
, self
->close_x
,
1270 ob_rr_theme
->paddingy
+ 1);
1272 XUnmapWindow(ob_display
, self
->close
);
1274 if (self
->label_on
&& self
->label_width
> 0) {
1275 XMapWindow(ob_display
, self
->label
);
1276 XMoveWindow(ob_display
, self
->label
, self
->label_x
,
1277 ob_rr_theme
->paddingy
);
1279 XUnmapWindow(ob_display
, self
->label
);
1282 ObFrameContext
frame_context_from_string(const gchar
*name
)
1284 if (!g_ascii_strcasecmp("Desktop", name
))
1285 return OB_FRAME_CONTEXT_DESKTOP
;
1286 else if (!g_ascii_strcasecmp("Root", name
))
1287 return OB_FRAME_CONTEXT_ROOT
;
1288 else if (!g_ascii_strcasecmp("Client", name
))
1289 return OB_FRAME_CONTEXT_CLIENT
;
1290 else if (!g_ascii_strcasecmp("Titlebar", name
))
1291 return OB_FRAME_CONTEXT_TITLEBAR
;
1292 else if (!g_ascii_strcasecmp("Frame", name
))
1293 return OB_FRAME_CONTEXT_FRAME
;
1294 else if (!g_ascii_strcasecmp("TLCorner", name
))
1295 return OB_FRAME_CONTEXT_TLCORNER
;
1296 else if (!g_ascii_strcasecmp("TRCorner", name
))
1297 return OB_FRAME_CONTEXT_TRCORNER
;
1298 else if (!g_ascii_strcasecmp("BLCorner", name
))
1299 return OB_FRAME_CONTEXT_BLCORNER
;
1300 else if (!g_ascii_strcasecmp("BRCorner", name
))
1301 return OB_FRAME_CONTEXT_BRCORNER
;
1302 else if (!g_ascii_strcasecmp("Top", name
))
1303 return OB_FRAME_CONTEXT_TOP
;
1304 else if (!g_ascii_strcasecmp("Bottom", name
))
1305 return OB_FRAME_CONTEXT_BOTTOM
;
1306 else if (!g_ascii_strcasecmp("Left", name
))
1307 return OB_FRAME_CONTEXT_LEFT
;
1308 else if (!g_ascii_strcasecmp("Right", name
))
1309 return OB_FRAME_CONTEXT_RIGHT
;
1310 else if (!g_ascii_strcasecmp("Maximize", name
))
1311 return OB_FRAME_CONTEXT_MAXIMIZE
;
1312 else if (!g_ascii_strcasecmp("AllDesktops", name
))
1313 return OB_FRAME_CONTEXT_ALLDESKTOPS
;
1314 else if (!g_ascii_strcasecmp("Shade", name
))
1315 return OB_FRAME_CONTEXT_SHADE
;
1316 else if (!g_ascii_strcasecmp("Iconify", name
))
1317 return OB_FRAME_CONTEXT_ICONIFY
;
1318 else if (!g_ascii_strcasecmp("Icon", name
))
1319 return OB_FRAME_CONTEXT_ICON
;
1320 else if (!g_ascii_strcasecmp("Close", name
))
1321 return OB_FRAME_CONTEXT_CLOSE
;
1322 else if (!g_ascii_strcasecmp("MoveResize", name
))
1323 return OB_FRAME_CONTEXT_MOVE_RESIZE
;
1324 return OB_FRAME_CONTEXT_NONE
;
1327 ObFrameContext
frame_context(ObClient
*client
, Window win
, gint x
, gint y
)
1331 if (moveresize_in_progress
)
1332 return OB_FRAME_CONTEXT_MOVE_RESIZE
;
1334 if (win
== RootWindow(ob_display
, ob_screen
))
1335 return OB_FRAME_CONTEXT_ROOT
;
1336 if (client
== NULL
) return OB_FRAME_CONTEXT_NONE
;
1337 if (win
== client
->window
) {
1338 /* conceptually, this is the desktop, as far as users are
1340 if (client
->type
== OB_CLIENT_TYPE_DESKTOP
)
1341 return OB_FRAME_CONTEXT_DESKTOP
;
1342 return OB_FRAME_CONTEXT_CLIENT
;
1345 self
= client
->frame
;
1347 /* when the user clicks in the corners of the titlebar and the client
1348 is fully maximized, then treat it like they clicked in the
1349 button that is there */
1350 if (self
->max_horz
&& self
->max_vert
&&
1351 (win
== self
->title
|| win
== self
->titletop
||
1352 win
== self
->titleleft
|| win
== self
->titletopleft
||
1353 win
== self
->titleright
|| win
== self
->titletopright
))
1355 /* get the mouse coords in reference to the whole frame */
1359 /* these windows are down a border width from the top of the frame */
1360 if (win
== self
->title
||
1361 win
== self
->titleleft
|| win
== self
->titleright
)
1364 /* title is a border width in from the edge */
1365 if (win
== self
->title
)
1367 /* titletop is a bit to the right */
1368 else if (win
== self
->titletop
)
1369 fx
+= ob_rr_theme
->grip_width
+ self
->bwidth
;
1370 /* titletopright is way to the right edge */
1371 else if (win
== self
->titletopright
)
1372 fx
+= self
->area
.width
- (ob_rr_theme
->grip_width
+ self
->bwidth
);
1373 /* titleright is even more way to the right edge */
1374 else if (win
== self
->titleright
)
1375 fx
+= self
->area
.width
- self
->bwidth
;
1377 /* figure out if we're over the area that should be considered a
1379 if (fy
< self
->bwidth
+ ob_rr_theme
->paddingy
+ 1 +
1380 ob_rr_theme
->button_size
)
1382 if (fx
< (self
->bwidth
+ ob_rr_theme
->paddingx
+ 1 +
1383 ob_rr_theme
->button_size
))
1385 if (self
->leftmost
!= OB_FRAME_CONTEXT_NONE
)
1386 return self
->leftmost
;
1388 else if (fx
>= (self
->area
.width
-
1389 (self
->bwidth
+ ob_rr_theme
->paddingx
+ 1 +
1390 ob_rr_theme
->button_size
)))
1392 if (self
->rightmost
!= OB_FRAME_CONTEXT_NONE
)
1393 return self
->rightmost
;
1397 /* there is no resizing maximized windows so make them the titlebar
1399 return OB_FRAME_CONTEXT_TITLEBAR
;
1401 else if (self
->max_vert
&&
1402 (win
== self
->titletop
|| win
== self
->topresize
))
1403 /* can't resize vertically when max vert */
1404 return OB_FRAME_CONTEXT_TITLEBAR
;
1405 else if (self
->shaded
&&
1406 (win
== self
->titletop
|| win
== self
->topresize
))
1407 /* can't resize vertically when shaded */
1408 return OB_FRAME_CONTEXT_TITLEBAR
;
1410 if (win
== self
->window
) return OB_FRAME_CONTEXT_FRAME
;
1411 if (win
== self
->label
) return OB_FRAME_CONTEXT_TITLEBAR
;
1412 if (win
== self
->handle
) return OB_FRAME_CONTEXT_BOTTOM
;
1413 if (win
== self
->handletop
) return OB_FRAME_CONTEXT_BOTTOM
;
1414 if (win
== self
->handlebottom
) return OB_FRAME_CONTEXT_BOTTOM
;
1415 if (win
== self
->handleleft
) return OB_FRAME_CONTEXT_BLCORNER
;
1416 if (win
== self
->lgrip
) return OB_FRAME_CONTEXT_BLCORNER
;
1417 if (win
== self
->lgripleft
) return OB_FRAME_CONTEXT_BLCORNER
;
1418 if (win
== self
->lgriptop
) return OB_FRAME_CONTEXT_BLCORNER
;
1419 if (win
== self
->lgripbottom
) return OB_FRAME_CONTEXT_BLCORNER
;
1420 if (win
== self
->handleright
) return OB_FRAME_CONTEXT_BRCORNER
;
1421 if (win
== self
->rgrip
) return OB_FRAME_CONTEXT_BRCORNER
;
1422 if (win
== self
->rgripright
) return OB_FRAME_CONTEXT_BRCORNER
;
1423 if (win
== self
->rgriptop
) return OB_FRAME_CONTEXT_BRCORNER
;
1424 if (win
== self
->rgripbottom
) return OB_FRAME_CONTEXT_BRCORNER
;
1425 if (win
== self
->title
) return OB_FRAME_CONTEXT_TITLEBAR
;
1426 if (win
== self
->titlebottom
) return OB_FRAME_CONTEXT_TITLEBAR
;
1427 if (win
== self
->titleleft
) return OB_FRAME_CONTEXT_TLCORNER
;
1428 if (win
== self
->titletopleft
) return OB_FRAME_CONTEXT_TLCORNER
;
1429 if (win
== self
->titleright
) return OB_FRAME_CONTEXT_TRCORNER
;
1430 if (win
== self
->titletopright
) return OB_FRAME_CONTEXT_TRCORNER
;
1431 if (win
== self
->titletop
) return OB_FRAME_CONTEXT_TOP
;
1432 if (win
== self
->topresize
) return OB_FRAME_CONTEXT_TOP
;
1433 if (win
== self
->tltresize
) return OB_FRAME_CONTEXT_TLCORNER
;
1434 if (win
== self
->tllresize
) return OB_FRAME_CONTEXT_TLCORNER
;
1435 if (win
== self
->trtresize
) return OB_FRAME_CONTEXT_TRCORNER
;
1436 if (win
== self
->trrresize
) return OB_FRAME_CONTEXT_TRCORNER
;
1437 if (win
== self
->left
) return OB_FRAME_CONTEXT_LEFT
;
1438 if (win
== self
->right
) return OB_FRAME_CONTEXT_RIGHT
;
1439 if (win
== self
->innertop
) return OB_FRAME_CONTEXT_TITLEBAR
;
1440 if (win
== self
->innerleft
) return OB_FRAME_CONTEXT_LEFT
;
1441 if (win
== self
->innerbottom
) return OB_FRAME_CONTEXT_BOTTOM
;
1442 if (win
== self
->innerright
) return OB_FRAME_CONTEXT_RIGHT
;
1443 if (win
== self
->innerbll
) return OB_FRAME_CONTEXT_BLCORNER
;
1444 if (win
== self
->innerblb
) return OB_FRAME_CONTEXT_BLCORNER
;
1445 if (win
== self
->innerbrr
) return OB_FRAME_CONTEXT_BRCORNER
;
1446 if (win
== self
->innerbrb
) return OB_FRAME_CONTEXT_BRCORNER
;
1447 if (win
== self
->max
) return OB_FRAME_CONTEXT_MAXIMIZE
;
1448 if (win
== self
->iconify
) return OB_FRAME_CONTEXT_ICONIFY
;
1449 if (win
== self
->close
) return OB_FRAME_CONTEXT_CLOSE
;
1450 if (win
== self
->icon
) return OB_FRAME_CONTEXT_ICON
;
1451 if (win
== self
->desk
) return OB_FRAME_CONTEXT_ALLDESKTOPS
;
1452 if (win
== self
->shade
) return OB_FRAME_CONTEXT_SHADE
;
1454 return OB_FRAME_CONTEXT_NONE
;
1457 void frame_client_gravity(ObFrame
*self
, gint
*x
, gint
*y
)
1460 switch (self
->client
->gravity
) {
1462 case NorthWestGravity
:
1463 case SouthWestGravity
:
1470 /* the middle of the client will be the middle of the frame */
1471 *x
-= (self
->size
.right
- self
->size
.left
) / 2;
1474 case NorthEastGravity
:
1475 case SouthEastGravity
:
1477 /* the right side of the client will be the right side of the frame */
1478 *x
-= self
->size
.right
+ self
->size
.left
-
1479 self
->client
->border_width
* 2;
1484 /* the client's position won't move */
1485 *x
-= self
->size
.left
- self
->client
->border_width
;
1490 switch (self
->client
->gravity
) {
1492 case NorthWestGravity
:
1493 case NorthEastGravity
:
1500 /* the middle of the client will be the middle of the frame */
1501 *y
-= (self
->size
.bottom
- self
->size
.top
) / 2;
1504 case SouthWestGravity
:
1505 case SouthEastGravity
:
1507 /* the bottom of the client will be the bottom of the frame */
1508 *y
-= self
->size
.bottom
+ self
->size
.top
-
1509 self
->client
->border_width
* 2;
1514 /* the client's position won't move */
1515 *y
-= self
->size
.top
- self
->client
->border_width
;
1520 void frame_frame_gravity(ObFrame
*self
, gint
*x
, gint
*y
)
1523 switch (self
->client
->gravity
) {
1525 case NorthWestGravity
:
1527 case SouthWestGravity
:
1532 /* the middle of the client will be the middle of the frame */
1533 *x
+= (self
->size
.right
- self
->size
.left
) / 2;
1535 case NorthEastGravity
:
1537 case SouthEastGravity
:
1538 /* the right side of the client will be the right side of the frame */
1539 *x
+= self
->size
.right
+ self
->size
.left
-
1540 self
->client
->border_width
* 2;
1544 /* the client's position won't move */
1545 *x
+= self
->size
.left
- self
->client
->border_width
;
1550 switch (self
->client
->gravity
) {
1552 case NorthWestGravity
:
1554 case NorthEastGravity
:
1559 /* the middle of the client will be the middle of the frame */
1560 *y
+= (self
->size
.bottom
- self
->size
.top
) / 2;
1562 case SouthWestGravity
:
1564 case SouthEastGravity
:
1565 /* the bottom of the client will be the bottom of the frame */
1566 *y
+= self
->size
.bottom
+ self
->size
.top
-
1567 self
->client
->border_width
* 2;
1571 /* the client's position won't move */
1572 *y
+= self
->size
.top
- self
->client
->border_width
;
1577 void frame_rect_to_frame(ObFrame
*self
, Rect
*r
)
1579 r
->width
+= self
->size
.left
+ self
->size
.right
;
1580 r
->height
+= self
->size
.top
+ self
->size
.bottom
;
1581 frame_client_gravity(self
, &r
->x
, &r
->y
);
1584 void frame_rect_to_client(ObFrame
*self
, Rect
*r
)
1586 r
->width
-= self
->size
.left
+ self
->size
.right
;
1587 r
->height
-= self
->size
.top
+ self
->size
.bottom
;
1588 frame_frame_gravity(self
, &r
->x
, &r
->y
);
1591 static void flash_done(gpointer data
)
1593 ObFrame
*self
= data
;
1595 if (self
->focused
!= self
->flash_on
)
1596 frame_adjust_focus(self
, self
->focused
);
1599 static gboolean
flash_timeout(gpointer data
)
1601 ObFrame
*self
= data
;
1604 g_get_current_time(&now
);
1605 if (now
.tv_sec
> self
->flash_end
.tv_sec
||
1606 (now
.tv_sec
== self
->flash_end
.tv_sec
&&
1607 now
.tv_usec
>= self
->flash_end
.tv_usec
))
1608 self
->flashing
= FALSE
;
1610 if (!self
->flashing
)
1611 return FALSE
; /* we are done */
1613 self
->flash_on
= !self
->flash_on
;
1614 if (!self
->focused
) {
1615 frame_adjust_focus(self
, self
->flash_on
);
1616 self
->focused
= FALSE
;
1619 return TRUE
; /* go again */
1622 void frame_flash_start(ObFrame
*self
)
1624 self
->flash_on
= self
->focused
;
1626 if (!self
->flashing
)
1627 ob_main_loop_timeout_add(ob_main_loop
,
1628 G_USEC_PER_SEC
* 0.6,
1633 g_get_current_time(&self
->flash_end
);
1634 g_time_val_add(&self
->flash_end
, G_USEC_PER_SEC
* 5);
1636 self
->flashing
= TRUE
;
1639 void frame_flash_stop(ObFrame
*self
)
1641 self
->flashing
= FALSE
;
1644 static gulong
frame_animate_iconify_time_left(ObFrame
*self
,
1645 const GTimeVal
*now
)
1648 sec
= self
->iconify_animation_end
.tv_sec
- now
->tv_sec
;
1649 usec
= self
->iconify_animation_end
.tv_usec
- now
->tv_usec
;
1651 usec
+= G_USEC_PER_SEC
;
1654 /* no negative values */
1655 return MAX(sec
* G_USEC_PER_SEC
+ usec
, 0);
1658 static gboolean
frame_animate_iconify(gpointer p
)
1662 gint iconx
, icony
, iconw
;
1665 gboolean iconifying
;
1667 if (self
->client
->icon_geometry
.width
== 0) {
1668 /* there is no icon geometry set so just go straight down */
1669 Rect
*a
= screen_physical_area_monitor
1670 (screen_find_monitor(&self
->area
));
1671 iconx
= self
->area
.x
+ self
->area
.width
/ 2 + 32;
1672 icony
= a
->y
+ a
->width
;
1676 iconx
= self
->client
->icon_geometry
.x
;
1677 icony
= self
->client
->icon_geometry
.y
;
1678 iconw
= self
->client
->icon_geometry
.width
;
1681 iconifying
= self
->iconify_animation_going
> 0;
1683 /* how far do we have left to go ? */
1684 g_get_current_time(&now
);
1685 time
= frame_animate_iconify_time_left(self
, &now
);
1687 if ((time
> 0 && iconifying
) || (time
== 0 && !iconifying
)) {
1688 /* start where the frame is supposed to be */
1691 w
= self
->area
.width
;
1692 h
= self
->area
.height
;
1694 /* start at the icon */
1698 h
= self
->size
.top
; /* just the titlebar */
1705 dx
= self
->area
.x
- iconx
;
1706 dy
= self
->area
.y
- icony
;
1707 dw
= self
->area
.width
- self
->bwidth
* 2 - iconw
;
1708 /* if restoring, we move in the opposite direction */
1709 if (!iconifying
) { dx
= -dx
; dy
= -dy
; dw
= -dw
; }
1711 elapsed
= FRAME_ANIMATE_ICONIFY_TIME
- time
;
1712 x
= x
- (dx
* elapsed
) / FRAME_ANIMATE_ICONIFY_TIME
;
1713 y
= y
- (dy
* elapsed
) / FRAME_ANIMATE_ICONIFY_TIME
;
1714 w
= w
- (dw
* elapsed
) / FRAME_ANIMATE_ICONIFY_TIME
;
1715 h
= self
->size
.top
; /* just the titlebar */
1718 XMoveResizeWindow(ob_display
, self
->window
, x
, y
, w
, h
);
1722 frame_end_iconify_animation(self
);
1724 return time
> 0; /* repeat until we're out of time */
1727 void frame_end_iconify_animation(ObFrame
*self
)
1729 /* see if there is an animation going */
1730 if (self
->iconify_animation_going
== 0) return;
1733 XUnmapWindow(ob_display
, self
->window
);
1735 /* Send a ConfigureNotify when the animation is done, this fixes
1736 KDE's pager showing the window in the wrong place. since the
1737 window is mapped at a different location and is then moved, we
1738 need to send the synthetic configurenotify, since apps may have
1739 read the position when the client mapped, apparently. */
1740 client_reconfigure(self
->client
, TRUE
);
1743 /* we're not animating any more ! */
1744 self
->iconify_animation_going
= 0;
1746 XMoveResizeWindow(ob_display
, self
->window
,
1747 self
->area
.x
, self
->area
.y
,
1748 self
->area
.width
, self
->area
.height
);
1749 /* we delay re-rendering until after we're done animating */
1750 framerender_frame(self
);
1754 void frame_begin_iconify_animation(ObFrame
*self
, gboolean iconifying
)
1757 gboolean new_anim
= FALSE
;
1758 gboolean set_end
= TRUE
;
1761 /* if there is no titlebar, just don't animate for now
1762 XXX it would be nice tho.. */
1763 if (!(self
->decorations
& OB_FRAME_DECOR_TITLEBAR
))
1766 /* get the current time */
1767 g_get_current_time(&now
);
1769 /* get how long until the end */
1770 time
= FRAME_ANIMATE_ICONIFY_TIME
;
1771 if (self
->iconify_animation_going
) {
1772 if (!!iconifying
!= (self
->iconify_animation_going
> 0)) {
1773 /* animation was already going on in the opposite direction */
1774 time
= time
- frame_animate_iconify_time_left(self
, &now
);
1776 /* animation was already going in the same direction */
1780 self
->iconify_animation_going
= iconifying
? 1 : -1;
1782 /* set the ending time */
1784 self
->iconify_animation_end
.tv_sec
= now
.tv_sec
;
1785 self
->iconify_animation_end
.tv_usec
= now
.tv_usec
;
1786 g_time_val_add(&self
->iconify_animation_end
, time
);
1790 ob_main_loop_timeout_remove_data(ob_main_loop
, frame_animate_iconify
,
1792 ob_main_loop_timeout_add(ob_main_loop
,
1793 FRAME_ANIMATE_ICONIFY_STEP_TIME
,
1794 frame_animate_iconify
, self
,
1795 g_direct_equal
, NULL
);
1797 /* do the first step */
1798 frame_animate_iconify(self
);
1800 /* show it during the animation even if it is not "visible" */
1802 XMapWindow(ob_display
, self
->window
);