push 014043c4937c940c54cd1214c96e33a3b3c8cf7d
[wine/hacks.git] / dlls / winex11.drv / desktop.c
bloba1bdf4e8d81268ae847f5a404fcb2bd11b3f4c06
1 /*
2 * X11DRV desktop window handling
4 * Copyright 2001 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
22 #include <stdlib.h>
23 #include <string.h>
24 #include <X11/cursorfont.h>
25 #include <X11/Xlib.h>
27 #include "x11drv.h"
29 /* avoid conflict with field names in included win32 headers */
30 #undef Status
31 #include "ddrawi.h"
32 #include "winreg.h"
33 #include "wine/debug.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(x11drv);
37 /* data for resolution changing */
38 static LPDDHALMODEINFO dd_modes;
39 static unsigned int dd_mode_count;
41 static unsigned int max_width;
42 static unsigned int max_height;
44 static const unsigned int widths[] = {320, 400, 512, 640, 800, 1024, 1152, 1280, 1400, 1600};
45 static const unsigned int heights[] = {200, 300, 384, 480, 600, 768, 864, 1024, 1050, 1200};
46 #define NUM_DESKTOP_MODES (sizeof(widths) / sizeof(widths[0]))
48 /* create the mode structures */
49 static void make_modes(char * refresh_rates)
51 char *elem;
52 unsigned int refresh_rate;
53 int i;
55 for(; ( elem = strsep(&refresh_rates, ",") ) && *elem && 0 <= ( refresh_rate = strtol(elem , NULL, 0) ); ) {
56 /* original specified desktop size */
57 X11DRV_Settings_AddOneMode(screen_width, screen_height, 0, refresh_rate);
58 for (i=0; i<NUM_DESKTOP_MODES; i++)
60 if ( (widths[i] <= max_width) && (heights[i] <= max_height) )
62 if ( ( (widths[i] != max_width) || (heights[i] != max_height) ) &&
63 ( (widths[i] != screen_width) || (heights[i] != screen_height) ) )
65 /* only add them if they are smaller than the root window and unique */
66 X11DRV_Settings_AddOneMode(widths[i], heights[i], 0, refresh_rate);
70 if ((max_width != screen_width) && (max_height != screen_height))
72 /* root window size (if different from desktop window) */
73 X11DRV_Settings_AddOneMode(max_width, max_height, 0, refresh_rate);
78 static int X11DRV_desktop_GetCurrentMode(void)
80 unsigned int i;
81 DWORD dwBpp = screen_bpp;
82 for (i=0; i<dd_mode_count; i++)
84 if ( (screen_width == dd_modes[i].dwWidth) &&
85 (screen_height == dd_modes[i].dwHeight) &&
86 (dwBpp == dd_modes[i].dwBPP))
87 return i;
89 ERR("In unknown mode, returning default\n");
90 return 0;
93 static LONG X11DRV_desktop_SetCurrentMode(int mode)
95 DWORD dwBpp = screen_bpp;
96 if (dwBpp != dd_modes[mode].dwBPP)
98 FIXME("Cannot change screen BPP from %d to %d\n", dwBpp, dd_modes[mode].dwBPP);
99 /* Ignore the depth mismatch
101 * Some (older) applications require a specific bit depth, this will allow them
102 * to run. X11drv performs a color depth conversion if needed.
105 TRACE("Resizing Wine desktop window to %dx%d\n", dd_modes[mode].dwWidth, dd_modes[mode].dwHeight);
106 X11DRV_resize_desktop(dd_modes[mode].dwWidth, dd_modes[mode].dwHeight);
107 return DISP_CHANGE_SUCCESSFUL;
110 /***********************************************************************
111 * X11DRV_init_desktop
113 * Setup the desktop when not using the root window.
115 void X11DRV_init_desktop( Window win, unsigned int width, unsigned int height )
117 HKEY hkey;
118 char buffer[64] = "60\0";
119 char buffer_copy[64];
120 int refresh_count = 0;
121 char *elem, *bufferp = buffer_copy;
122 root_window = win;
123 managed_mode = 0; /* no managed windows in desktop mode */
124 max_width = screen_width;
125 max_height = screen_height;
126 xinerama_init( width, height );
128 /* @@ Wine registry key: HKCU\Software\Wine\X11 Driver */
129 if ( !RegOpenKeyA( HKEY_CURRENT_USER, "Software\\Wine\\X11 Driver", &hkey ) ) {
130 DWORD count = sizeof(buffer);
131 RegQueryValueExA(hkey, "FakeRefreshRate", 0, NULL, (LPBYTE)buffer, &count);
132 RegCloseKey(hkey);
134 strcpy(buffer_copy, buffer);
135 for(; ( elem = strsep(&bufferp, ",") ) && *elem && 0 <= strtol(elem , NULL, 0); )
136 refresh_count++;
138 /* initialize the available resolutions */
139 dd_modes = X11DRV_Settings_SetHandlers("desktop",
140 X11DRV_desktop_GetCurrentMode,
141 X11DRV_desktop_SetCurrentMode,
142 (NUM_DESKTOP_MODES+2)*refresh_count, 1);
143 make_modes(buffer);
144 X11DRV_Settings_AddDepthModes();
145 dd_mode_count = X11DRV_Settings_GetModeCount();
149 /***********************************************************************
150 * X11DRV_create_desktop
152 * Create the X11 desktop window for the desktop mode.
154 Window X11DRV_create_desktop( UINT width, UINT height )
156 XSetWindowAttributes win_attr;
157 Window win;
158 Display *display = thread_display();
160 wine_tsx11_lock();
162 /* Create window */
163 win_attr.event_mask = ExposureMask | KeyPressMask | KeyReleaseMask |
164 PointerMotionMask | ButtonPressMask | ButtonReleaseMask;
165 win_attr.cursor = XCreateFontCursor( display, XC_top_left_arrow );
167 if (visual != DefaultVisual( display, DefaultScreen(display) ))
168 win_attr.colormap = XCreateColormap( display, DefaultRootWindow(display),
169 visual, AllocNone );
170 else
171 win_attr.colormap = None;
173 win = XCreateWindow( display, DefaultRootWindow(display),
174 0, 0, width, height, 0, screen_depth, InputOutput, visual,
175 CWEventMask | CWCursor | CWColormap, &win_attr );
176 XFlush( display );
177 wine_tsx11_unlock();
178 if (win != None) X11DRV_init_desktop( win, width, height );
179 return win;