d3d10core: Remove unnecessary DllMain implementation.
[wine.git] / dlls / uxtheme / msstyles.c
blob8205a124774798d16d58bd58717f5364bc1884a4
1 /*
2 * Win32 5.1 msstyles theme format
4 * Copyright (C) 2003 Kevin Koltzau
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"
23 #include <stdarg.h>
24 #include <stdlib.h>
26 #include "windef.h"
27 #include "winbase.h"
28 #include "wingdi.h"
29 #include "winuser.h"
30 #include "winnls.h"
31 #include "vfwmsgs.h"
32 #include "uxtheme.h"
33 #include "tmschema.h"
35 #include "msstyles.h"
37 #include "wine/unicode.h"
38 #include "wine/debug.h"
40 WINE_DEFAULT_DEBUG_CHANNEL(uxtheme);
42 /***********************************************************************
43 * Defines and global variables
46 static BOOL MSSTYLES_GetNextInteger(LPCWSTR lpStringStart, LPCWSTR lpStringEnd, LPCWSTR *lpValEnd, int *value);
47 static BOOL MSSTYLES_GetNextToken(LPCWSTR lpStringStart, LPCWSTR lpStringEnd, LPCWSTR *lpValEnd, LPWSTR lpBuff, DWORD buffSize);
48 static void MSSTYLES_ParseThemeIni(PTHEME_FILE tf, BOOL setMetrics);
49 static HRESULT MSSTYLES_GetFont (LPCWSTR lpStringStart, LPCWSTR lpStringEnd, LPCWSTR *lpValEnd, LOGFONTW* logfont);
51 extern int alphaBlendMode;
53 #define MSSTYLES_VERSION 0x0003
55 static const WCHAR szThemesIniResource[] = {
56 't','h','e','m','e','s','_','i','n','i','\0'
59 static PTHEME_FILE tfActiveTheme;
61 /***********************************************************************/
63 /**********************************************************************
64 * MSSTYLES_OpenThemeFile
66 * Load and validate a theme
68 * PARAMS
69 * lpThemeFile Path to theme file to load
70 * pszColorName Color name wanted, can be NULL
71 * pszSizeName Size name wanted, can be NULL
73 * NOTES
74 * If pszColorName or pszSizeName are NULL, the default color/size will be used.
75 * If one/both are provided, they are validated against valid color/sizes and if
76 * a match is not found, the function fails.
78 HRESULT MSSTYLES_OpenThemeFile(LPCWSTR lpThemeFile, LPCWSTR pszColorName, LPCWSTR pszSizeName, PTHEME_FILE *tf)
80 HMODULE hTheme;
81 HRSRC hrsc;
82 HRESULT hr = S_OK;
83 static const WCHAR szPackThemVersionResource[] = {
84 'P','A','C','K','T','H','E','M','_','V','E','R','S','I','O','N', '\0'
86 static const WCHAR szColorNamesResource[] = {
87 'C','O','L','O','R','N','A','M','E','S','\0'
89 static const WCHAR szSizeNamesResource[] = {
90 'S','I','Z','E','N','A','M','E','S','\0'
93 WORD version;
94 DWORD versize;
95 LPWSTR pszColors;
96 LPWSTR pszSelectedColor = NULL;
97 LPWSTR pszSizes;
98 LPWSTR pszSelectedSize = NULL;
99 LPWSTR tmp;
101 TRACE("Opening %s\n", debugstr_w(lpThemeFile));
103 hTheme = LoadLibraryExW(lpThemeFile, NULL, LOAD_LIBRARY_AS_DATAFILE);
105 /* Validate that this is really a theme */
106 if(!hTheme) {
107 hr = HRESULT_FROM_WIN32(GetLastError());
108 goto invalid_theme;
110 if(!(hrsc = FindResourceW(hTheme, MAKEINTRESOURCEW(1), szPackThemVersionResource))) {
111 TRACE("No version resource found\n");
112 hr = HRESULT_FROM_WIN32(ERROR_BAD_FORMAT);
113 goto invalid_theme;
115 if((versize = SizeofResource(hTheme, hrsc)) != 2)
117 TRACE("Version resource found, but wrong size: %d\n", versize);
118 hr = HRESULT_FROM_WIN32(ERROR_BAD_FORMAT);
119 goto invalid_theme;
121 version = *(WORD*)LoadResource(hTheme, hrsc);
122 if(version != MSSTYLES_VERSION)
124 TRACE("Version of theme file is unsupported: 0x%04x\n", version);
125 hr = HRESULT_FROM_WIN32(ERROR_BAD_FORMAT);
126 goto invalid_theme;
129 if(!(hrsc = FindResourceW(hTheme, MAKEINTRESOURCEW(1), szColorNamesResource))) {
130 TRACE("Color names resource not found\n");
131 hr = HRESULT_FROM_WIN32(ERROR_BAD_FORMAT);
132 goto invalid_theme;
134 pszColors = LoadResource(hTheme, hrsc);
136 if(!(hrsc = FindResourceW(hTheme, MAKEINTRESOURCEW(1), szSizeNamesResource))) {
137 TRACE("Size names resource not found\n");
138 hr = HRESULT_FROM_WIN32(ERROR_BAD_FORMAT);
139 goto invalid_theme;
141 pszSizes = LoadResource(hTheme, hrsc);
143 /* Validate requested color against what's available from the theme */
144 if(pszColorName) {
145 tmp = pszColors;
146 while(*tmp) {
147 if(!lstrcmpiW(pszColorName, tmp)) {
148 pszSelectedColor = tmp;
149 break;
151 tmp += lstrlenW(tmp)+1;
154 else
155 pszSelectedColor = pszColors; /* Use the default color */
157 /* Validate requested size against what's available from the theme */
158 if(pszSizeName) {
159 tmp = pszSizes;
160 while(*tmp) {
161 if(!lstrcmpiW(pszSizeName, tmp)) {
162 pszSelectedSize = tmp;
163 break;
165 tmp += lstrlenW(tmp)+1;
168 else
169 pszSelectedSize = pszSizes; /* Use the default size */
171 if(!pszSelectedColor || !pszSelectedSize) {
172 TRACE("Requested color/size (%s/%s) not found in theme\n",
173 debugstr_w(pszColorName), debugstr_w(pszSizeName));
174 hr = E_PROP_ID_UNSUPPORTED;
175 goto invalid_theme;
178 *tf = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(THEME_FILE));
179 (*tf)->hTheme = hTheme;
181 GetFullPathNameW(lpThemeFile, MAX_PATH, (*tf)->szThemeFile, NULL);
183 (*tf)->pszAvailColors = pszColors;
184 (*tf)->pszAvailSizes = pszSizes;
185 (*tf)->pszSelectedColor = pszSelectedColor;
186 (*tf)->pszSelectedSize = pszSelectedSize;
187 (*tf)->dwRefCount = 1;
188 return S_OK;
190 invalid_theme:
191 if(hTheme) FreeLibrary(hTheme);
192 return hr;
195 /***********************************************************************
196 * MSSTYLES_CloseThemeFile
198 * Close theme file and free resources
200 void MSSTYLES_CloseThemeFile(PTHEME_FILE tf)
202 if(tf) {
203 tf->dwRefCount--;
204 if(!tf->dwRefCount) {
205 if(tf->hTheme) FreeLibrary(tf->hTheme);
206 if(tf->classes) {
207 while(tf->classes) {
208 PTHEME_CLASS pcls = tf->classes;
209 tf->classes = pcls->next;
210 while(pcls->partstate) {
211 PTHEME_PARTSTATE ps = pcls->partstate;
212 pcls->partstate = ps->next;
213 HeapFree(GetProcessHeap(), 0, ps);
215 HeapFree(GetProcessHeap(), 0, pcls);
218 while (tf->images)
220 PTHEME_IMAGE img = tf->images;
221 tf->images = img->next;
222 DeleteObject (img->image);
223 HeapFree (GetProcessHeap(), 0, img);
225 HeapFree(GetProcessHeap(), 0, tf);
230 /***********************************************************************
231 * MSSTYLES_SetActiveTheme
233 * Set the current active theme
235 HRESULT MSSTYLES_SetActiveTheme(PTHEME_FILE tf, BOOL setMetrics)
237 if(tfActiveTheme)
238 MSSTYLES_CloseThemeFile(tfActiveTheme);
239 tfActiveTheme = tf;
240 if (tfActiveTheme)
242 tfActiveTheme->dwRefCount++;
243 if(!tfActiveTheme->classes)
244 MSSTYLES_ParseThemeIni(tfActiveTheme, setMetrics);
246 return S_OK;
249 /***********************************************************************
250 * MSSTYLES_GetThemeIni
252 * Retrieves themes.ini from a theme
254 PUXINI_FILE MSSTYLES_GetThemeIni(PTHEME_FILE tf)
256 return UXINI_LoadINI(tf->hTheme, szThemesIniResource);
259 /***********************************************************************
260 * MSSTYLES_GetActiveThemeIni
262 * Retrieve the ini file for the selected color/style
264 static PUXINI_FILE MSSTYLES_GetActiveThemeIni(PTHEME_FILE tf)
266 static const WCHAR szFileResNamesResource[] = {
267 'F','I','L','E','R','E','S','N','A','M','E','S','\0'
269 DWORD dwColorCount = 0;
270 DWORD dwSizeCount = 0;
271 DWORD dwColorNum = 0;
272 DWORD dwSizeNum = 0;
273 DWORD i;
274 DWORD dwResourceIndex;
275 LPWSTR tmp;
276 HRSRC hrsc;
278 /* Count the number of available colors & styles, and determine the index number
279 of the color/style we are interested in
281 tmp = tf->pszAvailColors;
282 while(*tmp) {
283 if(!lstrcmpiW(tf->pszSelectedColor, tmp))
284 dwColorNum = dwColorCount;
285 tmp += lstrlenW(tmp)+1;
286 dwColorCount++;
288 tmp = tf->pszAvailSizes;
289 while(*tmp) {
290 if(!lstrcmpiW(tf->pszSelectedSize, tmp))
291 dwSizeNum = dwSizeCount;
292 tmp += lstrlenW(tmp)+1;
293 dwSizeCount++;
296 if(!(hrsc = FindResourceW(tf->hTheme, MAKEINTRESOURCEW(1), szFileResNamesResource))) {
297 TRACE("FILERESNAMES map not found\n");
298 return NULL;
300 tmp = LoadResource(tf->hTheme, hrsc);
301 dwResourceIndex = (dwSizeCount * dwColorNum) + dwSizeNum;
302 for(i=0; i < dwResourceIndex; i++) {
303 tmp += lstrlenW(tmp)+1;
305 return UXINI_LoadINI(tf->hTheme, tmp);
309 /***********************************************************************
310 * MSSTYLES_ParseIniSectionName
312 * Parse an ini section name into its component parts
313 * Valid formats are:
314 * [classname]
315 * [classname(state)]
316 * [classname.part]
317 * [classname.part(state)]
318 * [application::classname]
319 * [application::classname(state)]
320 * [application::classname.part]
321 * [application::classname.part(state)]
323 * PARAMS
324 * lpSection Section name
325 * dwLen Length of section name
326 * szAppName Location to store application name
327 * szClassName Location to store class name
328 * iPartId Location to store part id
329 * iStateId Location to store state id
331 static BOOL MSSTYLES_ParseIniSectionName(LPCWSTR lpSection, DWORD dwLen, LPWSTR szAppName, LPWSTR szClassName, int *iPartId, int *iStateId)
333 WCHAR sec[255];
334 WCHAR part[60] = {'\0'};
335 WCHAR state[60] = {'\0'};
336 LPWSTR tmp;
337 LPWSTR comp;
338 lstrcpynW(sec, lpSection, min(dwLen+1, sizeof(sec)/sizeof(sec[0])));
340 *szAppName = 0;
341 *szClassName = 0;
342 *iPartId = 0;
343 *iStateId = 0;
344 comp = sec;
345 /* Get the application name */
346 tmp = strchrW(comp, ':');
347 if(tmp) {
348 *tmp++ = 0;
349 tmp++;
350 lstrcpynW(szAppName, comp, MAX_THEME_APP_NAME);
351 comp = tmp;
354 tmp = strchrW(comp, '.');
355 if(tmp) {
356 *tmp++ = 0;
357 lstrcpynW(szClassName, comp, MAX_THEME_CLASS_NAME);
358 comp = tmp;
359 /* now get the part & state */
360 tmp = strchrW(comp, '(');
361 if(tmp) {
362 *tmp++ = 0;
363 lstrcpynW(part, comp, sizeof(part)/sizeof(part[0]));
364 comp = tmp;
365 /* now get the state */
366 tmp = strchrW(comp, ')');
367 if (!tmp)
368 return FALSE;
369 *tmp = 0;
370 lstrcpynW(state, comp, sizeof(state)/sizeof(state[0]));
372 else {
373 lstrcpynW(part, comp, sizeof(part)/sizeof(part[0]));
376 else {
377 tmp = strchrW(comp, '(');
378 if(tmp) {
379 *tmp++ = 0;
380 lstrcpynW(szClassName, comp, MAX_THEME_CLASS_NAME);
381 comp = tmp;
382 /* now get the state */
383 tmp = strchrW(comp, ')');
384 if (!tmp)
385 return FALSE;
386 *tmp = 0;
387 lstrcpynW(state, comp, sizeof(state)/sizeof(state[0]));
389 else {
390 lstrcpynW(szClassName, comp, MAX_THEME_CLASS_NAME);
393 if(!*szClassName) return FALSE;
394 return MSSTYLES_LookupPartState(szClassName, part[0]?part:NULL, state[0]?state:NULL, iPartId, iStateId);
397 /***********************************************************************
398 * MSSTYLES_FindClass
400 * Find a class
402 * PARAMS
403 * tf Theme file
404 * pszAppName App name to find
405 * pszClassName Class name to find
407 * RETURNS
408 * The class found, or NULL
410 static PTHEME_CLASS MSSTYLES_FindClass(PTHEME_FILE tf, LPCWSTR pszAppName, LPCWSTR pszClassName)
412 PTHEME_CLASS cur = tf->classes;
413 while(cur) {
414 if(!pszAppName) {
415 if(!*cur->szAppName && !lstrcmpiW(pszClassName, cur->szClassName))
416 return cur;
418 else {
419 if(!lstrcmpiW(pszAppName, cur->szAppName) && !lstrcmpiW(pszClassName, cur->szClassName))
420 return cur;
422 cur = cur->next;
424 return NULL;
427 /***********************************************************************
428 * MSSTYLES_AddClass
430 * Add a class to a theme file
432 * PARAMS
433 * tf Theme file
434 * pszAppName App name to add
435 * pszClassName Class name to add
437 * RETURNS
438 * The class added, or a class previously added with the same name
440 static PTHEME_CLASS MSSTYLES_AddClass(PTHEME_FILE tf, LPCWSTR pszAppName, LPCWSTR pszClassName)
442 PTHEME_CLASS cur = MSSTYLES_FindClass(tf, pszAppName, pszClassName);
443 if(cur) return cur;
445 cur = HeapAlloc(GetProcessHeap(), 0, sizeof(THEME_CLASS));
446 cur->hTheme = tf->hTheme;
447 lstrcpyW(cur->szAppName, pszAppName);
448 lstrcpyW(cur->szClassName, pszClassName);
449 cur->next = tf->classes;
450 cur->partstate = NULL;
451 cur->overrides = NULL;
452 tf->classes = cur;
453 return cur;
456 /***********************************************************************
457 * MSSTYLES_FindPartState
459 * Find a part/state
461 * PARAMS
462 * tc Class to search
463 * iPartId Part ID to find
464 * iStateId State ID to find
465 * tcNext Receives the next class in the override chain
467 * RETURNS
468 * The part/state found, or NULL
470 PTHEME_PARTSTATE MSSTYLES_FindPartState(PTHEME_CLASS tc, int iPartId, int iStateId, PTHEME_CLASS *tcNext)
472 PTHEME_PARTSTATE cur = tc->partstate;
473 while(cur) {
474 if(cur->iPartId == iPartId && cur->iStateId == iStateId) {
475 if(tcNext) *tcNext = tc->overrides;
476 return cur;
478 cur = cur->next;
480 if(tc->overrides) return MSSTYLES_FindPartState(tc->overrides, iPartId, iStateId, tcNext);
481 return NULL;
484 /***********************************************************************
485 * MSSTYLES_AddPartState
487 * Add a part/state to a class
489 * PARAMS
490 * tc Theme class
491 * iPartId Part ID to add
492 * iStateId State ID to add
494 * RETURNS
495 * The part/state added, or a part/state previously added with the same IDs
497 static PTHEME_PARTSTATE MSSTYLES_AddPartState(PTHEME_CLASS tc, int iPartId, int iStateId)
499 PTHEME_PARTSTATE cur = MSSTYLES_FindPartState(tc, iPartId, iStateId, NULL);
500 if(cur) return cur;
502 cur = HeapAlloc(GetProcessHeap(), 0, sizeof(THEME_PARTSTATE));
503 cur->iPartId = iPartId;
504 cur->iStateId = iStateId;
505 cur->properties = NULL;
506 cur->next = tc->partstate;
507 tc->partstate = cur;
508 return cur;
511 /***********************************************************************
512 * MSSTYLES_LFindProperty
514 * Find a property within a property list
516 * PARAMS
517 * tp property list to scan
518 * iPropertyPrimitive Type of value expected
519 * iPropertyId ID of the required value
521 * RETURNS
522 * The property found, or NULL
524 static PTHEME_PROPERTY MSSTYLES_LFindProperty(PTHEME_PROPERTY tp, int iPropertyPrimitive, int iPropertyId)
526 PTHEME_PROPERTY cur = tp;
527 while(cur) {
528 if(cur->iPropertyId == iPropertyId) {
529 if(cur->iPrimitiveType == iPropertyPrimitive) {
530 return cur;
532 else {
533 if(!iPropertyPrimitive)
534 return cur;
535 return NULL;
538 cur = cur->next;
540 return NULL;
543 /***********************************************************************
544 * MSSTYLES_PSFindProperty
546 * Find a value within a part/state
548 * PARAMS
549 * ps Part/state to search
550 * iPropertyPrimitive Type of value expected
551 * iPropertyId ID of the required value
553 * RETURNS
554 * The property found, or NULL
556 static inline PTHEME_PROPERTY MSSTYLES_PSFindProperty(PTHEME_PARTSTATE ps, int iPropertyPrimitive, int iPropertyId)
558 return MSSTYLES_LFindProperty(ps->properties, iPropertyPrimitive, iPropertyId);
561 /***********************************************************************
562 * MSSTYLES_FFindMetric
564 * Find a metric property for a theme file
566 * PARAMS
567 * tf Theme file
568 * iPropertyPrimitive Type of value expected
569 * iPropertyId ID of the required value
571 * RETURNS
572 * The property found, or NULL
574 static inline PTHEME_PROPERTY MSSTYLES_FFindMetric(PTHEME_FILE tf, int iPropertyPrimitive, int iPropertyId)
576 return MSSTYLES_LFindProperty(tf->metrics, iPropertyPrimitive, iPropertyId);
579 /***********************************************************************
580 * MSSTYLES_FindMetric
582 * Find a metric property for the current installed theme
584 * PARAMS
585 * tf Theme file
586 * iPropertyPrimitive Type of value expected
587 * iPropertyId ID of the required value
589 * RETURNS
590 * The property found, or NULL
592 PTHEME_PROPERTY MSSTYLES_FindMetric(int iPropertyPrimitive, int iPropertyId)
594 if(!tfActiveTheme) return NULL;
595 return MSSTYLES_FFindMetric(tfActiveTheme, iPropertyPrimitive, iPropertyId);
598 /***********************************************************************
599 * MSSTYLES_AddProperty
601 * Add a property to a part/state
603 * PARAMS
604 * ps Part/state
605 * iPropertyPrimitive Primitive type of the property
606 * iPropertyId ID of the property
607 * lpValue Raw value (non-NULL terminated)
608 * dwValueLen Length of the value
610 * RETURNS
611 * The property added, or a property previously added with the same IDs
613 static PTHEME_PROPERTY MSSTYLES_AddProperty(PTHEME_PARTSTATE ps, int iPropertyPrimitive, int iPropertyId, LPCWSTR lpValue, DWORD dwValueLen, BOOL isGlobal)
615 PTHEME_PROPERTY cur = MSSTYLES_PSFindProperty(ps, iPropertyPrimitive, iPropertyId);
616 /* Should duplicate properties overwrite the original, or be ignored? */
617 if(cur) return cur;
619 cur = HeapAlloc(GetProcessHeap(), 0, sizeof(THEME_PROPERTY));
620 cur->iPrimitiveType = iPropertyPrimitive;
621 cur->iPropertyId = iPropertyId;
622 cur->lpValue = lpValue;
623 cur->dwValueLen = dwValueLen;
625 if(ps->iStateId)
626 cur->origin = PO_STATE;
627 else if(ps->iPartId)
628 cur->origin = PO_PART;
629 else if(isGlobal)
630 cur->origin = PO_GLOBAL;
631 else
632 cur->origin = PO_CLASS;
634 cur->next = ps->properties;
635 ps->properties = cur;
636 return cur;
639 /***********************************************************************
640 * MSSTYLES_AddMetric
642 * Add a property to a part/state
644 * PARAMS
645 * tf Theme file
646 * iPropertyPrimitive Primitive type of the property
647 * iPropertyId ID of the property
648 * lpValue Raw value (non-NULL terminated)
649 * dwValueLen Length of the value
651 * RETURNS
652 * The property added, or a property previously added with the same IDs
654 static PTHEME_PROPERTY MSSTYLES_AddMetric(PTHEME_FILE tf, int iPropertyPrimitive, int iPropertyId, LPCWSTR lpValue, DWORD dwValueLen)
656 PTHEME_PROPERTY cur = MSSTYLES_FFindMetric(tf, iPropertyPrimitive, iPropertyId);
657 /* Should duplicate properties overwrite the original, or be ignored? */
658 if(cur) return cur;
660 cur = HeapAlloc(GetProcessHeap(), 0, sizeof(THEME_PROPERTY));
661 cur->iPrimitiveType = iPropertyPrimitive;
662 cur->iPropertyId = iPropertyId;
663 cur->lpValue = lpValue;
664 cur->dwValueLen = dwValueLen;
666 cur->origin = PO_GLOBAL;
668 cur->next = tf->metrics;
669 tf->metrics = cur;
670 return cur;
673 /* Color-related state for theme ini parsing */
674 struct PARSECOLORSTATE
676 int colorCount;
677 int colorElements[TMT_LASTCOLOR-TMT_FIRSTCOLOR];
678 COLORREF colorRgb[TMT_LASTCOLOR-TMT_FIRSTCOLOR];
679 int captionColors;
682 static inline void parse_init_color (struct PARSECOLORSTATE* state)
684 memset (state, 0, sizeof (*state));
687 static BOOL parse_handle_color_property (struct PARSECOLORSTATE* state,
688 int iPropertyId, LPCWSTR lpValue,
689 DWORD dwValueLen)
691 int r,g,b;
692 LPCWSTR lpValueEnd = lpValue + dwValueLen;
693 if(MSSTYLES_GetNextInteger(lpValue, lpValueEnd, &lpValue, &r) &&
694 MSSTYLES_GetNextInteger(lpValue, lpValueEnd, &lpValue, &g) &&
695 MSSTYLES_GetNextInteger(lpValue, lpValueEnd, &lpValue, &b)) {
696 state->colorElements[state->colorCount] = iPropertyId - TMT_FIRSTCOLOR;
697 state->colorRgb[state->colorCount++] = RGB(r,g,b);
698 switch (iPropertyId)
700 case TMT_ACTIVECAPTION:
701 state->captionColors |= 0x1;
702 break;
703 case TMT_INACTIVECAPTION:
704 state->captionColors |= 0x2;
705 break;
706 case TMT_GRADIENTACTIVECAPTION:
707 state->captionColors |= 0x4;
708 break;
709 case TMT_GRADIENTINACTIVECAPTION:
710 state->captionColors |= 0x8;
711 break;
713 return TRUE;
715 else {
716 return FALSE;
720 static void parse_apply_color (struct PARSECOLORSTATE* state)
722 if (state->colorCount > 0)
723 SetSysColors(state->colorCount, state->colorElements, state->colorRgb);
724 if (state->captionColors == 0xf)
725 SystemParametersInfoW (SPI_SETGRADIENTCAPTIONS, 0, (PVOID)TRUE, 0);
728 /* Non-client-metrics-related state for theme ini parsing */
729 struct PARSENONCLIENTSTATE
731 NONCLIENTMETRICSW metrics;
732 BOOL metricsDirty;
733 LOGFONTW iconTitleFont;
736 static inline void parse_init_nonclient (struct PARSENONCLIENTSTATE* state)
738 memset (state, 0, sizeof (*state));
739 state->metrics.cbSize = sizeof (NONCLIENTMETRICSW);
740 SystemParametersInfoW (SPI_GETNONCLIENTMETRICS, sizeof (NONCLIENTMETRICSW),
741 &state->metrics, 0);
742 SystemParametersInfoW (SPI_GETICONTITLELOGFONT, sizeof (LOGFONTW),
743 &state->iconTitleFont, 0);
746 static BOOL parse_handle_nonclient_font (struct PARSENONCLIENTSTATE* state,
747 int iPropertyId, LPCWSTR lpValue,
748 DWORD dwValueLen)
750 LOGFONTW font;
752 memset (&font, 0, sizeof (font));
753 if (SUCCEEDED (MSSTYLES_GetFont (lpValue, lpValue + dwValueLen, &lpValue,
754 &font)))
756 switch (iPropertyId)
758 case TMT_CAPTIONFONT:
759 state->metrics.lfCaptionFont = font;
760 state->metricsDirty = TRUE;
761 break;
762 case TMT_SMALLCAPTIONFONT:
763 state->metrics.lfSmCaptionFont = font;
764 state->metricsDirty = TRUE;
765 break;
766 case TMT_MENUFONT:
767 state->metrics.lfMenuFont = font;
768 state->metricsDirty = TRUE;
769 break;
770 case TMT_STATUSFONT:
771 state->metrics.lfStatusFont = font;
772 state->metricsDirty = TRUE;
773 break;
774 case TMT_MSGBOXFONT:
775 state->metrics.lfMessageFont = font;
776 state->metricsDirty = TRUE;
777 break;
778 case TMT_ICONTITLEFONT:
779 state->iconTitleFont = font;
780 state->metricsDirty = TRUE;
781 break;
783 return TRUE;
785 else
786 return FALSE;
789 static BOOL parse_handle_nonclient_size (struct PARSENONCLIENTSTATE* state,
790 int iPropertyId, LPCWSTR lpValue,
791 DWORD dwValueLen)
793 int size;
794 LPCWSTR lpValueEnd = lpValue + dwValueLen;
795 if(MSSTYLES_GetNextInteger(lpValue, lpValueEnd, &lpValue, &size)) {
796 switch (iPropertyId)
798 case TMT_SIZINGBORDERWIDTH:
799 state->metrics.iBorderWidth = size;
800 state->metricsDirty = TRUE;
801 break;
802 case TMT_SCROLLBARWIDTH:
803 state->metrics.iScrollWidth = size;
804 state->metricsDirty = TRUE;
805 break;
806 case TMT_SCROLLBARHEIGHT:
807 state->metrics.iScrollHeight = size;
808 state->metricsDirty = TRUE;
809 break;
810 case TMT_CAPTIONBARWIDTH:
811 state->metrics.iCaptionWidth = size;
812 state->metricsDirty = TRUE;
813 break;
814 case TMT_CAPTIONBARHEIGHT:
815 state->metrics.iCaptionHeight = size;
816 state->metricsDirty = TRUE;
817 break;
818 case TMT_SMCAPTIONBARWIDTH:
819 state->metrics.iSmCaptionWidth = size;
820 state->metricsDirty = TRUE;
821 break;
822 case TMT_SMCAPTIONBARHEIGHT:
823 state->metrics.iSmCaptionHeight = size;
824 state->metricsDirty = TRUE;
825 break;
826 case TMT_MENUBARWIDTH:
827 state->metrics.iMenuWidth = size;
828 state->metricsDirty = TRUE;
829 break;
830 case TMT_MENUBARHEIGHT:
831 state->metrics.iMenuHeight = size;
832 state->metricsDirty = TRUE;
833 break;
835 return TRUE;
837 else
838 return FALSE;
841 static void parse_apply_nonclient (struct PARSENONCLIENTSTATE* state)
843 if (state->metricsDirty)
845 SystemParametersInfoW (SPI_SETNONCLIENTMETRICS, sizeof (state->metrics),
846 &state->metrics, 0);
847 SystemParametersInfoW (SPI_SETICONTITLELOGFONT, sizeof (state->iconTitleFont),
848 &state->iconTitleFont, 0);
852 /***********************************************************************
853 * MSSTYLES_ParseThemeIni
855 * Parse the theme ini for the selected color/style
857 * PARAMS
858 * tf Theme to parse
860 static void MSSTYLES_ParseThemeIni(PTHEME_FILE tf, BOOL setMetrics)
862 static const WCHAR szSysMetrics[] = {'S','y','s','M','e','t','r','i','c','s','\0'};
863 static const WCHAR szGlobals[] = {'g','l','o','b','a','l','s','\0'};
864 PTHEME_CLASS cls;
865 PTHEME_CLASS globals;
866 PTHEME_PARTSTATE ps;
867 PUXINI_FILE ini;
868 WCHAR szAppName[MAX_THEME_APP_NAME];
869 WCHAR szClassName[MAX_THEME_CLASS_NAME];
870 WCHAR szPropertyName[MAX_THEME_VALUE_NAME];
871 int iPartId;
872 int iStateId;
873 int iPropertyPrimitive;
874 int iPropertyId;
875 DWORD dwLen;
876 LPCWSTR lpName;
877 DWORD dwValueLen;
878 LPCWSTR lpValue;
880 ini = MSSTYLES_GetActiveThemeIni(tf);
882 while((lpName=UXINI_GetNextSection(ini, &dwLen))) {
883 if(CompareStringW(LOCALE_SYSTEM_DEFAULT, NORM_IGNORECASE, lpName, dwLen, szSysMetrics, -1) == CSTR_EQUAL) {
884 struct PARSECOLORSTATE colorState;
885 struct PARSENONCLIENTSTATE nonClientState;
887 parse_init_color (&colorState);
888 parse_init_nonclient (&nonClientState);
890 while((lpName=UXINI_GetNextValue(ini, &dwLen, &lpValue, &dwValueLen))) {
891 lstrcpynW(szPropertyName, lpName, min(dwLen+1, sizeof(szPropertyName)/sizeof(szPropertyName[0])));
892 if(MSSTYLES_LookupProperty(szPropertyName, &iPropertyPrimitive, &iPropertyId)) {
893 if(iPropertyId >= TMT_FIRSTCOLOR && iPropertyId <= TMT_LASTCOLOR) {
894 if (!parse_handle_color_property (&colorState, iPropertyId,
895 lpValue, dwValueLen))
896 FIXME("Invalid color value for %s\n",
897 debugstr_w(szPropertyName));
899 else if (setMetrics && (iPropertyId == TMT_FLATMENUS)) {
900 BOOL flatMenus = (*lpValue == 'T') || (*lpValue == 't');
901 SystemParametersInfoW (SPI_SETFLATMENU, 0, (PVOID)(INT_PTR)flatMenus, 0);
903 else if ((iPropertyId >= TMT_FIRSTFONT)
904 && (iPropertyId <= TMT_LASTFONT))
906 if (!parse_handle_nonclient_font (&nonClientState,
907 iPropertyId, lpValue, dwValueLen))
908 FIXME("Invalid font value for %s\n",
909 debugstr_w(szPropertyName));
911 else if ((iPropertyId >= TMT_FIRSTSIZE)
912 && (iPropertyId <= TMT_LASTSIZE))
914 if (!parse_handle_nonclient_size (&nonClientState,
915 iPropertyId, lpValue, dwValueLen))
916 FIXME("Invalid size value for %s\n",
917 debugstr_w(szPropertyName));
919 /* Catch all metrics, including colors */
920 MSSTYLES_AddMetric(tf, iPropertyPrimitive, iPropertyId, lpValue, dwValueLen);
922 else {
923 TRACE("Unknown system metric %s\n", debugstr_w(szPropertyName));
926 if (setMetrics)
928 parse_apply_color (&colorState);
929 parse_apply_nonclient (&nonClientState);
931 continue;
933 if(MSSTYLES_ParseIniSectionName(lpName, dwLen, szAppName, szClassName, &iPartId, &iStateId)) {
934 BOOL isGlobal = FALSE;
935 if(!lstrcmpiW(szClassName, szGlobals)) {
936 isGlobal = TRUE;
938 cls = MSSTYLES_AddClass(tf, szAppName, szClassName);
939 ps = MSSTYLES_AddPartState(cls, iPartId, iStateId);
941 while((lpName=UXINI_GetNextValue(ini, &dwLen, &lpValue, &dwValueLen))) {
942 lstrcpynW(szPropertyName, lpName, min(dwLen+1, sizeof(szPropertyName)/sizeof(szPropertyName[0])));
943 if(MSSTYLES_LookupProperty(szPropertyName, &iPropertyPrimitive, &iPropertyId)) {
944 MSSTYLES_AddProperty(ps, iPropertyPrimitive, iPropertyId, lpValue, dwValueLen, isGlobal);
946 else {
947 TRACE("Unknown property %s\n", debugstr_w(szPropertyName));
953 /* App/Class combos override values defined by the base class, map these overrides */
954 globals = MSSTYLES_FindClass(tf, NULL, szGlobals);
955 cls = tf->classes;
956 while(cls) {
957 if(*cls->szAppName) {
958 cls->overrides = MSSTYLES_FindClass(tf, NULL, cls->szClassName);
959 if(!cls->overrides) {
960 TRACE("No overrides found for app %s class %s\n", debugstr_w(cls->szAppName), debugstr_w(cls->szClassName));
962 else {
963 cls->overrides = globals;
966 else {
967 /* Everything overrides globals..except globals */
968 if(cls != globals) cls->overrides = globals;
970 cls = cls->next;
972 UXINI_CloseINI(ini);
974 if(!tf->classes) {
975 ERR("Failed to parse theme ini\n");
979 /***********************************************************************
980 * MSSTYLES_OpenThemeClass
982 * Open a theme class, uses the current active theme
984 * PARAMS
985 * pszAppName Application name, for theme styles specific
986 * to a particular application
987 * pszClassList List of requested classes, semicolon delimited
989 PTHEME_CLASS MSSTYLES_OpenThemeClass(LPCWSTR pszAppName, LPCWSTR pszClassList)
991 PTHEME_CLASS cls = NULL;
992 WCHAR szClassName[MAX_THEME_CLASS_NAME];
993 LPCWSTR start;
994 LPCWSTR end;
995 DWORD len;
997 if(!tfActiveTheme) {
998 TRACE("there is no active theme\n");
999 return NULL;
1001 if(!tfActiveTheme->classes) {
1002 return NULL;
1005 start = pszClassList;
1006 while((end = strchrW(start, ';'))) {
1007 len = end-start;
1008 lstrcpynW(szClassName, start, min(len+1, sizeof(szClassName)/sizeof(szClassName[0])));
1009 start = end+1;
1010 cls = MSSTYLES_FindClass(tfActiveTheme, pszAppName, szClassName);
1011 if(cls) break;
1013 if(!cls && *start) {
1014 lstrcpynW(szClassName, start, sizeof(szClassName)/sizeof(szClassName[0]));
1015 cls = MSSTYLES_FindClass(tfActiveTheme, pszAppName, szClassName);
1017 if(cls) {
1018 TRACE("Opened app %s, class %s from list %s\n", debugstr_w(cls->szAppName), debugstr_w(cls->szClassName), debugstr_w(pszClassList));
1019 cls->tf = tfActiveTheme;
1020 cls->tf->dwRefCount++;
1022 return cls;
1025 /***********************************************************************
1026 * MSSTYLES_CloseThemeClass
1028 * Close a theme class
1030 * PARAMS
1031 * tc Theme class to close
1033 * NOTES
1034 * The MSSTYLES_CloseThemeFile decreases the refcount of the owning
1035 * theme file and cleans it up, if needed.
1037 HRESULT MSSTYLES_CloseThemeClass(PTHEME_CLASS tc)
1039 MSSTYLES_CloseThemeFile (tc->tf);
1040 return S_OK;
1043 /***********************************************************************
1044 * MSSTYLES_FindProperty
1046 * Locate a property in a class. Part and state IDs will be used as a
1047 * preference, but may be ignored in the attempt to locate the property.
1048 * Will scan the entire chain of overrides for this class.
1050 PTHEME_PROPERTY MSSTYLES_FindProperty(PTHEME_CLASS tc, int iPartId, int iStateId, int iPropertyPrimitive, int iPropertyId)
1052 PTHEME_CLASS next = tc;
1053 PTHEME_PARTSTATE ps;
1054 PTHEME_PROPERTY tp;
1056 TRACE("(%p, %d, %d, %d)\n", tc, iPartId, iStateId, iPropertyId);
1057 /* Try and find an exact match on part & state */
1058 while(next && (ps = MSSTYLES_FindPartState(next, iPartId, iStateId, &next))) {
1059 if((tp = MSSTYLES_PSFindProperty(ps, iPropertyPrimitive, iPropertyId))) {
1060 return tp;
1063 /* If that fails, and we didn't already try it, search for just part */
1064 if(iStateId != 0)
1065 iStateId = 0;
1066 /* As a last ditch attempt..go for just class */
1067 else if(iPartId != 0)
1068 iPartId = 0;
1069 else
1070 return NULL;
1072 if((tp = MSSTYLES_FindProperty(tc, iPartId, iStateId, iPropertyPrimitive, iPropertyId)))
1073 return tp;
1074 return NULL;
1077 /* Prepare a bitmap to be used for alpha blending */
1078 static BOOL prepare_alpha (HBITMAP bmp, BOOL* hasAlpha)
1080 DIBSECTION dib;
1081 int n;
1082 BYTE* p;
1084 *hasAlpha = FALSE;
1086 if (!bmp || GetObjectW( bmp, sizeof(dib), &dib ) != sizeof(dib))
1087 return FALSE;
1089 if(dib.dsBm.bmBitsPixel != 32)
1090 /* nothing to do */
1091 return TRUE;
1093 *hasAlpha = TRUE;
1094 p = dib.dsBm.bmBits;
1095 n = dib.dsBmih.biHeight * dib.dsBmih.biWidth;
1096 /* AlphaBlend() wants premultiplied alpha, so do that now */
1097 while (n-- > 0)
1099 int a = p[3]+1;
1100 p[0] = (p[0] * a) >> 8;
1101 p[1] = (p[1] * a) >> 8;
1102 p[2] = (p[2] * a) >> 8;
1103 p += 4;
1106 return TRUE;
1109 HBITMAP MSSTYLES_LoadBitmap (PTHEME_CLASS tc, LPCWSTR lpFilename, BOOL* hasAlpha)
1111 WCHAR szFile[MAX_PATH];
1112 LPWSTR tmp;
1113 PTHEME_IMAGE img;
1114 lstrcpynW(szFile, lpFilename, sizeof(szFile)/sizeof(szFile[0]));
1115 tmp = szFile;
1116 do {
1117 if(*tmp == '\\') *tmp = '_';
1118 if(*tmp == '/') *tmp = '_';
1119 if(*tmp == '.') *tmp = '_';
1120 } while(*tmp++);
1122 /* Try to locate in list of loaded images */
1123 img = tc->tf->images;
1124 while (img)
1126 if (lstrcmpiW (szFile, img->name) == 0)
1128 TRACE ("found %p %s: %p\n", img, debugstr_w (img->name), img->image);
1129 *hasAlpha = img->hasAlpha;
1130 return img->image;
1132 img = img->next;
1134 /* Not found? Load from resources */
1135 img = HeapAlloc (GetProcessHeap(), 0, sizeof (THEME_IMAGE));
1136 img->image = LoadImageW(tc->hTheme, szFile, IMAGE_BITMAP, 0, 0, LR_CREATEDIBSECTION);
1137 prepare_alpha (img->image, hasAlpha);
1138 img->hasAlpha = *hasAlpha;
1139 /* ...and stow away for later reuse. */
1140 lstrcpyW (img->name, szFile);
1141 img->next = tc->tf->images;
1142 tc->tf->images = img;
1143 TRACE ("new %p %s: %p\n", img, debugstr_w (img->name), img->image);
1144 return img->image;
1147 static BOOL MSSTYLES_GetNextInteger(LPCWSTR lpStringStart, LPCWSTR lpStringEnd, LPCWSTR *lpValEnd, int *value)
1149 LPCWSTR cur = lpStringStart;
1150 int total = 0;
1151 BOOL gotNeg = FALSE;
1153 while(cur < lpStringEnd && (*cur < '0' || *cur > '9' || *cur == '-')) cur++;
1154 if(cur >= lpStringEnd) {
1155 return FALSE;
1157 if(*cur == '-') {
1158 cur++;
1159 gotNeg = TRUE;
1161 while(cur < lpStringEnd && (*cur >= '0' && *cur <= '9')) {
1162 total = total * 10 + (*cur - '0');
1163 cur++;
1165 if(gotNeg) total = -total;
1166 *value = total;
1167 if(lpValEnd) *lpValEnd = cur;
1168 return TRUE;
1171 static BOOL MSSTYLES_GetNextToken(LPCWSTR lpStringStart, LPCWSTR lpStringEnd, LPCWSTR *lpValEnd, LPWSTR lpBuff, DWORD buffSize) {
1172 LPCWSTR cur = lpStringStart;
1173 LPCWSTR start;
1174 LPCWSTR end;
1176 while(cur < lpStringEnd && (isspace(*cur) || *cur == ',')) cur++;
1177 if(cur >= lpStringEnd) {
1178 return FALSE;
1180 start = cur;
1181 while(cur < lpStringEnd && *cur != ',') cur++;
1182 end = cur;
1183 while(isspace(*end)) end--;
1185 lstrcpynW(lpBuff, start, min(buffSize, end-start+1));
1187 if(lpValEnd) *lpValEnd = cur;
1188 return TRUE;
1191 /***********************************************************************
1192 * MSSTYLES_GetPropertyBool
1194 * Retrieve a color value for a property
1196 HRESULT MSSTYLES_GetPropertyBool(PTHEME_PROPERTY tp, BOOL *pfVal)
1198 *pfVal = FALSE;
1199 if(*tp->lpValue == 't' || *tp->lpValue == 'T')
1200 *pfVal = TRUE;
1201 return S_OK;
1204 /***********************************************************************
1205 * MSSTYLES_GetPropertyColor
1207 * Retrieve a color value for a property
1209 HRESULT MSSTYLES_GetPropertyColor(PTHEME_PROPERTY tp, COLORREF *pColor)
1211 LPCWSTR lpEnd;
1212 LPCWSTR lpCur;
1213 int red, green, blue;
1215 lpCur = tp->lpValue;
1216 lpEnd = tp->lpValue + tp->dwValueLen;
1218 if(!MSSTYLES_GetNextInteger(lpCur, lpEnd, &lpCur, &red)) {
1219 TRACE("Could not parse color property\n");
1220 return E_PROP_ID_UNSUPPORTED;
1222 if(!MSSTYLES_GetNextInteger(lpCur, lpEnd, &lpCur, &green)) {
1223 TRACE("Could not parse color property\n");
1224 return E_PROP_ID_UNSUPPORTED;
1226 if(!MSSTYLES_GetNextInteger(lpCur, lpEnd, &lpCur, &blue)) {
1227 TRACE("Could not parse color property\n");
1228 return E_PROP_ID_UNSUPPORTED;
1230 *pColor = RGB(red,green,blue);
1231 return S_OK;
1234 /***********************************************************************
1235 * MSSTYLES_GetPropertyColor
1237 * Retrieve a color value for a property
1239 static HRESULT MSSTYLES_GetFont (LPCWSTR lpCur, LPCWSTR lpEnd,
1240 LPCWSTR *lpValEnd, LOGFONTW* pFont)
1242 static const WCHAR szBold[] = {'b','o','l','d','\0'};
1243 static const WCHAR szItalic[] = {'i','t','a','l','i','c','\0'};
1244 static const WCHAR szUnderline[] = {'u','n','d','e','r','l','i','n','e','\0'};
1245 static const WCHAR szStrikeOut[] = {'s','t','r','i','k','e','o','u','t','\0'};
1246 int pointSize;
1247 WCHAR attr[32];
1249 if(!MSSTYLES_GetNextToken(lpCur, lpEnd, &lpCur, pFont->lfFaceName, LF_FACESIZE)) {
1250 TRACE("Property is there, but failed to get face name\n");
1251 *lpValEnd = lpCur;
1252 return E_PROP_ID_UNSUPPORTED;
1254 if(!MSSTYLES_GetNextInteger(lpCur, lpEnd, &lpCur, &pointSize)) {
1255 TRACE("Property is there, but failed to get point size\n");
1256 *lpValEnd = lpCur;
1257 return E_PROP_ID_UNSUPPORTED;
1259 pFont->lfHeight = pointSize;
1260 pFont->lfWeight = FW_REGULAR;
1261 pFont->lfCharSet = DEFAULT_CHARSET;
1262 while(MSSTYLES_GetNextToken(lpCur, lpEnd, &lpCur, attr, sizeof(attr)/sizeof(attr[0]))) {
1263 if(!lstrcmpiW(szBold, attr)) pFont->lfWeight = FW_BOLD;
1264 else if(!!lstrcmpiW(szItalic, attr)) pFont->lfItalic = TRUE;
1265 else if(!!lstrcmpiW(szUnderline, attr)) pFont->lfUnderline = TRUE;
1266 else if(!!lstrcmpiW(szStrikeOut, attr)) pFont->lfStrikeOut = TRUE;
1268 *lpValEnd = lpCur;
1269 return S_OK;
1272 HRESULT MSSTYLES_GetPropertyFont(PTHEME_PROPERTY tp, HDC hdc, LOGFONTW *pFont)
1274 LPCWSTR lpCur = tp->lpValue;
1275 LPCWSTR lpEnd = tp->lpValue + tp->dwValueLen;
1276 HRESULT hr;
1278 ZeroMemory(pFont, sizeof(LOGFONTW));
1279 hr = MSSTYLES_GetFont (lpCur, lpEnd, &lpCur, pFont);
1280 if (SUCCEEDED (hr))
1281 pFont->lfHeight = -MulDiv(pFont->lfHeight, GetDeviceCaps(hdc, LOGPIXELSY), 72);
1283 return hr;
1286 /***********************************************************************
1287 * MSSTYLES_GetPropertyInt
1289 * Retrieve an int value for a property
1291 HRESULT MSSTYLES_GetPropertyInt(PTHEME_PROPERTY tp, int *piVal)
1293 if(!MSSTYLES_GetNextInteger(tp->lpValue, (tp->lpValue + tp->dwValueLen), NULL, piVal)) {
1294 TRACE("Could not parse int property\n");
1295 return E_PROP_ID_UNSUPPORTED;
1297 return S_OK;
1300 /***********************************************************************
1301 * MSSTYLES_GetPropertyIntList
1303 * Retrieve an int list value for a property
1305 HRESULT MSSTYLES_GetPropertyIntList(PTHEME_PROPERTY tp, INTLIST *pIntList)
1307 int i;
1308 LPCWSTR lpCur = tp->lpValue;
1309 LPCWSTR lpEnd = tp->lpValue + tp->dwValueLen;
1311 for(i=0; i < MAX_INTLIST_COUNT; i++) {
1312 if(!MSSTYLES_GetNextInteger(lpCur, lpEnd, &lpCur, &pIntList->iValues[i]))
1313 break;
1315 pIntList->iValueCount = i;
1316 return S_OK;
1319 /***********************************************************************
1320 * MSSTYLES_GetPropertyPosition
1322 * Retrieve a position value for a property
1324 HRESULT MSSTYLES_GetPropertyPosition(PTHEME_PROPERTY tp, POINT *pPoint)
1326 int x,y;
1327 LPCWSTR lpCur = tp->lpValue;
1328 LPCWSTR lpEnd = tp->lpValue + tp->dwValueLen;
1330 if(!MSSTYLES_GetNextInteger(lpCur, lpEnd, &lpCur, &x)) {
1331 TRACE("Could not parse position property\n");
1332 return E_PROP_ID_UNSUPPORTED;
1334 if(!MSSTYLES_GetNextInteger(lpCur, lpEnd, &lpCur, &y)) {
1335 TRACE("Could not parse position property\n");
1336 return E_PROP_ID_UNSUPPORTED;
1338 pPoint->x = x;
1339 pPoint->y = y;
1340 return S_OK;
1343 /***********************************************************************
1344 * MSSTYLES_GetPropertyString
1346 * Retrieve a string value for a property
1348 HRESULT MSSTYLES_GetPropertyString(PTHEME_PROPERTY tp, LPWSTR pszBuff, int cchMaxBuffChars)
1350 lstrcpynW(pszBuff, tp->lpValue, min(tp->dwValueLen+1, cchMaxBuffChars));
1351 return S_OK;
1354 /***********************************************************************
1355 * MSSTYLES_GetPropertyRect
1357 * Retrieve a rect value for a property
1359 HRESULT MSSTYLES_GetPropertyRect(PTHEME_PROPERTY tp, RECT *pRect)
1361 LPCWSTR lpCur = tp->lpValue;
1362 LPCWSTR lpEnd = tp->lpValue + tp->dwValueLen;
1364 MSSTYLES_GetNextInteger(lpCur, lpEnd, &lpCur, &pRect->left);
1365 MSSTYLES_GetNextInteger(lpCur, lpEnd, &lpCur, &pRect->top);
1366 MSSTYLES_GetNextInteger(lpCur, lpEnd, &lpCur, &pRect->right);
1367 if(!MSSTYLES_GetNextInteger(lpCur, lpEnd, &lpCur, &pRect->bottom)) {
1368 TRACE("Could not parse rect property\n");
1369 return E_PROP_ID_UNSUPPORTED;
1371 return S_OK;
1374 /***********************************************************************
1375 * MSSTYLES_GetPropertyMargins
1377 * Retrieve a margins value for a property
1379 HRESULT MSSTYLES_GetPropertyMargins(PTHEME_PROPERTY tp, RECT *prc, MARGINS *pMargins)
1381 LPCWSTR lpCur = tp->lpValue;
1382 LPCWSTR lpEnd = tp->lpValue + tp->dwValueLen;
1384 MSSTYLES_GetNextInteger(lpCur, lpEnd, &lpCur, &pMargins->cxLeftWidth);
1385 MSSTYLES_GetNextInteger(lpCur, lpEnd, &lpCur, &pMargins->cxRightWidth);
1386 MSSTYLES_GetNextInteger(lpCur, lpEnd, &lpCur, &pMargins->cyTopHeight);
1387 if(!MSSTYLES_GetNextInteger(lpCur, lpEnd, &lpCur, &pMargins->cyBottomHeight)) {
1388 TRACE("Could not parse margins property\n");
1389 return E_PROP_ID_UNSUPPORTED;
1391 return S_OK;