2 * screen.c - screen management
4 * Copyright © 2007-2009 Julien Danjou <julien@danjou.info>
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 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #include <xcb/xinerama.h>
34 #include "common/xutil.h"
37 screen_xsitoarea(xcb_xinerama_screen_info_t si
)
49 static xcb_visualtype_t
*
50 screen_default_visual(xcb_screen_t
*s
)
52 xcb_depth_iterator_t depth_iter
= xcb_screen_allowed_depths_iterator(s
);
55 for(; depth_iter
.rem
; xcb_depth_next (&depth_iter
))
56 for(xcb_visualtype_iterator_t visual_iter
= xcb_depth_visuals_iterator(depth_iter
.data
);
57 visual_iter
.rem
; xcb_visualtype_next (&visual_iter
))
58 if(s
->root_visual
== visual_iter
.data
->visual_id
)
59 return visual_iter
.data
;
64 /** Get screens informations and fill global configuration.
69 /* Check for extension before checking for Xinerama */
70 if(xcb_get_extension_data(globalconf
.connection
, &xcb_xinerama_id
)->present
)
72 xcb_xinerama_is_active_reply_t
*xia
;
73 xia
= xcb_xinerama_is_active_reply(globalconf
.connection
, xcb_xinerama_is_active(globalconf
.connection
), NULL
);
74 globalconf
.xinerama_is_active
= xia
->state
;
78 if(globalconf
.xinerama_is_active
)
80 xcb_xinerama_query_screens_reply_t
*xsq
;
81 xcb_xinerama_screen_info_t
*xsi
;
82 int xinerama_screen_number
;
84 xsq
= xcb_xinerama_query_screens_reply(globalconf
.connection
,
85 xcb_xinerama_query_screens_unchecked(globalconf
.connection
),
88 xsi
= xcb_xinerama_query_screens_screen_info(xsq
);
89 xinerama_screen_number
= xcb_xinerama_query_screens_screen_info_length(xsq
);
91 /* now check if screens overlaps (same x,y): if so, we take only the biggest one */
92 for(int screen
= 0; screen
< xinerama_screen_number
; screen
++)
95 foreach(screen_to_test
, globalconf
.screens
)
96 if(xsi
[screen
].x_org
== screen_to_test
->geometry
.x
97 && xsi
[screen
].y_org
== screen_to_test
->geometry
.y
)
99 /* we already have a screen for this area, just check if
100 * it's not bigger and drop it */
102 int i
= screen_array_indexof(&globalconf
.screens
, screen_to_test
);
103 screen_to_test
->geometry
.width
=
104 MAX(xsi
[screen
].width
, xsi
[i
].width
);
105 screen_to_test
->geometry
.height
=
106 MAX(xsi
[screen
].height
, xsi
[i
].height
);
112 s
.geometry
= screen_xsitoarea(xsi
[screen
]);
113 screen_array_append(&globalconf
.screens
, s
);
119 xcb_screen_t
*s
= xutil_screen_get(globalconf
.connection
, globalconf
.default_screen
);
120 globalconf
.screens
.tab
[0].visual
= screen_default_visual(s
);
123 /* One screen only / Zaphod mode */
125 screen
< xcb_setup_roots_length(xcb_get_setup(globalconf
.connection
));
128 xcb_screen_t
*xcb_screen
= xutil_screen_get(globalconf
.connection
, screen
);
133 s
.geometry
.width
= xcb_screen
->width_in_pixels
;
134 s
.geometry
.height
= xcb_screen
->height_in_pixels
;
135 s
.visual
= screen_default_visual(xcb_screen
);
136 screen_array_append(&globalconf
.screens
, s
);
139 globalconf
.screen_focus
= globalconf
.screens
.tab
;
142 /** Return the Xinerama screen number where the coordinates belongs to.
143 * \param screen The logical screen number.
144 * \param x X coordinate
145 * \param y Y coordinate
146 * \return Screen pointer or screen param if no match or no multi-head.
149 screen_getbycoord(screen_t
*screen
, int x
, int y
)
151 /* don't waste our time */
152 if(!globalconf
.xinerama_is_active
)
155 foreach(s
, globalconf
.screens
)
156 if((x
< 0 || (x
>= s
->geometry
.x
&& x
< s
->geometry
.x
+ s
->geometry
.width
))
157 && (y
< 0 || (y
>= s
->geometry
.y
&& y
< s
->geometry
.y
+ s
->geometry
.height
)))
163 /** Get screens info.
164 * \param screen Screen.
165 * \param strut Honor windows strut.
166 * \return The screen area.
169 screen_area_get(screen_t
*screen
, bool strut
)
172 return screen
->geometry
;
174 area_t area
= screen
->geometry
;
175 uint16_t top
= 0, bottom
= 0, left
= 0, right
= 0;
177 #define COMPUTE_STRUT(o) \
179 if((o)->strut.top_start_x || (o)->strut.top_end_x || (o)->strut.top) \
182 top = MAX(top, (o)->strut.top); \
184 top = MAX(top, ((o)->geometry.y - area.y) + (o)->geometry.height); \
186 if((o)->strut.bottom_start_x || (o)->strut.bottom_end_x || (o)->strut.bottom) \
188 if((o)->strut.bottom) \
189 bottom = MAX(bottom, (o)->strut.bottom); \
191 bottom = MAX(bottom, (area.y + area.height) - (o)->geometry.y); \
193 if((o)->strut.left_start_y || (o)->strut.left_end_y || (o)->strut.left) \
195 if((o)->strut.left) \
196 left = MAX(left, (o)->strut.left); \
198 left = MAX(left, ((o)->geometry.x - area.x) + (o)->geometry.width); \
200 if((o)->strut.right_start_y || (o)->strut.right_end_y || (o)->strut.right) \
202 if((o)->strut.right) \
203 right = MAX(right, (o)->strut.right); \
205 right = MAX(right, (area.x + area.width) - (o)->geometry.x); \
209 foreach(c
, globalconf
.clients
)
210 if(client_isvisible(*c
, screen
))
213 foreach(wibox
, globalconf
.wiboxes
)
215 && (*wibox
)->screen
== screen
)
216 COMPUTE_STRUT(*wibox
)
222 area
.width
-= left
+ right
;
223 area
.height
-= top
+ bottom
;
228 /** Get display info.
229 * \param phys_screen Physical screen number.
230 * \return The display area.
233 display_area_get(int phys_screen
)
235 xcb_screen_t
*s
= xutil_screen_get(globalconf
.connection
, phys_screen
);
236 area_t area
= { .x
= 0,
238 .width
= s
->width_in_pixels
,
239 .height
= s
->height_in_pixels
};
243 /** This returns the real X screen number for a logical
244 * screen if Xinerama is active.
245 * \param screen The logical screen.
246 * \return The X screen.
249 screen_virttophys(int screen
)
251 if(globalconf
.xinerama_is_active
)
252 return globalconf
.default_screen
;
256 /** Move a client to a virtual screen.
257 * \param c The client to move.
258 * \param new_screen The destinatiuon screen.
259 * \param dotag Set to true if we also change tags.
260 * \param doresize Set to true if we also move the client to the new x and
261 * y of the new screen.
264 screen_client_moveto(client_t
*c
, screen_t
*new_screen
, bool dotag
, bool doresize
)
266 screen_t
*old_screen
= c
->screen
;
269 if(new_screen
== c
->screen
)
272 c
->screen
= new_screen
;
275 c
->titlebar
->screen
= new_screen
;
279 /* remove old tags */
280 foreach(old_tag
, old_screen
->tags
)
281 untag_client(c
, *old_tag
);
283 /* \todo move this to Lua */
286 foreach(new_tag
, new_screen
->tags
)
287 if(tag_get_selected(*new_tag
))
289 luaA_object_push(globalconf
.L
, *new_tag
);
296 hook_property(c
, "screen");
297 luaA_object_push(globalconf
.L
, c
);
298 luaA_object_emit_signal(globalconf
.L
, -1, "property::screen", 0);
299 lua_pop(globalconf
.L
, 1);
303 from
= screen_area_get(old_screen
, false);
304 to
= screen_area_get(c
->screen
, false);
306 area_t new_geometry
= c
->geometry
;
311 area_t new_f_geometry
= c
->geometries
.fullscreen
;
313 new_f_geometry
.x
= to
.x
+ new_f_geometry
.x
- from
.x
;
314 new_f_geometry
.y
= to
.y
+ new_f_geometry
.y
- from
.x
;
316 /* resize the client's original geometry if it doesn't fit the screen */
317 if(new_f_geometry
.width
> to
.width
)
318 new_f_geometry
.width
= to
.width
;
319 if(new_f_geometry
.height
> to
.height
)
320 new_f_geometry
.height
= to
.height
;
322 /* make sure the client is still on the screen */
323 if(new_f_geometry
.x
+ new_f_geometry
.width
> to
.x
+ to
.width
)
324 new_f_geometry
.x
= to
.x
+ to
.width
- new_f_geometry
.width
;
325 if(new_f_geometry
.y
+ new_f_geometry
.height
> to
.y
+ to
.height
)
326 new_f_geometry
.y
= to
.y
+ to
.height
- new_f_geometry
.height
;
328 c
->geometries
.fullscreen
= new_f_geometry
;
332 new_geometry
.x
= to
.x
+ new_geometry
.x
- from
.x
;
333 new_geometry
.y
= to
.y
+ new_geometry
.y
- from
.y
;
335 /* resize the client if it doesn't fit the new screen */
336 if(new_geometry
.width
> to
.width
)
337 new_geometry
.width
= to
.width
;
338 if(new_geometry
.height
> to
.height
)
339 new_geometry
.height
= to
.height
;
341 /* make sure the client is still on the screen */
342 if(new_geometry
.x
+ new_geometry
.width
> to
.x
+ to
.width
)
343 new_geometry
.x
= to
.x
+ to
.width
- new_geometry
.width
;
344 if(new_geometry
.y
+ new_geometry
.height
> to
.y
+ to
.height
)
345 new_geometry
.y
= to
.y
+ to
.height
- new_geometry
.height
;
347 /* move / resize the client */
348 client_resize(c
, new_geometry
, false);
349 hook_property(c
, "screen");
350 luaA_object_push(globalconf
.L
, c
);
351 luaA_object_emit_signal(globalconf
.L
, -1, "property::screen", 0);
352 lua_pop(globalconf
.L
, 1);
355 /** Push a screen onto the stack.
356 * \param L The Lua VM state.
357 * \param s The scren to push.
358 * \return The number of elements pushed on stack.
361 luaA_pushscreen(lua_State
*L
, screen_t
*s
)
363 lua_pushlightuserdata(L
, s
);
364 luaL_getmetatable(L
, "screen");
365 lua_setmetatable(L
, -2);
370 * \param L The Lua VM state.
371 * \return The number of elements pushed on stack.
373 * \lfield number The screen number, to get a screen.
376 luaA_screen_module_index(lua_State
*L
)
378 int screen
= luaL_checknumber(L
, 2) - 1;
379 luaA_checkscreen(screen
);
380 return luaA_pushscreen(L
, &globalconf
.screens
.tab
[screen
]);
383 /** Get or set screen tags.
384 * \param L The Lua VM state.
385 * \return The number of elements pushed on stack.
387 * \lparam None or a table of tags to set to the screen.
388 * The table must contains at least one tag.
389 * \return A table with all screen tags.
392 luaA_screen_tags(lua_State
*L
)
395 screen_t
*s
= luaL_checkudata(L
, 1, "screen");
397 if(lua_gettop(L
) == 2)
399 luaA_checktable(L
, 2);
401 /* remove current tags */
402 foreach(tag
, s
->tags
)
403 tag_set_screen(*tag
, NULL
);
405 tag_array_wipe(&s
->tags
);
406 tag_array_init(&s
->tags
);
408 s
->need_reban
= true;
412 while(lua_next(L
, 2))
413 tag_append_to_screen(L
, -1, s
);
417 lua_createtable(L
, s
->tags
.len
, 0);
418 for(i
= 0; i
< s
->tags
.len
; i
++)
420 luaA_object_push(L
, s
->tags
.tab
[i
]);
421 lua_rawseti(L
, -2, i
+ 1);
429 * \param L The Lua VM state.
430 * \return The number of elements pushed on stack.
432 * \lfield coords The screen coordinates. Immutable.
433 * \lfield workarea The screen workarea.
436 luaA_screen_index(lua_State
*L
)
442 if(luaA_usemetatable(L
, 1, 2))
445 buf
= luaL_checklstring(L
, 2, &len
);
446 s
= lua_touserdata(L
, 1);
448 switch(a_tokenize(buf
, len
))
451 lua_pushinteger(L
, screen_array_indexof(&globalconf
.screens
, s
) + 1);
454 luaA_pusharea(L
, s
->geometry
);
457 luaA_pusharea(L
, screen_area_get(s
, true));
466 /** Add a signal to a screen.
467 * \param L The Lua VM state.
468 * \return The number of elements pushed on stack.
471 * \lparam A signal name.
472 * \lparam A function to call when the signal is emited.
475 luaA_screen_add_signal(lua_State
*L
)
477 screen_t
*s
= lua_touserdata(L
, 1);
478 const char *name
= luaL_checkstring(L
, 2);
479 luaA_checkfunction(L
, 3);
480 signal_add(&s
->signals
, name
, luaA_object_ref(L
, 3));
484 /** Remove a signal to a screen.
485 * \param L The Lua VM state.
486 * \return The number of elements pushed on stack.
489 * \lparam A signal name.
490 * \lparam A function to remove
493 luaA_screen_remove_signal(lua_State
*L
)
495 screen_t
*s
= lua_touserdata(L
, 1);
496 const char *name
= luaL_checkstring(L
, 2);
497 luaA_checkfunction(L
, 3);
498 const void *ref
= lua_topointer(L
, 3);
499 signal_remove(&s
->signals
, name
, ref
);
500 luaA_object_unref(L
, (void *) ref
);
504 /** Emit a signal to a screen.
505 * \param L The Lua VM state.
506 * \param screen The screen.
507 * \param name The signal name.
508 * \param nargs The number of arguments to the signal function.
511 screen_emit_signal(lua_State
*L
, screen_t
*screen
, const char *name
, int nargs
)
513 luaA_pushscreen(L
, screen
);
514 lua_insert(L
, - nargs
- 1);
515 signal_object_emit(L
, &screen
->signals
, name
, nargs
+ 1);
518 /** Emit a signal to a screen.
519 * \param L The Lua VM state.
520 * \return The number of elements pushed on stack.
523 * \lparam A signal name.
524 * \lparam Various arguments, optional.
527 luaA_screen_emit_signal(lua_State
*L
)
529 screen_emit_signal(L
, lua_touserdata(L
, 1), luaL_checkstring(L
, 2), lua_gettop(L
) - 2);
533 /** Get the screen count.
534 * \param L The Lua VM state.
535 * \return The number of elements pushed on stack.
538 * \lreturn The screen count, at least 1.
541 luaA_screen_count(lua_State
*L
)
543 lua_pushnumber(L
, globalconf
.screens
.len
);
547 const struct luaL_reg awesome_screen_methods
[] =
549 { "count", luaA_screen_count
},
550 { "__index", luaA_screen_module_index
},
554 const struct luaL_reg awesome_screen_meta
[] =
556 { "add_signal", luaA_screen_add_signal
},
557 { "remove_signal", luaA_screen_remove_signal
},
558 { "emit_signal", luaA_screen_emit_signal
},
559 { "tags", luaA_screen_tags
},
560 { "__index", luaA_screen_index
},
564 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80