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
|
|
|
*/
|
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
#include "screen.h"
|
2007-09-24 14:21:49 +02:00
|
|
|
#include "tag.h"
|
|
|
|
#include "layout.h"
|
2007-10-25 13:57:02 +02:00
|
|
|
#include "statusbar.h"
|
2007-09-24 14:21:49 +02:00
|
|
|
|
2007-09-14 11:55:36 +02:00
|
|
|
/** Get screens info
|
|
|
|
* \param disp Display ref
|
2007-09-15 23:09:02 +02:00
|
|
|
* \param screen Screen number
|
2007-09-14 11:55:36 +02:00
|
|
|
* \param statusbar statusbar
|
|
|
|
* \return ScreenInfo struct array with all screens info
|
|
|
|
*/
|
2007-09-14 11:35:17 +02:00
|
|
|
ScreenInfo *
|
2007-11-27 23:03:55 +01:00
|
|
|
get_screen_info(Display *disp, int screen, Statusbar *statusbar, Padding *padding)
|
2007-09-14 11:35:17 +02:00
|
|
|
{
|
2007-10-01 20:58:29 +02:00
|
|
|
int i, screen_number = 0;
|
2007-09-14 11:35:17 +02:00
|
|
|
ScreenInfo *si;
|
|
|
|
|
|
|
|
if(XineramaIsActive(disp))
|
2007-10-01 20:58:29 +02:00
|
|
|
si = XineramaQueryScreens(disp, &screen_number);
|
2007-09-14 11:35:17 +02:00
|
|
|
else
|
|
|
|
{
|
2007-09-20 22:56:18 +02:00
|
|
|
/* emulate Xinerama info but only fill the screen we want */
|
|
|
|
si = p_new(ScreenInfo, screen + 1);
|
|
|
|
si[screen].width = DisplayWidth(disp, screen);
|
|
|
|
si[screen].height = DisplayHeight(disp, screen);
|
|
|
|
si[screen].x_org = 0;
|
|
|
|
si[screen].y_org = 0;
|
2007-10-01 20:58:29 +02:00
|
|
|
screen_number = screen + 1;
|
2007-09-14 11:35:17 +02:00
|
|
|
}
|
|
|
|
|
2007-11-27 23:03:55 +01:00
|
|
|
/* make padding corrections */
|
|
|
|
if(padding)
|
|
|
|
{
|
2007-12-14 16:09:05 +01:00
|
|
|
si[screen].x_org += padding->left;
|
|
|
|
si[screen].y_org += padding->top;
|
|
|
|
si[screen].width -= padding->left + padding->right;
|
|
|
|
si[screen].height -= padding->top + padding->bottom;
|
2007-11-27 23:03:55 +01:00
|
|
|
}
|
|
|
|
|
2007-09-27 15:07:07 +02:00
|
|
|
if(statusbar)
|
2007-10-01 20:58:29 +02:00
|
|
|
for(i = 0; i < screen_number; i++)
|
2007-11-11 18:59:11 +01:00
|
|
|
switch(statusbar->position)
|
|
|
|
{
|
|
|
|
case BarTop:
|
2007-09-27 15:07:07 +02:00
|
|
|
si[i].y_org += statusbar->height;
|
2007-11-11 18:59:11 +01:00
|
|
|
case BarBot:
|
|
|
|
si[i].height -= statusbar->height;
|
|
|
|
break;
|
|
|
|
case BarLeft:
|
|
|
|
si[i].x_org += statusbar->height;
|
|
|
|
case BarRight:
|
|
|
|
si[i].width -= statusbar->height;
|
|
|
|
break;
|
|
|
|
}
|
2007-10-03 17:26:14 +02:00
|
|
|
|
2007-09-14 11:35:17 +02:00
|
|
|
return si;
|
|
|
|
}
|
2007-09-14 11:55:36 +02:00
|
|
|
|
|
|
|
/** Get display info
|
|
|
|
* \param disp Display ref
|
2007-09-15 23:04:04 +02:00
|
|
|
* \param screen Screen number
|
|
|
|
* \param statusbar the statusbar
|
2007-09-14 11:55:36 +02:00
|
|
|
* \return ScreenInfo struct pointer with all display info
|
|
|
|
*/
|
|
|
|
ScreenInfo *
|
2007-11-27 23:03:55 +01:00
|
|
|
get_display_info(Display *disp, int screen, Statusbar *statusbar, Padding *padding)
|
2007-09-14 11:55:36 +02:00
|
|
|
{
|
|
|
|
ScreenInfo *si;
|
|
|
|
|
|
|
|
si = p_new(ScreenInfo, 1);
|
|
|
|
|
|
|
|
si->x_org = 0;
|
2007-09-27 20:11:31 +02:00
|
|
|
si->y_org = statusbar && statusbar->position == BarTop ? statusbar->height : 0;
|
2007-09-15 23:04:04 +02:00
|
|
|
si->width = DisplayWidth(disp, screen);
|
|
|
|
si->height = DisplayHeight(disp, screen) -
|
2007-09-27 20:11:31 +02:00
|
|
|
(statusbar && (statusbar->position == BarTop || statusbar->position == BarBot) ? statusbar->height : 0);
|
2007-09-14 11:55:36 +02:00
|
|
|
|
2007-11-27 23:03:55 +01:00
|
|
|
/* make padding corrections */
|
|
|
|
if(padding)
|
|
|
|
{
|
|
|
|
si[screen].x_org+=padding->left;
|
|
|
|
si[screen].y_org+=padding->top;
|
|
|
|
si[screen].width-=padding->left+padding->right;
|
|
|
|
si[screen].height-=padding->top+padding->bottom;
|
|
|
|
}
|
|
|
|
|
2007-09-14 11:55:36 +02:00
|
|
|
return si;
|
|
|
|
}
|
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 disp Display ref
|
|
|
|
* \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
|
|
|
|
get_screen_bycoord(Display *disp, int x, int y)
|
|
|
|
{
|
|
|
|
ScreenInfo *si;
|
2007-10-01 20:58:29 +02:00
|
|
|
int i;
|
2007-09-27 15:07:07 +02:00
|
|
|
|
|
|
|
/* don't waste our time */
|
|
|
|
if(!XineramaIsActive(disp))
|
2007-09-28 11:41:03 +02:00
|
|
|
return DefaultScreen(disp);
|
2007-09-27 15:07:07 +02:00
|
|
|
|
2007-11-27 23:03:55 +01:00
|
|
|
si = get_screen_info(disp, 0, NULL, NULL);
|
2007-09-27 15:07:07 +02:00
|
|
|
|
2007-10-01 20:58:29 +02:00
|
|
|
for(i = 0; i < get_screen_count(disp); i++)
|
2007-11-10 17:59:33 +01:00
|
|
|
if((x < 0 || (x >= si[i].x_org && x < si[i].x_org + si[i].width))
|
2007-11-15 13:25:59 +01:00
|
|
|
&& (y < 0 || (y >= si[i].y_org && y < si[i].y_org + si[i].height)))
|
2007-09-27 15:07:07 +02:00
|
|
|
{
|
2007-10-11 23:44:35 +02:00
|
|
|
p_delete(&si);
|
2007-09-27 15:07:07 +02:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2007-10-11 23:44:35 +02:00
|
|
|
p_delete(&si);
|
2007-09-28 11:41:03 +02:00
|
|
|
return DefaultScreen(disp);
|
2007-09-27 15:07:07 +02:00
|
|
|
}
|
|
|
|
|
2007-09-27 15:29:14 +02:00
|
|
|
/** Return the actual screen count
|
|
|
|
* \param disp Display ref
|
|
|
|
* \return the number of screen available
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
get_screen_count(Display *disp)
|
|
|
|
{
|
|
|
|
int screen_number;
|
|
|
|
|
|
|
|
if(XineramaIsActive(disp))
|
|
|
|
XineramaQueryScreens(disp, &screen_number);
|
|
|
|
else
|
|
|
|
return ScreenCount(disp);
|
|
|
|
|
|
|
|
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 disp Display ref
|
|
|
|
* \param screen the logical screen
|
|
|
|
* \return the X screen
|
|
|
|
*/
|
|
|
|
int
|
2007-10-01 15:23:05 +02:00
|
|
|
get_phys_screen(Display *disp, int screen)
|
2007-09-28 11:36:39 +02:00
|
|
|
{
|
|
|
|
if(XineramaIsActive(disp))
|
|
|
|
return DefaultScreen(disp);
|
|
|
|
return screen;
|
|
|
|
}
|
|
|
|
|
2007-10-03 00:20:34 +02:00
|
|
|
/** Move a client to a virtual screen
|
|
|
|
* \param c the client
|
|
|
|
* \param acf_new the awesome_config for the new screen
|
|
|
|
* \param doresize set to True if we also move the client to the new x_org and
|
|
|
|
* y_org of the new screen
|
|
|
|
*/
|
2007-09-28 11:30:51 +02:00
|
|
|
void
|
2007-12-11 20:56:51 +01:00
|
|
|
move_client_to_screen(Client *c, awesome_config *awesomeconf, 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-11-15 15:44:16 +01:00
|
|
|
|
2007-12-14 19:02:38 +01:00
|
|
|
for(tag = awesomeconf->screens[old_screen].tags; tag; tag = tag->next)
|
|
|
|
untag_client(&awesomeconf->screens[old_screen].tclink, c, tag);
|
2007-09-28 11:30:51 +02:00
|
|
|
|
2007-11-15 14:49:08 +01:00
|
|
|
/* tag client with new screen tags */
|
2007-12-13 10:46:32 +01:00
|
|
|
tag_client_with_current_selected(c, &awesomeconf->screens[new_screen]);
|
2007-11-15 14:49:08 +01:00
|
|
|
|
2007-12-11 20:56:51 +01:00
|
|
|
c->screen = new_screen;
|
2007-10-25 13:57:02 +02:00
|
|
|
|
2007-10-27 22:54:34 +02:00
|
|
|
if(doresize && old_screen != c->screen)
|
2007-10-25 13:57:02 +02:00
|
|
|
{
|
|
|
|
ScreenInfo *si, *si_old;
|
|
|
|
|
2007-11-27 23:03:55 +01:00
|
|
|
si = get_screen_info(c->display, c->screen, NULL, NULL);
|
|
|
|
si_old = get_screen_info(c->display, old_screen, NULL, NULL);
|
2007-10-25 13:57:02 +02:00
|
|
|
|
|
|
|
/* compute new coords in new screen */
|
2007-10-25 16:56:01 +02:00
|
|
|
c->rx = (c->rx - si_old[old_screen].x_org) + si[c->screen].x_org;
|
|
|
|
c->ry = (c->ry - si_old[old_screen].y_org) + si[c->screen].y_org;
|
2007-10-25 13:57:02 +02:00
|
|
|
/* check that new coords are still in the screen */
|
|
|
|
if(c->rw > si[c->screen].width)
|
|
|
|
c->rw = si[c->screen].width;
|
|
|
|
if(c->rh > si[c->screen].height)
|
|
|
|
c->rh = si[c->screen].height;
|
2007-10-29 12:44:22 +01:00
|
|
|
if(c->rx + c->rw >= si[c->screen].x_org + si[c->screen].width)
|
|
|
|
c->rx = si[c->screen].x_org + si[c->screen].width - c->rw - 2 * c->border;
|
|
|
|
if(c->ry + c->rh >= si[c->screen].y_org + si[c->screen].height)
|
|
|
|
c->ry = si[c->screen].y_org + si[c->screen].height - c->rh - 2 * c->border;
|
2007-10-25 13:57:02 +02:00
|
|
|
|
2007-12-11 20:56:51 +01:00
|
|
|
client_resize(c, c->rx, c->ry, c->rw, c->rh, awesomeconf, True, False);
|
2007-10-25 13:57:02 +02:00
|
|
|
|
|
|
|
p_delete(&si);
|
|
|
|
p_delete(&si_old);
|
|
|
|
}
|
2007-10-25 16:56:01 +02:00
|
|
|
|
2007-12-11 20:56:51 +01:00
|
|
|
focus(c, True, awesomeconf, c->screen);
|
2007-11-10 10:03:53 +01:00
|
|
|
|
2007-10-25 13:57:02 +02:00
|
|
|
/* redraw statusbar on all screens */
|
2007-12-14 20:10:52 +01:00
|
|
|
statusbar_draw(awesomeconf, old_screen);
|
|
|
|
statusbar_draw(awesomeconf, new_screen);
|
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 disp display ref
|
|
|
|
* \param screen screen number
|
|
|
|
*/
|
2007-09-27 17:57:57 +02:00
|
|
|
static void
|
|
|
|
move_mouse_pointer_to_screen(Display *disp, int screen)
|
|
|
|
{
|
|
|
|
if(XineramaIsActive(disp))
|
|
|
|
{
|
2007-11-27 23:03:55 +01:00
|
|
|
ScreenInfo *si = get_screen_info(disp, screen, NULL, NULL);
|
2007-09-27 17:57:57 +02:00
|
|
|
XWarpPointer(disp, None, DefaultRootWindow(disp), 0, 0, 0, 0, si[screen].x_org, si[screen].y_org);
|
2007-10-11 23:44:35 +02:00
|
|
|
p_delete(&si);
|
2007-09-27 17:57:57 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
XWarpPointer(disp, None, RootWindow(disp, screen), 0, 0, 0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
2007-12-13 13:59:46 +01:00
|
|
|
|
|
|
|
/** Switch focus to a specified screen
|
|
|
|
* \param awesomeconf awesome config ref
|
|
|
|
* \param arg screen number
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
2007-09-24 14:21:49 +02:00
|
|
|
void
|
2007-12-13 13:59:46 +01:00
|
|
|
uicb_screen_focus(awesome_config *awesomeconf, int screen, const char *arg)
|
2007-09-24 14:21:49 +02:00
|
|
|
{
|
2007-12-13 13:59:46 +01:00
|
|
|
int new_screen, numscreens = get_screen_count(awesomeconf->display);
|
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)
|
|
|
|
new_screen = numscreens - 1;
|
|
|
|
if (new_screen > (numscreens - 1))
|
|
|
|
new_screen = 0;
|
|
|
|
|
2007-12-14 21:51:54 +01:00
|
|
|
focus(awesomeconf->focus->client, True, awesomeconf, new_screen);
|
2007-09-24 14:21:49 +02:00
|
|
|
|
2007-12-13 13:59:46 +01:00
|
|
|
move_mouse_pointer_to_screen(awesomeconf->display, 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)
|
|
|
|
* \param awesomeconf awesome config
|
|
|
|
* \param arg screen number
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
2007-09-27 21:51:05 +02:00
|
|
|
void
|
2007-11-14 18:16:43 +01:00
|
|
|
uicb_client_movetoscreen(awesome_config * awesomeconf,
|
2007-12-14 21:51:54 +01:00
|
|
|
int screen __attribute__ ((unused)),
|
2007-11-14 18:16:43 +01:00
|
|
|
const 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-14 21:51:54 +01:00
|
|
|
Client *sel = awesomeconf->focus->client;
|
2007-09-27 21:51:05 +02:00
|
|
|
|
2007-10-26 23:19:13 +02:00
|
|
|
if(!sel || !XineramaIsActive(awesomeconf->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
|
|
|
|
2007-10-11 23:32:29 +02:00
|
|
|
if(new_screen >= get_screen_count(awesomeconf->display))
|
2007-10-05 16:58:28 +02:00
|
|
|
new_screen = 0;
|
|
|
|
else if(new_screen < 0)
|
2007-10-11 23:32:29 +02:00
|
|
|
new_screen = get_screen_count(awesomeconf->display) - 1;
|
2007-09-27 21:51:05 +02:00
|
|
|
|
2007-10-26 23:19:13 +02:00
|
|
|
prev_screen = sel->screen;
|
2007-12-11 20:56:51 +01:00
|
|
|
move_client_to_screen(sel, awesomeconf, new_screen, True);
|
2007-10-11 23:32:29 +02:00
|
|
|
move_mouse_pointer_to_screen(awesomeconf->display, new_screen);
|
2007-12-11 20:56:51 +01:00
|
|
|
arrange(awesomeconf, prev_screen);
|
|
|
|
arrange(awesomeconf, new_screen);
|
2007-09-27 21:51:05 +02:00
|
|
|
}
|
2007-10-15 13:56:24 +02:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|