2008-03-13 09:05:34 +01:00
|
|
|
/*
|
|
|
|
* common/xscreen.c - common X screen management
|
|
|
|
*
|
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
#include <xcb/xcb.h>
|
|
|
|
#include <xcb/xcb_aux.h>
|
|
|
|
#include <xcb/xinerama.h>
|
2008-03-13 09:05:34 +01:00
|
|
|
|
|
|
|
#include "common/xscreen.h"
|
|
|
|
|
|
|
|
/** Return the Xinerama screen number where the coordinates belongs to
|
|
|
|
* \param disp Display ref
|
|
|
|
* \param x x coordinate of the window
|
|
|
|
* \param y y coordinate of the window
|
|
|
|
* \return screen number or DefaultScreen of disp on no match
|
|
|
|
*/
|
|
|
|
int
|
2008-03-13 09:28:21 +01:00
|
|
|
screen_get_bycoord(ScreensInfo *si, int screen, int x, int y)
|
2008-03-13 09:05:34 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* don't waste our time */
|
2008-03-13 09:28:21 +01:00
|
|
|
if(!si->xinerama_is_active)
|
2008-03-13 09:05:34 +01:00
|
|
|
return screen;
|
|
|
|
|
|
|
|
for(i = 0; i < si->nscreen; i++)
|
|
|
|
if((x < 0 || (x >= si->geometry[i].x && x < si->geometry[i].x + si->geometry[i].width))
|
|
|
|
&& (y < 0 || (y >= si->geometry[i].y && y < si->geometry[i].y + si->geometry[i].height)))
|
|
|
|
return i;
|
|
|
|
|
2008-03-13 09:28:21 +01:00
|
|
|
return screen;
|
2008-03-13 09:05:34 +01:00
|
|
|
}
|
|
|
|
|
2008-03-14 09:37:25 +01:00
|
|
|
static inline area_t
|
2008-03-21 16:50:17 +01:00
|
|
|
screen_xsitoarea(xcb_xinerama_screen_info_t si)
|
2008-03-13 09:05:34 +01:00
|
|
|
{
|
2008-03-14 09:37:25 +01:00
|
|
|
area_t a;
|
2008-03-13 09:05:34 +01:00
|
|
|
|
|
|
|
a.x = si.x_org;
|
|
|
|
a.y = si.y_org;
|
|
|
|
a.width = si.width;
|
|
|
|
a.height = si.height;
|
2008-03-13 12:04:36 +01:00
|
|
|
a.next = a.prev = NULL;
|
2008-03-13 09:05:34 +01:00
|
|
|
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
screensinfo_delete(ScreensInfo **si)
|
|
|
|
{
|
|
|
|
p_delete(&(*si)->geometry);
|
|
|
|
p_delete(si);
|
|
|
|
}
|
|
|
|
|
|
|
|
ScreensInfo *
|
2008-03-21 16:50:17 +01:00
|
|
|
screensinfo_new(xcb_connection_t *conn)
|
2008-03-13 09:05:34 +01:00
|
|
|
{
|
|
|
|
ScreensInfo *si;
|
2008-03-22 14:28:39 +01:00
|
|
|
xcb_xinerama_query_screens_reply_t *xsq;
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_xinerama_screen_info_t *xsi;
|
2008-03-13 09:05:34 +01:00
|
|
|
int xinerama_screen_number, screen, screen_to_test;
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_screen_t *s;
|
|
|
|
bool drop;
|
2008-03-23 18:58:10 +01:00
|
|
|
xcb_xinerama_is_active_reply_t *r = NULL;
|
2008-03-13 09:05:34 +01:00
|
|
|
|
|
|
|
si = p_new(ScreensInfo, 1);
|
|
|
|
|
2008-03-23 18:58:10 +01:00
|
|
|
/* Check for extension before checking for Xinerama */
|
|
|
|
if(xcb_get_extension_data(conn, &xcb_xinerama_id)->present)
|
|
|
|
{
|
|
|
|
r = xcb_xinerama_is_active_reply(conn, xcb_xinerama_is_active(conn), NULL);
|
|
|
|
si->xinerama_is_active = r->state;
|
|
|
|
p_delete(&r);
|
|
|
|
}
|
2008-03-22 14:28:39 +01:00
|
|
|
|
2008-03-23 18:58:10 +01:00
|
|
|
if(si->xinerama_is_active)
|
2008-03-13 09:05:34 +01:00
|
|
|
{
|
2008-03-23 18:58:10 +01:00
|
|
|
xsq = xcb_xinerama_query_screens_reply(conn,
|
|
|
|
xcb_xinerama_query_screens_unchecked(conn),
|
|
|
|
NULL);
|
|
|
|
|
2008-03-22 14:28:39 +01:00
|
|
|
xsi = xcb_xinerama_query_screens_screen_info(xsq);
|
|
|
|
xinerama_screen_number = xcb_xinerama_query_screens_screen_info_length(xsq);
|
|
|
|
|
2008-03-14 09:37:25 +01:00
|
|
|
si->geometry = p_new(area_t, xinerama_screen_number);
|
2008-03-13 09:05:34 +01:00
|
|
|
si->nscreen = 0;
|
|
|
|
|
|
|
|
/* now check if screens overlaps (same x,y): if so, we take only the biggest one */
|
|
|
|
for(screen = 0; screen < xinerama_screen_number; screen++)
|
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
drop = false;
|
2008-03-13 09:05:34 +01:00
|
|
|
for(screen_to_test = 0; screen_to_test < si->nscreen; screen_to_test++)
|
|
|
|
if(xsi[screen].x_org == si->geometry[screen_to_test].x
|
|
|
|
&& xsi[screen].y_org == si->geometry[screen_to_test].y)
|
|
|
|
{
|
|
|
|
/* we already have a screen for this area, just check if
|
|
|
|
* it's not bigger and drop it */
|
2008-03-21 16:50:17 +01:00
|
|
|
drop = true;
|
2008-03-13 09:05:34 +01:00
|
|
|
si->geometry[screen_to_test].width =
|
|
|
|
MAX(xsi[screen].width, xsi[screen_to_test].width);
|
|
|
|
si->geometry[screen_to_test].height =
|
|
|
|
MAX(xsi[screen].height, xsi[screen_to_test].height);
|
|
|
|
}
|
|
|
|
if(!drop)
|
2008-03-21 11:26:56 +01:00
|
|
|
si->geometry[si->nscreen++] = screen_xsitoarea(xsi[screen]);
|
2008-03-13 09:05:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* realloc smaller if xinerama_screen_number != screen registered */
|
|
|
|
if(xinerama_screen_number != si->nscreen)
|
|
|
|
{
|
2008-03-14 09:37:25 +01:00
|
|
|
area_t *newgeometry = p_new(area_t, si->nscreen);
|
|
|
|
memcpy(newgeometry, si->geometry, si->nscreen * sizeof(area_t));
|
2008-03-13 09:05:34 +01:00
|
|
|
p_delete(&si->geometry);
|
|
|
|
si->geometry = newgeometry;
|
|
|
|
}
|
2008-03-23 18:58:10 +01:00
|
|
|
|
|
|
|
p_delete(&xsq);
|
2008-03-13 09:05:34 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
si->nscreen = xcb_setup_roots_length(xcb_get_setup(conn));
|
2008-03-14 09:37:25 +01:00
|
|
|
si->geometry = p_new(area_t, si->nscreen);
|
2008-03-13 09:05:34 +01:00
|
|
|
for(screen = 0; screen < si->nscreen; screen++)
|
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
s = xcb_aux_get_screen(conn, screen);
|
2008-03-13 09:05:34 +01:00
|
|
|
si->geometry[screen].x = 0;
|
|
|
|
si->geometry[screen].y = 0;
|
2008-03-21 16:50:17 +01:00
|
|
|
si->geometry[screen].width = s->width_in_pixels;
|
|
|
|
si->geometry[screen].height = s->height_in_pixels;
|
2008-03-13 09:05:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return si;
|
|
|
|
}
|
|
|
|
|
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|