mirror of
https://github.com/brl/mutter.git
synced 2024-11-13 09:46:08 -05:00
54 lines
1.5 KiB
C
54 lines
1.5 KiB
C
|
/* 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"
|
||
|
|
||
|
MetaScreen*
|
||
|
meta_screen_new (MetaDisplay *display,
|
||
|
int number)
|
||
|
{
|
||
|
MetaScreen *screen;
|
||
|
|
||
|
meta_verbose ("Adding screen %d on display '%s'\n", number, display->name);
|
||
|
|
||
|
screen = g_new (MetaScreen, 1);
|
||
|
|
||
|
screen->display = display;
|
||
|
screen->number = number;
|
||
|
screen->xscreen = ScreenOfDisplay (display->xdisplay, number);
|
||
|
screen->xroot = RootWindow (display->xdisplay, number);
|
||
|
|
||
|
/* Select our root window events */
|
||
|
XSelectInput (display->xdisplay,
|
||
|
screen->xroot,
|
||
|
SubstructureNotifyMask);
|
||
|
|
||
|
return screen;
|
||
|
}
|
||
|
|
||
|
void
|
||
|
meta_screen_free (MetaScreen *screen)
|
||
|
{
|
||
|
g_free (screen);
|
||
|
}
|
||
|
|
||
|
|