awesome/screen.c

180 lines
5.1 KiB
C

/*
* screen.c - 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.
*
*/
#include <stdio.h>
#include <xcb/xcb.h>
#include <xcb/xcb_aux.h>
#include "screen.h"
#include "tag.h"
#include "focus.h"
#include "client.h"
#include "layouts/floating.h"
extern AwesomeConf globalconf;
/** Get screens info
* \param screen Screen number
* \param statusbar statusbar
* \param padding Padding
* \return area_t
*/
area_t
screen_get_area(int screen, statusbar_t *statusbar, Padding *padding)
{
area_t area = globalconf.screens_info->geometry[screen];
statusbar_t *sb;
/* 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;
}
for(sb = statusbar; sb; sb = sb->next)
switch(sb->position)
{
case Top:
area.y += sb->height;
case Bottom:
area.height -= sb->height;
break;
case Left:
area.x += sb->height;
case Right:
area.width -= sb->height;
break;
default:
break;
}
return area;
}
/** Get display info
* \param screen Screen number
* \param statusbar the statusbar
* \param padding Padding
* \return area_t
*/
area_t
get_display_area(int screen, statusbar_t *statusbar, Padding *padding)
{
area_t area = { 0, 0, 0, 0, NULL, NULL };
statusbar_t *sb;
xcb_screen_t *s = xcb_aux_get_screen(globalconf.connection, screen);
area.width = s->width_in_pixels;
area.height = s->height_in_pixels;
for(sb = statusbar; sb; sb = sb->next)
{
area.y += sb->position == Top ? sb->height : 0;
area.height -= (sb->position == Top || sb->position == Bottom) ? sb->height : 0;
}
/* 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;
}
/** 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
screen_virttophys(int screen)
{
if(globalconf.screens_info->xinerama_is_active)
return globalconf.default_screen;
return screen;
}
/** Move a client to a virtual screen
* \param c the client
* \param new_screen The destinatiuon screen
* \param doresize set to true if we also move the client to the new x and
* y of the new screen
*/
void
move_client_to_screen(client_t *c, int new_screen, bool doresize)
{
tag_t *tag;
int old_screen = c->screen;
area_t from, to;
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 */
tag_client_with_current_selected(c);
/* resize the windows if it's floating */
if(doresize && old_screen != c->screen)
{
area_t new_f_geometry;
new_f_geometry = c->f_geometry;
to = screen_get_area(c->screen, NULL, NULL);
from = screen_get_area(old_screen, NULL, NULL);
/* 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;
/* check that new coords are still in the screen */
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 floating, move to this new coords */
if(c->isfloating)
client_resize(c, new_f_geometry, false);
/* otherwise just register them */
else
{
c->f_geometry = new_f_geometry;
globalconf.screens[old_screen].need_arrange = true;
globalconf.screens[c->screen].need_arrange = true;
}
}
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80