2 * Window classes functions
4 * Copyright 1993, 1996, 2003 Alexandre Julliard
5 * Copyright 1998 Juergen Schmied (jsch)
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "wine/port.h"
34 #include "wine/winuser16.h"
35 #include "wine/unicode.h"
37 #include "user_private.h"
40 #include "wine/server.h"
41 #include "wine/list.h"
42 #include "wine/debug.h"
44 WINE_DEFAULT_DEBUG_CHANNEL(class);
46 typedef struct tagCLASS
48 struct list entry
; /* Entry in class list */
49 UINT style
; /* Class style */
50 BOOL local
; /* Local class? */
51 WNDPROC winprocA
; /* Window procedure (ASCII) */
52 WNDPROC winprocW
; /* Window procedure (Unicode) */
53 INT cbClsExtra
; /* Class extra bytes */
54 INT cbWndExtra
; /* Window extra bytes */
55 LPWSTR menuName
; /* Default menu name (Unicode followed by ASCII) */
56 SEGPTR segMenuName
; /* Default menu name as SEGPTR */
57 HINSTANCE hInstance
; /* Module that created the task */
58 HICON hIcon
; /* Default icon */
59 HICON hIconSm
; /* Default small icon */
60 HCURSOR hCursor
; /* Default cursor */
61 HBRUSH hbrBackground
; /* Default background */
62 ATOM atomName
; /* Name of the class */
65 static struct list class_list
= LIST_INIT( class_list
);
67 #define CLASS_OTHER_PROCESS ((CLASS *)1)
69 /***********************************************************************
72 static CLASS
*get_class_ptr( HWND hwnd
, BOOL write_access
)
74 WND
*ptr
= WIN_GetPtr( hwnd
);
78 if (ptr
!= WND_OTHER_PROCESS
&& ptr
!= WND_DESKTOP
) return ptr
->class;
80 if (write_access
&& (ptr
== WND_DESKTOP
|| IsWindow( hwnd
))) /* check other processes */
82 /* modifying classes in other processes is not allowed */
83 SetLastError( ERROR_ACCESS_DENIED
);
86 return CLASS_OTHER_PROCESS
;
88 SetLastError( ERROR_INVALID_WINDOW_HANDLE
);
93 /***********************************************************************
96 inline static void release_class_ptr( CLASS
*ptr
)
102 /***********************************************************************
105 * Set class info with the wine server.
107 static BOOL
set_server_info( HWND hwnd
, INT offset
, LONG newval
)
111 SERVER_START_REQ( set_class_info
)
114 req
->extra_offset
= -1;
118 req
->flags
= SET_CLASS_ATOM
;
121 req
->flags
= SET_CLASS_STYLE
;
125 req
->flags
= SET_CLASS_WINEXTRA
;
126 req
->win_extra
= newval
;
129 req
->flags
= SET_CLASS_INSTANCE
;
130 req
->instance
= (void *)newval
;
133 assert( offset
>= 0 );
134 req
->flags
= SET_CLASS_EXTRA
;
135 req
->extra_offset
= offset
;
136 req
->extra_size
= sizeof(newval
);
137 memcpy( &req
->extra_value
, &newval
, sizeof(newval
) );
140 ret
= !wine_server_call_err( req
);
147 /***********************************************************************
150 * Get the class winproc for a given proc type
152 static WNDPROC16
CLASS_GetProc( CLASS
*classPtr
, WINDOWPROCTYPE type
)
154 WNDPROC proc
= classPtr
->winprocA
;
156 if (classPtr
->winprocW
)
158 /* if we have a Unicode proc, use it if we have no ASCII proc
159 * or if we have both and Unicode was requested
161 if (!proc
|| type
== WIN_PROC_32W
) proc
= classPtr
->winprocW
;
163 return WINPROC_GetProc( proc
, type
);
167 /***********************************************************************
170 * Set the class winproc for a given proc type.
171 * Returns the previous window proc.
173 static WNDPROC16
CLASS_SetProc( CLASS
*classPtr
, WNDPROC newproc
, WINDOWPROCTYPE type
)
175 WNDPROC
*proc
= &classPtr
->winprocA
;
178 if (classPtr
->winprocW
)
180 /* if we have a Unicode proc, use it if we have no ASCII proc
181 * or if we have both and Unicode was requested
183 if (!*proc
|| type
== WIN_PROC_32W
) proc
= &classPtr
->winprocW
;
185 ret
= WINPROC_GetProc( *proc
, type
);
186 *proc
= WINPROC_AllocProc( newproc
, type
);
187 /* now clear the one that we didn't set */
188 if (classPtr
->winprocA
&& classPtr
->winprocW
)
190 if (proc
== &classPtr
->winprocA
)
191 classPtr
->winprocW
= 0;
193 classPtr
->winprocA
= 0;
199 /***********************************************************************
202 * Get the menu name as a ASCII string.
204 inline static LPSTR
CLASS_GetMenuNameA( CLASS
*classPtr
)
206 if (!HIWORD(classPtr
->menuName
)) return (LPSTR
)classPtr
->menuName
;
207 return (LPSTR
)(classPtr
->menuName
+ strlenW(classPtr
->menuName
) + 1);
211 /***********************************************************************
212 * CLASS_GetMenuName16
214 * Get the menu name as a SEGPTR.
216 inline static SEGPTR
CLASS_GetMenuName16( CLASS
*classPtr
)
218 if (!HIWORD(classPtr
->menuName
)) return (SEGPTR
)classPtr
->menuName
;
219 if (!classPtr
->segMenuName
)
220 classPtr
->segMenuName
= MapLS( CLASS_GetMenuNameA(classPtr
) );
221 return classPtr
->segMenuName
;
225 /***********************************************************************
228 * Get the menu name as a Unicode string.
230 inline static LPWSTR
CLASS_GetMenuNameW( CLASS
*classPtr
)
232 return classPtr
->menuName
;
236 /***********************************************************************
239 * Set the menu name in a class structure by copying the string.
241 static void CLASS_SetMenuNameA( CLASS
*classPtr
, LPCSTR name
)
243 UnMapLS( classPtr
->segMenuName
);
244 classPtr
->segMenuName
= 0;
245 if (HIWORD(classPtr
->menuName
)) HeapFree( GetProcessHeap(), 0, classPtr
->menuName
);
248 DWORD lenA
= strlen(name
) + 1;
249 DWORD lenW
= MultiByteToWideChar( CP_ACP
, 0, name
, lenA
, NULL
, 0 );
250 classPtr
->menuName
= HeapAlloc( GetProcessHeap(), 0, lenA
+ lenW
*sizeof(WCHAR
) );
251 MultiByteToWideChar( CP_ACP
, 0, name
, lenA
, classPtr
->menuName
, lenW
);
252 memcpy( classPtr
->menuName
+ lenW
, name
, lenA
);
254 else classPtr
->menuName
= (LPWSTR
)name
;
258 /***********************************************************************
261 * Set the menu name in a class structure by copying the string.
263 static void CLASS_SetMenuNameW( CLASS
*classPtr
, LPCWSTR name
)
265 UnMapLS( classPtr
->segMenuName
);
266 classPtr
->segMenuName
= 0;
267 if (HIWORD(classPtr
->menuName
)) HeapFree( GetProcessHeap(), 0, classPtr
->menuName
);
270 DWORD lenW
= strlenW(name
) + 1;
271 DWORD lenA
= WideCharToMultiByte( CP_ACP
, 0, name
, lenW
, NULL
, 0, NULL
, NULL
);
272 classPtr
->menuName
= HeapAlloc( GetProcessHeap(), 0, lenA
+ lenW
*sizeof(WCHAR
) );
273 memcpy( classPtr
->menuName
, name
, lenW
*sizeof(WCHAR
) );
274 WideCharToMultiByte( CP_ACP
, 0, name
, lenW
,
275 (char *)(classPtr
->menuName
+ lenW
), lenA
, NULL
, NULL
);
277 else classPtr
->menuName
= (LPWSTR
)name
;
281 /***********************************************************************
284 * Free a class structure.
286 static void CLASS_FreeClass( CLASS
*classPtr
)
288 TRACE("%p\n", classPtr
);
292 list_remove( &classPtr
->entry
);
293 if (classPtr
->hbrBackground
> (HBRUSH
)(COLOR_GRADIENTINACTIVECAPTION
+ 1))
294 DeleteObject( classPtr
->hbrBackground
);
295 UnMapLS( classPtr
->segMenuName
);
296 HeapFree( GetProcessHeap(), 0, classPtr
->menuName
);
297 HeapFree( GetProcessHeap(), 0, classPtr
);
302 /***********************************************************************
303 * CLASS_FreeModuleClasses
305 void CLASS_FreeModuleClasses( HMODULE16 hModule
)
307 struct list
*ptr
, *next
;
309 TRACE("0x%08x\n", hModule
);
312 for (ptr
= list_head( &class_list
); ptr
; ptr
= next
)
314 CLASS
*class = LIST_ENTRY( ptr
, CLASS
, entry
);
315 next
= list_next( &class_list
, ptr
);
316 if (class->hInstance
== HINSTANCE_32(hModule
))
320 SERVER_START_REQ( destroy_class
)
322 req
->atom
= class->atomName
;
323 req
->instance
= class->hInstance
;
324 ret
= !wine_server_call_err( req
);
327 if (ret
) CLASS_FreeClass( class );
334 /***********************************************************************
335 * CLASS_FindClassByAtom
337 * Return a pointer to the class.
338 * hinstance has been normalized by the caller.
340 static CLASS
*CLASS_FindClassByAtom( ATOM atom
, HINSTANCE hinstance
)
346 LIST_FOR_EACH( ptr
, &class_list
)
348 CLASS
*class = LIST_ENTRY( ptr
, CLASS
, entry
);
349 if (class->atomName
!= atom
) continue;
350 if (!hinstance
|| !class->local
|| class->hInstance
== hinstance
)
352 TRACE("0x%04x %p -> %p\n", atom
, hinstance
, class);
357 TRACE("0x%04x %p -> not found\n", atom
, hinstance
);
362 /***********************************************************************
363 * CLASS_RegisterClass
365 * The real RegisterClass() functionality.
366 * The atom is deleted no matter what.
368 static CLASS
*CLASS_RegisterClass( ATOM atom
, HINSTANCE hInstance
, BOOL local
,
369 DWORD style
, INT classExtra
, INT winExtra
)
374 TRACE("atom=0x%x hinst=%p style=0x%lx clExtr=0x%x winExtr=0x%x\n",
375 atom
, hInstance
, style
, classExtra
, winExtra
);
377 /* Fix the extra bytes value */
379 if (classExtra
< 0 || winExtra
< 0)
381 SetLastError( ERROR_INVALID_PARAMETER
);
384 if (classExtra
> 40) /* Extra bytes are limited to 40 in Win32 */
385 WARN("Class extra bytes %d is > 40\n", classExtra
);
386 if (winExtra
> 40) /* Extra bytes are limited to 40 in Win32 */
387 WARN("Win extra bytes %d is > 40\n", winExtra
);
389 classPtr
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(CLASS
) + classExtra
);
392 GlobalDeleteAtom( atom
);
396 SERVER_START_REQ( create_class
)
401 req
->instance
= hInstance
;
402 req
->extra
= classExtra
;
403 req
->win_extra
= winExtra
;
404 req
->client_ptr
= classPtr
;
405 ret
= !wine_server_call_err( req
);
408 GlobalDeleteAtom( atom
); /* the server increased the atom ref count */
411 HeapFree( GetProcessHeap(), 0, classPtr
);
415 classPtr
->style
= style
;
416 classPtr
->local
= local
;
417 classPtr
->cbWndExtra
= winExtra
;
418 classPtr
->cbClsExtra
= classExtra
;
419 classPtr
->hInstance
= hInstance
;
420 classPtr
->atomName
= atom
;
422 /* Other non-null values must be set by caller */
425 if (local
) list_add_head( &class_list
, &classPtr
->entry
);
426 else list_add_tail( &class_list
, &classPtr
->entry
);
431 /***********************************************************************
434 * Register a builtin control class.
435 * This allows having both ASCII and Unicode winprocs for the same class.
437 static CLASS
*register_builtin( const struct builtin_class_descr
*descr
)
442 if (!(atom
= GlobalAddAtomA( descr
->name
))) return 0;
444 if (!(classPtr
= CLASS_RegisterClass( atom
, user32_module
, FALSE
,
445 descr
->style
, 0, descr
->extra
))) return 0;
447 classPtr
->hCursor
= LoadCursorA( 0, (LPSTR
)descr
->cursor
);
448 classPtr
->hbrBackground
= descr
->brush
;
450 if (descr
->procA
) classPtr
->winprocA
= WINPROC_AllocProc( descr
->procA
, WIN_PROC_32A
);
451 if (descr
->procW
) classPtr
->winprocW
= WINPROC_AllocProc( descr
->procW
, WIN_PROC_32W
);
452 release_class_ptr( classPtr
);
457 /***********************************************************************
458 * CLASS_RegisterBuiltinClasses
460 void CLASS_RegisterBuiltinClasses(void)
462 extern const struct builtin_class_descr BUTTON_builtin_class
;
463 extern const struct builtin_class_descr COMBO_builtin_class
;
464 extern const struct builtin_class_descr COMBOLBOX_builtin_class
;
465 extern const struct builtin_class_descr DIALOG_builtin_class
;
466 extern const struct builtin_class_descr DESKTOP_builtin_class
;
467 extern const struct builtin_class_descr EDIT_builtin_class
;
468 extern const struct builtin_class_descr ICONTITLE_builtin_class
;
469 extern const struct builtin_class_descr LISTBOX_builtin_class
;
470 extern const struct builtin_class_descr MDICLIENT_builtin_class
;
471 extern const struct builtin_class_descr MENU_builtin_class
;
472 extern const struct builtin_class_descr SCROLL_builtin_class
;
473 extern const struct builtin_class_descr STATIC_builtin_class
;
475 register_builtin( &DESKTOP_builtin_class
);
476 register_builtin( &BUTTON_builtin_class
);
477 register_builtin( &COMBO_builtin_class
);
478 register_builtin( &COMBOLBOX_builtin_class
);
479 register_builtin( &DIALOG_builtin_class
);
480 register_builtin( &EDIT_builtin_class
);
481 register_builtin( &ICONTITLE_builtin_class
);
482 register_builtin( &LISTBOX_builtin_class
);
483 register_builtin( &MDICLIENT_builtin_class
);
484 register_builtin( &MENU_builtin_class
);
485 register_builtin( &SCROLL_builtin_class
);
486 register_builtin( &STATIC_builtin_class
);
490 /***********************************************************************
493 * Add a new window using this class, and set the necessary
494 * information inside the window structure.
496 void CLASS_AddWindow( CLASS
*class, WND
*win
, WINDOWPROCTYPE type
)
498 if (type
== WIN_PROC_32W
)
500 if (!(win
->winproc
= class->winprocW
)) win
->winproc
= class->winprocA
;
504 if (!(win
->winproc
= class->winprocA
)) win
->winproc
= class->winprocW
;
507 win
->clsStyle
= class->style
;
511 /***********************************************************************
512 * RegisterClassA (USER32.@)
514 * >0: Unique identifier
517 ATOM WINAPI
RegisterClassA( const WNDCLASSA
* wc
) /* [in] Address of structure with class data */
521 wcex
.cbSize
= sizeof(wcex
);
522 wcex
.style
= wc
->style
;
523 wcex
.lpfnWndProc
= wc
->lpfnWndProc
;
524 wcex
.cbClsExtra
= wc
->cbClsExtra
;
525 wcex
.cbWndExtra
= wc
->cbWndExtra
;
526 wcex
.hInstance
= wc
->hInstance
;
527 wcex
.hIcon
= wc
->hIcon
;
528 wcex
.hCursor
= wc
->hCursor
;
529 wcex
.hbrBackground
= wc
->hbrBackground
;
530 wcex
.lpszMenuName
= wc
->lpszMenuName
;
531 wcex
.lpszClassName
= wc
->lpszClassName
;
533 return RegisterClassExA( &wcex
);
537 /***********************************************************************
538 * RegisterClassW (USER32.@)
540 ATOM WINAPI
RegisterClassW( const WNDCLASSW
* wc
)
544 wcex
.cbSize
= sizeof(wcex
);
545 wcex
.style
= wc
->style
;
546 wcex
.lpfnWndProc
= wc
->lpfnWndProc
;
547 wcex
.cbClsExtra
= wc
->cbClsExtra
;
548 wcex
.cbWndExtra
= wc
->cbWndExtra
;
549 wcex
.hInstance
= wc
->hInstance
;
550 wcex
.hIcon
= wc
->hIcon
;
551 wcex
.hCursor
= wc
->hCursor
;
552 wcex
.hbrBackground
= wc
->hbrBackground
;
553 wcex
.lpszMenuName
= wc
->lpszMenuName
;
554 wcex
.lpszClassName
= wc
->lpszClassName
;
556 return RegisterClassExW( &wcex
);
560 /***********************************************************************
561 * RegisterClassExA (USER32.@)
563 ATOM WINAPI
RegisterClassExA( const WNDCLASSEXA
* wc
)
569 if (wc
->hInstance
== user32_module
)
571 /* we can't register a class for user32 */
572 SetLastError( ERROR_INVALID_PARAMETER
);
575 if (!(instance
= wc
->hInstance
)) instance
= GetModuleHandleW( NULL
);
577 if (!(atom
= GlobalAddAtomA( wc
->lpszClassName
))) return 0;
579 if (!(classPtr
= CLASS_RegisterClass( atom
, instance
, !(wc
->style
& CS_GLOBALCLASS
),
580 wc
->style
, wc
->cbClsExtra
, wc
->cbWndExtra
)))
583 TRACE("atom=%04x wndproc=%p hinst=%p bg=%p style=%08x clsExt=%d winExt=%d class=%p\n",
584 atom
, wc
->lpfnWndProc
, instance
, wc
->hbrBackground
,
585 wc
->style
, wc
->cbClsExtra
, wc
->cbWndExtra
, classPtr
);
587 classPtr
->hIcon
= wc
->hIcon
;
588 classPtr
->hIconSm
= wc
->hIconSm
;
589 classPtr
->hCursor
= wc
->hCursor
;
590 classPtr
->hbrBackground
= wc
->hbrBackground
;
591 classPtr
->winprocA
= WINPROC_AllocProc( wc
->lpfnWndProc
, WIN_PROC_32A
);
592 CLASS_SetMenuNameA( classPtr
, wc
->lpszMenuName
);
593 release_class_ptr( classPtr
);
598 /***********************************************************************
599 * RegisterClassExW (USER32.@)
601 ATOM WINAPI
RegisterClassExW( const WNDCLASSEXW
* wc
)
607 if (wc
->hInstance
== user32_module
)
609 /* we can't register a class for user32 */
610 SetLastError( ERROR_INVALID_PARAMETER
);
613 if (!(instance
= wc
->hInstance
)) instance
= GetModuleHandleW( NULL
);
615 if (!(atom
= GlobalAddAtomW( wc
->lpszClassName
))) return 0;
617 if (!(classPtr
= CLASS_RegisterClass( atom
, instance
, !(wc
->style
& CS_GLOBALCLASS
),
618 wc
->style
, wc
->cbClsExtra
, wc
->cbWndExtra
)))
621 TRACE("atom=%04x wndproc=%p hinst=%p bg=%p style=%08x clsExt=%d winExt=%d class=%p\n",
622 atom
, wc
->lpfnWndProc
, instance
, wc
->hbrBackground
,
623 wc
->style
, wc
->cbClsExtra
, wc
->cbWndExtra
, classPtr
);
625 classPtr
->hIcon
= wc
->hIcon
;
626 classPtr
->hIconSm
= wc
->hIconSm
;
627 classPtr
->hCursor
= wc
->hCursor
;
628 classPtr
->hbrBackground
= wc
->hbrBackground
;
629 classPtr
->winprocW
= WINPROC_AllocProc( wc
->lpfnWndProc
, WIN_PROC_32W
);
630 CLASS_SetMenuNameW( classPtr
, wc
->lpszMenuName
);
631 release_class_ptr( classPtr
);
636 /***********************************************************************
637 * UnregisterClassA (USER32.@)
639 BOOL WINAPI
UnregisterClassA( LPCSTR className
, HINSTANCE hInstance
)
641 ATOM atom
= HIWORD(className
) ? GlobalFindAtomA( className
) : LOWORD(className
);
642 return UnregisterClassW( MAKEINTATOMW(atom
), hInstance
);
645 /***********************************************************************
646 * UnregisterClassW (USER32.@)
648 BOOL WINAPI
UnregisterClassW( LPCWSTR className
, HINSTANCE hInstance
)
650 CLASS
*classPtr
= NULL
;
651 ATOM atom
= HIWORD(className
) ? GlobalFindAtomW( className
) : LOWORD(className
);
653 TRACE("%s %p %x\n",debugstr_w(className
), hInstance
, atom
);
657 SetLastError( ERROR_CLASS_DOES_NOT_EXIST
);
661 SERVER_START_REQ( destroy_class
)
664 req
->instance
= hInstance
;
665 if (!wine_server_call_err( req
)) classPtr
= reply
->client_ptr
;
669 if (classPtr
) CLASS_FreeClass( classPtr
);
670 return (classPtr
!= NULL
);
674 /***********************************************************************
675 * GetClassWord (USER32.@)
677 WORD WINAPI
GetClassWord( HWND hwnd
, INT offset
)
682 if (offset
< 0) return GetClassLongA( hwnd
, offset
);
684 TRACE("%p %x\n",hwnd
, offset
);
686 if (!(class = get_class_ptr( hwnd
, FALSE
))) return 0;
688 if (class == CLASS_OTHER_PROCESS
)
690 SERVER_START_REQ( set_class_info
)
694 req
->extra_offset
= offset
;
695 req
->extra_size
= sizeof(retvalue
);
696 if (!wine_server_call_err( req
))
697 memcpy( &retvalue
, &reply
->old_extra_value
, sizeof(retvalue
) );
703 if (offset
<= class->cbClsExtra
- sizeof(WORD
))
704 memcpy( &retvalue
, (char *)(class + 1) + offset
, sizeof(retvalue
) );
706 SetLastError( ERROR_INVALID_INDEX
);
707 release_class_ptr( class );
712 /***********************************************************************
713 * GetClassLong (USER.131)
715 LONG WINAPI
GetClassLong16( HWND16 hwnd16
, INT16 offset
)
719 HWND hwnd
= (HWND
)(ULONG_PTR
)hwnd16
; /* no need for full handle */
721 TRACE("%p %d\n",hwnd
, offset
);
726 if (!(class = get_class_ptr( hwnd
, FALSE
))) return 0;
727 if (class == CLASS_OTHER_PROCESS
) break;
728 ret
= (LONG
)CLASS_GetProc( class, WIN_PROC_16
);
729 release_class_ptr( class );
732 if (!(class = get_class_ptr( hwnd
, FALSE
))) return 0;
733 if (class == CLASS_OTHER_PROCESS
) break;
734 ret
= (LONG
)CLASS_GetMenuName16( class );
735 release_class_ptr( class );
738 return GetClassLongA( hwnd
, offset
);
740 FIXME( "offset %d not supported on other process window %p\n", offset
, hwnd
);
741 SetLastError( ERROR_INVALID_HANDLE
);
746 /***********************************************************************
747 * GetClassLongW (USER32.@)
749 DWORD WINAPI
GetClassLongW( HWND hwnd
, INT offset
)
754 TRACE("%p %d\n", hwnd
, offset
);
756 if (!(class = get_class_ptr( hwnd
, FALSE
))) return 0;
758 if (class == CLASS_OTHER_PROCESS
)
760 SERVER_START_REQ( set_class_info
)
764 req
->extra_offset
= (offset
>= 0) ? offset
: -1;
765 req
->extra_size
= (offset
>= 0) ? sizeof(retvalue
) : 0;
766 if (!wine_server_call_err( req
))
770 case GCLP_HBRBACKGROUND
:
776 FIXME( "offset %d not supported on other process window %p\n", offset
, hwnd
);
777 SetLastError( ERROR_INVALID_HANDLE
);
780 retvalue
= reply
->old_style
;
783 retvalue
= reply
->old_win_extra
;
786 retvalue
= reply
->old_extra
;
789 retvalue
= (DWORD
)reply
->old_instance
;
792 retvalue
= reply
->old_atom
;
795 if (offset
>= 0) memcpy( &retvalue
, &reply
->old_extra_value
, sizeof(retvalue
) );
796 else SetLastError( ERROR_INVALID_INDEX
);
807 if (offset
<= class->cbClsExtra
- sizeof(LONG
))
808 memcpy( &retvalue
, (char *)(class + 1) + offset
, sizeof(retvalue
) );
810 SetLastError( ERROR_INVALID_INDEX
);
811 release_class_ptr( class );
817 case GCLP_HBRBACKGROUND
:
818 retvalue
= (DWORD
)class->hbrBackground
;
821 retvalue
= (DWORD
)class->hCursor
;
824 retvalue
= (DWORD
)class->hIcon
;
827 retvalue
= (DWORD
)class->hIconSm
;
830 retvalue
= (DWORD
)class->style
;
833 retvalue
= (DWORD
)class->cbWndExtra
;
836 retvalue
= (DWORD
)class->cbClsExtra
;
839 retvalue
= (DWORD
)class->hInstance
;
842 retvalue
= (DWORD
)CLASS_GetProc( class, WIN_PROC_32W
);
845 retvalue
= (DWORD
)CLASS_GetMenuNameW( class );
848 retvalue
= (DWORD
)class->atomName
;
851 SetLastError( ERROR_INVALID_INDEX
);
854 release_class_ptr( class );
859 /***********************************************************************
860 * GetClassLongA (USER32.@)
862 DWORD WINAPI
GetClassLongA( HWND hwnd
, INT offset
)
867 if (offset
!= GCLP_WNDPROC
&& offset
!= GCLP_MENUNAME
)
868 return GetClassLongW( hwnd
, offset
);
870 TRACE("%p %d\n", hwnd
, offset
);
872 if (!(class = get_class_ptr( hwnd
, FALSE
))) return 0;
874 if (class == CLASS_OTHER_PROCESS
)
876 FIXME( "offset %d not supported on other process window %p\n", offset
, hwnd
);
877 SetLastError( ERROR_INVALID_HANDLE
);
881 if (offset
== GCLP_WNDPROC
)
882 retvalue
= (DWORD
)CLASS_GetProc( class, WIN_PROC_32A
);
883 else /* GCL_MENUNAME */
884 retvalue
= (DWORD
)CLASS_GetMenuNameA( class );
886 release_class_ptr( class );
891 /***********************************************************************
892 * SetClassWord (USER32.@)
894 WORD WINAPI
SetClassWord( HWND hwnd
, INT offset
, WORD newval
)
899 if (offset
< 0) return SetClassLongA( hwnd
, offset
, (DWORD
)newval
);
901 TRACE("%p %d %x\n", hwnd
, offset
, newval
);
903 if (!(class = get_class_ptr( hwnd
, TRUE
))) return 0;
905 SERVER_START_REQ( set_class_info
)
908 req
->flags
= SET_CLASS_EXTRA
;
909 req
->extra_offset
= offset
;
910 req
->extra_size
= sizeof(newval
);
911 memcpy( &req
->extra_value
, &newval
, sizeof(newval
) );
912 if (!wine_server_call_err( req
))
914 void *ptr
= (char *)(class + 1) + offset
;
915 memcpy( &retval
, ptr
, sizeof(retval
) );
916 memcpy( ptr
, &newval
, sizeof(newval
) );
920 release_class_ptr( class );
925 /***********************************************************************
926 * SetClassLong (USER.132)
928 LONG WINAPI
SetClassLong16( HWND16 hwnd16
, INT16 offset
, LONG newval
)
932 HWND hwnd
= (HWND
)(ULONG_PTR
)hwnd16
; /* no need for full handle */
934 TRACE("%p %d %lx\n", hwnd
, offset
, newval
);
939 if (!(class = get_class_ptr( hwnd
, TRUE
))) return 0;
940 retval
= (LONG
)CLASS_SetProc( class, (WNDPROC
)newval
, WIN_PROC_16
);
941 release_class_ptr( class );
944 newval
= (LONG
)MapSL( newval
);
947 return SetClassLongA( hwnd
, offset
, newval
);
952 /***********************************************************************
953 * SetClassLongW (USER32.@)
955 DWORD WINAPI
SetClassLongW( HWND hwnd
, INT offset
, LONG newval
)
960 TRACE("%p %d %lx\n", hwnd
, offset
, newval
);
962 if (!(class = get_class_ptr( hwnd
, TRUE
))) return 0;
966 if (set_server_info( hwnd
, offset
, newval
))
968 void *ptr
= (char *)(class + 1) + offset
;
969 memcpy( &retval
, ptr
, sizeof(retval
) );
970 memcpy( ptr
, &newval
, sizeof(newval
) );
976 CLASS_SetMenuNameW( class, (LPCWSTR
)newval
);
977 retval
= 0; /* Old value is now meaningless anyway */
980 retval
= (DWORD
)CLASS_SetProc( class, (WNDPROC
)newval
, WIN_PROC_32W
);
982 case GCLP_HBRBACKGROUND
:
983 retval
= (DWORD
)class->hbrBackground
;
984 class->hbrBackground
= (HBRUSH
)newval
;
987 retval
= (DWORD
)class->hCursor
;
988 class->hCursor
= (HCURSOR
)newval
;
991 retval
= (DWORD
)class->hIcon
;
992 class->hIcon
= (HICON
)newval
;
995 retval
= (DWORD
)class->hIconSm
;
996 class->hIconSm
= (HICON
)newval
;
999 if (!set_server_info( hwnd
, offset
, newval
)) break;
1000 retval
= (DWORD
)class->style
;
1001 class->style
= newval
;
1003 case GCL_CBWNDEXTRA
:
1004 if (!set_server_info( hwnd
, offset
, newval
)) break;
1005 retval
= (DWORD
)class->cbWndExtra
;
1006 class->cbWndExtra
= newval
;
1009 if (!set_server_info( hwnd
, offset
, newval
)) break;
1010 retval
= (DWORD
)class->hInstance
;
1011 class->hInstance
= (HINSTANCE
)newval
;
1014 if (!set_server_info( hwnd
, offset
, newval
)) break;
1015 retval
= (DWORD
)class->atomName
;
1016 class->atomName
= newval
;
1018 case GCL_CBCLSEXTRA
: /* cannot change this one */
1019 SetLastError( ERROR_INVALID_PARAMETER
);
1022 SetLastError( ERROR_INVALID_INDEX
);
1025 release_class_ptr( class );
1030 /***********************************************************************
1031 * SetClassLongA (USER32.@)
1033 DWORD WINAPI
SetClassLongA( HWND hwnd
, INT offset
, LONG newval
)
1038 if (offset
!= GCLP_WNDPROC
&& offset
!= GCLP_MENUNAME
)
1039 return SetClassLongW( hwnd
, offset
, newval
);
1041 TRACE("%p %d %lx\n", hwnd
, offset
, newval
);
1043 if (!(class = get_class_ptr( hwnd
, TRUE
))) return 0;
1045 if (offset
== GCLP_WNDPROC
)
1046 retval
= (DWORD
)CLASS_SetProc( class, (WNDPROC
)newval
, WIN_PROC_32A
);
1047 else /* GCL_MENUNAME */
1049 CLASS_SetMenuNameA( class, (LPCSTR
)newval
);
1050 retval
= 0; /* Old value is now meaningless anyway */
1052 release_class_ptr( class );
1057 /***********************************************************************
1058 * GetClassNameA (USER32.@)
1060 INT WINAPI
GetClassNameA( HWND hwnd
, LPSTR buffer
, INT count
)
1062 INT ret
= GlobalGetAtomNameA( GetClassLongA( hwnd
, GCW_ATOM
), buffer
, count
);
1064 TRACE("%p %s %x\n",hwnd
, debugstr_a(buffer
), count
);
1069 /***********************************************************************
1070 * GetClassNameW (USER32.@)
1072 INT WINAPI
GetClassNameW( HWND hwnd
, LPWSTR buffer
, INT count
)
1074 INT ret
= GlobalGetAtomNameW( GetClassLongW( hwnd
, GCW_ATOM
), buffer
, count
);
1076 TRACE("%p %s %x\n",hwnd
, debugstr_w(buffer
), count
);
1081 /***********************************************************************
1082 * RealGetWindowClassA (USER32.@)
1084 UINT WINAPI
RealGetWindowClassA( HWND hwnd
, LPSTR buffer
, UINT count
)
1086 return GetClassNameA( hwnd
, buffer
, count
);
1090 /***********************************************************************
1091 * RealGetWindowClassW (USER32.@)
1093 UINT WINAPI
RealGetWindowClassW( HWND hwnd
, LPWSTR buffer
, UINT count
)
1095 return GetClassNameW( hwnd
, buffer
, count
);
1099 /***********************************************************************
1100 * GetClassInfoA (USER32.@)
1102 BOOL WINAPI
GetClassInfoA( HINSTANCE hInstance
, LPCSTR name
, WNDCLASSA
*wc
)
1105 UINT ret
= GetClassInfoExA( hInstance
, name
, &wcex
);
1109 wc
->style
= wcex
.style
;
1110 wc
->lpfnWndProc
= wcex
.lpfnWndProc
;
1111 wc
->cbClsExtra
= wcex
.cbClsExtra
;
1112 wc
->cbWndExtra
= wcex
.cbWndExtra
;
1113 wc
->hInstance
= wcex
.hInstance
;
1114 wc
->hIcon
= wcex
.hIcon
;
1115 wc
->hCursor
= wcex
.hCursor
;
1116 wc
->hbrBackground
= wcex
.hbrBackground
;
1117 wc
->lpszMenuName
= wcex
.lpszMenuName
;
1118 wc
->lpszClassName
= wcex
.lpszClassName
;
1124 /***********************************************************************
1125 * GetClassInfoW (USER32.@)
1127 BOOL WINAPI
GetClassInfoW( HINSTANCE hInstance
, LPCWSTR name
, WNDCLASSW
*wc
)
1130 UINT ret
= GetClassInfoExW( hInstance
, name
, &wcex
);
1134 wc
->style
= wcex
.style
;
1135 wc
->lpfnWndProc
= wcex
.lpfnWndProc
;
1136 wc
->cbClsExtra
= wcex
.cbClsExtra
;
1137 wc
->cbWndExtra
= wcex
.cbWndExtra
;
1138 wc
->hInstance
= wcex
.hInstance
;
1139 wc
->hIcon
= wcex
.hIcon
;
1140 wc
->hCursor
= wcex
.hCursor
;
1141 wc
->hbrBackground
= wcex
.hbrBackground
;
1142 wc
->lpszMenuName
= wcex
.lpszMenuName
;
1143 wc
->lpszClassName
= wcex
.lpszClassName
;
1149 /***********************************************************************
1150 * GetClassInfoExA (USER32.@)
1152 BOOL WINAPI
GetClassInfoExA( HINSTANCE hInstance
, LPCSTR name
, WNDCLASSEXA
*wc
)
1154 ATOM atom
= HIWORD(name
) ? GlobalFindAtomA( name
) : LOWORD(name
);
1157 TRACE("%p %s %x %p\n", hInstance
, debugstr_a(name
), atom
, wc
);
1159 if (!hInstance
) hInstance
= user32_module
;
1161 if (!atom
|| !(classPtr
= CLASS_FindClassByAtom( atom
, hInstance
)))
1163 SetLastError( ERROR_CLASS_DOES_NOT_EXIST
);
1166 wc
->style
= classPtr
->style
;
1167 wc
->lpfnWndProc
= (WNDPROC
)CLASS_GetProc( classPtr
, WIN_PROC_32A
);
1168 wc
->cbClsExtra
= classPtr
->cbClsExtra
;
1169 wc
->cbWndExtra
= classPtr
->cbWndExtra
;
1170 wc
->hInstance
= (hInstance
== user32_module
) ? 0 : hInstance
;
1171 wc
->hIcon
= (HICON
)classPtr
->hIcon
;
1172 wc
->hIconSm
= (HICON
)classPtr
->hIconSm
;
1173 wc
->hCursor
= (HCURSOR
)classPtr
->hCursor
;
1174 wc
->hbrBackground
= (HBRUSH
)classPtr
->hbrBackground
;
1175 wc
->lpszMenuName
= CLASS_GetMenuNameA( classPtr
);
1176 wc
->lpszClassName
= name
;
1177 release_class_ptr( classPtr
);
1179 /* We must return the atom of the class here instead of just TRUE. */
1184 /***********************************************************************
1185 * GetClassInfoExW (USER32.@)
1187 BOOL WINAPI
GetClassInfoExW( HINSTANCE hInstance
, LPCWSTR name
, WNDCLASSEXW
*wc
)
1189 ATOM atom
= HIWORD(name
) ? GlobalFindAtomW( name
) : LOWORD(name
);
1192 TRACE("%p %s %x %p\n", hInstance
, debugstr_w(name
), atom
, wc
);
1194 if (!hInstance
) hInstance
= user32_module
;
1196 if (!atom
|| !(classPtr
= CLASS_FindClassByAtom( atom
, hInstance
)))
1198 SetLastError( ERROR_CLASS_DOES_NOT_EXIST
);
1201 wc
->style
= classPtr
->style
;
1202 wc
->lpfnWndProc
= (WNDPROC
)CLASS_GetProc( classPtr
, WIN_PROC_32W
);
1203 wc
->cbClsExtra
= classPtr
->cbClsExtra
;
1204 wc
->cbWndExtra
= classPtr
->cbWndExtra
;
1205 wc
->hInstance
= (hInstance
== user32_module
) ? 0 : hInstance
;
1206 wc
->hIcon
= (HICON
)classPtr
->hIcon
;
1207 wc
->hIconSm
= (HICON
)classPtr
->hIconSm
;
1208 wc
->hCursor
= (HCURSOR
)classPtr
->hCursor
;
1209 wc
->hbrBackground
= (HBRUSH
)classPtr
->hbrBackground
;
1210 wc
->lpszMenuName
= CLASS_GetMenuNameW( classPtr
);
1211 wc
->lpszClassName
= name
;
1212 release_class_ptr( classPtr
);
1214 /* We must return the atom of the class here instead of just TRUE. */
1219 #if 0 /* toolhelp is in kernel, so this cannot work */
1221 /***********************************************************************
1222 * ClassFirst (TOOLHELP.69)
1224 BOOL16 WINAPI
ClassFirst16( CLASSENTRY
*pClassEntry
)
1226 TRACE("%p\n",pClassEntry
);
1227 pClassEntry
->wNext
= 1;
1228 return ClassNext16( pClassEntry
);
1232 /***********************************************************************
1233 * ClassNext (TOOLHELP.70)
1235 BOOL16 WINAPI
ClassNext16( CLASSENTRY
*pClassEntry
)
1238 CLASS
*class = firstClass
;
1240 TRACE("%p\n",pClassEntry
);
1242 if (!pClassEntry
->wNext
) return FALSE
;
1243 for (i
= 1; (i
< pClassEntry
->wNext
) && class; i
++) class = class->next
;
1246 pClassEntry
->wNext
= 0;
1249 pClassEntry
->hInst
= class->hInstance
;
1250 pClassEntry
->wNext
++;
1251 GlobalGetAtomNameA( class->atomName
, pClassEntry
->szClassName
,
1252 sizeof(pClassEntry
->szClassName
) );