[UXTHEME] -Use and RTL handle table for HTHEME handles. In this way we can ensure...
[reactos.git] / reactos / dll / win32 / uxtheme / uxthemep.h
1 #ifndef _UXTHEME_PCH_
2 #define _UXTHEME_PCH_
3
4 #include <stdarg.h>
5
6 #define WIN32_NO_STATUS
7 #define _INC_WINDOWS
8 #define COM_NO_WINDOWS_H
9
10 #include <windef.h>
11 #include <winbase.h>
12 #include <wingdi.h>
13 #include <winuser.h>
14 #include <winnls.h>
15 #include <windowsx.h>
16 #include <undocuser.h>
17 #include <undocgdi.h>
18 #include <uxtheme.h>
19 #include <uxundoc.h>
20 #include <vfwmsgs.h>
21 #include <tmschema.h>
22
23 #define NTOS_MODE_USER
24 #include <ndk/ntndk.h>
25 #include <ndk/rtltypes.h>
26
27 #include <wine/debug.h>
28 WINE_DEFAULT_DEBUG_CHANNEL(uxtheme);
29
30 #define TMT_ENUM 200
31
32 #define MAX_THEME_APP_NAME 60
33 #define MAX_THEME_CLASS_NAME 60
34 #define MAX_THEME_VALUE_NAME 60
35
36 typedef struct _THEME_PROPERTY {
37 int iPrimitiveType;
38 int iPropertyId;
39 PROPERTYORIGIN origin;
40
41 LPCWSTR lpValue;
42 DWORD dwValueLen;
43
44 struct _THEME_PROPERTY *next;
45 } THEME_PROPERTY, *PTHEME_PROPERTY;
46
47 typedef struct _THEME_PARTSTATE {
48 int iPartId;
49 int iStateId;
50 PTHEME_PROPERTY properties;
51
52 struct _THEME_PARTSTATE *next;
53 } THEME_PARTSTATE, *PTHEME_PARTSTATE;
54
55 struct _THEME_FILE;
56
57 typedef struct _THEME_CLASS {
58 HMODULE hTheme;
59 struct _THEME_FILE* tf;
60 WCHAR szAppName[MAX_THEME_APP_NAME];
61 WCHAR szClassName[MAX_THEME_CLASS_NAME];
62 PTHEME_PARTSTATE partstate;
63 struct _THEME_CLASS *overrides;
64
65 struct _THEME_CLASS *next;
66 } THEME_CLASS, *PTHEME_CLASS;
67
68 typedef struct _THEME_IMAGE {
69 WCHAR name[MAX_PATH];
70 HBITMAP image;
71 BOOL hasAlpha;
72
73 struct _THEME_IMAGE *next;
74 } THEME_IMAGE, *PTHEME_IMAGE;
75
76 typedef struct _THEME_FILE {
77 DWORD dwRefCount;
78 HMODULE hTheme;
79 WCHAR szThemeFile[MAX_PATH];
80 LPWSTR pszAvailColors;
81 LPWSTR pszAvailSizes;
82
83 LPWSTR pszSelectedColor;
84 LPWSTR pszSelectedSize;
85
86 PTHEME_CLASS classes;
87 PTHEME_PROPERTY metrics;
88 PTHEME_IMAGE images;
89 } THEME_FILE, *PTHEME_FILE;
90
91 typedef struct _UXINI_FILE *PUXINI_FILE;
92
93 typedef struct _UXTHEME_HANDLE
94 {
95 RTL_HANDLE_TABLE_ENTRY Handle;
96 PTHEME_CLASS pClass;
97 } UXTHEME_HANDLE, *PUXTHEME_HANDLE;
98
99 PTHEME_CLASS ValidateHandle(HTHEME hTheme);
100
101 HRESULT UXTHEME_LoadImage(HTHEME hTheme, HDC hdc, int iPartId, int iStateId, const RECT *pRect, BOOL glyph,
102 HBITMAP *hBmp, RECT *bmpRect, BOOL* hasImageAlpha);
103
104 BOOL MSSTYLES_LookupProperty(LPCWSTR pszPropertyName, int *dwPrimitive, int *dwId);
105 BOOL MSSTYLES_LookupEnum(LPCWSTR pszValueName, int dwEnum, int *dwValue);
106 BOOL MSSTYLES_LookupPartState(LPCWSTR pszClass, LPCWSTR pszPart, LPCWSTR pszState, int *iPartId, int *iStateId);
107
108 HRESULT MSSTYLES_OpenThemeFile(LPCWSTR lpThemeFile, LPCWSTR pszColorName, LPCWSTR pszSizeName, PTHEME_FILE *tf);
109 HRESULT MSSTYLES_ReferenceTheme(PTHEME_FILE tf);
110 void MSSTYLES_CloseThemeFile(PTHEME_FILE tf);
111 void MSSTYLES_ParseThemeIni(PTHEME_FILE tf);
112 PTHEME_CLASS MSSTYLES_OpenThemeClass(PTHEME_FILE tf, LPCWSTR pszAppName, LPCWSTR pszClassList);
113 HRESULT MSSTYLES_CloseThemeClass(PTHEME_CLASS tc);
114 PUXINI_FILE MSSTYLES_GetThemeIni(PTHEME_FILE tf);
115 PTHEME_PARTSTATE MSSTYLES_FindPartState(PTHEME_CLASS tc, int iPartId, int iStateId, PTHEME_CLASS *tcNext);
116 PTHEME_PROPERTY MSSTYLES_FindProperty(PTHEME_CLASS tc, int iPartId, int iStateId, int iPropertyPrimitive, int iPropertyId);
117 PTHEME_PROPERTY MSSTYLES_FindMetric(PTHEME_FILE tf, int iPropertyPrimitive, int iPropertyId);
118 HBITMAP MSSTYLES_LoadBitmap(PTHEME_CLASS tc, LPCWSTR lpFilename, BOOL* hasAlpha);
119
120 HRESULT MSSTYLES_GetPropertyBool(PTHEME_PROPERTY tp, BOOL *pfVal);
121 HRESULT MSSTYLES_GetPropertyColor(PTHEME_PROPERTY tp, COLORREF *pColor);
122 HRESULT MSSTYLES_GetPropertyFont(PTHEME_PROPERTY tp, HDC hdc, LOGFONTW *pFont);
123 HRESULT MSSTYLES_GetPropertyInt(PTHEME_PROPERTY tp, int *piVal);
124 HRESULT MSSTYLES_GetPropertyIntList(PTHEME_PROPERTY tp, INTLIST *pIntList);
125 HRESULT MSSTYLES_GetPropertyPosition(PTHEME_PROPERTY tp, POINT *pPoint);
126 HRESULT MSSTYLES_GetPropertyString(PTHEME_PROPERTY tp, LPWSTR pszBuff, int cchMaxBuffChars);
127 HRESULT MSSTYLES_GetPropertyRect(PTHEME_PROPERTY tp, RECT *pRect);
128 HRESULT MSSTYLES_GetPropertyMargins(PTHEME_PROPERTY tp, RECT *prc, MARGINS *pMargins);
129
130 PUXINI_FILE UXINI_LoadINI(HMODULE hTheme, LPCWSTR lpName);
131 void UXINI_CloseINI(PUXINI_FILE uf);
132 LPCWSTR UXINI_GetNextSection(PUXINI_FILE uf, DWORD *dwLen);
133 BOOL UXINI_FindSection(PUXINI_FILE uf, LPCWSTR lpName);
134 LPCWSTR UXINI_GetNextValue(PUXINI_FILE uf, DWORD *dwNameLen, LPCWSTR *lpValue, DWORD *dwValueLen);
135 BOOL UXINI_FindValue(PUXINI_FILE uf, LPCWSTR lpName, LPCWSTR *lpValue, DWORD *dwValueLen);
136
137 /* Scroll-bar hit testing */
138 enum SCROLL_HITTEST
139 {
140 SCROLL_NOWHERE, /* Outside the scroll bar */
141 SCROLL_TOP_ARROW, /* Top or left arrow */
142 SCROLL_TOP_RECT, /* Rectangle between the top arrow and the thumb */
143 SCROLL_THUMB, /* Thumb rectangle */
144 SCROLL_BOTTOM_RECT, /* Rectangle between the thumb and the bottom arrow */
145 SCROLL_BOTTOM_ARROW /* Bottom or right arrow */
146 };
147
148 /* The window context stores data for the window needed through the life of the window */
149 typedef struct _WND_DATA
150 {
151 HTHEME hthemeWindow;
152 HTHEME hthemeScrollbar;
153
154 UINT lastHitTest;
155 BOOL HasAppDefinedRgn;
156 BOOL HasThemeRgn;
157 BOOL UpdatingRgn;
158 BOOL DirtyThemeRegion;
159 HBRUSH hTabBackgroundBrush;
160 HBITMAP hTabBackgroundBmp;
161
162 BOOL SCROLL_trackVertical;
163 enum SCROLL_HITTEST SCROLL_trackHitTest;
164 BOOL SCROLL_MovingThumb; /* Is the moving thumb being displayed? */
165 HWND SCROLL_TrackingWin;
166 INT SCROLL_TrackingBar;
167 INT SCROLL_TrackingPos;
168 INT SCROLL_TrackingVal;
169 } WND_DATA, *PWND_DATA;
170
171 /* The draw context stores data that are needed by the drawing operations in the non client area of the window */
172 typedef struct _DRAW_CONTEXT
173 {
174 HWND hWnd;
175 HDC hDC;
176 HTHEME theme;
177 HTHEME scrolltheme;
178 HTHEME hPrevTheme;
179 WINDOWINFO wi;
180 BOOL Active; /* wi.dwWindowStatus isn't correct for mdi child windows */
181 HRGN hRgn;
182 int CaptionHeight;
183
184 /* for double buffering */
185 HDC hDCScreen;
186 HBITMAP hbmpOld;
187 } DRAW_CONTEXT, *PDRAW_CONTEXT;
188
189 typedef enum
190 {
191 CLOSEBUTTON,
192 MAXBUTTON,
193 MINBUTTON,
194 HELPBUTTON
195 } CAPTIONBUTTON;
196
197 /*
198 The following values specify all possible button states
199 Note that not all of them are documented but it is easy to
200 find them by opening a theme file
201 */
202 typedef enum {
203 BUTTON_NORMAL = 1 ,
204 BUTTON_HOT ,
205 BUTTON_PRESSED ,
206 BUTTON_DISABLED ,
207 BUTTON_INACTIVE
208 } THEME_BUTTON_STATES;
209
210 #define HT_ISBUTTON(ht) ((ht) == HTMINBUTTON || (ht) == HTMAXBUTTON || (ht) == HTCLOSE || (ht) == HTHELP)
211
212 #define HASSIZEGRIP(Style, ExStyle, ParentStyle, WindowRect, ParentClientRect) \
213 ((!(Style & WS_CHILD) && (Style & WS_THICKFRAME) && !(Style & WS_MAXIMIZE)) || \
214 ((Style & WS_CHILD) && (ParentStyle & WS_THICKFRAME) && !(ParentStyle & WS_MAXIMIZE) && \
215 (WindowRect.right - WindowRect.left == ParentClientRect.right) && \
216 (WindowRect.bottom - WindowRect.top == ParentClientRect.bottom)))
217
218 #define HAS_MENU(hwnd,style) ((((style) & (WS_CHILD | WS_POPUP)) != WS_CHILD) && GetMenu(hwnd))
219
220 #define BUTTON_GAP_SIZE 2
221
222 #define MENU_BAR_ITEMS_SPACE (12)
223
224 #define SCROLL_TIMER 0 /* Scroll timer id */
225
226 /* Overlap between arrows and thumb */
227 #define SCROLL_ARROW_THUMB_OVERLAP 0
228
229 /* Delay (in ms) before first repetition when holding the button down */
230 #define SCROLL_FIRST_DELAY 200
231
232 /* Delay (in ms) between scroll repetitions */
233 #define SCROLL_REPEAT_DELAY 50
234
235 /* Minimum size of the thumb in pixels */
236 #define SCROLL_MIN_THUMB 6
237
238 /* Minimum size of the rectangle between the arrows */
239 #define SCROLL_MIN_RECT 4
240
241 LRESULT CALLBACK ThemeWndProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam, WNDPROC DefWndProc);
242 void ThemeDrawScrollBar(PDRAW_CONTEXT pcontext, INT Bar, POINT* pt);
243 VOID NC_TrackScrollBar(HWND Wnd, WPARAM wParam, POINT Pt);
244 void ThemeInitDrawContext(PDRAW_CONTEXT pcontext, HWND hWnd, HRGN hRgn);
245 void ThemeCleanupDrawContext(PDRAW_CONTEXT pcontext);
246 PWND_DATA ThemeGetWndData(HWND hWnd);
247 HTHEME GetNCCaptionTheme(HWND hWnd, DWORD style);
248 HTHEME GetNCScrollbarTheme(HWND hWnd, DWORD style);
249
250 extern HINSTANCE hDllInst;
251 extern ATOM atWindowTheme;
252 extern ATOM atWndContext;
253 extern BOOL gbThemeHooksActive;
254 extern PTHEME_FILE ActiveThemeFile;
255
256 void UXTHEME_InitSystem(HINSTANCE hInst);
257 void UXTHEME_LoadTheme(BOOL bLoad);
258 BOOL CALLBACK UXTHEME_broadcast_msg (HWND hWnd, LPARAM msg);
259
260 /* No alpha blending */
261 #define ALPHABLEND_NONE 0
262 /* "Cheap" binary alpha blending - but possibly faster */
263 #define ALPHABLEND_BINARY 1
264 /* Full alpha blending */
265 #define ALPHABLEND_FULL 2
266
267 #endif /* _UXTHEME_PCH_ */