2 * Theming - Initialization
4 * Copyright (c) 2005 by Frank Richter
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
29 #include "wine/debug.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(theming
);
33 typedef LRESULT (CALLBACK
* THEMING_SUBCLASSPROC
)(HWND
, UINT
, WPARAM
, LPARAM
,
36 extern LRESULT CALLBACK
THEMING_ComboSubclassProc (HWND
, UINT
, WPARAM
, LPARAM
,
38 extern LRESULT CALLBACK
THEMING_DialogSubclassProc (HWND
, UINT
, WPARAM
, LPARAM
,
40 extern LRESULT CALLBACK
THEMING_EditSubclassProc (HWND
, UINT
, WPARAM
, LPARAM
,
42 extern LRESULT CALLBACK
THEMING_ListBoxSubclassProc (HWND
, UINT
, WPARAM
, LPARAM
,
45 static const WCHAR dialogClass
[] = {'#','3','2','7','7','0',0};
46 static const WCHAR comboLboxClass
[] = {'C','o','m','b','o','L','b','o','x',0};
48 static const struct ThemingSubclass
50 const WCHAR
* className
;
51 THEMING_SUBCLASSPROC subclassProc
;
53 /* Note: list must be sorted by class name */
54 {dialogClass
, THEMING_DialogSubclassProc
},
55 {WC_COMBOBOXW
, THEMING_ComboSubclassProc
},
56 {comboLboxClass
, THEMING_ListBoxSubclassProc
},
57 {WC_EDITW
, THEMING_EditSubclassProc
},
58 {WC_LISTBOXW
, THEMING_ListBoxSubclassProc
}
61 #define NUM_SUBCLASSES (sizeof(subclasses)/sizeof(subclasses[0]))
63 static WNDPROC originalProcs
[NUM_SUBCLASSES
];
64 static ATOM atRefDataProp
;
65 static ATOM atSubclassProp
;
67 /* Generate a number of subclass window procs.
68 * With a single proc alone, we can't really reliably find out the superclass,
69 * so have one for each subclass. The subclass number is also stored in a prop
70 * since it's needed by THEMING_CallOriginalClass(). Then, the the subclass
71 * proc and ref data are fetched and the proc called.
73 #define MAKE_SUBCLASS_PROC(N) \
74 static LRESULT CALLBACK subclass_proc ## N (HWND wnd, UINT msg, \
75 WPARAM wParam, LPARAM lParam) \
79 SetPropW (wnd, MAKEINTATOMW (atSubclassProp), (HANDLE)N); \
80 refData = (ULONG_PTR)GetPropW (wnd, MAKEINTATOMW (atRefDataProp)); \
81 TRACE ("%d; (%p, %x, %x, %lx, %lx)\n", N, wnd, msg, wParam, lParam, \
83 result = subclasses[N].subclassProc (wnd, msg, wParam, lParam, refData);\
84 TRACE ("result = %lx\n", result); \
94 const static WNDPROC subclassProcs
[NUM_SUBCLASSES
] = {
102 /***********************************************************************
105 * Register classes for standard controls that will shadow the system
108 void THEMING_Initialize (void)
111 static const WCHAR subclassPropName
[] =
112 { 'C','C','3','2','T','h','e','m','i','n','g','S','u','b','C','l',0 };
113 static const WCHAR refDataPropName
[] =
114 { 'C','C','3','2','T','h','e','m','i','n','g','D','a','t','a',0 };
116 atSubclassProp
= GlobalAddAtomW (subclassPropName
);
117 atRefDataProp
= GlobalAddAtomW (refDataPropName
);
119 for (i
= 0; i
< NUM_SUBCLASSES
; i
++)
123 class.cbSize
= sizeof(class);
124 class.style
|= CS_GLOBALCLASS
;
125 GetClassInfoExW (NULL
, subclasses
[i
].className
, &class);
126 originalProcs
[i
] = class.lpfnWndProc
;
127 class.lpfnWndProc
= subclassProcs
[i
];
129 if (!class.lpfnWndProc
)
131 ERR("Missing proc for class %s\n",
132 debugstr_w (subclasses
[i
].className
));
136 if (!RegisterClassExW (&class))
138 ERR("Could not re-register class %s: %lx\n",
139 debugstr_w (subclasses
[i
].className
), GetLastError ());
143 TRACE("Re-registered class %s\n",
144 debugstr_w (subclasses
[i
].className
));
149 /***********************************************************************
150 * THEMING_Uninitialize
152 * Unregister shadow classes for standard controls.
154 void THEMING_Uninitialize (void)
157 for (i
= 0; i
< NUM_SUBCLASSES
; i
++)
159 UnregisterClassW (subclasses
[i
].className
, NULL
);
163 /***********************************************************************
164 * THEMING_CallOriginalClass
166 * Determines the original window proc and calls it.
168 LRESULT
THEMING_CallOriginalClass (HWND wnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
170 INT_PTR subclass
= (INT_PTR
)GetPropW (wnd
, MAKEINTATOMW (atSubclassProp
));
171 WNDPROC oldProc
= originalProcs
[subclass
];
172 return CallWindowProcW (oldProc
, wnd
, msg
, wParam
, lParam
);
175 /***********************************************************************
176 * THEMING_SetSubclassData
178 * Update the "refData" value of the subclassed window.
180 void THEMING_SetSubclassData (HWND wnd
, ULONG_PTR refData
)
182 SetPropW (wnd
, MAKEINTATOMW (atRefDataProp
), (HANDLE
)refData
);