gdi32: Constify some variables.
[wine/testsucceed.git] / dlls / winex11.drv / xrandr.c
blobbe262dc9f88a95ed0e569222716cb3e024fd3c3f
1 /*
2 * Wine X11drv Xrandr interface
4 * Copyright 2003 Alexander James Pasadyn
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 "wine/port.h"
23 #include <string.h>
24 #include <stdio.h>
26 #ifdef HAVE_LIBXRANDR
28 #include <X11/Xlib.h>
29 #include <X11/extensions/Xrandr.h>
30 #include "x11drv.h"
32 #include "xrandr.h"
34 #include "windef.h"
35 #include "winbase.h"
36 #include "wingdi.h"
37 #include "ddrawi.h"
38 #include "wine/library.h"
39 #include "wine/debug.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(xrandr);
43 static void *xrandr_handle;
45 /* some default values just in case */
46 #ifndef SONAME_LIBX11
47 #define SONAME_LIBX11 "libX11.so"
48 #endif
49 #ifndef SONAME_LIBXEXT
50 #define SONAME_LIBXEXT "libXext.so"
51 #endif
52 #ifndef SONAME_LIBXRENDER
53 #define SONAME_LIBXRENDER "libXrender.so"
54 #endif
55 #ifndef SONAME_LIBXRANDR
56 #define SONAME_LIBXRANDR "libXrandr.so"
57 #endif
59 #define MAKE_FUNCPTR(f) static typeof(f) * p##f;
60 MAKE_FUNCPTR(XRRConfigCurrentConfiguration)
61 MAKE_FUNCPTR(XRRConfigCurrentRate)
62 MAKE_FUNCPTR(XRRFreeScreenConfigInfo)
63 MAKE_FUNCPTR(XRRGetScreenInfo)
64 MAKE_FUNCPTR(XRRQueryExtension)
65 MAKE_FUNCPTR(XRRQueryVersion)
66 MAKE_FUNCPTR(XRRRates)
67 MAKE_FUNCPTR(XRRSetScreenConfig)
68 MAKE_FUNCPTR(XRRSetScreenConfigAndRate)
69 MAKE_FUNCPTR(XRRSizes)
70 #undef MAKE_FUNCPTR
72 extern int usexrandr;
74 static int xrandr_event, xrandr_error, xrandr_major, xrandr_minor;
76 static LPDDHALMODEINFO dd_modes;
77 static unsigned int dd_mode_count;
78 static XRRScreenSize *real_xrandr_sizes;
79 static short **real_xrandr_rates;
80 static int real_xrandr_sizes_count;
81 static int *real_xrandr_rates_count;
82 static unsigned int real_xrandr_modes_count;
84 static int load_xrandr(void)
86 int r = 0;
88 if (wine_dlopen(SONAME_LIBX11, RTLD_NOW|RTLD_GLOBAL, NULL, 0) &&
89 wine_dlopen(SONAME_LIBXEXT, RTLD_NOW|RTLD_GLOBAL, NULL, 0) &&
90 wine_dlopen(SONAME_LIBXRENDER, RTLD_NOW|RTLD_GLOBAL, NULL, 0) &&
91 (xrandr_handle = wine_dlopen(SONAME_LIBXRANDR, RTLD_NOW, NULL, 0)))
94 #define LOAD_FUNCPTR(f) \
95 if((p##f = wine_dlsym(xrandr_handle, #f, NULL, 0)) == NULL) \
96 goto sym_not_found;
98 LOAD_FUNCPTR(XRRConfigCurrentConfiguration)
99 LOAD_FUNCPTR(XRRConfigCurrentRate)
100 LOAD_FUNCPTR(XRRFreeScreenConfigInfo)
101 LOAD_FUNCPTR(XRRGetScreenInfo)
102 LOAD_FUNCPTR(XRRQueryExtension)
103 LOAD_FUNCPTR(XRRQueryVersion)
104 LOAD_FUNCPTR(XRRRates)
105 LOAD_FUNCPTR(XRRSetScreenConfig)
106 LOAD_FUNCPTR(XRRSetScreenConfigAndRate)
107 LOAD_FUNCPTR(XRRSizes)
109 #undef LOAD_FUNCPTR
111 r = 1; /* success */
113 sym_not_found:
114 if (!r) TRACE("Unable to load function ptrs from XRandR library\n");
116 return r;
119 static int XRandRErrorHandler(Display *dpy, XErrorEvent *event, void *arg)
121 return 1;
125 /* create the mode structures */
126 static void make_modes(void)
128 unsigned int i;
129 int j;
130 for (i=0; i<real_xrandr_sizes_count; i++)
132 if (real_xrandr_rates_count[i])
134 for (j=0; j < real_xrandr_rates_count[i]; j++)
136 X11DRV_Settings_AddOneMode(real_xrandr_sizes[i].width,
137 real_xrandr_sizes[i].height,
138 0, real_xrandr_rates[i][j]);
141 else
143 X11DRV_Settings_AddOneMode(real_xrandr_sizes[i].width,
144 real_xrandr_sizes[i].height,
145 0, 0);
150 static int X11DRV_XRandR_GetCurrentMode(void)
152 SizeID size;
153 Rotation rot;
154 Window root;
155 XRRScreenConfiguration *sc;
156 short rate;
157 unsigned int i;
158 int res = -1;
160 wine_tsx11_lock();
161 root = RootWindow (gdi_display, DefaultScreen(gdi_display));
162 sc = pXRRGetScreenInfo (gdi_display, root);
163 size = pXRRConfigCurrentConfiguration (sc, &rot);
164 rate = pXRRConfigCurrentRate (sc);
165 pXRRFreeScreenConfigInfo(sc);
166 wine_tsx11_unlock();
167 for (i = 0; i < real_xrandr_modes_count; i++)
169 if ( (dd_modes[i].dwWidth == real_xrandr_sizes[size].width ) &&
170 (dd_modes[i].dwHeight == real_xrandr_sizes[size].height) &&
171 (dd_modes[i].wRefreshRate == rate ) )
173 res = i;
174 break;
177 if (res == -1)
179 ERR("In unknown mode, returning default\n");
180 res = 0;
182 return res;
185 static LONG X11DRV_XRandR_SetCurrentMode(int mode)
187 SizeID size;
188 Rotation rot;
189 Window root;
190 XRRScreenConfiguration *sc;
191 Status stat = RRSetConfigSuccess;
192 short rate;
193 unsigned int i;
194 int j;
195 DWORD dwBpp = screen_depth;
196 if (dwBpp == 24) dwBpp = 32;
198 wine_tsx11_lock();
199 root = RootWindow (gdi_display, DefaultScreen(gdi_display));
200 sc = pXRRGetScreenInfo (gdi_display, root);
201 size = pXRRConfigCurrentConfiguration (sc, &rot);
202 if (dwBpp != dd_modes[mode].dwBPP)
204 FIXME("Cannot change screen BPP from %d to %d\n", dwBpp, dd_modes[mode].dwBPP);
206 mode = mode%real_xrandr_modes_count;
208 TRACE("Changing Resolution to %dx%d @%d Hz\n",
209 dd_modes[mode].dwWidth,
210 dd_modes[mode].dwHeight,
211 dd_modes[mode].wRefreshRate);
213 for (i = 0; i < real_xrandr_sizes_count; i++)
215 if ( (dd_modes[mode].dwWidth == real_xrandr_sizes[i].width ) &&
216 (dd_modes[mode].dwHeight == real_xrandr_sizes[i].height) )
218 size = i;
219 if (real_xrandr_rates_count[i])
221 for (j=0; j < real_xrandr_rates_count[i]; j++)
223 if (dd_modes[mode].wRefreshRate == real_xrandr_rates[i][j])
225 rate = real_xrandr_rates[i][j];
226 TRACE("Resizing X display to %dx%d @%d Hz\n",
227 dd_modes[mode].dwWidth, dd_modes[mode].dwHeight, rate);
228 stat = pXRRSetScreenConfigAndRate (gdi_display, sc, root,
229 size, rot, rate, CurrentTime);
230 break;
234 else
236 TRACE("Resizing X display to %dx%d <default Hz>\n",
237 dd_modes[mode].dwWidth, dd_modes[mode].dwHeight);
238 stat = pXRRSetScreenConfig (gdi_display, sc, root, size, rot, CurrentTime);
240 break;
243 pXRRFreeScreenConfigInfo(sc);
244 wine_tsx11_unlock();
245 if (stat == RRSetConfigSuccess)
247 X11DRV_handle_desktop_resize( dd_modes[mode].dwWidth, dd_modes[mode].dwHeight );
248 return DISP_CHANGE_SUCCESSFUL;
251 ERR("Resolution change not successful -- perhaps display has changed?\n");
252 return DISP_CHANGE_FAILED;
255 void X11DRV_XRandR_Init(void)
257 Bool ok;
258 int nmodes = 0;
259 unsigned int i;
261 if (xrandr_major) return; /* already initialized? */
262 if (!usexrandr) return; /* disabled in config */
263 if (root_window != DefaultRootWindow( gdi_display )) return;
264 if (!load_xrandr()) return; /* can't load the Xrandr library */
266 /* see if Xrandr is available */
267 wine_tsx11_lock();
268 ok = pXRRQueryExtension(gdi_display, &xrandr_event, &xrandr_error);
269 if (ok)
271 X11DRV_expect_error(gdi_display, XRandRErrorHandler, NULL);
272 ok = pXRRQueryVersion(gdi_display, &xrandr_major, &xrandr_minor);
273 if (X11DRV_check_error()) ok = FALSE;
275 if (ok)
277 TRACE("Found XRandR - major: %d, minor: %d\n", xrandr_major, xrandr_minor);
278 /* retrieve modes */
279 real_xrandr_sizes = pXRRSizes(gdi_display, DefaultScreen(gdi_display), &real_xrandr_sizes_count);
280 ok = (real_xrandr_sizes_count>0);
282 if (ok)
284 TRACE("XRandR: found %u resolutions sizes\n", real_xrandr_sizes_count);
285 real_xrandr_rates = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(short *) * real_xrandr_sizes_count);
286 real_xrandr_rates_count = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(int) * real_xrandr_sizes_count);
287 for (i=0; i < real_xrandr_sizes_count; i++)
289 real_xrandr_rates[i] = pXRRRates (gdi_display, DefaultScreen(gdi_display), i, &(real_xrandr_rates_count[i]));
290 TRACE("- at %u: %dx%d (%d rates):", i, real_xrandr_sizes[i].width, real_xrandr_sizes[i].height, real_xrandr_rates_count[i]);
291 if (real_xrandr_rates_count[i])
293 int j;
294 nmodes += real_xrandr_rates_count[i];
295 for (j = 0; j < real_xrandr_rates_count[i]; ++j) {
296 if (j > 0) TRACE(",");
297 TRACE(" %d", real_xrandr_rates[i][j]);
300 else
302 nmodes++;
303 TRACE(" <default>");
305 TRACE(" Hz\n");
308 wine_tsx11_unlock();
309 if (!ok) return;
311 real_xrandr_modes_count = nmodes;
312 TRACE("XRandR modes: count=%d\n", nmodes);
314 dd_modes = X11DRV_Settings_SetHandlers("XRandR",
315 X11DRV_XRandR_GetCurrentMode,
316 X11DRV_XRandR_SetCurrentMode,
317 nmodes, 1);
318 make_modes();
319 X11DRV_Settings_AddDepthModes();
320 dd_mode_count = X11DRV_Settings_GetModeCount();
321 X11DRV_Settings_SetDefaultMode(0);
323 TRACE("Available DD modes: count=%d\n", dd_mode_count);
324 TRACE("Enabling XRandR\n");
327 void X11DRV_XRandR_Cleanup(void)
329 HeapFree(GetProcessHeap(), 0, real_xrandr_rates);
330 real_xrandr_rates = NULL;
331 HeapFree(GetProcessHeap(), 0, real_xrandr_rates_count);
332 real_xrandr_rates_count = NULL;
335 #endif /* HAVE_LIBXRANDR */