2 * Win32 5.1 uxtheme ini file processing
4 * Copyright (C) 2004 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
29 #include "wine/debug.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(uxtheme
);
33 /***********************************************************************
34 * Defines and global variables
37 static const WCHAR szTextFileResource
[] = {
38 'T','E','X','T','F','I','L','E','\0'
41 typedef struct _UXINI_FILE
{
45 } UXINI_FILE
, *PUXINI_FILE
;
47 /***********************************************************************/
49 /**********************************************************************
52 * Load a theme INI file out of resources from the specified
56 * tf Theme to load INI file out of resources
57 * lpName Resource name of the INI file
60 * INI file, or NULL if not found
62 PUXINI_FILE
UXINI_LoadINI(HMODULE hTheme
, LPCWSTR lpName
) {
64 LPCWSTR lpThemesIni
= NULL
;
68 TRACE("Loading resource INI %s\n", debugstr_w(lpName
));
70 if((hrsc
= FindResourceW(hTheme
, lpName
, szTextFileResource
))) {
71 if(!(lpThemesIni
= LoadResource(hTheme
, hrsc
))) {
72 TRACE("%s resource not found\n", debugstr_w(lpName
));
77 dwIniSize
= SizeofResource(hTheme
, hrsc
) / sizeof(WCHAR
);
78 uf
= HeapAlloc(GetProcessHeap(), 0, sizeof(UXINI_FILE
));
79 uf
->lpIni
= lpThemesIni
;
80 uf
->lpCurLoc
= lpThemesIni
;
81 uf
->lpEnd
= lpThemesIni
+ dwIniSize
;
85 /**********************************************************************
88 * Close an open theme INI file
91 * uf Theme INI file to close
93 void UXINI_CloseINI(PUXINI_FILE uf
)
95 HeapFree(GetProcessHeap(), 0, uf
);
98 /**********************************************************************
101 * Determines if we are at the end of the INI file
104 * uf Theme INI file to test
106 static inline BOOL
UXINI_eof(PUXINI_FILE uf
)
108 return uf
->lpCurLoc
>= uf
->lpEnd
;
111 /**********************************************************************
114 * Check if a character is a space character
117 * c Character to test
119 static inline BOOL
UXINI_isspace(WCHAR c
)
121 if (isspace(c
)) return TRUE
;
122 if (c
=='\r') return TRUE
;
126 /**********************************************************************
129 * Get the next line in the INI file, non NULL terminated
130 * removes whitespace at beginning and end of line, and removes comments
133 * uf INI file to retrieve next line
134 * dwLen Location to store pointer to line length
137 * The section name, non NULL terminated
139 static LPCWSTR
UXINI_GetNextLine(PUXINI_FILE uf
, DWORD
*dwLen
)
145 if(UXINI_eof(uf
)) return NULL
;
146 /* Skip whitespace and empty lines */
147 while(!UXINI_eof(uf
) && (UXINI_isspace(*uf
->lpCurLoc
) || *uf
->lpCurLoc
== '\n')) uf
->lpCurLoc
++;
148 lpLineStart
= uf
->lpCurLoc
;
149 lpLineEnd
= uf
->lpCurLoc
;
150 while(!UXINI_eof(uf
) && *uf
->lpCurLoc
!= '\n' && *uf
->lpCurLoc
!= ';') lpLineEnd
= ++uf
->lpCurLoc
;
151 /* If comment was found, skip the rest of the line */
152 if(*uf
->lpCurLoc
== ';')
153 while(!UXINI_eof(uf
) && *uf
->lpCurLoc
!= '\n') uf
->lpCurLoc
++;
154 len
= (lpLineEnd
- lpLineStart
);
155 if(*lpLineStart
!= ';' && len
== 0)
157 } while(*lpLineStart
== ';');
158 /* Remove whitespace from end of line */
159 while(UXINI_isspace(lpLineStart
[len
-1])) len
--;
165 static inline void UXINI_UnGetToLine(PUXINI_FILE uf
, LPCWSTR lpLine
)
167 uf
->lpCurLoc
= lpLine
;
170 /**********************************************************************
171 * UXINI_GetNextSection
173 * Locate the next section in the ini file, and return pointer to
174 * section name, non NULL terminated. Use dwLen to determine length
177 * uf INI file to search, search starts at current location
178 * dwLen Location to store pointer to section name length
181 * The section name, non NULL terminated
183 LPCWSTR
UXINI_GetNextSection(PUXINI_FILE uf
, DWORD
*dwLen
)
186 while((lpLine
= UXINI_GetNextLine(uf
, dwLen
))) {
187 /* Assuming a ']' ending to the section name */
188 if(lpLine
[0] == '[') {
197 /**********************************************************************
200 * Locate a section with the specified name, search starts
201 * at current location in ini file
204 * uf INI file to search, search starts at current location
205 * lpName Name of the section to locate
208 * TRUE if section was found, FALSE otherwise
210 BOOL
UXINI_FindSection(PUXINI_FILE uf
, LPCWSTR lpName
)
214 while((lpSection
= UXINI_GetNextSection(uf
, &dwLen
))) {
215 if(CompareStringW(LOCALE_SYSTEM_DEFAULT
, NORM_IGNORECASE
, lpSection
, dwLen
, lpName
, -1) == CSTR_EQUAL
) {
222 /**********************************************************************
225 * Locate the next value in the current section
228 * uf INI file to search, search starts at current location
229 * dwNameLen Location to store pointer to value name length
230 * lpValue Location to store pointer to the value
231 * dwValueLen Location to store pointer to value length
234 * The value name, non NULL terminated
236 LPCWSTR
UXINI_GetNextValue(PUXINI_FILE uf
, DWORD
*dwNameLen
, LPCWSTR
*lpValue
, DWORD
*dwValueLen
)
241 LPCWSTR value
= NULL
;
245 lpLine
= UXINI_GetNextLine(uf
, &dwLen
);
248 if(lpLine
[0] == '[') {
249 UXINI_UnGetToLine(uf
, lpLine
);
252 lpLineEnd
= lpLine
+ dwLen
;
255 while(namelen
< dwLen
&& *lpLine
!= '=') {
259 if(*lpLine
!= '=') return NULL
;
262 /* Remove whitespace from end of name */
263 while(UXINI_isspace(name
[namelen
-1])) namelen
--;
264 /* Remove whitespace from beginning of value */
265 while(UXINI_isspace(*lpLine
) && lpLine
< lpLineEnd
) lpLine
++;
267 vallen
= dwLen
-(value
-name
);
269 *dwNameLen
= namelen
;
270 *dwValueLen
= vallen
;
276 /**********************************************************************
279 * Locate a value by name
282 * uf INI file to search, search starts at current location
283 * lpName Value name to locate
284 * lpValue Location to store pointer to the value
285 * dwValueLen Location to store pointer to value length
288 * The value name, non NULL terminated
290 BOOL
UXINI_FindValue(PUXINI_FILE uf
, LPCWSTR lpName
, LPCWSTR
*lpValue
, DWORD
*dwValueLen
)
295 while((name
= UXINI_GetNextValue(uf
, &namelen
, lpValue
, dwValueLen
))) {
296 if(CompareStringW(LOCALE_SYSTEM_DEFAULT
, NORM_IGNORECASE
, name
, namelen
, lpName
, -1) == CSTR_EQUAL
) {