forked from jrywu/DIME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ScrollBarWindow.h
242 lines (190 loc) · 7.65 KB
/
ScrollBarWindow.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
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
242
/* 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.
*/
#pragma once
#include "BaseWindow.h"
#include "ButtonWindow.h"
class CScrollButtonWindow;
enum SCROLLBAR_DIRECTION
{
SCROLL_NONE_DIR,
SCROLL_PAGEDOWN, // or page left
SCROLL_PAGEUP // or page right
};
enum SHELL_MODE
{
STOREAPP,
DESKTOP,
};
struct CScrollInfo
{
CScrollInfo()
{
nMax = 0;
nPage = 0;
nPos = 0;
}
int nMax;
int nPage;
int nPos;
};
class CScrollBarWindow;
class CScrollBarWindowFactory
{
public:
static CScrollBarWindowFactory* Instance();
CScrollBarWindow* MakeScrollBarWindow(SHELL_MODE shellMode);
void Release();
protected:
CScrollBarWindowFactory();
private:
static CScrollBarWindowFactory* _instance;
};
//////////////////////////////////////////////////////////////////////
//
// CScrollBarWindow declaration.
//
//////////////////////////////////////////////////////////////////////
class CScrollBarWindow : public CBaseWindow
{
public:
CScrollBarWindow();
virtual ~CScrollBarWindow();
BOOL _Create(ATOM atom, DWORD dwExStyle, DWORD dwStyle, CBaseWindow *pParent = nullptr, int wndWidth = 0, int wndHeight = 0);
void _Resize(int x, int y, int cx, int cy);
void _Show(BOOL isShowWnd);
void _Enable(BOOL isEnable);
LRESULT CALLBACK _WindowProcCallback(_In_ HWND wndHandle, _In_ UINT uMsg, _In_ WPARAM wParam, _In_ LPARAM lParam);
virtual void _OnPaint(_In_ HDC dcHandle, _In_ PAINTSTRUCT *pps);
virtual void _OnLButtonDown(POINT pt);
virtual void _OnLButtonUp(POINT pt);
virtual void _OnMouseMove(POINT pt);
virtual void _OnTimer() { };
virtual void _OnOwnerWndMoved(BOOL isResized);
virtual void _SetScrollInfo(_In_ CScrollInfo *lpsi);
virtual void _GetScrollInfo(_Out_ CScrollInfo *lpsi);
virtual BOOL _GetBtnUpRect(_Out_ RECT *prc);
virtual BOOL _GetBtnDnRect(_Out_ RECT *prc);
virtual void _ShiftLine(int nLine, BOOL isNotify)
{
DWORD dwSB = 0;
dwSB = (nLine > 0 ? SB_LINEDOWN :
nLine < 0 ? SB_LINEUP : 0);
_SetCurPos(_scrollInfo.nPos + nLine, isNotify ? dwSB : -1);
}
virtual void _ShiftPage(int nPage, BOOL isNotify)
{
DWORD dwSB = 0;
dwSB = (nPage > 0 ? SB_PAGEDOWN :
nPage < 0 ? SB_PAGEUP : 0);
_SetCurPos(_scrollInfo.nPos + _scrollInfo.nPage * nPage, isNotify ? dwSB : -1);
}
virtual void _ShiftPosition(int iPos, BOOL isNotify)
{
_SetCurPos(iPos, isNotify ? SB_THUMBPOSITION : -1);
}
virtual void _GetScrollArea(_Out_ RECT *prc);
virtual void _SetCurPos(int nPos, int dwSB);
private:
void _AdjustWindowPos();
CScrollButtonWindow* _pBtnUp;
CScrollButtonWindow* _pBtnDn;
CScrollInfo _scrollInfo;
SIZE _sizeOfScrollBtn;
SCROLLBAR_DIRECTION _scrollDir;
};
//////////////////////////////////////////////////////////////////////
//
// CScrollBarNullWindow declaration.
//
//////////////////////////////////////////////////////////////////////
class CScrollBarNullWindow : public CScrollBarWindow
{
public:
CScrollBarNullWindow() { };
virtual ~CScrollBarNullWindow() { };
virtual BOOL _Create(ATOM atom, DWORD dwExStyle, DWORD dwStyle, _In_opt_ CBaseWindow *pParent = nullptr, int wndWidth = 0, int wndHeight = 0)
{
atom; dwExStyle; dwStyle; pParent; wndWidth; wndHeight;
return TRUE;
};
virtual void _Destroy() { };
virtual void _Move(int x, int y) { x;y; };
virtual void _Resize(int x, int y, int cx, int cy) { x; y; cx; cy; };
virtual void _Show(BOOL isShowWnd) { isShowWnd; };
virtual BOOL _IsWindowVisible() { return TRUE; };
virtual void _Enable(BOOL isEnable) { isEnable; };
virtual BOOL _IsEnabled() { return TRUE; };
virtual void _InvalidateRect() { };
virtual BOOL _GetWindowRect(_Out_ LPRECT lpRect) { lpRect->bottom = 0; lpRect->left = 0; lpRect->right = 0; lpRect->top = 0; return TRUE; };
virtual BOOL _GetClientRect(_Out_ LPRECT lpRect) { lpRect->bottom = 0; lpRect->left = 0; lpRect->right = 0; lpRect->top = 0; return TRUE; };
virtual LRESULT CALLBACK _WindowProcCallback(_In_ HWND wndHandle, _In_ UINT uMsg, _In_ WPARAM wParam, _In_ LPARAM lParam)
{
wndHandle; uMsg; wParam; lParam;
return 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 _OnOwnerWndMoved(BOOL isResized) { isResized; };
virtual void _SetScrollInfo(_In_ CScrollInfo *lpsi) { lpsi; };
virtual void _GetScrollInfo(_In_ CScrollInfo *lpsi) { lpsi; };
virtual BOOL _GetBtnUpRect(_Out_ RECT *prc) { prc->bottom = 0; prc->left = 0; prc->right = 0; prc->top = 0; return TRUE; };
virtual BOOL _GetBtnDnRect(_Out_ RECT *prc) { prc->bottom = 0; prc->left = 0; prc->right = 0; prc->top = 0; return TRUE; };
virtual void _ShiftLine(int nLine, BOOL isNotify) { nLine; isNotify; };
virtual void _ShiftPage(int nPage, BOOL isNotify) { nPage; isNotify; };
virtual void _ShiftPosition(int iPos, BOOL isNotify) { iPos; isNotify; };
virtual void _GetScrollArea(_Out_ RECT *prc) { prc->bottom = 0; prc->left = 0; prc->right = 0; prc->top = 0; };
virtual void _SetCurPos(int nPos, DWORD dwSB) { nPos; dwSB; };
};
//////////////////////////////////////////////////////////////////////
//
// CScrollButtonWondow declaration.
//
//////////////////////////////////////////////////////////////////////
class CScrollButtonWindow : public CButtonWindow
{
public:
CScrollButtonWindow(UINT uSubType)
{
subTypeOfControl = uSubType;
}
virtual ~CScrollButtonWindow()
{
}
LRESULT CALLBACK _WindowProcCallback(_In_ HWND wndHandle, UINT uMsg, _In_ WPARAM wParam, _In_ LPARAM lParam)
{
wndHandle;uMsg;wParam;lParam;
return 0;
}
virtual void _OnPaint(_In_ HDC dcHandle, _In_ PAINTSTRUCT *pps);
virtual void _OnLButtonDown(POINT pt);
virtual void _OnLButtonUp(POINT pt);
virtual void _OnTimer();
private:
UINT subTypeOfControl; // DFCS_SCROLLxxx for DrawFrameControl
};