awesome/screen.c

308 lines
8.2 KiB
C
Raw Normal View History

/*
* screen.c - screen management
*
* 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.
*
*/
#include "util.h"
#include "screen.h"
#include "tag.h"
#include "layout.h"
2007-12-15 10:19:33 +01:00
#include "focus.h"
#include "statusbar.h"
extern AwesomeConf globalconf;
/** Get screens info
2007-09-15 23:09:02 +02:00
* \param screen Screen number
* \param statusbar statusbar
* \param padding Padding
2007-12-30 15:11:37 +01:00
* \return Area
*/
Area
get_screen_area(int screen, Statusbar *statusbar, Padding *padding)
{
int screen_number = 0;
XineramaScreenInfo *si;
Area area;
2007-12-30 21:00:34 +01:00
Statusbar *sb;
2007-12-23 09:56:41 +01:00
if(XineramaIsActive(globalconf.display))
{
si = XineramaQueryScreens(globalconf.display, &screen_number);
if (screen_number < screen)
eprint("Info request for unknown screen.");
area.x = si[screen].x_org;
area.y = si[screen].y_org;
area.width = si[screen].width;
area.height = si[screen].height;
XFree(si);
2007-12-23 09:56:41 +01:00
}
else
{
/* emulate Xinerama info but only fill the screen we want */
area.x = 0;
area.y = 0;
area.width = DisplayWidth(globalconf.display, screen);
area.height = DisplayHeight(globalconf.display, screen);
}
2007-11-27 23:03:55 +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;
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)
{
case BarTop:
2007-12-30 21:00:34 +01:00
area.y += sb->height;
case BarBot:
2007-12-30 21:00:34 +01:00
area.height -= sb->height;
break;
case BarLeft:
2007-12-30 21:00:34 +01:00
area.x += sb->height;
case BarRight:
2007-12-30 21:00:34 +01:00
area.width -= sb->height;
break;
}
return area;
}
/** Get display info
* \param screen Screen number
* \param statusbar the statusbar
* \param padding Padding
* \return Area
*/
Area
get_display_area(int screen, Statusbar *statusbar, Padding *padding)
{
Area area;
2007-12-30 21:00:34 +01:00
Statusbar *sb;
area.x = 0;
2007-12-30 21:00:34 +01:00
area.y = 0;
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)
{
area.y += sb->position == BarTop ? sb->height : 0;
area.height -= (sb->position == BarTop || sb->position == BarBot) ? sb->height : 0;
2007-12-30 21:00:34 +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-28 11:41:03 +02:00
/** Return the Xinerama screen number where the coordinates belongs to
* \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
*/
int
get_screen_bycoord(int x, int y)
{
2007-10-01 20:58:29 +02:00
int i;
Area area;
/* don't waste our time */
if(!XineramaIsActive(globalconf.display))
return DefaultScreen(globalconf.display);
2007-12-23 09:56:41 +01:00
for(i = 0; i < get_screen_count(); i++)
{
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)))
return i;
}
return DefaultScreen(globalconf.display);
}
/** Return the actual screen count
* \return the number of screen available
*/
int
get_screen_count(void)
{
int screen_number;
if(XineramaIsActive(globalconf.display))
XineramaQueryScreens(globalconf.display, &screen_number);
else
return ScreenCount(globalconf.display);
return screen_number;
}
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
get_phys_screen(int screen)
2007-09-28 11:36:39 +02: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
* \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
*/
void
move_client_to_screen(Client *c, int new_screen, Bool doresize)
{
Tag *tag;
int old_screen = c->screen;
Area from, to;
2007-11-15 15:44:16 +01:00
for(tag = globalconf.screens[old_screen].tags; tag; tag = tag->next)
untag_client(c, tag);
c->screen = new_screen;
/* tag client with new screen tags */
2007-12-27 14:02:27 +01:00
tag_client_with_current_selected(c);
if(doresize && old_screen != c->screen)
{
to = get_screen_area(c->screen, NULL, NULL);
from = get_screen_area(old_screen, NULL, NULL);
/* compute new coords in new screen */
c->rx = (c->rx - from.x) + to.x;
c->ry = (c->ry - from.y) + to.y;
/* check that new coords are still in the screen */
if(c->rw > to.width)
c->rw = to.width;
if(c->rh > to.height)
c->rh = to.height;
if(c->rx + c->rw >= to.x + to.width)
c->rx = to.x + to.width - c->rw - 2 * c->border;
if(c->ry + c->rh >= to.y + to.height)
c->ry = to.y + to.height - c->rh - 2 * c->border;
client_resize(c, c->rx, c->ry, c->rw, c->rh, True, False);
}
focus(c, True, c->screen);
2007-11-10 10:03:53 +01:00
/* redraw statusbar on all screens */
2007-12-30 21:00:34 +01:00
statusbar_draw_all(old_screen);
statusbar_draw_all(new_screen);
}
/** Move mouse pointer to x_org and y_xorg of specified screen
* \param screen screen number
*/
static void
move_mouse_pointer_to_screen(int screen)
{
if(XineramaIsActive(globalconf.display))
{
Area area = get_screen_area(screen, NULL, NULL);
XWarpPointer(globalconf.display,
None,
DefaultRootWindow(globalconf.display),
0, 0, 0, 0, area.x, area.y);
}
else
XWarpPointer(globalconf.display,
None,
RootWindow(globalconf.display, screen),
0, 0, 0, 0, 0, 0);
}
/** Switch focus to a specified screen
* \param screen Screen ID
* \param arg screen number
* \ingroup ui_callback
*/
void
uicb_screen_focus(int screen, char *arg)
{
int new_screen, numscreens = get_screen_count();
if(arg)
new_screen = compute_new_value_from_arg(arg, screen);
else
new_screen = screen + 1;
if (new_screen < 0)
new_screen = numscreens - 1;
if (new_screen > (numscreens - 1))
new_screen = 0;
2007-12-27 19:57:46 +01:00
focus(focus_get_current_client(new_screen), True, new_screen);
move_mouse_pointer_to_screen(new_screen);
}
2007-09-27 21:51:05 +02:00
/** Move client to a virtual screen (if Xinerama is active)
* \param screen Screen ID
* \param arg screen number
* \ingroup ui_callback
*/
2007-09-27 21:51:05 +02:00
void
uicb_client_movetoscreen(int screen __attribute__ ((unused)), char *arg)
2007-09-27 21:51:05 +02:00
{
int new_screen, prev_screen;
Client *sel = globalconf.focus->client;
2007-09-27 21:51:05 +02:00
if(!sel || !XineramaIsActive(globalconf.display))
2007-09-27 21:51:05 +02:00
return;
if(arg)
new_screen = compute_new_value_from_arg(arg, sel->screen);
2007-09-27 21:51:05 +02:00
else
new_screen = sel->screen + 1;
2007-10-05 16:58:28 +02:00
if(new_screen >= get_screen_count())
2007-10-05 16:58:28 +02:00
new_screen = 0;
else if(new_screen < 0)
new_screen = get_screen_count() - 1;
2007-09-27 21:51:05 +02:00
prev_screen = sel->screen;
move_client_to_screen(sel, new_screen, True);
move_mouse_pointer_to_screen(new_screen);
arrange(prev_screen);
arrange(new_screen);
2007-09-27 21:51:05 +02:00
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80