forked from tapetums/include
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AeroWnd.hpp
241 lines (192 loc) · 5.73 KB
/
AeroWnd.hpp
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
#pragma once
//---------------------------------------------------------------------------//
//
// AeroWnd.hpp
// エアロウィンドウをカプセル化するクラス
// Copyright (C) 2005-2016 tapetums
//
//---------------------------------------------------------------------------//
#include <windows.h>
#include <windowsx.h>
#include <uxtheme.h>
#pragma comment(lib, "uxtheme.lib")
#include <dwmapi.h>
#pragma comment(lib, "dwmapi.lib")
#include "UWnd.hpp"
//---------------------------------------------------------------------------//
// 前方宣言
//---------------------------------------------------------------------------//
namespace tapetums
{
class AeroWnd;
}
//---------------------------------------------------------------------------//
// AeroGlass対応 ウィンドウの基底クラス
//---------------------------------------------------------------------------//
class tapetums::AeroWnd : public tapetums::UWnd
{
using super = UWnd;
protected: // members
HANDLE m_hTheme { nullptr };
public: // ctor / dtor
AeroWnd();
~AeroWnd() = default;
AeroWnd(const AeroWnd&) = delete;
AeroWnd& operator= (const AeroWnd&) = delete;
AeroWnd(AeroWnd&& rhs) noexcept = default;
AeroWnd& operator=(AeroWnd&& rhs) noexcept = default;
public: // methods
bool WINAPI IsCompositionEnabled() const;
void WINAPI EnableAero();
void WINAPI DisableAero();
void WINAPI ClearWindow(HDC hdc, HBRUSH hbr = nullptr);
void WINAPI CloseThemeData();
public: // window procedures
LRESULT CALLBACK WndProc(HWND hwnd, UINT uMsg, WPARAM wp, LPARAM lp) override;
protected: // event handlers
LRESULT CALLBACK OnThemeChanged();
LRESULT CALLBACK OnDwmCompositionChanged();
};
//---------------------------------------------------------------------------//
// AeroWnd ctor / dtor
//---------------------------------------------------------------------------//
inline tapetums::AeroWnd::AeroWnd()
{
struct BufferedPaintRAII
{
BufferedPaintRAII() { ::BufferedPaintInit(); }
~BufferedPaintRAII() { ::BufferedPaintUnInit(); }
};
static BufferedPaintRAII bp;
}
//---------------------------------------------------------------------------//
// AeroWnd ウィンドウプロシージャ
//---------------------------------------------------------------------------//
inline LRESULT CALLBACK tapetums::AeroWnd::WndProc
(
HWND hwnd, UINT uMsg, WPARAM wp, LPARAM lp
)
{
switch ( uMsg )
{
case WM_CREATE:
case WM_THEMECHANGED:
{
return OnThemeChanged();
}
case WM_DWMCOMPOSITIONCHANGED:
{
return OnDwmCompositionChanged();
}
case WM_PAINT:
{
PAINTSTRUCT ps;
const auto hDC = ::BeginPaint(hwnd, &ps);
ClearWindow(hDC);
::EndPaint(hwnd, &ps);
break;
}
case WM_DESTROY:
{
CloseThemeData();
break;
}
default:
{
break;
}
}
return super::WndProc(hwnd, uMsg, wp, lp);
}
//---------------------------------------------------------------------------//
// AeroWnd メソッド
//---------------------------------------------------------------------------//
inline bool WINAPI tapetums::AeroWnd::IsCompositionEnabled() const
{
BOOL is_enabled;
::DwmIsCompositionEnabled(&is_enabled);
return is_enabled ? true : false;
}
//---------------------------------------------------------------------------//
inline void WINAPI tapetums::AeroWnd::EnableAero()
{
DWM_BLURBEHIND bb{ };
bb.dwFlags = DWM_BB_ENABLE;
bb.fEnable = TRUE;
bb.hRgnBlur = nullptr;
::DwmEnableBlurBehindWindow(m_hwnd, &bb);
MARGINS margins{ -1 };
::DwmExtendFrameIntoClientArea(m_hwnd, &margins);
Refresh();
}
//---------------------------------------------------------------------------//
inline void WINAPI tapetums::AeroWnd::DisableAero()
{
DWM_BLURBEHIND bb{ };
bb.dwFlags = DWM_BB_ENABLE;
bb.fEnable = FALSE;
bb.hRgnBlur = nullptr;
::DwmEnableBlurBehindWindow(m_hwnd, &bb);
MARGINS margins{ 0 };
::DwmExtendFrameIntoClientArea(m_hwnd, &margins);
Refresh();
}
//---------------------------------------------------------------------------//
inline void WINAPI tapetums::AeroWnd::ClearWindow
(
HDC hdc, HBRUSH hbr
)
{
if ( nullptr == hbr )
{
// 背景のブラシを取得
if ( ::IsThemeActive() )
{
hbr = GetStockBrush(BLACK_BRUSH);
}
else
{
hbr = ::GetSysColorBrush(COLOR_BTNFACE);
}
}
// 背景をクリア
RECT rc { 0, 0, m_w, m_h };
::FillRect(hdc, &rc, hbr);
}
//---------------------------------------------------------------------------//
inline void WINAPI tapetums::AeroWnd::CloseThemeData()
{
if ( m_hTheme )
{
::CloseThemeData(m_hTheme);
m_hTheme = nullptr;
}
}
//---------------------------------------------------------------------------//
// AeroWnd イベントハンドラ
//---------------------------------------------------------------------------//
inline LRESULT CALLBACK tapetums::AeroWnd::OnThemeChanged()
{
CloseThemeData();
if ( ::IsThemeActive() )
{
m_hTheme = ::OpenThemeData(m_hwnd, L"BUTTON");
}
return OnDwmCompositionChanged();
}
//---------------------------------------------------------------------------//
inline LRESULT CALLBACK tapetums::AeroWnd::OnDwmCompositionChanged()
{
if ( IsCompositionEnabled() )
{
EnableAero();
}
else
{
DisableAero();
}
Refresh();
return 0;
}
//---------------------------------------------------------------------------//
// AeroWnd.hpp