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
;
346 if(new_screen
== c
->screen
)
349 c
->screen
= new_screen
;
351 /* If client was on a screen, remove old tags */
353 foreach(old_tag
, old_screen
->tags
)
354 untag_client(c
, *old_tag
);
358 luaA_object_push(globalconf
.L
, c
);
359 luaA_object_emit_signal(globalconf
.L
, -1, "property::screen", 0);
360 lua_pop(globalconf
.L
, 1);
364 from
= screen_area_get(old_screen
, false);
365 to
= screen_area_get(c
->screen
, false);
367 area_t new_geometry
= c
->geometry
;
369 new_geometry
.x
= to
.x
+ new_geometry
.x
- from
.x
;
370 new_geometry
.y
= to
.y
+ new_geometry
.y
- from
.y
;
372 /* resize the client if it doesn't fit the new screen */
373 if(new_geometry
.width
> to
.width
)
374 new_geometry
.width
= to
.width
;
375 if(new_geometry
.height
> to
.height
)
376 new_geometry
.height
= to
.height
;
378 /* make sure the client is still on the screen */
379 if(new_geometry
.x
+ new_geometry
.width
> to
.x
+ to
.width
)
380 new_geometry
.x
= to
.x
+ to
.width
- new_geometry
.width
;
381 if(new_geometry
.y
+ new_geometry
.height
> to
.y
+ to
.height
)
382 new_geometry
.y
= to
.y
+ to
.height
- new_geometry
.height
;
384 /* move / resize the client */
385 client_resize(c
, new_geometry
);
386 luaA_object_push(globalconf
.L
, c
);
387 luaA_object_emit_signal(globalconf
.L
, -1, "property::screen", 0);
388 lua_pop(globalconf
.L
, 1);
391 /** Push a screen onto the stack.
392 * \param L The Lua VM state.
393 * \param s The screen to push.
394 * \return The number of elements pushed on stack.
397 luaA_pushscreen(lua_State
*L
, screen_t
*s
)
399 lua_pushlightuserdata(L
, s
);
400 luaL_getmetatable(L
, "screen");
401 lua_setmetatable(L
, -2);
406 * \param L The Lua VM state.
407 * \return The number of elements pushed on stack.
409 * \lfield number The screen number, to get a screen.
412 luaA_screen_module_index(lua_State
*L
)
416 if((name
= lua_tostring(L
, 2)))
417 foreach(screen
, globalconf
.screens
)
418 foreach(output
, screen
->outputs
)
419 if(!a_strcmp(output
->name
, name
))
420 return luaA_pushscreen(L
, screen
);
422 int screen
= luaL_checknumber(L
, 2) - 1;
423 luaA_checkscreen(screen
);
424 return luaA_pushscreen(L
, &globalconf
.screens
.tab
[screen
]);
428 * \param L The Lua VM state.
429 * \return The number of elements pushed on stack.
431 * \lparam None or a table of tags to set to the screen.
432 * The table must contains at least one tag.
433 * \return A table with all screen tags.
436 luaA_screen_tags(lua_State
*L
)
438 screen_t
*s
= luaL_checkudata(L
, 1, "screen");
440 if(lua_gettop(L
) == 2)
442 luaA_checktable(L
, 2);
444 /* Detach all tags, but go backward since the array len will change */
445 for(int i
= s
->tags
.len
- 1; i
>= 0; i
--)
446 tag_remove_from_screen(s
->tags
.tab
[i
]);
449 while(lua_next(L
, 2))
450 tag_append_to_screen(L
, -1, s
);
454 lua_createtable(L
, s
->tags
.len
, 0);
455 for(int i
= 0; i
< s
->tags
.len
; i
++)
457 luaA_object_push(L
, s
->tags
.tab
[i
]);
458 lua_rawseti(L
, -2, i
+ 1);
466 * \param L The Lua VM state.
467 * \return The number of elements pushed on stack.
469 * \lfield coords The screen coordinates. Immutable.
470 * \lfield workarea The screen workarea.
473 luaA_screen_index(lua_State
*L
)
478 /* Get metatable of the screen. */
479 lua_getmetatable(L
, 1);
483 /* Do we have a field like that? */
484 if(!lua_isnil(L
, -1))
486 /* Yes, so return it! */
490 /* No, so remove everything. */
493 buf
= luaL_checkstring(L
, 2);
494 s
= lua_touserdata(L
, 1);
496 if(a_strcmp(buf
, "index") == 0)
497 lua_pushinteger(L
, screen_array_indexof(&globalconf
.screens
, s
) + 1);
498 else if(a_strcmp(buf
, "geometry") == 0)
499 luaA_pusharea(L
, s
->geometry
);
500 else if(a_strcmp(buf
, "workarea") == 0)
501 luaA_pusharea(L
, screen_area_get(s
, true));
502 else if(a_strcmp(buf
, "outputs") == 0)
504 lua_createtable(L
, 0, s
->outputs
.len
);
505 foreach(output
, s
->outputs
)
507 lua_createtable(L
, 2, 0);
508 lua_pushinteger(L
, output
->mm_width
);
509 lua_setfield(L
, -2, "mm_width");
510 lua_pushinteger(L
, output
->mm_height
);
511 lua_setfield(L
, -2, "mm_height");
512 lua_setfield(L
, -2, output
->name
);
521 /** Add a signal to a screen.
522 * \param L The Lua VM state.
523 * \return The number of elements pushed on stack.
526 * \lparam A signal name.
529 luaA_screen_add_signal(lua_State
*L
)
531 screen_t
*s
= lua_touserdata(L
, 1);
532 const char *name
= luaL_checkstring(L
, 2);
533 signal_add(&s
->signals
, name
);
537 /** Connect a screen's signal.
538 * \param L The Lua VM state.
539 * \return The number of elements pushed on stack.
542 * \lparam A signal name.
543 * \lparam A function to call when the signal is emitted.
546 luaA_screen_connect_signal(lua_State
*L
)
548 screen_t
*s
= lua_touserdata(L
, 1);
549 const char *name
= luaL_checkstring(L
, 2);
550 luaA_checkfunction(L
, 3);
551 signal_connect(&s
->signals
, name
, luaA_object_ref(L
, 3));
555 /** Remove a signal to a screen.
556 * \param L The Lua VM state.
557 * \return The number of elements pushed on stack.
560 * \lparam A signal name.
561 * \lparam A function to remove
564 luaA_screen_disconnect_signal(lua_State
*L
)
566 screen_t
*s
= lua_touserdata(L
, 1);
567 const char *name
= luaL_checkstring(L
, 2);
568 luaA_checkfunction(L
, 3);
569 const void *ref
= lua_topointer(L
, 3);
570 signal_disconnect(&s
->signals
, name
, ref
);
571 luaA_object_unref(L
, (void *) ref
);
575 /** Emit a signal to a screen.
576 * \param L The Lua VM state.
577 * \param screen The screen.
578 * \param name The signal name.
579 * \param nargs The number of arguments to the signal function.
582 screen_emit_signal(lua_State
*L
, screen_t
*screen
, const char *name
, int nargs
)
584 luaA_pushscreen(L
, screen
);
585 lua_insert(L
, - nargs
- 1);
586 signal_object_emit(L
, &screen
->signals
, name
, nargs
+ 1);
589 /** Emit a signal to a screen.
590 * \param L The Lua VM state.
591 * \return The number of elements pushed on stack.
594 * \lparam A signal name.
595 * \lparam Various arguments, optional.
598 luaA_screen_emit_signal(lua_State
*L
)
600 screen_emit_signal(L
, lua_touserdata(L
, 1), luaL_checkstring(L
, 2), lua_gettop(L
) - 2);
604 /** Get the screen count.
605 * \param L The Lua VM state.
606 * \return The number of elements pushed on stack.
609 * \lreturn The screen count, at least 1.
612 luaA_screen_count(lua_State
*L
)
614 lua_pushnumber(L
, globalconf
.screens
.len
);
618 const struct luaL_reg awesome_screen_methods
[] =
620 { "count", luaA_screen_count
},
621 { "__index", luaA_screen_module_index
},
625 const struct luaL_reg awesome_screen_meta
[] =
627 { "add_signal", luaA_screen_add_signal
},
628 { "connect_signal", luaA_screen_connect_signal
},
629 { "disconnect_signal", luaA_screen_disconnect_signal
},
630 { "emit_signal", luaA_screen_emit_signal
},
631 { "tags", luaA_screen_tags
},
632 { "__index", luaA_screen_index
},
636 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80