2 * USER initialization code
4 * Copyright 2000 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #include "wine/winbase16.h"
29 #include "wine/winuser16.h"
32 #include "cursoricon.h"
37 #include "wine/debug.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(graphics);
41 USER_DRIVER USER_Driver;
43 WINE_LOOK TWEAK_WineLook = WIN31_LOOK;
45 WORD USER_HeapSel = 0; /* USER heap selector */
47 extern HPALETTE (WINAPI *pfnGDISelectPalette)(HDC hdc, HPALETTE hpal, WORD bkgnd );
48 extern UINT (WINAPI *pfnGDIRealizePalette)(HDC hdc);
50 static HMODULE graphics_driver;
51 static DWORD exiting_thread_id;
53 extern void WDML_NotifyThreadDetach(void);
55 #define GET_USER_FUNC(name) USER_Driver.p##name = (void*)GetProcAddress( graphics_driver, #name )
57 /* load the graphics driver */
58 static BOOL load_driver(void)
60 char buffer[MAX_PATH];
64 strcpy( buffer, "x11drv" ); /* default value */
65 if (!RegOpenKeyA( HKEY_LOCAL_MACHINE, "Software\\Wine\\Wine\\Config\\Wine", &hkey ))
67 count = sizeof(buffer);
68 RegQueryValueExA( hkey, "GraphicsDriver", 0, &type, buffer, &count );
72 if (!(graphics_driver = LoadLibraryA( buffer )))
74 MESSAGE( "Could not load graphics driver '%s'\n", buffer );
78 GET_USER_FUNC(InitKeyboard);
79 GET_USER_FUNC(VkKeyScanEx);
80 GET_USER_FUNC(MapVirtualKeyEx);
81 GET_USER_FUNC(GetKeyNameText);
82 GET_USER_FUNC(ToUnicodeEx);
83 GET_USER_FUNC(GetKeyboardLayoutList);
84 GET_USER_FUNC(GetKeyboardLayout);
85 GET_USER_FUNC(GetKeyboardLayoutName);
86 GET_USER_FUNC(LoadKeyboardLayout);
87 GET_USER_FUNC(ActivateKeyboardLayout);
88 GET_USER_FUNC(UnloadKeyboardLayout);
90 GET_USER_FUNC(InitMouse);
91 GET_USER_FUNC(SetCursor);
92 GET_USER_FUNC(GetCursorPos);
93 GET_USER_FUNC(SetCursorPos);
94 GET_USER_FUNC(GetScreenSaveActive);
95 GET_USER_FUNC(SetScreenSaveActive);
96 GET_USER_FUNC(AcquireClipboard);
97 GET_USER_FUNC(EmptyClipboard);
98 GET_USER_FUNC(SetClipboardData);
99 GET_USER_FUNC(GetClipboardData);
100 GET_USER_FUNC(CountClipboardFormats);
101 GET_USER_FUNC(EnumClipboardFormats);
102 GET_USER_FUNC(IsClipboardFormatAvailable);
103 GET_USER_FUNC(RegisterClipboardFormat);
104 GET_USER_FUNC(GetClipboardFormatName);
105 GET_USER_FUNC(EndClipboardUpdate);
106 GET_USER_FUNC(ResetSelectionOwner);
107 GET_USER_FUNC(ChangeDisplaySettingsExW);
108 GET_USER_FUNC(EnumDisplaySettingsExW);
109 GET_USER_FUNC(CreateWindow);
110 GET_USER_FUNC(DestroyWindow);
111 GET_USER_FUNC(GetDC);
112 GET_USER_FUNC(ForceWindowRaise);
113 GET_USER_FUNC(MsgWaitForMultipleObjectsEx);
114 GET_USER_FUNC(ReleaseDC);
115 GET_USER_FUNC(ScrollDC);
116 GET_USER_FUNC(ScrollWindowEx);
117 GET_USER_FUNC(SetFocus);
118 GET_USER_FUNC(SetParent);
119 GET_USER_FUNC(SetWindowPos);
120 GET_USER_FUNC(SetWindowRgn);
121 GET_USER_FUNC(SetWindowIcon);
122 GET_USER_FUNC(SetWindowStyle);
123 GET_USER_FUNC(SetWindowText);
124 GET_USER_FUNC(ShowWindow);
125 GET_USER_FUNC(SysCommandSizeMove);
131 /***********************************************************************
134 * Register the classes for the builtin controls
136 static void controls_init(void)
138 extern const struct builtin_class_descr BUTTON_builtin_class;
139 extern const struct builtin_class_descr COMBO_builtin_class;
140 extern const struct builtin_class_descr COMBOLBOX_builtin_class;
141 extern const struct builtin_class_descr DIALOG_builtin_class;
142 extern const struct builtin_class_descr DESKTOP_builtin_class;
143 extern const struct builtin_class_descr EDIT_builtin_class;
144 extern const struct builtin_class_descr ICONTITLE_builtin_class;
145 extern const struct builtin_class_descr LISTBOX_builtin_class;
146 extern const struct builtin_class_descr MDICLIENT_builtin_class;
147 extern const struct builtin_class_descr MENU_builtin_class;
148 extern const struct builtin_class_descr SCROLL_builtin_class;
149 extern const struct builtin_class_descr STATIC_builtin_class;
151 CLASS_RegisterBuiltinClass( &BUTTON_builtin_class );
152 CLASS_RegisterBuiltinClass( &COMBO_builtin_class );
153 CLASS_RegisterBuiltinClass( &COMBOLBOX_builtin_class );
154 CLASS_RegisterBuiltinClass( &DIALOG_builtin_class );
155 CLASS_RegisterBuiltinClass( &DESKTOP_builtin_class );
156 CLASS_RegisterBuiltinClass( &EDIT_builtin_class );
157 CLASS_RegisterBuiltinClass( &ICONTITLE_builtin_class );
158 CLASS_RegisterBuiltinClass( &LISTBOX_builtin_class );
159 CLASS_RegisterBuiltinClass( &MDICLIENT_builtin_class );
160 CLASS_RegisterBuiltinClass( &MENU_builtin_class );
161 CLASS_RegisterBuiltinClass( &SCROLL_builtin_class );
162 CLASS_RegisterBuiltinClass( &STATIC_builtin_class );
166 /***********************************************************************
169 * Patch the function pointers in GDI for SelectPalette and RealizePalette
171 static void palette_init(void)
174 HMODULE module = GetModuleHandleA( "gdi32" );
177 ERR( "cannot get GDI32 handle\n" );
180 if ((ptr = (void**)GetProcAddress( module, "pfnSelectPalette" )))
181 pfnGDISelectPalette = InterlockedExchangePointer( ptr, SelectPalette );
182 else ERR( "cannot find pfnSelectPalette in GDI32\n" );
183 if ((ptr = (void**)GetProcAddress( module, "pfnRealizePalette" )))
184 pfnGDIRealizePalette = InterlockedExchangePointer( ptr, UserRealizePalette );
185 else ERR( "cannot find pfnRealizePalette in GDI32\n" );
189 /***********************************************************************
192 static void tweak_init(void)
194 static const char *OS = "Win3.1";
197 DWORD type, count = sizeof(buffer);
199 if (RegOpenKeyA( HKEY_LOCAL_MACHINE, "Software\\Wine\\Wine\\Config\\Tweak.Layout", &hkey ))
201 if (RegQueryValueExA( hkey, "WineLook", 0, &type, buffer, &count ))
202 strcpy( buffer, "Win31" ); /* default value */
205 /* WIN31_LOOK is default */
206 if (!strncasecmp( buffer, "Win95", 5 ))
208 TWEAK_WineLook = WIN95_LOOK;
211 else if (!strncasecmp( buffer, "Win98", 5 ))
213 TWEAK_WineLook = WIN98_LOOK;
216 TRACE("Using %s look and feel.\n", OS);
220 /***********************************************************************
221 * USER initialisation routine
223 static BOOL process_attach(void)
225 HINSTANCE16 instance;
227 /* Create USER heap */
228 if ((instance = LoadLibrary16( "USER.EXE" )) >= 32) USER_HeapSel = instance | 7;
231 USER_HeapSel = GlobalAlloc16( GMEM_FIXED, 65536 );
232 LocalInit16( USER_HeapSel, 32, 65534 );
235 /* Load the graphics driver */
237 if (!load_driver()) return FALSE;
239 /* Initialize system colors and metrics */
243 /* Setup palette function pointers */
246 /* Initialize built-in window classes */
249 /* Initialize menus */
250 if (!MENU_Init()) return FALSE;
252 /* Initialize message spying */
253 if (!SPY_Init()) return FALSE;
255 /* Create message queue of initial thread */
256 InitThreadInput16( 0, 0 );
258 /* Create desktop window */
259 if (!WIN_CreateDesktopWindow()) return FALSE;
261 /* Initialize keyboard driver */
262 if (USER_Driver.pInitKeyboard) USER_Driver.pInitKeyboard( InputKeyStateTable );
264 /* Initialize mouse driver */
265 if (USER_Driver.pInitMouse) USER_Driver.pInitMouse( InputKeyStateTable );
271 /**********************************************************************
272 * USER_IsExitingThread
274 BOOL USER_IsExitingThread( DWORD tid )
276 return (tid == exiting_thread_id);
280 /**********************************************************************
283 static void thread_detach(void)
285 exiting_thread_id = GetCurrentThreadId();
287 WDML_NotifyThreadDetach();
289 TIMER_RemoveThreadTimers();
290 WIN_DestroyThreadWindows( GetDesktopWindow() );
291 QUEUE_DeleteMsgQueue();
293 exiting_thread_id = 0;
297 /***********************************************************************
298 * UserClientDllInitialize (USER32.@)
300 * USER dll initialisation routine (exported as UserClientDllInitialize for compatibility).
302 BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
307 case DLL_PROCESS_ATTACH:
308 ret = process_attach();
310 case DLL_THREAD_DETACH: