]> icculus.org git repositories - dana/openbox.git/blob - openbox/frame.c
some friendlier? desktop names
[dana/openbox.git] / openbox / frame.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    frame.c for the Openbox window manager
4    Copyright (c) 2006        Mikael Magnusson
5    Copyright (c) 2003-2007   Dana Jansens
6
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.
11
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.
16
17    See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #include "frame.h"
21 #include "client.h"
22 #include "openbox.h"
23 #include "extensions.h"
24 #include "prop.h"
25 #include "config.h"
26 #include "framerender.h"
27 #include "mainloop.h"
28 #include "focus.h"
29 #include "moveresize.h"
30 #include "screen.h"
31 #include "render/theme.h"
32
33 #define PLATE_EVENTMASK (SubstructureRedirectMask | FocusChangeMask)
34 #define FRAME_EVENTMASK (EnterWindowMask | LeaveWindowMask | \
35                          ButtonPressMask | ButtonReleaseMask)
36 #define ELEMENT_EVENTMASK (ButtonPressMask | ButtonReleaseMask | \
37                            ButtonMotionMask | \
38                            EnterWindowMask | LeaveWindowMask)
39 /* The inner window does not need enter/leave events.
40    If it does get them, then it needs its own context for enter events
41    because sloppy focus will focus the window when you enter the inner window
42    from the frame. */
43 #define INNER_EVENTMASK (ButtonPressMask)
44
45 #define FRAME_ANIMATE_ICONIFY_TIME 150000 /* .15 seconds */
46 #define FRAME_ANIMATE_ICONIFY_STEP_TIME (G_USEC_PER_SEC / 60) /* 60 Hz */
47
48 #define FRAME_HANDLE_Y(f) (f->innersize.top + f->client->area.height + \
49                            f->cbwidth_y)
50
51 static void layout_title(ObFrame *self);
52 static void flash_done(gpointer data);
53 static gboolean flash_timeout(gpointer data);
54
55 static void set_theme_statics(ObFrame *self);
56 static void free_theme_statics(ObFrame *self);
57 static gboolean frame_animate_iconify(gpointer self);
58
59 static Window createWindow(Window parent, Visual *visual,
60                            gulong mask, XSetWindowAttributes *attrib)
61 {
62     return XCreateWindow(ob_display, parent, 0, 0, 1, 1, 0,
63                          (visual ? 32 : RrDepth(ob_rr_inst)), InputOutput,
64                          (visual ? visual : RrVisual(ob_rr_inst)),
65                          mask, attrib);
66                        
67 }
68
69 static Visual *check_32bit_client(ObClient *c)
70 {
71     XWindowAttributes wattrib;
72     Status ret;
73
74     ret = XGetWindowAttributes(ob_display, c->window, &wattrib);
75     g_assert(ret != BadDrawable);
76     g_assert(ret != BadWindow);
77
78     if (wattrib.depth == 32)
79         return wattrib.visual;
80     return NULL;
81 }
82
83 ObFrame *frame_new(ObClient *client)
84 {
85     XSetWindowAttributes attrib;
86     gulong mask;
87     ObFrame *self;
88     Visual *visual;
89
90     self = g_new0(ObFrame, 1);
91
92     visual = check_32bit_client(client);
93
94     /* create the non-visible decor windows */
95
96     mask = CWEventMask;
97     if (visual) {
98         /* client has a 32-bit visual */
99         mask |= CWColormap | CWBackPixel | CWBorderPixel;
100         /* create a colormap with the visual */
101         self->colormap = attrib.colormap =
102             XCreateColormap(ob_display,
103                             RootWindow(ob_display, ob_screen),
104                             visual, AllocNone);
105         attrib.background_pixel = BlackPixel(ob_display, 0);
106         attrib.border_pixel = BlackPixel(ob_display, 0);
107     }
108     attrib.event_mask = FRAME_EVENTMASK;
109     self->window = createWindow(RootWindow(ob_display, ob_screen), visual,
110                                 mask, &attrib);
111
112     attrib.event_mask = INNER_EVENTMASK;
113     self->inner = createWindow(self->window, visual, mask, &attrib);
114
115     mask &= ~CWEventMask;
116     self->plate = createWindow(self->inner, visual, mask, &attrib);
117
118     /* create the visible decor windows */
119
120     mask = CWEventMask;
121     if (visual) {
122         /* client has a 32-bit visual */
123         mask |= CWColormap | CWBackPixel | CWBorderPixel;
124         attrib.colormap = RrColormap(ob_rr_inst);
125     }
126     attrib.event_mask = ELEMENT_EVENTMASK;
127     self->title = createWindow(self->window, NULL, mask, &attrib);
128
129     mask |= CWCursor;
130     attrib.cursor = ob_cursor(OB_CURSOR_NORTHWEST);
131     self->tltresize = createWindow(self->title, NULL, mask, &attrib);
132     self->tllresize = createWindow(self->title, NULL, mask, &attrib);
133     attrib.cursor = ob_cursor(OB_CURSOR_NORTHEAST);
134     self->trtresize = createWindow(self->title, NULL, mask, &attrib);
135     self->trrresize = createWindow(self->title, NULL, mask, &attrib);
136
137     mask &= ~CWCursor;
138     self->label = createWindow(self->title, NULL, mask, &attrib);
139     self->max = createWindow(self->title, NULL, mask, &attrib);
140     self->close = createWindow(self->title, NULL, mask, &attrib);
141     self->desk = createWindow(self->title, NULL, mask, &attrib);
142     self->shade = createWindow(self->title, NULL, mask, &attrib);
143     self->icon = createWindow(self->title, NULL, mask, &attrib);
144     self->iconify = createWindow(self->title, NULL, mask, &attrib);
145     self->handle = createWindow(self->window, NULL, mask, &attrib);
146
147     mask |= CWCursor;
148     attrib.cursor = ob_cursor(OB_CURSOR_SOUTHWEST);
149     self->lgrip = createWindow(self->handle, NULL, mask, &attrib);
150     attrib.cursor = ob_cursor(OB_CURSOR_SOUTHEAST);
151     self->rgrip = createWindow(self->handle, NULL, mask, &attrib); 
152
153     self->focused = FALSE;
154
155     /* the other stuff is shown based on decor settings */
156     XMapWindow(ob_display, self->plate);
157     XMapWindow(ob_display, self->inner);
158     XMapWindow(ob_display, self->lgrip);
159     XMapWindow(ob_display, self->rgrip);
160     XMapWindow(ob_display, self->label);
161
162     self->max_press = self->close_press = self->desk_press = 
163         self->iconify_press = self->shade_press = FALSE;
164     self->max_hover = self->close_hover = self->desk_hover = 
165         self->iconify_hover = self->shade_hover = FALSE;
166
167     set_theme_statics(self);
168
169     return (ObFrame*)self;
170 }
171
172 static void set_theme_statics(ObFrame *self)
173 {
174     /* set colors/appearance/sizes for stuff that doesn't change */
175     XSetWindowBorder(ob_display, self->window,
176                      RrColorPixel(ob_rr_theme->frame_b_color));
177     XSetWindowBorder(ob_display, self->inner,
178                      RrColorPixel(ob_rr_theme->frame_b_color));
179     XSetWindowBorder(ob_display, self->title,
180                      RrColorPixel(ob_rr_theme->frame_b_color));
181     XSetWindowBorder(ob_display, self->handle,
182                      RrColorPixel(ob_rr_theme->frame_b_color));
183     XSetWindowBorder(ob_display, self->rgrip,
184                      RrColorPixel(ob_rr_theme->frame_b_color));
185     XSetWindowBorder(ob_display, self->lgrip,
186                      RrColorPixel(ob_rr_theme->frame_b_color));
187
188     XResizeWindow(ob_display, self->max,
189                   ob_rr_theme->button_size, ob_rr_theme->button_size);
190     XResizeWindow(ob_display, self->iconify,
191                   ob_rr_theme->button_size, ob_rr_theme->button_size);
192     XResizeWindow(ob_display, self->icon,
193                   ob_rr_theme->button_size + 2, ob_rr_theme->button_size + 2);
194     XResizeWindow(ob_display, self->close,
195                   ob_rr_theme->button_size, ob_rr_theme->button_size);
196     XResizeWindow(ob_display, self->desk,
197                   ob_rr_theme->button_size, ob_rr_theme->button_size);
198     XResizeWindow(ob_display, self->shade,
199                   ob_rr_theme->button_size, ob_rr_theme->button_size);
200     if (ob_rr_theme->handle_height > 0) {
201         XResizeWindow(ob_display, self->lgrip,
202                       ob_rr_theme->grip_width, ob_rr_theme->handle_height);
203         XResizeWindow(ob_display, self->rgrip,
204                       ob_rr_theme->grip_width, ob_rr_theme->handle_height);
205     }
206     XResizeWindow(ob_display, self->tltresize,
207                   ob_rr_theme->grip_width, ob_rr_theme->paddingy + 1);
208     XResizeWindow(ob_display, self->trtresize,
209                   ob_rr_theme->grip_width, ob_rr_theme->paddingy + 1);
210     XResizeWindow(ob_display, self->tllresize,
211                   ob_rr_theme->paddingx + 1, ob_rr_theme->title_height);
212     XResizeWindow(ob_display, self->trrresize,
213                   ob_rr_theme->paddingx + 1, ob_rr_theme->title_height);
214
215     /* set up the dynamic appearances */
216     self->a_unfocused_title = RrAppearanceCopy(ob_rr_theme->a_unfocused_title);
217     self->a_focused_title = RrAppearanceCopy(ob_rr_theme->a_focused_title);
218     self->a_unfocused_label = RrAppearanceCopy(ob_rr_theme->a_unfocused_label);
219     self->a_focused_label = RrAppearanceCopy(ob_rr_theme->a_focused_label);
220     self->a_unfocused_handle =
221         RrAppearanceCopy(ob_rr_theme->a_unfocused_handle);
222     self->a_focused_handle = RrAppearanceCopy(ob_rr_theme->a_focused_handle);
223     self->a_icon = RrAppearanceCopy(ob_rr_theme->a_icon);
224 }
225
226 static void free_theme_statics(ObFrame *self)
227 {
228     RrAppearanceFree(self->a_unfocused_title); 
229     RrAppearanceFree(self->a_focused_title);
230     RrAppearanceFree(self->a_unfocused_label);
231     RrAppearanceFree(self->a_focused_label);
232     RrAppearanceFree(self->a_unfocused_handle);
233     RrAppearanceFree(self->a_focused_handle);
234     RrAppearanceFree(self->a_icon);
235 }
236
237 static void frame_free(ObFrame *self)
238 {
239     free_theme_statics(self);
240
241     XDestroyWindow(ob_display, self->window);
242     if (self->colormap)
243         XFreeColormap(ob_display, self->colormap);
244
245     g_free(self);
246 }
247
248 void frame_show(ObFrame *self)
249 {
250     if (!self->visible) {
251         self->visible = TRUE;
252         XMapWindow(ob_display, self->client->window);
253         XMapWindow(ob_display, self->window);
254     }
255 }
256
257 void frame_hide(ObFrame *self)
258 {
259     if (self->visible) {
260         self->visible = FALSE;
261         if (!frame_iconify_animating(self))
262             XUnmapWindow(ob_display, self->window);
263         /* we unmap the client itself so that we can get MapRequest
264            events, and because the ICCCM tells us to! */
265         XUnmapWindow(ob_display, self->client->window);
266         self->client->ignore_unmaps += 1;
267     }
268 }
269
270 void frame_adjust_theme(ObFrame *self)
271 {
272     free_theme_statics(self);
273     set_theme_statics(self);
274 }
275
276 void frame_adjust_shape(ObFrame *self)
277 {
278 #ifdef SHAPE
279     gint num;
280     XRectangle xrect[2];
281
282     if (!self->client->shaped) {
283         /* clear the shape on the frame window */
284         XShapeCombineMask(ob_display, self->window, ShapeBounding,
285                           self->innersize.left,
286                           self->innersize.top,
287                           None, ShapeSet);
288     } else {
289         /* make the frame's shape match the clients */
290         XShapeCombineShape(ob_display, self->window, ShapeBounding,
291                            self->innersize.left,
292                            self->innersize.top,
293                            self->client->window,
294                            ShapeBounding, ShapeSet);
295
296         num = 0;
297         if (self->decorations & OB_FRAME_DECOR_TITLEBAR) {
298             xrect[0].x = -ob_rr_theme->fbwidth;
299             xrect[0].y = -ob_rr_theme->fbwidth;
300             xrect[0].width = self->width + self->rbwidth * 2;
301             xrect[0].height = ob_rr_theme->title_height +
302                 self->bwidth * 2;
303             ++num;
304         }
305
306         if (self->decorations & OB_FRAME_DECOR_HANDLE) {
307             xrect[1].x = -ob_rr_theme->fbwidth;
308             xrect[1].y = FRAME_HANDLE_Y(self);
309             xrect[1].width = self->width + self->rbwidth * 2;
310             xrect[1].height = ob_rr_theme->handle_height +
311                 self->bwidth * 2;
312             ++num;
313         }
314
315         XShapeCombineRectangles(ob_display, self->window,
316                                 ShapeBounding, 0, 0, xrect, num,
317                                 ShapeUnion, Unsorted);
318     }
319 #endif
320 }
321
322 void frame_adjust_area(ObFrame *self, gboolean moved,
323                        gboolean resized, gboolean fake)
324 {
325     Strut oldsize;
326
327     oldsize = self->size;
328
329     if (resized) {
330         self->decorations = self->client->decorations;
331         self->max_horz = self->client->max_horz;
332
333         if (self->decorations & OB_FRAME_DECOR_BORDER) {
334             self->bwidth = ob_rr_theme->fbwidth;
335             self->cbwidth_x = ob_rr_theme->cbwidthx;
336             self->cbwidth_y = ob_rr_theme->cbwidthy;
337         } else {
338             self->bwidth = self->cbwidth_x = self->cbwidth_y = 0;
339         }
340         self->rbwidth = self->bwidth;
341
342         if (self->max_horz)
343             self->bwidth = self->cbwidth_x = 0;
344
345         STRUT_SET(self->innersize,
346                   self->cbwidth_x,
347                   self->cbwidth_y,
348                   self->cbwidth_x,
349                   self->cbwidth_y);
350         self->width = self->client->area.width + self->cbwidth_x * 2 -
351             (self->max_horz ? self->rbwidth * 2 : 0);
352         self->width = MAX(self->width, 1); /* no lower than 1 */
353
354         /* set border widths */
355         if (!fake) {
356             XSetWindowBorderWidth(ob_display, self->window, self->bwidth);
357             XSetWindowBorderWidth(ob_display, self->inner, self->bwidth);
358             XSetWindowBorderWidth(ob_display, self->title,  self->rbwidth);
359             XSetWindowBorderWidth(ob_display, self->handle, self->rbwidth);
360             XSetWindowBorderWidth(ob_display, self->lgrip,  self->rbwidth);
361             XSetWindowBorderWidth(ob_display, self->rgrip,  self->rbwidth);
362         }
363
364         if (self->decorations & OB_FRAME_DECOR_TITLEBAR)
365             self->innersize.top += ob_rr_theme->title_height + self->rbwidth +
366                 (self->rbwidth - self->bwidth);
367         if (self->decorations & OB_FRAME_DECOR_HANDLE &&
368             ob_rr_theme->handle_height > 0)
369             self->innersize.bottom += ob_rr_theme->handle_height +
370                 self->rbwidth + (self->rbwidth - self->bwidth);
371   
372         /* they all default off, they're turned on in layout_title */
373         self->icon_x = -1;
374         self->desk_x = -1;
375         self->shade_x = -1;
376         self->iconify_x = -1;
377         self->label_x = -1;
378         self->max_x = -1;
379         self->close_x = -1;
380
381         /* position/size and map/unmap all the windows */
382
383         if (!fake) {
384             if (self->decorations & OB_FRAME_DECOR_TITLEBAR) {
385                 XMoveResizeWindow(ob_display, self->title,
386                                   -self->bwidth, -self->bwidth,
387                                   self->width, ob_rr_theme->title_height);
388                 XMapWindow(ob_display, self->title);
389
390                 if (self->decorations & OB_FRAME_DECOR_GRIPS) {
391                     XMoveWindow(ob_display, self->tltresize, 0, 0);
392                     XMoveWindow(ob_display, self->tllresize, 0, 0);
393                     XMoveWindow(ob_display, self->trtresize,
394                                 self->width - ob_rr_theme->grip_width, 0);
395                     XMoveWindow(ob_display, self->trrresize,
396                                 self->width - ob_rr_theme->paddingx - 1, 0);
397                     XMapWindow(ob_display, self->tltresize);
398                     XMapWindow(ob_display, self->tllresize);
399                     XMapWindow(ob_display, self->trtresize);
400                     XMapWindow(ob_display, self->trrresize);
401                 } else {
402                     XUnmapWindow(ob_display, self->tltresize);
403                     XUnmapWindow(ob_display, self->tllresize);
404                     XUnmapWindow(ob_display, self->trtresize);
405                     XUnmapWindow(ob_display, self->trrresize);
406                 }
407             } else
408                 XUnmapWindow(ob_display, self->title);
409         }
410
411         if (self->decorations & OB_FRAME_DECOR_TITLEBAR)
412             /* layout the title bar elements */
413             layout_title(self);
414
415         if (!fake) {
416             if (self->decorations & OB_FRAME_DECOR_HANDLE &&
417                 ob_rr_theme->handle_height > 0)
418             {
419                 XMoveResizeWindow(ob_display, self->handle,
420                                   -self->bwidth, FRAME_HANDLE_Y(self),
421                                   self->width, ob_rr_theme->handle_height);
422                 XMapWindow(ob_display, self->handle);
423
424                 if (self->decorations & OB_FRAME_DECOR_GRIPS) {
425                     XMoveWindow(ob_display, self->lgrip,
426                                 -self->rbwidth, -self->rbwidth);
427                     XMoveWindow(ob_display, self->rgrip,
428                                 -self->rbwidth + self->width -
429                                 ob_rr_theme->grip_width, -self->rbwidth);
430                     XMapWindow(ob_display, self->lgrip);
431                     XMapWindow(ob_display, self->rgrip);
432                 } else {
433                     XUnmapWindow(ob_display, self->lgrip);
434                     XUnmapWindow(ob_display, self->rgrip);
435                 }
436             } else
437                 XUnmapWindow(ob_display, self->handle);
438
439             /* move and resize the inner border window which contains the plate
440              */
441             XMoveResizeWindow(ob_display, self->inner,
442                               self->innersize.left - self->cbwidth_x -
443                               self->bwidth,
444                               self->innersize.top - self->cbwidth_y -
445                               self->bwidth,
446                               self->client->area.width +
447                               self->cbwidth_x * 2,
448                               self->client->area.height +
449                               self->cbwidth_y * 2);
450
451             /* move the plate */
452             XMoveWindow(ob_display, self->plate,
453                         self->cbwidth_x, self->cbwidth_y);
454
455             /* when the client has StaticGravity, it likes to move around. */
456             XMoveWindow(ob_display, self->client->window, 0, 0);
457         }
458
459         STRUT_SET(self->size,
460                   self->innersize.left + self->bwidth,
461                   self->innersize.top + self->bwidth,
462                   self->innersize.right + self->bwidth,
463                   self->innersize.bottom + self->bwidth);
464     }
465
466     /* shading can change without being moved or resized */
467     RECT_SET_SIZE(self->area,
468                   self->client->area.width +
469                   self->size.left + self->size.right,
470                   (self->client->shaded ?
471                    ob_rr_theme->title_height + self->rbwidth * 2:
472                    self->client->area.height +
473                    self->size.top + self->size.bottom));
474
475     if (moved || resized) {
476         /* find the new coordinates, done after setting the frame.size, for
477            frame_client_gravity. */
478         self->area.x = self->client->area.x;
479         self->area.y = self->client->area.y;
480         frame_client_gravity(self, &self->area.x, &self->area.y,
481                              self->client->area.width,
482                              self->client->area.height);
483     }
484
485     if (!fake) {
486         if (!frame_iconify_animating(self))
487             /* move and resize the top level frame.
488                shading can change without being moved or resized.
489                
490                but don't do this during an iconify animation. it will be
491                reflected afterwards.
492             */
493             XMoveResizeWindow(ob_display, self->window,
494                               self->area.x, self->area.y,
495                               self->area.width - self->bwidth * 2,
496                               self->area.height - self->bwidth * 2);
497
498         if (resized) {
499             framerender_frame(self);
500             frame_adjust_shape(self);
501         }
502
503         if (!STRUT_EQUAL(self->size, oldsize)) {
504             gulong vals[4];
505             vals[0] = self->size.left;
506             vals[1] = self->size.right;
507             vals[2] = self->size.top;
508             vals[3] = self->size.bottom;
509             PROP_SETA32(self->client->window, net_frame_extents,
510                         cardinal, vals, 4);
511             PROP_SETA32(self->client->window, kde_net_wm_frame_strut,
512                         cardinal, vals, 4);
513         }
514
515         /* if this occurs while we are focus cycling, the indicator needs to
516            match the changes */
517         if (focus_cycle_target == self->client)
518             focus_cycle_draw_indicator();
519     }
520     if (resized && (self->decorations & OB_FRAME_DECOR_TITLEBAR))
521         XResizeWindow(ob_display, self->label, self->label_width,
522                       ob_rr_theme->label_height);
523 }
524
525 void frame_adjust_client_area(ObFrame *self)
526 {
527     /* resize the plate */
528     XResizeWindow(ob_display, self->plate,
529                   self->client->area.width, self->client->area.height);
530 }
531
532 void frame_adjust_state(ObFrame *self)
533 {
534     framerender_frame(self);
535 }
536
537 void frame_adjust_focus(ObFrame *self, gboolean hilite)
538 {
539     self->focused = hilite;
540     framerender_frame(self);
541     XFlush(ob_display);
542 }
543
544 void frame_adjust_title(ObFrame *self)
545 {
546     framerender_frame(self);
547 }
548
549 void frame_adjust_icon(ObFrame *self)
550 {
551     framerender_frame(self);
552 }
553
554 void frame_grab_client(ObFrame *self, ObClient *client)
555 {
556     self->client = client;
557
558     /* reparent the client to the frame */
559     XReparentWindow(ob_display, client->window, self->plate, 0, 0);
560     /*
561       When reparenting the client window, it is usually not mapped yet, since
562       this occurs from a MapRequest. However, in the case where Openbox is
563       starting up, the window is already mapped, so we'll see unmap events for
564       it. There are 2 unmap events generated that we see, one with the 'event'
565       member set the root window, and one set to the client, but both get
566       handled and need to be ignored.
567     */
568     if (ob_state() == OB_STATE_STARTING)
569         client->ignore_unmaps += 2;
570
571     /* select the event mask on the client's parent (to receive config/map
572        req's) the ButtonPress is to catch clicks on the client border */
573     XSelectInput(ob_display, self->plate, PLATE_EVENTMASK);
574
575     frame_adjust_area(self, TRUE, TRUE, FALSE);
576
577     /* map the client so it maps when the frame does */
578     XMapWindow(ob_display, client->window);
579
580     /* set all the windows for the frame in the window_map */
581     g_hash_table_insert(window_map, &self->window, client);
582     g_hash_table_insert(window_map, &self->plate, client);
583     g_hash_table_insert(window_map, &self->inner, client);
584     g_hash_table_insert(window_map, &self->title, client);
585     g_hash_table_insert(window_map, &self->label, client);
586     g_hash_table_insert(window_map, &self->max, client);
587     g_hash_table_insert(window_map, &self->close, client);
588     g_hash_table_insert(window_map, &self->desk, client);
589     g_hash_table_insert(window_map, &self->shade, client);
590     g_hash_table_insert(window_map, &self->icon, client);
591     g_hash_table_insert(window_map, &self->iconify, client);
592     g_hash_table_insert(window_map, &self->handle, client);
593     g_hash_table_insert(window_map, &self->lgrip, client);
594     g_hash_table_insert(window_map, &self->rgrip, client);
595     g_hash_table_insert(window_map, &self->tltresize, client);
596     g_hash_table_insert(window_map, &self->tllresize, client);
597     g_hash_table_insert(window_map, &self->trtresize, client);
598     g_hash_table_insert(window_map, &self->trrresize, client);
599 }
600
601 void frame_release_client(ObFrame *self, ObClient *client)
602 {
603     XEvent ev;
604     gboolean reparent = TRUE;
605
606     g_assert(self->client == client);
607
608     /* if there was any animation going on, kill it */
609     ob_main_loop_timeout_remove_data(ob_main_loop, frame_animate_iconify,
610                                      self, FALSE);
611
612     /* check if the app has already reparented its window away */
613     while (XCheckTypedWindowEvent(ob_display, client->window,
614                                   ReparentNotify, &ev))
615     {
616         /* This check makes sure we don't catch our own reparent action to
617            our frame window. This doesn't count as the app reparenting itself
618            away of course.
619
620            Reparent events that are generated by us are just discarded here.
621            They are of no consequence to us anyhow.
622         */
623         if (ev.xreparent.parent != self->plate) {
624             reparent = FALSE;
625             XPutBackEvent(ob_display, &ev);
626             break;
627         }
628     }
629
630     if (reparent) {
631         /* according to the ICCCM - if the client doesn't reparent itself,
632            then we will reparent the window to root for them */
633         XReparentWindow(ob_display, client->window,
634                         RootWindow(ob_display, ob_screen),
635                         client->area.x,
636                         client->area.y);
637     }
638
639     /* remove all the windows for the frame from the window_map */
640     g_hash_table_remove(window_map, &self->window);
641     g_hash_table_remove(window_map, &self->plate);
642     g_hash_table_remove(window_map, &self->inner);
643     g_hash_table_remove(window_map, &self->title);
644     g_hash_table_remove(window_map, &self->label);
645     g_hash_table_remove(window_map, &self->max);
646     g_hash_table_remove(window_map, &self->close);
647     g_hash_table_remove(window_map, &self->desk);
648     g_hash_table_remove(window_map, &self->shade);
649     g_hash_table_remove(window_map, &self->icon);
650     g_hash_table_remove(window_map, &self->iconify);
651     g_hash_table_remove(window_map, &self->handle);
652     g_hash_table_remove(window_map, &self->lgrip);
653     g_hash_table_remove(window_map, &self->rgrip);
654     g_hash_table_remove(window_map, &self->tltresize);
655     g_hash_table_remove(window_map, &self->tllresize);
656     g_hash_table_remove(window_map, &self->trtresize);
657     g_hash_table_remove(window_map, &self->trrresize);
658
659     ob_main_loop_timeout_remove_data(ob_main_loop, flash_timeout, self, TRUE);
660
661     frame_free(self);
662 }
663
664 static void layout_title(ObFrame *self)
665 {
666     gchar *lc;
667     gint x;
668     gboolean n, d, i, l, m, c, s;
669
670     n = d = i = l = m = c = s = FALSE;
671
672     /* figure out whats being shown, and the width of the label */
673     self->label_width = self->width - (ob_rr_theme->paddingx + 1) * 2;
674     for (lc = config_title_layout; *lc != '\0'; ++lc) {
675         switch (*lc) {
676         case 'N':
677             if (n) { *lc = ' '; break; } /* rm duplicates */
678             n = TRUE;
679             self->label_width -= (ob_rr_theme->button_size + 2 +
680                                   ob_rr_theme->paddingx + 1);
681             break;
682         case 'D':
683             if (d) { *lc = ' '; break; }
684             if (!(self->decorations & OB_FRAME_DECOR_ALLDESKTOPS)
685                 && config_theme_hidedisabled)
686                 break;
687             d = TRUE;
688             self->label_width -= (ob_rr_theme->button_size +
689                                   ob_rr_theme->paddingx + 1);
690             break;
691         case 'S':
692             if (s) { *lc = ' '; break; }
693             if (!(self->decorations & OB_FRAME_DECOR_SHADE)
694                 && config_theme_hidedisabled)
695                 break;
696             s = TRUE;
697             self->label_width -= (ob_rr_theme->button_size +
698                                   ob_rr_theme->paddingx + 1);
699             break;
700         case 'I':
701             if (i) { *lc = ' '; break; }
702             if (!(self->decorations & OB_FRAME_DECOR_ICONIFY)
703                 && config_theme_hidedisabled)
704                 break;
705             i = TRUE;
706             self->label_width -= (ob_rr_theme->button_size +
707                                   ob_rr_theme->paddingx + 1);
708             break;
709         case 'L':
710             if (l) { *lc = ' '; break; }
711             l = TRUE;
712             break;
713         case 'M':
714             if (m) { *lc = ' '; break; }
715             if (!(self->decorations & OB_FRAME_DECOR_MAXIMIZE)
716                 && config_theme_hidedisabled)
717                 break;
718             m = TRUE;
719             self->label_width -= (ob_rr_theme->button_size +
720                                   ob_rr_theme->paddingx + 1);
721             break;
722         case 'C':
723             if (c) { *lc = ' '; break; }
724             if (!(self->decorations & OB_FRAME_DECOR_CLOSE)
725                 && config_theme_hidedisabled)
726                 break;
727             c = TRUE;
728             self->label_width -= (ob_rr_theme->button_size +
729                                   ob_rr_theme->paddingx + 1);
730             break;
731         }
732     }
733     if (self->label_width < 1) self->label_width = 1;
734
735     if (!n) XUnmapWindow(ob_display, self->icon);
736     if (!d) XUnmapWindow(ob_display, self->desk);
737     if (!s) XUnmapWindow(ob_display, self->shade);
738     if (!i) XUnmapWindow(ob_display, self->iconify);
739     if (!l) XUnmapWindow(ob_display, self->label);
740     if (!m) XUnmapWindow(ob_display, self->max);
741     if (!c) XUnmapWindow(ob_display, self->close);
742
743     x = ob_rr_theme->paddingx + 1;
744     for (lc = config_title_layout; *lc != '\0'; ++lc) {
745         switch (*lc) {
746         case 'N':
747             if (!n) break;
748             self->icon_x = x;
749             XMapWindow(ob_display, self->icon);
750             XMoveWindow(ob_display, self->icon, x, ob_rr_theme->paddingy);
751             x += ob_rr_theme->button_size + 2 + ob_rr_theme->paddingx + 1;
752             break;
753         case 'D':
754             if (!d) break;
755             self->desk_x = x;
756             XMapWindow(ob_display, self->desk);
757             XMoveWindow(ob_display, self->desk, x, ob_rr_theme->paddingy + 1);
758             x += ob_rr_theme->button_size + ob_rr_theme->paddingx + 1;
759             break;
760         case 'S':
761             if (!s) break;
762             self->shade_x = x;
763             XMapWindow(ob_display, self->shade);
764             XMoveWindow(ob_display, self->shade, x, ob_rr_theme->paddingy + 1);
765             x += ob_rr_theme->button_size + ob_rr_theme->paddingx + 1;
766             break;
767         case 'I':
768             if (!i) break;
769             self->iconify_x = x;
770             XMapWindow(ob_display, self->iconify);
771             XMoveWindow(ob_display,self->iconify, x, ob_rr_theme->paddingy + 1);
772             x += ob_rr_theme->button_size + ob_rr_theme->paddingx + 1;
773             break;
774         case 'L':
775             if (!l) break;
776             self->label_x = x;
777             XMapWindow(ob_display, self->label);
778             XMoveWindow(ob_display, self->label, x, ob_rr_theme->paddingy);
779             x += self->label_width + ob_rr_theme->paddingx + 1;
780             break;
781         case 'M':
782             if (!m) break;
783             self->max_x = x;
784             XMapWindow(ob_display, self->max);
785             XMoveWindow(ob_display, self->max, x, ob_rr_theme->paddingy + 1);
786             x += ob_rr_theme->button_size + ob_rr_theme->paddingx + 1;
787             break;
788         case 'C':
789             if (!c) break;
790             self->close_x = x;
791             XMapWindow(ob_display, self->close);
792             XMoveWindow(ob_display, self->close, x, ob_rr_theme->paddingy + 1);
793             x += ob_rr_theme->button_size + ob_rr_theme->paddingx + 1;
794             break;
795         }
796     }
797 }
798
799 ObFrameContext frame_context_from_string(const gchar *name)
800 {
801     if (!g_ascii_strcasecmp("Desktop", name))
802         return OB_FRAME_CONTEXT_DESKTOP;
803     else if (!g_ascii_strcasecmp("Client", name))
804         return OB_FRAME_CONTEXT_CLIENT;
805     else if (!g_ascii_strcasecmp("Titlebar", name))
806         return OB_FRAME_CONTEXT_TITLEBAR;
807     else if (!g_ascii_strcasecmp("Handle", name))
808         return OB_FRAME_CONTEXT_HANDLE;
809     else if (!g_ascii_strcasecmp("Frame", name))
810         return OB_FRAME_CONTEXT_FRAME;
811     else if (!g_ascii_strcasecmp("TLCorner", name))
812         return OB_FRAME_CONTEXT_TLCORNER;
813     else if (!g_ascii_strcasecmp("TRCorner", name))
814         return OB_FRAME_CONTEXT_TRCORNER;
815     else if (!g_ascii_strcasecmp("BLCorner", name))
816         return OB_FRAME_CONTEXT_BLCORNER;
817     else if (!g_ascii_strcasecmp("BRCorner", name))
818         return OB_FRAME_CONTEXT_BRCORNER;
819     else if (!g_ascii_strcasecmp("Maximize", name))
820         return OB_FRAME_CONTEXT_MAXIMIZE;
821     else if (!g_ascii_strcasecmp("AllDesktops", name))
822         return OB_FRAME_CONTEXT_ALLDESKTOPS;
823     else if (!g_ascii_strcasecmp("Shade", name))
824         return OB_FRAME_CONTEXT_SHADE;
825     else if (!g_ascii_strcasecmp("Iconify", name))
826         return OB_FRAME_CONTEXT_ICONIFY;
827     else if (!g_ascii_strcasecmp("Icon", name))
828         return OB_FRAME_CONTEXT_ICON;
829     else if (!g_ascii_strcasecmp("Close", name))
830         return OB_FRAME_CONTEXT_CLOSE;
831     else if (!g_ascii_strcasecmp("MoveResize", name))
832         return OB_FRAME_CONTEXT_MOVE_RESIZE;
833     return OB_FRAME_CONTEXT_NONE;
834 }
835
836 ObFrameContext frame_context(ObClient *client, Window win)
837 {
838     ObFrame *self;
839
840     if (moveresize_in_progress)
841         return OB_FRAME_CONTEXT_MOVE_RESIZE;
842
843     if (win == RootWindow(ob_display, ob_screen))
844         return OB_FRAME_CONTEXT_DESKTOP;
845     if (client == NULL) return OB_FRAME_CONTEXT_NONE;
846     if (win == client->window) {
847         /* conceptually, this is the desktop, as far as users are
848            concerned */
849         if (client->type == OB_CLIENT_TYPE_DESKTOP)
850             return OB_FRAME_CONTEXT_DESKTOP;
851         return OB_FRAME_CONTEXT_CLIENT;
852     }
853
854     self = client->frame;
855     if (win == self->inner || win == self->plate) {
856         /* conceptually, this is the desktop, as far as users are
857            concerned */
858         if (client->type == OB_CLIENT_TYPE_DESKTOP)
859             return OB_FRAME_CONTEXT_DESKTOP;
860         return OB_FRAME_CONTEXT_CLIENT;
861     }
862
863     if (win == self->window)    return OB_FRAME_CONTEXT_FRAME;
864     if (win == self->title)     return OB_FRAME_CONTEXT_TITLEBAR;
865     if (win == self->label)     return OB_FRAME_CONTEXT_TITLEBAR;
866     if (win == self->handle)    return OB_FRAME_CONTEXT_HANDLE;
867     if (win == self->lgrip)     return OB_FRAME_CONTEXT_BLCORNER;
868     if (win == self->rgrip)     return OB_FRAME_CONTEXT_BRCORNER;
869     if (win == self->tltresize) return OB_FRAME_CONTEXT_TLCORNER;
870     if (win == self->tllresize) return OB_FRAME_CONTEXT_TLCORNER;
871     if (win == self->trtresize) return OB_FRAME_CONTEXT_TRCORNER;
872     if (win == self->trrresize) return OB_FRAME_CONTEXT_TRCORNER;
873     if (win == self->max)       return OB_FRAME_CONTEXT_MAXIMIZE;
874     if (win == self->iconify)   return OB_FRAME_CONTEXT_ICONIFY;
875     if (win == self->close)     return OB_FRAME_CONTEXT_CLOSE;
876     if (win == self->icon)      return OB_FRAME_CONTEXT_ICON;
877     if (win == self->desk)      return OB_FRAME_CONTEXT_ALLDESKTOPS;
878     if (win == self->shade)     return OB_FRAME_CONTEXT_SHADE;
879
880     return OB_FRAME_CONTEXT_NONE;
881 }
882
883 void frame_client_gravity(ObFrame *self, gint *x, gint *y, gint w, gint h)
884 {
885     /* horizontal */
886     switch (self->client->gravity) {
887     default:
888     case NorthWestGravity:
889     case SouthWestGravity:
890     case WestGravity:
891         break;
892
893     case NorthGravity:
894     case SouthGravity:
895     case CenterGravity:
896         *x -= (self->size.left + w) / 2;
897         break;
898
899     case NorthEastGravity:
900     case SouthEastGravity:
901     case EastGravity:
902         *x -= (self->size.left + self->size.right + w) - 1;
903         break;
904
905     case ForgetGravity:
906     case StaticGravity:
907         *x -= self->size.left;
908         break;
909     }
910
911     /* vertical */
912     switch (self->client->gravity) {
913     default:
914     case NorthWestGravity:
915     case NorthEastGravity:
916     case NorthGravity:
917         break;
918
919     case CenterGravity:
920     case EastGravity:
921     case WestGravity:
922         *y -= (self->size.top + h) / 2;
923         break;
924
925     case SouthWestGravity:
926     case SouthEastGravity:
927     case SouthGravity:
928         *y -= (self->size.top + self->size.bottom + h) - 1;
929         break;
930
931     case ForgetGravity:
932     case StaticGravity:
933         *y -= self->size.top;
934         break;
935     }
936 }
937
938 void frame_frame_gravity(ObFrame *self, gint *x, gint *y, gint w, gint h)
939 {
940     /* horizontal */
941     switch (self->client->gravity) {
942     default:
943     case NorthWestGravity:
944     case WestGravity:
945     case SouthWestGravity:
946         break;
947     case NorthGravity:
948     case CenterGravity:
949     case SouthGravity:
950         *x += (self->size.left + w) / 2;
951         break;
952     case NorthEastGravity:
953     case EastGravity:
954     case SouthEastGravity:
955         *x += (self->size.left + self->size.right + w) - 1;
956         break;
957     case StaticGravity:
958     case ForgetGravity:
959         *x += self->size.left;
960         break;
961     }
962
963     /* vertical */
964     switch (self->client->gravity) {
965     default:
966     case NorthWestGravity:
967     case NorthGravity:
968     case NorthEastGravity:
969         break;
970     case WestGravity:
971     case CenterGravity:
972     case EastGravity:
973         *y += (self->size.top + h) / 2;
974         break;
975     case SouthWestGravity:
976     case SouthGravity:
977     case SouthEastGravity:
978         *y += (self->size.top + self->size.bottom + h) - 1;
979         break;
980     case StaticGravity:
981     case ForgetGravity:
982         *y += self->size.top;
983         break;
984     }
985 }
986
987 static void flash_done(gpointer data)
988 {
989     ObFrame *self = data;
990
991     if (self->focused != self->flash_on)
992         frame_adjust_focus(self, self->focused);
993 }
994
995 static gboolean flash_timeout(gpointer data)
996 {
997     ObFrame *self = data;
998     GTimeVal now;
999
1000     g_get_current_time(&now);
1001     if (now.tv_sec > self->flash_end.tv_sec ||
1002         (now.tv_sec == self->flash_end.tv_sec &&
1003          now.tv_usec >= self->flash_end.tv_usec))
1004         self->flashing = FALSE;
1005
1006     if (!self->flashing)
1007         return FALSE; /* we are done */
1008
1009     self->flash_on = !self->flash_on;
1010     if (!self->focused) {
1011         frame_adjust_focus(self, self->flash_on);
1012         self->focused = FALSE;
1013     }
1014
1015     return TRUE; /* go again */
1016 }
1017
1018 void frame_flash_start(ObFrame *self)
1019 {
1020     self->flash_on = self->focused;
1021
1022     if (!self->flashing)
1023         ob_main_loop_timeout_add(ob_main_loop,
1024                                  G_USEC_PER_SEC * 0.6,
1025                                  flash_timeout,
1026                                  self,
1027                                  g_direct_equal,
1028                                  flash_done);
1029     g_get_current_time(&self->flash_end);
1030     g_time_val_add(&self->flash_end, G_USEC_PER_SEC * 5);
1031     
1032     self->flashing = TRUE;
1033 }
1034
1035 void frame_flash_stop(ObFrame *self)
1036 {
1037     self->flashing = FALSE;
1038 }
1039
1040 static gulong frame_animate_iconify_time_left(ObFrame *self,
1041                                               const GTimeVal *now)
1042 {
1043     glong sec, usec;
1044     sec = self->iconify_animation_end.tv_sec - now->tv_sec;
1045     usec = self->iconify_animation_end.tv_usec - now->tv_usec;
1046     if (usec < 0) {
1047         usec += G_USEC_PER_SEC;
1048         sec--;
1049     }
1050     /* no negative values */
1051     return MAX(sec * G_USEC_PER_SEC + usec, 0);
1052 }
1053
1054 static gboolean frame_animate_iconify(gpointer p)
1055 {
1056     ObFrame *self = p;
1057     gint x, y, w, h;
1058     gint iconx, icony, iconw;
1059     GTimeVal now;
1060     gulong time;
1061     gboolean iconifying;
1062
1063     if (self->client->icon_geometry.width == 0) {
1064         /* there is no icon geometry set so just go straight down */
1065         Rect *a = screen_physical_area();
1066         iconx = self->area.x + self->area.width / 2 + 32;
1067         icony = a->y + a->width;
1068         iconw = 64;
1069     } else {
1070         iconx = self->client->icon_geometry.x;
1071         icony = self->client->icon_geometry.y;
1072         iconw = self->client->icon_geometry.width;
1073     }
1074
1075     iconifying = self->iconify_animation_going > 0;
1076
1077     /* how far do we have left to go ? */
1078     g_get_current_time(&now);
1079     time = frame_animate_iconify_time_left(self, &now);
1080     
1081     if (time == 0 || iconifying) {
1082         /* start where the frame is supposed to be */
1083         x = self->area.x;
1084         y = self->area.y;
1085         w = self->area.width - self->bwidth * 2;
1086         h = self->area.height - self->bwidth * 2;
1087     } else {
1088         /* start at the icon */
1089         x = iconx;
1090         y = icony;
1091         w = iconw;
1092         h = self->innersize.top; /* just the titlebar */
1093     }
1094
1095     if (time > 0) {
1096         glong dx, dy, dw;
1097         glong elapsed;
1098
1099         dx = self->area.x - iconx;
1100         dy = self->area.y - icony;
1101         dw = self->area.width - self->bwidth * 2 - iconw;
1102          /* if restoring, we move in the opposite direction */
1103         if (!iconifying) { dx = -dx; dy = -dy; dw = -dw; }
1104
1105         elapsed = FRAME_ANIMATE_ICONIFY_TIME - time;
1106         x = x - (dx * elapsed) / FRAME_ANIMATE_ICONIFY_TIME;
1107         y = y - (dy * elapsed) / FRAME_ANIMATE_ICONIFY_TIME;
1108         w = w - (dw * elapsed) / FRAME_ANIMATE_ICONIFY_TIME;
1109         h = self->innersize.top; /* just the titlebar */
1110     }
1111
1112     if (time == 0)
1113         frame_end_iconify_animation(self);
1114     else {
1115         XMoveResizeWindow(ob_display, self->window, x, y, w, h);
1116         XFlush(ob_display);
1117     }
1118
1119     return time > 0; /* repeat until we're out of time */
1120 }
1121
1122 void frame_end_iconify_animation(ObFrame *self)
1123 {
1124     /* see if there is an animation going */
1125     if (self->iconify_animation_going == 0) return;
1126
1127     if (!self->visible)
1128         XUnmapWindow(ob_display, self->window);
1129
1130     /* we're not animating any more ! */
1131     self->iconify_animation_going = 0;
1132
1133     XMoveResizeWindow(ob_display, self->window,
1134                       self->area.x, self->area.y,
1135                       self->area.width - self->bwidth * 2,
1136                       self->area.height - self->bwidth * 2);
1137     XFlush(ob_display);
1138 }
1139
1140 void frame_begin_iconify_animation(ObFrame *self, gboolean iconifying)
1141 {
1142     gulong time;
1143     gboolean new_anim = FALSE;
1144     gboolean set_end = TRUE;
1145     GTimeVal now;
1146
1147     /* if there is no titlebar, just don't animate for now
1148        XXX it would be nice tho.. */
1149     if (!(self->decorations & OB_FRAME_DECOR_TITLEBAR))
1150         return;
1151
1152     /* get the current time */
1153     g_get_current_time(&now);
1154
1155     /* get how long until the end */
1156     time = FRAME_ANIMATE_ICONIFY_TIME;
1157     if (self->iconify_animation_going) {
1158         if (!!iconifying != (self->iconify_animation_going > 0)) {
1159             /* animation was already going on in the opposite direction */
1160             time = time - frame_animate_iconify_time_left(self, &now);
1161         } else
1162             /* animation was already going in the same direction */
1163             set_end = FALSE;
1164     } else
1165         new_anim = TRUE;
1166     self->iconify_animation_going = iconifying ? 1 : -1;
1167
1168     /* set the ending time */
1169     if (set_end) {
1170         self->iconify_animation_end.tv_sec = now.tv_sec;
1171         self->iconify_animation_end.tv_usec = now.tv_usec;
1172         g_time_val_add(&self->iconify_animation_end, time);
1173     }
1174
1175     if (new_anim) {
1176         ob_main_loop_timeout_remove_data(ob_main_loop, frame_animate_iconify,
1177                                          self, FALSE);
1178         ob_main_loop_timeout_add(ob_main_loop,
1179                                  FRAME_ANIMATE_ICONIFY_STEP_TIME,
1180                                  frame_animate_iconify, self,
1181                                  g_direct_equal, NULL);
1182
1183         /* do the first step */
1184         frame_animate_iconify(self);
1185
1186         /* show it during the animation even if it is not "visible" */
1187         if (!self->visible)
1188             XMapWindow(ob_display, self->window);
1189     }
1190 }