1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 frame.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 See the COPYING file for a copy of the GNU General Public License.
23 #include "extensions.h"
26 #include "framerender.h"
29 #include "moveresize.h"
30 #include "render/theme.h"
32 #define PLATE_EVENTMASK (SubstructureRedirectMask | FocusChangeMask)
33 #define FRAME_EVENTMASK (EnterWindowMask | LeaveWindowMask | \
34 ButtonPressMask | ButtonReleaseMask)
35 #define ELEMENT_EVENTMASK (ButtonPressMask | ButtonReleaseMask | \
37 EnterWindowMask | LeaveWindowMask)
38 /* The inner window does not need enter/leave events.
39 If it does get them, then it needs its own context for enter events
40 because sloppy focus will focus the window when you enter the inner window
42 #define INNER_EVENTMASK (ButtonPressMask)
44 #define FRAME_HANDLE_Y(f) (f->innersize.top + f->client->area.height + \
47 static void layout_title(ObFrame
*self
);
48 static void flash_done(gpointer data
);
49 static gboolean
flash_timeout(gpointer data
);
51 static void set_theme_statics(ObFrame
*self
);
52 static void free_theme_statics(ObFrame
*self
);
54 static Window
createWindow(Window parent
, Visual
*visual
,
55 gulong mask
, XSetWindowAttributes
*attrib
)
57 return XCreateWindow(ob_display
, parent
, 0, 0, 1, 1, 0,
58 (visual
? 32 : RrDepth(ob_rr_inst
)), InputOutput
,
59 (visual
? visual
: RrVisual(ob_rr_inst
)),
64 static Visual
*check_32bit_client(ObClient
*c
)
66 XWindowAttributes wattrib
;
69 ret
= XGetWindowAttributes(ob_display
, c
->window
, &wattrib
);
70 g_assert(ret
!= BadDrawable
);
71 g_assert(ret
!= BadWindow
);
73 if (wattrib
.depth
== 32)
74 return wattrib
.visual
;
78 ObFrame
*frame_new(ObClient
*client
)
80 XSetWindowAttributes attrib
;
85 self
= g_new0(ObFrame
, 1);
87 visual
= check_32bit_client(client
);
89 /* create the non-visible decor windows */
93 /* client has a 32-bit visual */
94 mask
|= CWColormap
| CWBackPixel
| CWBorderPixel
;
95 /* create a colormap with the visual */
96 self
->colormap
= attrib
.colormap
=
97 XCreateColormap(ob_display
,
98 RootWindow(ob_display
, ob_screen
),
100 attrib
.background_pixel
= BlackPixel(ob_display
, 0);
101 attrib
.border_pixel
= BlackPixel(ob_display
, 0);
103 attrib
.event_mask
= FRAME_EVENTMASK
;
104 self
->window
= createWindow(RootWindow(ob_display
, ob_screen
), visual
,
107 attrib
.event_mask
= INNER_EVENTMASK
;
108 self
->inner
= createWindow(self
->window
, visual
, mask
, &attrib
);
110 mask
&= ~CWEventMask
;
111 self
->plate
= createWindow(self
->inner
, visual
, mask
, &attrib
);
113 /* create the visible decor windows */
117 /* client has a 32-bit visual */
118 mask
|= CWColormap
| CWBackPixel
| CWBorderPixel
;
119 attrib
.colormap
= RrColormap(ob_rr_inst
);
121 attrib
.event_mask
= ELEMENT_EVENTMASK
;
122 self
->title
= createWindow(self
->window
, NULL
, mask
, &attrib
);
125 attrib
.cursor
= ob_cursor(OB_CURSOR_NORTHWEST
);
126 self
->tltresize
= createWindow(self
->title
, NULL
, mask
, &attrib
);
127 self
->tllresize
= createWindow(self
->title
, NULL
, mask
, &attrib
);
128 attrib
.cursor
= ob_cursor(OB_CURSOR_NORTHEAST
);
129 self
->trtresize
= createWindow(self
->title
, NULL
, mask
, &attrib
);
130 self
->trrresize
= createWindow(self
->title
, NULL
, mask
, &attrib
);
133 self
->label
= createWindow(self
->title
, NULL
, mask
, &attrib
);
134 self
->max
= createWindow(self
->title
, NULL
, mask
, &attrib
);
135 self
->close
= createWindow(self
->title
, NULL
, mask
, &attrib
);
136 self
->desk
= createWindow(self
->title
, NULL
, mask
, &attrib
);
137 self
->shade
= createWindow(self
->title
, NULL
, mask
, &attrib
);
138 self
->icon
= createWindow(self
->title
, NULL
, mask
, &attrib
);
139 self
->iconify
= createWindow(self
->title
, NULL
, mask
, &attrib
);
140 self
->handle
= createWindow(self
->window
, NULL
, mask
, &attrib
);
143 attrib
.cursor
= ob_cursor(OB_CURSOR_SOUTHWEST
);
144 self
->lgrip
= createWindow(self
->handle
, NULL
, mask
, &attrib
);
145 attrib
.cursor
= ob_cursor(OB_CURSOR_SOUTHEAST
);
146 self
->rgrip
= createWindow(self
->handle
, NULL
, mask
, &attrib
);
148 self
->focused
= FALSE
;
150 /* the other stuff is shown based on decor settings */
151 XMapWindow(ob_display
, self
->plate
);
152 XMapWindow(ob_display
, self
->inner
);
153 XMapWindow(ob_display
, self
->lgrip
);
154 XMapWindow(ob_display
, self
->rgrip
);
155 XMapWindow(ob_display
, self
->label
);
157 self
->max_press
= self
->close_press
= self
->desk_press
=
158 self
->iconify_press
= self
->shade_press
= FALSE
;
159 self
->max_hover
= self
->close_hover
= self
->desk_hover
=
160 self
->iconify_hover
= self
->shade_hover
= FALSE
;
162 set_theme_statics(self
);
164 return (ObFrame
*)self
;
167 static void set_theme_statics(ObFrame
*self
)
169 /* set colors/appearance/sizes for stuff that doesn't change */
170 XSetWindowBorder(ob_display
, self
->window
,
171 RrColorPixel(ob_rr_theme
->frame_b_color
));
172 XSetWindowBorder(ob_display
, self
->title
,
173 RrColorPixel(ob_rr_theme
->frame_b_color
));
174 XSetWindowBorder(ob_display
, self
->handle
,
175 RrColorPixel(ob_rr_theme
->frame_b_color
));
176 XSetWindowBorder(ob_display
, self
->rgrip
,
177 RrColorPixel(ob_rr_theme
->frame_b_color
));
178 XSetWindowBorder(ob_display
, self
->lgrip
,
179 RrColorPixel(ob_rr_theme
->frame_b_color
));
181 XResizeWindow(ob_display
, self
->max
,
182 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
183 XResizeWindow(ob_display
, self
->iconify
,
184 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
185 XResizeWindow(ob_display
, self
->icon
,
186 ob_rr_theme
->button_size
+ 2, ob_rr_theme
->button_size
+ 2);
187 XResizeWindow(ob_display
, self
->close
,
188 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
189 XResizeWindow(ob_display
, self
->desk
,
190 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
191 XResizeWindow(ob_display
, self
->shade
,
192 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
193 if (ob_rr_theme
->handle_height
> 0) {
194 XResizeWindow(ob_display
, self
->lgrip
,
195 ob_rr_theme
->grip_width
, ob_rr_theme
->handle_height
);
196 XResizeWindow(ob_display
, self
->rgrip
,
197 ob_rr_theme
->grip_width
, ob_rr_theme
->handle_height
);
199 XResizeWindow(ob_display
, self
->tltresize
,
200 ob_rr_theme
->grip_width
, ob_rr_theme
->paddingy
+ 1);
201 XResizeWindow(ob_display
, self
->trtresize
,
202 ob_rr_theme
->grip_width
, ob_rr_theme
->paddingy
+ 1);
203 XResizeWindow(ob_display
, self
->tllresize
,
204 ob_rr_theme
->paddingx
+ 1, ob_rr_theme
->title_height
);
205 XResizeWindow(ob_display
, self
->trrresize
,
206 ob_rr_theme
->paddingx
+ 1, ob_rr_theme
->title_height
);
208 /* set up the dynamic appearances */
209 self
->a_unfocused_title
= RrAppearanceCopy(ob_rr_theme
->a_unfocused_title
);
210 self
->a_focused_title
= RrAppearanceCopy(ob_rr_theme
->a_focused_title
);
211 self
->a_unfocused_label
= RrAppearanceCopy(ob_rr_theme
->a_unfocused_label
);
212 self
->a_focused_label
= RrAppearanceCopy(ob_rr_theme
->a_focused_label
);
213 self
->a_unfocused_handle
=
214 RrAppearanceCopy(ob_rr_theme
->a_unfocused_handle
);
215 self
->a_focused_handle
= RrAppearanceCopy(ob_rr_theme
->a_focused_handle
);
216 self
->a_icon
= RrAppearanceCopy(ob_rr_theme
->a_icon
);
219 static void free_theme_statics(ObFrame
*self
)
221 RrAppearanceFree(self
->a_unfocused_title
);
222 RrAppearanceFree(self
->a_focused_title
);
223 RrAppearanceFree(self
->a_unfocused_label
);
224 RrAppearanceFree(self
->a_focused_label
);
225 RrAppearanceFree(self
->a_unfocused_handle
);
226 RrAppearanceFree(self
->a_focused_handle
);
227 RrAppearanceFree(self
->a_icon
);
230 static void frame_free(ObFrame
*self
)
232 free_theme_statics(self
);
234 XDestroyWindow(ob_display
, self
->window
);
236 XFreeColormap(ob_display
, self
->colormap
);
241 void frame_show(ObFrame
*self
)
243 if (!self
->visible
) {
244 self
->visible
= TRUE
;
245 XMapWindow(ob_display
, self
->client
->window
);
246 XMapWindow(ob_display
, self
->window
);
250 void frame_hide(ObFrame
*self
)
253 self
->visible
= FALSE
;
254 self
->client
->ignore_unmaps
+= 1;
255 /* we unmap the client itself so that we can get MapRequest
256 events, and because the ICCCM tells us to! */
257 XUnmapWindow(ob_display
, self
->window
);
258 XUnmapWindow(ob_display
, self
->client
->window
);
262 void frame_adjust_theme(ObFrame
*self
)
264 free_theme_statics(self
);
265 set_theme_statics(self
);
268 void frame_adjust_shape(ObFrame
*self
)
274 if (!self
->client
->shaped
) {
275 /* clear the shape on the frame window */
276 XShapeCombineMask(ob_display
, self
->window
, ShapeBounding
,
277 self
->innersize
.left
,
281 /* make the frame's shape match the clients */
282 XShapeCombineShape(ob_display
, self
->window
, ShapeBounding
,
283 self
->innersize
.left
,
285 self
->client
->window
,
286 ShapeBounding
, ShapeSet
);
289 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
) {
290 xrect
[0].x
= -ob_rr_theme
->fbwidth
;
291 xrect
[0].y
= -ob_rr_theme
->fbwidth
;
292 xrect
[0].width
= self
->width
+ self
->rbwidth
* 2;
293 xrect
[0].height
= ob_rr_theme
->title_height
+
298 if (self
->decorations
& OB_FRAME_DECOR_HANDLE
) {
299 xrect
[1].x
= -ob_rr_theme
->fbwidth
;
300 xrect
[1].y
= FRAME_HANDLE_Y(self
);
301 xrect
[1].width
= self
->width
+ self
->rbwidth
* 2;
302 xrect
[1].height
= ob_rr_theme
->handle_height
+
307 XShapeCombineRectangles(ob_display
, self
->window
,
308 ShapeBounding
, 0, 0, xrect
, num
,
309 ShapeUnion
, Unsorted
);
314 void frame_adjust_area(ObFrame
*self
, gboolean moved
,
315 gboolean resized
, gboolean fake
)
319 oldsize
= self
->size
;
322 self
->decorations
= self
->client
->decorations
;
323 self
->max_horz
= self
->client
->max_horz
;
325 if (self
->decorations
& OB_FRAME_DECOR_BORDER
) {
326 self
->bwidth
= ob_rr_theme
->fbwidth
;
327 self
->cbwidth_x
= ob_rr_theme
->cbwidthx
;
328 self
->cbwidth_y
= ob_rr_theme
->cbwidthy
;
330 self
->bwidth
= self
->cbwidth_x
= self
->cbwidth_y
= 0;
332 self
->rbwidth
= self
->bwidth
;
335 self
->bwidth
= self
->cbwidth_x
= 0;
337 STRUT_SET(self
->innersize
,
342 self
->width
= self
->client
->area
.width
+ self
->cbwidth_x
* 2 -
343 (self
->max_horz
? self
->rbwidth
* 2 : 0);
344 self
->width
= MAX(self
->width
, 1); /* no lower than 1 */
346 /* set border widths */
348 XSetWindowBorderWidth(ob_display
, self
->window
, self
->bwidth
);
349 XSetWindowBorderWidth(ob_display
, self
->title
, self
->rbwidth
);
350 XSetWindowBorderWidth(ob_display
, self
->handle
, self
->rbwidth
);
351 XSetWindowBorderWidth(ob_display
, self
->lgrip
, self
->rbwidth
);
352 XSetWindowBorderWidth(ob_display
, self
->rgrip
, self
->rbwidth
);
355 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
)
356 self
->innersize
.top
+= ob_rr_theme
->title_height
+ self
->rbwidth
+
357 (self
->rbwidth
- self
->bwidth
);
358 if (self
->decorations
& OB_FRAME_DECOR_HANDLE
&&
359 ob_rr_theme
->handle_height
> 0)
360 self
->innersize
.bottom
+= ob_rr_theme
->handle_height
+
361 self
->rbwidth
+ (self
->rbwidth
- self
->bwidth
);
363 /* they all default off, they're turned on in layout_title */
367 self
->iconify_x
= -1;
372 /* position/size and map/unmap all the windows */
375 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
) {
376 XMoveResizeWindow(ob_display
, self
->title
,
377 -self
->bwidth
, -self
->bwidth
,
378 self
->width
, ob_rr_theme
->title_height
);
379 XMapWindow(ob_display
, self
->title
);
381 if (self
->decorations
& OB_FRAME_DECOR_GRIPS
) {
382 XMoveWindow(ob_display
, self
->tltresize
, 0, 0);
383 XMoveWindow(ob_display
, self
->tllresize
, 0, 0);
384 XMoveWindow(ob_display
, self
->trtresize
,
385 self
->width
- ob_rr_theme
->grip_width
, 0);
386 XMoveWindow(ob_display
, self
->trrresize
,
387 self
->width
- ob_rr_theme
->paddingx
- 1, 0);
388 XMapWindow(ob_display
, self
->tltresize
);
389 XMapWindow(ob_display
, self
->tllresize
);
390 XMapWindow(ob_display
, self
->trtresize
);
391 XMapWindow(ob_display
, self
->trrresize
);
393 XUnmapWindow(ob_display
, self
->tltresize
);
394 XUnmapWindow(ob_display
, self
->tllresize
);
395 XUnmapWindow(ob_display
, self
->trtresize
);
396 XUnmapWindow(ob_display
, self
->trrresize
);
399 XUnmapWindow(ob_display
, self
->title
);
402 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
)
403 /* layout the title bar elements */
407 if (self
->decorations
& OB_FRAME_DECOR_HANDLE
&&
408 ob_rr_theme
->handle_height
> 0)
410 XMoveResizeWindow(ob_display
, self
->handle
,
411 -self
->bwidth
, FRAME_HANDLE_Y(self
),
412 self
->width
, ob_rr_theme
->handle_height
);
413 XMapWindow(ob_display
, self
->handle
);
415 if (self
->decorations
& OB_FRAME_DECOR_GRIPS
) {
416 XMoveWindow(ob_display
, self
->lgrip
,
417 -self
->rbwidth
, -self
->rbwidth
);
418 XMoveWindow(ob_display
, self
->rgrip
,
419 -self
->rbwidth
+ self
->width
-
420 ob_rr_theme
->grip_width
, -self
->rbwidth
);
421 XMapWindow(ob_display
, self
->lgrip
);
422 XMapWindow(ob_display
, self
->rgrip
);
424 XUnmapWindow(ob_display
, self
->lgrip
);
425 XUnmapWindow(ob_display
, self
->rgrip
);
428 XUnmapWindow(ob_display
, self
->handle
);
430 /* move and resize the inner border window which contains the plate
432 XMoveResizeWindow(ob_display
, self
->inner
,
433 self
->innersize
.left
- self
->cbwidth_x
,
434 self
->innersize
.top
- self
->cbwidth_y
,
435 self
->client
->area
.width
+
437 self
->client
->area
.height
+
438 self
->cbwidth_y
* 2);
441 XMoveWindow(ob_display
, self
->plate
,
442 self
->cbwidth_x
, self
->cbwidth_y
);
444 /* when the client has StaticGravity, it likes to move around. */
445 XMoveWindow(ob_display
, self
->client
->window
, 0, 0);
448 STRUT_SET(self
->size
,
449 self
->innersize
.left
+ self
->bwidth
,
450 self
->innersize
.top
+ self
->bwidth
,
451 self
->innersize
.right
+ self
->bwidth
,
452 self
->innersize
.bottom
+ self
->bwidth
);
455 /* shading can change without being moved or resized */
456 RECT_SET_SIZE(self
->area
,
457 self
->client
->area
.width
+
458 self
->size
.left
+ self
->size
.right
,
459 (self
->client
->shaded
?
460 ob_rr_theme
->title_height
+ self
->rbwidth
* 2:
461 self
->client
->area
.height
+
462 self
->size
.top
+ self
->size
.bottom
));
465 /* find the new coordinates, done after setting the frame.size, for
466 frame_client_gravity. */
467 self
->area
.x
= self
->client
->area
.x
;
468 self
->area
.y
= self
->client
->area
.y
;
469 frame_client_gravity(self
, &self
->area
.x
, &self
->area
.y
);
473 /* move and resize the top level frame.
474 shading can change without being moved or resized */
475 XMoveResizeWindow(ob_display
, self
->window
,
476 self
->area
.x
, self
->area
.y
,
477 self
->area
.width
- self
->bwidth
* 2,
478 self
->area
.height
- self
->bwidth
* 2);
481 framerender_frame(self
);
482 frame_adjust_shape(self
);
485 if (!STRUT_EQUAL(self
->size
, oldsize
)) {
487 vals
[0] = self
->size
.left
;
488 vals
[1] = self
->size
.right
;
489 vals
[2] = self
->size
.top
;
490 vals
[3] = self
->size
.bottom
;
491 PROP_SETA32(self
->client
->window
, net_frame_extents
,
495 /* if this occurs while we are focus cycling, the indicator needs to
497 if (focus_cycle_target
== self
->client
)
498 focus_cycle_draw_indicator();
500 if (resized
&& (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
))
501 XResizeWindow(ob_display
, self
->label
, self
->label_width
,
502 ob_rr_theme
->label_height
);
505 void frame_adjust_state(ObFrame
*self
)
507 framerender_frame(self
);
510 void frame_adjust_focus(ObFrame
*self
, gboolean hilite
)
512 self
->focused
= hilite
;
513 framerender_frame(self
);
517 void frame_adjust_client_area(ObFrame
*self
)
519 /* resize the plate */
520 XResizeWindow(ob_display
, self
->plate
,
521 self
->client
->area
.width
, self
->client
->area
.height
);
524 void frame_adjust_title(ObFrame
*self
)
526 framerender_frame(self
);
529 void frame_adjust_icon(ObFrame
*self
)
531 framerender_frame(self
);
534 void frame_grab_client(ObFrame
*self
, ObClient
*client
)
536 self
->client
= client
;
538 /* reparent the client to the frame */
539 XReparentWindow(ob_display
, client
->window
, self
->plate
, 0, 0);
541 When reparenting the client window, it is usually not mapped yet, since
542 this occurs from a MapRequest. However, in the case where Openbox is
543 starting up, the window is already mapped, so we'll see unmap events for
544 it. There are 2 unmap events generated that we see, one with the 'event'
545 member set the root window, and one set to the client, but both get
546 handled and need to be ignored.
548 if (ob_state() == OB_STATE_STARTING
)
549 client
->ignore_unmaps
+= 2;
551 /* select the event mask on the client's parent (to receive config/map
552 req's) the ButtonPress is to catch clicks on the client border */
553 XSelectInput(ob_display
, self
->plate
, PLATE_EVENTMASK
);
555 frame_adjust_area(self
, TRUE
, TRUE
, FALSE
);
557 /* map the client so it maps when the frame does */
558 XMapWindow(ob_display
, client
->window
);
560 /* set all the windows for the frame in the window_map */
561 g_hash_table_insert(window_map
, &self
->window
, client
);
562 g_hash_table_insert(window_map
, &self
->plate
, client
);
563 g_hash_table_insert(window_map
, &self
->inner
, client
);
564 g_hash_table_insert(window_map
, &self
->title
, client
);
565 g_hash_table_insert(window_map
, &self
->label
, client
);
566 g_hash_table_insert(window_map
, &self
->max
, client
);
567 g_hash_table_insert(window_map
, &self
->close
, client
);
568 g_hash_table_insert(window_map
, &self
->desk
, client
);
569 g_hash_table_insert(window_map
, &self
->shade
, client
);
570 g_hash_table_insert(window_map
, &self
->icon
, client
);
571 g_hash_table_insert(window_map
, &self
->iconify
, client
);
572 g_hash_table_insert(window_map
, &self
->handle
, client
);
573 g_hash_table_insert(window_map
, &self
->lgrip
, client
);
574 g_hash_table_insert(window_map
, &self
->rgrip
, client
);
575 g_hash_table_insert(window_map
, &self
->tltresize
, client
);
576 g_hash_table_insert(window_map
, &self
->tllresize
, client
);
577 g_hash_table_insert(window_map
, &self
->trtresize
, client
);
578 g_hash_table_insert(window_map
, &self
->trrresize
, client
);
581 void frame_release_client(ObFrame
*self
, ObClient
*client
)
584 gboolean reparent
= TRUE
;
586 g_assert(self
->client
== client
);
588 /* check if the app has already reparented its window away */
589 while (XCheckTypedWindowEvent(ob_display
, client
->window
,
590 ReparentNotify
, &ev
))
592 /* This check makes sure we don't catch our own reparent action to
593 our frame window. This doesn't count as the app reparenting itself
596 Reparent events that are generated by us are just discarded here.
597 They are of no consequence to us anyhow.
599 if (ev
.xreparent
.parent
!= self
->plate
) {
601 XPutBackEvent(ob_display
, &ev
);
607 /* according to the ICCCM - if the client doesn't reparent itself,
608 then we will reparent the window to root for them */
609 XReparentWindow(ob_display
, client
->window
,
610 RootWindow(ob_display
, ob_screen
),
615 /* remove all the windows for the frame from the window_map */
616 g_hash_table_remove(window_map
, &self
->window
);
617 g_hash_table_remove(window_map
, &self
->plate
);
618 g_hash_table_remove(window_map
, &self
->inner
);
619 g_hash_table_remove(window_map
, &self
->title
);
620 g_hash_table_remove(window_map
, &self
->label
);
621 g_hash_table_remove(window_map
, &self
->max
);
622 g_hash_table_remove(window_map
, &self
->close
);
623 g_hash_table_remove(window_map
, &self
->desk
);
624 g_hash_table_remove(window_map
, &self
->shade
);
625 g_hash_table_remove(window_map
, &self
->icon
);
626 g_hash_table_remove(window_map
, &self
->iconify
);
627 g_hash_table_remove(window_map
, &self
->handle
);
628 g_hash_table_remove(window_map
, &self
->lgrip
);
629 g_hash_table_remove(window_map
, &self
->rgrip
);
630 g_hash_table_remove(window_map
, &self
->tltresize
);
631 g_hash_table_remove(window_map
, &self
->tllresize
);
632 g_hash_table_remove(window_map
, &self
->trtresize
);
633 g_hash_table_remove(window_map
, &self
->trrresize
);
635 ob_main_loop_timeout_remove_data(ob_main_loop
, flash_timeout
, self
, TRUE
);
640 static void layout_title(ObFrame
*self
)
644 gboolean n
, d
, i
, l
, m
, c
, s
;
646 n
= d
= i
= l
= m
= c
= s
= FALSE
;
648 /* figure out whats being shown, and the width of the label */
649 self
->label_width
= self
->width
- (ob_rr_theme
->paddingx
+ 1) * 2;
650 for (lc
= config_title_layout
; *lc
!= '\0'; ++lc
) {
653 if (n
) { *lc
= ' '; break; } /* rm duplicates */
655 self
->label_width
-= (ob_rr_theme
->button_size
+ 2 +
656 ob_rr_theme
->paddingx
+ 1);
659 if (d
) { *lc
= ' '; break; }
660 if (!(self
->decorations
& OB_FRAME_DECOR_ALLDESKTOPS
)
661 && config_theme_hidedisabled
)
664 self
->label_width
-= (ob_rr_theme
->button_size
+
665 ob_rr_theme
->paddingx
+ 1);
668 if (s
) { *lc
= ' '; break; }
669 if (!(self
->decorations
& OB_FRAME_DECOR_SHADE
)
670 && config_theme_hidedisabled
)
673 self
->label_width
-= (ob_rr_theme
->button_size
+
674 ob_rr_theme
->paddingx
+ 1);
677 if (i
) { *lc
= ' '; break; }
678 if (!(self
->decorations
& OB_FRAME_DECOR_ICONIFY
)
679 && config_theme_hidedisabled
)
682 self
->label_width
-= (ob_rr_theme
->button_size
+
683 ob_rr_theme
->paddingx
+ 1);
686 if (l
) { *lc
= ' '; break; }
690 if (m
) { *lc
= ' '; break; }
691 if (!(self
->decorations
& OB_FRAME_DECOR_MAXIMIZE
)
692 && config_theme_hidedisabled
)
695 self
->label_width
-= (ob_rr_theme
->button_size
+
696 ob_rr_theme
->paddingx
+ 1);
699 if (c
) { *lc
= ' '; break; }
700 if (!(self
->decorations
& OB_FRAME_DECOR_CLOSE
)
701 && config_theme_hidedisabled
)
704 self
->label_width
-= (ob_rr_theme
->button_size
+
705 ob_rr_theme
->paddingx
+ 1);
709 if (self
->label_width
< 1) self
->label_width
= 1;
711 if (!n
) XUnmapWindow(ob_display
, self
->icon
);
712 if (!d
) XUnmapWindow(ob_display
, self
->desk
);
713 if (!s
) XUnmapWindow(ob_display
, self
->shade
);
714 if (!i
) XUnmapWindow(ob_display
, self
->iconify
);
715 if (!l
) XUnmapWindow(ob_display
, self
->label
);
716 if (!m
) XUnmapWindow(ob_display
, self
->max
);
717 if (!c
) XUnmapWindow(ob_display
, self
->close
);
719 x
= ob_rr_theme
->paddingx
+ 1;
720 for (lc
= config_title_layout
; *lc
!= '\0'; ++lc
) {
725 XMapWindow(ob_display
, self
->icon
);
726 XMoveWindow(ob_display
, self
->icon
, x
, ob_rr_theme
->paddingy
);
727 x
+= ob_rr_theme
->button_size
+ 2 + ob_rr_theme
->paddingx
+ 1;
732 XMapWindow(ob_display
, self
->desk
);
733 XMoveWindow(ob_display
, self
->desk
, x
, ob_rr_theme
->paddingy
+ 1);
734 x
+= ob_rr_theme
->button_size
+ ob_rr_theme
->paddingx
+ 1;
739 XMapWindow(ob_display
, self
->shade
);
740 XMoveWindow(ob_display
, self
->shade
, x
, ob_rr_theme
->paddingy
+ 1);
741 x
+= ob_rr_theme
->button_size
+ ob_rr_theme
->paddingx
+ 1;
746 XMapWindow(ob_display
, self
->iconify
);
747 XMoveWindow(ob_display
,self
->iconify
, x
, ob_rr_theme
->paddingy
+ 1);
748 x
+= ob_rr_theme
->button_size
+ ob_rr_theme
->paddingx
+ 1;
753 XMapWindow(ob_display
, self
->label
);
754 XMoveWindow(ob_display
, self
->label
, x
, ob_rr_theme
->paddingy
);
755 x
+= self
->label_width
+ ob_rr_theme
->paddingx
+ 1;
760 XMapWindow(ob_display
, self
->max
);
761 XMoveWindow(ob_display
, self
->max
, x
, ob_rr_theme
->paddingy
+ 1);
762 x
+= ob_rr_theme
->button_size
+ ob_rr_theme
->paddingx
+ 1;
767 XMapWindow(ob_display
, self
->close
);
768 XMoveWindow(ob_display
, self
->close
, x
, ob_rr_theme
->paddingy
+ 1);
769 x
+= ob_rr_theme
->button_size
+ ob_rr_theme
->paddingx
+ 1;
775 ObFrameContext
frame_context_from_string(const gchar
*name
)
777 if (!g_ascii_strcasecmp("Desktop", name
))
778 return OB_FRAME_CONTEXT_DESKTOP
;
779 else if (!g_ascii_strcasecmp("Client", name
))
780 return OB_FRAME_CONTEXT_CLIENT
;
781 else if (!g_ascii_strcasecmp("Titlebar", name
))
782 return OB_FRAME_CONTEXT_TITLEBAR
;
783 else if (!g_ascii_strcasecmp("Handle", name
))
784 return OB_FRAME_CONTEXT_HANDLE
;
785 else if (!g_ascii_strcasecmp("Frame", name
))
786 return OB_FRAME_CONTEXT_FRAME
;
787 else if (!g_ascii_strcasecmp("TLCorner", name
))
788 return OB_FRAME_CONTEXT_TLCORNER
;
789 else if (!g_ascii_strcasecmp("TRCorner", name
))
790 return OB_FRAME_CONTEXT_TRCORNER
;
791 else if (!g_ascii_strcasecmp("BLCorner", name
))
792 return OB_FRAME_CONTEXT_BLCORNER
;
793 else if (!g_ascii_strcasecmp("BRCorner", name
))
794 return OB_FRAME_CONTEXT_BRCORNER
;
795 else if (!g_ascii_strcasecmp("Maximize", name
))
796 return OB_FRAME_CONTEXT_MAXIMIZE
;
797 else if (!g_ascii_strcasecmp("AllDesktops", name
))
798 return OB_FRAME_CONTEXT_ALLDESKTOPS
;
799 else if (!g_ascii_strcasecmp("Shade", name
))
800 return OB_FRAME_CONTEXT_SHADE
;
801 else if (!g_ascii_strcasecmp("Iconify", name
))
802 return OB_FRAME_CONTEXT_ICONIFY
;
803 else if (!g_ascii_strcasecmp("Icon", name
))
804 return OB_FRAME_CONTEXT_ICON
;
805 else if (!g_ascii_strcasecmp("Close", name
))
806 return OB_FRAME_CONTEXT_CLOSE
;
807 else if (!g_ascii_strcasecmp("MoveResize", name
))
808 return OB_FRAME_CONTEXT_MOVE_RESIZE
;
809 return OB_FRAME_CONTEXT_NONE
;
812 ObFrameContext
frame_context(ObClient
*client
, Window win
)
816 if (moveresize_in_progress
)
817 return OB_FRAME_CONTEXT_MOVE_RESIZE
;
819 if (win
== RootWindow(ob_display
, ob_screen
))
820 return OB_FRAME_CONTEXT_DESKTOP
;
821 if (client
== NULL
) return OB_FRAME_CONTEXT_NONE
;
822 if (win
== client
->window
) {
823 /* conceptually, this is the desktop, as far as users are
825 if (client
->type
== OB_CLIENT_TYPE_DESKTOP
)
826 return OB_FRAME_CONTEXT_DESKTOP
;
827 return OB_FRAME_CONTEXT_CLIENT
;
830 self
= client
->frame
;
831 if (win
== self
->inner
|| win
== self
->plate
) {
832 /* conceptually, this is the desktop, as far as users are
834 if (client
->type
== OB_CLIENT_TYPE_DESKTOP
)
835 return OB_FRAME_CONTEXT_DESKTOP
;
836 return OB_FRAME_CONTEXT_CLIENT
;
839 if (win
== self
->window
) return OB_FRAME_CONTEXT_FRAME
;
840 if (win
== self
->title
) return OB_FRAME_CONTEXT_TITLEBAR
;
841 if (win
== self
->label
) return OB_FRAME_CONTEXT_TITLEBAR
;
842 if (win
== self
->handle
) return OB_FRAME_CONTEXT_HANDLE
;
843 if (win
== self
->lgrip
) return OB_FRAME_CONTEXT_BLCORNER
;
844 if (win
== self
->rgrip
) return OB_FRAME_CONTEXT_BRCORNER
;
845 if (win
== self
->tltresize
) return OB_FRAME_CONTEXT_TLCORNER
;
846 if (win
== self
->tllresize
) return OB_FRAME_CONTEXT_TLCORNER
;
847 if (win
== self
->trtresize
) return OB_FRAME_CONTEXT_TRCORNER
;
848 if (win
== self
->trrresize
) return OB_FRAME_CONTEXT_TRCORNER
;
849 if (win
== self
->max
) return OB_FRAME_CONTEXT_MAXIMIZE
;
850 if (win
== self
->iconify
) return OB_FRAME_CONTEXT_ICONIFY
;
851 if (win
== self
->close
) return OB_FRAME_CONTEXT_CLOSE
;
852 if (win
== self
->icon
) return OB_FRAME_CONTEXT_ICON
;
853 if (win
== self
->desk
) return OB_FRAME_CONTEXT_ALLDESKTOPS
;
854 if (win
== self
->shade
) return OB_FRAME_CONTEXT_SHADE
;
856 return OB_FRAME_CONTEXT_NONE
;
859 void frame_client_gravity(ObFrame
*self
, gint
*x
, gint
*y
)
862 switch (self
->client
->gravity
) {
864 case NorthWestGravity
:
865 case SouthWestGravity
:
872 *x
-= (self
->size
.left
+ self
->size
.right
) / 2;
875 case NorthEastGravity
:
876 case SouthEastGravity
:
878 *x
-= self
->size
.left
+ self
->size
.right
;
883 *x
-= self
->size
.left
;
888 switch (self
->client
->gravity
) {
890 case NorthWestGravity
:
891 case NorthEastGravity
:
898 *y
-= (self
->size
.top
+ self
->size
.bottom
) / 2;
901 case SouthWestGravity
:
902 case SouthEastGravity
:
904 *y
-= self
->size
.top
+ self
->size
.bottom
;
909 *y
-= self
->size
.top
;
914 void frame_frame_gravity(ObFrame
*self
, gint
*x
, gint
*y
)
917 switch (self
->client
->gravity
) {
919 case NorthWestGravity
:
921 case SouthWestGravity
:
926 *x
+= (self
->size
.left
+ self
->size
.right
) / 2;
928 case NorthEastGravity
:
930 case SouthEastGravity
:
931 *x
+= self
->size
.left
+ self
->size
.right
;
935 *x
+= self
->size
.left
;
940 switch (self
->client
->gravity
) {
942 case NorthWestGravity
:
944 case NorthEastGravity
:
949 *y
+= (self
->size
.top
+ self
->size
.bottom
) / 2;
951 case SouthWestGravity
:
953 case SouthEastGravity
:
954 *y
+= self
->size
.top
+ self
->size
.bottom
;
958 *y
+= self
->size
.top
;
963 static void flash_done(gpointer data
)
965 ObFrame
*self
= data
;
967 if (self
->focused
!= self
->flash_on
)
968 frame_adjust_focus(self
, self
->focused
);
971 static gboolean
flash_timeout(gpointer data
)
973 ObFrame
*self
= data
;
976 g_get_current_time(&now
);
977 if (now
.tv_sec
> self
->flash_end
.tv_sec
||
978 (now
.tv_sec
== self
->flash_end
.tv_sec
&&
979 now
.tv_usec
>= self
->flash_end
.tv_usec
))
980 self
->flashing
= FALSE
;
983 return FALSE
; /* we are done */
985 self
->flash_on
= !self
->flash_on
;
986 if (!self
->focused
) {
987 frame_adjust_focus(self
, self
->flash_on
);
988 self
->focused
= FALSE
;
991 return TRUE
; /* go again */
994 void frame_flash_start(ObFrame
*self
)
996 self
->flash_on
= self
->focused
;
999 ob_main_loop_timeout_add(ob_main_loop
,
1000 G_USEC_PER_SEC
* 0.6,
1005 g_get_current_time(&self
->flash_end
);
1006 g_time_val_add(&self
->flash_end
, G_USEC_PER_SEC
* 5);
1008 self
->flashing
= TRUE
;
1011 void frame_flash_stop(ObFrame
*self
)
1013 self
->flashing
= FALSE
;