2007-10-03 17:26:14 +02:00
|
|
|
/*
|
2007-09-14 11:35:17 +02:00
|
|
|
* screen.c - screen management
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
2009-07-10 16:26:49 +02:00
|
|
|
* Copyright © 2007-2009 Julien Danjou <julien@danjou.info>
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
2007-09-14 11:35:17 +02:00
|
|
|
*/
|
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <xcb/xcb.h>
|
2008-09-18 16:03:05 +02:00
|
|
|
#include <xcb/xinerama.h>
|
2009-09-21 16:29:19 +02:00
|
|
|
#include <xcb/randr.h>
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2007-09-14 11:35:17 +02:00
|
|
|
#include "screen.h"
|
2008-08-11 17:14:02 +02:00
|
|
|
#include "ewmh.h"
|
2009-09-14 20:20:27 +02:00
|
|
|
#include "objects/tag.h"
|
2009-09-14 20:22:12 +02:00
|
|
|
#include "objects/client.h"
|
2010-10-06 13:35:14 +02:00
|
|
|
#include "objects/drawin.h"
|
2009-08-17 16:38:56 +02:00
|
|
|
#include "luaa.h"
|
2009-04-17 16:52:25 +02:00
|
|
|
#include "common/xutil.h"
|
2007-09-24 14:21:49 +02:00
|
|
|
|
2009-09-21 16:29:19 +02:00
|
|
|
struct screen_output_t
|
|
|
|
{
|
|
|
|
/** The XRandR names of the output */
|
|
|
|
char *name;
|
|
|
|
/** The size in millimeters */
|
|
|
|
uint32_t mm_width, mm_height;
|
|
|
|
};
|
|
|
|
|
|
|
|
ARRAY_FUNCS(screen_output_t, screen_output, DO_NOTHING)
|
|
|
|
|
2008-09-18 16:03:05 +02:00
|
|
|
static inline area_t
|
|
|
|
screen_xsitoarea(xcb_xinerama_screen_info_t si)
|
|
|
|
{
|
|
|
|
area_t a =
|
|
|
|
{
|
|
|
|
.x = si.x_org,
|
|
|
|
.y = si.y_org,
|
|
|
|
.width = si.width,
|
|
|
|
.height = si.height
|
|
|
|
};
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
2010-08-25 23:00:36 +02:00
|
|
|
static void
|
|
|
|
screen_add(screen_t new_screen)
|
|
|
|
{
|
2012-11-21 22:08:12 +01:00
|
|
|
foreach(screen_to_test, globalconf.screens)
|
|
|
|
if(new_screen.geometry.x == screen_to_test->geometry.x
|
|
|
|
&& new_screen.geometry.y == screen_to_test->geometry.y)
|
|
|
|
{
|
|
|
|
/* we already have a screen for this area, just check if
|
|
|
|
* it's not bigger and drop it */
|
|
|
|
screen_to_test->geometry.width =
|
|
|
|
MAX(new_screen.geometry.width, screen_to_test->geometry.width);
|
|
|
|
screen_to_test->geometry.height =
|
|
|
|
MAX(new_screen.geometry.height, screen_to_test->geometry.height);
|
|
|
|
return;
|
|
|
|
}
|
2013-10-04 15:24:09 +02:00
|
|
|
|
2010-08-26 17:46:17 +02:00
|
|
|
signal_add(&new_screen.signals, "property::workarea");
|
2010-08-25 23:00:36 +02:00
|
|
|
screen_array_append(&globalconf.screens, new_screen);
|
2013-10-04 15:24:09 +02:00
|
|
|
|
|
|
|
/* Allocate the lua userdata object representing this screen */
|
|
|
|
screen_t *s = &globalconf.screens.tab[globalconf.screens.len-1];
|
|
|
|
screen_t **ps = lua_newuserdata(globalconf.L, sizeof(*ps));
|
|
|
|
*ps = s;
|
|
|
|
luaL_getmetatable(globalconf.L, "screen");
|
|
|
|
lua_setmetatable(globalconf.L, -2);
|
|
|
|
s->userdata = luaA_object_ref(globalconf.L, -1);
|
2010-08-25 23:00:36 +02:00
|
|
|
}
|
|
|
|
|
2013-09-27 23:07:33 +02:00
|
|
|
static bool
|
|
|
|
screens_exist(void)
|
|
|
|
{
|
|
|
|
return globalconf.screens.len > 0;
|
|
|
|
}
|
|
|
|
|
2010-07-21 14:42:45 +02:00
|
|
|
static bool
|
|
|
|
screen_scan_randr(void)
|
2008-09-18 16:03:05 +02:00
|
|
|
{
|
2009-09-21 16:29:19 +02:00
|
|
|
/* Check for extension before checking for XRandR */
|
|
|
|
if(xcb_get_extension_data(globalconf.connection, &xcb_randr_id)->present)
|
2008-09-18 16:03:05 +02:00
|
|
|
{
|
2009-09-21 16:29:19 +02:00
|
|
|
xcb_randr_query_version_reply_t *version_reply =
|
|
|
|
xcb_randr_query_version_reply(globalconf.connection,
|
|
|
|
xcb_randr_query_version(globalconf.connection, 1, 1), 0);
|
|
|
|
if(version_reply)
|
|
|
|
{
|
2010-09-18 16:01:44 +02:00
|
|
|
p_delete(&version_reply);
|
|
|
|
|
2009-09-21 16:29:19 +02:00
|
|
|
/* A quick XRandR recall:
|
|
|
|
* You have CRTC that manages a part of a SCREEN.
|
|
|
|
* Each CRTC can draw stuff on one or more OUTPUT. */
|
2010-08-16 14:10:58 +02:00
|
|
|
xcb_randr_get_screen_resources_cookie_t screen_res_c = xcb_randr_get_screen_resources(globalconf.connection, globalconf.screen->root);
|
2009-09-21 16:29:19 +02:00
|
|
|
xcb_randr_get_screen_resources_reply_t *screen_res_r = xcb_randr_get_screen_resources_reply(globalconf.connection, screen_res_c, NULL);
|
2008-09-18 16:03:05 +02:00
|
|
|
|
2010-07-21 14:46:49 +02:00
|
|
|
/* Only use the data from XRandR if there is more than one screen
|
|
|
|
* defined. This should work around the broken nvidia driver. */
|
|
|
|
if (screen_res_r->num_crtcs <= 1)
|
|
|
|
{
|
|
|
|
p_delete(&screen_res_r);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-09-21 16:29:19 +02:00
|
|
|
/* We go through CRTC, and build a screen for each one. */
|
|
|
|
xcb_randr_crtc_t *randr_crtcs = xcb_randr_get_screen_resources_crtcs(screen_res_r);
|
2008-09-18 16:03:05 +02:00
|
|
|
|
2009-09-21 16:29:19 +02:00
|
|
|
for(int i = 0; i < screen_res_r->num_crtcs; i++)
|
2008-09-18 16:03:05 +02:00
|
|
|
{
|
2009-09-21 16:29:19 +02:00
|
|
|
/* Get info on the output crtc */
|
|
|
|
xcb_randr_get_crtc_info_cookie_t crtc_info_c = xcb_randr_get_crtc_info(globalconf.connection, randr_crtcs[i], XCB_CURRENT_TIME);
|
|
|
|
xcb_randr_get_crtc_info_reply_t *crtc_info_r = xcb_randr_get_crtc_info_reply(globalconf.connection, crtc_info_c, NULL);
|
|
|
|
|
|
|
|
/* If CRTC has no OUTPUT, ignore it */
|
|
|
|
if(!xcb_randr_get_crtc_info_outputs_length(crtc_info_r))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Prepare the new screen */
|
|
|
|
screen_t new_screen;
|
|
|
|
p_clear(&new_screen, 1);
|
|
|
|
new_screen.geometry.x = crtc_info_r->x;
|
|
|
|
new_screen.geometry.y = crtc_info_r->y;
|
|
|
|
new_screen.geometry.width= crtc_info_r->width;
|
|
|
|
new_screen.geometry.height= crtc_info_r->height;
|
|
|
|
|
|
|
|
xcb_randr_output_t *randr_outputs = xcb_randr_get_crtc_info_outputs(crtc_info_r);
|
|
|
|
|
|
|
|
for(int j = 0; j < xcb_randr_get_crtc_info_outputs_length(crtc_info_r); j++)
|
|
|
|
{
|
|
|
|
xcb_randr_get_output_info_cookie_t output_info_c = xcb_randr_get_output_info(globalconf.connection, randr_outputs[j], XCB_CURRENT_TIME);
|
|
|
|
xcb_randr_get_output_info_reply_t *output_info_r = xcb_randr_get_output_info_reply(globalconf.connection, output_info_c, NULL);
|
|
|
|
|
|
|
|
int len = xcb_randr_get_output_info_name_length(output_info_r);
|
|
|
|
/* name is not NULL terminated */
|
|
|
|
char *name = memcpy(p_new(char *, len + 1), xcb_randr_get_output_info_name(output_info_r), len);
|
|
|
|
name[len] = '\0';
|
|
|
|
|
|
|
|
screen_output_array_append(&new_screen.outputs,
|
|
|
|
(screen_output_t) { .name = name,
|
|
|
|
.mm_width = output_info_r->mm_width,
|
|
|
|
.mm_height = output_info_r->mm_height });
|
|
|
|
|
|
|
|
p_delete(&output_info_r);
|
|
|
|
}
|
|
|
|
|
2010-08-25 23:00:36 +02:00
|
|
|
screen_add(new_screen);
|
2009-09-21 16:29:19 +02:00
|
|
|
|
|
|
|
p_delete(&crtc_info_r);
|
2008-09-18 16:03:05 +02:00
|
|
|
}
|
|
|
|
|
2009-09-21 16:29:19 +02:00
|
|
|
p_delete(&screen_res_r);
|
|
|
|
|
2013-09-27 23:07:33 +02:00
|
|
|
return screens_exist();
|
2009-09-21 16:29:19 +02:00
|
|
|
}
|
2008-09-18 16:03:05 +02:00
|
|
|
}
|
2009-09-21 16:29:19 +02:00
|
|
|
|
2010-07-21 14:42:45 +02:00
|
|
|
return false;
|
|
|
|
}
|
2009-09-21 16:29:19 +02:00
|
|
|
|
2010-07-21 14:42:45 +02:00
|
|
|
static bool
|
|
|
|
screen_scan_xinerama(void)
|
|
|
|
{
|
2010-08-16 14:20:45 +02:00
|
|
|
bool xinerama_is_active = false;
|
|
|
|
|
2010-07-21 14:42:45 +02:00
|
|
|
/* Check for extension before checking for Xinerama */
|
|
|
|
if(xcb_get_extension_data(globalconf.connection, &xcb_xinerama_id)->present)
|
|
|
|
{
|
|
|
|
xcb_xinerama_is_active_reply_t *xia;
|
|
|
|
xia = xcb_xinerama_is_active_reply(globalconf.connection, xcb_xinerama_is_active(globalconf.connection), NULL);
|
2010-08-16 14:20:45 +02:00
|
|
|
xinerama_is_active = xia->state;
|
2010-07-21 14:42:45 +02:00
|
|
|
p_delete(&xia);
|
|
|
|
}
|
2009-09-21 16:29:19 +02:00
|
|
|
|
2010-08-16 14:20:45 +02:00
|
|
|
if(xinerama_is_active)
|
2010-07-21 14:42:45 +02:00
|
|
|
{
|
|
|
|
xcb_xinerama_query_screens_reply_t *xsq;
|
|
|
|
xcb_xinerama_screen_info_t *xsi;
|
|
|
|
int xinerama_screen_number;
|
2009-09-21 16:29:19 +02:00
|
|
|
|
2010-07-21 14:42:45 +02:00
|
|
|
xsq = xcb_xinerama_query_screens_reply(globalconf.connection,
|
|
|
|
xcb_xinerama_query_screens_unchecked(globalconf.connection),
|
|
|
|
NULL);
|
2009-09-21 16:29:19 +02:00
|
|
|
|
2010-07-21 14:42:45 +02:00
|
|
|
xsi = xcb_xinerama_query_screens_screen_info(xsq);
|
|
|
|
xinerama_screen_number = xcb_xinerama_query_screens_screen_info_length(xsq);
|
2009-09-21 16:29:19 +02:00
|
|
|
|
2010-07-21 14:42:45 +02:00
|
|
|
/* now check if screens overlaps (same x,y): if so, we take only the biggest one */
|
|
|
|
for(int screen = 0; screen < xinerama_screen_number; screen++)
|
|
|
|
{
|
2012-11-21 22:08:12 +01:00
|
|
|
screen_t s;
|
|
|
|
p_clear(&s, 1);
|
|
|
|
s.geometry = screen_xsitoarea(xsi[screen]);
|
|
|
|
screen_add(s);
|
2010-07-21 14:42:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
p_delete(&xsq);
|
|
|
|
|
2013-09-27 23:07:33 +02:00
|
|
|
return screens_exist();
|
2010-07-21 14:42:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void screen_scan_x11(void)
|
|
|
|
{
|
|
|
|
/* One screen only / Zaphod mode */
|
2010-08-16 14:10:58 +02:00
|
|
|
xcb_screen_t *xcb_screen = globalconf.screen;
|
2010-08-16 13:47:40 +02:00
|
|
|
screen_t s;
|
|
|
|
p_clear(&s, 1);
|
|
|
|
s.geometry.x = 0;
|
|
|
|
s.geometry.y = 0;
|
|
|
|
s.geometry.width = xcb_screen->width_in_pixels;
|
|
|
|
s.geometry.height = xcb_screen->height_in_pixels;
|
2010-08-25 23:00:36 +02:00
|
|
|
screen_add(s);
|
2010-07-21 14:42:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Get screens informations and fill global configuration.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
screen_scan(void)
|
|
|
|
{
|
|
|
|
if(!screen_scan_randr() && !screen_scan_xinerama())
|
|
|
|
screen_scan_x11();
|
2008-09-18 16:03:05 +02:00
|
|
|
}
|
|
|
|
|
2008-09-03 22:37:43 +02:00
|
|
|
/** Return the Xinerama screen number where the coordinates belongs to.
|
|
|
|
* \param screen The logical screen number.
|
|
|
|
* \param x X coordinate
|
|
|
|
* \param y Y coordinate
|
2009-04-17 16:14:09 +02:00
|
|
|
* \return Screen pointer or screen param if no match or no multi-head.
|
2008-09-03 22:37:43 +02:00
|
|
|
*/
|
2009-04-17 16:14:09 +02:00
|
|
|
screen_t *
|
2010-08-16 14:25:12 +02:00
|
|
|
screen_getbycoord(int x, int y)
|
2008-09-03 22:37:43 +02:00
|
|
|
{
|
2009-04-17 16:14:09 +02:00
|
|
|
foreach(s, globalconf.screens)
|
2008-09-18 16:03:05 +02:00
|
|
|
if((x < 0 || (x >= s->geometry.x && x < s->geometry.x + s->geometry.width))
|
|
|
|
&& (y < 0 || (y >= s->geometry.y && y < s->geometry.y + s->geometry.height)))
|
2009-04-17 16:14:09 +02:00
|
|
|
return s;
|
2008-09-03 22:37:43 +02:00
|
|
|
|
2010-08-16 14:25:12 +02:00
|
|
|
/* No screen found, let's be creative. */
|
|
|
|
return &globalconf.screens.tab[0];
|
2008-09-03 22:37:43 +02:00
|
|
|
}
|
|
|
|
|
2008-06-04 15:30:47 +02:00
|
|
|
/** Get screens info.
|
2009-04-17 16:14:09 +02:00
|
|
|
* \param screen Screen.
|
2008-09-03 22:15:14 +02:00
|
|
|
* \param strut Honor windows strut.
|
2008-06-04 15:30:47 +02:00
|
|
|
* \return The screen area.
|
2007-09-14 11:55:36 +02:00
|
|
|
*/
|
2008-03-14 09:37:25 +01:00
|
|
|
area_t
|
2009-05-05 17:32:53 +02:00
|
|
|
screen_area_get(screen_t *screen, bool strut)
|
2007-09-14 11:35:17 +02:00
|
|
|
{
|
2009-08-18 15:23:05 +02:00
|
|
|
if(!strut)
|
|
|
|
return screen->geometry;
|
|
|
|
|
2009-04-17 16:14:09 +02:00
|
|
|
area_t area = screen->geometry;
|
2008-09-03 22:15:14 +02:00
|
|
|
uint16_t top = 0, bottom = 0, left = 0, right = 0;
|
2007-09-14 11:35:17 +02:00
|
|
|
|
2009-08-18 15:23:05 +02:00
|
|
|
#define COMPUTE_STRUT(o) \
|
|
|
|
{ \
|
|
|
|
if((o)->strut.top_start_x || (o)->strut.top_end_x || (o)->strut.top) \
|
|
|
|
{ \
|
|
|
|
if((o)->strut.top) \
|
|
|
|
top = MAX(top, (o)->strut.top); \
|
|
|
|
else \
|
|
|
|
top = MAX(top, ((o)->geometry.y - area.y) + (o)->geometry.height); \
|
|
|
|
} \
|
|
|
|
if((o)->strut.bottom_start_x || (o)->strut.bottom_end_x || (o)->strut.bottom) \
|
|
|
|
{ \
|
|
|
|
if((o)->strut.bottom) \
|
|
|
|
bottom = MAX(bottom, (o)->strut.bottom); \
|
|
|
|
else \
|
|
|
|
bottom = MAX(bottom, (area.y + area.height) - (o)->geometry.y); \
|
|
|
|
} \
|
|
|
|
if((o)->strut.left_start_y || (o)->strut.left_end_y || (o)->strut.left) \
|
|
|
|
{ \
|
|
|
|
if((o)->strut.left) \
|
|
|
|
left = MAX(left, (o)->strut.left); \
|
|
|
|
else \
|
|
|
|
left = MAX(left, ((o)->geometry.x - area.x) + (o)->geometry.width); \
|
|
|
|
} \
|
|
|
|
if((o)->strut.right_start_y || (o)->strut.right_end_y || (o)->strut.right) \
|
|
|
|
{ \
|
|
|
|
if((o)->strut.right) \
|
|
|
|
right = MAX(right, (o)->strut.right); \
|
|
|
|
else \
|
|
|
|
right = MAX(right, (area.x + area.width) - (o)->geometry.x); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach(c, globalconf.clients)
|
2011-03-27 20:07:14 +02:00
|
|
|
if((*c)->screen == screen && client_isvisible(*c))
|
2009-08-18 15:23:05 +02:00
|
|
|
COMPUTE_STRUT(*c)
|
|
|
|
|
2010-10-06 13:35:14 +02:00
|
|
|
foreach(drawin, globalconf.drawins)
|
2011-03-27 16:21:49 +02:00
|
|
|
if((*drawin)->visible)
|
|
|
|
{
|
|
|
|
screen_t *d_screen =
|
|
|
|
screen_getbycoord((*drawin)->geometry.x, (*drawin)->geometry.y);
|
|
|
|
if (d_screen == screen)
|
|
|
|
COMPUTE_STRUT(*drawin)
|
|
|
|
}
|
2009-08-18 15:23:05 +02:00
|
|
|
|
|
|
|
#undef COMPUTE_STRUT
|
2008-09-03 22:15:14 +02:00
|
|
|
|
|
|
|
area.x += left;
|
|
|
|
area.y += top;
|
|
|
|
area.width -= left + right;
|
|
|
|
area.height -= top + bottom;
|
|
|
|
|
2007-12-23 00:54:59 +01:00
|
|
|
return area;
|
2007-09-14 11:35:17 +02:00
|
|
|
}
|
2007-09-14 11:55:36 +02:00
|
|
|
|
2008-05-30 16:15:07 +02:00
|
|
|
/** Get display info.
|
2008-06-04 15:30:47 +02:00
|
|
|
* \return The display area.
|
2007-09-14 11:55:36 +02:00
|
|
|
*/
|
2008-03-14 09:37:25 +01:00
|
|
|
area_t
|
2010-08-16 13:47:40 +02:00
|
|
|
display_area_get(void)
|
2007-09-14 11:55:36 +02:00
|
|
|
{
|
2010-08-16 14:10:58 +02:00
|
|
|
xcb_screen_t *s = globalconf.screen;
|
2008-09-20 16:45:43 +02:00
|
|
|
area_t area = { .x = 0,
|
|
|
|
.y = 0,
|
|
|
|
.width = s->width_in_pixels,
|
|
|
|
.height = s->height_in_pixels };
|
2007-12-23 00:54:59 +01:00
|
|
|
return area;
|
2007-09-14 11:55:36 +02:00
|
|
|
}
|
2007-09-24 14:21:49 +02:00
|
|
|
|
2008-06-08 11:02:34 +02:00
|
|
|
/** Move a client to a virtual screen.
|
|
|
|
* \param c The client to move.
|
2009-08-30 07:26:19 +02:00
|
|
|
* \param new_screen The destination screen.
|
2008-06-09 21:43:09 +02:00
|
|
|
* \param doresize Set to true if we also move the client to the new x and
|
|
|
|
* y of the new screen.
|
2007-10-03 00:20:34 +02:00
|
|
|
*/
|
2007-09-28 11:30:51 +02:00
|
|
|
void
|
2009-08-24 16:32:19 +02:00
|
|
|
screen_client_moveto(client_t *c, screen_t *new_screen, bool doresize)
|
2007-09-28 11:30:51 +02:00
|
|
|
{
|
2009-04-17 16:14:09 +02:00
|
|
|
screen_t *old_screen = c->screen;
|
2008-06-09 21:43:09 +02:00
|
|
|
area_t from, to;
|
2011-07-07 18:49:58 +02:00
|
|
|
bool had_focus = false;
|
2007-11-15 15:44:16 +01:00
|
|
|
|
2008-12-07 18:03:36 +01:00
|
|
|
if(new_screen == c->screen)
|
|
|
|
return;
|
|
|
|
|
2011-07-07 18:49:58 +02:00
|
|
|
if (globalconf.focus.client == c)
|
|
|
|
had_focus = true;
|
|
|
|
|
2008-06-09 21:43:09 +02:00
|
|
|
c->screen = new_screen;
|
2007-12-27 16:29:45 +01:00
|
|
|
|
2009-03-29 20:26:39 +02:00
|
|
|
if(!doresize)
|
2009-04-17 23:54:08 +02:00
|
|
|
{
|
2009-08-10 18:19:09 +02:00
|
|
|
luaA_object_push(globalconf.L, c);
|
|
|
|
luaA_object_emit_signal(globalconf.L, -1, "property::screen", 0);
|
|
|
|
lua_pop(globalconf.L, 1);
|
2011-07-07 18:49:58 +02:00
|
|
|
if(had_focus)
|
|
|
|
client_focus(c);
|
2008-12-07 18:03:36 +01:00
|
|
|
return;
|
2009-04-17 23:54:08 +02:00
|
|
|
}
|
2008-12-07 18:03:36 +01:00
|
|
|
|
2009-05-05 17:32:53 +02:00
|
|
|
from = screen_area_get(old_screen, false);
|
|
|
|
to = screen_area_get(c->screen, false);
|
2008-12-07 18:03:36 +01:00
|
|
|
|
|
|
|
area_t new_geometry = c->geometry;
|
|
|
|
|
2009-10-05 17:13:29 +02:00
|
|
|
new_geometry.x = to.x + new_geometry.x - from.x;
|
|
|
|
new_geometry.y = to.y + new_geometry.y - from.y;
|
2008-12-07 18:03:36 +01:00
|
|
|
|
2009-10-05 17:13:29 +02:00
|
|
|
/* resize the client if it doesn't fit the new screen */
|
|
|
|
if(new_geometry.width > to.width)
|
|
|
|
new_geometry.width = to.width;
|
|
|
|
if(new_geometry.height > to.height)
|
|
|
|
new_geometry.height = to.height;
|
2008-12-07 18:03:36 +01:00
|
|
|
|
2009-10-05 17:13:29 +02:00
|
|
|
/* make sure the client is still on the screen */
|
|
|
|
if(new_geometry.x + new_geometry.width > to.x + to.width)
|
|
|
|
new_geometry.x = to.x + to.width - new_geometry.width;
|
|
|
|
if(new_geometry.y + new_geometry.height > to.y + to.height)
|
|
|
|
new_geometry.y = to.y + to.height - new_geometry.height;
|
2008-12-07 18:03:36 +01:00
|
|
|
|
|
|
|
/* move / resize the client */
|
2013-03-10 12:13:32 +01:00
|
|
|
client_resize(c, new_geometry, false);
|
2009-08-10 18:19:09 +02:00
|
|
|
luaA_object_push(globalconf.L, c);
|
|
|
|
luaA_object_emit_signal(globalconf.L, -1, "property::screen", 0);
|
|
|
|
lua_pop(globalconf.L, 1);
|
2011-07-07 18:49:58 +02:00
|
|
|
if(had_focus)
|
|
|
|
client_focus(c);
|
2007-09-28 11:30:51 +02:00
|
|
|
}
|
|
|
|
|
2009-07-13 14:26:18 +02:00
|
|
|
/** Push a screen onto the stack.
|
|
|
|
* \param L The Lua VM state.
|
2009-08-30 07:26:19 +02:00
|
|
|
* \param s The screen to push.
|
2009-07-13 14:26:18 +02:00
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
*/
|
2009-09-07 17:13:54 +02:00
|
|
|
static int
|
2009-07-13 14:26:18 +02:00
|
|
|
luaA_pushscreen(lua_State *L, screen_t *s)
|
|
|
|
{
|
2013-10-04 15:24:09 +02:00
|
|
|
luaA_object_push(L, s->userdata);
|
2009-07-13 14:26:18 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-08-11 17:14:02 +02:00
|
|
|
/** Screen module.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
2008-08-12 12:08:20 +02:00
|
|
|
* \lfield number The screen number, to get a screen.
|
2008-08-11 17:14:02 +02:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_screen_module_index(lua_State *L)
|
|
|
|
{
|
2009-09-21 20:35:14 +02:00
|
|
|
const char *name;
|
|
|
|
|
|
|
|
if((name = lua_tostring(L, 2)))
|
|
|
|
foreach(screen, globalconf.screens)
|
|
|
|
foreach(output, screen->outputs)
|
2011-11-17 16:38:39 +01:00
|
|
|
if(A_STREQ(output->name, name))
|
2009-09-21 20:35:14 +02:00
|
|
|
return luaA_pushscreen(L, screen);
|
|
|
|
|
2008-08-11 17:14:02 +02:00
|
|
|
int screen = luaL_checknumber(L, 2) - 1;
|
|
|
|
luaA_checkscreen(screen);
|
2009-07-13 14:26:18 +02:00
|
|
|
return luaA_pushscreen(L, &globalconf.screens.tab[screen]);
|
2008-08-11 17:14:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** A screen.
|
|
|
|
* \param L The Lua VM state.
|
2008-08-13 18:12:26 +02:00
|
|
|
* \return The number of elements pushed on stack.
|
2008-08-11 17:14:02 +02:00
|
|
|
* \luastack
|
|
|
|
* \lfield coords The screen coordinates. Immutable.
|
2009-05-05 17:32:53 +02:00
|
|
|
* \lfield workarea The screen workarea.
|
2008-08-11 17:14:02 +02:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_screen_index(lua_State *L)
|
|
|
|
{
|
2008-08-13 18:12:26 +02:00
|
|
|
const char *buf;
|
2011-10-12 13:05:57 +02:00
|
|
|
screen_t **ps;
|
2008-08-11 17:14:02 +02:00
|
|
|
screen_t *s;
|
|
|
|
|
2009-09-30 14:21:25 +02:00
|
|
|
/* Get metatable of the screen. */
|
|
|
|
lua_getmetatable(L, 1);
|
|
|
|
/* Get the field */
|
|
|
|
lua_pushvalue(L, 2);
|
|
|
|
lua_rawget(L, -2);
|
|
|
|
/* Do we have a field like that? */
|
|
|
|
if(!lua_isnil(L, -1))
|
|
|
|
{
|
|
|
|
/* Yes, so return it! */
|
|
|
|
lua_remove(L, -2);
|
2008-08-13 18:12:26 +02:00
|
|
|
return 1;
|
2009-09-30 14:21:25 +02:00
|
|
|
}
|
|
|
|
/* No, so remove everything. */
|
|
|
|
lua_pop(L, 2);
|
2008-08-13 18:12:26 +02:00
|
|
|
|
2010-09-02 18:53:44 +02:00
|
|
|
buf = luaL_checkstring(L, 2);
|
2011-10-12 13:05:57 +02:00
|
|
|
ps = luaL_checkudata(L, 1, "screen");
|
|
|
|
s = *ps;
|
2008-08-11 17:14:02 +02:00
|
|
|
|
2011-11-17 16:38:39 +01:00
|
|
|
if(A_STREQ(buf, "index"))
|
|
|
|
{
|
2009-07-13 15:36:49 +02:00
|
|
|
lua_pushinteger(L, screen_array_indexof(&globalconf.screens, s) + 1);
|
2011-11-17 16:38:39 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(A_STREQ(buf, "geometry"))
|
|
|
|
{
|
2008-09-22 19:11:39 +02:00
|
|
|
luaA_pusharea(L, s->geometry);
|
2011-11-17 16:38:39 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(A_STREQ(buf, "workarea"))
|
|
|
|
{
|
2009-05-05 17:32:53 +02:00
|
|
|
luaA_pusharea(L, screen_area_get(s, true));
|
2011-11-17 16:38:39 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(A_STREQ(buf, "outputs"))
|
2010-09-02 18:53:44 +02:00
|
|
|
{
|
|
|
|
lua_createtable(L, 0, s->outputs.len);
|
|
|
|
foreach(output, s->outputs)
|
2009-09-21 16:33:03 +02:00
|
|
|
{
|
2010-09-02 18:53:44 +02:00
|
|
|
lua_createtable(L, 2, 0);
|
2011-11-17 16:38:39 +01:00
|
|
|
|
2010-09-02 18:53:44 +02:00
|
|
|
lua_pushinteger(L, output->mm_width);
|
|
|
|
lua_setfield(L, -2, "mm_width");
|
|
|
|
lua_pushinteger(L, output->mm_height);
|
|
|
|
lua_setfield(L, -2, "mm_height");
|
2011-11-17 16:38:39 +01:00
|
|
|
|
2010-09-02 18:53:44 +02:00
|
|
|
lua_setfield(L, -2, output->name);
|
2009-09-21 16:33:03 +02:00
|
|
|
}
|
2011-11-17 16:38:39 +01:00
|
|
|
/* The table of tables we created. */
|
|
|
|
return 1;
|
2008-08-11 17:14:02 +02:00
|
|
|
}
|
|
|
|
|
2014-03-23 19:09:11 +01:00
|
|
|
return luaA_default_index(L);
|
2008-08-11 17:14:02 +02:00
|
|
|
}
|
|
|
|
|
2009-07-13 12:07:10 +02:00
|
|
|
/** Add a signal to a screen.
|
2010-08-25 23:00:36 +02:00
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
|
|
|
* \lvalue A screen.
|
|
|
|
* \lparam A signal name.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_screen_add_signal(lua_State *L)
|
|
|
|
{
|
2011-10-12 13:05:57 +02:00
|
|
|
screen_t **ps = luaL_checkudata(L, 1, "screen");
|
|
|
|
screen_t *s = *ps;
|
2010-08-25 23:00:36 +02:00
|
|
|
const char *name = luaL_checkstring(L, 2);
|
|
|
|
signal_add(&s->signals, name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Connect a screen's signal.
|
2009-07-13 12:07:10 +02:00
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
|
|
|
* \lvalue A screen.
|
|
|
|
* \lparam A signal name.
|
2009-08-30 07:26:19 +02:00
|
|
|
* \lparam A function to call when the signal is emitted.
|
2009-07-13 12:07:10 +02:00
|
|
|
*/
|
|
|
|
static int
|
2009-10-09 20:39:55 +02:00
|
|
|
luaA_screen_connect_signal(lua_State *L)
|
2009-07-13 12:07:10 +02:00
|
|
|
{
|
2011-10-12 13:05:57 +02:00
|
|
|
screen_t **ps = luaL_checkudata(L, 1, "screen");
|
|
|
|
screen_t *s = *ps;
|
2009-07-13 12:07:10 +02:00
|
|
|
const char *name = luaL_checkstring(L, 2);
|
|
|
|
luaA_checkfunction(L, 3);
|
2010-08-25 20:48:42 +02:00
|
|
|
signal_connect(&s->signals, name, luaA_object_ref(L, 3));
|
2009-07-13 12:07:10 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Remove a signal to a screen.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
|
|
|
* \lvalue A screen.
|
|
|
|
* \lparam A signal name.
|
|
|
|
* \lparam A function to remove
|
|
|
|
*/
|
|
|
|
static int
|
2009-10-09 20:39:55 +02:00
|
|
|
luaA_screen_disconnect_signal(lua_State *L)
|
2009-07-13 12:07:10 +02:00
|
|
|
{
|
2011-10-12 13:05:57 +02:00
|
|
|
screen_t **ps = luaL_checkudata(L, 1, "screen");
|
|
|
|
screen_t *s = *ps;
|
2009-07-13 12:07:10 +02:00
|
|
|
const char *name = luaL_checkstring(L, 2);
|
|
|
|
luaA_checkfunction(L, 3);
|
|
|
|
const void *ref = lua_topointer(L, 3);
|
2010-08-25 20:48:42 +02:00
|
|
|
signal_disconnect(&s->signals, name, ref);
|
2009-07-13 12:07:10 +02:00
|
|
|
luaA_object_unref(L, (void *) ref);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Emit a signal to a screen.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \param screen The screen.
|
|
|
|
* \param name The signal name.
|
|
|
|
* \param nargs The number of arguments to the signal function.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
screen_emit_signal(lua_State *L, screen_t *screen, const char *name, int nargs)
|
|
|
|
{
|
2009-08-18 18:11:18 +02:00
|
|
|
luaA_pushscreen(L, screen);
|
|
|
|
lua_insert(L, - nargs - 1);
|
|
|
|
signal_object_emit(L, &screen->signals, name, nargs + 1);
|
2009-07-13 12:07:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Emit a signal to a screen.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
|
|
|
* \lvalue A screen.
|
|
|
|
* \lparam A signal name.
|
|
|
|
* \lparam Various arguments, optional.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_screen_emit_signal(lua_State *L)
|
|
|
|
{
|
2011-10-12 13:05:57 +02:00
|
|
|
screen_t **ps = luaL_checkudata(L, 1, "screen");
|
|
|
|
screen_emit_signal(L, *ps, luaL_checkstring(L, 2), lua_gettop(L) - 2);
|
2009-07-13 12:07:10 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-08-11 17:14:02 +02:00
|
|
|
/** Get the screen count.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
*
|
|
|
|
* \luastack
|
|
|
|
* \lreturn The screen count, at least 1.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_screen_count(lua_State *L)
|
|
|
|
{
|
2009-04-17 16:14:09 +02:00
|
|
|
lua_pushnumber(L, globalconf.screens.len);
|
2008-08-11 17:14:02 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-06-06 23:07:07 +02:00
|
|
|
const struct luaL_Reg awesome_screen_methods[] =
|
2008-08-11 17:14:02 +02:00
|
|
|
{
|
|
|
|
{ "count", luaA_screen_count },
|
|
|
|
{ "__index", luaA_screen_module_index },
|
2014-03-23 19:09:11 +01:00
|
|
|
{ "__newindex", luaA_default_newindex },
|
2008-08-11 17:14:02 +02:00
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
2012-06-06 23:07:07 +02:00
|
|
|
const struct luaL_Reg awesome_screen_meta[] =
|
2008-08-11 17:14:02 +02:00
|
|
|
{
|
2010-08-25 23:00:36 +02:00
|
|
|
{ "add_signal", luaA_screen_add_signal },
|
2009-10-09 20:39:55 +02:00
|
|
|
{ "connect_signal", luaA_screen_connect_signal },
|
|
|
|
{ "disconnect_signal", luaA_screen_disconnect_signal },
|
2009-07-13 12:07:10 +02:00
|
|
|
{ "emit_signal", luaA_screen_emit_signal },
|
2008-08-11 17:14:02 +02:00
|
|
|
{ "__index", luaA_screen_index },
|
2014-03-23 19:09:11 +01:00
|
|
|
{ "__newindex", luaA_default_newindex },
|
2008-08-11 17:14:02 +02:00
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
2011-09-11 16:50:01 +02:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|