aboutsummaryrefslogtreecommitdiff
path: root/src/dutil/inc/thmutil.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/dutil/inc/thmutil.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/dutil/inc/thmutil.h b/src/dutil/inc/thmutil.h
index e65d0646..41b1e916 100644
--- a/src/dutil/inc/thmutil.h
+++ b/src/dutil/inc/thmutil.h
@@ -239,13 +239,27 @@ struct THEME_PAGE
239 THEME_SAVEDVARIABLE* rgSavedVariables; 239 THEME_SAVEDVARIABLE* rgSavedVariables;
240}; 240};
241 241
242struct THEME_FONT 242struct THEME_FONT_INSTANCE
243{ 243{
244 UINT nDpi;
244 HFONT hFont; 245 HFONT hFont;
246};
247
248struct THEME_FONT
249{
250 LONG lfHeight;
251 LONG lfWeight;
252 BYTE lfUnderline;
253 BYTE lfQuality;
254 LPWSTR sczFaceName;
255
245 COLORREF crForeground; 256 COLORREF crForeground;
246 HBRUSH hForeground; 257 HBRUSH hForeground;
247 COLORREF crBackground; 258 COLORREF crBackground;
248 HBRUSH hBackground; 259 HBRUSH hBackground;
260
261 DWORD cFontInstances;
262 THEME_FONT_INSTANCE* rgFontInstances;
249}; 263};
250 264
251 265