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
|
|
|
*
|
|
|
|
* Copyright © 2007 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.
|
|
|
|
*
|
2007-09-14 11:35:17 +02:00
|
|
|
*/
|
|
|
|
|
2008-01-01 17:25:48 +01:00
|
|
|
#include <X11/extensions/Xinerama.h>
|
|
|
|
|
2007-09-14 11:35:17 +02:00
|
|
|
#include "screen.h"
|
2007-09-24 14:21:49 +02:00
|
|
|
#include "tag.h"
|
2007-12-15 10:19:33 +01:00
|
|
|
#include "focus.h"
|
2008-01-01 17:25:48 +01:00
|
|
|
#include "client.h"
|
2008-01-06 14:40:23 +01:00
|
|
|
#include "layouts/floating.h"
|
2008-01-21 18:14:59 +01:00
|
|
|
#include "common/util.h"
|
2007-09-24 14:21:49 +02:00
|
|
|
|
2007-12-19 04:46:44 +01:00
|
|
|
extern AwesomeConf globalconf;
|
2007-12-16 02:45:38 +01:00
|
|
|
|
2007-09-14 11:55:36 +02:00
|
|
|
/** Get screens info
|
2007-09-15 23:09:02 +02:00
|
|
|
* \param screen Screen number
|
2007-09-14 11:55:36 +02:00
|
|
|
* \param statusbar statusbar
|
2007-12-19 04:26:20 +01:00
|
|
|
* \param padding Padding
|
2007-12-30 15:11:37 +01:00
|
|
|
* \return Area
|
2007-09-14 11:55:36 +02:00
|
|
|
*/
|
2007-12-23 00:54:59 +01:00
|
|
|
Area
|
|
|
|
get_screen_area(int screen, Statusbar *statusbar, Padding *padding)
|
2007-09-14 11:35:17 +02:00
|
|
|
{
|
2007-12-23 00:54:59 +01:00
|
|
|
Area area;
|
2007-12-30 21:00:34 +01:00
|
|
|
Statusbar *sb;
|
2007-09-14 11:35:17 +02:00
|
|
|
|
2008-01-22 20:41:10 +01:00
|
|
|
area = globalconf.screens[screen].geometry;
|
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
|
|
|
}
|
|
|
|
|
2007-12-30 21:00:34 +01:00
|
|
|
for(sb = statusbar; sb; sb = sb->next)
|
|
|
|
switch(sb->position)
|
2007-12-23 00:54:59 +01:00
|
|
|
{
|
2008-01-04 19:12:07 +01:00
|
|
|
case Top:
|
2007-12-30 21:00:34 +01:00
|
|
|
area.y += sb->height;
|
2008-01-04 19:12:07 +01:00
|
|
|
case Bottom:
|
2007-12-30 21:00:34 +01:00
|
|
|
area.height -= sb->height;
|
2007-12-23 00:54:59 +01:00
|
|
|
break;
|
2008-01-04 19:12:07 +01:00
|
|
|
case Left:
|
2007-12-30 21:00:34 +01:00
|
|
|
area.x += sb->height;
|
2008-01-04 19:12:07 +01:00
|
|
|
case Right:
|
2007-12-30 21:00:34 +01:00
|
|
|
area.width -= sb->height;
|
2007-12-23 00:54:59 +01:00
|
|
|
break;
|
2008-01-04 19:12:07 +01:00
|
|
|
case Off:
|
|
|
|
break;
|
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
|
|
|
|
|
|
|
/** Get display info
|
2007-09-15 23:04:04 +02:00
|
|
|
* \param screen Screen number
|
|
|
|
* \param statusbar the statusbar
|
2007-12-19 04:26:20 +01:00
|
|
|
* \param padding Padding
|
2007-12-23 00:54:59 +01:00
|
|
|
* \return Area
|
2007-09-14 11:55:36 +02:00
|
|
|
*/
|
2007-12-23 00:54:59 +01:00
|
|
|
Area
|
|
|
|
get_display_area(int screen, Statusbar *statusbar, Padding *padding)
|
2007-09-14 11:55:36 +02:00
|
|
|
{
|
2007-12-23 00:54:59 +01:00
|
|
|
Area area;
|
2007-12-30 21:00:34 +01:00
|
|
|
Statusbar *sb;
|
2007-09-14 11:55:36 +02:00
|
|
|
|
2007-12-23 00:54:59 +01:00
|
|
|
area.x = 0;
|
2007-12-30 21:00:34 +01:00
|
|
|
area.y = 0;
|
2007-12-23 00:54:59 +01:00
|
|
|
area.width = DisplayWidth(globalconf.display, screen);
|
2007-12-30 21:00:34 +01:00
|
|
|
area.height = DisplayHeight(globalconf.display, screen);
|
|
|
|
|
|
|
|
for(sb = statusbar; sb; sb = sb->next)
|
|
|
|
{
|
2008-01-04 19:12:07 +01:00
|
|
|
area.y += sb->position == Top ? sb->height : 0;
|
|
|
|
area.height -= (sb->position == Top || sb->position == Bottom) ? sb->height : 0;
|
2007-12-30 21:00:34 +01: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:41:03 +02:00
|
|
|
/** Return the Xinerama screen number where the coordinates belongs to
|
2007-09-27 15:07:07 +02:00
|
|
|
* \param x x coordinate of the window
|
|
|
|
* \param y y coordinate of the window
|
2007-10-03 00:20:34 +02:00
|
|
|
* \return screen number or DefaultScreen of disp on no match
|
2007-09-27 15:07:07 +02:00
|
|
|
*/
|
|
|
|
int
|
2007-12-18 09:02:08 +01:00
|
|
|
get_screen_bycoord(int x, int y)
|
2007-09-27 15:07:07 +02:00
|
|
|
{
|
2007-10-01 20:58:29 +02:00
|
|
|
int i;
|
2007-12-23 00:54:59 +01:00
|
|
|
Area area;
|
2007-09-27 15:07:07 +02:00
|
|
|
|
|
|
|
/* don't waste our time */
|
2007-12-18 09:02:08 +01:00
|
|
|
if(!XineramaIsActive(globalconf.display))
|
|
|
|
return DefaultScreen(globalconf.display);
|
2007-09-27 15:07:07 +02:00
|
|
|
|
2008-01-11 13:39:48 +01:00
|
|
|
for(i = 0; i < globalconf.nscreens; i++)
|
2007-12-23 09:56:41 +01:00
|
|
|
{
|
2007-12-23 00:54:59 +01:00
|
|
|
area = get_screen_area(i, NULL, NULL);
|
|
|
|
if((x < 0 || (x >= area.x && x < area.x + area.width))
|
|
|
|
&& (y < 0 || (y >= area.y && y < area.y + area.height)))
|
2007-09-27 15:07:07 +02:00
|
|
|
return i;
|
2007-12-23 00:54:59 +01:00
|
|
|
}
|
2007-12-18 09:02:08 +01:00
|
|
|
return DefaultScreen(globalconf.display);
|
2007-09-27 15:07:07 +02:00
|
|
|
}
|
|
|
|
|
2008-01-22 20:41:10 +01:00
|
|
|
|
|
|
|
static inline Area
|
|
|
|
screen_xsi_to_area(XineramaScreenInfo si)
|
2007-09-27 15:29:14 +02:00
|
|
|
{
|
2008-01-22 20:41:10 +01:00
|
|
|
Area a;
|
|
|
|
|
|
|
|
a.x = si.x_org;
|
|
|
|
a.y = si.y_org;
|
|
|
|
a.width = si.width;
|
|
|
|
a.height = si.height;
|
|
|
|
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
screen_build_screens(void)
|
|
|
|
{
|
|
|
|
XineramaScreenInfo *si;
|
|
|
|
int xinerama_screen_number, screen, screen_to_test;
|
|
|
|
Bool drop;
|
2007-09-27 15:29:14 +02:00
|
|
|
|
2007-12-18 09:02:08 +01:00
|
|
|
if(XineramaIsActive(globalconf.display))
|
2008-01-22 20:41:10 +01:00
|
|
|
{
|
|
|
|
si = XineramaQueryScreens(globalconf.display, &xinerama_screen_number);
|
|
|
|
globalconf.screens = p_new(VirtScreen, xinerama_screen_number);
|
|
|
|
globalconf.nscreens = 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++)
|
|
|
|
{
|
|
|
|
drop = False;
|
|
|
|
for(screen_to_test = 0; screen_to_test < globalconf.nscreens; screen_to_test++)
|
|
|
|
if(si[screen].x_org == globalconf.screens[screen_to_test].geometry.x
|
|
|
|
&& si[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(si[screen].width, si[screen_to_test].width);
|
|
|
|
globalconf.screens[screen_to_test].geometry.height =
|
|
|
|
MAX(si[screen].height, si[screen_to_test].height);
|
|
|
|
}
|
|
|
|
if(!drop)
|
|
|
|
globalconf.screens[globalconf.nscreens++].geometry = screen_xsi_to_area(si[screen]);
|
|
|
|
}
|
|
|
|
|
2008-01-24 13:45:20 +01:00
|
|
|
/* realloc smaller if xinerama_screen_number != screen registered */
|
|
|
|
if(xinerama_screen_number != globalconf.nscreens)
|
|
|
|
{
|
|
|
|
VirtScreen *newscreens = p_new(VirtScreen, globalconf.nscreens);
|
|
|
|
memcpy(newscreens, globalconf.screens, globalconf.nscreens * sizeof(VirtScreen));
|
|
|
|
p_delete(&globalconf.screens);
|
|
|
|
globalconf.screens = newscreens;
|
|
|
|
}
|
|
|
|
|
2008-01-22 20:41:10 +01:00
|
|
|
XFree(si);
|
|
|
|
}
|
2007-09-27 15:29:14 +02:00
|
|
|
else
|
2008-01-22 20:41:10 +01:00
|
|
|
{
|
|
|
|
globalconf.nscreens = ScreenCount(globalconf.display);
|
|
|
|
globalconf.screens = p_new(VirtScreen, globalconf.nscreens);
|
|
|
|
for(screen = 0; screen < globalconf.nscreens; screen++)
|
|
|
|
{
|
|
|
|
globalconf.screens[screen].geometry.x = 0;
|
|
|
|
globalconf.screens[screen].geometry.y = 0;
|
|
|
|
globalconf.screens[screen].geometry.width =
|
|
|
|
DisplayWidth(globalconf.display, screen);
|
|
|
|
globalconf.screens[screen].geometry.height =
|
|
|
|
DisplayHeight(globalconf.display, screen);
|
|
|
|
}
|
|
|
|
}
|
2007-09-27 15:29:14 +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.
|
|
|
|
* \param screen the logical screen
|
|
|
|
* \return the X screen
|
|
|
|
*/
|
|
|
|
int
|
2007-12-18 09:02:08 +01:00
|
|
|
get_phys_screen(int screen)
|
2007-09-28 11:36:39 +02:00
|
|
|
{
|
2007-12-18 09:02:08 +01:00
|
|
|
if(XineramaIsActive(globalconf.display))
|
|
|
|
return DefaultScreen(globalconf.display);
|
2007-09-28 11:36:39 +02:00
|
|
|
return screen;
|
|
|
|
}
|
|
|
|
|
2007-10-03 00:20:34 +02:00
|
|
|
/** Move a client to a virtual screen
|
|
|
|
* \param c the client
|
2007-12-19 04:26:20 +01:00
|
|
|
* \param new_screen The destinatiuon screen
|
2007-12-30 15:11:37 +01: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
|
2007-12-16 02:45:38 +01:00
|
|
|
move_client_to_screen(Client *c, int new_screen, Bool doresize)
|
2007-09-28 11:30:51 +02:00
|
|
|
{
|
2007-12-14 19:02:38 +01:00
|
|
|
Tag *tag;
|
|
|
|
int old_screen = c->screen;
|
2007-12-23 00:54:59 +01:00
|
|
|
Area from, to;
|
2007-11-15 15:44:16 +01:00
|
|
|
|
2007-12-16 02:45:38 +01:00
|
|
|
for(tag = globalconf.screens[old_screen].tags; tag; tag = tag->next)
|
2007-12-27 22:43:59 +01:00
|
|
|
untag_client(c, tag);
|
2007-09-28 11:30:51 +02:00
|
|
|
|
2007-12-27 16:29:45 +01:00
|
|
|
c->screen = new_screen;
|
|
|
|
|
2007-11-15 14:49:08 +01:00
|
|
|
/* tag client with new screen tags */
|
2007-12-27 14:02:27 +01:00
|
|
|
tag_client_with_current_selected(c);
|
2007-11-15 14:49:08 +01:00
|
|
|
|
2008-01-06 14:40:23 +01:00
|
|
|
/* resize the windows if it's floating */
|
2007-10-27 22:54:34 +02:00
|
|
|
if(doresize && old_screen != c->screen)
|
2007-10-25 13:57:02 +02:00
|
|
|
{
|
2008-01-11 13:27:58 +01:00
|
|
|
Area new_geometry, new_f_geometry;
|
|
|
|
new_f_geometry = c->f_geometry;
|
2008-01-06 14:40:23 +01:00
|
|
|
|
2007-12-23 00:54:59 +01:00
|
|
|
to = get_screen_area(c->screen, NULL, NULL);
|
|
|
|
from = get_screen_area(old_screen, NULL, NULL);
|
2008-01-11 13:27:58 +01:00
|
|
|
|
2007-10-25 13:57:02 +02:00
|
|
|
/* compute new coords in new screen */
|
2008-01-06 14:40:23 +01:00
|
|
|
new_f_geometry.x = (c->f_geometry.x - from.x) + to.x;
|
|
|
|
new_f_geometry.y = (c->f_geometry.y - from.y) + to.y;
|
|
|
|
|
2007-10-25 13:57:02 +02:00
|
|
|
/* check that new coords are still in the screen */
|
2008-01-06 14:40:23 +01: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;
|
|
|
|
|
|
|
|
if(c->ismax)
|
|
|
|
{
|
2008-01-11 13:27:58 +01: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;
|
|
|
|
|
2008-01-06 14:40:23 +01:00
|
|
|
/* 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;
|
2008-01-11 13:27:58 +01:00
|
|
|
|
|
|
|
client_resize(c, new_geometry, False);
|
2008-01-06 14:40:23 +01:00
|
|
|
}
|
2008-01-06 21:43:19 +01:00
|
|
|
/* if floating, move to this new coords */
|
2008-01-11 13:27:58 +01:00
|
|
|
else if(c->isfloating)
|
2008-01-06 21:43:19 +01:00
|
|
|
client_resize(c, new_f_geometry, False);
|
|
|
|
/* otherwise just register them */
|
|
|
|
else
|
|
|
|
{
|
|
|
|
c->f_geometry = new_f_geometry;
|
2008-01-17 19:17:53 +01:00
|
|
|
globalconf.screens[old_screen].need_arrange = True;
|
|
|
|
globalconf.screens[c->screen].need_arrange = True;
|
2008-01-06 21:43:19 +01:00
|
|
|
}
|
2007-10-25 13:57:02 +02:00
|
|
|
}
|
2007-09-28 11:30:51 +02:00
|
|
|
}
|
|
|
|
|
2007-10-03 00:32:00 +02:00
|
|
|
/** Move mouse pointer to x_org and y_xorg of specified screen
|
|
|
|
* \param screen screen number
|
|
|
|
*/
|
2007-09-27 17:57:57 +02:00
|
|
|
static void
|
2007-12-18 09:02:08 +01:00
|
|
|
move_mouse_pointer_to_screen(int screen)
|
2007-09-27 17:57:57 +02:00
|
|
|
{
|
2007-12-18 09:02:08 +01:00
|
|
|
if(XineramaIsActive(globalconf.display))
|
2007-09-27 17:57:57 +02:00
|
|
|
{
|
2007-12-23 00:54:59 +01:00
|
|
|
Area area = get_screen_area(screen, NULL, NULL);
|
|
|
|
XWarpPointer(globalconf.display,
|
|
|
|
None,
|
|
|
|
DefaultRootWindow(globalconf.display),
|
|
|
|
0, 0, 0, 0, area.x, area.y);
|
2007-09-27 17:57:57 +02:00
|
|
|
}
|
|
|
|
else
|
2007-12-23 00:54:59 +01:00
|
|
|
XWarpPointer(globalconf.display,
|
|
|
|
None,
|
|
|
|
RootWindow(globalconf.display, screen),
|
|
|
|
0, 0, 0, 0, 0, 0);
|
2007-09-27 17:57:57 +02:00
|
|
|
}
|
|
|
|
|
2007-12-13 13:59:46 +01:00
|
|
|
|
|
|
|
/** Switch focus to a specified screen
|
2007-12-19 04:26:20 +01:00
|
|
|
* \param screen Screen ID
|
2007-12-13 13:59:46 +01:00
|
|
|
* \param arg screen number
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
2007-09-24 14:21:49 +02:00
|
|
|
void
|
2007-12-17 01:17:54 +01:00
|
|
|
uicb_screen_focus(int screen, char *arg)
|
2007-09-24 14:21:49 +02:00
|
|
|
{
|
2008-01-11 13:39:48 +01:00
|
|
|
int new_screen;
|
2007-09-24 14:21:49 +02:00
|
|
|
|
2007-12-13 13:59:46 +01:00
|
|
|
if(arg)
|
|
|
|
new_screen = compute_new_value_from_arg(arg, screen);
|
|
|
|
else
|
|
|
|
new_screen = screen + 1;
|
2007-09-24 14:21:49 +02:00
|
|
|
|
2007-12-13 13:59:46 +01:00
|
|
|
if (new_screen < 0)
|
2008-01-11 13:39:48 +01:00
|
|
|
new_screen = globalconf.nscreens - 1;
|
|
|
|
if (new_screen > (globalconf.nscreens - 1))
|
2007-12-13 13:59:46 +01:00
|
|
|
new_screen = 0;
|
|
|
|
|
2007-12-27 19:57:46 +01:00
|
|
|
focus(focus_get_current_client(new_screen), True, new_screen);
|
2007-12-27 12:52:04 +01:00
|
|
|
|
2007-12-18 09:02:08 +01:00
|
|
|
move_mouse_pointer_to_screen(new_screen);
|
2007-09-24 14:21:49 +02:00
|
|
|
}
|
2007-09-27 21:51:05 +02:00
|
|
|
|
2007-10-03 00:22:29 +02:00
|
|
|
/** Move client to a virtual screen (if Xinerama is active)
|
2007-12-19 04:26:20 +01:00
|
|
|
* \param screen Screen ID
|
2007-10-03 00:22:29 +02:00
|
|
|
* \param arg screen number
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
2007-09-27 21:51:05 +02:00
|
|
|
void
|
2007-12-17 01:17:54 +01:00
|
|
|
uicb_client_movetoscreen(int screen __attribute__ ((unused)), char *arg)
|
2007-09-27 21:51:05 +02:00
|
|
|
{
|
2007-10-01 12:46:59 +02:00
|
|
|
int new_screen, prev_screen;
|
2007-12-16 02:45:38 +01:00
|
|
|
Client *sel = globalconf.focus->client;
|
2007-09-27 21:51:05 +02:00
|
|
|
|
2007-12-16 02:45:38 +01:00
|
|
|
if(!sel || !XineramaIsActive(globalconf.display))
|
2007-09-27 21:51:05 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
if(arg)
|
2007-10-26 23:19:13 +02:00
|
|
|
new_screen = compute_new_value_from_arg(arg, sel->screen);
|
2007-09-27 21:51:05 +02:00
|
|
|
else
|
2007-10-26 23:19:13 +02:00
|
|
|
new_screen = sel->screen + 1;
|
2007-10-05 16:58:28 +02:00
|
|
|
|
2008-01-11 13:39:48 +01:00
|
|
|
if(new_screen >= globalconf.nscreens)
|
2007-10-05 16:58:28 +02:00
|
|
|
new_screen = 0;
|
|
|
|
else if(new_screen < 0)
|
2008-01-11 13:39:48 +01:00
|
|
|
new_screen = globalconf.nscreens - 1;
|
2007-09-27 21:51:05 +02:00
|
|
|
|
2007-10-26 23:19:13 +02:00
|
|
|
prev_screen = sel->screen;
|
2007-12-16 02:45:38 +01:00
|
|
|
move_client_to_screen(sel, new_screen, True);
|
2007-12-18 09:02:08 +01:00
|
|
|
move_mouse_pointer_to_screen(new_screen);
|
2008-01-07 18:54:45 +01:00
|
|
|
focus(sel, True, sel->screen);
|
2007-09-27 21:51:05 +02:00
|
|
|
}
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|