1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 frame.c for the Openbox window manager
4 Copyright (c) 2003 Ben Jansens
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 See the COPYING file for a copy of the GNU General Public License.
22 #include "extensions.h"
25 #include "framerender.h"
28 #include "moveresize.h"
29 #include "render/theme.h"
31 #define PLATE_EVENTMASK (SubstructureRedirectMask | ButtonPressMask)
32 #define FRAME_EVENTMASK (EnterWindowMask | LeaveWindowMask | \
33 ButtonPressMask | ButtonReleaseMask | \
35 #define ELEMENT_EVENTMASK (ButtonPressMask | ButtonReleaseMask | \
36 ButtonMotionMask | ExposureMask | \
37 EnterWindowMask | LeaveWindowMask)
39 #define FRAME_HANDLE_Y(f) (f->innersize.top + f->client->area.height + \
42 static void layout_title(ObFrame
*self
);
43 static void flash_done(gpointer data
);
44 static gboolean
flash_timeout(gpointer data
);
46 static void set_theme_statics(ObFrame
*self
);
47 static void free_theme_statics(ObFrame
*self
);
49 static Window
createWindow(Window parent
, gulong mask
,
50 XSetWindowAttributes
*attrib
)
52 return XCreateWindow(ob_display
, parent
, 0, 0, 1, 1, 0,
53 RrDepth(ob_rr_inst
), InputOutput
,
54 RrVisual(ob_rr_inst
), mask
, attrib
);
60 XSetWindowAttributes attrib
;
64 self
= g_new0(ObFrame
, 1);
66 self
->obscured
= TRUE
;
68 /* create all of the decor windows */
69 mask
= CWOverrideRedirect
| CWEventMask
;
70 attrib
.event_mask
= FRAME_EVENTMASK
;
71 attrib
.override_redirect
= TRUE
;
72 self
->window
= createWindow(RootWindow(ob_display
, ob_screen
),
76 self
->plate
= createWindow(self
->window
, mask
, &attrib
);
79 attrib
.event_mask
= ELEMENT_EVENTMASK
;
80 self
->title
= createWindow(self
->window
, mask
, &attrib
);
83 attrib
.cursor
= ob_cursor(OB_CURSOR_NORTHWEST
);
84 self
->tlresize
= createWindow(self
->title
, mask
, &attrib
);
85 attrib
.cursor
= ob_cursor(OB_CURSOR_NORTHEAST
);
86 self
->trresize
= createWindow(self
->title
, mask
, &attrib
);
89 self
->label
= createWindow(self
->title
, mask
, &attrib
);
90 self
->max
= createWindow(self
->title
, mask
, &attrib
);
91 self
->close
= createWindow(self
->title
, mask
, &attrib
);
92 self
->desk
= createWindow(self
->title
, mask
, &attrib
);
93 self
->shade
= createWindow(self
->title
, mask
, &attrib
);
94 self
->icon
= createWindow(self
->title
, mask
, &attrib
);
95 self
->iconify
= createWindow(self
->title
, mask
, &attrib
);
96 self
->handle
= createWindow(self
->window
, mask
, &attrib
);
99 attrib
.cursor
= ob_cursor(OB_CURSOR_SOUTHWEST
);
100 self
->lgrip
= createWindow(self
->handle
, mask
, &attrib
);
101 attrib
.cursor
= ob_cursor(OB_CURSOR_SOUTHEAST
);
102 self
->rgrip
= createWindow(self
->handle
, mask
, &attrib
);
104 self
->focused
= FALSE
;
106 /* the other stuff is shown based on decor settings */
107 XMapWindow(ob_display
, self
->plate
);
108 XMapWindow(ob_display
, self
->lgrip
);
109 XMapWindow(ob_display
, self
->rgrip
);
110 XMapWindow(ob_display
, self
->label
);
112 self
->max_press
= self
->close_press
= self
->desk_press
=
113 self
->iconify_press
= self
->shade_press
= FALSE
;
114 self
->max_hover
= self
->close_hover
= self
->desk_hover
=
115 self
->iconify_hover
= self
->shade_hover
= FALSE
;
117 set_theme_statics(self
);
119 return (ObFrame
*)self
;
122 static void set_theme_statics(ObFrame
*self
)
124 /* set colors/appearance/sizes for stuff that doesn't change */
125 XSetWindowBorder(ob_display
, self
->window
,
126 RrColorPixel(ob_rr_theme
->b_color
));
127 XSetWindowBorder(ob_display
, self
->title
,
128 RrColorPixel(ob_rr_theme
->b_color
));
129 XSetWindowBorder(ob_display
, self
->handle
,
130 RrColorPixel(ob_rr_theme
->b_color
));
131 XSetWindowBorder(ob_display
, self
->rgrip
,
132 RrColorPixel(ob_rr_theme
->b_color
));
133 XSetWindowBorder(ob_display
, self
->lgrip
,
134 RrColorPixel(ob_rr_theme
->b_color
));
136 XResizeWindow(ob_display
, self
->max
,
137 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
138 XResizeWindow(ob_display
, self
->iconify
,
139 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
140 XResizeWindow(ob_display
, self
->icon
,
141 ob_rr_theme
->button_size
+ 2, ob_rr_theme
->button_size
+ 2);
142 XResizeWindow(ob_display
, self
->close
,
143 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
144 XResizeWindow(ob_display
, self
->desk
,
145 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
146 XResizeWindow(ob_display
, self
->shade
,
147 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
148 XResizeWindow(ob_display
, self
->lgrip
,
149 ob_rr_theme
->grip_width
, ob_rr_theme
->handle_height
);
150 XResizeWindow(ob_display
, self
->rgrip
,
151 ob_rr_theme
->grip_width
, ob_rr_theme
->handle_height
);
152 XResizeWindow(ob_display
, self
->tlresize
,
153 ob_rr_theme
->grip_width
, ob_rr_theme
->handle_height
);
154 XResizeWindow(ob_display
, self
->trresize
,
155 ob_rr_theme
->grip_width
, ob_rr_theme
->handle_height
);
157 /* set up the dynamic appearances */
158 self
->a_unfocused_title
= RrAppearanceCopy(ob_rr_theme
->a_unfocused_title
);
159 self
->a_focused_title
= RrAppearanceCopy(ob_rr_theme
->a_focused_title
);
160 self
->a_unfocused_label
= RrAppearanceCopy(ob_rr_theme
->a_unfocused_label
);
161 self
->a_focused_label
= RrAppearanceCopy(ob_rr_theme
->a_focused_label
);
162 self
->a_unfocused_handle
=
163 RrAppearanceCopy(ob_rr_theme
->a_unfocused_handle
);
164 self
->a_focused_handle
= RrAppearanceCopy(ob_rr_theme
->a_focused_handle
);
165 self
->a_icon
= RrAppearanceCopy(ob_rr_theme
->a_icon
);
168 static void free_theme_statics(ObFrame
*self
)
170 RrAppearanceFree(self
->a_unfocused_title
);
171 RrAppearanceFree(self
->a_focused_title
);
172 RrAppearanceFree(self
->a_unfocused_label
);
173 RrAppearanceFree(self
->a_focused_label
);
174 RrAppearanceFree(self
->a_unfocused_handle
);
175 RrAppearanceFree(self
->a_focused_handle
);
176 RrAppearanceFree(self
->a_icon
);
179 static void frame_free(ObFrame
*self
)
181 free_theme_statics(self
);
183 XDestroyWindow(ob_display
, self
->window
);
188 void frame_show(ObFrame
*self
)
190 if (!self
->visible
) {
191 self
->visible
= TRUE
;
192 XMapWindow(ob_display
, self
->client
->window
);
193 XMapWindow(ob_display
, self
->window
);
197 void frame_hide(ObFrame
*self
)
200 self
->visible
= FALSE
;
201 self
->client
->ignore_unmaps
+= 2;
202 /* we unmap the client itself so that we can get MapRequest
203 events, and because the ICCCM tells us to! */
204 XUnmapWindow(ob_display
, self
->window
);
205 XUnmapWindow(ob_display
, self
->client
->window
);
209 void frame_adjust_theme(ObFrame
*self
)
211 free_theme_statics(self
);
212 set_theme_statics(self
);
215 void frame_adjust_shape(ObFrame
*self
)
221 if (!self
->client
->shaped
) {
222 /* clear the shape on the frame window */
223 XShapeCombineMask(ob_display
, self
->window
, ShapeBounding
,
224 self
->innersize
.left
,
228 /* make the frame's shape match the clients */
229 XShapeCombineShape(ob_display
, self
->window
, ShapeBounding
,
230 self
->innersize
.left
,
232 self
->client
->window
,
233 ShapeBounding
, ShapeSet
);
236 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
) {
237 xrect
[0].x
= -ob_rr_theme
->bwidth
;
238 xrect
[0].y
= -ob_rr_theme
->bwidth
;
239 xrect
[0].width
= self
->width
+ self
->rbwidth
* 2;
240 xrect
[0].height
= ob_rr_theme
->title_height
+
245 if (self
->decorations
& OB_FRAME_DECOR_HANDLE
) {
246 xrect
[1].x
= -ob_rr_theme
->bwidth
;
247 xrect
[1].y
= FRAME_HANDLE_Y(self
);
248 xrect
[1].width
= self
->width
+ self
->rbwidth
* 2;
249 xrect
[1].height
= ob_rr_theme
->handle_height
+
254 XShapeCombineRectangles(ob_display
, self
->window
,
255 ShapeBounding
, 0, 0, xrect
, num
,
256 ShapeUnion
, Unsorted
);
261 void frame_adjust_area(ObFrame
*self
, gboolean moved
,
262 gboolean resized
, gboolean fake
)
266 oldsize
= self
->size
;
269 self
->decorations
= self
->client
->decorations
;
270 self
->max_horz
= self
->client
->max_horz
;
272 if (self
->decorations
& OB_FRAME_DECOR_BORDER
) {
273 self
->bwidth
= ob_rr_theme
->bwidth
;
274 self
->cbwidth_x
= self
->cbwidth_y
= ob_rr_theme
->cbwidth
;
276 self
->bwidth
= self
->cbwidth_x
= self
->cbwidth_y
= 0;
278 self
->rbwidth
= self
->bwidth
;
281 self
->bwidth
= self
->cbwidth_x
= 0;
283 STRUT_SET(self
->innersize
,
288 self
->width
= self
->client
->area
.width
+ self
->cbwidth_x
* 2 -
289 (self
->max_horz
? self
->rbwidth
* 2 : 0);
290 self
->width
= MAX(self
->width
, 1); /* no lower than 1 */
292 /* set border widths */
294 XSetWindowBorderWidth(ob_display
, self
->window
, self
->bwidth
);
295 XSetWindowBorderWidth(ob_display
, self
->title
, self
->rbwidth
);
296 XSetWindowBorderWidth(ob_display
, self
->handle
, self
->rbwidth
);
297 XSetWindowBorderWidth(ob_display
, self
->lgrip
, self
->rbwidth
);
298 XSetWindowBorderWidth(ob_display
, self
->rgrip
, self
->rbwidth
);
301 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
)
302 self
->innersize
.top
+= ob_rr_theme
->title_height
+ self
->rbwidth
+
303 (self
->rbwidth
- self
->bwidth
);
304 if (self
->decorations
& OB_FRAME_DECOR_HANDLE
&&
305 ob_rr_theme
->show_handle
)
306 self
->innersize
.bottom
+= ob_rr_theme
->handle_height
+
307 self
->rbwidth
+ (self
->rbwidth
- self
->bwidth
);
309 /* they all default off, they're turned on in layout_title */
313 self
->iconify_x
= -1;
318 /* position/size and map/unmap all the windows */
321 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
) {
322 XMoveResizeWindow(ob_display
, self
->title
,
323 -self
->bwidth
, -self
->bwidth
,
324 self
->width
, ob_rr_theme
->title_height
);
325 XMapWindow(ob_display
, self
->title
);
327 if (self
->decorations
& OB_FRAME_DECOR_GRIPS
) {
328 XMoveWindow(ob_display
, self
->tlresize
, 0, 0);
329 XMoveWindow(ob_display
, self
->trresize
,
330 self
->width
- ob_rr_theme
->grip_width
, 0);
331 XMapWindow(ob_display
, self
->tlresize
);
332 XMapWindow(ob_display
, self
->trresize
);
334 XUnmapWindow(ob_display
, self
->tlresize
);
335 XUnmapWindow(ob_display
, self
->trresize
);
338 XUnmapWindow(ob_display
, self
->title
);
341 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
)
342 /* layout the title bar elements */
346 if (self
->decorations
& OB_FRAME_DECOR_HANDLE
&&
347 ob_rr_theme
->show_handle
)
349 XMoveResizeWindow(ob_display
, self
->handle
,
350 -self
->bwidth
, FRAME_HANDLE_Y(self
),
351 self
->width
, ob_rr_theme
->handle_height
);
352 XMapWindow(ob_display
, self
->handle
);
354 if (self
->decorations
& OB_FRAME_DECOR_GRIPS
) {
355 XMoveWindow(ob_display
, self
->lgrip
,
356 -self
->rbwidth
, -self
->rbwidth
);
357 XMoveWindow(ob_display
, self
->rgrip
,
358 -self
->rbwidth
+ self
->width
-
359 ob_rr_theme
->grip_width
, -self
->rbwidth
);
360 XMapWindow(ob_display
, self
->lgrip
);
361 XMapWindow(ob_display
, self
->rgrip
);
363 XUnmapWindow(ob_display
, self
->lgrip
);
364 XUnmapWindow(ob_display
, self
->rgrip
);
367 /* XXX make a subwindow with these dimentions?
368 ob_rr_theme->grip_width + self->bwidth, 0,
369 self->width - (ob_rr_theme->grip_width + self->bwidth) * 2,
370 ob_rr_theme->handle_height);
373 XUnmapWindow(ob_display
, self
->handle
);
375 /* move and resize the plate */
376 XMoveResizeWindow(ob_display
, self
->plate
,
377 self
->innersize
.left
- self
->cbwidth_x
,
378 self
->innersize
.top
- self
->cbwidth_y
,
379 self
->client
->area
.width
+ self
->cbwidth_x
* 2,
380 self
->client
->area
.height
+ self
->cbwidth_y
* 2);
381 /* when the client has StaticGravity, it likes to move around. */
382 XMoveWindow(ob_display
, self
->client
->window
,
383 self
->cbwidth_x
, self
->cbwidth_y
);
386 STRUT_SET(self
->size
,
387 self
->innersize
.left
+ self
->bwidth
,
388 self
->innersize
.top
+ self
->bwidth
,
389 self
->innersize
.right
+ self
->bwidth
,
390 self
->innersize
.bottom
+ self
->bwidth
);
393 /* shading can change without being moved or resized */
394 RECT_SET_SIZE(self
->area
,
395 self
->client
->area
.width
+
396 self
->size
.left
+ self
->size
.right
,
397 (self
->client
->shaded
?
398 ob_rr_theme
->title_height
+ self
->rbwidth
* 2:
399 self
->client
->area
.height
+
400 self
->size
.top
+ self
->size
.bottom
));
403 /* find the new coordinates, done after setting the frame.size, for
404 frame_client_gravity. */
405 self
->area
.x
= self
->client
->area
.x
;
406 self
->area
.y
= self
->client
->area
.y
;
407 frame_client_gravity(self
, &self
->area
.x
, &self
->area
.y
);
411 /* move and resize the top level frame.
412 shading can change without being moved or resized */
413 XMoveResizeWindow(ob_display
, self
->window
,
414 self
->area
.x
, self
->area
.y
,
415 self
->area
.width
- self
->bwidth
* 2,
416 self
->area
.height
- self
->bwidth
* 2);
419 framerender_frame(self
);
421 frame_adjust_shape(self
);
424 if (!STRUT_EQUAL(self
->size
, oldsize
)) {
426 vals
[0] = self
->size
.left
;
427 vals
[1] = self
->size
.right
;
428 vals
[2] = self
->size
.top
;
429 vals
[3] = self
->size
.bottom
;
430 PROP_SETA32(self
->client
->window
, kde_net_wm_frame_strut
,
434 /* if this occurs while we are focus cycling, the indicator needs to
436 if (focus_cycle_target
== self
->client
)
437 focus_cycle_draw_indicator();
441 void frame_adjust_state(ObFrame
*self
)
443 framerender_frame(self
);
446 void frame_adjust_focus(ObFrame
*self
, gboolean hilite
)
448 self
->focused
= hilite
;
449 framerender_frame(self
);
452 void frame_adjust_title(ObFrame
*self
)
454 framerender_frame(self
);
457 void frame_adjust_icon(ObFrame
*self
)
459 framerender_frame(self
);
462 void frame_grab_client(ObFrame
*self
, ObClient
*client
)
464 self
->client
= client
;
466 /* reparent the client to the frame */
467 XReparentWindow(ob_display
, client
->window
, self
->plate
, 0, 0);
469 When reparenting the client window, it is usually not mapped yet, since
470 this occurs from a MapRequest. However, in the case where Openbox is
471 starting up, the window is already mapped, so we'll see unmap events for
472 it. There are 2 unmap events generated that we see, one with the 'event'
473 member set the root window, and one set to the client, but both get
474 handled and need to be ignored.
476 if (ob_state() == OB_STATE_STARTING
)
477 client
->ignore_unmaps
+= 2;
479 /* select the event mask on the client's parent (to receive config/map
480 req's) the ButtonPress is to catch clicks on the client border */
481 XSelectInput(ob_display
, self
->plate
, PLATE_EVENTMASK
);
483 /* map the client so it maps when the frame does */
484 XMapWindow(ob_display
, client
->window
);
486 frame_adjust_area(self
, TRUE
, TRUE
, FALSE
);
488 /* set all the windows for the frame in the window_map */
489 g_hash_table_insert(window_map
, &self
->window
, client
);
490 g_hash_table_insert(window_map
, &self
->plate
, client
);
491 g_hash_table_insert(window_map
, &self
->title
, client
);
492 g_hash_table_insert(window_map
, &self
->label
, client
);
493 g_hash_table_insert(window_map
, &self
->max
, client
);
494 g_hash_table_insert(window_map
, &self
->close
, client
);
495 g_hash_table_insert(window_map
, &self
->desk
, client
);
496 g_hash_table_insert(window_map
, &self
->shade
, client
);
497 g_hash_table_insert(window_map
, &self
->icon
, client
);
498 g_hash_table_insert(window_map
, &self
->iconify
, client
);
499 g_hash_table_insert(window_map
, &self
->handle
, client
);
500 g_hash_table_insert(window_map
, &self
->lgrip
, client
);
501 g_hash_table_insert(window_map
, &self
->rgrip
, client
);
502 g_hash_table_insert(window_map
, &self
->tlresize
, client
);
503 g_hash_table_insert(window_map
, &self
->trresize
, client
);
506 void frame_release_client(ObFrame
*self
, ObClient
*client
)
510 g_assert(self
->client
== client
);
512 /* check if the app has already reparented its window away */
513 if (XCheckTypedWindowEvent(ob_display
, client
->window
,
514 ReparentNotify
, &ev
)) {
515 XPutBackEvent(ob_display
, &ev
);
517 /* re-map the window since the unmanaging process unmaps it */
519 /* XXX ... um no it doesnt it unmaps its parent, the window itself
520 retains its mapped state, no?! XXX
521 XMapWindow(ob_display, client->window); */
523 /* according to the ICCCM - if the client doesn't reparent itself,
524 then we will reparent the window to root for them */
525 XReparentWindow(ob_display
, client
->window
,
526 RootWindow(ob_display
, ob_screen
),
531 /* remove all the windows for the frame from the window_map */
532 g_hash_table_remove(window_map
, &self
->window
);
533 g_hash_table_remove(window_map
, &self
->plate
);
534 g_hash_table_remove(window_map
, &self
->title
);
535 g_hash_table_remove(window_map
, &self
->label
);
536 g_hash_table_remove(window_map
, &self
->max
);
537 g_hash_table_remove(window_map
, &self
->close
);
538 g_hash_table_remove(window_map
, &self
->desk
);
539 g_hash_table_remove(window_map
, &self
->shade
);
540 g_hash_table_remove(window_map
, &self
->icon
);
541 g_hash_table_remove(window_map
, &self
->iconify
);
542 g_hash_table_remove(window_map
, &self
->handle
);
543 g_hash_table_remove(window_map
, &self
->lgrip
);
544 g_hash_table_remove(window_map
, &self
->rgrip
);
545 g_hash_table_remove(window_map
, &self
->tlresize
);
546 g_hash_table_remove(window_map
, &self
->trresize
);
548 ob_main_loop_timeout_remove_data(ob_main_loop
, flash_timeout
, self
);
553 static void layout_title(ObFrame
*self
)
557 gboolean n
, d
, i
, l
, m
, c
, s
;
559 n
= d
= i
= l
= m
= c
= s
= FALSE
;
561 /* figure out whats being shown, and the width of the label */
562 self
->label_width
= self
->width
- (ob_rr_theme
->padding
+ 1) * 2;
563 for (lc
= config_title_layout
; *lc
!= '\0'; ++lc
) {
566 if (n
) { *lc
= ' '; break; } /* rm duplicates */
568 self
->label_width
-= (ob_rr_theme
->button_size
+ 2 +
569 ob_rr_theme
->padding
+ 1);
572 if (d
) { *lc
= ' '; break; } /* rm duplicates */
574 self
->label_width
-= (ob_rr_theme
->button_size
+
575 ob_rr_theme
->padding
+ 1);
578 if (s
) { *lc
= ' '; break; } /* rm duplicates */
580 self
->label_width
-= (ob_rr_theme
->button_size
+
581 ob_rr_theme
->padding
+ 1);
584 if (i
) { *lc
= ' '; break; } /* rm duplicates */
586 self
->label_width
-= (ob_rr_theme
->button_size
+
587 ob_rr_theme
->padding
+ 1);
590 if (l
) { *lc
= ' '; break; } /* rm duplicates */
594 if (m
) { *lc
= ' '; break; } /* rm duplicates */
596 self
->label_width
-= (ob_rr_theme
->button_size
+
597 ob_rr_theme
->padding
+ 1);
600 if (c
) { *lc
= ' '; break; } /* rm duplicates */
602 self
->label_width
-= (ob_rr_theme
->button_size
+
603 ob_rr_theme
->padding
+ 1);
607 if (self
->label_width
< 1) self
->label_width
= 1;
609 XResizeWindow(ob_display
, self
->label
, self
->label_width
,
610 ob_rr_theme
->label_height
);
612 if (!n
) XUnmapWindow(ob_display
, self
->icon
);
613 if (!d
) XUnmapWindow(ob_display
, self
->desk
);
614 if (!s
) XUnmapWindow(ob_display
, self
->shade
);
615 if (!i
) XUnmapWindow(ob_display
, self
->iconify
);
616 if (!l
) XUnmapWindow(ob_display
, self
->label
);
617 if (!m
) XUnmapWindow(ob_display
, self
->max
);
618 if (!c
) XUnmapWindow(ob_display
, self
->close
);
620 x
= ob_rr_theme
->padding
+ 1;
621 for (lc
= config_title_layout
; *lc
!= '\0'; ++lc
) {
626 XMapWindow(ob_display
, self
->icon
);
627 XMoveWindow(ob_display
, self
->icon
, x
, ob_rr_theme
->padding
);
628 x
+= ob_rr_theme
->button_size
+ 2 + ob_rr_theme
->padding
+ 1;
633 XMapWindow(ob_display
, self
->desk
);
634 XMoveWindow(ob_display
, self
->desk
, x
, ob_rr_theme
->padding
+ 1);
635 x
+= ob_rr_theme
->button_size
+ ob_rr_theme
->padding
+ 1;
640 XMapWindow(ob_display
, self
->shade
);
641 XMoveWindow(ob_display
, self
->shade
, x
, ob_rr_theme
->padding
+ 1);
642 x
+= ob_rr_theme
->button_size
+ ob_rr_theme
->padding
+ 1;
647 XMapWindow(ob_display
, self
->iconify
);
648 XMoveWindow(ob_display
,self
->iconify
, x
, ob_rr_theme
->padding
+ 1);
649 x
+= ob_rr_theme
->button_size
+ ob_rr_theme
->padding
+ 1;
654 XMapWindow(ob_display
, self
->label
);
655 XMoveWindow(ob_display
, self
->label
, x
, ob_rr_theme
->padding
);
656 x
+= self
->label_width
+ ob_rr_theme
->padding
+ 1;
661 XMapWindow(ob_display
, self
->max
);
662 XMoveWindow(ob_display
, self
->max
, x
, ob_rr_theme
->padding
+ 1);
663 x
+= ob_rr_theme
->button_size
+ ob_rr_theme
->padding
+ 1;
668 XMapWindow(ob_display
, self
->close
);
669 XMoveWindow(ob_display
, self
->close
, x
, ob_rr_theme
->padding
+ 1);
670 x
+= ob_rr_theme
->button_size
+ ob_rr_theme
->padding
+ 1;
676 ObFrameContext
frame_context_from_string(const gchar
*name
)
678 if (!g_ascii_strcasecmp("Desktop", name
))
679 return OB_FRAME_CONTEXT_DESKTOP
;
680 else if (!g_ascii_strcasecmp("Client", name
))
681 return OB_FRAME_CONTEXT_CLIENT
;
682 else if (!g_ascii_strcasecmp("Titlebar", name
))
683 return OB_FRAME_CONTEXT_TITLEBAR
;
684 else if (!g_ascii_strcasecmp("Handle", name
))
685 return OB_FRAME_CONTEXT_HANDLE
;
686 else if (!g_ascii_strcasecmp("Frame", name
))
687 return OB_FRAME_CONTEXT_FRAME
;
688 else if (!g_ascii_strcasecmp("TLCorner", name
))
689 return OB_FRAME_CONTEXT_TLCORNER
;
690 else if (!g_ascii_strcasecmp("TRCorner", name
))
691 return OB_FRAME_CONTEXT_TRCORNER
;
692 else if (!g_ascii_strcasecmp("BLCorner", name
))
693 return OB_FRAME_CONTEXT_BLCORNER
;
694 else if (!g_ascii_strcasecmp("BRCorner", name
))
695 return OB_FRAME_CONTEXT_BRCORNER
;
696 else if (!g_ascii_strcasecmp("Maximize", name
))
697 return OB_FRAME_CONTEXT_MAXIMIZE
;
698 else if (!g_ascii_strcasecmp("AllDesktops", name
))
699 return OB_FRAME_CONTEXT_ALLDESKTOPS
;
700 else if (!g_ascii_strcasecmp("Shade", name
))
701 return OB_FRAME_CONTEXT_SHADE
;
702 else if (!g_ascii_strcasecmp("Iconify", name
))
703 return OB_FRAME_CONTEXT_ICONIFY
;
704 else if (!g_ascii_strcasecmp("Icon", name
))
705 return OB_FRAME_CONTEXT_ICON
;
706 else if (!g_ascii_strcasecmp("Close", name
))
707 return OB_FRAME_CONTEXT_CLOSE
;
708 else if (!g_ascii_strcasecmp("MoveResize", name
))
709 return OB_FRAME_CONTEXT_MOVE_RESIZE
;
710 return OB_FRAME_CONTEXT_NONE
;
713 ObFrameContext
frame_context(ObClient
*client
, Window win
)
717 if (moveresize_in_progress
)
718 return OB_FRAME_CONTEXT_MOVE_RESIZE
;
720 if (win
== RootWindow(ob_display
, ob_screen
))
721 return OB_FRAME_CONTEXT_DESKTOP
;
722 if (client
== NULL
) return OB_FRAME_CONTEXT_NONE
;
723 if (win
== client
->window
) {
724 /* conceptually, this is the desktop, as far as users are
726 if (client
->type
== OB_CLIENT_TYPE_DESKTOP
)
727 return OB_FRAME_CONTEXT_DESKTOP
;
728 return OB_FRAME_CONTEXT_CLIENT
;
731 self
= client
->frame
;
732 if (win
== self
->plate
) {
733 /* conceptually, this is the desktop, as far as users are
735 if (client
->type
== OB_CLIENT_TYPE_DESKTOP
)
736 return OB_FRAME_CONTEXT_DESKTOP
;
737 return OB_FRAME_CONTEXT_CLIENT
;
740 if (win
== self
->window
) return OB_FRAME_CONTEXT_FRAME
;
741 if (win
== self
->title
) return OB_FRAME_CONTEXT_TITLEBAR
;
742 if (win
== self
->label
) return OB_FRAME_CONTEXT_TITLEBAR
;
743 if (win
== self
->handle
) return OB_FRAME_CONTEXT_HANDLE
;
744 if (win
== self
->lgrip
) return OB_FRAME_CONTEXT_BLCORNER
;
745 if (win
== self
->rgrip
) return OB_FRAME_CONTEXT_BRCORNER
;
746 if (win
== self
->tlresize
) return OB_FRAME_CONTEXT_TLCORNER
;
747 if (win
== self
->trresize
) return OB_FRAME_CONTEXT_TRCORNER
;
748 if (win
== self
->max
) return OB_FRAME_CONTEXT_MAXIMIZE
;
749 if (win
== self
->iconify
) return OB_FRAME_CONTEXT_ICONIFY
;
750 if (win
== self
->close
) return OB_FRAME_CONTEXT_CLOSE
;
751 if (win
== self
->icon
) return OB_FRAME_CONTEXT_ICON
;
752 if (win
== self
->desk
) return OB_FRAME_CONTEXT_ALLDESKTOPS
;
753 if (win
== self
->shade
) return OB_FRAME_CONTEXT_SHADE
;
755 return OB_FRAME_CONTEXT_NONE
;
758 void frame_client_gravity(ObFrame
*self
, gint
*x
, gint
*y
)
761 switch (self
->client
->gravity
) {
763 case NorthWestGravity
:
764 case SouthWestGravity
:
771 *x
-= (self
->size
.left
+ self
->size
.right
) / 2;
774 case NorthEastGravity
:
775 case SouthEastGravity
:
777 *x
-= self
->size
.left
+ self
->size
.right
;
782 *x
-= self
->size
.left
;
787 switch (self
->client
->gravity
) {
789 case NorthWestGravity
:
790 case NorthEastGravity
:
797 *y
-= (self
->size
.top
+ self
->size
.bottom
) / 2;
800 case SouthWestGravity
:
801 case SouthEastGravity
:
803 *y
-= self
->size
.top
+ self
->size
.bottom
;
808 *y
-= self
->size
.top
;
813 void frame_frame_gravity(ObFrame
*self
, gint
*x
, gint
*y
)
816 switch (self
->client
->gravity
) {
818 case NorthWestGravity
:
820 case SouthWestGravity
:
825 *x
+= (self
->size
.left
+ self
->size
.right
) / 2;
827 case NorthEastGravity
:
829 case SouthEastGravity
:
830 *x
+= self
->size
.left
+ self
->size
.right
;
834 *x
+= self
->size
.left
;
839 switch (self
->client
->gravity
) {
841 case NorthWestGravity
:
843 case NorthEastGravity
:
848 *y
+= (self
->size
.top
+ self
->size
.bottom
) / 2;
850 case SouthWestGravity
:
852 case SouthEastGravity
:
853 *y
+= self
->size
.top
+ self
->size
.bottom
;
857 *y
+= self
->size
.top
;
862 static void flash_done(gpointer data
)
864 ObFrame
*self
= data
;
866 if (self
->focused
!= self
->flash_on
)
867 frame_adjust_focus(self
, self
->focused
);
870 static gboolean
flash_timeout(gpointer data
)
872 ObFrame
*self
= data
;
875 g_get_current_time(&now
);
876 if (now
.tv_sec
> self
->flash_end
.tv_sec
||
877 (now
.tv_sec
== self
->flash_end
.tv_sec
&&
878 now
.tv_usec
>= self
->flash_end
.tv_usec
))
879 self
->flashing
= FALSE
;
882 return FALSE
; /* we are done */
884 self
->flash_on
= !self
->flash_on
;
885 if (!self
->focused
) {
886 frame_adjust_focus(self
, self
->flash_on
);
887 self
->focused
= FALSE
;
890 return TRUE
; /* go again */
893 void frame_flash_start(ObFrame
*self
)
895 self
->flash_on
= self
->focused
;
898 ob_main_loop_timeout_add(ob_main_loop
,
899 G_USEC_PER_SEC
* 0.6,
903 g_get_current_time(&self
->flash_end
);
904 g_time_val_add(&self
->flash_end
, G_USEC_PER_SEC
* 5);
906 self
->flashing
= TRUE
;
909 void frame_flash_stop(ObFrame
*self
)
911 self
->flashing
= FALSE
;