-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThemeLib.cpp
More file actions
121 lines (103 loc) · 4.06 KB
/
Copy pathThemeLib.cpp
File metadata and controls
121 lines (103 loc) · 4.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// Copyright (C) 2009,2010,2011,2012 GlavSoft LLC.
// All rights reserved.
//
//-------------------------------------------------------------------------
// This file is part of the TightVNC software. Please visit our Web site:
//
// http://www.tightvnc.com/
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//-------------------------------------------------------------------------
//
#include "ThemeLib.h"
PFNOPENTHEMEDATA ThemeLib::s_OpenThemeData = NULL;
PFNDRAWTHEMEBACKGROUND ThemeLib::s_DrawThemeBackground = NULL;
PFNCLOSETHEMEDATA ThemeLib::s_CloseThemeData = NULL;
PFNDRAWTHEMETEXT ThemeLib::s_DrawThemeText = NULL;
PFNGETTHEMEBACKGROUNDCONTENTRECT ThemeLib::s_GetThemeBackgroundContentRect = NULL;
bool ThemeLib::s_isThemeLibLoaded = false;
HMODULE ThemeLib::s_lib = 0;
ThemeLib::ThemeLib()
{
}
ThemeLib::~ThemeLib()
{
}
bool ThemeLib::initialize()
{
s_lib = LoadLibrary(_T("UXTHEME.DLL"));
if (s_lib) {
s_OpenThemeData = (PFNOPENTHEMEDATA)GetProcAddress(s_lib, "OpenThemeData");
s_DrawThemeBackground = (PFNDRAWTHEMEBACKGROUND)GetProcAddress(s_lib, "DrawThemeBackground");
s_CloseThemeData = (PFNCLOSETHEMEDATA)GetProcAddress(s_lib, "CloseThemeData");
s_DrawThemeText = (PFNDRAWTHEMETEXT)GetProcAddress(s_lib, "DrawThemeText");
s_GetThemeBackgroundContentRect = (PFNGETTHEMEBACKGROUNDCONTENTRECT)GetProcAddress(s_lib, "GetThemeBackgroundContentRect");
if (s_OpenThemeData
&& s_DrawThemeBackground
&& s_CloseThemeData
&& s_DrawThemeText
&& s_GetThemeBackgroundContentRect) {
s_isThemeLibLoaded = true;
}
}
return s_isThemeLibLoaded;
}
void ThemeLib::deinitialize()
{
if (s_lib) {
FreeLibrary(s_lib);
}
s_isThemeLibLoaded = false;
s_OpenThemeData = NULL;
s_DrawThemeBackground = NULL;
s_CloseThemeData = NULL;
s_DrawThemeText = NULL;
s_GetThemeBackgroundContentRect = NULL;
}
bool ThemeLib::isLoaded()
{
return s_isThemeLibLoaded;
}
HRESULT ThemeLib::CloseThemeData(HTHEME hTheme)
{
return s_CloseThemeData(hTheme);
}
HRESULT ThemeLib::DrawThemeBackground(HTHEME hTheme, HDC hdc,
int iPartId, int iStateId,
const RECT *pRect,
const RECT *pClipRect)
{
return s_DrawThemeBackground(hTheme, hdc, iPartId, iStateId, pRect, pClipRect);
}
HTHEME ThemeLib::OpenThemeData(HWND hwnd, LPCWSTR pszClassList)
{
return s_OpenThemeData(hwnd, pszClassList);
}
HRESULT ThemeLib::DrawThemeText(HTHEME hTheme, HDC hdc, int iPartId,
int iStateId, LPCWSTR pszText,
int iCharCount, DWORD dwTextFlags,
DWORD dwTextFlags2, const RECT *pRect)
{
return s_DrawThemeText(hTheme, hdc, iPartId, iStateId, pszText,
iCharCount, dwTextFlags, dwTextFlags2, pRect);
}
HRESULT ThemeLib::GetThemeBackgroundContentRect(HTHEME hTheme, HDC hdc,
int iPartId, int iStateId,
const RECT *pBoundingRect,
RECT *pContentRect)
{
return s_GetThemeBackgroundContentRect(hTheme, hdc, iPartId, iStateId,
pBoundingRect, pContentRect);
}