2000-03-19 13:08:09 +01:00
|
|
|
/*
|
|
|
|
* X11DRV initialization code
|
2000-03-20 19:21:19 +01:00
|
|
|
*
|
|
|
|
* Copyright 1998 Patrik Stridvall
|
|
|
|
* Copyright 2000 Alexandre Julliard
|
2000-03-19 13:08:09 +01:00
|
|
|
*/
|
2000-03-20 19:21:19 +01:00
|
|
|
|
2000-05-24 01:38:32 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
2000-04-04 21:57:23 +02:00
|
|
|
#include <fcntl.h>
|
2000-03-19 13:08:09 +01:00
|
|
|
#include <stdio.h>
|
2000-03-20 19:21:19 +01:00
|
|
|
#include <stdlib.h>
|
2000-03-25 18:30:13 +01:00
|
|
|
#include <X11/cursorfont.h>
|
2000-03-20 19:21:19 +01:00
|
|
|
#include "ts_xlib.h"
|
2000-03-25 18:30:13 +01:00
|
|
|
#include "ts_xutil.h"
|
2000-07-29 01:04:54 +02:00
|
|
|
#include "ts_shape.h"
|
2000-03-19 13:08:09 +01:00
|
|
|
|
|
|
|
#include "winbase.h"
|
2000-06-07 04:16:47 +02:00
|
|
|
#include "wine/winbase16.h"
|
2000-05-15 04:46:44 +02:00
|
|
|
#include "winreg.h"
|
2000-03-20 19:21:19 +01:00
|
|
|
|
2000-05-03 20:10:47 +02:00
|
|
|
#include "callback.h"
|
2000-03-20 19:21:19 +01:00
|
|
|
#include "debugtools.h"
|
2000-03-19 13:08:09 +01:00
|
|
|
#include "gdi.h"
|
2000-03-20 19:21:19 +01:00
|
|
|
#include "options.h"
|
2000-03-19 13:08:09 +01:00
|
|
|
#include "user.h"
|
2000-03-20 19:21:19 +01:00
|
|
|
#include "win.h"
|
2000-05-23 03:20:08 +02:00
|
|
|
#include "wine_gl.h"
|
2000-03-19 13:08:09 +01:00
|
|
|
#include "x11drv.h"
|
|
|
|
|
2000-05-15 04:46:44 +02:00
|
|
|
DEFAULT_DEBUG_CHANNEL(x11drv);
|
2000-03-20 19:21:19 +01:00
|
|
|
|
|
|
|
static XKeyboardState keyboard_state;
|
|
|
|
|
|
|
|
Display *display;
|
2000-03-25 15:05:06 +01:00
|
|
|
Screen *screen;
|
|
|
|
Visual *visual;
|
2000-08-01 01:32:47 +02:00
|
|
|
unsigned int screen_width;
|
|
|
|
unsigned int screen_height;
|
|
|
|
unsigned int screen_depth;
|
2000-03-25 15:05:06 +01:00
|
|
|
Window root_window;
|
2000-03-20 19:21:19 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* error_handler
|
|
|
|
*/
|
|
|
|
static int error_handler(Display *display, XErrorEvent *error_evt)
|
|
|
|
{
|
|
|
|
DebugBreak(); /* force an entry in the debugger */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-15 04:46:44 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* setup_options
|
|
|
|
*
|
|
|
|
* Setup the x11drv options.
|
|
|
|
*/
|
|
|
|
static void setup_options(void)
|
|
|
|
{
|
|
|
|
char buffer[256];
|
|
|
|
HKEY hkey;
|
|
|
|
DWORD type, count;
|
|
|
|
|
|
|
|
if (RegCreateKeyExA( HKEY_LOCAL_MACHINE, "Software\\Wine\\Wine\\Config\\x11drv", 0, NULL,
|
|
|
|
REG_OPTION_VOLATILE, KEY_ALL_ACCESS, NULL, &hkey, NULL ))
|
|
|
|
{
|
|
|
|
ERR("Cannot create config registry key\n" );
|
|
|
|
ExitProcess(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --display option */
|
|
|
|
|
|
|
|
count = sizeof(buffer);
|
|
|
|
if (!RegQueryValueExA( hkey, "display", 0, &type, buffer, &count ))
|
|
|
|
{
|
|
|
|
if (Options.display)
|
|
|
|
{
|
|
|
|
if (strcmp( buffer, Options.display ))
|
|
|
|
MESSAGE( "%s: warning: --display option ignored, using '%s'\n", argv0, buffer );
|
|
|
|
}
|
|
|
|
else if ((Options.display = getenv( "DISPLAY" )))
|
|
|
|
{
|
|
|
|
if (strcmp( buffer, Options.display ))
|
|
|
|
MESSAGE( "%s: warning: $DISPLAY variable ignored, using '%s'\n", argv0, buffer );
|
|
|
|
}
|
|
|
|
Options.display = strdup(buffer);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!Options.display && !(Options.display = getenv( "DISPLAY" )))
|
|
|
|
{
|
|
|
|
MESSAGE( "%s: no display specified\n", argv0 );
|
|
|
|
ExitProcess(1);
|
|
|
|
}
|
|
|
|
RegSetValueExA( hkey, "display", 0, REG_SZ, Options.display, strlen(Options.display)+1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --managed option */
|
|
|
|
|
|
|
|
if (!Options.managed)
|
|
|
|
{
|
|
|
|
count = sizeof(buffer);
|
|
|
|
if (!RegQueryValueExA( hkey, "managed", 0, &type, buffer, &count ))
|
|
|
|
Options.managed = IS_OPTION_TRUE( buffer[0] );
|
|
|
|
}
|
|
|
|
else RegSetValueExA( hkey, "managed", 0, REG_SZ, "y", 2 );
|
|
|
|
|
|
|
|
RegCloseKey( hkey );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-25 18:30:13 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* create_desktop
|
|
|
|
*
|
|
|
|
* Create the desktop window for the --desktop mode.
|
|
|
|
*/
|
|
|
|
static void create_desktop( const char *geometry )
|
|
|
|
{
|
|
|
|
int x = 0, y = 0, flags;
|
|
|
|
unsigned int width = 640, height = 480; /* Default size = 640x480 */
|
|
|
|
char *name = "Wine desktop";
|
|
|
|
XSizeHints *size_hints;
|
|
|
|
XWMHints *wm_hints;
|
|
|
|
XClassHint *class_hints;
|
|
|
|
XSetWindowAttributes win_attr;
|
|
|
|
XTextProperty window_name;
|
|
|
|
Atom XA_WM_DELETE_WINDOW;
|
2000-05-23 03:20:08 +02:00
|
|
|
/* Used to create the desktop window with a good visual */
|
|
|
|
XVisualInfo *vi = NULL;
|
|
|
|
#ifdef HAVE_OPENGL
|
|
|
|
BOOL dblbuf_visual;
|
|
|
|
|
|
|
|
/* Get in wine.ini if the desktop window should have a double-buffered visual or not */
|
|
|
|
dblbuf_visual = PROFILE_GetWineIniBool( "x11drv", "DesktopDoubleBuffered", 0 );
|
|
|
|
if (dblbuf_visual) {
|
|
|
|
int dblBuf[]={GLX_RGBA,GLX_DEPTH_SIZE,16,GLX_DOUBLEBUFFER,None};
|
|
|
|
|
|
|
|
ENTER_GL();
|
|
|
|
vi = glXChooseVisual(display, DefaultScreen(display), dblBuf);
|
|
|
|
win_attr.colormap = XCreateColormap(display, RootWindow(display,vi->screen),
|
|
|
|
vi->visual, AllocNone);
|
|
|
|
LEAVE_GL();
|
|
|
|
}
|
|
|
|
#endif /* HAVE_OPENGL */
|
2000-03-25 18:30:13 +01:00
|
|
|
|
|
|
|
flags = TSXParseGeometry( geometry, &x, &y, &width, &height );
|
2000-08-01 01:32:47 +02:00
|
|
|
screen_width = width;
|
|
|
|
screen_height = height;
|
2000-03-25 18:30:13 +01:00
|
|
|
|
|
|
|
/* Create window */
|
|
|
|
win_attr.background_pixel = BlackPixel(display, 0);
|
|
|
|
win_attr.event_mask = ExposureMask | KeyPressMask | KeyReleaseMask |
|
|
|
|
PointerMotionMask | ButtonPressMask |
|
|
|
|
ButtonReleaseMask | EnterWindowMask;
|
|
|
|
win_attr.cursor = TSXCreateFontCursor( display, XC_top_left_arrow );
|
|
|
|
|
2000-05-23 03:20:08 +02:00
|
|
|
if (vi != NULL) {
|
|
|
|
visual = vi->visual;
|
|
|
|
screen = ScreenOfDisplay(display, vi->screen);
|
|
|
|
screen_depth = vi->depth;
|
|
|
|
}
|
|
|
|
root_window = TSXCreateWindow( display,
|
|
|
|
(vi == NULL ? DefaultRootWindow(display) : RootWindow(display, vi->screen)),
|
2000-03-25 18:30:13 +01:00
|
|
|
x, y, width, height, 0,
|
2000-05-23 03:20:08 +02:00
|
|
|
(vi == NULL ? CopyFromParent : vi->depth),
|
|
|
|
InputOutput,
|
|
|
|
(vi == NULL ? CopyFromParent : vi->visual),
|
|
|
|
CWBackPixel | CWEventMask | CWCursor | (vi == NULL ? 0 : CWColormap),
|
|
|
|
&win_attr );
|
2000-03-25 18:30:13 +01:00
|
|
|
|
|
|
|
/* Set window manager properties */
|
|
|
|
size_hints = TSXAllocSizeHints();
|
|
|
|
wm_hints = TSXAllocWMHints();
|
|
|
|
class_hints = TSXAllocClassHint();
|
|
|
|
if (!size_hints || !wm_hints || !class_hints)
|
|
|
|
{
|
|
|
|
MESSAGE("Not enough memory for window manager hints.\n" );
|
|
|
|
ExitProcess(1);
|
|
|
|
}
|
|
|
|
size_hints->min_width = size_hints->max_width = width;
|
|
|
|
size_hints->min_height = size_hints->max_height = height;
|
|
|
|
size_hints->flags = PMinSize | PMaxSize;
|
|
|
|
if (flags & (XValue | YValue)) size_hints->flags |= USPosition;
|
|
|
|
if (flags & (WidthValue | HeightValue)) size_hints->flags |= USSize;
|
|
|
|
else size_hints->flags |= PSize;
|
|
|
|
|
|
|
|
wm_hints->flags = InputHint | StateHint;
|
|
|
|
wm_hints->input = True;
|
|
|
|
wm_hints->initial_state = NormalState;
|
|
|
|
class_hints->res_name = (char *)argv0;
|
|
|
|
class_hints->res_class = "Wine";
|
|
|
|
|
|
|
|
TSXStringListToTextProperty( &name, 1, &window_name );
|
|
|
|
TSXSetWMProperties( display, root_window, &window_name, &window_name,
|
2000-05-15 04:46:44 +02:00
|
|
|
NULL, 0, size_hints, wm_hints, class_hints );
|
2000-03-25 18:30:13 +01:00
|
|
|
XA_WM_DELETE_WINDOW = TSXInternAtom( display, "WM_DELETE_WINDOW", False );
|
|
|
|
TSXSetWMProtocols( display, root_window, &XA_WM_DELETE_WINDOW, 1 );
|
|
|
|
TSXFree( size_hints );
|
|
|
|
TSXFree( wm_hints );
|
|
|
|
TSXFree( class_hints );
|
|
|
|
|
|
|
|
/* Map window */
|
|
|
|
TSXMapWindow( display, root_window );
|
|
|
|
}
|
|
|
|
|
2000-05-03 20:10:47 +02:00
|
|
|
/* Created so that XOpenIM can be called using the 'large stack' */
|
|
|
|
static void XOpenIM_large_stack(void)
|
|
|
|
{
|
|
|
|
TSXOpenIM(display,NULL,NULL,NULL);
|
|
|
|
}
|
2000-03-25 18:30:13 +01:00
|
|
|
|
2000-03-20 19:21:19 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV process initialisation routine
|
|
|
|
*/
|
|
|
|
static void process_attach(void)
|
|
|
|
{
|
|
|
|
WND_Driver = &X11DRV_WND_Driver;
|
|
|
|
|
2000-05-15 04:46:44 +02:00
|
|
|
setup_options();
|
|
|
|
|
2000-03-20 19:21:19 +01:00
|
|
|
/* Open display */
|
2000-05-15 04:46:44 +02:00
|
|
|
|
2000-03-20 19:21:19 +01:00
|
|
|
if (!(display = TSXOpenDisplay( Options.display )))
|
|
|
|
{
|
2000-05-15 04:46:44 +02:00
|
|
|
MESSAGE( "%s: Can't open display: %s\n", argv0, Options.display );
|
2000-03-20 19:21:19 +01:00
|
|
|
ExitProcess(1);
|
|
|
|
}
|
2000-04-04 21:57:23 +02:00
|
|
|
fcntl( ConnectionNumber(display), F_SETFD, 1 ); /* set close on exec flag */
|
2000-03-25 15:05:06 +01:00
|
|
|
screen = DefaultScreenOfDisplay( display );
|
|
|
|
visual = DefaultVisual( display, DefaultScreen(display) );
|
|
|
|
root_window = DefaultRootWindow( display );
|
|
|
|
|
|
|
|
/* Initialize screen depth */
|
|
|
|
|
|
|
|
screen_depth = PROFILE_GetWineIniInt( "x11drv", "ScreenDepth", 0 );
|
|
|
|
if (screen_depth) /* depth specified */
|
|
|
|
{
|
|
|
|
int depth_count, i;
|
|
|
|
int *depth_list = TSXListDepths(display, DefaultScreen(display), &depth_count);
|
|
|
|
for (i = 0; i < depth_count; i++)
|
|
|
|
if (depth_list[i] == screen_depth) break;
|
|
|
|
TSXFree( depth_list );
|
|
|
|
if (i >= depth_count)
|
|
|
|
{
|
|
|
|
MESSAGE( "%s: Depth %d not supported on this screen.\n", argv0, screen_depth );
|
|
|
|
ExitProcess(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else screen_depth = DefaultDepthOfScreen( screen );
|
|
|
|
|
2000-03-20 19:21:19 +01:00
|
|
|
/* tell the libX11 that we will do input method handling ourselves
|
|
|
|
* that keep libX11 from doing anything whith dead keys, allowing Wine
|
|
|
|
* to have total control over dead keys, that is this line allows
|
|
|
|
* them to work in Wine, even whith a libX11 including the dead key
|
|
|
|
* patches from Th.Quinot (http://Web.FdN.FR/~tquinot/dead-keys.en.html)
|
|
|
|
*/
|
2000-05-03 20:10:47 +02:00
|
|
|
CALL_LARGE_STACK( XOpenIM_large_stack, NULL );
|
2000-03-20 19:21:19 +01:00
|
|
|
|
|
|
|
if (Options.synchronous) XSetErrorHandler( error_handler );
|
|
|
|
|
2000-08-01 01:32:47 +02:00
|
|
|
screen_width = WidthOfScreen( screen );
|
|
|
|
screen_height = HeightOfScreen( screen );
|
2000-03-25 18:30:13 +01:00
|
|
|
|
|
|
|
if (Options.desktopGeometry)
|
|
|
|
{
|
|
|
|
Options.managed = FALSE;
|
|
|
|
create_desktop( Options.desktopGeometry );
|
|
|
|
}
|
2000-03-20 19:21:19 +01:00
|
|
|
|
|
|
|
/* initialize GDI */
|
|
|
|
X11DRV_GDI_Initialize();
|
|
|
|
|
|
|
|
/* save keyboard setup */
|
|
|
|
TSXGetKeyboardControl(display, &keyboard_state);
|
|
|
|
|
|
|
|
/* initialize event handling */
|
|
|
|
X11DRV_EVENT_Init();
|
2000-06-03 06:49:40 +02:00
|
|
|
|
|
|
|
/* load display.dll */
|
|
|
|
LoadLibrary16( "display" );
|
2000-03-20 19:21:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV process termination routine
|
|
|
|
*/
|
|
|
|
static void process_detach(void)
|
|
|
|
{
|
|
|
|
/* restore keyboard setup */
|
|
|
|
XKeyboardControl keyboard_value;
|
|
|
|
|
|
|
|
keyboard_value.key_click_percent = keyboard_state.key_click_percent;
|
|
|
|
keyboard_value.bell_percent = keyboard_state.bell_percent;
|
|
|
|
keyboard_value.bell_pitch = keyboard_state.bell_pitch;
|
|
|
|
keyboard_value.bell_duration = keyboard_state.bell_duration;
|
|
|
|
keyboard_value.auto_repeat_mode = keyboard_state.global_auto_repeat;
|
|
|
|
|
|
|
|
XChangeKeyboardControl(display, KBKeyClickPercent | KBBellPercent |
|
|
|
|
KBBellPitch | KBBellDuration | KBAutoRepeatMode, &keyboard_value);
|
|
|
|
|
|
|
|
/* cleanup GDI */
|
|
|
|
X11DRV_GDI_Finalize();
|
|
|
|
|
|
|
|
#if 0 /* FIXME */
|
|
|
|
|
|
|
|
/* close the display */
|
|
|
|
XCloseDisplay( display );
|
|
|
|
display = NULL;
|
|
|
|
|
|
|
|
WND_Driver = NULL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-19 13:08:09 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV initialisation routine
|
|
|
|
*/
|
|
|
|
BOOL WINAPI X11DRV_Init( HINSTANCE hinst, DWORD reason, LPVOID reserved )
|
|
|
|
{
|
2000-03-20 19:21:19 +01:00
|
|
|
static int process_count;
|
|
|
|
|
|
|
|
switch(reason)
|
2000-03-19 13:08:09 +01:00
|
|
|
{
|
2000-03-20 19:21:19 +01:00
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
if (!process_count++) process_attach();
|
|
|
|
break;
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
|
|
if (!--process_count) process_detach();
|
|
|
|
break;
|
2000-03-19 13:08:09 +01:00
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
2000-03-25 18:30:13 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV_GetScreenSaveActive
|
|
|
|
*
|
|
|
|
* Returns the active status of the screen saver
|
|
|
|
*/
|
|
|
|
BOOL X11DRV_GetScreenSaveActive(void)
|
|
|
|
{
|
|
|
|
int timeout, temp;
|
|
|
|
TSXGetScreenSaver(display, &timeout, &temp, &temp, &temp);
|
2000-04-29 16:29:41 +02:00
|
|
|
return timeout != 0;
|
2000-03-25 18:30:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV_SetScreenSaveActive
|
|
|
|
*
|
|
|
|
* Activate/Deactivate the screen saver
|
|
|
|
*/
|
|
|
|
void X11DRV_SetScreenSaveActive(BOOL bActivate)
|
|
|
|
{
|
|
|
|
if(bActivate)
|
|
|
|
TSXActivateScreenSaver(display);
|
|
|
|
else
|
|
|
|
TSXResetScreenSaver(display);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV_GetScreenSaveTimeout
|
|
|
|
*
|
|
|
|
* Return the screen saver timeout
|
|
|
|
*/
|
|
|
|
int X11DRV_GetScreenSaveTimeout(void)
|
|
|
|
{
|
|
|
|
int timeout, temp;
|
|
|
|
TSXGetScreenSaver(display, &timeout, &temp, &temp, &temp);
|
|
|
|
return timeout;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV_SetScreenSaveTimeout
|
|
|
|
*
|
|
|
|
* Set the screen saver timeout
|
|
|
|
*/
|
|
|
|
void X11DRV_SetScreenSaveTimeout(int nTimeout)
|
|
|
|
{
|
2000-06-23 18:49:46 +02:00
|
|
|
/* timeout is a 16bit entity (CARD16) in the protocol, so it should
|
|
|
|
* not get over 32767 or it will get negative. */
|
|
|
|
if (nTimeout>32767) nTimeout = 32767;
|
2000-03-25 18:30:13 +01:00
|
|
|
TSXSetScreenSaver(display, nTimeout, 60, DefaultBlanking, DefaultExposures);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV_IsSingleWindow
|
|
|
|
*/
|
|
|
|
BOOL X11DRV_IsSingleWindow(void)
|
|
|
|
{
|
|
|
|
return (root_window != DefaultRootWindow(display));
|
|
|
|
}
|