forked from jrywu/DIME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BaseWindow.h
191 lines (145 loc) · 5.68 KB
/
BaseWindow.h
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
/* DIME IME for Windows 7/8/10/11
BSD 3-Clause License
Copyright (c) 2022, Jeremy Wu
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#define DEFAULT_TIMER_ID 39772
#pragma once
#define RECT_INSIDE (0x0001)
#define RECT_OVER_LEFT (0x0002)
#define RECT_OVER_TOP (0x0004)
#define RECT_OVER_RIGHT (0x0008)
#define RECT_OVER_BOTTOM (0x0010)
#define RECT_TOO_WIDE (0x0020)
#define RECT_TOO_TALL (0x0040)
#define RECT_ERROR (0x0080)
class CStringRange;
//+---------------------------------------------------------------------------
//
// CBaseWindow
//
//----------------------------------------------------------------------------
class CBaseWindow
{
public:
CBaseWindow();
virtual ~CBaseWindow();
static BOOL _InitWindowClass(_In_ LPCWSTR lpwszClassName, _Out_ ATOM *patom);
static void _UninitWindowClass(ATOM atom);
virtual BOOL _Create(ATOM atom, DWORD dwExStyle, DWORD dwStyle, _In_opt_ CBaseWindow *pParentWnd = nullptr, int wndWidth = 0, int wndHeight = 0, _In_opt_ HWND parentWndHandle = nullptr);
virtual void _Destroy();
virtual void _Move(int x, int y);
virtual void _Resize(int x, int y, int cx, int cy);
virtual void _Show(BOOL isShowWnd);
virtual BOOL _IsWindowVisible();
virtual void _Enable(BOOL enableWindowReceiveInput);
virtual BOOL _IsEnabled();
virtual void _InvalidateRect();
virtual BOOL _GetWindowRect(_Inout_ LPRECT lpRect);
virtual BOOL _GetClientRect(_Inout_ LPRECT lpRect);
virtual LRESULT CALLBACK _WindowProcCallback(_In_ HWND wndHandle, UINT uMsg, _In_ WPARAM wParam, _In_ LPARAM lParam) = 0;
virtual void _OnPaint(_In_ HDC dcHandle, _In_ PAINTSTRUCT *pps) { dcHandle; pps; }
virtual void _OnLButtonDown(POINT pt) { pt; }
virtual void _OnLButtonUp(POINT pt) { pt; }
virtual void _OnMouseMove(POINT pt) { pt; }
virtual void _OnTimer() { }
virtual void _OnTimerID(UINT_PTR timerID) { timerID; }
CBaseWindow* _GetTopmostUIWnd();
HRESULT _GetWindowExtent(_In_ const RECT *prcTextExtent, _In_opt_ RECT *prcCandidateExtent, _Inout_ POINT *pptCandidate);
HWND _GetWnd()
{
return _wndHandle;
}
CBaseWindow *_GetParent()
{
return _pParentWnd;
}
void _SetUIWnd(_In_ CBaseWindow *pUIWnd)
{
_pUIWnd = pUIWnd;
}
CBaseWindow* _GetUIWnd()
{
return _pUIWnd;
}
CBaseWindow *_GetCaptureObject()
{
return _pUIObjCapture;
}
CBaseWindow *_GetTimerObject()
{
return _pTimerUIObj;
}
UINT _GetScrollDelay()
{
return (GetDoubleClickTime() * 4 / 5);
}
UINT _GetScrollSpeed()
{
return (_GetScrollDelay() / 8);
}
protected:
LRESULT _NotifyCommand(UINT uMsg, DWORD dwSB, int nPos);
void _StartCapture()
{
_SetCaptureObject(this);
}
void _EndCapture()
{
_SetCaptureObject(nullptr);
}
BOOL _IsCapture();
void _StartTimer(UINT uElapse, UINT_PTR timerID = DEFAULT_TIMER_ID)
{
_SetTimerObject(this, uElapse, timerID);
}
void _EndTimer(UINT_PTR timerID = DEFAULT_TIMER_ID)
{
_SetTimerObject(nullptr, 0, timerID);
}
BOOL _IsTimer();
private:
void _SetCaptureObject(_In_opt_ CBaseWindow *pUIObj);
void _SetTimerObject(_In_opt_ CBaseWindow *pUIObj, UINT uElapse = 0, _In_opt_ UINT_PTR timerID = DEFAULT_TIMER_ID);
void GetWorkAreaFromPoint(_In_ const POINT& ptPoint, _Out_ LPRECT lprcWorkArea);
void CalcFitPointAroundTextExtent(_In_ const RECT *prcTextExtent, _In_ const RECT *prcWorkArea, _In_ const RECT *prcWindow, _Out_ POINT *ppt);
DWORD RectInRect(_In_ const RECT *prcLimit, _In_ const RECT *prcTarget);
static LRESULT CALLBACK _WindowProc(_In_ HWND wndHandle, UINT uMsg, _In_ WPARAM wParam, _In_ LPARAM lParam);
static CBaseWindow *_GetThis(_In_ HWND wndHandle)
{
return (CBaseWindow *)GetWindowLongPtr(wndHandle, GWLP_USERDATA);
}
static void _SetThis(_In_ HWND wndHandle, _In_opt_ void *lpv)
{
SetWindowLongPtr(wndHandle, GWLP_USERDATA, (LONG_PTR)lpv);
}
private:
HWND _wndHandle;
CBaseWindow *_pParentWnd;
CBaseWindow *_pUIWnd;
CBaseWindow *_pTimerUIObj;
CBaseWindow *_pUIObjCapture;
BOOL _enableVirtualWnd;
BOOL _visibleVirtualWnd;
RECT _RectOfVirtualWnd;
};