4 #include "extensions.h"
6 #include "framerender.h"
8 #include "render/theme.h"
10 #define PLATE_EVENTMASK (SubstructureRedirectMask | ButtonPressMask)
11 #define FRAME_EVENTMASK (EnterWindowMask | LeaveWindowMask | \
12 ButtonPressMask | ButtonReleaseMask | \
14 #define ELEMENT_EVENTMASK (ButtonPressMask | ButtonReleaseMask | \
15 ButtonMotionMask | ExposureMask | \
16 EnterWindowMask | LeaveWindowMask)
18 #define FRAME_HANDLE_Y(f) (f->innersize.top + f->client->area.height + \
21 static void layout_title(ObFrame
*self
);
22 static void flash_done(gpointer data
);
23 static gboolean
flash_timeout(gpointer data
);
25 static void set_theme_statics(ObFrame
*self
);
26 static void free_theme_statics(ObFrame
*self
);
28 static Window
createWindow(Window parent
, unsigned long mask
,
29 XSetWindowAttributes
*attrib
)
31 return XCreateWindow(ob_display
, parent
, 0, 0, 1, 1, 0,
32 RrDepth(ob_rr_inst
), InputOutput
,
33 RrVisual(ob_rr_inst
), mask
, attrib
);
39 XSetWindowAttributes attrib
;
43 self
= g_new(ObFrame
, 1);
45 self
->visible
= FALSE
;
46 self
->obscured
= TRUE
;
47 self
->decorations
= 0;
48 self
->flashing
= FALSE
;
50 /* create all of the decor windows */
51 mask
= CWOverrideRedirect
| CWEventMask
;
52 attrib
.event_mask
= FRAME_EVENTMASK
;
53 attrib
.override_redirect
= TRUE
;
54 self
->window
= createWindow(RootWindow(ob_display
, ob_screen
),
58 self
->plate
= createWindow(self
->window
, mask
, &attrib
);
61 attrib
.event_mask
= ELEMENT_EVENTMASK
;
62 self
->title
= createWindow(self
->window
, mask
, &attrib
);
65 attrib
.cursor
= ob_cursor(OB_CURSOR_NORTHWEST
);
66 self
->tlresize
= createWindow(self
->title
, mask
, &attrib
);
67 attrib
.cursor
= ob_cursor(OB_CURSOR_NORTHEAST
);
68 self
->trresize
= createWindow(self
->title
, mask
, &attrib
);
71 self
->label
= createWindow(self
->title
, mask
, &attrib
);
72 self
->max
= createWindow(self
->title
, mask
, &attrib
);
73 self
->close
= createWindow(self
->title
, mask
, &attrib
);
74 self
->desk
= createWindow(self
->title
, mask
, &attrib
);
75 self
->shade
= createWindow(self
->title
, mask
, &attrib
);
76 self
->icon
= createWindow(self
->title
, mask
, &attrib
);
77 self
->iconify
= createWindow(self
->title
, mask
, &attrib
);
78 self
->handle
= createWindow(self
->window
, mask
, &attrib
);
81 attrib
.cursor
= ob_cursor(OB_CURSOR_SOUTHWEST
);
82 self
->lgrip
= createWindow(self
->handle
, mask
, &attrib
);
83 attrib
.cursor
= ob_cursor(OB_CURSOR_SOUTHEAST
);
84 self
->rgrip
= createWindow(self
->handle
, mask
, &attrib
);
86 self
->focused
= FALSE
;
88 /* the other stuff is shown based on decor settings */
89 XMapWindow(ob_display
, self
->plate
);
90 XMapWindow(ob_display
, self
->lgrip
);
91 XMapWindow(ob_display
, self
->rgrip
);
92 XMapWindow(ob_display
, self
->label
);
94 self
->max_press
= self
->close_press
= self
->desk_press
=
95 self
->iconify_press
= self
->shade_press
= FALSE
;
96 self
->max_hover
= self
->close_hover
= self
->desk_hover
=
97 self
->iconify_hover
= self
->shade_hover
= FALSE
;
99 set_theme_statics(self
);
101 return (ObFrame
*)self
;
104 static void set_theme_statics(ObFrame
*self
)
106 /* set colors/appearance/sizes for stuff that doesn't change */
107 XSetWindowBorder(ob_display
, self
->window
, ob_rr_theme
->b_color
->pixel
);
108 XSetWindowBorder(ob_display
, self
->title
, ob_rr_theme
->b_color
->pixel
);
109 XSetWindowBorder(ob_display
, self
->handle
, ob_rr_theme
->b_color
->pixel
);
110 XSetWindowBorder(ob_display
, self
->rgrip
, ob_rr_theme
->b_color
->pixel
);
111 XSetWindowBorder(ob_display
, self
->lgrip
, ob_rr_theme
->b_color
->pixel
);
113 XResizeWindow(ob_display
, self
->max
,
114 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
115 XResizeWindow(ob_display
, self
->iconify
,
116 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
117 XResizeWindow(ob_display
, self
->icon
,
118 ob_rr_theme
->button_size
+ 2, ob_rr_theme
->button_size
+ 2);
119 XResizeWindow(ob_display
, self
->close
,
120 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
121 XResizeWindow(ob_display
, self
->desk
,
122 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
123 XResizeWindow(ob_display
, self
->shade
,
124 ob_rr_theme
->button_size
, ob_rr_theme
->button_size
);
125 XResizeWindow(ob_display
, self
->lgrip
,
126 ob_rr_theme
->grip_width
, ob_rr_theme
->handle_height
);
127 XResizeWindow(ob_display
, self
->rgrip
,
128 ob_rr_theme
->grip_width
, ob_rr_theme
->handle_height
);
129 XResizeWindow(ob_display
, self
->tlresize
,
130 ob_rr_theme
->grip_width
, ob_rr_theme
->handle_height
);
131 XResizeWindow(ob_display
, self
->trresize
,
132 ob_rr_theme
->grip_width
, ob_rr_theme
->handle_height
);
134 /* set up the dynamic appearances */
135 self
->a_unfocused_title
= RrAppearanceCopy(ob_rr_theme
->a_unfocused_title
);
136 self
->a_focused_title
= RrAppearanceCopy(ob_rr_theme
->a_focused_title
);
137 self
->a_unfocused_label
= RrAppearanceCopy(ob_rr_theme
->a_unfocused_label
);
138 self
->a_focused_label
= RrAppearanceCopy(ob_rr_theme
->a_focused_label
);
139 self
->a_unfocused_handle
=
140 RrAppearanceCopy(ob_rr_theme
->a_unfocused_handle
);
141 self
->a_focused_handle
= RrAppearanceCopy(ob_rr_theme
->a_focused_handle
);
142 self
->a_icon
= RrAppearanceCopy(ob_rr_theme
->a_icon
);
145 static void free_theme_statics(ObFrame
*self
)
147 RrAppearanceFree(self
->a_unfocused_title
);
148 RrAppearanceFree(self
->a_focused_title
);
149 RrAppearanceFree(self
->a_unfocused_label
);
150 RrAppearanceFree(self
->a_focused_label
);
151 RrAppearanceFree(self
->a_unfocused_handle
);
152 RrAppearanceFree(self
->a_focused_handle
);
153 RrAppearanceFree(self
->a_icon
);
156 static void frame_free(ObFrame
*self
)
158 free_theme_statics(self
);
160 XDestroyWindow(ob_display
, self
->window
);
165 void frame_show(ObFrame
*self
)
167 if (!self
->visible
) {
168 self
->visible
= TRUE
;
169 XMapWindow(ob_display
, self
->window
);
173 void frame_hide(ObFrame
*self
)
176 self
->visible
= FALSE
;
177 self
->client
->ignore_unmaps
++;
178 XUnmapWindow(ob_display
, self
->window
);
182 void frame_adjust_theme(ObFrame
*self
)
184 free_theme_statics(self
);
185 set_theme_statics(self
);
186 frame_adjust_area(self
, TRUE
, TRUE
, FALSE
);
189 void frame_adjust_shape(ObFrame
*self
)
195 if (!self
->client
->shaped
) {
196 /* clear the shape on the frame window */
197 XShapeCombineMask(ob_display
, self
->window
, ShapeBounding
,
198 self
->innersize
.left
,
202 /* make the frame's shape match the clients */
203 XShapeCombineShape(ob_display
, self
->window
, ShapeBounding
,
204 self
->innersize
.left
,
206 self
->client
->window
,
207 ShapeBounding
, ShapeSet
);
210 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
) {
211 xrect
[0].x
= -ob_rr_theme
->bwidth
;
212 xrect
[0].y
= -ob_rr_theme
->bwidth
;
213 xrect
[0].width
= self
->width
+ self
->rbwidth
* 2;
214 xrect
[0].height
= ob_rr_theme
->title_height
+
219 if (self
->decorations
& OB_FRAME_DECOR_HANDLE
) {
220 xrect
[1].x
= -ob_rr_theme
->bwidth
;
221 xrect
[1].y
= FRAME_HANDLE_Y(self
);
222 xrect
[1].width
= self
->width
+ self
->rbwidth
* 2;
223 xrect
[1].height
= ob_rr_theme
->handle_height
+
228 XShapeCombineRectangles(ob_display
, self
->window
,
229 ShapeBounding
, 0, 0, xrect
, num
,
230 ShapeUnion
, Unsorted
);
235 void frame_adjust_area(ObFrame
*self
, gboolean moved
,
236 gboolean resized
, gboolean fake
)
239 self
->decorations
= self
->client
->decorations
;
240 self
->max_horz
= self
->client
->max_horz
;
242 if (self
->decorations
& OB_FRAME_DECOR_BORDER
) {
243 self
->bwidth
= ob_rr_theme
->bwidth
;
244 self
->cbwidth_x
= self
->cbwidth_y
= ob_rr_theme
->cbwidth
;
246 self
->bwidth
= self
->cbwidth_x
= self
->cbwidth_y
= 0;
248 self
->rbwidth
= self
->bwidth
;
251 self
->bwidth
= self
->cbwidth_x
= 0;
253 STRUT_SET(self
->innersize
,
258 self
->width
= self
->client
->area
.width
+ self
->cbwidth_x
* 2 -
259 (self
->max_horz
? self
->rbwidth
* 2 : 0);
260 self
->width
= MAX(self
->width
, 1); /* no lower than 1 */
262 /* set border widths */
264 XSetWindowBorderWidth(ob_display
, self
->window
, self
->bwidth
);
265 XSetWindowBorderWidth(ob_display
, self
->title
, self
->rbwidth
);
266 XSetWindowBorderWidth(ob_display
, self
->handle
, self
->rbwidth
);
267 XSetWindowBorderWidth(ob_display
, self
->lgrip
, self
->rbwidth
);
268 XSetWindowBorderWidth(ob_display
, self
->rgrip
, self
->rbwidth
);
271 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
)
272 self
->innersize
.top
+= ob_rr_theme
->title_height
+ self
->rbwidth
+
273 (self
->rbwidth
- self
->bwidth
);
274 if (self
->decorations
& OB_FRAME_DECOR_HANDLE
)
275 self
->innersize
.bottom
+= ob_rr_theme
->handle_height
+
276 self
->rbwidth
+ (self
->rbwidth
- self
->bwidth
);
278 /* they all default off, they're turned on in layout_title */
282 self
->iconify_x
= -1;
287 /* position/size and map/unmap all the windows */
290 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
) {
291 XMoveResizeWindow(ob_display
, self
->title
,
292 -self
->bwidth
, -self
->bwidth
,
293 self
->width
, ob_rr_theme
->title_height
);
294 XMapWindow(ob_display
, self
->title
);
296 if (self
->decorations
& OB_FRAME_DECOR_GRIPS
) {
297 XMoveWindow(ob_display
, self
->tlresize
, 0, 0);
298 XMoveWindow(ob_display
, self
->trresize
,
299 self
->width
- ob_rr_theme
->grip_width
, 0);
300 XMapWindow(ob_display
, self
->tlresize
);
301 XMapWindow(ob_display
, self
->trresize
);
303 XUnmapWindow(ob_display
, self
->tlresize
);
304 XUnmapWindow(ob_display
, self
->trresize
);
307 XUnmapWindow(ob_display
, self
->title
);
310 if (self
->decorations
& OB_FRAME_DECOR_TITLEBAR
)
311 /* layout the title bar elements */
315 if (self
->decorations
& OB_FRAME_DECOR_HANDLE
) {
316 XMoveResizeWindow(ob_display
, self
->handle
,
317 -self
->bwidth
, FRAME_HANDLE_Y(self
),
318 self
->width
, ob_rr_theme
->handle_height
);
319 XMapWindow(ob_display
, self
->handle
);
321 if (self
->decorations
& OB_FRAME_DECOR_GRIPS
) {
322 XMoveWindow(ob_display
, self
->lgrip
,
323 -self
->rbwidth
, -self
->rbwidth
);
324 XMoveWindow(ob_display
, self
->rgrip
,
325 -self
->rbwidth
+ self
->width
-
326 ob_rr_theme
->grip_width
, -self
->rbwidth
);
327 XMapWindow(ob_display
, self
->lgrip
);
328 XMapWindow(ob_display
, self
->rgrip
);
330 XUnmapWindow(ob_display
, self
->lgrip
);
331 XUnmapWindow(ob_display
, self
->rgrip
);
334 /* XXX make a subwindow with these dimentions?
335 ob_rr_theme->grip_width + self->bwidth, 0,
336 self->width - (ob_rr_theme->grip_width + self->bwidth) * 2,
337 ob_rr_theme->handle_height);
340 XUnmapWindow(ob_display
, self
->handle
);
342 /* move and resize the plate */
343 XMoveResizeWindow(ob_display
, self
->plate
,
344 self
->innersize
.left
- self
->cbwidth_x
,
345 self
->innersize
.top
- self
->cbwidth_y
,
346 self
->client
->area
.width
+ self
->cbwidth_x
* 2,
347 self
->client
->area
.height
+ self
->cbwidth_y
* 2);
348 /* when the client has StaticGravity, it likes to move around. */
349 XMoveWindow(ob_display
, self
->client
->window
,
350 self
->cbwidth_x
, self
->cbwidth_y
);
353 STRUT_SET(self
->size
,
354 self
->innersize
.left
+ self
->bwidth
,
355 self
->innersize
.top
+ self
->bwidth
,
356 self
->innersize
.right
+ self
->bwidth
,
357 self
->innersize
.bottom
+ self
->bwidth
);
360 /* shading can change without being moved or resized */
361 RECT_SET_SIZE(self
->area
,
362 self
->client
->area
.width
+
363 self
->size
.left
+ self
->size
.right
,
364 (self
->client
->shaded
?
365 ob_rr_theme
->title_height
+ self
->rbwidth
* 2:
366 self
->client
->area
.height
+
367 self
->size
.top
+ self
->size
.bottom
));
370 /* find the new coordinates, done after setting the frame.size, for
371 frame_client_gravity. */
372 self
->area
.x
= self
->client
->area
.x
;
373 self
->area
.y
= self
->client
->area
.y
;
374 frame_client_gravity(self
, &self
->area
.x
, &self
->area
.y
);
378 /* move and resize the top level frame.
379 shading can change without being moved or resized */
380 XMoveResizeWindow(ob_display
, self
->window
,
381 self
->area
.x
, self
->area
.y
,
382 self
->area
.width
- self
->bwidth
* 2,
383 self
->area
.height
- self
->bwidth
* 2);
386 framerender_frame(self
);
388 frame_adjust_shape(self
);
393 void frame_adjust_state(ObFrame
*self
)
395 framerender_frame(self
);
398 void frame_adjust_focus(ObFrame
*self
, gboolean hilite
)
400 self
->focused
= hilite
;
401 framerender_frame(self
);
404 void frame_adjust_title(ObFrame
*self
)
406 framerender_frame(self
);
409 void frame_adjust_icon(ObFrame
*self
)
411 framerender_frame(self
);
414 void frame_grab_client(ObFrame
*self
, ObClient
*client
)
416 self
->client
= client
;
418 /* reparent the client to the frame */
419 XReparentWindow(ob_display
, client
->window
, self
->plate
, 0, 0);
421 When reparenting the client window, it is usually not mapped yet, since
422 this occurs from a MapRequest. However, in the case where Openbox is
423 starting up, the window is already mapped, so we'll see unmap events for
424 it. There are 2 unmap events generated that we see, one with the 'event'
425 member set the root window, and one set to the client, but both get
426 handled and need to be ignored.
428 if (ob_state() == OB_STATE_STARTING
)
429 client
->ignore_unmaps
+= 2;
431 /* select the event mask on the client's parent (to receive config/map
432 req's) the ButtonPress is to catch clicks on the client border */
433 XSelectInput(ob_display
, self
->plate
, PLATE_EVENTMASK
);
435 /* map the client so it maps when the frame does */
436 XMapWindow(ob_display
, client
->window
);
438 frame_adjust_area(self
, TRUE
, TRUE
, FALSE
);
440 /* set all the windows for the frame in the window_map */
441 g_hash_table_insert(window_map
, &self
->window
, client
);
442 g_hash_table_insert(window_map
, &self
->plate
, client
);
443 g_hash_table_insert(window_map
, &self
->title
, client
);
444 g_hash_table_insert(window_map
, &self
->label
, client
);
445 g_hash_table_insert(window_map
, &self
->max
, client
);
446 g_hash_table_insert(window_map
, &self
->close
, client
);
447 g_hash_table_insert(window_map
, &self
->desk
, client
);
448 g_hash_table_insert(window_map
, &self
->shade
, client
);
449 g_hash_table_insert(window_map
, &self
->icon
, client
);
450 g_hash_table_insert(window_map
, &self
->iconify
, client
);
451 g_hash_table_insert(window_map
, &self
->handle
, client
);
452 g_hash_table_insert(window_map
, &self
->lgrip
, client
);
453 g_hash_table_insert(window_map
, &self
->rgrip
, client
);
454 g_hash_table_insert(window_map
, &self
->tlresize
, client
);
455 g_hash_table_insert(window_map
, &self
->trresize
, client
);
458 void frame_release_client(ObFrame
*self
, ObClient
*client
)
462 g_assert(self
->client
== client
);
464 /* check if the app has already reparented its window away */
465 if (XCheckTypedWindowEvent(ob_display
, client
->window
,
466 ReparentNotify
, &ev
)) {
467 XPutBackEvent(ob_display
, &ev
);
469 /* re-map the window since the unmanaging process unmaps it */
471 /* XXX ... um no it doesnt it unmaps its parent, the window itself
472 retains its mapped state, no?! XXX
473 XMapWindow(ob_display, client->window); */
475 /* according to the ICCCM - if the client doesn't reparent itself,
476 then we will reparent the window to root for them */
477 XReparentWindow(ob_display
, client
->window
,
478 RootWindow(ob_display
, ob_screen
),
483 /* remove all the windows for the frame from the window_map */
484 g_hash_table_remove(window_map
, &self
->window
);
485 g_hash_table_remove(window_map
, &self
->plate
);
486 g_hash_table_remove(window_map
, &self
->title
);
487 g_hash_table_remove(window_map
, &self
->label
);
488 g_hash_table_remove(window_map
, &self
->max
);
489 g_hash_table_remove(window_map
, &self
->close
);
490 g_hash_table_remove(window_map
, &self
->desk
);
491 g_hash_table_remove(window_map
, &self
->shade
);
492 g_hash_table_remove(window_map
, &self
->icon
);
493 g_hash_table_remove(window_map
, &self
->iconify
);
494 g_hash_table_remove(window_map
, &self
->handle
);
495 g_hash_table_remove(window_map
, &self
->lgrip
);
496 g_hash_table_remove(window_map
, &self
->rgrip
);
497 g_hash_table_remove(window_map
, &self
->tlresize
);
498 g_hash_table_remove(window_map
, &self
->trresize
);
500 ob_main_loop_timeout_remove(ob_main_loop
, flash_timeout
);
505 static void layout_title(ObFrame
*self
)
509 gboolean n
, d
, i
, l
, m
, c
, s
;
511 n
= d
= i
= l
= m
= c
= s
= FALSE
;
513 /* figure out whats being shown, and the width of the label */
514 self
->label_width
= self
->width
- (ob_rr_theme
->bevel
+ 1) * 2;
515 for (lc
= config_title_layout
; *lc
!= '\0'; ++lc
) {
518 if (n
) { *lc
= ' '; break; } /* rm duplicates */
520 self
->label_width
-= (ob_rr_theme
->button_size
+ 2 +
521 ob_rr_theme
->bevel
+ 1);
524 if (d
) { *lc
= ' '; break; } /* rm duplicates */
526 self
->label_width
-= (ob_rr_theme
->button_size
+
527 ob_rr_theme
->bevel
+ 1);
530 if (s
) { *lc
= ' '; break; } /* rm duplicates */
532 self
->label_width
-= (ob_rr_theme
->button_size
+
533 ob_rr_theme
->bevel
+ 1);
536 if (i
) { *lc
= ' '; break; } /* rm duplicates */
538 self
->label_width
-= (ob_rr_theme
->button_size
+
539 ob_rr_theme
->bevel
+ 1);
542 if (l
) { *lc
= ' '; break; } /* rm duplicates */
546 if (m
) { *lc
= ' '; break; } /* rm duplicates */
548 self
->label_width
-= (ob_rr_theme
->button_size
+
549 ob_rr_theme
->bevel
+ 1);
552 if (c
) { *lc
= ' '; break; } /* rm duplicates */
554 self
->label_width
-= (ob_rr_theme
->button_size
+
555 ob_rr_theme
->bevel
+ 1);
559 if (self
->label_width
< 1) self
->label_width
= 1;
561 XResizeWindow(ob_display
, self
->label
, self
->label_width
,
562 ob_rr_theme
->label_height
);
564 if (!n
) XUnmapWindow(ob_display
, self
->icon
);
565 if (!d
) XUnmapWindow(ob_display
, self
->desk
);
566 if (!s
) XUnmapWindow(ob_display
, self
->shade
);
567 if (!i
) XUnmapWindow(ob_display
, self
->iconify
);
568 if (!l
) XUnmapWindow(ob_display
, self
->label
);
569 if (!m
) XUnmapWindow(ob_display
, self
->max
);
570 if (!c
) XUnmapWindow(ob_display
, self
->close
);
572 x
= ob_rr_theme
->bevel
+ 1;
573 for (lc
= config_title_layout
; *lc
!= '\0'; ++lc
) {
578 XMapWindow(ob_display
, self
->icon
);
579 XMoveWindow(ob_display
, self
->icon
, x
, ob_rr_theme
->bevel
);
580 x
+= ob_rr_theme
->button_size
+ 2 + ob_rr_theme
->bevel
+ 1;
585 XMapWindow(ob_display
, self
->desk
);
586 XMoveWindow(ob_display
, self
->desk
, x
, ob_rr_theme
->bevel
+ 1);
587 x
+= ob_rr_theme
->button_size
+ ob_rr_theme
->bevel
+ 1;
592 XMapWindow(ob_display
, self
->shade
);
593 XMoveWindow(ob_display
, self
->shade
, x
, ob_rr_theme
->bevel
+ 1);
594 x
+= ob_rr_theme
->button_size
+ ob_rr_theme
->bevel
+ 1;
599 XMapWindow(ob_display
, self
->iconify
);
600 XMoveWindow(ob_display
, self
->iconify
, x
, ob_rr_theme
->bevel
+ 1);
601 x
+= ob_rr_theme
->button_size
+ ob_rr_theme
->bevel
+ 1;
606 XMapWindow(ob_display
, self
->label
);
607 XMoveWindow(ob_display
, self
->label
, x
, ob_rr_theme
->bevel
);
608 x
+= self
->label_width
+ ob_rr_theme
->bevel
+ 1;
613 XMapWindow(ob_display
, self
->max
);
614 XMoveWindow(ob_display
, self
->max
, x
, ob_rr_theme
->bevel
+ 1);
615 x
+= ob_rr_theme
->button_size
+ ob_rr_theme
->bevel
+ 1;
620 XMapWindow(ob_display
, self
->close
);
621 XMoveWindow(ob_display
, self
->close
, x
, ob_rr_theme
->bevel
+ 1);
622 x
+= ob_rr_theme
->button_size
+ ob_rr_theme
->bevel
+ 1;
628 ObFrameContext
frame_context_from_string(char *name
)
630 if (!g_ascii_strcasecmp("desktop", name
))
631 return OB_FRAME_CONTEXT_DESKTOP
;
632 else if (!g_ascii_strcasecmp("client", name
))
633 return OB_FRAME_CONTEXT_CLIENT
;
634 else if (!g_ascii_strcasecmp("titlebar", name
))
635 return OB_FRAME_CONTEXT_TITLEBAR
;
636 else if (!g_ascii_strcasecmp("handle", name
))
637 return OB_FRAME_CONTEXT_HANDLE
;
638 else if (!g_ascii_strcasecmp("frame", name
))
639 return OB_FRAME_CONTEXT_FRAME
;
640 else if (!g_ascii_strcasecmp("tlcorner", name
))
641 return OB_FRAME_CONTEXT_TLCORNER
;
642 else if (!g_ascii_strcasecmp("trcorner", name
))
643 return OB_FRAME_CONTEXT_TRCORNER
;
644 else if (!g_ascii_strcasecmp("blcorner", name
))
645 return OB_FRAME_CONTEXT_BLCORNER
;
646 else if (!g_ascii_strcasecmp("brcorner", name
))
647 return OB_FRAME_CONTEXT_BRCORNER
;
648 else if (!g_ascii_strcasecmp("maximize", name
))
649 return OB_FRAME_CONTEXT_MAXIMIZE
;
650 else if (!g_ascii_strcasecmp("alldesktops", name
))
651 return OB_FRAME_CONTEXT_ALLDESKTOPS
;
652 else if (!g_ascii_strcasecmp("shade", name
))
653 return OB_FRAME_CONTEXT_SHADE
;
654 else if (!g_ascii_strcasecmp("iconify", name
))
655 return OB_FRAME_CONTEXT_ICONIFY
;
656 else if (!g_ascii_strcasecmp("icon", name
))
657 return OB_FRAME_CONTEXT_ICON
;
658 else if (!g_ascii_strcasecmp("close", name
))
659 return OB_FRAME_CONTEXT_CLOSE
;
660 return OB_FRAME_CONTEXT_NONE
;
663 ObFrameContext
frame_context(ObClient
*client
, Window win
)
667 if (win
== RootWindow(ob_display
, ob_screen
))
668 return OB_FRAME_CONTEXT_DESKTOP
;
669 if (client
== NULL
) return OB_FRAME_CONTEXT_NONE
;
670 if (win
== client
->window
) {
671 /* conceptually, this is the desktop, as far as users are
673 if (client
->type
== OB_CLIENT_TYPE_DESKTOP
)
674 return OB_FRAME_CONTEXT_DESKTOP
;
675 return OB_FRAME_CONTEXT_CLIENT
;
678 self
= client
->frame
;
679 if (win
== self
->plate
) {
680 /* conceptually, this is the desktop, as far as users are
682 if (client
->type
== OB_CLIENT_TYPE_DESKTOP
)
683 return OB_FRAME_CONTEXT_DESKTOP
;
684 return OB_FRAME_CONTEXT_CLIENT
;
687 if (win
== self
->window
) return OB_FRAME_CONTEXT_FRAME
;
688 if (win
== self
->title
) return OB_FRAME_CONTEXT_TITLEBAR
;
689 if (win
== self
->label
) return OB_FRAME_CONTEXT_TITLEBAR
;
690 if (win
== self
->handle
) return OB_FRAME_CONTEXT_HANDLE
;
691 if (win
== self
->lgrip
) return OB_FRAME_CONTEXT_BLCORNER
;
692 if (win
== self
->rgrip
) return OB_FRAME_CONTEXT_BRCORNER
;
693 if (win
== self
->tlresize
) return OB_FRAME_CONTEXT_TLCORNER
;
694 if (win
== self
->trresize
) return OB_FRAME_CONTEXT_TRCORNER
;
695 if (win
== self
->max
) return OB_FRAME_CONTEXT_MAXIMIZE
;
696 if (win
== self
->iconify
) return OB_FRAME_CONTEXT_ICONIFY
;
697 if (win
== self
->close
) return OB_FRAME_CONTEXT_CLOSE
;
698 if (win
== self
->icon
) return OB_FRAME_CONTEXT_ICON
;
699 if (win
== self
->desk
) return OB_FRAME_CONTEXT_ALLDESKTOPS
;
700 if (win
== self
->shade
) return OB_FRAME_CONTEXT_SHADE
;
702 return OB_FRAME_CONTEXT_NONE
;
705 void frame_client_gravity(ObFrame
*self
, int *x
, int *y
)
708 switch (self
->client
->gravity
) {
710 case NorthWestGravity
:
711 case SouthWestGravity
:
718 *x
-= (self
->size
.left
+ self
->size
.right
) / 2;
721 case NorthEastGravity
:
722 case SouthEastGravity
:
724 *x
-= self
->size
.left
+ self
->size
.right
;
729 *x
-= self
->size
.left
;
734 switch (self
->client
->gravity
) {
736 case NorthWestGravity
:
737 case NorthEastGravity
:
744 *y
-= (self
->size
.top
+ self
->size
.bottom
) / 2;
747 case SouthWestGravity
:
748 case SouthEastGravity
:
750 *y
-= self
->size
.top
+ self
->size
.bottom
;
755 *y
-= self
->size
.top
;
760 void frame_frame_gravity(ObFrame
*self
, int *x
, int *y
)
763 switch (self
->client
->gravity
) {
765 case NorthWestGravity
:
767 case SouthWestGravity
:
772 *x
+= (self
->size
.left
+ self
->size
.right
) / 2;
774 case NorthEastGravity
:
776 case SouthEastGravity
:
777 *x
+= self
->size
.left
+ self
->size
.right
;
781 *x
+= self
->size
.left
;
786 switch (self
->client
->gravity
) {
788 case NorthWestGravity
:
790 case NorthEastGravity
:
795 *y
+= (self
->size
.top
+ self
->size
.bottom
) / 2;
797 case SouthWestGravity
:
799 case SouthEastGravity
:
800 *y
+= self
->size
.top
+ self
->size
.bottom
;
804 *y
+= self
->size
.top
;
809 static void flash_done(gpointer data
)
811 ObFrame
*self
= data
;
813 if (self
->focused
!= self
->flash_on
)
814 frame_adjust_focus(self
, self
->focused
);
817 static gboolean
flash_timeout(gpointer data
)
819 ObFrame
*self
= data
;
822 g_get_current_time(&now
);
823 if (now
.tv_sec
> self
->flash_end
.tv_sec
||
824 (now
.tv_sec
== self
->flash_end
.tv_sec
&&
825 now
.tv_usec
>= self
->flash_end
.tv_usec
))
826 self
->flashing
= FALSE
;
829 return FALSE
; /* we are done */
831 self
->flash_on
= !self
->flash_on
;
835 focused
= self
->focused
; /* save the focused flag */
836 frame_adjust_focus(self
, self
->flash_on
);
837 self
->focused
= focused
;
840 return TRUE
; /* go again */
843 void frame_flash_start(ObFrame
*self
)
845 self
->flash_on
= self
->focused
;
848 ob_main_loop_timeout_add(ob_main_loop
,
849 G_USEC_PER_SEC
* 0.75,
853 g_get_current_time(&self
->flash_end
);
854 g_time_val_add(&self
->flash_end
, G_USEC_PER_SEC
* 5);
856 self
->flashing
= TRUE
;
859 void frame_flash_stop(ObFrame
*self
)
861 self
->flashing
= FALSE
;