mutter/src/screen.c

87 lines
2.4 KiB
C
Raw Normal View History

2001-05-30 11:36:31 -04:00
/* Metacity X screen handler */
/*
* Copyright (C) 2001 Havoc Pennington
*
* 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., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
#include "screen.h"
#include "util.h"
2001-05-30 23:30:58 -04:00
#include "errors.h"
2001-05-30 11:36:31 -04:00
MetaScreen*
meta_screen_new (MetaDisplay *display,
int number)
{
MetaScreen *screen;
2001-05-30 23:30:58 -04:00
Window xroot;
Display *xdisplay;
2001-05-30 11:36:31 -04:00
2001-05-30 23:30:58 -04:00
/* Only display->name, display->xdisplay, and display->error_traps
* can really be used in this function, since normally screens are
* created from the MetaDisplay constructor
*/
xdisplay = display->xdisplay;
meta_verbose ("Trying screen %d on display '%s'\n",
number, display->name);
xroot = RootWindow (xdisplay, number);
/* FVWM checks for None here, I don't know if this
* ever actually happens
*/
if (xroot == None)
{
meta_warning (_("Screen %d on display '%s' is invalid\n"),
number, display->name);
return NULL;
}
/* Select our root window events */
meta_error_trap_push (display);
XSelectInput (xdisplay,
xroot,
SubstructureRedirectMask | SubstructureNotifyMask |
ColormapChangeMask | PropertyChangeMask |
LeaveWindowMask | EnterWindowMask |
ButtonPressMask | ButtonReleaseMask);
if (meta_error_trap_pop (display) != Success)
{
meta_warning (_("Screen %d on display '%s' already has a window manager\n"),
number, display->name);
return NULL;
}
2001-05-30 11:36:31 -04:00
screen = g_new (MetaScreen, 1);
2001-05-30 23:30:58 -04:00
screen->display = NULL;
2001-05-30 11:36:31 -04:00
screen->number = number;
2001-05-30 23:30:58 -04:00
screen->xscreen = ScreenOfDisplay (xdisplay, number);
screen->xroot = xroot;
2001-05-30 11:36:31 -04:00
return screen;
}
void
meta_screen_free (MetaScreen *screen)
{
g_free (screen);
}