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>
26 #include <xcb/randr.h>
30 #include "objects/tag.h"
31 #include "objects/client.h"
32 #include "objects/drawin.h"
34 #include "common/xutil.h"
36 struct screen_output_t
38 /** The XRandR names of the output */
40 /** The size in millimeters */
41 uint32_t mm_width
, mm_height
;
44 ARRAY_FUNCS(screen_output_t
, screen_output
, DO_NOTHING
)
47 screen_xsitoarea(xcb_xinerama_screen_info_t si
)
60 screen_add(screen_t new_screen
)
62 signal_add(&new_screen
.signals
, "property::workarea");
63 signal_add(&new_screen
.signals
, "tag::attach");
64 signal_add(&new_screen
.signals
, "tag::detach");
65 screen_array_append(&globalconf
.screens
, new_screen
);
69 screen_scan_randr(void)
71 /* Check for extension before checking for XRandR */
72 if(xcb_get_extension_data(globalconf
.connection
, &xcb_randr_id
)->present
)
74 xcb_randr_query_version_reply_t
*version_reply
=
75 xcb_randr_query_version_reply(globalconf
.connection
,
76 xcb_randr_query_version(globalconf
.connection
, 1, 1), 0);
79 p_delete(&version_reply
);
81 /* A quick XRandR recall:
82 * You have CRTC that manages a part of a SCREEN.
83 * Each CRTC can draw stuff on one or more OUTPUT. */
84 xcb_randr_get_screen_resources_cookie_t screen_res_c
= xcb_randr_get_screen_resources(globalconf
.connection
, globalconf
.screen
->root
);
85 xcb_randr_get_screen_resources_reply_t
*screen_res_r
= xcb_randr_get_screen_resources_reply(globalconf
.connection
, screen_res_c
, NULL
);
87 /* Only use the data from XRandR if there is more than one screen
88 * defined. This should work around the broken nvidia driver. */
89 if (screen_res_r
->num_crtcs
<= 1)
91 p_delete(&screen_res_r
);
95 /* We go through CRTC, and build a screen for each one. */
96 xcb_randr_crtc_t
*randr_crtcs
= xcb_randr_get_screen_resources_crtcs(screen_res_r
);
98 for(int i
= 0; i
< screen_res_r
->num_crtcs
; i
++)
100 /* Get info on the output crtc */
101 xcb_randr_get_crtc_info_cookie_t crtc_info_c
= xcb_randr_get_crtc_info(globalconf
.connection
, randr_crtcs
[i
], XCB_CURRENT_TIME
);
102 xcb_randr_get_crtc_info_reply_t
*crtc_info_r
= xcb_randr_get_crtc_info_reply(globalconf
.connection
, crtc_info_c
, NULL
);
104 /* If CRTC has no OUTPUT, ignore it */
105 if(!xcb_randr_get_crtc_info_outputs_length(crtc_info_r
))
108 /* Prepare the new screen */
110 p_clear(&new_screen
, 1);
111 new_screen
.geometry
.x
= crtc_info_r
->x
;
112 new_screen
.geometry
.y
= crtc_info_r
->y
;
113 new_screen
.geometry
.width
= crtc_info_r
->width
;
114 new_screen
.geometry
.height
= crtc_info_r
->height
;
116 xcb_randr_output_t
*randr_outputs
= xcb_randr_get_crtc_info_outputs(crtc_info_r
);
118 for(int j
= 0; j
< xcb_randr_get_crtc_info_outputs_length(crtc_info_r
); j
++)
120 xcb_randr_get_output_info_cookie_t output_info_c
= xcb_randr_get_output_info(globalconf
.connection
, randr_outputs
[j
], XCB_CURRENT_TIME
);
121 xcb_randr_get_output_info_reply_t
*output_info_r
= xcb_randr_get_output_info_reply(globalconf
.connection
, output_info_c
, NULL
);
123 int len
= xcb_randr_get_output_info_name_length(output_info_r
);
124 /* name is not NULL terminated */
125 char *name
= memcpy(p_new(char *, len
+ 1), xcb_randr_get_output_info_name(output_info_r
), len
);
128 screen_output_array_append(&new_screen
.outputs
,
129 (screen_output_t
) { .name
= name
,
130 .mm_width
= output_info_r
->mm_width
,
131 .mm_height
= output_info_r
->mm_height
});
133 p_delete(&output_info_r
);
136 screen_add(new_screen
);
138 p_delete(&crtc_info_r
);
141 p_delete(&screen_res_r
);
151 screen_scan_xinerama(void)
153 bool xinerama_is_active
= false;
155 /* Check for extension before checking for Xinerama */
156 if(xcb_get_extension_data(globalconf
.connection
, &xcb_xinerama_id
)->present
)
158 xcb_xinerama_is_active_reply_t
*xia
;
159 xia
= xcb_xinerama_is_active_reply(globalconf
.connection
, xcb_xinerama_is_active(globalconf
.connection
), NULL
);
160 xinerama_is_active
= xia
->state
;
164 if(xinerama_is_active
)
166 xcb_xinerama_query_screens_reply_t
*xsq
;
167 xcb_xinerama_screen_info_t
*xsi
;
168 int xinerama_screen_number
;
170 xsq
= xcb_xinerama_query_screens_reply(globalconf
.connection
,
171 xcb_xinerama_query_screens_unchecked(globalconf
.connection
),
174 xsi
= xcb_xinerama_query_screens_screen_info(xsq
);
175 xinerama_screen_number
= xcb_xinerama_query_screens_screen_info_length(xsq
);
177 /* now check if screens overlaps (same x,y): if so, we take only the biggest one */
178 for(int screen
= 0; screen
< xinerama_screen_number
; screen
++)
181 foreach(screen_to_test
, globalconf
.screens
)
182 if(xsi
[screen
].x_org
== screen_to_test
->geometry
.x
183 && xsi
[screen
].y_org
== screen_to_test
->geometry
.y
)
185 /* we already have a screen for this area, just check if
186 * it's not bigger and drop it */
188 int i
= screen_array_indexof(&globalconf
.screens
, screen_to_test
);
189 screen_to_test
->geometry
.width
=
190 MAX(xsi
[screen
].width
, xsi
[i
].width
);
191 screen_to_test
->geometry
.height
=
192 MAX(xsi
[screen
].height
, xsi
[i
].height
);
198 s
.geometry
= screen_xsitoarea(xsi
[screen
]);
211 static void screen_scan_x11(void)
213 /* One screen only / Zaphod mode */
214 xcb_screen_t
*xcb_screen
= globalconf
.screen
;
219 s
.geometry
.width
= xcb_screen
->width_in_pixels
;
220 s
.geometry
.height
= xcb_screen
->height_in_pixels
;
224 /** Get screens informations and fill global configuration.
229 if(!screen_scan_randr() && !screen_scan_xinerama())
233 /** Return the Xinerama screen number where the coordinates belongs to.
234 * \param screen The logical screen number.
235 * \param x X coordinate
236 * \param y Y coordinate
237 * \return Screen pointer or screen param if no match or no multi-head.
240 screen_getbycoord(int x
, int y
)
242 foreach(s
, globalconf
.screens
)
243 if((x
< 0 || (x
>= s
->geometry
.x
&& x
< s
->geometry
.x
+ s
->geometry
.width
))
244 && (y
< 0 || (y
>= s
->geometry
.y
&& y
< s
->geometry
.y
+ s
->geometry
.height
)))
247 /* No screen found, let's be creative. */
248 return &globalconf
.screens
.tab
[0];
251 /** Get screens info.
252 * \param screen Screen.
253 * \param strut Honor windows strut.
254 * \return The screen area.
257 screen_area_get(screen_t
*screen
, bool strut
)
260 return screen
->geometry
;
262 area_t area
= screen
->geometry
;
263 uint16_t top
= 0, bottom
= 0, left
= 0, right
= 0;
265 #define COMPUTE_STRUT(o) \
267 if((o)->strut.top_start_x || (o)->strut.top_end_x || (o)->strut.top) \
270 top = MAX(top, (o)->strut.top); \
272 top = MAX(top, ((o)->geometry.y - area.y) + (o)->geometry.height); \
274 if((o)->strut.bottom_start_x || (o)->strut.bottom_end_x || (o)->strut.bottom) \
276 if((o)->strut.bottom) \
277 bottom = MAX(bottom, (o)->strut.bottom); \
279 bottom = MAX(bottom, (area.y + area.height) - (o)->geometry.y); \
281 if((o)->strut.left_start_y || (o)->strut.left_end_y || (o)->strut.left) \
283 if((o)->strut.left) \
284 left = MAX(left, (o)->strut.left); \
286 left = MAX(left, ((o)->geometry.x - area.x) + (o)->geometry.width); \
288 if((o)->strut.right_start_y || (o)->strut.right_end_y || (o)->strut.right) \
290 if((o)->strut.right) \
291 right = MAX(right, (o)->strut.right); \
293 right = MAX(right, (area.x + area.width) - (o)->geometry.x); \
297 foreach(c
, globalconf
.clients
)
298 if((*c
)->screen
== screen
&& client_isvisible(*c
))
301 foreach(drawin
, globalconf
.drawins
)
302 if((*drawin
)->visible
)
305 screen_getbycoord((*drawin
)->geometry
.x
, (*drawin
)->geometry
.y
);
306 if (d_screen
== screen
)
307 COMPUTE_STRUT(*drawin
)
314 area
.width
-= left
+ right
;
315 area
.height
-= top
+ bottom
;
320 /** Get display info.
321 * \return The display area.
324 display_area_get(void)
326 xcb_screen_t
*s
= globalconf
.screen
;
327 area_t area
= { .x
= 0,
329 .width
= s
->width_in_pixels
,
330 .height
= s
->height_in_pixels
};
334 /** Move a client to a virtual screen.
335 * \param c The client to move.
336 * \param new_screen The destination screen.
337 * \param doresize Set to true if we also move the client to the new x and
338 * y of the new screen.
341 screen_client_moveto(client_t
*c
, screen_t
*new_screen
, bool doresize
)
343 screen_t
*old_screen
= c
->screen
;
345 bool had_focus
= false;
347 if(new_screen
== c
->screen
)
350 if (globalconf
.focus
.client
== c
)
353 c
->screen
= new_screen
;
355 /* If client was on a screen, remove old tags */
357 foreach(old_tag
, old_screen
->tags
)
358 untag_client(c
, *old_tag
);
362 luaA_object_push(globalconf
.L
, c
);
363 luaA_object_emit_signal(globalconf
.L
, -1, "property::screen", 0);
364 lua_pop(globalconf
.L
, 1);
370 from
= screen_area_get(old_screen
, false);
371 to
= screen_area_get(c
->screen
, false);
373 area_t new_geometry
= c
->geometry
;
375 new_geometry
.x
= to
.x
+ new_geometry
.x
- from
.x
;
376 new_geometry
.y
= to
.y
+ new_geometry
.y
- from
.y
;
378 /* resize the client if it doesn't fit the new screen */
379 if(new_geometry
.width
> to
.width
)
380 new_geometry
.width
= to
.width
;
381 if(new_geometry
.height
> to
.height
)
382 new_geometry
.height
= to
.height
;
384 /* make sure the client is still on the screen */
385 if(new_geometry
.x
+ new_geometry
.width
> to
.x
+ to
.width
)
386 new_geometry
.x
= to
.x
+ to
.width
- new_geometry
.width
;
387 if(new_geometry
.y
+ new_geometry
.height
> to
.y
+ to
.height
)
388 new_geometry
.y
= to
.y
+ to
.height
- new_geometry
.height
;
390 /* move / resize the client */
391 client_resize(c
, new_geometry
);
392 luaA_object_push(globalconf
.L
, c
);
393 luaA_object_emit_signal(globalconf
.L
, -1, "property::screen", 0);
394 lua_pop(globalconf
.L
, 1);
399 /** Push a screen onto the stack.
400 * \param L The Lua VM state.
401 * \param s The screen to push.
402 * \return The number of elements pushed on stack.
405 luaA_pushscreen(lua_State
*L
, screen_t
*s
)
407 lua_pushlightuserdata(L
, s
);
408 luaL_getmetatable(L
, "screen");
409 lua_setmetatable(L
, -2);
414 * \param L The Lua VM state.
415 * \return The number of elements pushed on stack.
417 * \lfield number The screen number, to get a screen.
420 luaA_screen_module_index(lua_State
*L
)
424 if((name
= lua_tostring(L
, 2)))
425 foreach(screen
, globalconf
.screens
)
426 foreach(output
, screen
->outputs
)
427 if(!a_strcmp(output
->name
, name
))
428 return luaA_pushscreen(L
, screen
);
430 int screen
= luaL_checknumber(L
, 2) - 1;
431 luaA_checkscreen(screen
);
432 return luaA_pushscreen(L
, &globalconf
.screens
.tab
[screen
]);
436 * \param L The Lua VM state.
437 * \return The number of elements pushed on stack.
439 * \lparam None or a table of tags to set to the screen.
440 * The table must contains at least one tag.
441 * \return A table with all screen tags.
444 luaA_screen_tags(lua_State
*L
)
446 screen_t
*s
= luaL_checkudata(L
, 1, "screen");
448 if(lua_gettop(L
) == 2)
450 luaA_checktable(L
, 2);
452 /* Detach all tags, but go backward since the array len will change */
453 for(int i
= s
->tags
.len
- 1; i
>= 0; i
--)
454 tag_remove_from_screen(s
->tags
.tab
[i
]);
457 while(lua_next(L
, 2))
458 tag_append_to_screen(L
, -1, s
);
462 lua_createtable(L
, s
->tags
.len
, 0);
463 for(int i
= 0; i
< s
->tags
.len
; i
++)
465 luaA_object_push(L
, s
->tags
.tab
[i
]);
466 lua_rawseti(L
, -2, i
+ 1);
474 * \param L The Lua VM state.
475 * \return The number of elements pushed on stack.
477 * \lfield coords The screen coordinates. Immutable.
478 * \lfield workarea The screen workarea.
481 luaA_screen_index(lua_State
*L
)
486 /* Get metatable of the screen. */
487 lua_getmetatable(L
, 1);
491 /* Do we have a field like that? */
492 if(!lua_isnil(L
, -1))
494 /* Yes, so return it! */
498 /* No, so remove everything. */
501 buf
= luaL_checkstring(L
, 2);
502 s
= lua_touserdata(L
, 1);
504 if(a_strcmp(buf
, "index") == 0)
505 lua_pushinteger(L
, screen_array_indexof(&globalconf
.screens
, s
) + 1);
506 else if(a_strcmp(buf
, "geometry") == 0)
507 luaA_pusharea(L
, s
->geometry
);
508 else if(a_strcmp(buf
, "workarea") == 0)
509 luaA_pusharea(L
, screen_area_get(s
, true));
510 else if(a_strcmp(buf
, "outputs") == 0)
512 lua_createtable(L
, 0, s
->outputs
.len
);
513 foreach(output
, s
->outputs
)
515 lua_createtable(L
, 2, 0);
516 lua_pushinteger(L
, output
->mm_width
);
517 lua_setfield(L
, -2, "mm_width");
518 lua_pushinteger(L
, output
->mm_height
);
519 lua_setfield(L
, -2, "mm_height");
520 lua_setfield(L
, -2, output
->name
);
529 /** Add a signal to a screen.
530 * \param L The Lua VM state.
531 * \return The number of elements pushed on stack.
534 * \lparam A signal name.
537 luaA_screen_add_signal(lua_State
*L
)
539 screen_t
*s
= lua_touserdata(L
, 1);
540 const char *name
= luaL_checkstring(L
, 2);
541 signal_add(&s
->signals
, name
);
545 /** Connect a screen's signal.
546 * \param L The Lua VM state.
547 * \return The number of elements pushed on stack.
550 * \lparam A signal name.
551 * \lparam A function to call when the signal is emitted.
554 luaA_screen_connect_signal(lua_State
*L
)
556 screen_t
*s
= lua_touserdata(L
, 1);
557 const char *name
= luaL_checkstring(L
, 2);
558 luaA_checkfunction(L
, 3);
559 signal_connect(&s
->signals
, name
, luaA_object_ref(L
, 3));
563 /** Remove a signal to a screen.
564 * \param L The Lua VM state.
565 * \return The number of elements pushed on stack.
568 * \lparam A signal name.
569 * \lparam A function to remove
572 luaA_screen_disconnect_signal(lua_State
*L
)
574 screen_t
*s
= lua_touserdata(L
, 1);
575 const char *name
= luaL_checkstring(L
, 2);
576 luaA_checkfunction(L
, 3);
577 const void *ref
= lua_topointer(L
, 3);
578 signal_disconnect(&s
->signals
, name
, ref
);
579 luaA_object_unref(L
, (void *) ref
);
583 /** Emit a signal to a screen.
584 * \param L The Lua VM state.
585 * \param screen The screen.
586 * \param name The signal name.
587 * \param nargs The number of arguments to the signal function.
590 screen_emit_signal(lua_State
*L
, screen_t
*screen
, const char *name
, int nargs
)
592 luaA_pushscreen(L
, screen
);
593 lua_insert(L
, - nargs
- 1);
594 signal_object_emit(L
, &screen
->signals
, name
, nargs
+ 1);
597 /** Emit a signal to a screen.
598 * \param L The Lua VM state.
599 * \return The number of elements pushed on stack.
602 * \lparam A signal name.
603 * \lparam Various arguments, optional.
606 luaA_screen_emit_signal(lua_State
*L
)
608 screen_emit_signal(L
, lua_touserdata(L
, 1), luaL_checkstring(L
, 2), lua_gettop(L
) - 2);
612 /** Get the screen count.
613 * \param L The Lua VM state.
614 * \return The number of elements pushed on stack.
617 * \lreturn The screen count, at least 1.
620 luaA_screen_count(lua_State
*L
)
622 lua_pushnumber(L
, globalconf
.screens
.len
);
626 const struct luaL_reg awesome_screen_methods
[] =
628 { "count", luaA_screen_count
},
629 { "__index", luaA_screen_module_index
},
633 const struct luaL_reg awesome_screen_meta
[] =
635 { "add_signal", luaA_screen_add_signal
},
636 { "connect_signal", luaA_screen_connect_signal
},
637 { "disconnect_signal", luaA_screen_disconnect_signal
},
638 { "emit_signal", luaA_screen_emit_signal
},
639 { "tags", luaA_screen_tags
},
640 { "__index", luaA_screen_index
},
644 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80