1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 focus_cycle_indicator.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.
20 #include "focus_cycle.h"
21 #include "focus_cycle_indicator.h"
26 #include "render/render.h"
31 #define FOCUS_INDICATOR_WIDTH 6
36 ObInternalWindow left
;
37 ObInternalWindow right
;
38 ObInternalWindow bottom
;
41 static RrAppearance
*a_focus_indicator
;
42 static RrColor
*color_white
;
43 static gboolean visible
;
45 static Window
create_window(Window parent
, gulong mask
,
46 XSetWindowAttributes
*attrib
)
48 return XCreateWindow(obt_display
, parent
, 0, 0, 1, 1, 0,
49 RrDepth(ob_rr_inst
), InputOutput
,
50 RrVisual(ob_rr_inst
), mask
, attrib
);
54 void focus_cycle_indicator_startup(gboolean reconfig
)
56 XSetWindowAttributes attr
;
62 focus_indicator
.top
.type
= OB_WINDOW_CLASS_INTERNAL
;
63 focus_indicator
.left
.type
= OB_WINDOW_CLASS_INTERNAL
;
64 focus_indicator
.right
.type
= OB_WINDOW_CLASS_INTERNAL
;
65 focus_indicator
.bottom
.type
= OB_WINDOW_CLASS_INTERNAL
;
67 attr
.override_redirect
= True
;
68 attr
.background_pixel
= BlackPixel(obt_display
, ob_screen
);
69 focus_indicator
.top
.window
=
70 create_window(obt_root(ob_screen
),
71 CWOverrideRedirect
| CWBackPixel
, &attr
);
72 focus_indicator
.left
.window
=
73 create_window(obt_root(ob_screen
),
74 CWOverrideRedirect
| CWBackPixel
, &attr
);
75 focus_indicator
.right
.window
=
76 create_window(obt_root(ob_screen
),
77 CWOverrideRedirect
| CWBackPixel
, &attr
);
78 focus_indicator
.bottom
.window
=
79 create_window(obt_root(ob_screen
),
80 CWOverrideRedirect
| CWBackPixel
, &attr
);
82 stacking_add(INTERNAL_AS_WINDOW(&focus_indicator
.top
));
83 stacking_add(INTERNAL_AS_WINDOW(&focus_indicator
.left
));
84 stacking_add(INTERNAL_AS_WINDOW(&focus_indicator
.right
));
85 stacking_add(INTERNAL_AS_WINDOW(&focus_indicator
.bottom
));
86 window_add(&focus_indicator
.top
.window
,
87 INTERNAL_AS_WINDOW(&focus_indicator
.top
));
88 window_add(&focus_indicator
.left
.window
,
89 INTERNAL_AS_WINDOW(&focus_indicator
.left
));
90 window_add(&focus_indicator
.right
.window
,
91 INTERNAL_AS_WINDOW(&focus_indicator
.right
));
92 window_add(&focus_indicator
.bottom
.window
,
93 INTERNAL_AS_WINDOW(&focus_indicator
.bottom
));
95 color_white
= RrColorNew(ob_rr_inst
, 0xff, 0xff, 0xff);
97 a_focus_indicator
= RrAppearanceNew(ob_rr_inst
, 4);
98 a_focus_indicator
->surface
.grad
= RR_SURFACE_SOLID
;
99 a_focus_indicator
->surface
.relief
= RR_RELIEF_FLAT
;
100 a_focus_indicator
->surface
.primary
= RrColorNew(ob_rr_inst
,
102 a_focus_indicator
->texture
[0].type
= RR_TEXTURE_LINE_ART
;
103 a_focus_indicator
->texture
[0].data
.lineart
.color
= color_white
;
104 a_focus_indicator
->texture
[1].type
= RR_TEXTURE_LINE_ART
;
105 a_focus_indicator
->texture
[1].data
.lineart
.color
= color_white
;
106 a_focus_indicator
->texture
[2].type
= RR_TEXTURE_LINE_ART
;
107 a_focus_indicator
->texture
[2].data
.lineart
.color
= color_white
;
108 a_focus_indicator
->texture
[3].type
= RR_TEXTURE_LINE_ART
;
109 a_focus_indicator
->texture
[3].data
.lineart
.color
= color_white
;
112 void focus_cycle_indicator_shutdown(gboolean reconfig
)
114 if (reconfig
) return;
116 RrColorFree(color_white
);
118 RrAppearanceFree(a_focus_indicator
);
120 window_remove(focus_indicator
.top
.window
);
121 window_remove(focus_indicator
.left
.window
);
122 window_remove(focus_indicator
.right
.window
);
123 window_remove(focus_indicator
.bottom
.window
);
125 stacking_remove(INTERNAL_AS_WINDOW(&focus_indicator
.top
));
126 stacking_remove(INTERNAL_AS_WINDOW(&focus_indicator
.left
));
127 stacking_remove(INTERNAL_AS_WINDOW(&focus_indicator
.right
));
128 stacking_remove(INTERNAL_AS_WINDOW(&focus_indicator
.bottom
));
130 XDestroyWindow(obt_display
, focus_indicator
.top
.window
);
131 XDestroyWindow(obt_display
, focus_indicator
.left
.window
);
132 XDestroyWindow(obt_display
, focus_indicator
.right
.window
);
133 XDestroyWindow(obt_display
, focus_indicator
.bottom
.window
);
136 void focus_cycle_draw_indicator(ObClient
*c
)
141 /* kill enter events cause by this unmapping */
142 ignore_start
= event_start_ignore_all_enters();
144 XUnmapWindow(obt_display
, focus_indicator
.top
.window
);
145 XUnmapWindow(obt_display
, focus_indicator
.left
.window
);
146 XUnmapWindow(obt_display
, focus_indicator
.right
.window
);
147 XUnmapWindow(obt_display
, focus_indicator
.bottom
.window
);
149 event_end_ignore_all_enters(ignore_start
);
156 frame_adjust_focus(c->frame, FALSE);
157 frame_adjust_focus(c->frame, TRUE);
163 wt
= wl
= wr
= wb
= FOCUS_INDICATOR_WIDTH
;
165 x
= c
->frame
->area
.x
;
166 y
= c
->frame
->area
.y
;
167 w
= c
->frame
->area
.width
;
170 /* kill enter events cause by this moving */
171 ignore_start
= event_start_ignore_all_enters();
173 XMoveResizeWindow(obt_display
, focus_indicator
.top
.window
,
175 a_focus_indicator
->texture
[0].data
.lineart
.x1
= 0;
176 a_focus_indicator
->texture
[0].data
.lineart
.y1
= h
-1;
177 a_focus_indicator
->texture
[0].data
.lineart
.x2
= 0;
178 a_focus_indicator
->texture
[0].data
.lineart
.y2
= 0;
179 a_focus_indicator
->texture
[1].data
.lineart
.x1
= 0;
180 a_focus_indicator
->texture
[1].data
.lineart
.y1
= 0;
181 a_focus_indicator
->texture
[1].data
.lineart
.x2
= w
-1;
182 a_focus_indicator
->texture
[1].data
.lineart
.y2
= 0;
183 a_focus_indicator
->texture
[2].data
.lineart
.x1
= w
-1;
184 a_focus_indicator
->texture
[2].data
.lineart
.y1
= 0;
185 a_focus_indicator
->texture
[2].data
.lineart
.x2
= w
-1;
186 a_focus_indicator
->texture
[2].data
.lineart
.y2
= h
-1;
187 a_focus_indicator
->texture
[3].data
.lineart
.x1
= (wl
-1);
188 a_focus_indicator
->texture
[3].data
.lineart
.y1
= h
-1;
189 a_focus_indicator
->texture
[3].data
.lineart
.x2
= w
- wr
;
190 a_focus_indicator
->texture
[3].data
.lineart
.y2
= h
-1;
191 RrPaint(a_focus_indicator
, focus_indicator
.top
.window
,
194 x
= c
->frame
->area
.x
;
195 y
= c
->frame
->area
.y
;
197 h
= c
->frame
->area
.height
;
199 XMoveResizeWindow(obt_display
, focus_indicator
.left
.window
,
201 a_focus_indicator
->texture
[0].data
.lineart
.x1
= w
-1;
202 a_focus_indicator
->texture
[0].data
.lineart
.y1
= 0;
203 a_focus_indicator
->texture
[0].data
.lineart
.x2
= 0;
204 a_focus_indicator
->texture
[0].data
.lineart
.y2
= 0;
205 a_focus_indicator
->texture
[1].data
.lineart
.x1
= 0;
206 a_focus_indicator
->texture
[1].data
.lineart
.y1
= 0;
207 a_focus_indicator
->texture
[1].data
.lineart
.x2
= 0;
208 a_focus_indicator
->texture
[1].data
.lineart
.y2
= h
-1;
209 a_focus_indicator
->texture
[2].data
.lineart
.x1
= 0;
210 a_focus_indicator
->texture
[2].data
.lineart
.y1
= h
-1;
211 a_focus_indicator
->texture
[2].data
.lineart
.x2
= w
-1;
212 a_focus_indicator
->texture
[2].data
.lineart
.y2
= h
-1;
213 a_focus_indicator
->texture
[3].data
.lineart
.x1
= w
-1;
214 a_focus_indicator
->texture
[3].data
.lineart
.y1
= wt
-1;
215 a_focus_indicator
->texture
[3].data
.lineart
.x2
= w
-1;
216 a_focus_indicator
->texture
[3].data
.lineart
.y2
= h
- wb
;
217 RrPaint(a_focus_indicator
, focus_indicator
.left
.window
,
220 x
= c
->frame
->area
.x
+ c
->frame
->area
.width
- wr
;
221 y
= c
->frame
->area
.y
;
223 h
= c
->frame
->area
.height
;
225 XMoveResizeWindow(obt_display
, focus_indicator
.right
.window
,
227 a_focus_indicator
->texture
[0].data
.lineart
.x1
= 0;
228 a_focus_indicator
->texture
[0].data
.lineart
.y1
= 0;
229 a_focus_indicator
->texture
[0].data
.lineart
.x2
= w
-1;
230 a_focus_indicator
->texture
[0].data
.lineart
.y2
= 0;
231 a_focus_indicator
->texture
[1].data
.lineart
.x1
= w
-1;
232 a_focus_indicator
->texture
[1].data
.lineart
.y1
= 0;
233 a_focus_indicator
->texture
[1].data
.lineart
.x2
= w
-1;
234 a_focus_indicator
->texture
[1].data
.lineart
.y2
= h
-1;
235 a_focus_indicator
->texture
[2].data
.lineart
.x1
= w
-1;
236 a_focus_indicator
->texture
[2].data
.lineart
.y1
= h
-1;
237 a_focus_indicator
->texture
[2].data
.lineart
.x2
= 0;
238 a_focus_indicator
->texture
[2].data
.lineart
.y2
= h
-1;
239 a_focus_indicator
->texture
[3].data
.lineart
.x1
= 0;
240 a_focus_indicator
->texture
[3].data
.lineart
.y1
= wt
-1;
241 a_focus_indicator
->texture
[3].data
.lineart
.x2
= 0;
242 a_focus_indicator
->texture
[3].data
.lineart
.y2
= h
- wb
;
243 RrPaint(a_focus_indicator
, focus_indicator
.right
.window
,
246 x
= c
->frame
->area
.x
;
247 y
= c
->frame
->area
.y
+ c
->frame
->area
.height
- wb
;
248 w
= c
->frame
->area
.width
;
251 XMoveResizeWindow(obt_display
, focus_indicator
.bottom
.window
,
253 a_focus_indicator
->texture
[0].data
.lineart
.x1
= 0;
254 a_focus_indicator
->texture
[0].data
.lineart
.y1
= 0;
255 a_focus_indicator
->texture
[0].data
.lineart
.x2
= 0;
256 a_focus_indicator
->texture
[0].data
.lineart
.y2
= h
-1;
257 a_focus_indicator
->texture
[1].data
.lineart
.x1
= 0;
258 a_focus_indicator
->texture
[1].data
.lineart
.y1
= h
-1;
259 a_focus_indicator
->texture
[1].data
.lineart
.x2
= w
-1;
260 a_focus_indicator
->texture
[1].data
.lineart
.y2
= h
-1;
261 a_focus_indicator
->texture
[2].data
.lineart
.x1
= w
-1;
262 a_focus_indicator
->texture
[2].data
.lineart
.y1
= h
-1;
263 a_focus_indicator
->texture
[2].data
.lineart
.x2
= w
-1;
264 a_focus_indicator
->texture
[2].data
.lineart
.y2
= 0;
265 a_focus_indicator
->texture
[3].data
.lineart
.x1
= wl
-1;
266 a_focus_indicator
->texture
[3].data
.lineart
.y1
= 0;
267 a_focus_indicator
->texture
[3].data
.lineart
.x2
= w
- wr
;
268 a_focus_indicator
->texture
[3].data
.lineart
.y2
= 0;
269 RrPaint(a_focus_indicator
, focus_indicator
.bottom
.window
,
272 XMapWindow(obt_display
, focus_indicator
.top
.window
);
273 XMapWindow(obt_display
, focus_indicator
.left
.window
);
274 XMapWindow(obt_display
, focus_indicator
.right
.window
);
275 XMapWindow(obt_display
, focus_indicator
.bottom
.window
);
277 event_end_ignore_all_enters(ignore_start
);