diff options
Diffstat (limited to '')
-rw-r--r-- | CPP/Windows/Window.h | 113 |
1 files changed, 96 insertions, 17 deletions
diff --git a/CPP/Windows/Window.h b/CPP/Windows/Window.h index 83726c7..a99143b 100644 --- a/CPP/Windows/Window.h +++ b/CPP/Windows/Window.h | |||
@@ -1,7 +1,7 @@ | |||
1 | // Windows/Window.h | 1 | // Windows/Window.h |
2 | 2 | ||
3 | #ifndef __WINDOWS_WINDOW_H | 3 | #ifndef ZIP7_INC_WINDOWS_WINDOW_H |
4 | #define __WINDOWS_WINDOW_H | 4 | #define ZIP7_INC_WINDOWS_WINDOW_H |
5 | 5 | ||
6 | #include "../Common/MyWindows.h" | 6 | #include "../Common/MyWindows.h" |
7 | #include "../Common/MyString.h" | 7 | #include "../Common/MyString.h" |
@@ -9,23 +9,100 @@ | |||
9 | #include "Defs.h" | 9 | #include "Defs.h" |
10 | 10 | ||
11 | #ifndef UNDER_CE | 11 | #ifndef UNDER_CE |
12 | #ifdef WM_CHANGEUISTATE | ||
13 | #define Z7_WIN_WM_CHANGEUISTATE WM_CHANGEUISTATE | ||
14 | #define Z7_WIN_WM_UPDATEUISTATE WM_UPDATEUISTATE | ||
15 | #define Z7_WIN_WM_QUERYUISTATE WM_QUERYUISTATE | ||
16 | #else | ||
17 | // these are defined for (_WIN32_WINNT >= 0x0500): | ||
18 | #define Z7_WIN_WM_CHANGEUISTATE 0x0127 | ||
19 | #define Z7_WIN_WM_UPDATEUISTATE 0x0128 | ||
20 | #define Z7_WIN_WM_QUERYUISTATE 0x0129 | ||
21 | #endif | ||
22 | |||
23 | #ifdef UIS_SET | ||
12 | 24 | ||
13 | #define MY__WM_CHANGEUISTATE 0x0127 | 25 | #define Z7_WIN_UIS_SET UIS_SET |
14 | #define MY__WM_UPDATEUISTATE 0x0128 | 26 | #define Z7_WIN_UIS_CLEAR UIS_CLEAR |
15 | #define MY__WM_QUERYUISTATE 0x0129 | 27 | #define Z7_WIN_UIS_INITIALIZE UIS_INITIALIZE |
16 | 28 | ||
29 | #define Z7_WIN_UISF_HIDEFOCUS UISF_HIDEFOCUS | ||
30 | #define Z7_WIN_UISF_HIDEACCEL UISF_HIDEACCEL | ||
31 | |||
32 | #else | ||
33 | // these are defined for (_WIN32_WINNT >= 0x0500): | ||
17 | // LOWORD(wParam) values in WM_*UISTATE | 34 | // LOWORD(wParam) values in WM_*UISTATE |
18 | #define MY__UIS_SET 1 | 35 | #define Z7_WIN_UIS_SET 1 |
19 | #define MY__UIS_CLEAR 2 | 36 | #define Z7_WIN_UIS_CLEAR 2 |
20 | #define MY__UIS_INITIALIZE 3 | 37 | #define Z7_WIN_UIS_INITIALIZE 3 |
21 | 38 | ||
22 | // HIWORD(wParam) values in WM_*UISTATE | 39 | // HIWORD(wParam) values in WM_*UISTATE |
23 | #define MY__UISF_HIDEFOCUS 0x1 | 40 | #define Z7_WIN_UISF_HIDEFOCUS 0x1 |
24 | #define MY__UISF_HIDEACCEL 0x2 | 41 | #define Z7_WIN_UISF_HIDEACCEL 0x2 |
25 | #define MY__UISF_ACTIVE 0x4 | 42 | // defined for for (_WIN32_WINNT >= 0x0501): |
43 | // #define Z7_WIN_UISF_ACTIVE 0x4 | ||
26 | 44 | ||
27 | #endif | 45 | #endif |
28 | 46 | ||
47 | #endif // UNDER_CE | ||
48 | |||
49 | |||
50 | #ifdef Z7_OLD_WIN_SDK | ||
51 | |||
52 | // #define VK_OEM_1 0xBA // ';:' for US | ||
53 | #define VK_OEM_PLUS 0xBB // '+' any country | ||
54 | // #define VK_OEM_COMMA 0xBC // ',' any country | ||
55 | #define VK_OEM_MINUS 0xBD // '-' any country | ||
56 | // #define VK_OEM_PERIOD 0xBE // '.' any country | ||
57 | // #define VK_OEM_2 0xBF // '/?' for US | ||
58 | // #define VK_OEM_3 0xC0 // '`~' for US | ||
59 | |||
60 | // #ifndef GWLP_USERDATA | ||
61 | #define GWLP_WNDPROC (-4) | ||
62 | #define GWLP_USERDATA (-21) | ||
63 | // #endif | ||
64 | #define DWLP_MSGRESULT 0 | ||
65 | // #define DWLP_DLGPROC DWLP_MSGRESULT + sizeof(LRESULT) | ||
66 | // #define DWLP_USER DWLP_DLGPROC + sizeof(DLGPROC) | ||
67 | |||
68 | #define BTNS_BUTTON TBSTYLE_BUTTON // 0x0000 | ||
69 | |||
70 | /* | ||
71 | vc6 defines INT_PTR via long: | ||
72 | typedef long INT_PTR, *PINT_PTR; | ||
73 | typedef unsigned long UINT_PTR, *PUINT_PTR; | ||
74 | but newer sdk (sdk2003+) defines INT_PTR via int: | ||
75 | typedef _W64 int INT_PTR, *PINT_PTR; | ||
76 | typedef _W64 unsigned int UINT_PTR, *PUINT_PTR; | ||
77 | */ | ||
78 | |||
79 | #define IS_INTRESOURCE(_r) (((ULONG_PTR)(_r) >> 16) == 0) | ||
80 | |||
81 | #define GetWindowLongPtrA GetWindowLongA | ||
82 | #define GetWindowLongPtrW GetWindowLongW | ||
83 | #ifdef UNICODE | ||
84 | #define GetWindowLongPtr GetWindowLongPtrW | ||
85 | #else | ||
86 | #define GetWindowLongPtr GetWindowLongPtrA | ||
87 | #endif // !UNICODE | ||
88 | |||
89 | #define SetWindowLongPtrA SetWindowLongA | ||
90 | #define SetWindowLongPtrW SetWindowLongW | ||
91 | #ifdef UNICODE | ||
92 | #define SetWindowLongPtr SetWindowLongPtrW | ||
93 | #else | ||
94 | #define SetWindowLongPtr SetWindowLongPtrA | ||
95 | #endif // !UNICODE | ||
96 | |||
97 | #define ListView_SetCheckState(hwndLV, i, fCheck) \ | ||
98 | ListView_SetItemState(hwndLV, i, INDEXTOSTATEIMAGEMASK((fCheck)?2:1), LVIS_STATEIMAGEMASK) | ||
99 | |||
100 | #endif // Z7_OLD_WIN_SDK | ||
101 | |||
102 | inline bool LRESULTToBool(LRESULT v) { return (v != FALSE); } | ||
103 | |||
104 | #define MY_int_TO_WPARAM(i) ((WPARAM)(INT_PTR)(i)) | ||
105 | |||
29 | namespace NWindows { | 106 | namespace NWindows { |
30 | 107 | ||
31 | inline ATOM MyRegisterClass(CONST WNDCLASS *wndClass) | 108 | inline ATOM MyRegisterClass(CONST WNDCLASS *wndClass) |
@@ -52,12 +129,13 @@ bool MySetWindowText(HWND wnd, LPCWSTR s); | |||
52 | 129 | ||
53 | class CWindow | 130 | class CWindow |
54 | { | 131 | { |
132 | Z7_CLASS_NO_COPY(CWindow) | ||
55 | private: | 133 | private: |
56 | // bool ModifyStyleBase(int styleOffset, DWORD remove, DWORD add, UINT flags); | 134 | // bool ModifyStyleBase(int styleOffset, DWORD remove, DWORD add, UINT flags); |
57 | protected: | 135 | protected: |
58 | HWND _window; | 136 | HWND _window; |
59 | public: | 137 | public: |
60 | CWindow(HWND newWindow = NULL): _window(newWindow){}; | 138 | CWindow(HWND newWindow = NULL): _window(newWindow) {} |
61 | CWindow& operator=(HWND newWindow) | 139 | CWindow& operator=(HWND newWindow) |
62 | { | 140 | { |
63 | _window = newWindow; | 141 | _window = newWindow; |
@@ -174,6 +252,7 @@ public: | |||
174 | void SetRedraw(bool redraw = true) { SendMsg(WM_SETREDRAW, (WPARAM)BoolToBOOL(redraw), 0); } | 252 | void SetRedraw(bool redraw = true) { SendMsg(WM_SETREDRAW, (WPARAM)BoolToBOOL(redraw), 0); } |
175 | 253 | ||
176 | LONG_PTR SetStyle(LONG_PTR style) { return SetLongPtr(GWL_STYLE, style); } | 254 | LONG_PTR SetStyle(LONG_PTR style) { return SetLongPtr(GWL_STYLE, style); } |
255 | // LONG_PTR SetStyle(DWORD style) { return SetLongPtr(GWL_STYLE, (LONG_PTR)style); } | ||
177 | LONG_PTR GetStyle() const { return GetLongPtr(GWL_STYLE); } | 256 | LONG_PTR GetStyle() const { return GetLongPtr(GWL_STYLE); } |
178 | // bool MyIsMaximized() const { return ((GetStyle() & WS_MAXIMIZE) != 0); } | 257 | // bool MyIsMaximized() const { return ((GetStyle() & WS_MAXIMIZE) != 0); } |
179 | 258 | ||
@@ -246,19 +325,19 @@ public: | |||
246 | { return GetWindowTextLength(_window); } | 325 | { return GetWindowTextLength(_window); } |
247 | int GetText(LPTSTR string, int maxCount) const | 326 | int GetText(LPTSTR string, int maxCount) const |
248 | { return GetWindowText(_window, string, maxCount); } | 327 | { return GetWindowText(_window, string, maxCount); } |
249 | bool GetText(CSysString &s); | 328 | bool GetText(CSysString &s) const; |
250 | #ifndef _UNICODE | 329 | #ifndef _UNICODE |
251 | /* | 330 | /* |
252 | UINT GetText(LPWSTR string, int maxCount) const | 331 | UINT GetText(LPWSTR string, int maxCount) const |
253 | { return GetWindowTextW(_window, string, maxCount); } | 332 | { return GetWindowTextW(_window, string, maxCount); } |
254 | */ | 333 | */ |
255 | bool GetText(UString &s); | 334 | bool GetText(UString &s) const; |
256 | #endif | 335 | #endif |
257 | 336 | ||
258 | bool Enable(bool enable) | 337 | bool Enable(bool enable) |
259 | { return BOOLToBool(::EnableWindow(_window, BoolToBOOL(enable))); } | 338 | { return BOOLToBool(::EnableWindow(_window, BoolToBOOL(enable))); } |
260 | 339 | ||
261 | bool IsEnabled() | 340 | bool IsEnabled() const |
262 | { return BOOLToBool(::IsWindowEnabled(_window)); } | 341 | { return BOOLToBool(::IsWindowEnabled(_window)); } |
263 | 342 | ||
264 | #ifndef UNDER_CE | 343 | #ifndef UNDER_CE |
@@ -266,7 +345,7 @@ public: | |||
266 | { return ::GetSystemMenu(_window, BoolToBOOL(revert)); } | 345 | { return ::GetSystemMenu(_window, BoolToBOOL(revert)); } |
267 | #endif | 346 | #endif |
268 | 347 | ||
269 | UINT_PTR SetTimer(UINT_PTR idEvent, UINT elapse, TIMERPROC timerFunc = 0) | 348 | UINT_PTR SetTimer(UINT_PTR idEvent, UINT elapse, TIMERPROC timerFunc = NULL) |
270 | { return ::SetTimer(_window, idEvent, elapse, timerFunc); } | 349 | { return ::SetTimer(_window, idEvent, elapse, timerFunc); } |
271 | bool KillTimer(UINT_PTR idEvent) | 350 | bool KillTimer(UINT_PTR idEvent) |
272 | {return BOOLToBool(::KillTimer(_window, idEvent)); } | 351 | {return BOOLToBool(::KillTimer(_window, idEvent)); } |