]> Dogcows Code - chaz/openbox/blob - openbox/frame.c
missing header
[chaz/openbox] / 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 "grab.h"
26 #include "config.h"
27 #include "framerender.h"
28 #include "mainloop.h"
29 #include "focus_cycle.h"
30 #include "focus_cycle_indicator.h"
31 #include "moveresize.h"
32 #include "screen.h"
33 #include "render/theme.h"
34
35 #define FRAME_EVENTMASK (EnterWindowMask | LeaveWindowMask | \
36 ButtonPressMask | ButtonReleaseMask | \
37 SubstructureRedirectMask | FocusChangeMask)
38 #define ELEMENT_EVENTMASK (ButtonPressMask | ButtonReleaseMask | \
39 ButtonMotionMask | PointerMotionMask | \
40 EnterWindowMask | LeaveWindowMask)
41
42 #define FRAME_ANIMATE_ICONIFY_TIME 150000 /* .15 seconds */
43 #define FRAME_ANIMATE_ICONIFY_STEP_TIME (G_USEC_PER_SEC / 60) /* 60 Hz */
44
45 #define FRAME_HANDLE_Y(f) (f->size.top + f->client->area.height + f->cbwidth_b)
46
47 static void flash_done(gpointer data);
48 static gboolean flash_timeout(gpointer data);
49
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);
55
56 static Window createWindow(Window parent, Visual *visual,
57 gulong mask, XSetWindowAttributes *attrib)
58 {
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)),
62 mask, attrib);
63
64 }
65
66 static Visual *check_32bit_client(ObClient *c)
67 {
68 XWindowAttributes wattrib;
69 Status ret;
70
71 /* we're already running at 32 bit depth, yay. we don't need to use their
72 visual */
73 if (RrDepth(ob_rr_inst) == 32)
74 return NULL;
75
76 ret = XGetWindowAttributes(ob_display, c->window, &wattrib);
77 g_assert(ret != BadDrawable);
78 g_assert(ret != BadWindow);
79
80 if (wattrib.depth == 32)
81 return wattrib.visual;
82 return NULL;
83 }
84
85 ObFrame *frame_new(ObClient *client)
86 {
87 XSetWindowAttributes attrib;
88 gulong mask;
89 ObFrame *self;
90 Visual *visual;
91
92 self = g_new0(ObFrame, 1);
93 self->client = client;
94
95 visual = check_32bit_client(client);
96
97 /* create the non-visible decor windows */
98
99 mask = 0;
100 if (visual) {
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),
107 visual, AllocNone);
108 attrib.background_pixel = BlackPixel(ob_display, ob_screen);
109 attrib.border_pixel = BlackPixel(ob_display, ob_screen);
110 }
111 self->window = createWindow(RootWindow(ob_display, ob_screen), visual,
112 mask, &attrib);
113
114 /* create the visible decor windows */
115
116 mask = 0;
117 if (visual) {
118 /* client has a 32-bit visual */
119 mask |= CWColormap | CWBackPixel | CWBorderPixel;
120 attrib.colormap = RrColormap(ob_rr_inst);
121 }
122
123 self->backback = createWindow(self->window, NULL, mask, &attrib);
124 self->backfront = createWindow(self->backback, NULL, mask, &attrib);
125
126 mask |= CWEventMask;
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);
132
133 self->title = createWindow(self->window, NULL, mask, &attrib);
134 self->titleleft = createWindow(self->window, NULL, mask, &attrib);
135 self->titletop = createWindow(self->window, NULL, mask, &attrib);
136 self->titletopleft = createWindow(self->window, NULL, mask, &attrib);
137 self->titletopright = createWindow(self->window, NULL, mask, &attrib);
138 self->titleright = createWindow(self->window, NULL, mask, &attrib);
139 self->titlebottom = createWindow(self->window, NULL, mask, &attrib);
140
141 self->topresize = createWindow(self->title, NULL, mask, &attrib);
142 self->tltresize = createWindow(self->title, NULL, mask, &attrib);
143 self->tllresize = createWindow(self->title, NULL, mask, &attrib);
144 self->trtresize = createWindow(self->title, NULL, mask, &attrib);
145 self->trrresize = createWindow(self->title, NULL, mask, &attrib);
146
147 self->left = createWindow(self->window, NULL, mask, &attrib);
148 self->right = createWindow(self->window, NULL, mask, &attrib);
149
150 self->label = createWindow(self->title, NULL, mask, &attrib);
151 self->max = createWindow(self->title, NULL, mask, &attrib);
152 self->close = createWindow(self->title, NULL, mask, &attrib);
153 self->desk = createWindow(self->title, NULL, mask, &attrib);
154 self->shade = createWindow(self->title, NULL, mask, &attrib);
155 self->icon = createWindow(self->title, NULL, mask, &attrib);
156 self->iconify = createWindow(self->title, NULL, mask, &attrib);
157
158 self->handle = createWindow(self->window, NULL, mask, &attrib);
159 self->lgrip = createWindow(self->handle, NULL, mask, &attrib);
160 self->rgrip = createWindow(self->handle, NULL, mask, &attrib);
161
162 self->handleleft = createWindow(self->handle, NULL, mask, &attrib);
163 self->handleright = createWindow(self->handle, NULL, mask, &attrib);
164
165 self->handletop = createWindow(self->window, NULL, mask, &attrib);
166 self->handlebottom = createWindow(self->window, NULL, mask, &attrib);
167 self->lgripleft = createWindow(self->window, NULL, mask, &attrib);
168 self->lgriptop = createWindow(self->window, NULL, mask, &attrib);
169 self->lgripbottom = createWindow(self->window, NULL, mask, &attrib);
170 self->rgripright = createWindow(self->window, NULL, mask, &attrib);
171 self->rgriptop = createWindow(self->window, NULL, mask, &attrib);
172 self->rgripbottom = createWindow(self->window, NULL, mask, &attrib);
173
174 self->focused = FALSE;
175
176 /* the other stuff is shown based on decor settings */
177 XMapWindow(ob_display, self->label);
178 XMapWindow(ob_display, self->backback);
179 XMapWindow(ob_display, self->backfront);
180
181 self->max_press = self->close_press = self->desk_press =
182 self->iconify_press = self->shade_press = FALSE;
183 self->max_hover = self->close_hover = self->desk_hover =
184 self->iconify_hover = self->shade_hover = FALSE;
185
186 set_theme_statics(self);
187
188 return (ObFrame*)self;
189 }
190
191 static void set_theme_statics(ObFrame *self)
192 {
193 /* set colors/appearance/sizes for stuff that doesn't change */
194 XResizeWindow(ob_display, self->max,
195 ob_rr_theme->button_size, ob_rr_theme->button_size);
196 XResizeWindow(ob_display, self->iconify,
197 ob_rr_theme->button_size, ob_rr_theme->button_size);
198 XResizeWindow(ob_display, self->icon,
199 ob_rr_theme->button_size + 2, ob_rr_theme->button_size + 2);
200 XResizeWindow(ob_display, self->close,
201 ob_rr_theme->button_size, ob_rr_theme->button_size);
202 XResizeWindow(ob_display, self->desk,
203 ob_rr_theme->button_size, ob_rr_theme->button_size);
204 XResizeWindow(ob_display, self->shade,
205 ob_rr_theme->button_size, ob_rr_theme->button_size);
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 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 framerender_frame(self);
253 /* Grab the server to make sure that the frame window is mapped before
254 the client gets its MapNotify, i.e. to make sure the client is
255 _visible_ when it gets MapNotify. */
256 grab_server(TRUE);
257 XMapWindow(ob_display, self->client->window);
258 XMapWindow(ob_display, self->window);
259 grab_server(FALSE);
260 }
261 }
262
263 void frame_hide(ObFrame *self)
264 {
265 if (self->visible) {
266 self->visible = FALSE;
267 if (!frame_iconify_animating(self))
268 XUnmapWindow(ob_display, self->window);
269 /* we unmap the client itself so that we can get MapRequest
270 events, and because the ICCCM tells us to! */
271 XUnmapWindow(ob_display, self->client->window);
272 self->client->ignore_unmaps += 1;
273 }
274 }
275
276 void frame_adjust_theme(ObFrame *self)
277 {
278 free_theme_statics(self);
279 set_theme_statics(self);
280 }
281
282 void frame_adjust_shape(ObFrame *self)
283 {
284 #ifdef SHAPE
285 gint num;
286 XRectangle xrect[2];
287
288 if (!self->client->shaped) {
289 /* clear the shape on the frame window */
290 XShapeCombineMask(ob_display, self->window, ShapeBounding,
291 self->size.left,
292 self->size.top,
293 None, ShapeSet);
294 } else {
295 /* make the frame's shape match the clients */
296 XShapeCombineShape(ob_display, self->window, ShapeBounding,
297 self->size.left,
298 self->size.top,
299 self->client->window,
300 ShapeBounding, ShapeSet);
301
302 num = 0;
303 if (self->decorations & OB_FRAME_DECOR_TITLEBAR) {
304 xrect[0].x = 0;
305 xrect[0].y = 0;
306 xrect[0].width = self->area.width;
307 xrect[0].height = self->size.top;
308 ++num;
309 }
310
311 if (self->decorations & OB_FRAME_DECOR_HANDLE &&
312 ob_rr_theme->handle_height > 0)
313 {
314 xrect[1].x = 0;
315 xrect[1].y = FRAME_HANDLE_Y(self);
316 xrect[1].width = self->area.width;
317 xrect[1].height = ob_rr_theme->handle_height +
318 self->bwidth * 2;
319 ++num;
320 }
321
322 XShapeCombineRectangles(ob_display, self->window,
323 ShapeBounding, 0, 0, xrect, num,
324 ShapeUnion, Unsorted);
325 }
326 #endif
327 }
328
329 void frame_adjust_area(ObFrame *self, gboolean moved,
330 gboolean resized, gboolean fake)
331 {
332 Strut oldsize;
333
334 oldsize = self->size;
335
336 if (resized) {
337 /* do this before changing the frame's status like max_horz max_vert */
338 frame_adjust_cursors(self);
339
340 self->functions = self->client->functions;
341 self->decorations = self->client->decorations;
342 self->max_horz = self->client->max_horz;
343 self->max_vert = self->client->max_vert;
344 self->shaded = self->client->shaded;
345
346 if (self->decorations & OB_FRAME_DECOR_BORDER ||
347 (self->client->undecorated && config_theme_keepborder))
348 self->bwidth = ob_rr_theme->fbwidth;
349 else
350 self->bwidth = 0;
351
352 if (self->decorations & OB_FRAME_DECOR_BORDER) {
353 self->cbwidth_l = self->cbwidth_r = ob_rr_theme->cbwidthx;
354 self->cbwidth_t = self->cbwidth_b = ob_rr_theme->cbwidthy;
355 } else
356 self->cbwidth_l = self->cbwidth_t =
357 self->cbwidth_r = self->cbwidth_b = 0;
358
359 if (self->max_horz) {
360 self->cbwidth_l = self->cbwidth_r = 0;
361 self->width = self->client->area.width;
362 if (self->max_vert)
363 self->cbwidth_b = 0;
364 } else
365 self->width = self->client->area.width +
366 self->cbwidth_l + self->cbwidth_r;
367
368 /* some elements are sized based of the width, so don't let them have
369 negative values */
370 self->width = MAX(self->width,
371 (ob_rr_theme->grip_width + self->bwidth) * 2 + 1);
372
373 STRUT_SET(self->size,
374 self->cbwidth_l + (!self->max_horz ? self->bwidth : 0),
375 self->cbwidth_t + self->bwidth,
376 self->cbwidth_r + (!self->max_horz ? self->bwidth : 0),
377 self->cbwidth_b +
378 (!self->max_horz || !self->max_vert ? self->bwidth : 0));
379
380 if (self->decorations & OB_FRAME_DECOR_TITLEBAR)
381 self->size.top += ob_rr_theme->title_height + self->bwidth;
382 if (self->decorations & OB_FRAME_DECOR_HANDLE &&
383 ob_rr_theme->handle_height > 0)
384 {
385 self->size.bottom += ob_rr_theme->handle_height + self->bwidth;
386 }
387
388 /* position/size and map/unmap all the windows */
389
390 if (!fake) {
391 if (self->cbwidth_l) {
392 XMoveResizeWindow(ob_display, self->innerleft,
393 self->size.left - self->cbwidth_l,
394 self->size.top,
395 self->cbwidth_l, self->client->area.height);
396
397 XMapWindow(ob_display, self->innerleft);
398 } else
399 XUnmapWindow(ob_display, self->innerleft);
400
401 if (self->cbwidth_r) {
402 XMoveResizeWindow(ob_display, self->innerright,
403 self->size.left + self->client->area.width,
404 self->size.top,
405 self->cbwidth_r, self->client->area.height);
406
407 XMapWindow(ob_display, self->innerright);
408 } else
409 XUnmapWindow(ob_display, self->innerright);
410
411 if (self->cbwidth_t) {
412 XMoveResizeWindow(ob_display, self->innertop,
413 self->size.left - self->cbwidth_l,
414 self->size.top - self->cbwidth_t,
415 self->client->area.width +
416 self->cbwidth_l + self->cbwidth_r,
417 self->cbwidth_t);
418
419 XMapWindow(ob_display, self->innertop);
420 } else
421 XUnmapWindow(ob_display, self->innertop);
422
423 if (self->cbwidth_b) {
424 XMoveResizeWindow(ob_display, self->innerbottom,
425 self->size.left - self->cbwidth_l,
426 self->size.top + self->client->area.height,
427 self->client->area.width +
428 self->cbwidth_l + self->cbwidth_r,
429 self->cbwidth_b);
430
431 XMapWindow(ob_display, self->innerbottom);
432 } else
433 XUnmapWindow(ob_display, self->innerbottom);
434
435 if (self->bwidth) {
436 gint titlesides;
437
438 /* height of titleleft and titleright */
439 titlesides = (!self->max_horz ? ob_rr_theme->grip_width : 0);
440
441 XMoveResizeWindow(ob_display, self->titletop,
442 ob_rr_theme->grip_width + self->bwidth, 0,
443 /* width + bwidth*2 - bwidth*2 - grips*2 */
444 self->width - ob_rr_theme->grip_width * 2,
445 self->bwidth);
446 XMoveResizeWindow(ob_display, self->titletopleft,
447 0, 0,
448 ob_rr_theme->grip_width + self->bwidth,
449 self->bwidth);
450 XMoveResizeWindow(ob_display, self->titletopright,
451 self->client->area.width +
452 self->size.left + self->size.right -
453 ob_rr_theme->grip_width - self->bwidth,
454 0,
455 ob_rr_theme->grip_width + self->bwidth,
456 self->bwidth);
457
458 if (titlesides > 0) {
459 XMoveResizeWindow(ob_display, self->titleleft,
460 0, self->bwidth,
461 self->bwidth,
462 titlesides);
463 XMoveResizeWindow(ob_display, self->titleright,
464 self->client->area.width +
465 self->size.left + self->size.right -
466 self->bwidth,
467 self->bwidth,
468 self->bwidth,
469 titlesides);
470
471 XMapWindow(ob_display, self->titleleft);
472 XMapWindow(ob_display, self->titleright);
473 } else {
474 XUnmapWindow(ob_display, self->titleleft);
475 XUnmapWindow(ob_display, self->titleright);
476 }
477
478 XMapWindow(ob_display, self->titletop);
479 XMapWindow(ob_display, self->titletopleft);
480 XMapWindow(ob_display, self->titletopright);
481
482 if (self->decorations & OB_FRAME_DECOR_TITLEBAR) {
483 XMoveResizeWindow(ob_display, self->titlebottom,
484 (self->max_horz ? 0 : self->bwidth),
485 ob_rr_theme->title_height + self->bwidth,
486 self->width,
487 self->bwidth);
488
489 XMapWindow(ob_display, self->titlebottom);
490 } else
491 XUnmapWindow(ob_display, self->titlebottom);
492 } else {
493 XUnmapWindow(ob_display, self->titlebottom);
494
495 XUnmapWindow(ob_display, self->titletop);
496 XUnmapWindow(ob_display, self->titletopleft);
497 XUnmapWindow(ob_display, self->titletopright);
498 XUnmapWindow(ob_display, self->titleleft);
499 XUnmapWindow(ob_display, self->titleright);
500 }
501
502 if (self->decorations & OB_FRAME_DECOR_TITLEBAR) {
503 XMoveResizeWindow(ob_display, self->title,
504 (self->max_horz ? 0 : self->bwidth),
505 self->bwidth,
506 self->width, ob_rr_theme->title_height);
507
508 XMapWindow(ob_display, self->title);
509
510 if (self->decorations & OB_FRAME_DECOR_GRIPS) {
511 XMoveResizeWindow(ob_display, self->topresize,
512 ob_rr_theme->grip_width,
513 0,
514 self->width - ob_rr_theme->grip_width *2,
515 ob_rr_theme->paddingy + 1);
516
517 XMoveWindow(ob_display, self->tltresize, 0, 0);
518 XMoveWindow(ob_display, self->tllresize, 0, 0);
519 XMoveWindow(ob_display, self->trtresize,
520 self->width - ob_rr_theme->grip_width, 0);
521 XMoveWindow(ob_display, self->trrresize,
522 self->width - ob_rr_theme->paddingx - 1, 0);
523
524 XMapWindow(ob_display, self->topresize);
525 XMapWindow(ob_display, self->tltresize);
526 XMapWindow(ob_display, self->tllresize);
527 XMapWindow(ob_display, self->trtresize);
528 XMapWindow(ob_display, self->trrresize);
529 } else {
530 XUnmapWindow(ob_display, self->topresize);
531 XUnmapWindow(ob_display, self->tltresize);
532 XUnmapWindow(ob_display, self->tllresize);
533 XUnmapWindow(ob_display, self->trtresize);
534 XUnmapWindow(ob_display, self->trrresize);
535 }
536 } else
537 XUnmapWindow(ob_display, self->title);
538 }
539
540 if ((self->decorations & OB_FRAME_DECOR_TITLEBAR))
541 /* layout the title bar elements */
542 layout_title(self);
543
544 if (!fake) {
545 gint sidebwidth = self->max_horz ? 0 : self->bwidth;
546
547 if (self->bwidth && self->size.bottom) {
548 XMoveResizeWindow(ob_display, self->handlebottom,
549 ob_rr_theme->grip_width +
550 self->bwidth + sidebwidth,
551 self->size.top + self->client->area.height +
552 self->size.bottom - self->bwidth,
553 self->width - (ob_rr_theme->grip_width +
554 sidebwidth) * 2,
555 self->bwidth);
556
557
558 if (sidebwidth) {
559 XMoveResizeWindow(ob_display, self->lgripleft,
560 0,
561 self->size.top +
562 self->client->area.height +
563 self->size.bottom -
564 (!self->max_horz ?
565 ob_rr_theme->grip_width :
566 self->size.bottom - self->cbwidth_b),
567 self->bwidth,
568 (!self->max_horz ?
569 ob_rr_theme->grip_width :
570 self->size.bottom - self->cbwidth_b));
571 XMoveResizeWindow(ob_display, self->rgripright,
572 self->size.left +
573 self->client->area.width +
574 self->size.right - self->bwidth,
575 self->size.top +
576 self->client->area.height +
577 self->size.bottom -
578 (!self->max_horz ?
579 ob_rr_theme->grip_width :
580 self->size.bottom - self->cbwidth_b),
581 self->bwidth,
582 (!self->max_horz ?
583 ob_rr_theme->grip_width :
584 self->size.bottom - self->cbwidth_b));
585
586 XMapWindow(ob_display, self->lgripleft);
587 XMapWindow(ob_display, self->rgripright);
588 } else {
589 XUnmapWindow(ob_display, self->lgripleft);
590 XUnmapWindow(ob_display, self->rgripright);
591 }
592
593 XMoveResizeWindow(ob_display, self->lgripbottom,
594 sidebwidth,
595 self->size.top + self->client->area.height +
596 self->size.bottom - self->bwidth,
597 ob_rr_theme->grip_width + self->bwidth,
598 self->bwidth);
599 XMoveResizeWindow(ob_display, self->rgripbottom,
600 self->size.left + self->client->area.width +
601 self->size.right - self->bwidth - sidebwidth -
602 ob_rr_theme->grip_width,
603 self->size.top + self->client->area.height +
604 self->size.bottom - self->bwidth,
605 ob_rr_theme->grip_width + self->bwidth,
606 self->bwidth);
607
608 XMapWindow(ob_display, self->handlebottom);
609 XMapWindow(ob_display, self->lgripbottom);
610 XMapWindow(ob_display, self->rgripbottom);
611
612 if (self->decorations & OB_FRAME_DECOR_HANDLE &&
613 ob_rr_theme->handle_height > 0)
614 {
615 XMoveResizeWindow(ob_display, self->handletop,
616 ob_rr_theme->grip_width +
617 self->bwidth + sidebwidth,
618 FRAME_HANDLE_Y(self),
619 self->width - (ob_rr_theme->grip_width +
620 sidebwidth) * 2,
621 self->bwidth);
622 XMapWindow(ob_display, self->handletop);
623
624 if (self->decorations & OB_FRAME_DECOR_GRIPS) {
625 XMoveResizeWindow(ob_display, self->handleleft,
626 ob_rr_theme->grip_width,
627 0,
628 self->bwidth,
629 ob_rr_theme->handle_height);
630 XMoveResizeWindow(ob_display, self->handleright,
631 self->width -
632 ob_rr_theme->grip_width -
633 self->bwidth,
634 0,
635 self->bwidth,
636 ob_rr_theme->handle_height);
637
638 XMoveResizeWindow(ob_display, self->lgriptop,
639 sidebwidth,
640 FRAME_HANDLE_Y(self),
641 ob_rr_theme->grip_width +
642 self->bwidth,
643 self->bwidth);
644 XMoveResizeWindow(ob_display, self->rgriptop,
645 self->size.left +
646 self->client->area.width +
647 self->size.right - self->bwidth -
648 sidebwidth - ob_rr_theme->grip_width,
649 FRAME_HANDLE_Y(self),
650 ob_rr_theme->grip_width +
651 self->bwidth,
652 self->bwidth);
653
654 XMapWindow(ob_display, self->handleleft);
655 XMapWindow(ob_display, self->handleright);
656 XMapWindow(ob_display, self->lgriptop);
657 XMapWindow(ob_display, self->rgriptop);
658 } else {
659 XUnmapWindow(ob_display, self->handleleft);
660 XUnmapWindow(ob_display, self->handleright);
661 XUnmapWindow(ob_display, self->lgriptop);
662 XUnmapWindow(ob_display, self->rgriptop);
663 }
664 } else {
665 XUnmapWindow(ob_display, self->handleleft);
666 XUnmapWindow(ob_display, self->handleright);
667 XUnmapWindow(ob_display, self->lgriptop);
668 XUnmapWindow(ob_display, self->rgriptop);
669
670 XUnmapWindow(ob_display, self->handletop);
671 }
672 } else {
673 XUnmapWindow(ob_display, self->handleleft);
674 XUnmapWindow(ob_display, self->handleright);
675 XUnmapWindow(ob_display, self->lgriptop);
676 XUnmapWindow(ob_display, self->rgriptop);
677
678 XUnmapWindow(ob_display, self->handletop);
679
680 XUnmapWindow(ob_display, self->handlebottom);
681 XUnmapWindow(ob_display, self->lgripleft);
682 XUnmapWindow(ob_display, self->rgripright);
683 XUnmapWindow(ob_display, self->lgripbottom);
684 XUnmapWindow(ob_display, self->rgripbottom);
685 }
686
687 if (self->decorations & OB_FRAME_DECOR_HANDLE &&
688 ob_rr_theme->handle_height > 0)
689 {
690 XMoveResizeWindow(ob_display, self->handle,
691 sidebwidth,
692 FRAME_HANDLE_Y(self) + self->bwidth,
693 self->width, ob_rr_theme->handle_height);
694 XMapWindow(ob_display, self->handle);
695
696 if (self->decorations & OB_FRAME_DECOR_GRIPS) {
697 XMoveResizeWindow(ob_display, self->lgrip,
698 0, 0,
699 ob_rr_theme->grip_width,
700 ob_rr_theme->handle_height);
701 XMoveResizeWindow(ob_display, self->rgrip,
702 self->width - ob_rr_theme->grip_width,
703 0,
704 ob_rr_theme->grip_width,
705 ob_rr_theme->handle_height);
706
707 XMapWindow(ob_display, self->lgrip);
708 XMapWindow(ob_display, self->rgrip);
709 } else {
710 XUnmapWindow(ob_display, self->lgrip);
711 XUnmapWindow(ob_display, self->rgrip);
712 }
713 } else {
714 XUnmapWindow(ob_display, self->lgrip);
715 XUnmapWindow(ob_display, self->rgrip);
716
717 XUnmapWindow(ob_display, self->handle);
718 }
719
720 if (self->bwidth && !self->max_horz) {
721 XMoveResizeWindow(ob_display, self->left,
722 0,
723 self->bwidth + ob_rr_theme->grip_width,
724 self->bwidth,
725 self->client->area.height +
726 self->size.top + self->size.bottom -
727 ob_rr_theme->grip_width * 2);
728
729 XMapWindow(ob_display, self->left);
730 } else
731 XUnmapWindow(ob_display, self->left);
732
733 if (self->bwidth && !self->max_horz) {
734 XMoveResizeWindow(ob_display, self->right,
735 self->client->area.width + self->cbwidth_l +
736 self->cbwidth_r + self->bwidth,
737 self->bwidth + ob_rr_theme->grip_width,
738 self->bwidth,
739 self->client->area.height +
740 self->size.top + self->size.bottom -
741 ob_rr_theme->grip_width * 2);
742
743 XMapWindow(ob_display, self->right);
744 } else
745 XUnmapWindow(ob_display, self->right);
746
747 XMoveResizeWindow(ob_display, self->backback,
748 self->size.left, self->size.top,
749 self->client->area.width,
750 self->client->area.height);
751 }
752 }
753
754 /* shading can change without being moved or resized */
755 RECT_SET_SIZE(self->area,
756 self->client->area.width +
757 self->size.left + self->size.right,
758 (self->client->shaded ?
759 ob_rr_theme->title_height + self->bwidth * 2:
760 self->client->area.height +
761 self->size.top + self->size.bottom));
762
763 if ((moved || resized) && !fake) {
764 /* find the new coordinates, done after setting the frame.size, for
765 frame_client_gravity. */
766 self->area.x = self->client->area.x;
767 self->area.y = self->client->area.y;
768 frame_client_gravity(self, &self->area.x, &self->area.y);
769 }
770
771 if (!fake) {
772 if (!frame_iconify_animating(self))
773 /* move and resize the top level frame.
774 shading can change without being moved or resized.
775
776 but don't do this during an iconify animation. it will be
777 reflected afterwards.
778 */
779 XMoveResizeWindow(ob_display, self->window,
780 self->area.x,
781 self->area.y,
782 self->area.width,
783 self->area.height);
784
785 /* when the client has StaticGravity, it likes to move around.
786 also this correctly positions the client when it maps.
787 this also needs to be run when the frame's decorations sizes change!
788 */
789 XMoveWindow(ob_display, self->client->window,
790 self->size.left, self->size.top);
791
792 if (resized) {
793 self->need_render = TRUE;
794 framerender_frame(self);
795 frame_adjust_shape(self);
796 }
797
798 if (!STRUT_EQUAL(self->size, oldsize)) {
799 gulong vals[4];
800 vals[0] = self->size.left;
801 vals[1] = self->size.right;
802 vals[2] = self->size.top;
803 vals[3] = self->size.bottom;
804 PROP_SETA32(self->client->window, net_frame_extents,
805 cardinal, vals, 4);
806 PROP_SETA32(self->client->window, kde_net_wm_frame_strut,
807 cardinal, vals, 4);
808 }
809
810 /* if this occurs while we are focus cycling, the indicator needs to
811 match the changes */
812 if (focus_cycle_target == self->client)
813 focus_cycle_draw_indicator(self->client);
814 }
815 if (resized && (self->decorations & OB_FRAME_DECOR_TITLEBAR))
816 XResizeWindow(ob_display, self->label, self->label_width,
817 ob_rr_theme->label_height);
818
819 }
820
821 static void frame_adjust_cursors(ObFrame *self)
822 {
823 if ((self->functions & OB_CLIENT_FUNC_RESIZE) !=
824 (self->client->functions & OB_CLIENT_FUNC_RESIZE) ||
825 self->max_horz != self->client->max_horz ||
826 self->max_vert != self->client->max_vert ||
827 self->shaded != self->client->shaded)
828 {
829 gboolean r = (self->client->functions & OB_CLIENT_FUNC_RESIZE) &&
830 !(self->client->max_horz && self->client->max_vert);
831 gboolean topbot = !self->client->max_vert;
832 gboolean sh = self->client->shaded;
833 XSetWindowAttributes a;
834
835 /* these ones turn off when max vert, and some when shaded */
836 a.cursor = ob_cursor(r && topbot && !sh ?
837 OB_CURSOR_NORTH : OB_CURSOR_NONE);
838 XChangeWindowAttributes(ob_display, self->topresize, CWCursor, &a);
839 XChangeWindowAttributes(ob_display, self->titletop, CWCursor, &a);
840 a.cursor = ob_cursor(r && topbot ? OB_CURSOR_SOUTH : OB_CURSOR_NONE);
841 XChangeWindowAttributes(ob_display, self->handle, CWCursor, &a);
842 XChangeWindowAttributes(ob_display, self->handletop, CWCursor, &a);
843 XChangeWindowAttributes(ob_display, self->handlebottom, CWCursor, &a);
844 XChangeWindowAttributes(ob_display, self->innerbottom, CWCursor, &a);
845
846 /* these ones change when shaded */
847 a.cursor = ob_cursor(r ? (sh ? OB_CURSOR_WEST : OB_CURSOR_NORTHWEST) :
848 OB_CURSOR_NONE);
849 XChangeWindowAttributes(ob_display, self->titleleft, CWCursor, &a);
850 XChangeWindowAttributes(ob_display, self->tltresize, CWCursor, &a);
851 XChangeWindowAttributes(ob_display, self->tllresize, CWCursor, &a);
852 XChangeWindowAttributes(ob_display, self->titletopleft, CWCursor, &a);
853 a.cursor = ob_cursor(r ? (sh ? OB_CURSOR_EAST : OB_CURSOR_NORTHEAST) :
854 OB_CURSOR_NONE);
855 XChangeWindowAttributes(ob_display, self->titleright, CWCursor, &a);
856 XChangeWindowAttributes(ob_display, self->trtresize, CWCursor, &a);
857 XChangeWindowAttributes(ob_display, self->trrresize, CWCursor, &a);
858 XChangeWindowAttributes(ob_display, self->titletopright, CWCursor, &a);
859
860 /* these ones are pretty static */
861 a.cursor = ob_cursor(r ? OB_CURSOR_WEST : OB_CURSOR_NONE);
862 XChangeWindowAttributes(ob_display, self->left, CWCursor, &a);
863 XChangeWindowAttributes(ob_display, self->innerleft, CWCursor, &a);
864 a.cursor = ob_cursor(r ? OB_CURSOR_EAST : OB_CURSOR_NONE);
865 XChangeWindowAttributes(ob_display, self->right, CWCursor, &a);
866 XChangeWindowAttributes(ob_display, self->innerright, CWCursor, &a);
867 a.cursor = ob_cursor(r ? OB_CURSOR_SOUTHWEST : OB_CURSOR_NONE);
868 XChangeWindowAttributes(ob_display, self->lgrip, CWCursor, &a);
869 XChangeWindowAttributes(ob_display, self->handleleft, CWCursor, &a);
870 XChangeWindowAttributes(ob_display, self->lgripleft, CWCursor, &a);
871 XChangeWindowAttributes(ob_display, self->lgriptop, CWCursor, &a);
872 XChangeWindowAttributes(ob_display, self->lgripbottom, CWCursor, &a);
873 a.cursor = ob_cursor(r ? OB_CURSOR_SOUTHEAST : OB_CURSOR_NONE);
874 XChangeWindowAttributes(ob_display, self->rgrip, CWCursor, &a);
875 XChangeWindowAttributes(ob_display, self->handleright, CWCursor, &a);
876 XChangeWindowAttributes(ob_display, self->rgripright, CWCursor, &a);
877 XChangeWindowAttributes(ob_display, self->rgriptop, CWCursor, &a);
878 XChangeWindowAttributes(ob_display, self->rgripbottom, CWCursor, &a);
879 }
880 }
881
882 void frame_adjust_client_area(ObFrame *self)
883 {
884 /* adjust the window which is there to prevent flashing on unmap */
885 XMoveResizeWindow(ob_display, self->backfront, 0, 0,
886 self->client->area.width,
887 self->client->area.height);
888 }
889
890 void frame_adjust_state(ObFrame *self)
891 {
892 self->need_render = TRUE;
893 framerender_frame(self);
894 }
895
896 void frame_adjust_focus(ObFrame *self, gboolean hilite)
897 {
898 self->focused = hilite;
899 self->need_render = TRUE;
900 framerender_frame(self);
901 XFlush(ob_display);
902 }
903
904 void frame_adjust_title(ObFrame *self)
905 {
906 self->need_render = TRUE;
907 framerender_frame(self);
908 }
909
910 void frame_adjust_icon(ObFrame *self)
911 {
912 self->need_render = TRUE;
913 framerender_frame(self);
914 }
915
916 void frame_grab_client(ObFrame *self)
917 {
918 /* DO NOT map the client window here. we used to do that, but it is bogus.
919 we need to set up the client's dimensions and everything before we
920 send a mapnotify or we create race conditions.
921 */
922
923 /* reparent the client to the frame */
924 XReparentWindow(ob_display, self->client->window, self->window, 0, 0);
925
926 /*
927 When reparenting the client window, it is usually not mapped yet, since
928 this occurs from a MapRequest. However, in the case where Openbox is
929 starting up, the window is already mapped, so we'll see an unmap event
930 for it.
931 */
932 if (ob_state() == OB_STATE_STARTING)
933 ++self->client->ignore_unmaps;
934
935 /* select the event mask on the client's parent (to receive config/map
936 req's) the ButtonPress is to catch clicks on the client border */
937 XSelectInput(ob_display, self->window, FRAME_EVENTMASK);
938
939 /* set all the windows for the frame in the window_map */
940 g_hash_table_insert(window_map, &self->window, self->client);
941 g_hash_table_insert(window_map, &self->backback, self->client);
942 g_hash_table_insert(window_map, &self->backfront, self->client);
943 g_hash_table_insert(window_map, &self->innerleft, self->client);
944 g_hash_table_insert(window_map, &self->innertop, self->client);
945 g_hash_table_insert(window_map, &self->innerright, self->client);
946 g_hash_table_insert(window_map, &self->innerbottom, self->client);
947 g_hash_table_insert(window_map, &self->title, self->client);
948 g_hash_table_insert(window_map, &self->label, self->client);
949 g_hash_table_insert(window_map, &self->max, self->client);
950 g_hash_table_insert(window_map, &self->close, self->client);
951 g_hash_table_insert(window_map, &self->desk, self->client);
952 g_hash_table_insert(window_map, &self->shade, self->client);
953 g_hash_table_insert(window_map, &self->icon, self->client);
954 g_hash_table_insert(window_map, &self->iconify, self->client);
955 g_hash_table_insert(window_map, &self->handle, self->client);
956 g_hash_table_insert(window_map, &self->lgrip, self->client);
957 g_hash_table_insert(window_map, &self->rgrip, self->client);
958 g_hash_table_insert(window_map, &self->topresize, self->client);
959 g_hash_table_insert(window_map, &self->tltresize, self->client);
960 g_hash_table_insert(window_map, &self->tllresize, self->client);
961 g_hash_table_insert(window_map, &self->trtresize, self->client);
962 g_hash_table_insert(window_map, &self->trrresize, self->client);
963 g_hash_table_insert(window_map, &self->left, self->client);
964 g_hash_table_insert(window_map, &self->right, self->client);
965 g_hash_table_insert(window_map, &self->titleleft, self->client);
966 g_hash_table_insert(window_map, &self->titletop, self->client);
967 g_hash_table_insert(window_map, &self->titletopleft, self->client);
968 g_hash_table_insert(window_map, &self->titletopright, self->client);
969 g_hash_table_insert(window_map, &self->titleright, self->client);
970 g_hash_table_insert(window_map, &self->titlebottom, self->client);
971 g_hash_table_insert(window_map, &self->handleleft, self->client);
972 g_hash_table_insert(window_map, &self->handletop, self->client);
973 g_hash_table_insert(window_map, &self->handleright, self->client);
974 g_hash_table_insert(window_map, &self->handlebottom, self->client);
975 g_hash_table_insert(window_map, &self->lgripleft, self->client);
976 g_hash_table_insert(window_map, &self->lgriptop, self->client);
977 g_hash_table_insert(window_map, &self->lgripbottom, self->client);
978 g_hash_table_insert(window_map, &self->rgripright, self->client);
979 g_hash_table_insert(window_map, &self->rgriptop, self->client);
980 g_hash_table_insert(window_map, &self->rgripbottom, self->client);
981 }
982
983 void frame_release_client(ObFrame *self)
984 {
985 XEvent ev;
986 gboolean reparent = TRUE;
987
988 /* if there was any animation going on, kill it */
989 ob_main_loop_timeout_remove_data(ob_main_loop, frame_animate_iconify,
990 self, FALSE);
991
992 /* check if the app has already reparented its window away */
993 while (XCheckTypedWindowEvent(ob_display, self->client->window,
994 ReparentNotify, &ev))
995 {
996 /* This check makes sure we don't catch our own reparent action to
997 our frame window. This doesn't count as the app reparenting itself
998 away of course.
999
1000 Reparent events that are generated by us are just discarded here.
1001 They are of no consequence to us anyhow.
1002 */
1003 if (ev.xreparent.parent != self->window) {
1004 reparent = FALSE;
1005 XPutBackEvent(ob_display, &ev);
1006 break;
1007 }
1008 }
1009
1010 if (reparent) {
1011 /* according to the ICCCM - if the client doesn't reparent itself,
1012 then we will reparent the window to root for them */
1013 XReparentWindow(ob_display, self->client->window,
1014 RootWindow(ob_display, ob_screen),
1015 self->client->area.x,
1016 self->client->area.y);
1017 }
1018
1019 /* remove all the windows for the frame from the window_map */
1020 g_hash_table_remove(window_map, &self->window);
1021 g_hash_table_remove(window_map, &self->backback);
1022 g_hash_table_remove(window_map, &self->backfront);
1023 g_hash_table_remove(window_map, &self->innerleft);
1024 g_hash_table_remove(window_map, &self->innertop);
1025 g_hash_table_remove(window_map, &self->innerright);
1026 g_hash_table_remove(window_map, &self->innerbottom);
1027 g_hash_table_remove(window_map, &self->title);
1028 g_hash_table_remove(window_map, &self->label);
1029 g_hash_table_remove(window_map, &self->max);
1030 g_hash_table_remove(window_map, &self->close);
1031 g_hash_table_remove(window_map, &self->desk);
1032 g_hash_table_remove(window_map, &self->shade);
1033 g_hash_table_remove(window_map, &self->icon);
1034 g_hash_table_remove(window_map, &self->iconify);
1035 g_hash_table_remove(window_map, &self->handle);
1036 g_hash_table_remove(window_map, &self->lgrip);
1037 g_hash_table_remove(window_map, &self->rgrip);
1038 g_hash_table_remove(window_map, &self->topresize);
1039 g_hash_table_remove(window_map, &self->tltresize);
1040 g_hash_table_remove(window_map, &self->tllresize);
1041 g_hash_table_remove(window_map, &self->trtresize);
1042 g_hash_table_remove(window_map, &self->trrresize);
1043 g_hash_table_remove(window_map, &self->left);
1044 g_hash_table_remove(window_map, &self->right);
1045 g_hash_table_remove(window_map, &self->titleleft);
1046 g_hash_table_remove(window_map, &self->titletop);
1047 g_hash_table_remove(window_map, &self->titletopleft);
1048 g_hash_table_remove(window_map, &self->titletopright);
1049 g_hash_table_remove(window_map, &self->titleright);
1050 g_hash_table_remove(window_map, &self->titlebottom);
1051 g_hash_table_remove(window_map, &self->handleleft);
1052 g_hash_table_remove(window_map, &self->handletop);
1053 g_hash_table_remove(window_map, &self->handleright);
1054 g_hash_table_remove(window_map, &self->handlebottom);
1055 g_hash_table_remove(window_map, &self->lgripleft);
1056 g_hash_table_remove(window_map, &self->lgriptop);
1057 g_hash_table_remove(window_map, &self->lgripbottom);
1058 g_hash_table_remove(window_map, &self->rgripright);
1059 g_hash_table_remove(window_map, &self->rgriptop);
1060 g_hash_table_remove(window_map, &self->rgripbottom);
1061
1062 ob_main_loop_timeout_remove_data(ob_main_loop, flash_timeout, self, TRUE);
1063 }
1064
1065 /* is there anything present between us and the label? */
1066 static gboolean is_button_present(ObFrame *self, const gchar *lc, gint dir) {
1067 for (; *lc != '\0' && lc >= config_title_layout; lc += dir) {
1068 if (*lc == ' ') continue; /* it was invalid */
1069 if (*lc == 'N' && self->decorations & OB_FRAME_DECOR_ICON)
1070 return TRUE;
1071 if (*lc == 'D' && self->decorations & OB_FRAME_DECOR_ALLDESKTOPS)
1072 return TRUE;
1073 if (*lc == 'S' && self->decorations & OB_FRAME_DECOR_SHADE)
1074 return TRUE;
1075 if (*lc == 'I' && self->decorations & OB_FRAME_DECOR_ICONIFY)
1076 return TRUE;
1077 if (*lc == 'M' && self->decorations & OB_FRAME_DECOR_MAXIMIZE)
1078 return TRUE;
1079 if (*lc == 'C' && self->decorations & OB_FRAME_DECOR_CLOSE)
1080 return TRUE;
1081 if (*lc == 'L') return FALSE;
1082 }
1083 return FALSE;
1084 }
1085
1086 static void layout_title(ObFrame *self)
1087 {
1088 gchar *lc;
1089 gint i;
1090
1091 const gint bwidth = ob_rr_theme->button_size + ob_rr_theme->paddingx + 1;
1092 /* position of the left most button */
1093 const gint left = ob_rr_theme->paddingx + 1;
1094 /* position of the right most button */
1095 const gint right = self->width;
1096
1097 /* turn them all off */
1098 self->icon_on = self->desk_on = self->shade_on = self->iconify_on =
1099 self->max_on = self->close_on = self->label_on = FALSE;
1100 self->label_width = self->width - (ob_rr_theme->paddingx + 1) * 2;
1101 self->leftmost = self->rightmost = OB_FRAME_CONTEXT_NONE;
1102
1103 /* figure out what's being show, find each element's position, and the
1104 width of the label
1105
1106 do the ones before the label, then after the label,
1107 i will be +1 the first time through when working to the left,
1108 and -1 the second time through when working to the right */
1109 for (i = 1; i >= -1; i-=2) {
1110 gint x;
1111 ObFrameContext *firstcon;
1112
1113 if (i > 0) {
1114 x = left;
1115 lc = config_title_layout;
1116 firstcon = &self->leftmost;
1117 } else {
1118 x = right;
1119 lc = config_title_layout + strlen(config_title_layout)-1;
1120 firstcon = &self->rightmost;
1121 }
1122
1123 /* stop at the end of the string (or the label, which calls break) */
1124 for (; *lc != '\0' && lc >= config_title_layout; lc+=i) {
1125 if (*lc == 'L') {
1126 if (i > 0) {
1127 self->label_on = TRUE;
1128 self->label_x = x;
1129 }
1130 break; /* break the for loop, do other side of label */
1131 } else if (*lc == 'N') {
1132 if (firstcon) *firstcon = OB_FRAME_CONTEXT_ICON;
1133 if ((self->icon_on = is_button_present(self, lc, i))) {
1134 /* icon is bigger than buttons */
1135 self->label_width -= bwidth + 2;
1136 if (i > 0) self->icon_x = x;
1137 x += i * (bwidth + 2);
1138 if (i < 0) self->icon_x = x;
1139 }
1140 } else if (*lc == 'D') {
1141 if (firstcon) *firstcon = OB_FRAME_CONTEXT_ALLDESKTOPS;
1142 if ((self->desk_on = is_button_present(self, lc, i))) {
1143 self->label_width -= bwidth;
1144 if (i > 0) self->desk_x = x;
1145 x += i * bwidth;
1146 if (i < 0) self->desk_x = x;
1147 }
1148 } else if (*lc == 'S') {
1149 if (firstcon) *firstcon = OB_FRAME_CONTEXT_SHADE;
1150 if ((self->shade_on = is_button_present(self, lc, i))) {
1151 self->label_width -= bwidth;
1152 if (i > 0) self->shade_x = x;
1153 x += i * bwidth;
1154 if (i < 0) self->shade_x = x;
1155 }
1156 } else if (*lc == 'I') {
1157 if (firstcon) *firstcon = OB_FRAME_CONTEXT_ICONIFY;
1158 if ((self->iconify_on = is_button_present(self, lc, i))) {
1159 self->label_width -= bwidth;
1160 if (i > 0) self->iconify_x = x;
1161 x += i * bwidth;
1162 if (i < 0) self->iconify_x = x;
1163 }
1164 } else if (*lc == 'M') {
1165 if (firstcon) *firstcon = OB_FRAME_CONTEXT_MAXIMIZE;
1166 if ((self->max_on = is_button_present(self, lc, i))) {
1167 self->label_width -= bwidth;
1168 if (i > 0) self->max_x = x;
1169 x += i * bwidth;
1170 if (i < 0) self->max_x = x;
1171 }
1172 } else if (*lc == 'C') {
1173 if (firstcon) *firstcon = OB_FRAME_CONTEXT_CLOSE;
1174 if ((self->close_on = is_button_present(self, lc, i))) {
1175 self->label_width -= bwidth;
1176 if (i > 0) self->close_x = x;
1177 x += i * bwidth;
1178 if (i < 0) self->close_x = x;
1179 }
1180 } else
1181 continue; /* don't set firstcon */
1182 firstcon = NULL;
1183 }
1184 }
1185
1186 /* position and map the elements */
1187 if (self->icon_on) {
1188 XMapWindow(ob_display, self->icon);
1189 XMoveWindow(ob_display, self->icon, self->icon_x,
1190 ob_rr_theme->paddingy);
1191 } else
1192 XUnmapWindow(ob_display, self->icon);
1193
1194 if (self->desk_on) {
1195 XMapWindow(ob_display, self->desk);
1196 XMoveWindow(ob_display, self->desk, self->desk_x,
1197 ob_rr_theme->paddingy + 1);
1198 } else
1199 XUnmapWindow(ob_display, self->desk);
1200
1201 if (self->shade_on) {
1202 XMapWindow(ob_display, self->shade);
1203 XMoveWindow(ob_display, self->shade, self->shade_x,
1204 ob_rr_theme->paddingy + 1);
1205 } else
1206 XUnmapWindow(ob_display, self->shade);
1207
1208 if (self->iconify_on) {
1209 XMapWindow(ob_display, self->iconify);
1210 XMoveWindow(ob_display, self->iconify, self->iconify_x,
1211 ob_rr_theme->paddingy + 1);
1212 } else
1213 XUnmapWindow(ob_display, self->iconify);
1214
1215 if (self->max_on) {
1216 XMapWindow(ob_display, self->max);
1217 XMoveWindow(ob_display, self->max, self->max_x,
1218 ob_rr_theme->paddingy + 1);
1219 } else
1220 XUnmapWindow(ob_display, self->max);
1221
1222 if (self->close_on) {
1223 XMapWindow(ob_display, self->close);
1224 XMoveWindow(ob_display, self->close, self->close_x,
1225 ob_rr_theme->paddingy + 1);
1226 } else
1227 XUnmapWindow(ob_display, self->close);
1228
1229 if (self->label_on) {
1230 self->label_width = MAX(1, self->label_width); /* no lower than 1 */
1231 XMapWindow(ob_display, self->label);
1232 XMoveWindow(ob_display, self->label, self->label_x,
1233 ob_rr_theme->paddingy);
1234 } else
1235 XUnmapWindow(ob_display, self->label);
1236 }
1237
1238 ObFrameContext frame_context_from_string(const gchar *name)
1239 {
1240 if (!g_ascii_strcasecmp("Desktop", name))
1241 return OB_FRAME_CONTEXT_DESKTOP;
1242 else if (!g_ascii_strcasecmp("Root", name))
1243 return OB_FRAME_CONTEXT_ROOT;
1244 else if (!g_ascii_strcasecmp("Client", name))
1245 return OB_FRAME_CONTEXT_CLIENT;
1246 else if (!g_ascii_strcasecmp("Titlebar", name))
1247 return OB_FRAME_CONTEXT_TITLEBAR;
1248 else if (!g_ascii_strcasecmp("Frame", name))
1249 return OB_FRAME_CONTEXT_FRAME;
1250 else if (!g_ascii_strcasecmp("TLCorner", name))
1251 return OB_FRAME_CONTEXT_TLCORNER;
1252 else if (!g_ascii_strcasecmp("TRCorner", name))
1253 return OB_FRAME_CONTEXT_TRCORNER;
1254 else if (!g_ascii_strcasecmp("BLCorner", name))
1255 return OB_FRAME_CONTEXT_BLCORNER;
1256 else if (!g_ascii_strcasecmp("BRCorner", name))
1257 return OB_FRAME_CONTEXT_BRCORNER;
1258 else if (!g_ascii_strcasecmp("Top", name))
1259 return OB_FRAME_CONTEXT_TOP;
1260 else if (!g_ascii_strcasecmp("Bottom", name))
1261 return OB_FRAME_CONTEXT_BOTTOM;
1262 else if (!g_ascii_strcasecmp("Left", name))
1263 return OB_FRAME_CONTEXT_LEFT;
1264 else if (!g_ascii_strcasecmp("Right", name))
1265 return OB_FRAME_CONTEXT_RIGHT;
1266 else if (!g_ascii_strcasecmp("Maximize", name))
1267 return OB_FRAME_CONTEXT_MAXIMIZE;
1268 else if (!g_ascii_strcasecmp("AllDesktops", name))
1269 return OB_FRAME_CONTEXT_ALLDESKTOPS;
1270 else if (!g_ascii_strcasecmp("Shade", name))
1271 return OB_FRAME_CONTEXT_SHADE;
1272 else if (!g_ascii_strcasecmp("Iconify", name))
1273 return OB_FRAME_CONTEXT_ICONIFY;
1274 else if (!g_ascii_strcasecmp("Icon", name))
1275 return OB_FRAME_CONTEXT_ICON;
1276 else if (!g_ascii_strcasecmp("Close", name))
1277 return OB_FRAME_CONTEXT_CLOSE;
1278 else if (!g_ascii_strcasecmp("MoveResize", name))
1279 return OB_FRAME_CONTEXT_MOVE_RESIZE;
1280 return OB_FRAME_CONTEXT_NONE;
1281 }
1282
1283 ObFrameContext frame_context(ObClient *client, Window win, gint x, gint y)
1284 {
1285 ObFrame *self;
1286
1287 if (moveresize_in_progress)
1288 return OB_FRAME_CONTEXT_MOVE_RESIZE;
1289
1290 if (win == RootWindow(ob_display, ob_screen))
1291 return OB_FRAME_CONTEXT_ROOT ;
1292 if (client == NULL) return OB_FRAME_CONTEXT_NONE;
1293 if (win == client->window) {
1294 /* conceptually, this is the desktop, as far as users are
1295 concerned */
1296 if (client->type == OB_CLIENT_TYPE_DESKTOP)
1297 return OB_FRAME_CONTEXT_DESKTOP;
1298 return OB_FRAME_CONTEXT_CLIENT;
1299 }
1300
1301 self = client->frame;
1302
1303 /* when the user clicks in the corners of the titlebar and the client
1304 is fully maximized, then treat it like they clicked in the
1305 button that is there */
1306 if (self->max_horz && self->max_vert &&
1307 (win == self->title || win == self->titletop ||
1308 win == self->titleleft || win == self->titletopleft ||
1309 win == self->titleright || win == self->titletopright))
1310 {
1311 /* get the mouse coords in reference to the whole frame */
1312 gint fx = x;
1313 gint fy = y;
1314
1315 /* these windows are down a border width from the top of the frame */
1316 if (win == self->title ||
1317 win == self->titleleft || win == self->titleright)
1318 fy += self->bwidth;
1319
1320 /* title is a border width in from the edge */
1321 if (win == self->title)
1322 fx += self->bwidth;
1323 /* titletop is a bit to the right */
1324 else if (win == self->titletop)
1325 fx += ob_rr_theme->grip_width + self->bwidth;
1326 /* titletopright is way to the right edge */
1327 else if (win == self->titletopright)
1328 fx += self->area.width - (ob_rr_theme->grip_width + self->bwidth);
1329 /* titleright is even more way to the right edge */
1330 else if (win == self->titleright)
1331 fx += self->area.width - self->bwidth;
1332
1333 /* figure out if we're over the area that should be considered a
1334 button */
1335 if (fy < self->bwidth + ob_rr_theme->paddingy + 1 +
1336 ob_rr_theme->button_size)
1337 {
1338 if (fx < (self->bwidth + ob_rr_theme->paddingx + 1 +
1339 ob_rr_theme->button_size))
1340 {
1341 if (self->leftmost != OB_FRAME_CONTEXT_NONE)
1342 return self->leftmost;
1343 }
1344 else if (fx >= (self->area.width -
1345 (self->bwidth + ob_rr_theme->paddingx + 1 +
1346 ob_rr_theme->button_size)))
1347 {
1348 if (self->rightmost != OB_FRAME_CONTEXT_NONE)
1349 return self->rightmost;
1350 }
1351 }
1352
1353 /* there is no resizing maximized windows so make them the titlebar
1354 context */
1355 return OB_FRAME_CONTEXT_TITLEBAR;
1356 }
1357 else if (self->max_vert &&
1358 (win == self->titletop || win == self->topresize))
1359 /* can't resize vertically when max vert */
1360 return OB_FRAME_CONTEXT_TITLEBAR;
1361 else if (self->shaded &&
1362 (win == self->titletop || win == self->topresize))
1363 /* can't resize vertically when shaded */
1364 return OB_FRAME_CONTEXT_TITLEBAR;
1365
1366 if (win == self->window) return OB_FRAME_CONTEXT_FRAME;
1367 if (win == self->label) return OB_FRAME_CONTEXT_TITLEBAR;
1368 if (win == self->handle) return OB_FRAME_CONTEXT_BOTTOM;
1369 if (win == self->handletop) return OB_FRAME_CONTEXT_BOTTOM;
1370 if (win == self->handlebottom) return OB_FRAME_CONTEXT_BOTTOM;
1371 if (win == self->handleleft) return OB_FRAME_CONTEXT_BLCORNER;
1372 if (win == self->lgrip) return OB_FRAME_CONTEXT_BLCORNER;
1373 if (win == self->lgripleft) return OB_FRAME_CONTEXT_BLCORNER;
1374 if (win == self->lgriptop) return OB_FRAME_CONTEXT_BLCORNER;
1375 if (win == self->lgripbottom) return OB_FRAME_CONTEXT_BLCORNER;
1376 if (win == self->handleright) return OB_FRAME_CONTEXT_BRCORNER;
1377 if (win == self->rgrip) return OB_FRAME_CONTEXT_BRCORNER;
1378 if (win == self->rgripright) return OB_FRAME_CONTEXT_BLCORNER;
1379 if (win == self->rgriptop) return OB_FRAME_CONTEXT_BLCORNER;
1380 if (win == self->rgripbottom) return OB_FRAME_CONTEXT_BLCORNER;
1381 if (win == self->title) return OB_FRAME_CONTEXT_TITLEBAR;
1382 if (win == self->titlebottom) return OB_FRAME_CONTEXT_TITLEBAR;
1383 if (win == self->titleleft) return OB_FRAME_CONTEXT_TLCORNER;
1384 if (win == self->titletopleft) return OB_FRAME_CONTEXT_TLCORNER;
1385 if (win == self->titleright) return OB_FRAME_CONTEXT_TRCORNER;
1386 if (win == self->titletopright) return OB_FRAME_CONTEXT_TRCORNER;
1387 if (win == self->titletop) return OB_FRAME_CONTEXT_TOP;
1388 if (win == self->topresize) return OB_FRAME_CONTEXT_TOP;
1389 if (win == self->tltresize) return OB_FRAME_CONTEXT_TLCORNER;
1390 if (win == self->tllresize) return OB_FRAME_CONTEXT_TLCORNER;
1391 if (win == self->trtresize) return OB_FRAME_CONTEXT_TRCORNER;
1392 if (win == self->trrresize) return OB_FRAME_CONTEXT_TRCORNER;
1393 if (win == self->left) return OB_FRAME_CONTEXT_LEFT;
1394 if (win == self->right) return OB_FRAME_CONTEXT_RIGHT;
1395 if (win == self->innertop) return OB_FRAME_CONTEXT_TITLEBAR;
1396 if (win == self->innerleft) return OB_FRAME_CONTEXT_LEFT;
1397 if (win == self->innerbottom) return OB_FRAME_CONTEXT_BOTTOM;
1398 if (win == self->innerright) return OB_FRAME_CONTEXT_RIGHT;
1399 if (win == self->max) return OB_FRAME_CONTEXT_MAXIMIZE;
1400 if (win == self->iconify) return OB_FRAME_CONTEXT_ICONIFY;
1401 if (win == self->close) return OB_FRAME_CONTEXT_CLOSE;
1402 if (win == self->icon) return OB_FRAME_CONTEXT_ICON;
1403 if (win == self->desk) return OB_FRAME_CONTEXT_ALLDESKTOPS;
1404 if (win == self->shade) return OB_FRAME_CONTEXT_SHADE;
1405
1406 return OB_FRAME_CONTEXT_NONE;
1407 }
1408
1409 void frame_client_gravity(ObFrame *self, gint *x, gint *y)
1410 {
1411 /* horizontal */
1412 switch (self->client->gravity) {
1413 default:
1414 case NorthWestGravity:
1415 case SouthWestGravity:
1416 case WestGravity:
1417 break;
1418
1419 case NorthGravity:
1420 case SouthGravity:
1421 case CenterGravity:
1422 /* the middle of the client will be the middle of the frame */
1423 *x -= (self->size.right - self->size.left) / 2;
1424 break;
1425
1426 case NorthEastGravity:
1427 case SouthEastGravity:
1428 case EastGravity:
1429 /* the right side of the client will be the right side of the frame */
1430 *x -= self->size.right + self->size.left -
1431 self->client->border_width * 2;
1432 break;
1433
1434 case ForgetGravity:
1435 case StaticGravity:
1436 /* the client's position won't move */
1437 *x -= self->size.left - self->client->border_width;
1438 break;
1439 }
1440
1441 /* vertical */
1442 switch (self->client->gravity) {
1443 default:
1444 case NorthWestGravity:
1445 case NorthEastGravity:
1446 case NorthGravity:
1447 break;
1448
1449 case CenterGravity:
1450 case EastGravity:
1451 case WestGravity:
1452 /* the middle of the client will be the middle of the frame */
1453 *y -= (self->size.bottom - self->size.top) / 2;
1454 break;
1455
1456 case SouthWestGravity:
1457 case SouthEastGravity:
1458 case SouthGravity:
1459 /* the bottom of the client will be the bottom of the frame */
1460 *y -= self->size.bottom + self->size.top -
1461 self->client->border_width * 2;
1462 break;
1463
1464 case ForgetGravity:
1465 case StaticGravity:
1466 /* the client's position won't move */
1467 *y -= self->size.top - self->client->border_width;
1468 break;
1469 }
1470 }
1471
1472 void frame_frame_gravity(ObFrame *self, gint *x, gint *y)
1473 {
1474 /* horizontal */
1475 switch (self->client->gravity) {
1476 default:
1477 case NorthWestGravity:
1478 case WestGravity:
1479 case SouthWestGravity:
1480 break;
1481 case NorthGravity:
1482 case CenterGravity:
1483 case SouthGravity:
1484 /* the middle of the client will be the middle of the frame */
1485 *x += (self->size.right - self->size.left) / 2;
1486 break;
1487 case NorthEastGravity:
1488 case EastGravity:
1489 case SouthEastGravity:
1490 /* the right side of the client will be the right side of the frame */
1491 *x += self->size.right + self->size.left -
1492 self->client->border_width * 2;
1493 break;
1494 case StaticGravity:
1495 case ForgetGravity:
1496 /* the client's position won't move */
1497 *x += self->size.left - self->client->border_width;
1498 break;
1499 }
1500
1501 /* vertical */
1502 switch (self->client->gravity) {
1503 default:
1504 case NorthWestGravity:
1505 case NorthGravity:
1506 case NorthEastGravity:
1507 break;
1508 case WestGravity:
1509 case CenterGravity:
1510 case EastGravity:
1511 /* the middle of the client will be the middle of the frame */
1512 *y += (self->size.bottom - self->size.top) / 2;
1513 break;
1514 case SouthWestGravity:
1515 case SouthGravity:
1516 case SouthEastGravity:
1517 /* the bottom of the client will be the bottom of the frame */
1518 *y += self->size.bottom + self->size.top -
1519 self->client->border_width * 2;
1520 break;
1521 case StaticGravity:
1522 case ForgetGravity:
1523 /* the client's position won't move */
1524 *y += self->size.top - self->client->border_width;
1525 break;
1526 }
1527 }
1528
1529 void frame_rect_to_frame(ObFrame *self, Rect *r)
1530 {
1531 r->width += self->size.left + self->size.right;
1532 r->height += self->size.top + self->size.bottom;
1533 frame_client_gravity(self, &r->x, &r->y);
1534 }
1535
1536 static void flash_done(gpointer data)
1537 {
1538 ObFrame *self = data;
1539
1540 if (self->focused != self->flash_on)
1541 frame_adjust_focus(self, self->focused);
1542 }
1543
1544 static gboolean flash_timeout(gpointer data)
1545 {
1546 ObFrame *self = data;
1547 GTimeVal now;
1548
1549 g_get_current_time(&now);
1550 if (now.tv_sec > self->flash_end.tv_sec ||
1551 (now.tv_sec == self->flash_end.tv_sec &&
1552 now.tv_usec >= self->flash_end.tv_usec))
1553 self->flashing = FALSE;
1554
1555 if (!self->flashing)
1556 return FALSE; /* we are done */
1557
1558 self->flash_on = !self->flash_on;
1559 if (!self->focused) {
1560 frame_adjust_focus(self, self->flash_on);
1561 self->focused = FALSE;
1562 }
1563
1564 return TRUE; /* go again */
1565 }
1566
1567 void frame_flash_start(ObFrame *self)
1568 {
1569 self->flash_on = self->focused;
1570
1571 if (!self->flashing)
1572 ob_main_loop_timeout_add(ob_main_loop,
1573 G_USEC_PER_SEC * 0.6,
1574 flash_timeout,
1575 self,
1576 g_direct_equal,
1577 flash_done);
1578 g_get_current_time(&self->flash_end);
1579 g_time_val_add(&self->flash_end, G_USEC_PER_SEC * 5);
1580
1581 self->flashing = TRUE;
1582 }
1583
1584 void frame_flash_stop(ObFrame *self)
1585 {
1586 self->flashing = FALSE;
1587 }
1588
1589 static gulong frame_animate_iconify_time_left(ObFrame *self,
1590 const GTimeVal *now)
1591 {
1592 glong sec, usec;
1593 sec = self->iconify_animation_end.tv_sec - now->tv_sec;
1594 usec = self->iconify_animation_end.tv_usec - now->tv_usec;
1595 if (usec < 0) {
1596 usec += G_USEC_PER_SEC;
1597 sec--;
1598 }
1599 /* no negative values */
1600 return MAX(sec * G_USEC_PER_SEC + usec, 0);
1601 }
1602
1603 static gboolean frame_animate_iconify(gpointer p)
1604 {
1605 ObFrame *self = p;
1606 gint x, y, w, h;
1607 gint iconx, icony, iconw;
1608 GTimeVal now;
1609 gulong time;
1610 gboolean iconifying;
1611
1612 if (self->client->icon_geometry.width == 0) {
1613 /* there is no icon geometry set so just go straight down */
1614 Rect *a = screen_physical_area_monitor
1615 (screen_find_monitor(&self->area));
1616 iconx = self->area.x + self->area.width / 2 + 32;
1617 icony = a->y + a->width;
1618 iconw = 64;
1619 g_free(a);
1620 } else {
1621 iconx = self->client->icon_geometry.x;
1622 icony = self->client->icon_geometry.y;
1623 iconw = self->client->icon_geometry.width;
1624 }
1625
1626 iconifying = self->iconify_animation_going > 0;
1627
1628 /* how far do we have left to go ? */
1629 g_get_current_time(&now);
1630 time = frame_animate_iconify_time_left(self, &now);
1631
1632 if (time == 0 || iconifying) {
1633 /* start where the frame is supposed to be */
1634 x = self->area.x;
1635 y = self->area.y;
1636 w = self->area.width;
1637 h = self->area.height;
1638 } else {
1639 /* start at the icon */
1640 x = iconx;
1641 y = icony;
1642 w = iconw;
1643 h = self->size.top; /* just the titlebar */
1644 }
1645
1646 if (time > 0) {
1647 glong dx, dy, dw;
1648 glong elapsed;
1649
1650 dx = self->area.x - iconx;
1651 dy = self->area.y - icony;
1652 dw = self->area.width - self->bwidth * 2 - iconw;
1653 /* if restoring, we move in the opposite direction */
1654 if (!iconifying) { dx = -dx; dy = -dy; dw = -dw; }
1655
1656 elapsed = FRAME_ANIMATE_ICONIFY_TIME - time;
1657 x = x - (dx * elapsed) / FRAME_ANIMATE_ICONIFY_TIME;
1658 y = y - (dy * elapsed) / FRAME_ANIMATE_ICONIFY_TIME;
1659 w = w - (dw * elapsed) / FRAME_ANIMATE_ICONIFY_TIME;
1660 h = self->size.top; /* just the titlebar */
1661 }
1662
1663 if (time == 0)
1664 frame_end_iconify_animation(self);
1665 else {
1666 XMoveResizeWindow(ob_display, self->window, x, y, w, h);
1667 XFlush(ob_display);
1668 }
1669
1670 return time > 0; /* repeat until we're out of time */
1671 }
1672
1673 void frame_end_iconify_animation(ObFrame *self)
1674 {
1675 /* see if there is an animation going */
1676 if (self->iconify_animation_going == 0) return;
1677
1678 if (!self->visible)
1679 XUnmapWindow(ob_display, self->window);
1680 else {
1681 /* Send a ConfigureNotify when the animation is done, this fixes
1682 KDE's pager showing the window in the wrong place. since the
1683 window is mapped at a different location and is then moved, we
1684 need to send the synthetic configurenotify, since apps may have
1685 read the position when the client mapped, apparently. */
1686 client_reconfigure(self->client, TRUE);
1687 }
1688
1689 /* we're not animating any more ! */
1690 self->iconify_animation_going = 0;
1691
1692 XMoveResizeWindow(ob_display, self->window,
1693 self->area.x, self->area.y,
1694 self->area.width, self->area.height);
1695 /* we delay re-rendering until after we're done animating */
1696 framerender_frame(self);
1697 XFlush(ob_display);
1698 }
1699
1700 void frame_begin_iconify_animation(ObFrame *self, gboolean iconifying)
1701 {
1702 gulong time;
1703 gboolean new_anim = FALSE;
1704 gboolean set_end = TRUE;
1705 GTimeVal now;
1706
1707 /* if there is no titlebar, just don't animate for now
1708 XXX it would be nice tho.. */
1709 if (!(self->decorations & OB_FRAME_DECOR_TITLEBAR))
1710 return;
1711
1712 /* get the current time */
1713 g_get_current_time(&now);
1714
1715 /* get how long until the end */
1716 time = FRAME_ANIMATE_ICONIFY_TIME;
1717 if (self->iconify_animation_going) {
1718 if (!!iconifying != (self->iconify_animation_going > 0)) {
1719 /* animation was already going on in the opposite direction */
1720 time = time - frame_animate_iconify_time_left(self, &now);
1721 } else
1722 /* animation was already going in the same direction */
1723 set_end = FALSE;
1724 } else
1725 new_anim = TRUE;
1726 self->iconify_animation_going = iconifying ? 1 : -1;
1727
1728 /* set the ending time */
1729 if (set_end) {
1730 self->iconify_animation_end.tv_sec = now.tv_sec;
1731 self->iconify_animation_end.tv_usec = now.tv_usec;
1732 g_time_val_add(&self->iconify_animation_end, time);
1733 }
1734
1735 if (new_anim) {
1736 ob_main_loop_timeout_remove_data(ob_main_loop, frame_animate_iconify,
1737 self, FALSE);
1738 ob_main_loop_timeout_add(ob_main_loop,
1739 FRAME_ANIMATE_ICONIFY_STEP_TIME,
1740 frame_animate_iconify, self,
1741 g_direct_equal, NULL);
1742
1743 /* do the first step */
1744 frame_animate_iconify(self);
1745
1746 /* show it during the animation even if it is not "visible" */
1747 if (!self->visible)
1748 XMapWindow(ob_display, self->window);
1749 }
1750 }
This page took 0.13143 seconds and 5 git commands to generate.