1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
/* $Xorg: XPanoramiX.c,v 1.4 2000/08/17 19:45:51 cpqbld Exp $ */
/*****************************************************************
Copyright (c) 1991, 1997 Digital Equipment Corporation, Maynard, Massachusetts.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES, INCLUDING,
BUT NOT LIMITED TO CONSEQUENTIAL OR INCIDENTAL DAMAGES, OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of Digital Equipment Corporation
shall not be used in advertising or otherwise to promote the sale, use or other
dealings in this Software without prior written authorization from Digital
Equipment Corporation.
******************************************************************/
/* $XFree86: xc/lib/Xinerama/Xinerama.c,v 1.2 2001/07/23 17:20:28 dawes Exp $ */
#include <X11/Xlibint.h>
#include <X11/extensions/Xinerama.h>
#include <stdio.h>
static int num_screens = -1;
static struct
{
int x_org, y_org;
int width, height;
} screen_info[ 10 ];
static void skipComments( FILE* f )
{
char tmp[ 4096 ];
for(;;)
{
int c;
for(;;)
{
c = fgetc( f );
if( c == EOF )
return;
if( c != ' ' && c != '\t' && c != '\n' )
break;
}
if( c != '#' )
{
ungetc( c, f );
return;
}
fgets( tmp, 4096, f );
}
}
static void initFakeXinerama()
{
const char* home;
char buf[ 4096 ];
FILE* f;
int i;
// re-init every time we're invoked, because we want to be able to test
// adding/removing screens
//if( num_screens != -1 )
// return;
num_screens = 0;
home = getenv( "HOME" );
if( home == NULL )
return;
sprintf( buf, "%s/.fakexinerama", home );
f = fopen( buf, "r" );
if( f == NULL )
return;
skipComments( f );
if( fscanf( f, "%d\n", &num_screens ) != 1 )
{
num_screens = 0;
fclose( f );
return;
}
if( num_screens >= 10 )
num_screens = 10;
for( i = 0;
i < num_screens;
++i )
{
skipComments( f );
if( fscanf( f, "%d %d %d %d\n", &screen_info[ i ].x_org, &screen_info[ i ].y_org,
&screen_info[ i ].width, &screen_info[ i ].height ) != 4 )
{
num_screens = 0;
fclose( f );
return;
}
}
fclose( f );
}
Bool XineramaQueryExtension (
Display *dpy,
int *event_base,
int *error_base
)
{
(void) dpy;
*event_base = 0;
*error_base = 0;
return True;
}
Status XineramaQueryVersion(
Display *dpy,
int *major,
int *minor
)
{
(void) dpy;
*major = 1;
*minor = 1;
return 1;
}
Bool XineramaIsActive(Display *dpy)
{
(void) dpy;
initFakeXinerama();
return num_screens != 0;
}
XineramaScreenInfo *
XineramaQueryScreens(
Display *dpy,
int *number
)
{
XineramaScreenInfo *scrnInfo = NULL;
initFakeXinerama();
if(num_screens) {
if((scrnInfo = Xmalloc(sizeof(XineramaScreenInfo) * num_screens))) {
int i;
for(i = 0; i < num_screens; i++) {
scrnInfo[i].screen_number = i;
scrnInfo[i].x_org = screen_info[ i ].x_org;
scrnInfo[i].y_org = screen_info[ i ].y_org;
scrnInfo[i].width = screen_info[ i ].width;
scrnInfo[i].height = screen_info[ i ].height;
}
*number = num_screens;
} else
;
}
return scrnInfo;
}
|