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
|
|
|
*
|
2008-01-29 11:27:14 +01:00
|
|
|
* Copyright © 2007-2008 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>
|
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"
|
2008-06-09 21:43:09 +02:00
|
|
|
#include "tag.h"
|
2008-01-01 17:25:48 +01:00
|
|
|
#include "client.h"
|
2008-09-05 02:08:48 +02:00
|
|
|
#include "widget.h"
|
2008-09-24 12:13:21 +02:00
|
|
|
#include "wibox.h"
|
2008-08-13 18:12:26 +02:00
|
|
|
#include "layouts/tile.h"
|
2007-09-24 14:21:49 +02:00
|
|
|
|
2008-05-24 08:59:27 +02:00
|
|
|
extern awesome_t globalconf;
|
2007-12-16 02:45:38 +01:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Get screens informations and fill global configuration.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
screen_scan(void)
|
|
|
|
{
|
|
|
|
/* 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);
|
|
|
|
globalconf.xinerama_is_active = xia->state;
|
|
|
|
p_delete(&xia);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(globalconf.xinerama_is_active)
|
|
|
|
{
|
|
|
|
xcb_xinerama_query_screens_reply_t *xsq;
|
|
|
|
xcb_xinerama_screen_info_t *xsi;
|
|
|
|
int xinerama_screen_number;
|
|
|
|
|
|
|
|
xsq = xcb_xinerama_query_screens_reply(globalconf.connection,
|
|
|
|
xcb_xinerama_query_screens_unchecked(globalconf.connection),
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
xsi = xcb_xinerama_query_screens_screen_info(xsq);
|
|
|
|
xinerama_screen_number = xcb_xinerama_query_screens_screen_info_length(xsq);
|
|
|
|
|
|
|
|
globalconf.screens = p_new(screen_t, xinerama_screen_number);
|
|
|
|
|
|
|
|
/* 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++)
|
|
|
|
{
|
|
|
|
bool drop = false;
|
|
|
|
for(int screen_to_test = 0; screen_to_test < globalconf.nscreen; screen_to_test++)
|
|
|
|
if(xsi[screen].x_org == globalconf.screens[screen_to_test].geometry.x
|
|
|
|
&& xsi[screen].y_org == globalconf.screens[screen_to_test].geometry.y)
|
|
|
|
{
|
|
|
|
/* we already have a screen for this area, just check if
|
|
|
|
* it's not bigger and drop it */
|
|
|
|
drop = true;
|
|
|
|
globalconf.screens[screen_to_test].geometry.width =
|
|
|
|
MAX(xsi[screen].width, xsi[screen_to_test].width);
|
|
|
|
globalconf.screens[screen_to_test].geometry.height =
|
|
|
|
MAX(xsi[screen].height, xsi[screen_to_test].height);
|
|
|
|
}
|
|
|
|
if(!drop)
|
|
|
|
{
|
|
|
|
globalconf.screens[globalconf.nscreen].index = screen;
|
|
|
|
globalconf.screens[globalconf.nscreen++].geometry = screen_xsitoarea(xsi[screen]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* realloc smaller if xinerama_screen_number != screen registered */
|
|
|
|
if(xinerama_screen_number != globalconf.nscreen)
|
|
|
|
{
|
|
|
|
screen_t *new = p_new(screen_t, globalconf.nscreen);
|
|
|
|
memcpy(new, globalconf.screens, globalconf.nscreen * sizeof(screen_t));
|
|
|
|
p_delete(&globalconf.screens);
|
|
|
|
globalconf.screens = new;
|
|
|
|
}
|
|
|
|
|
|
|
|
p_delete(&xsq);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
globalconf.nscreen = xcb_setup_roots_length(xcb_get_setup(globalconf.connection));
|
|
|
|
globalconf.screens = p_new(screen_t, globalconf.nscreen);
|
|
|
|
for(int screen = 0; screen < globalconf.nscreen; screen++)
|
|
|
|
{
|
|
|
|
xcb_screen_t *s = xutil_screen_get(globalconf.connection, screen);
|
|
|
|
globalconf.screens[screen].index = screen;
|
|
|
|
globalconf.screens[screen].geometry.x = 0;
|
|
|
|
globalconf.screens[screen].geometry.y = 0;
|
|
|
|
globalconf.screens[screen].geometry.width = s->width_in_pixels;
|
|
|
|
globalconf.screens[screen].geometry.height = s->height_in_pixels;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
globalconf.screen_focus = globalconf.screens;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
* \return Screen number or screen param if no match or no multi-head.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
screen_getbycoord(int screen, int x, int y)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* don't waste our time */
|
2008-09-18 16:03:05 +02:00
|
|
|
if(!globalconf.xinerama_is_active)
|
2008-09-03 22:37:43 +02:00
|
|
|
return screen;
|
|
|
|
|
2008-09-18 16:03:05 +02:00
|
|
|
for(i = 0; i < globalconf.nscreen; i++)
|
|
|
|
{
|
|
|
|
screen_t *s = &globalconf.screens[i];
|
|
|
|
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)))
|
2008-09-03 22:37:43 +02:00
|
|
|
return i;
|
2008-09-18 16:03:05 +02:00
|
|
|
}
|
2008-09-03 22:37:43 +02:00
|
|
|
|
|
|
|
return screen;
|
|
|
|
}
|
|
|
|
|
2008-06-04 15:30:47 +02:00
|
|
|
/** Get screens info.
|
|
|
|
* \param screen Screen number.
|
2008-09-24 12:13:21 +02:00
|
|
|
* \param wiboxes Wiboxes list to remove.
|
2008-06-04 15:30:47 +02:00
|
|
|
* \param padding Padding.
|
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
|
2008-09-24 12:13:21 +02:00
|
|
|
screen_area_get(int screen, wibox_array_t *wiboxes,
|
2008-09-03 22:15:14 +02:00
|
|
|
padding_t *padding, bool strut)
|
2007-09-14 11:35:17 +02:00
|
|
|
{
|
2008-09-03 22:15:14 +02:00
|
|
|
area_t area = globalconf.screens[screen].geometry;
|
|
|
|
uint16_t top = 0, bottom = 0, left = 0, right = 0;
|
2007-09-14 11:35:17 +02:00
|
|
|
|
2008-01-22 20:41:10 +01:00
|
|
|
/* make padding corrections */
|
2007-11-27 23:03:55 +01:00
|
|
|
if(padding)
|
|
|
|
{
|
2007-12-23 00:54:59 +01:00
|
|
|
area.x += padding->left;
|
|
|
|
area.y += padding->top;
|
|
|
|
area.width -= padding->left + padding->right;
|
|
|
|
area.height -= padding->top + padding->bottom;
|
2007-11-27 23:03:55 +01:00
|
|
|
}
|
|
|
|
|
2008-09-03 22:15:14 +02:00
|
|
|
if(strut)
|
|
|
|
{
|
|
|
|
client_t *c;
|
|
|
|
for(c = globalconf.clients; c; c = c->next)
|
|
|
|
if(client_isvisible(c, screen))
|
|
|
|
{
|
|
|
|
if(c->strut.top_start_x || c->strut.top_end_x)
|
|
|
|
{
|
|
|
|
if(c->strut.top)
|
|
|
|
top = MAX(top, c->strut.top);
|
|
|
|
else
|
|
|
|
top = MAX(top, (c->geometry.y - area.y) + c->geometry.height);
|
|
|
|
}
|
|
|
|
if(c->strut.bottom_start_x || c->strut.bottom_end_x)
|
|
|
|
{
|
|
|
|
if(c->strut.bottom)
|
|
|
|
bottom = MAX(bottom, c->strut.bottom);
|
|
|
|
else
|
|
|
|
bottom = MAX(bottom, (area.y + area.height) - c->geometry.y);
|
|
|
|
}
|
|
|
|
if(c->strut.left_start_y || c->strut.left_end_y)
|
|
|
|
{
|
|
|
|
if(c->strut.left)
|
|
|
|
left = MAX(left, c->strut.left);
|
|
|
|
else
|
|
|
|
left = MAX(left, (c->geometry.x - area.x) + c->geometry.width);
|
|
|
|
}
|
|
|
|
if(c->strut.right_start_y || c->strut.right_end_y)
|
|
|
|
{
|
|
|
|
if(c->strut.right)
|
|
|
|
right = MAX(right, c->strut.right);
|
|
|
|
else
|
|
|
|
right = MAX(right, (area.x + area.width) - c->geometry.x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-09-24 12:13:21 +02:00
|
|
|
if(wiboxes)
|
|
|
|
for(int i = 0; i < wiboxes->len; i++)
|
2007-12-23 00:54:59 +01:00
|
|
|
{
|
2008-09-24 12:13:21 +02:00
|
|
|
wibox_t *w = wiboxes->tab[i];
|
|
|
|
if(w->isvisible)
|
|
|
|
switch(w->position)
|
2008-09-23 17:20:07 +02:00
|
|
|
{
|
|
|
|
case Top:
|
2008-10-24 13:58:25 +02:00
|
|
|
top = MAX(top, (uint16_t) (w->sw.geometry.y - area.y) + w->sw.geometry.height + 2 * w->sw.border.width);
|
2008-09-23 17:20:07 +02:00
|
|
|
break;
|
|
|
|
case Bottom:
|
2008-09-24 12:13:21 +02:00
|
|
|
bottom = MAX(bottom, (uint16_t) (area.y + area.height) - w->sw.geometry.y);
|
2008-09-23 17:20:07 +02:00
|
|
|
break;
|
|
|
|
case Left:
|
2008-10-24 13:58:25 +02:00
|
|
|
left = MAX(left, (uint16_t) (w->sw.geometry.x - area.x) + w->sw.geometry.width + 2 * w->sw.border.width);
|
2008-09-23 17:20:07 +02:00
|
|
|
break;
|
|
|
|
case Right:
|
2008-09-24 12:13:21 +02:00
|
|
|
right = MAX(right, (uint16_t) (area.x + area.width) - w->sw.geometry.x);
|
2008-09-23 17:20:07 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2007-12-23 00:54:59 +01:00
|
|
|
}
|
|
|
|
|
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-08 15:27:05 +02:00
|
|
|
* \param phys_screen Physical screen number.
|
2008-09-24 12:13:21 +02:00
|
|
|
* \param wiboxes The wiboxes.
|
2008-05-30 16:15:07 +02:00
|
|
|
* \param padding Padding.
|
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
|
2008-09-24 12:13:21 +02:00
|
|
|
display_area_get(int phys_screen, wibox_array_t *wiboxes, padding_t *padding)
|
2007-09-14 11:55:36 +02:00
|
|
|
{
|
2008-06-17 16:55:24 +02:00
|
|
|
xcb_screen_t *s = xutil_screen_get(globalconf.connection, phys_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-09-14 11:55:36 +02:00
|
|
|
|
2008-09-24 12:13:21 +02:00
|
|
|
if(wiboxes)
|
|
|
|
for(int i = 0; i < wiboxes->len; i++)
|
2008-09-20 16:45:43 +02:00
|
|
|
{
|
2008-09-24 12:13:21 +02:00
|
|
|
wibox_t *w = wiboxes->tab[i];
|
|
|
|
area.y += w->position == Top ? w->sw.geometry.height : 0;
|
|
|
|
area.height -= (w->position == Top || w->position == Bottom) ? w->sw.geometry.height : 0;
|
2008-09-20 16:45:43 +02:00
|
|
|
}
|
2007-09-14 11:55:36 +02:00
|
|
|
|
2007-12-23 00:54:59 +01:00
|
|
|
/* make padding corrections */
|
|
|
|
if(padding)
|
|
|
|
{
|
|
|
|
area.x += padding->left;
|
|
|
|
area.y += padding->top;
|
|
|
|
area.width -= padding->left + padding->right;
|
|
|
|
area.height -= padding->top + padding->bottom;
|
|
|
|
}
|
|
|
|
return area;
|
2007-09-14 11:55:36 +02:00
|
|
|
}
|
2007-09-24 14:21:49 +02:00
|
|
|
|
2007-09-28 11:36:39 +02:00
|
|
|
/** This returns the real X screen number for a logical
|
|
|
|
* screen if Xinerama is active.
|
2008-06-08 11:02:34 +02:00
|
|
|
* \param screen The logical screen.
|
|
|
|
* \return The X screen.
|
2007-09-28 11:36:39 +02:00
|
|
|
*/
|
|
|
|
int
|
2008-03-21 10:53:17 +01:00
|
|
|
screen_virttophys(int screen)
|
2007-09-28 11:36:39 +02:00
|
|
|
{
|
2008-09-18 16:03:05 +02:00
|
|
|
if(globalconf.xinerama_is_active)
|
2008-03-21 16:50:17 +01:00
|
|
|
return globalconf.default_screen;
|
2007-09-28 11:36:39 +02:00
|
|
|
return screen;
|
|
|
|
}
|
|
|
|
|
2008-06-08 11:02:34 +02:00
|
|
|
/** Move a client to a virtual screen.
|
|
|
|
* \param c The client to move.
|
2008-06-09 21:43:09 +02:00
|
|
|
* \param new_screen The destinatiuon screen number.
|
2008-09-05 02:05:30 +02:00
|
|
|
* \param dotag Set to true if we also change tags.
|
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
|
2008-09-05 02:05:30 +02:00
|
|
|
screen_client_moveto(client_t *c, int new_screen, bool dotag, bool doresize)
|
2007-09-28 11:30:51 +02:00
|
|
|
{
|
2008-06-27 23:00:20 +02:00
|
|
|
int i, old_screen = c->screen;
|
|
|
|
tag_array_t *old_tags = &globalconf.screens[old_screen].tags,
|
|
|
|
*new_tags = &globalconf.screens[new_screen].tags;
|
2008-06-09 21:43:09 +02:00
|
|
|
area_t from, to;
|
2008-08-21 15:36:54 +02:00
|
|
|
bool wasvisible = client_isvisible(c, c->screen);
|
2007-11-15 15:44:16 +01:00
|
|
|
|
2008-06-09 21:43:09 +02:00
|
|
|
c->screen = new_screen;
|
2007-12-27 16:29:45 +01:00
|
|
|
|
2008-09-24 12:13:21 +02:00
|
|
|
if(c->titlebar)
|
|
|
|
c->titlebar->screen = new_screen;
|
|
|
|
|
2008-09-05 02:05:30 +02:00
|
|
|
if(dotag && !c->issticky)
|
|
|
|
{
|
|
|
|
/* remove old tags */
|
|
|
|
for(i = 0; i < old_tags->len; i++)
|
|
|
|
untag_client(c, old_tags->tab[i]);
|
|
|
|
|
|
|
|
/* add new tags */
|
|
|
|
for(i = 0; i < new_tags->len; i++)
|
|
|
|
if(new_tags->tab[i]->selected)
|
|
|
|
tag_client(c, new_tags->tab[i]);
|
|
|
|
}
|
2007-11-15 14:49:08 +01:00
|
|
|
|
2008-06-09 21:43:09 +02:00
|
|
|
/* resize the windows if it's floating */
|
|
|
|
if(doresize && old_screen != c->screen)
|
2008-06-09 16:30:46 +02:00
|
|
|
{
|
2008-06-09 21:43:09 +02:00
|
|
|
area_t new_geometry, new_f_geometry;
|
|
|
|
new_f_geometry = c->f_geometry;
|
2008-01-11 13:27:58 +01:00
|
|
|
|
2008-09-03 22:15:14 +02:00
|
|
|
to = screen_area_get(c->screen,
|
|
|
|
NULL, NULL, false);
|
|
|
|
from = screen_area_get(old_screen,
|
|
|
|
NULL, NULL, false);
|
2008-01-06 14:40:23 +01:00
|
|
|
|
2008-06-09 21:43:09 +02:00
|
|
|
/* compute new coords in new screen */
|
|
|
|
new_f_geometry.x = (c->f_geometry.x - from.x) + to.x;
|
|
|
|
new_f_geometry.y = (c->f_geometry.y - from.y) + to.y;
|
2008-06-09 16:30:46 +02:00
|
|
|
|
|
|
|
/* check that new coords are still in the screen */
|
2008-06-09 21:43:09 +02:00
|
|
|
if(new_f_geometry.width > to.width)
|
|
|
|
new_f_geometry.width = to.width;
|
|
|
|
if(new_f_geometry.height > to.height)
|
|
|
|
new_f_geometry.height = to.height;
|
|
|
|
if(new_f_geometry.x + new_f_geometry.width >= to.x + to.width)
|
|
|
|
new_f_geometry.x = to.x + to.width - new_f_geometry.width - 2 * c->border;
|
|
|
|
if(new_f_geometry.y + new_f_geometry.height >= to.y + to.height)
|
|
|
|
new_f_geometry.y = to.y + to.height - new_f_geometry.height - 2 * c->border;
|
|
|
|
|
2008-08-21 17:52:44 +02:00
|
|
|
if(c->isfullscreen)
|
2008-06-09 21:43:09 +02:00
|
|
|
{
|
|
|
|
new_geometry = c->geometry;
|
|
|
|
|
|
|
|
/* compute new coords in new screen */
|
|
|
|
new_geometry.x = (c->geometry.x - from.x) + to.x;
|
|
|
|
new_geometry.y = (c->geometry.y - from.y) + to.y;
|
|
|
|
|
|
|
|
/* check that new coords are still in the screen */
|
|
|
|
if(new_geometry.width > to.width)
|
|
|
|
new_geometry.width = to.width;
|
|
|
|
if(new_geometry.height > to.height)
|
|
|
|
new_geometry.height = to.height;
|
|
|
|
if(new_geometry.x + new_geometry.width >= to.x + to.width)
|
|
|
|
new_geometry.x = to.x + to.width - new_geometry.width - 2 * c->border;
|
|
|
|
if(new_geometry.y + new_geometry.height >= to.y + to.height)
|
|
|
|
new_geometry.y = to.y + to.height - new_geometry.height - 2 * c->border;
|
|
|
|
|
|
|
|
/* compute new coords for max in new screen */
|
|
|
|
c->m_geometry.x = (c->m_geometry.x - from.x) + to.x;
|
|
|
|
c->m_geometry.y = (c->m_geometry.y - from.y) + to.y;
|
|
|
|
|
|
|
|
/* check that new coords are still in the screen */
|
|
|
|
if(c->m_geometry.width > to.width)
|
|
|
|
c->m_geometry.width = to.width;
|
|
|
|
if(c->m_geometry.height > to.height)
|
|
|
|
c->m_geometry.height = to.height;
|
|
|
|
if(c->m_geometry.x + c->m_geometry.width >= to.x + to.width)
|
|
|
|
c->m_geometry.x = to.x + to.width - c->m_geometry.width - 2 * c->border;
|
|
|
|
if(c->m_geometry.y + c->m_geometry.height >= to.y + to.height)
|
|
|
|
c->m_geometry.y = to.y + to.height - c->m_geometry.height - 2 * c->border;
|
|
|
|
|
|
|
|
client_resize(c, new_geometry, false);
|
|
|
|
}
|
|
|
|
/* if floating, move to this new coords */
|
2008-09-03 14:59:18 +02:00
|
|
|
else if(client_isfloating(c))
|
2008-06-09 21:43:09 +02:00
|
|
|
client_resize(c, new_f_geometry, false);
|
|
|
|
/* otherwise just register them */
|
|
|
|
else
|
|
|
|
{
|
|
|
|
c->f_geometry = new_f_geometry;
|
2008-08-21 15:36:54 +02:00
|
|
|
if(wasvisible)
|
|
|
|
globalconf.screens[old_screen].need_arrange = true;
|
|
|
|
client_need_arrange(c);
|
2008-06-09 21:43:09 +02:00
|
|
|
}
|
2007-10-25 13:57:02 +02:00
|
|
|
}
|
2007-09-28 11:30:51 +02:00
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
int screen = luaL_checknumber(L, 2) - 1;
|
|
|
|
|
|
|
|
luaA_checkscreen(screen);
|
|
|
|
lua_pushlightuserdata(L, &globalconf.screens[screen]);
|
|
|
|
return luaA_settype(L, "screen");
|
|
|
|
}
|
|
|
|
|
2008-08-13 18:12:26 +02:00
|
|
|
/** Get or set screen tags.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
|
|
|
* \lparam None or a table of tags to set to the screen.
|
|
|
|
* The table must contains at least one tag.
|
|
|
|
* \return A table with all screen tags.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_screen_tags(lua_State *L)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
screen_t *s = lua_touserdata(L, 1);
|
|
|
|
|
|
|
|
if(!s)
|
|
|
|
luaL_typerror(L, 1, "screen");
|
|
|
|
|
|
|
|
if(lua_gettop(L) == 2)
|
|
|
|
{
|
|
|
|
tag_t **tag;
|
|
|
|
|
|
|
|
luaA_checktable(L, 2);
|
|
|
|
|
|
|
|
/* remove current tags */
|
|
|
|
for(i = 0; i < s->tags.len; i++)
|
|
|
|
s->tags.tab[i]->screen = SCREEN_UNDEF;
|
|
|
|
|
|
|
|
tag_array_wipe(&s->tags);
|
|
|
|
tag_array_init(&s->tags);
|
|
|
|
|
|
|
|
s->need_arrange = true;
|
|
|
|
|
|
|
|
/* push new tags */
|
|
|
|
lua_pushnil(L);
|
|
|
|
while(lua_next(L, 2))
|
|
|
|
{
|
|
|
|
tag = luaA_checkudata(L, -1, "tag");
|
|
|
|
tag_append_to_screen(*tag, s);
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check there's at least one tag! */
|
|
|
|
if(!s->tags.len)
|
|
|
|
{
|
|
|
|
tag_append_to_screen(tag_new("default", sizeof("default") - 1, layout_tile, 0.5, 1, 0), s);
|
|
|
|
luaL_error(L, "no tag were added on screen %d, taking last resort action and adding default tag\n", s->index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lua_newtable(L);
|
|
|
|
for(i = 0; i < s->tags.len; i++)
|
|
|
|
{
|
|
|
|
luaA_tag_userdata_new(L, s->tags.tab[i]);
|
|
|
|
lua_rawseti(L, -2, i + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
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.
|
2008-09-24 12:13:21 +02:00
|
|
|
* \lfield workarea The screen workarea, i.e. without wiboxes.
|
2008-08-11 17:14:02 +02:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_screen_index(lua_State *L)
|
|
|
|
{
|
|
|
|
size_t len;
|
2008-08-13 18:12:26 +02:00
|
|
|
const char *buf;
|
2008-08-11 17:14:02 +02:00
|
|
|
screen_t *s;
|
|
|
|
|
2008-08-13 18:12:26 +02:00
|
|
|
if(luaA_usemetatable(L, 1, 2))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
buf = luaL_checklstring(L, 2, &len);
|
2008-08-11 17:14:02 +02:00
|
|
|
s = lua_touserdata(L, 1);
|
|
|
|
|
|
|
|
switch(a_tokenize(buf, len))
|
|
|
|
{
|
|
|
|
case A_TK_COORDS:
|
2008-11-05 11:44:00 +01:00
|
|
|
deprecate(L);
|
2008-10-21 15:31:52 +02:00
|
|
|
case A_TK_GEOMETRY:
|
2008-09-22 19:11:39 +02:00
|
|
|
luaA_pusharea(L, s->geometry);
|
2008-08-11 17:14:02 +02:00
|
|
|
break;
|
|
|
|
case A_TK_WORKAREA:
|
2008-09-24 12:13:21 +02:00
|
|
|
luaA_pusharea(L, screen_area_get(s->index, &s->wiboxes, &s->padding, true));
|
2008-08-11 17:14:02 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-08-14 18:13:45 +02:00
|
|
|
/** Set or get the screen padding.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
2008-08-25 17:59:32 +02:00
|
|
|
* \lparam None or a table with new padding values.
|
|
|
|
* \lreturn The screen padding. A table with top, right, left and bottom
|
2008-08-14 18:13:45 +02:00
|
|
|
* keys and values in pixel.
|
|
|
|
*/
|
2008-08-11 17:14:02 +02:00
|
|
|
static int
|
2008-08-14 18:13:45 +02:00
|
|
|
luaA_screen_padding(lua_State *L)
|
2008-08-11 17:14:02 +02:00
|
|
|
{
|
2008-08-14 18:24:31 +02:00
|
|
|
screen_t *s = lua_touserdata(L, 1);
|
2008-08-11 17:14:02 +02:00
|
|
|
|
2008-08-14 18:24:31 +02:00
|
|
|
if(!s)
|
|
|
|
luaL_typerror(L, 1, "screen");
|
2008-08-11 17:14:02 +02:00
|
|
|
|
2008-08-14 18:13:45 +02:00
|
|
|
if(lua_gettop(L) == 2)
|
2008-08-11 17:14:02 +02:00
|
|
|
{
|
2008-08-14 18:13:45 +02:00
|
|
|
luaA_checktable(L, 2);
|
2008-08-14 18:24:31 +02:00
|
|
|
|
2008-08-11 17:14:02 +02:00
|
|
|
s->padding.right = luaA_getopt_number(L, 2, "right", 0);
|
|
|
|
s->padding.left = luaA_getopt_number(L, 2, "left", 0);
|
|
|
|
s->padding.top = luaA_getopt_number(L, 2, "top", 0);
|
|
|
|
s->padding.bottom = luaA_getopt_number(L, 2, "bottom", 0);
|
|
|
|
|
2008-08-14 18:24:31 +02:00
|
|
|
s->need_arrange = true;
|
|
|
|
|
2008-09-24 12:13:21 +02:00
|
|
|
/* All the wiboxes repositioned */
|
|
|
|
for(int i = 0; i < s->wiboxes.len; i++)
|
|
|
|
wibox_position_update(s->wiboxes.tab[i]);
|
2008-08-14 18:24:31 +02:00
|
|
|
|
2008-08-11 17:14:02 +02:00
|
|
|
ewmh_update_workarea(screen_virttophys(s->index));
|
2008-08-14 18:13:45 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lua_newtable(L);
|
|
|
|
lua_pushnumber(L, s->padding.right);
|
|
|
|
lua_setfield(L, -2, "right");
|
|
|
|
lua_pushnumber(L, s->padding.left);
|
|
|
|
lua_setfield(L, -2, "left");
|
|
|
|
lua_pushnumber(L, s->padding.top);
|
|
|
|
lua_setfield(L, -2, "top");
|
|
|
|
lua_pushnumber(L, s->padding.bottom);
|
|
|
|
lua_setfield(L, -2, "bottom");
|
2008-08-11 17:14:02 +02:00
|
|
|
}
|
|
|
|
|
2008-08-14 18:13:45 +02:00
|
|
|
return 1;
|
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)
|
|
|
|
{
|
2008-09-18 16:03:05 +02:00
|
|
|
lua_pushnumber(L, globalconf.nscreen);
|
2008-08-11 17:14:02 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct luaL_reg awesome_screen_methods[] =
|
|
|
|
{
|
|
|
|
{ "count", luaA_screen_count },
|
|
|
|
{ "__index", luaA_screen_module_index },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct luaL_reg awesome_screen_meta[] =
|
|
|
|
{
|
2008-08-13 18:12:26 +02:00
|
|
|
{ "tags", luaA_screen_tags },
|
2008-08-14 18:13:45 +02:00
|
|
|
{ "padding", luaA_screen_padding },
|
2008-08-11 17:14:02 +02:00
|
|
|
{ "__index", luaA_screen_index },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|