]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
faa49bfd WS |
2 | // Name: src/msw/window.cpp |
3 | // Purpose: wxWindowMSW | |
2bda0e17 | 4 | // Author: Julian Smart |
a23fd0e1 | 5 | // Modified by: VZ on 13.05.99: no more Default(), MSWOnXXX() reorganisation |
2bda0e17 KB |
6 | // Created: 04/01/98 |
7 | // RCS-ID: $Id$ | |
6c9a19aa | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
a23fd0e1 VZ |
12 | // =========================================================================== |
13 | // declarations | |
14 | // =========================================================================== | |
15 | ||
16 | // --------------------------------------------------------------------------- | |
17 | // headers | |
18 | // --------------------------------------------------------------------------- | |
19 | ||
2bda0e17 KB |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
09914df7 | 24 | #pragma hdrstop |
2bda0e17 KB |
25 | #endif |
26 | ||
e4db172a WS |
27 | #include "wx/window.h" |
28 | ||
2bda0e17 | 29 | #ifndef WX_PRECOMP |
9ed0d735 | 30 | #include "wx/msw/wrapwin.h" |
57bd4c60 WS |
31 | #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly" |
32 | #include "wx/msw/missing.h" | |
0c589ad0 | 33 | #include "wx/accel.h" |
3a19e16d VZ |
34 | #include "wx/menu.h" |
35 | #include "wx/dc.h" | |
36 | #include "wx/dcclient.h" | |
8e92ccef | 37 | #include "wx/dcmemory.h" |
3a19e16d VZ |
38 | #include "wx/utils.h" |
39 | #include "wx/app.h" | |
3a19e16d VZ |
40 | #include "wx/layout.h" |
41 | #include "wx/dialog.h" | |
42 | #include "wx/frame.h" | |
43 | #include "wx/listbox.h" | |
44 | #include "wx/button.h" | |
3a19e16d | 45 | #include "wx/msgdlg.h" |
1f3943e0 | 46 | #include "wx/settings.h" |
8d753488 | 47 | #include "wx/statbox.h" |
1e2aa2f8 | 48 | #include "wx/sizer.h" |
88a7a4e1 | 49 | #include "wx/intl.h" |
e4db172a | 50 | #include "wx/log.h" |
fec9cc08 | 51 | #include "wx/textctrl.h" |
25466131 | 52 | #include "wx/menuitem.h" |
02761f6c | 53 | #include "wx/module.h" |
2bda0e17 KB |
54 | #endif |
55 | ||
61fef19b | 56 | #if wxUSE_OWNER_DRAWN && !defined(__WXUNIVERSAL__) |
09914df7 | 57 | #include "wx/ownerdrw.h" |
2bda0e17 KB |
58 | #endif |
59 | ||
5acec112 | 60 | #include "wx/hashmap.h" |
a3dc1da9 | 61 | #include "wx/evtloop.h" |
355debca | 62 | #include "wx/power.h" |
c6430ed0 | 63 | #include "wx/sysopt.h" |
d79df32c | 64 | |
9e2896e5 VZ |
65 | #if wxUSE_DRAG_AND_DROP |
66 | #include "wx/dnd.h" | |
2bda0e17 KB |
67 | #endif |
68 | ||
ed5317e5 JS |
69 | #if wxUSE_ACCESSIBILITY |
70 | #include "wx/access.h" | |
bef8d481 | 71 | #include <ole2.h> |
ed5317e5 JS |
72 | #include <oleacc.h> |
73 | #ifndef WM_GETOBJECT | |
74 | #define WM_GETOBJECT 0x003D | |
75 | #endif | |
76 | #ifndef OBJID_CLIENT | |
77 | #define OBJID_CLIENT 0xFFFFFFFC | |
78 | #endif | |
79 | #endif | |
80 | ||
0c589ad0 | 81 | #include "wx/msw/private.h" |
0c03f52d | 82 | #include "wx/msw/private/keyboard.h" |
888dde65 | 83 | #include "wx/msw/dcclient.h" |
8cd79b7a | 84 | #include "wx/private/textmeasure.h" |
0c589ad0 | 85 | |
750b78ba | 86 | #if wxUSE_TOOLTIPS |
42e69d6b | 87 | #include "wx/tooltip.h" |
750b78ba JS |
88 | #endif |
89 | ||
789295bf VZ |
90 | #if wxUSE_CARET |
91 | #include "wx/caret.h" | |
92 | #endif // wxUSE_CARET | |
93 | ||
7ee21e3a VZ |
94 | #if wxUSE_RADIOBOX |
95 | #include "wx/radiobox.h" | |
96 | #endif // wxUSE_RADIOBOX | |
97 | ||
6fe19057 VZ |
98 | #if wxUSE_SPINCTRL |
99 | #include "wx/spinctrl.h" | |
100 | #endif // wxUSE_SPINCTRL | |
101 | ||
d9317fd4 | 102 | #include "wx/notebook.h" |
5c6c3176 | 103 | #include "wx/listctrl.h" |
aafb9978 | 104 | #include "wx/dynlib.h" |
2a47d3c1 | 105 | |
2bda0e17 KB |
106 | #include <string.h> |
107 | ||
d61c1a6f | 108 | #if (!defined(__GNUWIN32_OLD__) && !defined(__WXMICROWIN__) /* && !defined(__WXWINCE__) */ ) || defined(__CYGWIN10__) |
3a19e16d VZ |
109 | #include <shellapi.h> |
110 | #include <mmsystem.h> | |
2bda0e17 KB |
111 | #endif |
112 | ||
113 | #ifdef __WIN32__ | |
3a19e16d | 114 | #include <windowsx.h> |
2bda0e17 KB |
115 | #endif |
116 | ||
7f0586ef | 117 | #if defined(__WXWINCE__) |
4e5c6c33 | 118 | #include "wx/msw/wince/missing.h" |
7d4f65e3 JS |
119 | #ifdef __POCKETPC__ |
120 | #include <windows.h> | |
121 | #include <shellapi.h> | |
122 | #include <ole2.h> | |
123 | #include <aygshell.h> | |
124 | #endif | |
7f0586ef JS |
125 | #endif |
126 | ||
a047aff2 JS |
127 | #if wxUSE_UXTHEME |
128 | #include "wx/msw/uxtheme.h" | |
129 | #define EP_EDITTEXT 1 | |
130 | #define ETS_NORMAL 1 | |
131 | #define ETS_HOT 2 | |
132 | #define ETS_SELECTED 3 | |
133 | #define ETS_DISABLED 4 | |
134 | #define ETS_FOCUSED 5 | |
135 | #define ETS_READONLY 6 | |
136 | #define ETS_ASSIST 7 | |
137 | #endif | |
138 | ||
21487550 VZ |
139 | // define the constants used by AnimateWindow() if our SDK doesn't have them |
140 | #ifndef AW_CENTER | |
141 | #define AW_HOR_POSITIVE 0x00000001 | |
142 | #define AW_HOR_NEGATIVE 0x00000002 | |
143 | #define AW_VER_POSITIVE 0x00000004 | |
144 | #define AW_VER_NEGATIVE 0x00000008 | |
145 | #define AW_CENTER 0x00000010 | |
146 | #define AW_HIDE 0x00010000 | |
147 | #define AW_ACTIVATE 0x00020000 | |
148 | #define AW_SLIDE 0x00040000 | |
149 | #define AW_BLEND 0x00080000 | |
150 | #endif | |
151 | ||
aafb9978 | 152 | #if defined(TME_LEAVE) && defined(WM_MOUSELEAVE) && wxUSE_DYNLIB_CLASS |
4e5c6c33 VZ |
153 | #define HAVE_TRACKMOUSEEVENT |
154 | #endif // everything needed for TrackMouseEvent() | |
155 | ||
c358ea41 VZ |
156 | // set this to 1 to filter out duplicate mouse events, e.g. mouse move events |
157 | // when mouse position didnd't change | |
158 | #ifdef __WXWINCE__ | |
159 | #define wxUSE_MOUSEEVENT_HACK 0 | |
160 | #else | |
161 | #define wxUSE_MOUSEEVENT_HACK 1 | |
162 | #endif | |
163 | ||
2f68482e VZ |
164 | // not all compilers/platforms have X button related declarations (notably |
165 | // Windows CE doesn't, and probably some old SDKs don't neither) | |
166 | #ifdef WM_XBUTTONDOWN | |
167 | #define wxHAS_XBUTTON | |
168 | #endif | |
169 | ||
7095bd60 VZ |
170 | #ifndef MAPVK_VK_TO_CHAR |
171 | #define MAPVK_VK_TO_CHAR 2 | |
172 | #endif | |
173 | ||
a23fd0e1 | 174 | // --------------------------------------------------------------------------- |
42e69d6b | 175 | // global variables |
a23fd0e1 | 176 | // --------------------------------------------------------------------------- |
47cbd6da | 177 | |
1950edc3 RR |
178 | #if wxUSE_MENUS_NATIVE |
179 | extern wxMenu *wxCurrentPopupMenu; | |
180 | #endif | |
181 | ||
a3b89fa9 VZ |
182 | #if wxUSE_UXTHEME |
183 | // This is a hack used by the owner-drawn wxButton implementation to ensure | |
184 | // that the brush used for erasing its background is correctly aligned with the | |
185 | // control. | |
bb60690d | 186 | wxWindowMSW *wxWindowBeingErased = NULL; |
a3b89fa9 VZ |
187 | #endif // wxUSE_UXTHEME |
188 | ||
bec9bf3e VZ |
189 | namespace |
190 | { | |
191 | ||
90c1530a VZ |
192 | // true if we had already created the std colour map, used by |
193 | // wxGetStdColourMap() and wxWindow::OnSysColourChanged() (FIXME-MT) | |
bec9bf3e | 194 | bool gs_hasStdCmap = false; |
90c1530a | 195 | |
c358ea41 VZ |
196 | // last mouse event information we need to filter out the duplicates |
197 | #if wxUSE_MOUSEEVENT_HACK | |
bec9bf3e | 198 | struct MouseEventInfoDummy |
c358ea41 VZ |
199 | { |
200 | // mouse position (in screen coordinates) | |
201 | wxPoint pos; | |
202 | ||
203 | // last mouse event type | |
204 | wxEventType type; | |
205 | } gs_lastMouseEvent; | |
206 | #endif // wxUSE_MOUSEEVENT_HACK | |
207 | ||
5acec112 VZ |
208 | // hash containing the registered handlers for the custom messages |
209 | WX_DECLARE_HASH_MAP(int, wxWindow::MSWMessageHandler, | |
210 | wxIntegerHash, wxIntegerEqual, | |
211 | MSWMessageHandlers); | |
212 | ||
bec9bf3e | 213 | MSWMessageHandlers gs_messageHandlers; |
5acec112 | 214 | |
dca0f651 VZ |
215 | // hash containing all our windows, it uses HWND keys and wxWindow* values |
216 | WX_DECLARE_HASH_MAP(HWND, wxWindow *, | |
217 | wxPointerHash, wxPointerEqual, | |
218 | WindowHandles); | |
219 | ||
bec9bf3e VZ |
220 | WindowHandles gs_windowHandles; |
221 | ||
222 | #ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK | |
223 | ||
224 | // temporary override for WM_ERASEBKGND processing: we don't store this in | |
225 | // wxWindow itself as we don't need it during most of the time so don't | |
226 | // increase the size of all window objects unnecessarily | |
227 | WX_DECLARE_HASH_MAP(wxWindow *, wxWindow *, | |
228 | wxPointerHash, wxPointerEqual, | |
229 | EraseBgHooks); | |
230 | ||
231 | EraseBgHooks gs_eraseBgHooks; | |
232 | ||
233 | #endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK | |
234 | ||
982bc2e4 VZ |
235 | // If this variable is strictly positive, EVT_CHAR_HOOK is not generated for |
236 | // Escape key presses as it can't be intercepted because it's needed by some | |
237 | // currently shown window, e.g. IME entry. | |
238 | // | |
239 | // This is currently global as we allow using UI from the main thread only | |
240 | // anyhow but could be replaced with a thread-specific value in the future if | |
241 | // needed. | |
242 | int gs_modalEntryWindowCount = 0; | |
243 | ||
bec9bf3e | 244 | } // anonymous namespace |
dca0f651 | 245 | |
42e69d6b VZ |
246 | // --------------------------------------------------------------------------- |
247 | // private functions | |
248 | // --------------------------------------------------------------------------- | |
249 | ||
250 | // the window proc for all our windows | |
3135f4a7 | 251 | LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message, |
42e69d6b | 252 | WPARAM wParam, LPARAM lParam); |
577baeef | 253 | |
42e69d6b | 254 | |
4b6a582b | 255 | #if wxDEBUG_LEVEL >= 2 |
4a712ba3 | 256 | const wxChar *wxGetMessageName(int message); |
4b6a582b | 257 | #endif // wxDEBUG_LEVEL >= 2 |
2bda0e17 | 258 | |
1e6feb95 | 259 | void wxRemoveHandleAssociation(wxWindowMSW *win); |
cc972ac6 | 260 | extern void wxAssociateWinWithHandle(HWND hWnd, wxWindowMSW *win); |
2bda0e17 | 261 | |
f6bcfd97 | 262 | // get the text metrics for the current font |
1e6feb95 VZ |
263 | static TEXTMETRIC wxGetTextMetrics(const wxWindowMSW *win); |
264 | ||
42b1fb63 | 265 | #ifdef __WXWINCE__ |
dfafa702 | 266 | // find the window for the mouse event at the specified position |
42b1fb63 VZ |
267 | static wxWindowMSW *FindWindowForMouseEvent(wxWindowMSW *win, int *x, int *y); |
268 | #endif // __WXWINCE__ | |
dfafa702 | 269 | |
c48926e1 | 270 | // wrapper around BringWindowToTop() API |
44d5b352 | 271 | static inline void wxBringWindowToTop(HWND hwnd) |
c48926e1 VZ |
272 | { |
273 | #ifdef __WXMICROWIN__ | |
274 | // It seems that MicroWindows brings the _parent_ of the window to the top, | |
275 | // which can be the wrong one. | |
276 | ||
277 | // activate (set focus to) specified window | |
278 | ::SetFocus(hwnd); | |
313901f3 | 279 | #endif |
c48926e1 VZ |
280 | |
281 | // raise top level parent to top of z order | |
313901f3 | 282 | if (!::SetWindowPos(hwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE)) |
c48926e1 | 283 | { |
9a83f860 | 284 | wxLogLastError(wxT("SetWindowPos")); |
c48926e1 | 285 | } |
c48926e1 | 286 | } |
f6bcfd97 | 287 | |
e0c5c96f VZ |
288 | #ifndef __WXWINCE__ |
289 | ||
ee471817 VZ |
290 | // ensure that all our parent windows have WS_EX_CONTROLPARENT style |
291 | static void EnsureParentHasControlParentStyle(wxWindow *parent) | |
292 | { | |
293 | /* | |
294 | If we have WS_EX_CONTROLPARENT flag we absolutely *must* set it for our | |
295 | parent as well as otherwise several Win32 functions using | |
296 | GetNextDlgTabItem() to iterate over all controls such as | |
297 | IsDialogMessage() or DefDlgProc() would enter an infinite loop: indeed, | |
298 | all of them iterate over all the controls starting from the currently | |
299 | focused one and stop iterating when they get back to the focus but | |
300 | unless all parents have WS_EX_CONTROLPARENT bit set, they would never | |
301 | get back to the initial (focused) window: as we do have this style, | |
302 | GetNextDlgTabItem() will leave this window and continue in its parent, | |
303 | but if the parent doesn't have it, it wouldn't recurse inside it later | |
90e572f1 | 304 | on and so wouldn't have a chance of getting back to this window either. |
ee471817 | 305 | */ |
ee471817 VZ |
306 | while ( parent && !parent->IsTopLevel() ) |
307 | { | |
d66d0500 | 308 | LONG exStyle = wxGetWindowExStyle(parent); |
ee471817 VZ |
309 | if ( !(exStyle & WS_EX_CONTROLPARENT) ) |
310 | { | |
311 | // force the parent to have this style | |
d66d0500 | 312 | wxSetWindowExStyle(parent, exStyle | WS_EX_CONTROLPARENT); |
ee471817 VZ |
313 | } |
314 | ||
315 | parent = parent->GetParent(); | |
316 | } | |
ee471817 VZ |
317 | } |
318 | ||
e0c5c96f VZ |
319 | #endif // !__WXWINCE__ |
320 | ||
d6c37f5b VZ |
321 | // GetCursorPos can return an error, so use this function |
322 | // instead. | |
323 | // Error originally observed with WinCE, but later using Remote Desktop | |
324 | // to connect to XP. | |
325 | void wxGetCursorPosMSW(POINT* pt) | |
f2325516 | 326 | { |
7d30268c JS |
327 | if (!GetCursorPos(pt)) |
328 | { | |
d6c37f5b VZ |
329 | #ifdef __WXWINCE__ |
330 | wxLogLastError(wxT("GetCursorPos")); | |
331 | #endif | |
7d30268c | 332 | DWORD pos = GetMessagePos(); |
d6c37f5b VZ |
333 | // the coordinates may be negative in multi-monitor systems |
334 | pt->x = GET_X_LPARAM(pos); | |
335 | pt->y = GET_Y_LPARAM(pos); | |
7d30268c | 336 | } |
f2325516 | 337 | } |
f2325516 | 338 | |
a23fd0e1 VZ |
339 | // --------------------------------------------------------------------------- |
340 | // event tables | |
341 | // --------------------------------------------------------------------------- | |
342 | ||
1e6feb95 VZ |
343 | // in wxUniv/MSW this class is abstract because it doesn't have DoPopupMenu() |
344 | // method | |
345 | #ifdef __WXUNIVERSAL__ | |
346 | IMPLEMENT_ABSTRACT_CLASS(wxWindowMSW, wxWindowBase) | |
28953245 | 347 | #endif // __WXUNIVERSAL__ |
1e6feb95 VZ |
348 | |
349 | BEGIN_EVENT_TABLE(wxWindowMSW, wxWindowBase) | |
1e6feb95 | 350 | EVT_SYS_COLOUR_CHANGED(wxWindowMSW::OnSysColourChanged) |
79099b80 | 351 | #ifdef __WXWINCE__ |
1e6feb95 | 352 | EVT_INIT_DIALOG(wxWindowMSW::OnInitDialog) |
79099b80 | 353 | #endif |
2bda0e17 KB |
354 | END_EVENT_TABLE() |
355 | ||
a23fd0e1 VZ |
356 | // =========================================================================== |
357 | // implementation | |
358 | // =========================================================================== | |
359 | ||
42e69d6b VZ |
360 | // --------------------------------------------------------------------------- |
361 | // wxWindow utility functions | |
362 | // --------------------------------------------------------------------------- | |
363 | ||
2bda0e17 | 364 | // Find an item given the MS Windows id |
1e6feb95 | 365 | wxWindow *wxWindowMSW::FindItem(long id) const |
2bda0e17 | 366 | { |
1e6feb95 | 367 | #if wxUSE_CONTROLS |
f7637829 | 368 | wxControl *item = wxDynamicCastThis(wxControl); |
f048e32f VZ |
369 | if ( item ) |
370 | { | |
90e572f1 | 371 | // is it us or one of our "internal" children? |
1e6feb95 VZ |
372 | if ( item->GetId() == id |
373 | #ifndef __WXUNIVERSAL__ | |
374 | || (item->GetSubcontrols().Index(id) != wxNOT_FOUND) | |
375 | #endif // __WXUNIVERSAL__ | |
376 | ) | |
f048e32f VZ |
377 | { |
378 | return item; | |
379 | } | |
380 | } | |
1e6feb95 | 381 | #endif // wxUSE_CONTROLS |
f048e32f | 382 | |
222ed1d6 | 383 | wxWindowList::compatibility_iterator current = GetChildren().GetFirst(); |
2d0a075d JS |
384 | while (current) |
385 | { | |
42e69d6b | 386 | wxWindow *childWin = current->GetData(); |
2bda0e17 | 387 | |
42e69d6b | 388 | wxWindow *wnd = childWin->FindItem(id); |
cc2b7472 | 389 | if ( wnd ) |
42e69d6b | 390 | return wnd; |
2bda0e17 | 391 | |
42e69d6b | 392 | current = current->GetNext(); |
2bda0e17 | 393 | } |
42e69d6b | 394 | |
2d0a075d | 395 | return NULL; |
2bda0e17 KB |
396 | } |
397 | ||
398 | // Find an item given the MS Windows handle | |
1e6feb95 | 399 | wxWindow *wxWindowMSW::FindItemByHWND(WXHWND hWnd, bool controlOnly) const |
2bda0e17 | 400 | { |
222ed1d6 | 401 | wxWindowList::compatibility_iterator current = GetChildren().GetFirst(); |
2d0a075d | 402 | while (current) |
2bda0e17 | 403 | { |
42e69d6b VZ |
404 | wxWindow *parent = current->GetData(); |
405 | ||
2d0a075d | 406 | // Do a recursive search. |
42e69d6b | 407 | wxWindow *wnd = parent->FindItemByHWND(hWnd); |
cc2b7472 | 408 | if ( wnd ) |
42e69d6b | 409 | return wnd; |
2d0a075d | 410 | |
1e6feb95 VZ |
411 | if ( !controlOnly |
412 | #if wxUSE_CONTROLS | |
345c78ca | 413 | || wxDynamicCast(parent, wxControl) |
1e6feb95 VZ |
414 | #endif // wxUSE_CONTROLS |
415 | ) | |
2d0a075d | 416 | { |
42e69d6b VZ |
417 | wxWindow *item = current->GetData(); |
418 | if ( item->GetHWND() == hWnd ) | |
2d0a075d JS |
419 | return item; |
420 | else | |
421 | { | |
422 | if ( item->ContainsHWND(hWnd) ) | |
423 | return item; | |
424 | } | |
425 | } | |
42e69d6b VZ |
426 | |
427 | current = current->GetNext(); | |
2bda0e17 | 428 | } |
2d0a075d | 429 | return NULL; |
2bda0e17 KB |
430 | } |
431 | ||
432 | // Default command handler | |
1e6feb95 | 433 | bool wxWindowMSW::MSWCommand(WXUINT WXUNUSED(param), WXWORD WXUNUSED(id)) |
2bda0e17 | 434 | { |
08158721 | 435 | return false; |
2bda0e17 KB |
436 | } |
437 | ||
fd3f686c VZ |
438 | // ---------------------------------------------------------------------------- |
439 | // constructors and such | |
440 | // ---------------------------------------------------------------------------- | |
441 | ||
1e6feb95 | 442 | void wxWindowMSW::Init() |
2bda0e17 | 443 | { |
cc2b7472 | 444 | // MSW specific |
5a403e3f | 445 | m_oldWndProc = NULL; |
08158721 DS |
446 | m_mouseInWindow = false; |
447 | m_lastKeydownProcessed = false; | |
2bda0e17 | 448 | |
319fefa9 VZ |
449 | m_hWnd = 0; |
450 | ||
2d0a075d JS |
451 | m_xThumbSize = 0; |
452 | m_yThumbSize = 0; | |
2bda0e17 | 453 | |
f5c1b76c VZ |
454 | #if wxUSE_DEFERRED_SIZING |
455 | m_hDWP = 0; | |
67644c1d RD |
456 | m_pendingPosition = wxDefaultPosition; |
457 | m_pendingSize = wxDefaultSize; | |
f5c1b76c | 458 | #endif // wxUSE_DEFERRED_SIZING |
7d4f65e3 JS |
459 | |
460 | #ifdef __POCKETPC__ | |
461 | m_contextMenuEnabled = false; | |
462 | #endif | |
fd3f686c VZ |
463 | } |
464 | ||
2bda0e17 | 465 | // Destructor |
1e6feb95 | 466 | wxWindowMSW::~wxWindowMSW() |
2bda0e17 | 467 | { |
c6212a0c | 468 | SendDestroyEvent(); |
2bda0e17 | 469 | |
2e9f62da | 470 | #ifndef __WXUNIVERSAL__ |
4a41c655 | 471 | // VS: make sure there's no wxFrame with last focus set to us: |
2e9f62da | 472 | for ( wxWindow *win = GetParent(); win; win = win->GetParent() ) |
4a41c655 | 473 | { |
085ad686 | 474 | wxTopLevelWindow *frame = wxDynamicCast(win, wxTopLevelWindow); |
4a41c655 VS |
475 | if ( frame ) |
476 | { | |
c5053639 | 477 | if ( frame->GetLastFocus() == this ) |
2e9f62da | 478 | { |
085ad686 | 479 | frame->SetLastFocus(NULL); |
2e9f62da | 480 | } |
4552892f VZ |
481 | |
482 | // apparently sometimes we can end up with our grand parent | |
483 | // pointing to us as well: this is surely a bug in focus handling | |
484 | // code but it's not clear where it happens so for now just try to | |
485 | // fix it here by not breaking out of the loop | |
486 | //break; | |
4a41c655 VS |
487 | } |
488 | } | |
2e9f62da | 489 | #endif // __WXUNIVERSAL__ |
2bda0e17 | 490 | |
cc0c7cd8 | 491 | // VS: destroy children first and _then_ detach *this from its parent. |
90e572f1 | 492 | // If we did it the other way around, children wouldn't be able |
cc0c7cd8 VS |
493 | // find their parent frame (see above). |
494 | DestroyChildren(); | |
495 | ||
cc2b7472 | 496 | if ( m_hWnd ) |
42e69d6b | 497 | { |
98440bc3 VZ |
498 | // VZ: test temp removed to understand what really happens here |
499 | //if (::IsWindow(GetHwnd())) | |
df61c009 JS |
500 | { |
501 | if ( !::DestroyWindow(GetHwnd()) ) | |
43b2d5e7 | 502 | { |
f6bcfd97 | 503 | wxLogLastError(wxT("DestroyWindow")); |
43b2d5e7 | 504 | } |
df61c009 | 505 | } |
2bda0e17 | 506 | |
c50f1fb9 VZ |
507 | // remove hWnd <-> wxWindow association |
508 | wxRemoveHandleAssociation(this); | |
509 | } | |
d7cbabe0 | 510 | |
2bda0e17 KB |
511 | } |
512 | ||
d9698bd4 VZ |
513 | /* static */ |
514 | const wxChar *wxWindowMSW::MSWGetRegisteredClassName() | |
515 | { | |
9a83f860 | 516 | return wxApp::GetRegisteredClassName(wxT("wxWindow"), COLOR_BTNFACE); |
d9698bd4 VZ |
517 | } |
518 | ||
fd3f686c | 519 | // real construction (Init() must have been called before!) |
1e6feb95 VZ |
520 | bool wxWindowMSW::Create(wxWindow *parent, |
521 | wxWindowID id, | |
522 | const wxPoint& pos, | |
523 | const wxSize& size, | |
524 | long style, | |
525 | const wxString& name) | |
2d0a075d | 526 | { |
08158721 | 527 | wxCHECK_MSG( parent, false, wxT("can't create wxWindow without parent") ); |
2bda0e17 | 528 | |
8d99be5f | 529 | if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) ) |
08158721 | 530 | return false; |
42e69d6b | 531 | |
fd3f686c | 532 | parent->AddChild(this); |
2bda0e17 | 533 | |
b2d5a7ee | 534 | WXDWORD exstyle; |
e49d97e6 | 535 | DWORD msflags = MSWGetCreateWindowFlags(&exstyle); |
1e6feb95 VZ |
536 | |
537 | #ifdef __WXUNIVERSAL__ | |
d1fe917b | 538 | // no borders, we draw them ourselves |
76c79ff4 VZ |
539 | exstyle &= ~(WS_EX_DLGMODALFRAME | |
540 | WS_EX_STATICEDGE | | |
541 | WS_EX_CLIENTEDGE | | |
542 | WS_EX_WINDOWEDGE); | |
d1fe917b | 543 | msflags &= ~WS_BORDER; |
b2d5a7ee | 544 | #endif // wxUniversal |
1e6feb95 | 545 | |
ff792344 | 546 | if ( IsShown() ) |
e49d97e6 VZ |
547 | { |
548 | msflags |= WS_VISIBLE; | |
549 | } | |
1e6feb95 | 550 | |
d9698bd4 VZ |
551 | if ( !MSWCreate(MSWGetRegisteredClassName(), |
552 | NULL, pos, size, msflags, exstyle) ) | |
45956e37 VZ |
553 | return false; |
554 | ||
555 | InheritAttributes(); | |
556 | ||
557 | return true; | |
2bda0e17 KB |
558 | } |
559 | ||
42e69d6b VZ |
560 | // --------------------------------------------------------------------------- |
561 | // basic operations | |
562 | // --------------------------------------------------------------------------- | |
563 | ||
1e6feb95 | 564 | void wxWindowMSW::SetFocus() |
2bda0e17 | 565 | { |
a23fd0e1 | 566 | HWND hWnd = GetHwnd(); |
9a83f860 | 567 | wxCHECK_RET( hWnd, wxT("can't set focus to invalid window") ); |
1e6feb95 | 568 | |
4b6a582b | 569 | #if !defined(__WXWINCE__) |
1e6feb95 | 570 | ::SetLastError(0); |
8cb172b4 | 571 | #endif |
d0a3d109 | 572 | |
1e6feb95 VZ |
573 | if ( !::SetFocus(hWnd) ) |
574 | { | |
575 | // was there really an error? | |
576 | DWORD dwRes = ::GetLastError(); | |
577 | if ( dwRes ) | |
578 | { | |
5262eb0a VZ |
579 | HWND hwndFocus = ::GetFocus(); |
580 | if ( hwndFocus != hWnd ) | |
581 | { | |
9a83f860 | 582 | wxLogApiError(wxT("SetFocus"), dwRes); |
5262eb0a | 583 | } |
1e6feb95 | 584 | } |
1e6feb95 | 585 | } |
2bda0e17 KB |
586 | } |
587 | ||
ddf9d04f VZ |
588 | void wxWindowMSW::SetFocusFromKbd() |
589 | { | |
ddf9d04f VZ |
590 | // when the focus is given to the control with DLGC_HASSETSEL style from |
591 | // keyboard its contents should be entirely selected: this is what | |
592 | // ::IsDialogMessage() does and so we should do it as well to provide the | |
593 | // same LNF as the native programs | |
594 | if ( ::SendMessage(GetHwnd(), WM_GETDLGCODE, 0, 0) & DLGC_HASSETSEL ) | |
595 | { | |
596 | ::SendMessage(GetHwnd(), EM_SETSEL, 0, -1); | |
597 | } | |
1b1ca07a VZ |
598 | |
599 | // do this after (maybe) setting the selection as like this when | |
600 | // wxEVT_SET_FOCUS handler is called, the selection would have been already | |
601 | // set correctly -- this may be important | |
602 | wxWindowBase::SetFocusFromKbd(); | |
ddf9d04f VZ |
603 | } |
604 | ||
42e69d6b | 605 | // Get the window with the focus |
0fe02759 | 606 | wxWindow *wxWindowBase::DoFindFocus() |
42e69d6b VZ |
607 | { |
608 | HWND hWnd = ::GetFocus(); | |
609 | if ( hWnd ) | |
610 | { | |
a2242341 | 611 | return wxGetWindowFromHWND((WXHWND)hWnd); |
42e69d6b VZ |
612 | } |
613 | ||
614 | return NULL; | |
615 | } | |
616 | ||
47a8a4d5 | 617 | void wxWindowMSW::DoEnable( bool enable ) |
2bda0e17 | 618 | { |
0826c4d3 VS |
619 | MSWEnableHWND(GetHwnd(), enable); |
620 | } | |
621 | ||
622 | bool wxWindowMSW::MSWEnableHWND(WXHWND hWnd, bool enable) | |
623 | { | |
624 | if ( !hWnd ) | |
625 | return false; | |
626 | ||
627 | // If disabling focused control, we move focus to the next one, as if the | |
628 | // user pressed Tab. That's because we can't keep focus on a disabled | |
629 | // control, Tab-navigation would stop working then. | |
630 | if ( !enable && ::GetFocus() == hWnd ) | |
631 | Navigate(); | |
632 | ||
a492bccf | 633 | return ::EnableWindow(hWnd, (BOOL)enable) != 0; |
2bda0e17 KB |
634 | } |
635 | ||
1e6feb95 | 636 | bool wxWindowMSW::Show(bool show) |
42e69d6b VZ |
637 | { |
638 | if ( !wxWindowBase::Show(show) ) | |
08158721 | 639 | return false; |
42e69d6b VZ |
640 | |
641 | HWND hWnd = GetHwnd(); | |
42e69d6b | 642 | |
a068160f VZ |
643 | // we could be called before the underlying window is created (this is |
644 | // actually useful to prevent it from being initially shown), e.g. | |
645 | // | |
646 | // wxFoo *foo = new wxFoo; | |
647 | // foo->Hide(); | |
648 | // foo->Create(parent, ...); | |
649 | // | |
650 | // should work without errors | |
651 | if ( hWnd ) | |
42e69d6b | 652 | { |
a068160f | 653 | ::ShowWindow(hWnd, show ? SW_SHOW : SW_HIDE); |
42e69d6b VZ |
654 | } |
655 | ||
89267fe5 VS |
656 | if ( IsFrozen() ) |
657 | { | |
658 | // DoFreeze/DoThaw don't do anything if the window is not shown, so | |
659 | // we have to call them from here now | |
660 | if ( show ) | |
661 | DoFreeze(); | |
662 | else | |
663 | DoThaw(); | |
664 | } | |
665 | ||
08158721 | 666 | return true; |
42e69d6b VZ |
667 | } |
668 | ||
376d7d97 VZ |
669 | bool |
670 | wxWindowMSW::MSWShowWithEffect(bool show, | |
671 | wxShowEffect effect, | |
eed04c99 | 672 | unsigned timeout) |
376d7d97 | 673 | { |
3ae670cd | 674 | #if wxUSE_DYNLIB_CLASS |
ffa50e73 VZ |
675 | if ( effect == wxSHOW_EFFECT_NONE ) |
676 | return Show(show); | |
677 | ||
30443550 VS |
678 | if ( !wxWindowBase::Show(show) ) |
679 | return false; | |
680 | ||
376d7d97 VZ |
681 | typedef BOOL (WINAPI *AnimateWindow_t)(HWND, DWORD, DWORD); |
682 | ||
683 | static AnimateWindow_t s_pfnAnimateWindow = NULL; | |
684 | static bool s_initDone = false; | |
685 | if ( !s_initDone ) | |
686 | { | |
9a83f860 | 687 | wxDynamicLibrary dllUser32(wxT("user32.dll"), wxDL_VERBATIM | wxDL_QUIET); |
376d7d97 VZ |
688 | wxDL_INIT_FUNC(s_pfn, AnimateWindow, dllUser32); |
689 | ||
690 | s_initDone = true; | |
691 | ||
692 | // notice that it's ok to unload user32.dll here as it won't be really | |
693 | // unloaded, being still in use because we link to it statically too | |
694 | } | |
695 | ||
696 | if ( !s_pfnAnimateWindow ) | |
697 | return Show(show); | |
698 | ||
7157abfb VZ |
699 | // Show() has a side effect of sending a WM_SIZE to the window, which helps |
700 | // ensuring that it's laid out correctly, but AnimateWindow() doesn't do | |
701 | // this so send the event ourselves | |
702 | SendSizeEvent(); | |
703 | ||
376d7d97 VZ |
704 | // prepare to use AnimateWindow() |
705 | ||
706 | if ( !timeout ) | |
707 | timeout = 200; // this is the default animation timeout, per MSDN | |
708 | ||
709 | DWORD dwFlags = show ? 0 : AW_HIDE; | |
eed04c99 | 710 | |
376d7d97 VZ |
711 | switch ( effect ) |
712 | { | |
eed04c99 VS |
713 | case wxSHOW_EFFECT_ROLL_TO_LEFT: |
714 | dwFlags |= AW_HOR_NEGATIVE; | |
715 | break; | |
716 | ||
717 | case wxSHOW_EFFECT_ROLL_TO_RIGHT: | |
718 | dwFlags |= AW_HOR_POSITIVE; | |
719 | break; | |
720 | ||
721 | case wxSHOW_EFFECT_ROLL_TO_TOP: | |
722 | dwFlags |= AW_VER_NEGATIVE; | |
723 | break; | |
724 | ||
725 | case wxSHOW_EFFECT_ROLL_TO_BOTTOM: | |
726 | dwFlags |= AW_VER_POSITIVE; | |
727 | break; | |
728 | ||
729 | case wxSHOW_EFFECT_SLIDE_TO_LEFT: | |
730 | dwFlags |= AW_SLIDE | AW_HOR_NEGATIVE; | |
731 | break; | |
732 | ||
733 | case wxSHOW_EFFECT_SLIDE_TO_RIGHT: | |
734 | dwFlags |= AW_SLIDE | AW_HOR_POSITIVE; | |
735 | break; | |
736 | ||
737 | case wxSHOW_EFFECT_SLIDE_TO_TOP: | |
738 | dwFlags |= AW_SLIDE | AW_VER_NEGATIVE; | |
376d7d97 VZ |
739 | break; |
740 | ||
eed04c99 VS |
741 | case wxSHOW_EFFECT_SLIDE_TO_BOTTOM: |
742 | dwFlags |= AW_SLIDE | AW_VER_POSITIVE; | |
376d7d97 VZ |
743 | break; |
744 | ||
745 | case wxSHOW_EFFECT_BLEND: | |
746 | dwFlags |= AW_BLEND; | |
747 | break; | |
748 | ||
749 | case wxSHOW_EFFECT_EXPAND: | |
750 | dwFlags |= AW_CENTER; | |
751 | break; | |
752 | ||
753 | ||
754 | case wxSHOW_EFFECT_MAX: | |
9a83f860 | 755 | wxFAIL_MSG( wxT("invalid window show effect") ); |
376d7d97 VZ |
756 | return false; |
757 | ||
758 | default: | |
9a83f860 | 759 | wxFAIL_MSG( wxT("unknown window show effect") ); |
376d7d97 VZ |
760 | return false; |
761 | } | |
762 | ||
376d7d97 VZ |
763 | if ( !(*s_pfnAnimateWindow)(GetHwnd(), timeout, dwFlags) ) |
764 | { | |
9a83f860 | 765 | wxLogLastError(wxT("AnimateWindow")); |
376d7d97 VZ |
766 | |
767 | return false; | |
768 | } | |
769 | ||
770 | return true; | |
3ae670cd VZ |
771 | #else // wxUSE_DYNLIB_CLASS |
772 | return Show(show); | |
773 | #endif | |
376d7d97 VZ |
774 | } |
775 | ||
42e69d6b | 776 | // Raise the window to the top of the Z order |
1e6feb95 | 777 | void wxWindowMSW::Raise() |
42e69d6b | 778 | { |
c48926e1 | 779 | wxBringWindowToTop(GetHwnd()); |
42e69d6b VZ |
780 | } |
781 | ||
782 | // Lower the window to the bottom of the Z order | |
1e6feb95 | 783 | void wxWindowMSW::Lower() |
42e69d6b VZ |
784 | { |
785 | ::SetWindowPos(GetHwnd(), HWND_BOTTOM, 0, 0, 0, 0, | |
786 | SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE); | |
787 | } | |
788 | ||
94633ad9 | 789 | void wxWindowMSW::DoCaptureMouse() |
2bda0e17 | 790 | { |
a23fd0e1 | 791 | HWND hWnd = GetHwnd(); |
1e6feb95 | 792 | if ( hWnd ) |
2d0a075d | 793 | { |
1e6feb95 | 794 | ::SetCapture(hWnd); |
2d0a075d | 795 | } |
2bda0e17 KB |
796 | } |
797 | ||
94633ad9 | 798 | void wxWindowMSW::DoReleaseMouse() |
2bda0e17 | 799 | { |
1e6feb95 | 800 | if ( !::ReleaseCapture() ) |
2d0a075d | 801 | { |
9a83f860 | 802 | wxLogLastError(wxT("ReleaseCapture")); |
2d0a075d | 803 | } |
2bda0e17 KB |
804 | } |
805 | ||
1e6feb95 VZ |
806 | /* static */ wxWindow *wxWindowBase::GetCapture() |
807 | { | |
808 | HWND hwnd = ::GetCapture(); | |
dca0f651 | 809 | return hwnd ? wxFindWinFromHandle(hwnd) : NULL; |
1e6feb95 VZ |
810 | } |
811 | ||
812 | bool wxWindowMSW::SetFont(const wxFont& font) | |
2bda0e17 | 813 | { |
42e69d6b VZ |
814 | if ( !wxWindowBase::SetFont(font) ) |
815 | { | |
816 | // nothing to do | |
08158721 | 817 | return false; |
2d0a075d | 818 | } |
195896c7 | 819 | |
42e69d6b VZ |
820 | HWND hWnd = GetHwnd(); |
821 | if ( hWnd != 0 ) | |
822 | { | |
d8df8893 VZ |
823 | // note the use of GetFont() instead of m_font: our own font could have |
824 | // just been reset and in this case we need to change the font used by | |
825 | // the native window to the default for this class, i.e. exactly what | |
826 | // GetFont() returns | |
827 | WXHANDLE hFont = GetFont().GetResourceHandle(); | |
2bda0e17 | 828 | |
223d09f6 | 829 | wxASSERT_MSG( hFont, wxT("should have valid font") ); |
3a19e16d | 830 | |
c50f1fb9 | 831 | ::SendMessage(hWnd, WM_SETFONT, (WPARAM)hFont, MAKELPARAM(TRUE, 0)); |
42e69d6b | 832 | } |
2bda0e17 | 833 | |
08158721 | 834 | return true; |
42e69d6b | 835 | } |
fd2eccd1 | 836 | |
1e6feb95 | 837 | bool wxWindowMSW::SetCursor(const wxCursor& cursor) |
2bda0e17 | 838 | { |
42e69d6b VZ |
839 | if ( !wxWindowBase::SetCursor(cursor) ) |
840 | { | |
841 | // no change | |
08158721 | 842 | return false; |
42e69d6b VZ |
843 | } |
844 | ||
8e75dca8 | 845 | // don't "overwrite" busy cursor |
fd2eccd1 VZ |
846 | if ( wxIsBusy() ) |
847 | return true; | |
848 | ||
849 | if ( m_cursor.IsOk() ) | |
8a9c2246 | 850 | { |
a8b2285e VZ |
851 | // normally we should change the cursor only if it's over this window |
852 | // but we should do it always if we capture the mouse currently | |
853 | bool set = HasCapture(); | |
854 | if ( !set ) | |
855 | { | |
856 | HWND hWnd = GetHwnd(); | |
857 | ||
858 | POINT point; | |
d6c37f5b | 859 | ::wxGetCursorPosMSW(&point); |
a8b2285e VZ |
860 | |
861 | RECT rect = wxGetWindowRect(hWnd); | |
862 | ||
863 | set = ::PtInRect(&rect, point) != 0; | |
864 | } | |
865 | ||
866 | if ( set ) | |
867 | { | |
868 | ::SetCursor(GetHcursorOf(m_cursor)); | |
869 | } | |
870 | //else: will be set later when the mouse enters this window | |
8a9c2246 | 871 | } |
fd2eccd1 VZ |
872 | else // Invalid cursor: this means reset to the default one. |
873 | { | |
874 | // To revert to the correct cursor we need to find the window currently | |
875 | // under the cursor and ask it to set its cursor itself as only it | |
876 | // knows what it is. | |
877 | POINT pt; | |
d6c37f5b | 878 | wxGetCursorPosMSW(&pt); |
fd2eccd1 | 879 | |
1df57a24 | 880 | const wxWindowMSW* win = wxFindWindowAtPoint(wxPoint(pt.x, pt.y)); |
fd2eccd1 VZ |
881 | if ( !win ) |
882 | win = this; | |
883 | ||
884 | ::SendMessage(GetHwndOf(win), WM_SETCURSOR, | |
885 | (WPARAM)GetHwndOf(win), | |
886 | MAKELPARAM(HTCLIENT, WM_MOUSEMOVE)); | |
887 | } | |
3a19e16d | 888 | |
08158721 | 889 | return true; |
3a19e16d VZ |
890 | } |
891 | ||
d7e0024b | 892 | void wxWindowMSW::WarpPointer(int x, int y) |
2bda0e17 | 893 | { |
1e6feb95 | 894 | ClientToScreen(&x, &y); |
42e69d6b | 895 | |
1e6feb95 VZ |
896 | if ( !::SetCursorPos(x, y) ) |
897 | { | |
9a83f860 | 898 | wxLogLastError(wxT("SetCursorPos")); |
1e6feb95 | 899 | } |
2bda0e17 KB |
900 | } |
901 | ||
1ca78aa1 | 902 | void wxWindowMSW::MSWUpdateUIState(int action, int state) |
d7e0024b | 903 | { |
1ca78aa1 | 904 | // WM_CHANGEUISTATE only appeared in Windows 2000 so it can do us no good |
d7e0024b VZ |
905 | // to use it on older systems -- and could possibly do some harm |
906 | static int s_needToUpdate = -1; | |
907 | if ( s_needToUpdate == -1 ) | |
908 | { | |
909 | int verMaj, verMin; | |
406d283a | 910 | s_needToUpdate = wxGetOsVersion(&verMaj, &verMin) == wxOS_WINDOWS_NT && |
d7e0024b VZ |
911 | verMaj >= 5; |
912 | } | |
913 | ||
914 | if ( s_needToUpdate ) | |
915 | { | |
1ca78aa1 JS |
916 | // we send WM_CHANGEUISTATE so if nothing needs changing then the system |
917 | // won't send WM_UPDATEUISTATE | |
918 | ::SendMessage(GetHwnd(), WM_CHANGEUISTATE, MAKEWPARAM(action, state), 0); | |
d7e0024b VZ |
919 | } |
920 | } | |
921 | ||
42e69d6b VZ |
922 | // --------------------------------------------------------------------------- |
923 | // scrolling stuff | |
924 | // --------------------------------------------------------------------------- | |
2d0a075d | 925 | |
1ddb6d28 VZ |
926 | namespace |
927 | { | |
928 | ||
9cd6d737 VZ |
929 | inline int GetScrollPosition(HWND hWnd, int wOrient) |
930 | { | |
931 | #ifdef __WXMICROWIN__ | |
932 | return ::GetScrollPosWX(hWnd, wOrient); | |
933 | #else | |
f676b387 | 934 | WinStruct<SCROLLINFO> scrollInfo; |
4676948b | 935 | scrollInfo.cbSize = sizeof(SCROLLINFO); |
7f0586ef | 936 | scrollInfo.fMask = SIF_POS; |
e795e8b5 | 937 | ::GetScrollInfo(hWnd, wOrient, &scrollInfo ); |
a71d815b | 938 | |
7f0586ef | 939 | return scrollInfo.nPos; |
e795e8b5 | 940 | |
9cd6d737 VZ |
941 | #endif |
942 | } | |
943 | ||
1ddb6d28 VZ |
944 | inline UINT WXOrientToSB(int orient) |
945 | { | |
946 | return orient == wxHORIZONTAL ? SB_HORZ : SB_VERT; | |
947 | } | |
948 | ||
949 | } // anonymous namespace | |
950 | ||
1e6feb95 | 951 | int wxWindowMSW::GetScrollPos(int orient) const |
2bda0e17 | 952 | { |
42e69d6b | 953 | HWND hWnd = GetHwnd(); |
9a83f860 | 954 | wxCHECK_MSG( hWnd, 0, wxT("no HWND in GetScrollPos") ); |
9cd6d737 | 955 | |
1ddb6d28 | 956 | return GetScrollPosition(hWnd, WXOrientToSB(orient)); |
42e69d6b | 957 | } |
2bda0e17 | 958 | |
42e69d6b VZ |
959 | // This now returns the whole range, not just the number |
960 | // of positions that we can scroll. | |
1e6feb95 | 961 | int wxWindowMSW::GetScrollRange(int orient) const |
42e69d6b | 962 | { |
7f0586ef | 963 | int maxPos; |
a23fd0e1 | 964 | HWND hWnd = GetHwnd(); |
0cf5de11 | 965 | if ( !hWnd ) |
42e69d6b | 966 | return 0; |
f676b387 | 967 | WinStruct<SCROLLINFO> scrollInfo; |
7f0586ef | 968 | scrollInfo.fMask = SIF_RANGE; |
1ddb6d28 | 969 | if ( !::GetScrollInfo(hWnd, WXOrientToSB(orient), &scrollInfo) ) |
7f0586ef | 970 | { |
f676b387 RD |
971 | // Most of the time this is not really an error, since the return |
972 | // value can also be zero when there is no scrollbar yet. | |
9a83f860 | 973 | // wxLogLastError(wxT("GetScrollInfo")); |
7f0586ef JS |
974 | } |
975 | maxPos = scrollInfo.nMax; | |
0cf5de11 VZ |
976 | |
977 | // undo "range - 1" done in SetScrollbar() | |
978 | return maxPos + 1; | |
cc2b7472 | 979 | } |
2bda0e17 | 980 | |
1e6feb95 | 981 | int wxWindowMSW::GetScrollThumb(int orient) const |
2bda0e17 | 982 | { |
0cf5de11 | 983 | return orient == wxHORIZONTAL ? m_xThumbSize : m_yThumbSize; |
2bda0e17 KB |
984 | } |
985 | ||
1e6feb95 | 986 | void wxWindowMSW::SetScrollPos(int orient, int pos, bool refresh) |
2bda0e17 | 987 | { |
5f3286d1 | 988 | HWND hWnd = GetHwnd(); |
9a83f860 | 989 | wxCHECK_RET( hWnd, wxT("SetScrollPos: no HWND") ); |
72fd19a1 | 990 | |
0cf5de11 | 991 | WinStruct<SCROLLINFO> info; |
42e69d6b VZ |
992 | info.nPage = 0; |
993 | info.nMin = 0; | |
994 | info.nPos = pos; | |
995 | info.fMask = SIF_POS; | |
a647d42a VZ |
996 | if ( HasFlag(wxALWAYS_SHOW_SB) ) |
997 | { | |
998 | // disable scrollbar instead of removing it then | |
999 | info.fMask |= SIF_DISABLENOSCROLL; | |
1000 | } | |
2d0a075d | 1001 | |
1ddb6d28 | 1002 | ::SetScrollInfo(hWnd, WXOrientToSB(orient), &info, refresh); |
2bda0e17 KB |
1003 | } |
1004 | ||
42e69d6b | 1005 | // New function that will replace some of the above. |
0cf5de11 VZ |
1006 | void wxWindowMSW::SetScrollbar(int orient, |
1007 | int pos, | |
1008 | int pageSize, | |
1009 | int range, | |
1010 | bool refresh) | |
1011 | { | |
1ddb6d28 VZ |
1012 | // We have to set the variables here to make them valid in events |
1013 | // triggered by ::SetScrollInfo() | |
1014 | *(orient == wxHORIZONTAL ? &m_xThumbSize : &m_yThumbSize) = pageSize; | |
1015 | ||
1016 | HWND hwnd = GetHwnd(); | |
1017 | if ( !hwnd ) | |
1018 | return; | |
1019 | ||
0cf5de11 | 1020 | WinStruct<SCROLLINFO> info; |
1ddb6d28 VZ |
1021 | if ( range != -1 ) |
1022 | { | |
1023 | info.nPage = pageSize; | |
1024 | info.nMin = 0; // range is nMax - nMin + 1 | |
1025 | info.nMax = range - 1; // as both nMax and nMax are inclusive | |
1026 | info.nPos = pos; | |
1027 | ||
f074df34 VZ |
1028 | // We normally also reenable scrollbar in case it had been previously |
1029 | // disabled by specifying SIF_DISABLENOSCROLL below but we should only | |
1030 | // do this if it has valid range, otherwise it would be enabled but not | |
1031 | // do anything. | |
1032 | if ( range >= pageSize ) | |
1033 | { | |
1034 | ::EnableScrollBar(hwnd, WXOrientToSB(orient), ESB_ENABLE_BOTH); | |
1035 | } | |
1ddb6d28 VZ |
1036 | } |
1037 | //else: leave all the fields to be 0 | |
1038 | ||
42e69d6b | 1039 | info.fMask = SIF_RANGE | SIF_PAGE | SIF_POS; |
1ddb6d28 | 1040 | if ( HasFlag(wxALWAYS_SHOW_SB) || range == -1 ) |
a647d42a VZ |
1041 | { |
1042 | // disable scrollbar instead of removing it then | |
1043 | info.fMask |= SIF_DISABLENOSCROLL; | |
1044 | } | |
2bda0e17 | 1045 | |
1ddb6d28 | 1046 | ::SetScrollInfo(hwnd, WXOrientToSB(orient), &info, refresh); |
81d66cf3 JS |
1047 | } |
1048 | ||
1e6feb95 | 1049 | void wxWindowMSW::ScrollWindow(int dx, int dy, const wxRect *prect) |
2bda0e17 | 1050 | { |
574c939e KB |
1051 | RECT rect; |
1052 | RECT *pr; | |
1e6feb95 | 1053 | if ( prect ) |
2d0a075d | 1054 | { |
f9c980f6 | 1055 | wxCopyRectToRECT(*prect, rect); |
f797e53d VZ |
1056 | pr = ▭ |
1057 | } | |
1058 | else | |
1059 | { | |
1060 | pr = NULL; | |
304b8bc1 | 1061 | |
2d0a075d | 1062 | } |
2bda0e17 | 1063 | |
7f0586ef JS |
1064 | #ifdef __WXWINCE__ |
1065 | // FIXME: is this the exact equivalent of the line below? | |
304b8bc1 | 1066 | ::ScrollWindowEx(GetHwnd(), dx, dy, pr, pr, 0, 0, SW_SCROLLCHILDREN|SW_ERASE|SW_INVALIDATE); |
7f0586ef | 1067 | #else |
f797e53d | 1068 | ::ScrollWindow(GetHwnd(), dx, dy, pr, pr); |
7f0586ef | 1069 | #endif |
2bda0e17 KB |
1070 | } |
1071 | ||
9cd6d737 | 1072 | static bool ScrollVertically(HWND hwnd, int kind, int count) |
b9b3393e | 1073 | { |
9cd6d737 VZ |
1074 | int posStart = GetScrollPosition(hwnd, SB_VERT); |
1075 | ||
1076 | int pos = posStart; | |
c0cdd6cc VZ |
1077 | for ( int n = 0; n < count; n++ ) |
1078 | { | |
1079 | ::SendMessage(hwnd, WM_VSCROLL, kind, 0); | |
9cd6d737 VZ |
1080 | |
1081 | int posNew = GetScrollPosition(hwnd, SB_VERT); | |
1082 | if ( posNew == pos ) | |
1083 | { | |
1084 | // don't bother to continue, we're already at top/bottom | |
1085 | break; | |
1086 | } | |
1087 | ||
1088 | pos = posNew; | |
c0cdd6cc | 1089 | } |
9cd6d737 VZ |
1090 | |
1091 | return pos != posStart; | |
b9b3393e VZ |
1092 | } |
1093 | ||
9cd6d737 | 1094 | bool wxWindowMSW::ScrollLines(int lines) |
b9b3393e VZ |
1095 | { |
1096 | bool down = lines > 0; | |
1097 | ||
9cd6d737 VZ |
1098 | return ScrollVertically(GetHwnd(), |
1099 | down ? SB_LINEDOWN : SB_LINEUP, | |
1100 | down ? lines : -lines); | |
b9b3393e VZ |
1101 | } |
1102 | ||
9cd6d737 | 1103 | bool wxWindowMSW::ScrollPages(int pages) |
b9b3393e VZ |
1104 | { |
1105 | bool down = pages > 0; | |
1106 | ||
9cd6d737 VZ |
1107 | return ScrollVertically(GetHwnd(), |
1108 | down ? SB_PAGEDOWN : SB_PAGEUP, | |
1109 | down ? pages : -pages); | |
b9b3393e VZ |
1110 | } |
1111 | ||
978af864 VZ |
1112 | // ---------------------------------------------------------------------------- |
1113 | // RTL support | |
1114 | // ---------------------------------------------------------------------------- | |
1115 | ||
1116 | void wxWindowMSW::SetLayoutDirection(wxLayoutDirection dir) | |
1117 | { | |
08a58133 WS |
1118 | #ifdef __WXWINCE__ |
1119 | wxUnusedVar(dir); | |
1120 | #else | |
d66d0500 | 1121 | wxCHECK_RET( GetHwnd(), |
9a83f860 | 1122 | wxT("layout direction must be set after window creation") ); |
978af864 | 1123 | |
d66d0500 | 1124 | LONG styleOld = wxGetWindowExStyle(this); |
978af864 VZ |
1125 | |
1126 | LONG styleNew = styleOld; | |
1127 | switch ( dir ) | |
1128 | { | |
1129 | case wxLayout_LeftToRight: | |
1130 | styleNew &= ~WS_EX_LAYOUTRTL; | |
1131 | break; | |
1132 | ||
1133 | case wxLayout_RightToLeft: | |
1134 | styleNew |= WS_EX_LAYOUTRTL; | |
1135 | break; | |
1136 | ||
1137 | default: | |
9a83f860 | 1138 | wxFAIL_MSG(wxT("unsupported layout direction")); |
978af864 VZ |
1139 | break; |
1140 | } | |
1141 | ||
1142 | if ( styleNew != styleOld ) | |
1143 | { | |
d66d0500 | 1144 | wxSetWindowExStyle(this, styleNew); |
978af864 | 1145 | } |
08a58133 | 1146 | #endif |
978af864 VZ |
1147 | } |
1148 | ||
1149 | wxLayoutDirection wxWindowMSW::GetLayoutDirection() const | |
1150 | { | |
08a58133 WS |
1151 | #ifdef __WXWINCE__ |
1152 | return wxLayout_Default; | |
1153 | #else | |
9a83f860 | 1154 | wxCHECK_MSG( GetHwnd(), wxLayout_Default, wxT("invalid window") ); |
978af864 | 1155 | |
d66d0500 VZ |
1156 | return wxHasWindowExStyle(this, WS_EX_LAYOUTRTL) ? wxLayout_RightToLeft |
1157 | : wxLayout_LeftToRight; | |
08a58133 | 1158 | #endif |
978af864 VZ |
1159 | } |
1160 | ||
1161 | wxCoord | |
1162 | wxWindowMSW::AdjustForLayoutDirection(wxCoord x, | |
1163 | wxCoord WXUNUSED(width), | |
1164 | wxCoord WXUNUSED(widthTotal)) const | |
1165 | { | |
1166 | // Win32 mirrors the coordinates of RTL windows automatically, so don't | |
1167 | // redo it ourselves | |
1168 | return x; | |
1169 | } | |
1170 | ||
42e69d6b VZ |
1171 | // --------------------------------------------------------------------------- |
1172 | // subclassing | |
1173 | // --------------------------------------------------------------------------- | |
1174 | ||
1e6feb95 | 1175 | void wxWindowMSW::SubclassWin(WXHWND hWnd) |
2bda0e17 | 1176 | { |
223d09f6 | 1177 | wxASSERT_MSG( !m_oldWndProc, wxT("subclassing window twice?") ); |
2bda0e17 | 1178 | |
c50f1fb9 | 1179 | HWND hwnd = (HWND)hWnd; |
223d09f6 | 1180 | wxCHECK_RET( ::IsWindow(hwnd), wxT("invalid HWND in SubclassWin") ); |
c50f1fb9 | 1181 | |
e322e3b6 VZ |
1182 | SetHWND(hWnd); |
1183 | ||
c50f1fb9 | 1184 | wxAssociateWinWithHandle(hwnd, this); |
2bda0e17 | 1185 | |
975b6bcf | 1186 | m_oldWndProc = (WXFARPROC)wxGetWindowProc((HWND)hWnd); |
b2d5a7ee | 1187 | |
b225f659 VZ |
1188 | // we don't need to subclass the window of our own class (in the Windows |
1189 | // sense of the word) | |
3a3c8603 | 1190 | if ( !wxCheckWindowWndProc(hWnd, (WXFARPROC)wxWndProc) ) |
b225f659 | 1191 | { |
975b6bcf | 1192 | wxSetWindowProc(hwnd, wxWndProc); |
b225f659 VZ |
1193 | } |
1194 | else | |
1195 | { | |
90e572f1 | 1196 | // don't bother restoring it either: this also makes it easy to |
08158721 | 1197 | // implement IsOfStandardClass() method which returns true for the |
77ffb593 | 1198 | // standard controls and false for the wxWidgets own windows as it can |
5a403e3f | 1199 | // simply check m_oldWndProc |
b225f659 VZ |
1200 | m_oldWndProc = NULL; |
1201 | } | |
e7c652bc VZ |
1202 | |
1203 | // we're officially created now, send the event | |
1204 | wxWindowCreateEvent event((wxWindow *)this); | |
937013e0 | 1205 | (void)HandleWindowEvent(event); |
2bda0e17 KB |
1206 | } |
1207 | ||
1e6feb95 | 1208 | void wxWindowMSW::UnsubclassWin() |
2bda0e17 | 1209 | { |
42e69d6b | 1210 | wxRemoveHandleAssociation(this); |
2bda0e17 | 1211 | |
42e69d6b | 1212 | // Restore old Window proc |
c50f1fb9 VZ |
1213 | HWND hwnd = GetHwnd(); |
1214 | if ( hwnd ) | |
42e69d6b | 1215 | { |
ed4780ea | 1216 | SetHWND(0); |
c50f1fb9 | 1217 | |
223d09f6 | 1218 | wxCHECK_RET( ::IsWindow(hwnd), wxT("invalid HWND in UnsubclassWin") ); |
c50f1fb9 | 1219 | |
b225f659 | 1220 | if ( m_oldWndProc ) |
42e69d6b | 1221 | { |
eb5e4d9a | 1222 | if ( !wxCheckWindowWndProc((WXHWND)hwnd, m_oldWndProc) ) |
b225f659 | 1223 | { |
975b6bcf | 1224 | wxSetWindowProc(hwnd, (WNDPROC)m_oldWndProc); |
b225f659 VZ |
1225 | } |
1226 | ||
1227 | m_oldWndProc = NULL; | |
42e69d6b | 1228 | } |
42e69d6b | 1229 | } |
2bda0e17 KB |
1230 | } |
1231 | ||
a4d1972d | 1232 | void wxWindowMSW::AssociateHandle(WXWidget handle) |
ed4780ea VZ |
1233 | { |
1234 | if ( m_hWnd ) | |
1235 | { | |
1236 | if ( !::DestroyWindow(GetHwnd()) ) | |
43b2d5e7 | 1237 | { |
ed4780ea | 1238 | wxLogLastError(wxT("DestroyWindow")); |
43b2d5e7 | 1239 | } |
ed4780ea | 1240 | } |
a4d1972d | 1241 | |
ed4780ea VZ |
1242 | WXHWND wxhwnd = (WXHWND)handle; |
1243 | ||
e322e3b6 | 1244 | // this also calls SetHWND(wxhwnd) |
ed4780ea VZ |
1245 | SubclassWin(wxhwnd); |
1246 | } | |
1247 | ||
1248 | void wxWindowMSW::DissociateHandle() | |
a4d1972d | 1249 | { |
ed4780ea | 1250 | // this also calls SetHWND(0) for us |
a4d1972d | 1251 | UnsubclassWin(); |
ed4780ea VZ |
1252 | } |
1253 | ||
1254 | ||
0c0d1521 | 1255 | bool wxCheckWindowWndProc(WXHWND hWnd, |
11f104e5 | 1256 | WXFARPROC WXUNUSED(wndProc)) |
eb5e4d9a | 1257 | { |
d9698bd4 VZ |
1258 | const wxString str(wxGetWindowClass(hWnd)); |
1259 | ||
1260 | // TODO: get rid of wxTLWHiddenParent special case (currently it's not | |
1261 | // registered by wxApp but using ad hoc code in msw/toplevel.cpp); | |
1262 | // there is also a hidden window class used by sockets &c | |
9a83f860 | 1263 | return wxApp::IsRegisteredClassName(str) || str == wxT("wxTLWHiddenParent"); |
eb5e4d9a VS |
1264 | } |
1265 | ||
b2d5a7ee VZ |
1266 | // ---------------------------------------------------------------------------- |
1267 | // Style handling | |
1268 | // ---------------------------------------------------------------------------- | |
1269 | ||
1270 | void wxWindowMSW::SetWindowStyleFlag(long flags) | |
1271 | { | |
1272 | long flagsOld = GetWindowStyleFlag(); | |
1273 | if ( flags == flagsOld ) | |
1274 | return; | |
1275 | ||
1276 | // update the internal variable | |
1277 | wxWindowBase::SetWindowStyleFlag(flags); | |
1278 | ||
7bd6bf45 VZ |
1279 | // and the real window flags |
1280 | MSWUpdateStyle(flagsOld, GetExtraStyle()); | |
1281 | } | |
1282 | ||
1283 | void wxWindowMSW::SetExtraStyle(long exflags) | |
1284 | { | |
1285 | long exflagsOld = GetExtraStyle(); | |
1286 | if ( exflags == exflagsOld ) | |
1287 | return; | |
1288 | ||
1289 | // update the internal variable | |
1290 | wxWindowBase::SetExtraStyle(exflags); | |
1291 | ||
1292 | // and the real window flags | |
1293 | MSWUpdateStyle(GetWindowStyleFlag(), exflagsOld); | |
1294 | } | |
1295 | ||
1296 | void wxWindowMSW::MSWUpdateStyle(long flagsOld, long exflagsOld) | |
1297 | { | |
5b2f31eb VZ |
1298 | // now update the Windows style as well if needed - and if the window had |
1299 | // been already created | |
1300 | if ( !GetHwnd() ) | |
1301 | return; | |
1302 | ||
9ce75461 VZ |
1303 | // we may need to call SetWindowPos() when we change some styles |
1304 | bool callSWP = false; | |
1305 | ||
7bd6bf45 VZ |
1306 | WXDWORD exstyle; |
1307 | long style = MSWGetStyle(GetWindowStyleFlag(), &exstyle); | |
1308 | ||
1309 | // this is quite a horrible hack but we need it because MSWGetStyle() | |
1310 | // doesn't take exflags as parameter but uses GetExtraStyle() internally | |
1311 | // and so we have to modify the window exflags temporarily to get the | |
1312 | // correct exstyleOld | |
1313 | long exflagsNew = GetExtraStyle(); | |
1314 | wxWindowBase::SetExtraStyle(exflagsOld); | |
1315 | ||
1316 | WXDWORD exstyleOld; | |
1317 | long styleOld = MSWGetStyle(flagsOld, &exstyleOld); | |
1318 | ||
1319 | wxWindowBase::SetExtraStyle(exflagsNew); | |
1320 | ||
b2d5a7ee VZ |
1321 | |
1322 | if ( style != styleOld ) | |
1323 | { | |
1324 | // some flags (e.g. WS_VISIBLE or WS_DISABLED) should not be changed by | |
1325 | // this function so instead of simply setting the style to the new | |
1326 | // value we clear the bits which were set in styleOld but are set in | |
1327 | // the new one and set the ones which were not set before | |
1328 | long styleReal = ::GetWindowLong(GetHwnd(), GWL_STYLE); | |
1329 | styleReal &= ~styleOld; | |
1330 | styleReal |= style; | |
1331 | ||
1332 | ::SetWindowLong(GetHwnd(), GWL_STYLE, styleReal); | |
9ce75461 | 1333 | |
7bd6bf45 VZ |
1334 | // we need to call SetWindowPos() if any of the styles affecting the |
1335 | // frame appearance have changed | |
9ce75461 VZ |
1336 | callSWP = ((styleOld ^ style ) & (WS_BORDER | |
1337 | WS_THICKFRAME | | |
1338 | WS_CAPTION | | |
1339 | WS_DLGFRAME | | |
1340 | WS_MAXIMIZEBOX | | |
1341 | WS_MINIMIZEBOX | | |
1342 | WS_SYSMENU) ) != 0; | |
b2d5a7ee VZ |
1343 | } |
1344 | ||
1345 | // and the extended style | |
d66d0500 | 1346 | long exstyleReal = wxGetWindowExStyle(this); |
9ce75461 | 1347 | |
b2d5a7ee VZ |
1348 | if ( exstyle != exstyleOld ) |
1349 | { | |
b2d5a7ee VZ |
1350 | exstyleReal &= ~exstyleOld; |
1351 | exstyleReal |= exstyle; | |
1352 | ||
d66d0500 | 1353 | wxSetWindowExStyle(this, exstyleReal); |
b2d5a7ee | 1354 | |
9ce75461 VZ |
1355 | // ex style changes don't take effect without calling SetWindowPos |
1356 | callSWP = true; | |
1357 | } | |
1358 | ||
1359 | if ( callSWP ) | |
1360 | { | |
85d8df29 | 1361 | // we must call SetWindowPos() to flush the cached extended style and |
b2d5a7ee VZ |
1362 | // also to make the change to wxSTAY_ON_TOP style take effect: just |
1363 | // setting the style simply doesn't work | |
1364 | if ( !::SetWindowPos(GetHwnd(), | |
1365 | exstyleReal & WS_EX_TOPMOST ? HWND_TOPMOST | |
1366 | : HWND_NOTOPMOST, | |
1367 | 0, 0, 0, 0, | |
58331be2 VZ |
1368 | SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE | |
1369 | SWP_FRAMECHANGED) ) | |
b2d5a7ee | 1370 | { |
9a83f860 | 1371 | wxLogLastError(wxT("SetWindowPos")); |
b2d5a7ee VZ |
1372 | } |
1373 | } | |
1374 | } | |
1375 | ||
a047aff2 JS |
1376 | wxBorder wxWindowMSW::GetDefaultBorderForControl() const |
1377 | { | |
28319afe | 1378 | return wxBORDER_THEME; |
a047aff2 JS |
1379 | } |
1380 | ||
4c0d2cd3 JS |
1381 | wxBorder wxWindowMSW::GetDefaultBorder() const |
1382 | { | |
dc797d8e | 1383 | return wxWindowBase::GetDefaultBorder(); |
4c0d2cd3 JS |
1384 | } |
1385 | ||
28bf925c | 1386 | // Translate wxBORDER_THEME (and other border styles if necessary) to the value |
dc797d8e JS |
1387 | // that makes most sense for this Windows environment |
1388 | wxBorder wxWindowMSW::TranslateBorder(wxBorder border) const | |
1389 | { | |
1390 | #if defined(__POCKETPC__) || defined(__SMARTPHONE__) | |
1391 | if (border == wxBORDER_THEME || border == wxBORDER_SUNKEN || border == wxBORDER_SIMPLE) | |
1392 | return wxBORDER_SIMPLE; | |
1393 | else | |
1394 | return wxBORDER_NONE; | |
1395 | #else | |
1396 | #if wxUSE_UXTHEME | |
1397 | if (border == wxBORDER_THEME) | |
1398 | { | |
1399 | if (CanApplyThemeBorder()) | |
1400 | { | |
1401 | wxUxThemeEngine* theme = wxUxThemeEngine::GetIfActive(); | |
1402 | if (theme) | |
1403 | return wxBORDER_THEME; | |
1404 | } | |
28bf925c | 1405 | return wxBORDER_SUNKEN; |
dc797d8e JS |
1406 | } |
1407 | #endif | |
1408 | return border; | |
1409 | #endif | |
dc797d8e JS |
1410 | } |
1411 | ||
1412 | ||
b2d5a7ee VZ |
1413 | WXDWORD wxWindowMSW::MSWGetStyle(long flags, WXDWORD *exstyle) const |
1414 | { | |
77ffb593 | 1415 | // translate common wxWidgets styles to Windows ones |
af495479 VZ |
1416 | |
1417 | // most of windows are child ones, those which are not (such as | |
1418 | // wxTopLevelWindow) should remove WS_CHILD in their MSWGetStyle() | |
1419 | WXDWORD style = WS_CHILD; | |
b2d5a7ee | 1420 | |
9b6ae450 VZ |
1421 | // using this flag results in very significant reduction in flicker, |
1422 | // especially with controls inside the static boxes (as the interior of the | |
90e572f1 | 1423 | // box is not redrawn twice), but sometimes results in redraw problems, so |
c7e1d004 VZ |
1424 | // optionally allow the old code to continue to use it provided a special |
1425 | // system option is turned on | |
1426 | if ( !wxSystemOptions::GetOptionInt(wxT("msw.window.no-clip-children")) | |
1427 | || (flags & wxCLIP_CHILDREN) ) | |
c6430ed0 | 1428 | style |= WS_CLIPCHILDREN; |
9b6ae450 VZ |
1429 | |
1430 | // it doesn't seem useful to use WS_CLIPSIBLINGS here as we officially | |
1431 | // don't support overlapping windows and it only makes sense for them and, | |
1432 | // presumably, gives the system some extra work (to manage more clipping | |
070d6391 | 1433 | // regions), so avoid it altogether |
b2d5a7ee | 1434 | |
b2d5a7ee | 1435 | |
f9007c32 JS |
1436 | if ( flags & wxVSCROLL ) |
1437 | style |= WS_VSCROLL; | |
1438 | ||
1439 | if ( flags & wxHSCROLL ) | |
1440 | style |= WS_HSCROLL; | |
1441 | ||
dc797d8e JS |
1442 | const wxBorder border = TranslateBorder(GetBorder(flags)); |
1443 | ||
1444 | // After translation, border is now optimized for the specific version of Windows | |
1445 | // and theme engine presence. | |
577baeef | 1446 | |
65bc172c VZ |
1447 | // WS_BORDER is only required for wxBORDER_SIMPLE |
1448 | if ( border == wxBORDER_SIMPLE ) | |
b2d5a7ee | 1449 | style |= WS_BORDER; |
577baeef | 1450 | |
b2d5a7ee VZ |
1451 | // now deal with ext style if the caller wants it |
1452 | if ( exstyle ) | |
1453 | { | |
1454 | *exstyle = 0; | |
1455 | ||
7f0586ef | 1456 | #ifndef __WXWINCE__ |
b2d5a7ee VZ |
1457 | if ( flags & wxTRANSPARENT_WINDOW ) |
1458 | *exstyle |= WS_EX_TRANSPARENT; | |
7f0586ef | 1459 | #endif |
b2d5a7ee | 1460 | |
fe3d9123 | 1461 | switch ( border ) |
b2d5a7ee | 1462 | { |
78cd9c69 JS |
1463 | default: |
1464 | case wxBORDER_DEFAULT: | |
9a83f860 | 1465 | wxFAIL_MSG( wxT("unknown border style") ); |
78cd9c69 | 1466 | // fall through |
b2d5a7ee VZ |
1467 | |
1468 | case wxBORDER_NONE: | |
1469 | case wxBORDER_SIMPLE: | |
78cd9c69 | 1470 | case wxBORDER_THEME: |
b2d5a7ee VZ |
1471 | break; |
1472 | ||
1473 | case wxBORDER_STATIC: | |
1474 | *exstyle |= WS_EX_STATICEDGE; | |
1475 | break; | |
1476 | ||
1477 | case wxBORDER_RAISED: | |
7699361c | 1478 | *exstyle |= WS_EX_DLGMODALFRAME; |
b2d5a7ee VZ |
1479 | break; |
1480 | ||
b2d5a7ee VZ |
1481 | case wxBORDER_SUNKEN: |
1482 | *exstyle |= WS_EX_CLIENTEDGE; | |
fe3d9123 | 1483 | style &= ~WS_BORDER; |
b2d5a7ee VZ |
1484 | break; |
1485 | ||
78cd9c69 JS |
1486 | // case wxBORDER_DOUBLE: |
1487 | // *exstyle |= WS_EX_DLGMODALFRAME; | |
1488 | // break; | |
b2d5a7ee | 1489 | } |
d515c32d | 1490 | |
09168de7 | 1491 | // wxUniv doesn't use Windows dialog navigation functions at all |
7f0586ef | 1492 | #if !defined(__WXUNIVERSAL__) && !defined(__WXWINCE__) |
5b9c12e1 | 1493 | // to make the dialog navigation work with the nested panels we must |
09168de7 VZ |
1494 | // use this style (top level windows such as dialogs don't need it) |
1495 | if ( (flags & wxTAB_TRAVERSAL) && !IsTopLevel() ) | |
d515c32d VZ |
1496 | { |
1497 | *exstyle |= WS_EX_CONTROLPARENT; | |
1498 | } | |
09168de7 | 1499 | #endif // __WXUNIVERSAL__ |
b2d5a7ee VZ |
1500 | } |
1501 | ||
1502 | return style; | |
1503 | } | |
eb5e4d9a | 1504 | |
42e69d6b | 1505 | // Setup background and foreground colours correctly |
1e6feb95 | 1506 | void wxWindowMSW::SetupColours() |
42e69d6b VZ |
1507 | { |
1508 | if ( GetParent() ) | |
1509 | SetBackgroundColour(GetParent()->GetBackgroundColour()); | |
1510 | } | |
a23fd0e1 | 1511 | |
1e6feb95 VZ |
1512 | bool wxWindowMSW::IsMouseInWindow() const |
1513 | { | |
1514 | // get the mouse position | |
1515 | POINT pt; | |
d6c37f5b | 1516 | wxGetCursorPosMSW(&pt); |
1e6feb95 VZ |
1517 | |
1518 | // find the window which currently has the cursor and go up the window | |
1519 | // chain until we find this window - or exhaust it | |
1520 | HWND hwnd = ::WindowFromPoint(pt); | |
1521 | while ( hwnd && (hwnd != GetHwnd()) ) | |
1522 | hwnd = ::GetParent(hwnd); | |
1523 | ||
1524 | return hwnd != NULL; | |
1525 | } | |
1526 | ||
e39af974 | 1527 | void wxWindowMSW::OnInternalIdle() |
42e69d6b | 1528 | { |
4e5c6c33 | 1529 | #ifndef HAVE_TRACKMOUSEEVENT |
42e69d6b VZ |
1530 | // Check if we need to send a LEAVE event |
1531 | if ( m_mouseInWindow ) | |
2d0a075d | 1532 | { |
ee74faf9 VZ |
1533 | // note that we should generate the leave event whether the window has |
1534 | // or doesn't have mouse capture | |
1535 | if ( !IsMouseInWindow() ) | |
42e69d6b | 1536 | { |
51e4e266 | 1537 | GenerateMouseLeave(); |
42e69d6b VZ |
1538 | } |
1539 | } | |
4e5c6c33 | 1540 | #endif // !HAVE_TRACKMOUSEEVENT |
c085e333 | 1541 | |
6a50a2c4 | 1542 | wxWindowBase::OnInternalIdle(); |
42e69d6b | 1543 | } |
568cb543 | 1544 | |
42e69d6b | 1545 | // Set this window to be the child of 'parent'. |
1e6feb95 | 1546 | bool wxWindowMSW::Reparent(wxWindowBase *parent) |
42e69d6b VZ |
1547 | { |
1548 | if ( !wxWindowBase::Reparent(parent) ) | |
08158721 | 1549 | return false; |
c085e333 | 1550 | |
42e69d6b VZ |
1551 | HWND hWndChild = GetHwnd(); |
1552 | HWND hWndParent = GetParent() ? GetWinHwnd(GetParent()) : (HWND)0; | |
a23fd0e1 | 1553 | |
42e69d6b | 1554 | ::SetParent(hWndChild, hWndParent); |
a23fd0e1 | 1555 | |
ee471817 | 1556 | #ifndef __WXWINCE__ |
d66d0500 | 1557 | if ( wxHasWindowExStyle(this, WS_EX_CONTROLPARENT) ) |
ee471817 VZ |
1558 | { |
1559 | EnsureParentHasControlParentStyle(GetParent()); | |
1560 | } | |
1561 | #endif // !__WXWINCE__ | |
1562 | ||
08158721 | 1563 | return true; |
42e69d6b | 1564 | } |
a23fd0e1 | 1565 | |
a0e449ff VZ |
1566 | static inline void SendSetRedraw(HWND hwnd, bool on) |
1567 | { | |
c67d6888 | 1568 | #ifndef __WXMICROWIN__ |
a0e449ff | 1569 | ::SendMessage(hwnd, WM_SETREDRAW, (WPARAM)on, 0); |
c67d6888 | 1570 | #endif |
a0e449ff VZ |
1571 | } |
1572 | ||
17808a75 | 1573 | void wxWindowMSW::DoFreeze() |
a0e449ff | 1574 | { |
89267fe5 VS |
1575 | if ( !IsShown() ) |
1576 | return; // no point in freezing hidden window | |
1577 | ||
1578 | SendSetRedraw(GetHwnd(), false); | |
a0e449ff VZ |
1579 | } |
1580 | ||
17808a75 | 1581 | void wxWindowMSW::DoThaw() |
a0e449ff | 1582 | { |
89267fe5 VS |
1583 | if ( !IsShown() ) |
1584 | return; // hidden windows aren't frozen by DoFreeze | |
a1037371 | 1585 | |
89267fe5 VS |
1586 | SendSetRedraw(GetHwnd(), true); |
1587 | ||
1588 | // we need to refresh everything or otherwise the invalidated area | |
1589 | // is not going to be repainted | |
1590 | Refresh(); | |
a0e449ff VZ |
1591 | } |
1592 | ||
1e6feb95 | 1593 | void wxWindowMSW::Refresh(bool eraseBack, const wxRect *rect) |
42e69d6b VZ |
1594 | { |
1595 | HWND hWnd = GetHwnd(); | |
1596 | if ( hWnd ) | |
1597 | { | |
d181e053 VZ |
1598 | RECT mswRect; |
1599 | const RECT *pRect; | |
42e69d6b VZ |
1600 | if ( rect ) |
1601 | { | |
f9c980f6 | 1602 | wxCopyRectToRECT(*rect, mswRect); |
d181e053 | 1603 | pRect = &mswRect; |
42e69d6b VZ |
1604 | } |
1605 | else | |
d181e053 VZ |
1606 | { |
1607 | pRect = NULL; | |
1608 | } | |
1609 | ||
82e3664e | 1610 | // RedrawWindow not available on SmartPhone or eVC++ 3 |
41527143 | 1611 | #if !defined(__SMARTPHONE__) && !(defined(_WIN32_WCE) && _WIN32_WCE < 400) |
d181e053 VZ |
1612 | UINT flags = RDW_INVALIDATE | RDW_ALLCHILDREN; |
1613 | if ( eraseBack ) | |
1614 | flags |= RDW_ERASE; | |
1615 | ||
1616 | ::RedrawWindow(hWnd, pRect, NULL, flags); | |
480e9098 | 1617 | #else |
16d652a5 | 1618 | ::InvalidateRect(hWnd, pRect, eraseBack); |
480e9098 | 1619 | #endif |
42e69d6b VZ |
1620 | } |
1621 | } | |
a23fd0e1 | 1622 | |
1e6feb95 VZ |
1623 | void wxWindowMSW::Update() |
1624 | { | |
1625 | if ( !::UpdateWindow(GetHwnd()) ) | |
1626 | { | |
9a83f860 | 1627 | wxLogLastError(wxT("UpdateWindow")); |
1e6feb95 | 1628 | } |
2b5f62a0 | 1629 | |
7f0586ef | 1630 | #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) |
1e6feb95 VZ |
1631 | // just calling UpdateWindow() is not enough, what we did in our WM_PAINT |
1632 | // handler needs to be really drawn right now | |
1633 | (void)::GdiFlush(); | |
1634 | #endif // __WIN32__ | |
1635 | } | |
1636 | ||
42e69d6b VZ |
1637 | // --------------------------------------------------------------------------- |
1638 | // drag and drop | |
1639 | // --------------------------------------------------------------------------- | |
a23fd0e1 | 1640 | |
3febc967 VZ |
1641 | #if wxUSE_DRAG_AND_DROP || !defined(__WXWINCE__) |
1642 | ||
1643 | #if wxUSE_STATBOX | |
1644 | ||
006b8dff JG |
1645 | // we need to lower the sibling static boxes so controls contained within can be |
1646 | // a drop target | |
3febc967 | 1647 | static void AdjustStaticBoxZOrder(wxWindow *parent) |
006b8dff | 1648 | { |
deb0d191 JG |
1649 | // no sibling static boxes if we have no parent (ie TLW) |
1650 | if ( !parent ) | |
1651 | return; | |
1652 | ||
006b8dff JG |
1653 | for ( wxWindowList::compatibility_iterator node = parent->GetChildren().GetFirst(); |
1654 | node; | |
1655 | node = node->GetNext() ) | |
1656 | { | |
1657 | wxStaticBox *statbox = wxDynamicCast(node->GetData(), wxStaticBox); | |
1658 | if ( statbox ) | |
1659 | { | |
1660 | ::SetWindowPos(GetHwndOf(statbox), HWND_BOTTOM, 0, 0, 0, 0, | |
1661 | SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE); | |
1662 | } | |
1663 | } | |
1664 | } | |
a23fd0e1 | 1665 | |
3febc967 VZ |
1666 | #else // !wxUSE_STATBOX |
1667 | ||
1668 | static inline void AdjustStaticBoxZOrder(wxWindow * WXUNUSED(parent)) | |
1669 | { | |
1670 | } | |
1671 | ||
1672 | #endif // wxUSE_STATBOX/!wxUSE_STATBOX | |
1673 | ||
1674 | #endif // drag and drop is used | |
1675 | ||
4ce1efe1 | 1676 | #if wxUSE_DRAG_AND_DROP |
1e6feb95 | 1677 | void wxWindowMSW::SetDropTarget(wxDropTarget *pDropTarget) |
42e69d6b VZ |
1678 | { |
1679 | if ( m_dropTarget != 0 ) { | |
1680 | m_dropTarget->Revoke(m_hWnd); | |
1681 | delete m_dropTarget; | |
1682 | } | |
a23fd0e1 | 1683 | |
42e69d6b VZ |
1684 | m_dropTarget = pDropTarget; |
1685 | if ( m_dropTarget != 0 ) | |
006b8dff JG |
1686 | { |
1687 | AdjustStaticBoxZOrder(GetParent()); | |
42e69d6b | 1688 | m_dropTarget->Register(m_hWnd); |
006b8dff | 1689 | } |
42e69d6b | 1690 | } |
42e69d6b | 1691 | #endif // wxUSE_DRAG_AND_DROP |
2a47d3c1 | 1692 | |
90e572f1 | 1693 | // old-style file manager drag&drop support: we retain the old-style |
42e69d6b | 1694 | // DragAcceptFiles in parallel with SetDropTarget. |
0c0d1521 | 1695 | void wxWindowMSW::DragAcceptFiles(bool WXUNUSED_IN_WINCE(accept)) |
42e69d6b | 1696 | { |
0c0d1521 | 1697 | #ifndef __WXWINCE__ |
42e69d6b VZ |
1698 | HWND hWnd = GetHwnd(); |
1699 | if ( hWnd ) | |
006b8dff JG |
1700 | { |
1701 | AdjustStaticBoxZOrder(GetParent()); | |
42e69d6b | 1702 | ::DragAcceptFiles(hWnd, (BOOL)accept); |
006b8dff | 1703 | } |
7f0586ef | 1704 | #endif |
42e69d6b | 1705 | } |
a23fd0e1 | 1706 | |
42e69d6b VZ |
1707 | // ---------------------------------------------------------------------------- |
1708 | // tooltips | |
1709 | // ---------------------------------------------------------------------------- | |
dbda9e86 | 1710 | |
42e69d6b | 1711 | #if wxUSE_TOOLTIPS |
2d0a075d | 1712 | |
1e6feb95 | 1713 | void wxWindowMSW::DoSetToolTip(wxToolTip *tooltip) |
42e69d6b VZ |
1714 | { |
1715 | wxWindowBase::DoSetToolTip(tooltip); | |
839b865d | 1716 | |
42e69d6b | 1717 | if ( m_tooltip ) |
d4e5272b | 1718 | m_tooltip->SetWindow((wxWindow *)this); |
42e69d6b | 1719 | } |
9a05fd8d | 1720 | |
42e69d6b | 1721 | #endif // wxUSE_TOOLTIPS |
9a05fd8d | 1722 | |
42e69d6b VZ |
1723 | // --------------------------------------------------------------------------- |
1724 | // moving and resizing | |
1725 | // --------------------------------------------------------------------------- | |
839b865d | 1726 | |
f7040b5f VZ |
1727 | bool wxWindowMSW::IsSizeDeferred() const |
1728 | { | |
6bd9b9f2 | 1729 | #if wxUSE_DEFERRED_SIZING |
f7040b5f VZ |
1730 | if ( m_pendingPosition != wxDefaultPosition || |
1731 | m_pendingSize != wxDefaultSize ) | |
1732 | return true; | |
6bd9b9f2 | 1733 | #endif // wxUSE_DEFERRED_SIZING |
f7040b5f VZ |
1734 | |
1735 | return false; | |
1736 | } | |
1737 | ||
42e69d6b | 1738 | // Get total size |
1e6feb95 | 1739 | void wxWindowMSW::DoGetSize(int *x, int *y) const |
42e69d6b | 1740 | { |
6bd9b9f2 | 1741 | #if wxUSE_DEFERRED_SIZING |
11cfa8ef VZ |
1742 | // if SetSize() had been called at wx level but not realized at Windows |
1743 | // level yet (i.e. EndDeferWindowPos() not called), we still should return | |
1744 | // the new and not the old position to the other wx code | |
1745 | if ( m_pendingSize != wxDefaultSize ) | |
1746 | { | |
1747 | if ( x ) | |
1748 | *x = m_pendingSize.x; | |
1749 | if ( y ) | |
1750 | *y = m_pendingSize.y; | |
1751 | } | |
1752 | else // use current size | |
6bd9b9f2 | 1753 | #endif // wxUSE_DEFERRED_SIZING |
11cfa8ef VZ |
1754 | { |
1755 | RECT rect = wxGetWindowRect(GetHwnd()); | |
82c9f85c | 1756 | |
11cfa8ef VZ |
1757 | if ( x ) |
1758 | *x = rect.right - rect.left; | |
1759 | if ( y ) | |
1760 | *y = rect.bottom - rect.top; | |
1761 | } | |
42e69d6b VZ |
1762 | } |
1763 | ||
82c9f85c VZ |
1764 | // Get size *available for subwindows* i.e. excluding menu bar etc. |
1765 | void wxWindowMSW::DoGetClientSize(int *x, int *y) const | |
42e69d6b | 1766 | { |
6bd9b9f2 | 1767 | #if wxUSE_DEFERRED_SIZING |
0d6fdb3c | 1768 | if ( m_pendingSize != wxDefaultSize ) |
0d7f75df | 1769 | { |
0d6fdb3c | 1770 | // we need to calculate the client size corresponding to pending size |
e259ce57 VZ |
1771 | // |
1772 | // FIXME: Unfortunately this doesn't work correctly for the maximized | |
1773 | // top level windows, the returned values are too small (e.g. | |
1774 | // under Windows 7 on a 1600*1200 screen with task bar on the | |
1775 | // right the pending size for a maximized window is 1538*1200 | |
1776 | // and WM_NCCALCSIZE returns 1528*1172 even though the correct | |
1777 | // client size of such window is 1538*1182). No idea how to fix | |
1778 | // it though, setting WS_MAXIMIZE in GWL_STYLE before calling | |
1779 | // WM_NCCALCSIZE doesn't help and AdjustWindowRectEx() doesn't | |
1780 | // work in this direction neither. So we just have to live with | |
1781 | // the slightly wrong results and relayout the window when it | |
1782 | // gets finally shown in its maximized state (see #11762). | |
dc497201 JG |
1783 | RECT rect; |
1784 | rect.left = m_pendingPosition.x; | |
1785 | rect.top = m_pendingPosition.y; | |
1786 | rect.right = rect.left + m_pendingSize.x; | |
1787 | rect.bottom = rect.top + m_pendingSize.y; | |
1788 | ||
1789 | ::SendMessage(GetHwnd(), WM_NCCALCSIZE, FALSE, (LPARAM)&rect); | |
1790 | ||
1791 | if ( x ) | |
1792 | *x = rect.right - rect.left; | |
1793 | if ( y ) | |
1794 | *y = rect.bottom - rect.top; | |
0d7f75df | 1795 | } |
0d6fdb3c | 1796 | else |
6bd9b9f2 | 1797 | #endif // wxUSE_DEFERRED_SIZING |
0d6fdb3c VZ |
1798 | { |
1799 | RECT rect = wxGetClientRect(GetHwnd()); | |
1800 | ||
1801 | if ( x ) | |
1802 | *x = rect.right; | |
1803 | if ( y ) | |
1804 | *y = rect.bottom; | |
1805 | } | |
352a7d6c VZ |
1806 | |
1807 | // The size of the client window can't be negative but ::GetClientRect() | |
1808 | // can return negative size for an extremely small (1x1) window with | |
1809 | // borders so ensure that we correct it here as having negative sizes is | |
1810 | // completely unexpected. | |
1811 | if ( x && *x < 0 ) | |
1812 | *x = 0; | |
1813 | if ( y && *y < 0 ) | |
1814 | *y = 0; | |
82c9f85c VZ |
1815 | } |
1816 | ||
1817 | void wxWindowMSW::DoGetPosition(int *x, int *y) const | |
1818 | { | |
a7e0e432 VZ |
1819 | wxWindow * const parent = GetParent(); |
1820 | ||
1821 | wxPoint pos; | |
9741fd45 | 1822 | #if wxUSE_DEFERRED_SIZING |
11cfa8ef VZ |
1823 | if ( m_pendingPosition != wxDefaultPosition ) |
1824 | { | |
a7e0e432 | 1825 | pos = m_pendingPosition; |
11cfa8ef VZ |
1826 | } |
1827 | else // use current position | |
9741fd45 | 1828 | #endif // wxUSE_DEFERRED_SIZING |
11cfa8ef VZ |
1829 | { |
1830 | RECT rect = wxGetWindowRect(GetHwnd()); | |
42e69d6b | 1831 | |
11cfa8ef VZ |
1832 | POINT point; |
1833 | point.x = rect.left; | |
1834 | point.y = rect.top; | |
42e69d6b | 1835 | |
11cfa8ef VZ |
1836 | // we do the adjustments with respect to the parent only for the "real" |
1837 | // children, not for the dialogs/frames | |
1838 | if ( !IsTopLevel() ) | |
92049cd4 | 1839 | { |
e5b5af91 VZ |
1840 | if ( wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft ) |
1841 | { | |
967acfb5 | 1842 | // In RTL mode, we want the logical left x-coordinate, |
e5b5af91 VZ |
1843 | // which would be the physical right x-coordinate. |
1844 | point.x = rect.right; | |
1845 | } | |
1846 | ||
11cfa8ef VZ |
1847 | // Since we now have the absolute screen coords, if there's a |
1848 | // parent we must subtract its top left corner | |
11cfa8ef VZ |
1849 | if ( parent ) |
1850 | { | |
a7e0e432 | 1851 | ::ScreenToClient(GetHwndOf(parent), &point); |
11cfa8ef | 1852 | } |
89e3037c | 1853 | } |
42e69d6b | 1854 | |
a7e0e432 VZ |
1855 | pos.x = point.x; |
1856 | pos.y = point.y; | |
1857 | } | |
1858 | ||
1859 | // we also must adjust by the client area offset: a control which is just | |
1860 | // under a toolbar could be at (0, 30) in Windows but at (0, 0) in wx | |
1861 | if ( parent && !IsTopLevel() ) | |
1862 | { | |
1863 | const wxPoint pt(parent->GetClientAreaOrigin()); | |
1864 | pos.x -= pt.x; | |
1865 | pos.y -= pt.y; | |
11cfa8ef | 1866 | } |
a7e0e432 VZ |
1867 | |
1868 | if ( x ) | |
1869 | *x = pos.x; | |
1870 | if ( y ) | |
1871 | *y = pos.y; | |
42e69d6b | 1872 | } |
54bdd8b0 | 1873 | |
1e6feb95 | 1874 | void wxWindowMSW::DoScreenToClient(int *x, int *y) const |
42e69d6b VZ |
1875 | { |
1876 | POINT pt; | |
1877 | if ( x ) | |
1878 | pt.x = *x; | |
1879 | if ( y ) | |
1880 | pt.y = *y; | |
54bdd8b0 | 1881 | |
82c9f85c | 1882 | ::ScreenToClient(GetHwnd(), &pt); |
a23fd0e1 | 1883 | |
42e69d6b VZ |
1884 | if ( x ) |
1885 | *x = pt.x; | |
1886 | if ( y ) | |
1887 | *y = pt.y; | |
1888 | } | |
a23fd0e1 | 1889 | |
1e6feb95 | 1890 | void wxWindowMSW::DoClientToScreen(int *x, int *y) const |
42e69d6b VZ |
1891 | { |
1892 | POINT pt; | |
1893 | if ( x ) | |
1894 | pt.x = *x; | |
1895 | if ( y ) | |
1896 | pt.y = *y; | |
54bdd8b0 | 1897 | |
82c9f85c | 1898 | ::ClientToScreen(GetHwnd(), &pt); |
a23fd0e1 | 1899 | |
42e69d6b VZ |
1900 | if ( x ) |
1901 | *x = pt.x; | |
1902 | if ( y ) | |
1903 | *y = pt.y; | |
1904 | } | |
a23fd0e1 | 1905 | |
86e30911 | 1906 | bool |
7d86a2d4 VZ |
1907 | wxWindowMSW::DoMoveSibling(WXHWND hwnd, int x, int y, int width, int height) |
1908 | { | |
6bd9b9f2 | 1909 | #if wxUSE_DEFERRED_SIZING |
7d86a2d4 VZ |
1910 | // if our parent had prepared a defer window handle for us, use it (unless |
1911 | // we are a top level window) | |
1912 | wxWindowMSW * const parent = IsTopLevel() ? NULL : GetParent(); | |
1913 | ||
1914 | HDWP hdwp = parent ? (HDWP)parent->m_hDWP : NULL; | |
1915 | if ( hdwp ) | |
1916 | { | |
1917 | hdwp = ::DeferWindowPos(hdwp, (HWND)hwnd, NULL, x, y, width, height, | |
dd28827a | 1918 | SWP_NOZORDER | SWP_NOOWNERZORDER | SWP_NOACTIVATE); |
7d86a2d4 VZ |
1919 | if ( !hdwp ) |
1920 | { | |
9a83f860 | 1921 | wxLogLastError(wxT("DeferWindowPos")); |
7d86a2d4 VZ |
1922 | } |
1923 | } | |
1924 | ||
1925 | if ( parent ) | |
1926 | { | |
1927 | // hdwp must be updated as it may have been changed | |
1928 | parent->m_hDWP = (WXHANDLE)hdwp; | |
1929 | } | |
1930 | ||
86e30911 VZ |
1931 | if ( hdwp ) |
1932 | { | |
1933 | // did deferred move, remember new coordinates of the window as they're | |
1934 | // different from what Windows would return for it | |
1935 | return true; | |
1936 | } | |
1937 | ||
7d86a2d4 | 1938 | // otherwise (or if deferring failed) move the window in place immediately |
6bd9b9f2 | 1939 | #endif // wxUSE_DEFERRED_SIZING |
86e30911 | 1940 | if ( !::MoveWindow((HWND)hwnd, x, y, width, height, IsShown()) ) |
7d86a2d4 | 1941 | { |
86e30911 | 1942 | wxLogLastError(wxT("MoveWindow")); |
7d86a2d4 | 1943 | } |
86e30911 | 1944 | |
6bd9b9f2 | 1945 | // if wxUSE_DEFERRED_SIZING, indicates that we didn't use deferred move, |
86e30911 VZ |
1946 | // ignored otherwise |
1947 | return false; | |
7d86a2d4 VZ |
1948 | } |
1949 | ||
1e6feb95 | 1950 | void wxWindowMSW::DoMoveWindow(int x, int y, int width, int height) |
b782f2e0 | 1951 | { |
62e1ba75 JS |
1952 | // TODO: is this consistent with other platforms? |
1953 | // Still, negative width or height shouldn't be allowed | |
1954 | if (width < 0) | |
1955 | width = 0; | |
1956 | if (height < 0) | |
1957 | height = 0; | |
9b6ae450 | 1958 | |
86e30911 VZ |
1959 | if ( DoMoveSibling(m_hWnd, x, y, width, height) ) |
1960 | { | |
6bd9b9f2 | 1961 | #if wxUSE_DEFERRED_SIZING |
86e30911 VZ |
1962 | m_pendingPosition = wxPoint(x, y); |
1963 | m_pendingSize = wxSize(width, height); | |
f8cba58b VZ |
1964 | } |
1965 | else // window was moved immediately, without deferring it | |
1966 | { | |
1967 | m_pendingPosition = wxDefaultPosition; | |
1968 | m_pendingSize = wxDefaultSize; | |
6bd9b9f2 | 1969 | #endif // wxUSE_DEFERRED_SIZING |
86e30911 | 1970 | } |
b782f2e0 VZ |
1971 | } |
1972 | ||
4438caf4 VZ |
1973 | // set the size of the window: if the dimensions are positive, just use them, |
1974 | // but if any of them is equal to -1, it means that we must find the value for | |
1975 | // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in | |
1976 | // which case -1 is a valid value for x and y) | |
1977 | // | |
1978 | // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate | |
1979 | // the width/height to best suit our contents, otherwise we reuse the current | |
1980 | // width/height | |
1e6feb95 | 1981 | void wxWindowMSW::DoSetSize(int x, int y, int width, int height, int sizeFlags) |
42e69d6b | 1982 | { |
4438caf4 | 1983 | // get the current size and position... |
42e69d6b | 1984 | int currentX, currentY; |
da78f3b1 RD |
1985 | int currentW, currentH; |
1986 | ||
42e69d6b | 1987 | GetPosition(¤tX, ¤tY); |
42e69d6b | 1988 | GetSize(¤tW, ¤tH); |
a23fd0e1 | 1989 | |
952f2aaa VZ |
1990 | // ... and don't do anything (avoiding flicker) if it's already ok unless |
1991 | // we're forced to resize the window | |
4438caf4 | 1992 | if ( x == currentX && y == currentY && |
952f2aaa VZ |
1993 | width == currentW && height == currentH && |
1994 | !(sizeFlags & wxSIZE_FORCE) ) | |
4438caf4 | 1995 | { |
e47e063a RR |
1996 | if (sizeFlags & wxSIZE_FORCE_EVENT) |
1997 | { | |
1998 | wxSizeEvent event( wxSize(width,height), GetId() ); | |
1999 | event.SetEventObject( this ); | |
2000 | HandleWindowEvent( event ); | |
2001 | } | |
42e69d6b | 2002 | return; |
4438caf4 | 2003 | } |
a23fd0e1 | 2004 | |
422d0ff0 | 2005 | if ( x == wxDefaultCoord && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) ) |
4438caf4 | 2006 | x = currentX; |
422d0ff0 | 2007 | if ( y == wxDefaultCoord && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) ) |
4438caf4 | 2008 | y = currentY; |
a23fd0e1 | 2009 | |
4438caf4 | 2010 | AdjustForParentClientOrigin(x, y, sizeFlags); |
a23fd0e1 | 2011 | |
abb74e0f | 2012 | wxSize size = wxDefaultSize; |
422d0ff0 | 2013 | if ( width == wxDefaultCoord ) |
4438caf4 | 2014 | { |
9e2896e5 | 2015 | if ( sizeFlags & wxSIZE_AUTO_WIDTH ) |
4438caf4 | 2016 | { |
4329eae9 | 2017 | size = GetBestSize(); |
4438caf4 VZ |
2018 | width = size.x; |
2019 | } | |
2020 | else | |
2021 | { | |
2022 | // just take the current one | |
2023 | width = currentW; | |
2024 | } | |
2025 | } | |
2026 | ||
422d0ff0 | 2027 | if ( height == wxDefaultCoord ) |
4438caf4 | 2028 | { |
9e2896e5 | 2029 | if ( sizeFlags & wxSIZE_AUTO_HEIGHT ) |
4438caf4 | 2030 | { |
422d0ff0 | 2031 | if ( size.x == wxDefaultCoord ) |
4438caf4 | 2032 | { |
4329eae9 | 2033 | size = GetBestSize(); |
4438caf4 | 2034 | } |
4329eae9 | 2035 | //else: already called GetBestSize() above |
a23fd0e1 | 2036 | |
4438caf4 VZ |
2037 | height = size.y; |
2038 | } | |
2039 | else | |
2040 | { | |
2041 | // just take the current one | |
2042 | height = currentH; | |
2043 | } | |
2044 | } | |
2045 | ||
b782f2e0 | 2046 | DoMoveWindow(x, y, width, height); |
4438caf4 VZ |
2047 | } |
2048 | ||
1e6feb95 | 2049 | void wxWindowMSW::DoSetClientSize(int width, int height) |
42e69d6b | 2050 | { |
90e572f1 | 2051 | // setting the client size is less obvious than it could have been |
d4597e13 | 2052 | // because in the result of changing the total size the window scrollbar |
c72b1ad7 VZ |
2053 | // may [dis]appear and/or its menubar may [un]wrap (and AdjustWindowRect() |
2054 | // doesn't take neither into account) and so the client size will not be | |
2055 | // correct as the difference between the total and client size changes -- | |
2056 | // so we keep changing it until we get it right | |
d4597e13 | 2057 | // |
d6a97306 VZ |
2058 | // normally this loop shouldn't take more than 3 iterations (usually 1 but |
2059 | // if scrollbars [dis]appear as the result of the first call, then 2 and it | |
2060 | // may become 3 if the window had 0 size originally and so we didn't | |
2061 | // calculate the scrollbar correction correctly during the first iteration) | |
2062 | // but just to be on the safe side we check for it instead of making it an | |
d4597e13 | 2063 | // "infinite" loop (i.e. leaving break inside as the only way to get out) |
d6a97306 | 2064 | for ( int i = 0; i < 4; i++ ) |
d4597e13 VZ |
2065 | { |
2066 | RECT rectClient; | |
2067 | ::GetClientRect(GetHwnd(), &rectClient); | |
2bda0e17 | 2068 | |
b0268daf | 2069 | // if the size is already ok, stop here (NB: rectClient.left = top = 0) |
422d0ff0 WS |
2070 | if ( (rectClient.right == width || width == wxDefaultCoord) && |
2071 | (rectClient.bottom == height || height == wxDefaultCoord) ) | |
d4597e13 VZ |
2072 | { |
2073 | break; | |
2074 | } | |
a23fd0e1 | 2075 | |
d4597e13 VZ |
2076 | // Find the difference between the entire window (title bar and all) |
2077 | // and the client area; add this to the new client size to move the | |
2078 | // window | |
2079 | RECT rectWin; | |
2080 | ::GetWindowRect(GetHwnd(), &rectWin); | |
2081 | ||
b0268daf VZ |
2082 | const int widthWin = rectWin.right - rectWin.left, |
2083 | heightWin = rectWin.bottom - rectWin.top; | |
387a3b02 | 2084 | |
d4597e13 VZ |
2085 | // MoveWindow positions the child windows relative to the parent, so |
2086 | // adjust if necessary | |
2087 | if ( !IsTopLevel() ) | |
2088 | { | |
2089 | wxWindow *parent = GetParent(); | |
2090 | if ( parent ) | |
2091 | { | |
b0268daf | 2092 | ::ScreenToClient(GetHwndOf(parent), (POINT *)&rectWin); |
d4597e13 VZ |
2093 | } |
2094 | } | |
a23fd0e1 | 2095 | |
b0268daf | 2096 | // don't call DoMoveWindow() because we want to move window immediately |
c72b1ad7 VZ |
2097 | // and not defer it here as otherwise the value returned by |
2098 | // GetClient/WindowRect() wouldn't change as the window wouldn't be | |
2099 | // really resized | |
b0268daf VZ |
2100 | if ( !::MoveWindow(GetHwnd(), |
2101 | rectWin.left, | |
2102 | rectWin.top, | |
2103 | width + widthWin - rectClient.right, | |
2104 | height + heightWin - rectClient.bottom, | |
2105 | TRUE) ) | |
2106 | { | |
9a83f860 | 2107 | wxLogLastError(wxT("MoveWindow")); |
b0268daf | 2108 | } |
d4597e13 | 2109 | } |
42e69d6b | 2110 | } |
a23fd0e1 | 2111 | |
743b4266 VZ |
2112 | wxSize wxWindowMSW::DoGetBorderSize() const |
2113 | { | |
2114 | wxCoord border; | |
2115 | switch ( GetBorder() ) | |
2116 | { | |
2117 | case wxBORDER_STATIC: | |
2118 | case wxBORDER_SIMPLE: | |
2119 | border = 1; | |
2120 | break; | |
2121 | ||
2122 | case wxBORDER_SUNKEN: | |
2123 | border = 2; | |
2124 | break; | |
2125 | ||
2126 | case wxBORDER_RAISED: | |
2127 | case wxBORDER_DOUBLE: | |
2128 | border = 3; | |
2129 | break; | |
2130 | ||
2131 | default: | |
9a83f860 | 2132 | wxFAIL_MSG( wxT("unknown border style") ); |
743b4266 VZ |
2133 | // fall through |
2134 | ||
2135 | case wxBORDER_NONE: | |
2136 | border = 0; | |
2137 | } | |
2138 | ||
2139 | return 2*wxSize(border, border); | |
2140 | } | |
2141 | ||
42e69d6b VZ |
2142 | // --------------------------------------------------------------------------- |
2143 | // text metrics | |
2144 | // --------------------------------------------------------------------------- | |
a23fd0e1 | 2145 | |
1e6feb95 | 2146 | int wxWindowMSW::GetCharHeight() const |
42e69d6b | 2147 | { |
f6bcfd97 | 2148 | return wxGetTextMetrics(this).tmHeight; |
42e69d6b | 2149 | } |
3eddf563 | 2150 | |
1e6feb95 | 2151 | int wxWindowMSW::GetCharWidth() const |
42e69d6b | 2152 | { |
f6bcfd97 BP |
2153 | // +1 is needed because Windows apparently adds it when calculating the |
2154 | // dialog units size in pixels | |
2155 | #if wxDIALOG_UNIT_COMPATIBILITY | |
1e6feb95 | 2156 | return wxGetTextMetrics(this).tmAveCharWidth; |
f6bcfd97 BP |
2157 | #else |
2158 | return wxGetTextMetrics(this).tmAveCharWidth + 1; | |
2159 | #endif | |
42e69d6b | 2160 | } |
f4621a09 | 2161 | |
6de70470 VZ |
2162 | void wxWindowMSW::DoGetTextExtent(const wxString& string, |
2163 | int *x, int *y, | |
2164 | int *descent, | |
2165 | int *externalLeading, | |
2166 | const wxFont *fontToUse) const | |
42e69d6b | 2167 | { |
8cd79b7a VZ |
2168 | // ensure we work with a valid font |
2169 | wxFont font; | |
2170 | if ( !fontToUse || !fontToUse->IsOk() ) | |
2171 | font = GetFont(); | |
2d17baae | 2172 | else |
8cd79b7a | 2173 | font = *fontToUse; |
341c92a8 | 2174 | |
8cd79b7a | 2175 | wxCHECK_RET( font.IsOk(), wxT("invalid font in GetTextExtent()") ); |
42e69d6b | 2176 | |
8cd79b7a VZ |
2177 | const wxWindow* win = static_cast<const wxWindow*>(this); |
2178 | wxTextMeasure txm(win, &font); | |
2179 | txm.GetTextExtent(string, x, y, descent, externalLeading); | |
2bda0e17 KB |
2180 | } |
2181 | ||
c50f1fb9 VZ |
2182 | // --------------------------------------------------------------------------- |
2183 | // popup menu | |
2184 | // --------------------------------------------------------------------------- | |
2185 | ||
2e9f62da VZ |
2186 | #if wxUSE_MENUS_NATIVE |
2187 | ||
ed45e263 VZ |
2188 | // yield for WM_COMMAND events only, i.e. process all WM_COMMANDs in the queue |
2189 | // immediately, without waiting for the next event loop iteration | |
2190 | // | |
2191 | // NB: this function should probably be made public later as it can almost | |
2192 | // surely replace wxYield() elsewhere as well | |
2193 | static void wxYieldForCommandsOnly() | |
2194 | { | |
2195 | // peek all WM_COMMANDs (it will always return WM_QUIT too but we don't | |
2196 | // want to process it here) | |
2197 | MSG msg; | |
1bf77ee5 | 2198 | while ( ::PeekMessage(&msg, (HWND)0, WM_COMMAND, WM_COMMAND, PM_REMOVE) ) |
ed45e263 | 2199 | { |
dd7ebf8b | 2200 | if ( msg.message == WM_QUIT ) |
1bf77ee5 VZ |
2201 | { |
2202 | // if we retrieved a WM_QUIT, insert back into the message queue. | |
2203 | ::PostQuitMessage(0); | |
2204 | break; | |
2205 | } | |
7de59551 | 2206 | |
1bf77ee5 VZ |
2207 | // luckily (as we don't have access to wxEventLoopImpl method from here |
2208 | // anyhow...) we don't need to pre process WM_COMMANDs so dispatch it | |
2209 | // immediately | |
2210 | ::TranslateMessage(&msg); | |
2211 | ::DispatchMessage(&msg); | |
2212 | } | |
ed45e263 VZ |
2213 | } |
2214 | ||
1e6feb95 | 2215 | bool wxWindowMSW::DoPopupMenu(wxMenu *menu, int x, int y) |
c50f1fb9 | 2216 | { |
c50f1fb9 VZ |
2217 | menu->UpdateUI(); |
2218 | ||
473d0f93 | 2219 | wxPoint pt; |
27d2dbbc | 2220 | if ( x == wxDefaultCoord && y == wxDefaultCoord ) |
971562cb | 2221 | { |
473d0f93 VZ |
2222 | pt = wxGetMousePosition(); |
2223 | } | |
2224 | else | |
2225 | { | |
2226 | pt = ClientToScreen(wxPoint(x, y)); | |
971562cb VS |
2227 | } |
2228 | ||
5cb598ae | 2229 | #if defined(__WXWINCE__) |
b40bf35c VZ |
2230 | static const UINT flags = 0; |
2231 | #else // !__WXWINCE__ | |
2232 | UINT flags = TPM_RIGHTBUTTON; | |
2233 | // NT4 doesn't support TPM_RECURSE and simply doesn't show the menu at all | |
2234 | // when it's use, I'm not sure about Win95/98 but prefer to err on the safe | |
2235 | // side and not to use it there neither -- modify the test if it does work | |
2236 | // on these systems | |
2237 | if ( wxGetWinVersion() >= wxWinVersion_5 ) | |
2238 | { | |
2239 | // using TPM_RECURSE allows us to show a popup menu while another menu | |
2240 | // is opened which can be useful and is supported by the other | |
2241 | // platforms, so allow it under Windows too | |
2242 | flags |= TPM_RECURSE; | |
2243 | } | |
2244 | #endif // __WXWINCE__/!__WXWINCE__ | |
2245 | ||
473d0f93 | 2246 | ::TrackPopupMenu(GetHmenuOf(menu), flags, pt.x, pt.y, 0, GetHwnd(), NULL); |
ed45e263 | 2247 | |
90e572f1 | 2248 | // we need to do it right now as otherwise the events are never going to be |
ed45e263 VZ |
2249 | // sent to wxCurrentPopupMenu from HandleCommand() |
2250 | // | |
2251 | // note that even eliminating (ugly) wxCurrentPopupMenu global wouldn't | |
2252 | // help and we'd still need wxYieldForCommandsOnly() as the menu may be | |
2253 | // destroyed as soon as we return (it can be a local variable in the caller | |
2254 | // for example) and so we do need to process the event immediately | |
2255 | wxYieldForCommandsOnly(); | |
2256 | ||
08158721 | 2257 | return true; |
c50f1fb9 VZ |
2258 | } |
2259 | ||
1e6feb95 VZ |
2260 | #endif // wxUSE_MENUS_NATIVE |
2261 | ||
42e69d6b VZ |
2262 | // =========================================================================== |
2263 | // pre/post message processing | |
2264 | // =========================================================================== | |
2bda0e17 | 2265 | |
c140b7e7 | 2266 | WXLRESULT wxWindowMSW::MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) |
42e69d6b | 2267 | { |
1afe4f9b | 2268 | WXLRESULT rc; |
42e69d6b | 2269 | if ( m_oldWndProc ) |
1afe4f9b | 2270 | rc = ::CallWindowProc(CASTWNDPROC m_oldWndProc, GetHwnd(), (UINT) nMsg, (WPARAM) wParam, (LPARAM) lParam); |
42e69d6b | 2271 | else |
1afe4f9b VZ |
2272 | rc = ::DefWindowProc(GetHwnd(), nMsg, wParam, lParam); |
2273 | ||
2274 | // Special hack used by wxTextEntry auto-completion only: this event is | |
2275 | // sent after the normal keyboard processing so that its handler could use | |
2276 | // the updated contents of the text control, after taking the key that was | |
2277 | // pressed into account. | |
2278 | if ( nMsg == WM_CHAR ) | |
2279 | { | |
2280 | wxKeyEvent event(CreateCharEvent(wxEVT_AFTER_CHAR, wParam, lParam)); | |
2281 | HandleWindowEvent(event); | |
2282 | } | |
2283 | ||
2284 | return rc; | |
42e69d6b | 2285 | } |
2bda0e17 | 2286 | |
1e6feb95 | 2287 | bool wxWindowMSW::MSWProcessMessage(WXMSG* pMsg) |
42e69d6b | 2288 | { |
1e6feb95 VZ |
2289 | // wxUniversal implements tab traversal itself |
2290 | #ifndef __WXUNIVERSAL__ | |
42e69d6b | 2291 | if ( m_hWnd != 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL) ) |
2d0a075d | 2292 | { |
42e69d6b VZ |
2293 | // intercept dialog navigation keys |
2294 | MSG *msg = (MSG *)pMsg; | |
d9317fd4 VZ |
2295 | |
2296 | // here we try to do all the job which ::IsDialogMessage() usually does | |
2297 | // internally | |
573a1586 | 2298 | if ( msg->message == WM_KEYDOWN ) |
42e69d6b | 2299 | { |
3f7bc32b VZ |
2300 | bool bCtrlDown = wxIsCtrlDown(); |
2301 | bool bShiftDown = wxIsShiftDown(); | |
a23fd0e1 | 2302 | |
42e69d6b VZ |
2303 | // WM_GETDLGCODE: ask the control if it wants the key for itself, |
2304 | // don't process it if it's the case (except for Ctrl-Tab/Enter | |
2305 | // combinations which are always processed) | |
977f50f3 VZ |
2306 | LONG lDlgCode = ::SendMessage(msg->hwnd, WM_GETDLGCODE, 0, 0); |
2307 | ||
cbab1556 | 2308 | // surprisingly, DLGC_WANTALLKEYS bit mask doesn't contain the |
977f50f3 VZ |
2309 | // DLGC_WANTTAB nor DLGC_WANTARROWS bits although, logically, |
2310 | // it, of course, implies them | |
2311 | if ( lDlgCode & DLGC_WANTALLKEYS ) | |
42e69d6b | 2312 | { |
977f50f3 | 2313 | lDlgCode |= DLGC_WANTTAB | DLGC_WANTARROWS; |
42e69d6b | 2314 | } |
a23fd0e1 | 2315 | |
08158721 | 2316 | bool bForward = true, |
298ca00c VZ |
2317 | bWindowChange = false, |
2318 | bFromTab = false; | |
a23fd0e1 | 2319 | |
573a1586 | 2320 | // should we process this message specially? |
08158721 | 2321 | bool bProcess = true; |
9145664b | 2322 | switch ( msg->wParam ) |
42e69d6b VZ |
2323 | { |
2324 | case VK_TAB: | |
7cc44669 VZ |
2325 | if ( (lDlgCode & DLGC_WANTTAB) && !bCtrlDown ) |
2326 | { | |
2327 | // let the control have the TAB | |
08158721 | 2328 | bProcess = false; |
42e69d6b | 2329 | } |
7cc44669 VZ |
2330 | else // use it for navigation |
2331 | { | |
42e69d6b VZ |
2332 | // Ctrl-Tab cycles thru notebook pages |
2333 | bWindowChange = bCtrlDown; | |
319fefa9 | 2334 | bForward = !bShiftDown; |
298ca00c | 2335 | bFromTab = true; |
42e69d6b VZ |
2336 | } |
2337 | break; | |
a23fd0e1 | 2338 | |
42e69d6b VZ |
2339 | case VK_UP: |
2340 | case VK_LEFT: | |
2341 | if ( (lDlgCode & DLGC_WANTARROWS) || bCtrlDown ) | |
08158721 | 2342 | bProcess = false; |
42e69d6b | 2343 | else |
08158721 | 2344 | bForward = false; |
42e69d6b | 2345 | break; |
a02eb1d2 | 2346 | |
42e69d6b VZ |
2347 | case VK_DOWN: |
2348 | case VK_RIGHT: | |
2349 | if ( (lDlgCode & DLGC_WANTARROWS) || bCtrlDown ) | |
08158721 | 2350 | bProcess = false; |
42e69d6b | 2351 | break; |
2bda0e17 | 2352 | |
efe5e221 VZ |
2353 | case VK_PRIOR: |
2354 | bForward = false; | |
2355 | // fall through | |
2356 | ||
2357 | case VK_NEXT: | |
2358 | // we treat PageUp/Dn as arrows because chances are that | |
2359 | // a control which needs arrows also needs them for | |
2360 | // navigation (e.g. wxTextCtrl, wxListCtrl, ...) | |
ada5f90d | 2361 | if ( (lDlgCode & DLGC_WANTARROWS) && !bCtrlDown ) |
efe5e221 | 2362 | bProcess = false; |
ada5f90d | 2363 | else // OTOH Ctrl-PageUp/Dn works as [Shift-]Ctrl-Tab |
efe5e221 VZ |
2364 | bWindowChange = true; |
2365 | break; | |
2366 | ||
42e69d6b VZ |
2367 | case VK_RETURN: |
2368 | { | |
90c6edd7 | 2369 | #if wxUSE_BUTTON |
3147bb58 | 2370 | // currently active button should get enter press even |
90c6edd7 VZ |
2371 | // if there is a default button elsewhere so check if |
2372 | // this window is a button first | |
2373 | wxWindow *btn = NULL; | |
3147bb58 | 2374 | if ( lDlgCode & DLGC_DEFPUSHBUTTON ) |
319fefa9 | 2375 | { |
3e79ed96 VZ |
2376 | // let IsDialogMessage() handle this for all |
2377 | // buttons except the owner-drawn ones which it | |
2378 | // just seems to ignore | |
2379 | long style = ::GetWindowLong(msg->hwnd, GWL_STYLE); | |
2380 | if ( (style & BS_OWNERDRAW) == BS_OWNERDRAW ) | |
2381 | { | |
2382 | // emulate the button click | |
dca0f651 | 2383 | btn = wxFindWinFromHandle(msg->hwnd); |
3e79ed96 | 2384 | } |
319fefa9 | 2385 | } |
90c6edd7 | 2386 | else // not a button itself, do we have default button? |
c50f1fb9 | 2387 | { |
8e86978a VZ |
2388 | // check if this window or any of its ancestors |
2389 | // wants the message for itself (we always reserve | |
2390 | // Ctrl-Enter for dialog navigation though) | |
2391 | wxWindow *win = this; | |
2392 | if ( !bCtrlDown ) | |
2393 | { | |
53b0c2bc | 2394 | // this will contain the dialog code of this |
0075ea22 | 2395 | // window and all of its parent windows in turn |
53b0c2bc VZ |
2396 | LONG lDlgCode2 = lDlgCode; |
2397 | ||
0075ea22 | 2398 | while ( win ) |
8e86978a | 2399 | { |
53b0c2bc | 2400 | if ( lDlgCode2 & DLGC_WANTMESSAGE ) |
8e86978a VZ |
2401 | { |
2402 | // as it wants to process Enter itself, | |
2403 | // don't call IsDialogMessage() which | |
2404 | // would consume it | |
2405 | return false; | |
2406 | } | |
2407 | ||
0075ea22 VZ |
2408 | // don't propagate keyboard messages beyond |
2409 | // the first top level window parent | |
2410 | if ( win->IsTopLevel() ) | |
2411 | break; | |
2412 | ||
2413 | win = win->GetParent(); | |
2414 | ||
53b0c2bc VZ |
2415 | lDlgCode2 = ::SendMessage |
2416 | ( | |
2417 | GetHwndOf(win), | |
2418 | WM_GETDLGCODE, | |
2419 | 0, | |
2420 | 0 | |
2421 | ); | |
8e86978a VZ |
2422 | } |
2423 | } | |
2424 | else // bCtrlDown | |
2425 | { | |
2426 | win = wxGetTopLevelParent(win); | |
2427 | } | |
2428 | ||
2429 | wxTopLevelWindow * const | |
2430 | tlw = wxDynamicCast(win, wxTopLevelWindow); | |
6c20e8f8 | 2431 | if ( tlw ) |
c50f1fb9 | 2432 | { |
90c6edd7 VZ |
2433 | btn = wxDynamicCast(tlw->GetDefaultItem(), |
2434 | wxButton); | |
c50f1fb9 | 2435 | } |
90c6edd7 VZ |
2436 | } |
2437 | ||
2438 | if ( btn && btn->IsEnabled() ) | |
2439 | { | |
2440 | btn->MSWCommand(BN_CLICKED, 0 /* unused */); | |
2441 | return true; | |
2442 | } | |
2443 | ||
efaf7865 VZ |
2444 | // This "Return" key press won't be actually used for |
2445 | // navigation so don't generate wxNavigationKeyEvent | |
2446 | // for it but still pass it to IsDialogMessage() as it | |
2447 | // may handle it in some other way (e.g. by playing the | |
2448 | // default error sound). | |
2449 | bProcess = false; | |
2450 | ||
1e6feb95 | 2451 | #endif // wxUSE_BUTTON |
90c6edd7 | 2452 | |
7b504551 | 2453 | #ifdef __WXWINCE__ |
90c6edd7 VZ |
2454 | // map Enter presses into button presses on PDAs |
2455 | wxJoystickEvent event(wxEVT_JOY_BUTTON_DOWN); | |
2456 | event.SetEventObject(this); | |
937013e0 | 2457 | if ( HandleWindowEvent(event) ) |
90c6edd7 VZ |
2458 | return true; |
2459 | #endif // __WXWINCE__ | |
42e69d6b VZ |
2460 | } |
2461 | break; | |
2bda0e17 | 2462 | |
42e69d6b | 2463 | default: |
08158721 | 2464 | bProcess = false; |
42e69d6b | 2465 | } |
2bda0e17 | 2466 | |
42e69d6b VZ |
2467 | if ( bProcess ) |
2468 | { | |
2469 | wxNavigationKeyEvent event; | |
2470 | event.SetDirection(bForward); | |
2471 | event.SetWindowChange(bWindowChange); | |
298ca00c | 2472 | event.SetFromTab(bFromTab); |
42e69d6b | 2473 | event.SetEventObject(this); |
3572173c | 2474 | |
937013e0 | 2475 | if ( HandleWindowEvent(event) ) |
57c0af52 | 2476 | { |
d7e0024b VZ |
2477 | // as we don't call IsDialogMessage(), which would take of |
2478 | // this by default, we need to manually send this message | |
1ca78aa1 JS |
2479 | // so that controls can change their UI state if needed |
2480 | MSWUpdateUIState(UIS_CLEAR, UISF_HIDEFOCUS); | |
d7e0024b | 2481 | |
08158721 | 2482 | return true; |
57c0af52 | 2483 | } |
42e69d6b VZ |
2484 | } |
2485 | } | |
a23fd0e1 | 2486 | |
98ebf919 | 2487 | if ( ::IsDialogMessage(GetHwnd(), msg) ) |
f6bcfd97 | 2488 | { |
98ebf919 VZ |
2489 | // IsDialogMessage() did something... |
2490 | return true; | |
f6bcfd97 | 2491 | } |
42e69d6b | 2492 | } |
1e6feb95 | 2493 | #endif // __WXUNIVERSAL__ |
a23fd0e1 | 2494 | |
42e69d6b VZ |
2495 | #if wxUSE_TOOLTIPS |
2496 | if ( m_tooltip ) | |
387a3b02 | 2497 | { |
42e69d6b VZ |
2498 | // relay mouse move events to the tooltip control |
2499 | MSG *msg = (MSG *)pMsg; | |
2500 | if ( msg->message == WM_MOUSEMOVE ) | |
259a4264 | 2501 | wxToolTip::RelayEvent(pMsg); |
387a3b02 | 2502 | } |
42e69d6b | 2503 | #endif // wxUSE_TOOLTIPS |
a23fd0e1 | 2504 | |
08158721 | 2505 | return false; |
387a3b02 JS |
2506 | } |
2507 | ||
1e6feb95 | 2508 | bool wxWindowMSW::MSWTranslateMessage(WXMSG* pMsg) |
387a3b02 | 2509 | { |
1e6feb95 | 2510 | #if wxUSE_ACCEL && !defined(__WXUNIVERSAL__) |
c50f1fb9 | 2511 | return m_acceleratorTable.Translate(this, pMsg); |
1e6feb95 | 2512 | #else |
574c939e | 2513 | (void) pMsg; |
08158721 | 2514 | return false; |
1e6feb95 | 2515 | #endif // wxUSE_ACCEL |
387a3b02 JS |
2516 | } |
2517 | ||
98ebf919 | 2518 | bool wxWindowMSW::MSWShouldPreProcessMessage(WXMSG* msg) |
a37d422a | 2519 | { |
98ebf919 VZ |
2520 | // all tests below have to deal with various bugs/misfeatures of |
2521 | // IsDialogMessage(): we have to prevent it from being called from our | |
2522 | // MSWProcessMessage() in some situations | |
2523 | ||
2524 | // don't let IsDialogMessage() get VK_ESCAPE as it _always_ eats the | |
2525 | // message even when there is no cancel button and when the message is | |
2526 | // needed by the control itself: in particular, it prevents the tree in | |
2527 | // place edit control from being closed with Escape in a dialog | |
2528 | if ( msg->message == WM_KEYDOWN && msg->wParam == VK_ESCAPE ) | |
2529 | { | |
2530 | return false; | |
2531 | } | |
2532 | ||
2533 | // ::IsDialogMessage() is broken and may sometimes hang the application by | |
2534 | // going into an infinite loop when it tries to find the control to give | |
2535 | // focus to when Alt-<key> is pressed, so we try to detect [some of] the | |
2536 | // situations when this may happen and not call it then | |
2537 | if ( msg->message != WM_SYSCHAR ) | |
2538 | return true; | |
2539 | ||
2540 | // assume we can call it by default | |
2541 | bool canSafelyCallIsDlgMsg = true; | |
2542 | ||
2543 | HWND hwndFocus = ::GetFocus(); | |
2544 | ||
2545 | // if the currently focused window itself has WS_EX_CONTROLPARENT style, | |
2546 | // ::IsDialogMessage() will also enter an infinite loop, because it will | |
2547 | // recursively check the child windows but not the window itself and so if | |
2548 | // none of the children accepts focus it loops forever (as it only stops | |
2549 | // when it gets back to the window it started from) | |
2550 | // | |
2551 | // while it is very unusual that a window with WS_EX_CONTROLPARENT | |
2552 | // style has the focus, it can happen. One such possibility is if | |
2553 | // all windows are either toplevel, wxDialog, wxPanel or static | |
2554 | // controls and no window can actually accept keyboard input. | |
2555 | #if !defined(__WXWINCE__) | |
2556 | if ( ::GetWindowLong(hwndFocus, GWL_EXSTYLE) & WS_EX_CONTROLPARENT ) | |
2557 | { | |
2558 | // pessimistic by default | |
2559 | canSafelyCallIsDlgMsg = false; | |
2560 | for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); | |
2561 | node; | |
2562 | node = node->GetNext() ) | |
2563 | { | |
2564 | wxWindow * const win = node->GetData(); | |
ad02525d | 2565 | if ( win->CanAcceptFocus() && |
d66d0500 | 2566 | !wxHasWindowExStyle(win, WS_EX_CONTROLPARENT) ) |
98ebf919 VZ |
2567 | { |
2568 | // it shouldn't hang... | |
2569 | canSafelyCallIsDlgMsg = true; | |
2570 | ||
2571 | break; | |
2572 | } | |
2573 | } | |
2574 | } | |
2575 | #endif // !__WXWINCE__ | |
2576 | ||
2577 | if ( canSafelyCallIsDlgMsg ) | |
2578 | { | |
2579 | // ::IsDialogMessage() can enter in an infinite loop when the | |
2580 | // currently focused window is disabled or hidden and its | |
2581 | // parent has WS_EX_CONTROLPARENT style, so don't call it in | |
2582 | // this case | |
2583 | while ( hwndFocus ) | |
2584 | { | |
2585 | if ( !::IsWindowEnabled(hwndFocus) || | |
2586 | !::IsWindowVisible(hwndFocus) ) | |
2587 | { | |
2588 | // it would enter an infinite loop if we do this! | |
2589 | canSafelyCallIsDlgMsg = false; | |
2590 | ||
2591 | break; | |
2592 | } | |
2593 | ||
2594 | if ( !(::GetWindowLong(hwndFocus, GWL_STYLE) & WS_CHILD) ) | |
2595 | { | |
2596 | // it's a top level window, don't go further -- e.g. even | |
2597 | // if the parent of a dialog is disabled, this doesn't | |
2598 | // break navigation inside the dialog | |
2599 | break; | |
2600 | } | |
2601 | ||
2602 | hwndFocus = ::GetParent(hwndFocus); | |
2603 | } | |
2604 | } | |
2605 | ||
2606 | return canSafelyCallIsDlgMsg; | |
a37d422a VZ |
2607 | } |
2608 | ||
42e69d6b | 2609 | // --------------------------------------------------------------------------- |
e39af974 | 2610 | // message params unpackers |
42e69d6b | 2611 | // --------------------------------------------------------------------------- |
2bda0e17 | 2612 | |
1e6feb95 | 2613 | void wxWindowMSW::UnpackCommand(WXWPARAM wParam, WXLPARAM lParam, |
42e69d6b VZ |
2614 | WORD *id, WXHWND *hwnd, WORD *cmd) |
2615 | { | |
2616 | *id = LOWORD(wParam); | |
2617 | *hwnd = (WXHWND)lParam; | |
2618 | *cmd = HIWORD(wParam); | |
2bda0e17 KB |
2619 | } |
2620 | ||
1e6feb95 | 2621 | void wxWindowMSW::UnpackActivate(WXWPARAM wParam, WXLPARAM lParam, |
42e69d6b | 2622 | WXWORD *state, WXWORD *minimized, WXHWND *hwnd) |
2bda0e17 | 2623 | { |
42e69d6b VZ |
2624 | *state = LOWORD(wParam); |
2625 | *minimized = HIWORD(wParam); | |
2626 | *hwnd = (WXHWND)lParam; | |
2bda0e17 KB |
2627 | } |
2628 | ||
1e6feb95 | 2629 | void wxWindowMSW::UnpackScroll(WXWPARAM wParam, WXLPARAM lParam, |
42e69d6b | 2630 | WXWORD *code, WXWORD *pos, WXHWND *hwnd) |
2bda0e17 | 2631 | { |
42e69d6b VZ |
2632 | *code = LOWORD(wParam); |
2633 | *pos = HIWORD(wParam); | |
2634 | *hwnd = (WXHWND)lParam; | |
2635 | } | |
a23fd0e1 | 2636 | |
1e6feb95 | 2637 | void wxWindowMSW::UnpackCtlColor(WXWPARAM wParam, WXLPARAM lParam, |
01c500af | 2638 | WXHDC *hdc, WXHWND *hwnd) |
42e69d6b | 2639 | { |
42e69d6b VZ |
2640 | *hwnd = (WXHWND)lParam; |
2641 | *hdc = (WXHDC)wParam; | |
2bda0e17 KB |
2642 | } |
2643 | ||
1e6feb95 | 2644 | void wxWindowMSW::UnpackMenuSelect(WXWPARAM wParam, WXLPARAM lParam, |
42e69d6b | 2645 | WXWORD *item, WXWORD *flags, WXHMENU *hmenu) |
2bda0e17 | 2646 | { |
42e69d6b VZ |
2647 | *item = (WXWORD)wParam; |
2648 | *flags = HIWORD(wParam); | |
2649 | *hmenu = (WXHMENU)lParam; | |
2650 | } | |
c085e333 | 2651 | |
42e69d6b | 2652 | // --------------------------------------------------------------------------- |
77ffb593 | 2653 | // Main wxWidgets window proc and the window proc for wxWindow |
42e69d6b | 2654 | // --------------------------------------------------------------------------- |
2bda0e17 | 2655 | |
42e69d6b VZ |
2656 | // Hook for new window just as it's being created, when the window isn't yet |
2657 | // associated with the handle | |
b225f659 VZ |
2658 | static wxWindowMSW *gs_winBeingCreated = NULL; |
2659 | ||
2660 | // implementation of wxWindowCreationHook class: it just sets gs_winBeingCreated to the | |
2661 | // window being created and insures that it's always unset back later | |
2662 | wxWindowCreationHook::wxWindowCreationHook(wxWindowMSW *winBeingCreated) | |
2663 | { | |
2664 | gs_winBeingCreated = winBeingCreated; | |
2665 | } | |
2666 | ||
2667 | wxWindowCreationHook::~wxWindowCreationHook() | |
2668 | { | |
2669 | gs_winBeingCreated = NULL; | |
2670 | } | |
42e69d6b VZ |
2671 | |
2672 | // Main window proc | |
3135f4a7 | 2673 | LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
2bda0e17 | 2674 | { |
4b6a582b VZ |
2675 | // trace all messages: useful for the debugging but noticeably slows down |
2676 | // the code so don't do it by default | |
2677 | #if wxDEBUG_LEVEL >= 2 | |
ef787038 VZ |
2678 | // notice that we cast wParam and lParam to long to avoid mismatch with |
2679 | // format specifiers in 64 bit builds where they are both int64 quantities | |
2680 | // | |
2681 | // casting like this loses information, of course, but it shouldn't matter | |
2682 | // much for this diagnostic code and it keeps the code simple | |
5ec3853f | 2683 | wxLogTrace("winmsg", |
dca0f651 | 2684 | wxT("Processing %s(hWnd=%p, wParam=%08lx, lParam=%08lx)"), |
ef787038 | 2685 | wxGetMessageName(message), hWnd, (long)wParam, (long)lParam); |
4b6a582b | 2686 | #endif // wxDEBUG_LEVEL >= 2 |
2bda0e17 | 2687 | |
dca0f651 | 2688 | wxWindowMSW *wnd = wxFindWinFromHandle(hWnd); |
c085e333 | 2689 | |
42e69d6b | 2690 | // when we get the first message for the HWND we just created, we associate |
b225f659 VZ |
2691 | // it with wxWindow stored in gs_winBeingCreated |
2692 | if ( !wnd && gs_winBeingCreated ) | |
2d0a075d | 2693 | { |
b225f659 VZ |
2694 | wxAssociateWinWithHandle(hWnd, gs_winBeingCreated); |
2695 | wnd = gs_winBeingCreated; | |
2696 | gs_winBeingCreated = NULL; | |
42e69d6b | 2697 | wnd->SetHWND((WXHWND)hWnd); |
2d0a075d | 2698 | } |
2bda0e17 | 2699 | |
42e69d6b | 2700 | LRESULT rc; |
a23fd0e1 | 2701 | |
b46b1d59 | 2702 | if ( wnd && wxGUIEventLoop::AllowProcessing(wnd) ) |
b225f659 | 2703 | rc = wnd->MSWWindowProc(message, wParam, lParam); |
a23fd0e1 | 2704 | else |
b225f659 | 2705 | rc = ::DefWindowProc(hWnd, message, wParam, lParam); |
2bda0e17 | 2706 | |
42e69d6b | 2707 | return rc; |
f7bd2698 JS |
2708 | } |
2709 | ||
2e1cee23 VZ |
2710 | bool |
2711 | wxWindowMSW::MSWHandleMessage(WXLRESULT *result, | |
2712 | WXUINT message, | |
2713 | WXWPARAM wParam, | |
2714 | WXLPARAM lParam) | |
f7bd2698 | 2715 | { |
42e69d6b | 2716 | // did we process the message? |
08158721 | 2717 | bool processed = false; |
f7bd2698 | 2718 | |
42e69d6b VZ |
2719 | // the return value |
2720 | union | |
2bda0e17 | 2721 | { |
42e69d6b | 2722 | bool allow; |
c140b7e7 | 2723 | WXLRESULT result; |
42e69d6b VZ |
2724 | WXHBRUSH hBrush; |
2725 | } rc; | |
2bda0e17 | 2726 | |
42e69d6b VZ |
2727 | // for most messages we should return 0 when we do process the message |
2728 | rc.result = 0; | |
2bda0e17 | 2729 | |
42e69d6b | 2730 | switch ( message ) |
39136494 | 2731 | { |
42e69d6b VZ |
2732 | case WM_CREATE: |
2733 | { | |
2734 | bool mayCreate; | |
2735 | processed = HandleCreate((WXLPCREATESTRUCT)lParam, &mayCreate); | |
2736 | if ( processed ) | |
2737 | { | |
2738 | // return 0 to allow window creation | |
2739 | rc.result = mayCreate ? 0 : -1; | |
2740 | } | |
2741 | } | |
2742 | break; | |
47cbd6da | 2743 | |
42e69d6b | 2744 | case WM_DESTROY: |
08158721 | 2745 | // never set processed to true and *always* pass WM_DESTROY to |
ad4297f3 VZ |
2746 | // DefWindowProc() as Windows may do some internal cleanup when |
2747 | // processing it and failing to pass the message along may cause | |
2748 | // memory and resource leaks! | |
2749 | (void)HandleDestroy(); | |
42e69d6b VZ |
2750 | break; |
2751 | ||
9b6ae450 VZ |
2752 | case WM_SIZE: |
2753 | processed = HandleSize(LOWORD(lParam), HIWORD(lParam), wParam); | |
9b6ae450 VZ |
2754 | break; |
2755 | ||
42e69d6b | 2756 | case WM_MOVE: |
132cb640 | 2757 | processed = HandleMove(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)); |
42e69d6b | 2758 | break; |
47cbd6da | 2759 | |
7f0586ef | 2760 | #if !defined(__WXWINCE__) |
5706de1c | 2761 | case WM_MOVING: |
540b6b09 VZ |
2762 | { |
2763 | LPRECT pRect = (LPRECT)lParam; | |
2764 | wxRect rc; | |
2765 | rc.SetLeft(pRect->left); | |
2766 | rc.SetTop(pRect->top); | |
2767 | rc.SetRight(pRect->right); | |
2768 | rc.SetBottom(pRect->bottom); | |
2769 | processed = HandleMoving(rc); | |
2770 | if (processed) { | |
2771 | pRect->left = rc.GetLeft(); | |
2772 | pRect->top = rc.GetTop(); | |
2773 | pRect->right = rc.GetRight(); | |
2774 | pRect->bottom = rc.GetBottom(); | |
2775 | } | |
2776 | } | |
5706de1c | 2777 | break; |
77211166 | 2778 | |
aa767a45 JS |
2779 | case WM_ENTERSIZEMOVE: |
2780 | { | |
2781 | processed = HandleEnterSizeMove(); | |
2782 | } | |
2783 | break; | |
2784 | ||
2785 | case WM_EXITSIZEMOVE: | |
2786 | { | |
2787 | processed = HandleExitSizeMove(); | |
2788 | } | |
2789 | break; | |
77211166 | 2790 | |
5706de1c JS |
2791 | case WM_SIZING: |
2792 | { | |
2793 | LPRECT pRect = (LPRECT)lParam; | |
2794 | wxRect rc; | |
2795 | rc.SetLeft(pRect->left); | |
2796 | rc.SetTop(pRect->top); | |
2797 | rc.SetRight(pRect->right); | |
2798 | rc.SetBottom(pRect->bottom); | |
2799 | processed = HandleSizing(rc); | |
2800 | if (processed) { | |
2801 | pRect->left = rc.GetLeft(); | |
2802 | pRect->top = rc.GetTop(); | |
2803 | pRect->right = rc.GetRight(); | |
2804 | pRect->bottom = rc.GetBottom(); | |
2805 | } | |
2806 | } | |
2807 | break; | |
9b6ae450 | 2808 | #endif // !__WXWINCE__ |
5706de1c | 2809 | |
7f0586ef | 2810 | #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) |
1e6feb95 | 2811 | case WM_ACTIVATEAPP: |
afafd942 | 2812 | // This implicitly sends a wxEVT_ACTIVATE_APP event |
1e6feb95 | 2813 | wxTheApp->SetActive(wParam != 0, FindFocus()); |
42e69d6b | 2814 | break; |
8a46f9b1 | 2815 | #endif |
47cbd6da | 2816 | |
42e69d6b | 2817 | case WM_ACTIVATE: |
341c92a8 | 2818 | { |
42e69d6b VZ |
2819 | WXWORD state, minimized; |
2820 | WXHWND hwnd; | |
2821 | UnpackActivate(wParam, lParam, &state, &minimized, &hwnd); | |
2822 | ||
2823 | processed = HandleActivate(state, minimized != 0, (WXHWND)hwnd); | |
341c92a8 | 2824 | } |
42e69d6b | 2825 | break; |
341c92a8 | 2826 | |
42e69d6b | 2827 | case WM_SETFOCUS: |
dca0f651 | 2828 | processed = HandleSetFocus((WXHWND)wParam); |
42e69d6b | 2829 | break; |
47cbd6da | 2830 | |
42e69d6b | 2831 | case WM_KILLFOCUS: |
dca0f651 | 2832 | processed = HandleKillFocus((WXHWND)wParam); |
42e69d6b | 2833 | break; |
47cbd6da | 2834 | |
c3732409 | 2835 | case WM_PRINTCLIENT: |
1a784dfc | 2836 | processed = HandlePrintClient((WXHDC)wParam); |
07c19327 VZ |
2837 | break; |
2838 | ||
c3732409 VZ |
2839 | case WM_PAINT: |
2840 | if ( wParam ) | |
5c6c3176 | 2841 | { |
5c6c3176 | 2842 | wxPaintDCEx dc((wxWindow *)this, (WXHDC)wParam); |
07c19327 | 2843 | |
5c6c3176 RD |
2844 | processed = HandlePaint(); |
2845 | } | |
c3732409 VZ |
2846 | else // no DC given |
2847 | { | |
2848 | processed = HandlePaint(); | |
2849 | } | |
5c6c3176 RD |
2850 | break; |
2851 | ||
42e69d6b | 2852 | case WM_CLOSE: |
9fd9e47a JS |
2853 | #ifdef __WXUNIVERSAL__ |
2854 | // Universal uses its own wxFrame/wxDialog, so we don't receive | |
2855 | // close events unless we have this. | |
2856 | Close(); | |
c3732409 VZ |
2857 | #endif // __WXUNIVERSAL__ |
2858 | ||
42e69d6b VZ |
2859 | // don't let the DefWindowProc() destroy our window - we'll do it |
2860 | // ourselves in ~wxWindow | |
08158721 | 2861 | processed = true; |
42e69d6b VZ |
2862 | rc.result = TRUE; |
2863 | break; | |
47cbd6da | 2864 | |
42e69d6b VZ |
2865 | case WM_SHOWWINDOW: |
2866 | processed = HandleShow(wParam != 0, (int)lParam); | |
2867 | break; | |
3a19e16d | 2868 | |
42e69d6b | 2869 | case WM_MOUSEMOVE: |
132cb640 VZ |
2870 | processed = HandleMouseMove(GET_X_LPARAM(lParam), |
2871 | GET_Y_LPARAM(lParam), | |
2872 | wParam); | |
2873 | break; | |
0d0512bd | 2874 | |
4e5c6c33 | 2875 | #ifdef HAVE_TRACKMOUSEEVENT |
e5297b7f | 2876 | case WM_MOUSELEAVE: |
aafb9978 VZ |
2877 | // filter out excess WM_MOUSELEAVE events sent after PopupMenu() |
2878 | // (on XP at least) | |
4e5c6c33 | 2879 | if ( m_mouseInWindow ) |
e5297b7f | 2880 | { |
4e5c6c33 | 2881 | GenerateMouseLeave(); |
e5297b7f | 2882 | } |
4e5c6c33 VZ |
2883 | |
2884 | // always pass processed back as false, this allows the window | |
2885 | // manager to process the message too. This is needed to | |
2886 | // ensure windows XP themes work properly as the mouse moves | |
2887 | // over widgets like buttons. So don't set processed to true here. | |
51e4e266 | 2888 | break; |
4e5c6c33 | 2889 | #endif // HAVE_TRACKMOUSEEVENT |
35bbb0c6 | 2890 | |
d2c52078 RD |
2891 | #if wxUSE_MOUSEWHEEL |
2892 | case WM_MOUSEWHEEL: | |
b9e52a19 | 2893 | processed = HandleMouseWheel(wxMOUSE_WHEEL_VERTICAL, wParam, lParam); |
d2c52078 | 2894 | break; |
b9e52a19 VZ |
2895 | |
2896 | case WM_MOUSEHWHEEL: | |
2897 | processed = HandleMouseWheel(wxMOUSE_WHEEL_HORIZONTAL, wParam, lParam); | |
2898 | break; | |
2899 | #endif // wxUSE_MOUSEWHEEL | |
d2c52078 | 2900 | |
42e69d6b VZ |
2901 | case WM_LBUTTONDOWN: |
2902 | case WM_LBUTTONUP: | |
2903 | case WM_LBUTTONDBLCLK: | |
2904 | case WM_RBUTTONDOWN: | |
2905 | case WM_RBUTTONUP: | |
2906 | case WM_RBUTTONDBLCLK: | |
2907 | case WM_MBUTTONDOWN: | |
2908 | case WM_MBUTTONUP: | |
2909 | case WM_MBUTTONDBLCLK: | |
2f68482e | 2910 | #ifdef wxHAS_XBUTTON |
01101e2d VZ |
2911 | case WM_XBUTTONDOWN: |
2912 | case WM_XBUTTONUP: | |
2913 | case WM_XBUTTONDBLCLK: | |
2f68482e | 2914 | #endif // wxHAS_XBUTTON |
dfafa702 | 2915 | { |
98363307 | 2916 | #ifdef __WXMICROWIN__ |
cd4453e5 VZ |
2917 | // MicroWindows seems to ignore the fact that a window is |
2918 | // disabled. So catch mouse events and throw them away if | |
2919 | // necessary. | |
d0a3d109 | 2920 | wxWindowMSW* win = this; |
dfafa702 | 2921 | for ( ;; ) |
d0a3d109 VZ |
2922 | { |
2923 | if (!win->IsEnabled()) | |
2924 | { | |
08158721 | 2925 | processed = true; |
d0a3d109 VZ |
2926 | break; |
2927 | } | |
dfafa702 | 2928 | |
d0a3d109 | 2929 | win = win->GetParent(); |
dfafa702 | 2930 | if ( !win || win->IsTopLevel() ) |
d0a3d109 VZ |
2931 | break; |
2932 | } | |
dfafa702 | 2933 | |
03e0b2b1 VZ |
2934 | if ( processed ) |
2935 | break; | |
2936 | ||
dfafa702 | 2937 | #endif // __WXMICROWIN__ |
03e0b2b1 VZ |
2938 | int x = GET_X_LPARAM(lParam), |
2939 | y = GET_Y_LPARAM(lParam); | |
dfafa702 | 2940 | |
42b1fb63 | 2941 | #ifdef __WXWINCE__ |
03e0b2b1 | 2942 | // redirect the event to a static control if necessary by |
42b1fb63 VZ |
2943 | // finding one under mouse because under CE the static controls |
2944 | // don't generate mouse events (even with SS_NOTIFY) | |
03e0b2b1 VZ |
2945 | wxWindowMSW *win; |
2946 | if ( GetCapture() == this ) | |
2947 | { | |
2948 | // but don't do it if the mouse is captured by this window | |
2949 | // because then it should really get this event itself | |
2950 | win = this; | |
d0a3d109 | 2951 | } |
03e0b2b1 VZ |
2952 | else |
2953 | { | |
2954 | win = FindWindowForMouseEvent(this, &x, &y); | |
2b5f62a0 VZ |
2955 | |
2956 | // this should never happen | |
2957 | wxCHECK_MSG( win, 0, | |
9a83f860 | 2958 | wxT("FindWindowForMouseEvent() returned NULL") ); |
9f011847 | 2959 | } |
7d4f65e3 JS |
2960 | #ifdef __POCKETPC__ |
2961 | if (IsContextMenuEnabled() && message == WM_LBUTTONDOWN) | |
2962 | { | |
2963 | SHRGINFO shrgi = {0}; | |
faa94f3e | 2964 | |
7d4f65e3 JS |
2965 | shrgi.cbSize = sizeof(SHRGINFO); |
2966 | shrgi.hwndClient = (HWND) GetHWND(); | |
2967 | shrgi.ptDown.x = x; | |
2968 | shrgi.ptDown.y = y; | |
faa94f3e | 2969 | |
7d4f65e3 JS |
2970 | shrgi.dwFlags = SHRG_RETURNCMD; |
2971 | // shrgi.dwFlags = SHRG_NOTIFYPARENT; | |
faa94f3e | 2972 | |
7d4f65e3 JS |
2973 | if (GN_CONTEXTMENU == ::SHRecognizeGesture(&shrgi)) |
2974 | { | |
2975 | wxPoint pt(x, y); | |
2976 | pt = ClientToScreen(pt); | |
faa94f3e | 2977 | |
7d4f65e3 | 2978 | wxContextMenuEvent evtCtx(wxEVT_CONTEXT_MENU, GetId(), pt); |
faa94f3e | 2979 | |
7d4f65e3 | 2980 | evtCtx.SetEventObject(this); |
937013e0 | 2981 | if (HandleWindowEvent(evtCtx)) |
f350d4b2 | 2982 | { |
7d4f65e3 | 2983 | processed = true; |
f350d4b2 JS |
2984 | return true; |
2985 | } | |
7d4f65e3 JS |
2986 | } |
2987 | } | |
2988 | #endif | |
2989 | ||
42b1fb63 VZ |
2990 | #else // !__WXWINCE__ |
2991 | wxWindowMSW *win = this; | |
2992 | #endif // __WXWINCE__/!__WXWINCE__ | |
9f011847 VZ |
2993 | |
2994 | processed = win->HandleMouseEvent(message, x, y, wParam); | |
2b5f62a0 | 2995 | |
9f011847 VZ |
2996 | // if the app didn't eat the event, handle it in the default |
2997 | // way, that is by giving this window the focus | |
2998 | if ( !processed ) | |
2999 | { | |
2b5f62a0 VZ |
3000 | // for the standard classes their WndProc sets the focus to |
3001 | // them anyhow and doing it from here results in some weird | |
9f011847 | 3002 | // problems, so don't do it for them (unnecessary anyhow) |
2b5f62a0 VZ |
3003 | if ( !win->IsOfStandardClass() ) |
3004 | { | |
edc09871 | 3005 | if ( message == WM_LBUTTONDOWN && win->IsFocusable() ) |
2b5f62a0 VZ |
3006 | win->SetFocus(); |
3007 | } | |
03e0b2b1 | 3008 | } |
98363307 | 3009 | } |
dfafa702 | 3010 | break; |
d0a3d109 | 3011 | |
cd4453e5 | 3012 | #ifdef MM_JOY1MOVE |
42e69d6b VZ |
3013 | case MM_JOY1MOVE: |
3014 | case MM_JOY2MOVE: | |
3015 | case MM_JOY1ZMOVE: | |
3016 | case MM_JOY2ZMOVE: | |
3017 | case MM_JOY1BUTTONDOWN: | |
3018 | case MM_JOY2BUTTONDOWN: | |
3019 | case MM_JOY1BUTTONUP: | |
3020 | case MM_JOY2BUTTONUP: | |
132cb640 | 3021 | processed = HandleJoystickEvent(message, |
f9aa5235 VZ |
3022 | LOWORD(lParam), |
3023 | HIWORD(lParam), | |
132cb640 | 3024 | wParam); |
42e69d6b | 3025 | break; |
cd4453e5 | 3026 | #endif // __WXMICROWIN__ |
47cbd6da | 3027 | |
42e69d6b VZ |
3028 | case WM_COMMAND: |
3029 | { | |
3030 | WORD id, cmd; | |
3031 | WXHWND hwnd; | |
3032 | UnpackCommand(wParam, lParam, &id, &hwnd, &cmd); | |
47cbd6da | 3033 | |
42e69d6b VZ |
3034 | processed = HandleCommand(id, cmd, hwnd); |
3035 | } | |
3036 | break; | |
7d532b0c | 3037 | |
42e69d6b VZ |
3038 | case WM_NOTIFY: |
3039 | processed = HandleNotify((int)wParam, lParam, &rc.result); | |
3040 | break; | |
2bda0e17 | 3041 | |
27005f3a VZ |
3042 | // we only need to reply to WM_NOTIFYFORMAT manually when using MSLU, |
3043 | // otherwise DefWindowProc() does it perfectly fine for us, but MSLU | |
3044 | // apparently doesn't always behave properly and needs some help | |
3045 | #if wxUSE_UNICODE_MSLU && defined(NF_QUERY) | |
3046 | case WM_NOTIFYFORMAT: | |
3047 | if ( lParam == NF_QUERY ) | |
3048 | { | |
3049 | processed = true; | |
3050 | rc.result = NFR_UNICODE; | |
3051 | } | |
3052 | break; | |
3053 | #endif // wxUSE_UNICODE_MSLU | |
3054 | ||
08158721 | 3055 | // for these messages we must return true if process the message |
cd4453e5 | 3056 | #ifdef WM_DRAWITEM |
42e69d6b | 3057 | case WM_DRAWITEM: |
dca0f651 VZ |
3058 | processed = MSWOnDrawItem(wParam, (WXDRAWITEMSTRUCT *)lParam); |
3059 | if ( processed ) | |
3060 | rc.result = TRUE; | |
3061 | break; | |
57a7b7c1 | 3062 | |
dca0f651 VZ |
3063 | case WM_MEASUREITEM: |
3064 | processed = MSWOnMeasureItem(wParam, (WXMEASUREITEMSTRUCT *)lParam); | |
3065 | if ( processed ) | |
3066 | rc.result = TRUE; | |
42e69d6b | 3067 | break; |
cd4453e5 VZ |
3068 | #endif // defined(WM_DRAWITEM) |
3069 | ||
9bf84618 | 3070 | case WM_GETDLGCODE: |
ff7282e1 | 3071 | if ( !IsOfStandardClass() || HasFlag(wxWANTS_CHARS) ) |
9bf84618 | 3072 | { |
5a403e3f VZ |
3073 | // we always want to get the char events |
3074 | rc.result = DLGC_WANTCHARS; | |
3075 | ||
ff7282e1 | 3076 | if ( HasFlag(wxWANTS_CHARS) ) |
5a403e3f VZ |
3077 | { |
3078 | // in fact, we want everything | |
3079 | rc.result |= DLGC_WANTARROWS | | |
3080 | DLGC_WANTTAB | | |
3081 | DLGC_WANTALLKEYS; | |
3082 | } | |
3083 | ||
08158721 | 3084 | processed = true; |
9bf84618 | 3085 | } |
101f488c | 3086 | //else: get the dlg code from the DefWindowProc() |
9bf84618 VZ |
3087 | break; |
3088 | ||
4004f41e | 3089 | case WM_SYSKEYDOWN: |
42e69d6b | 3090 | case WM_KEYDOWN: |
b6885972 | 3091 | // Generate the key down event in any case. |
9c7df356 VZ |
3092 | m_lastKeydownProcessed = HandleKeyDown((WORD) wParam, lParam); |
3093 | if ( m_lastKeydownProcessed ) | |
2d0a075d | 3094 | { |
b6885972 VZ |
3095 | // If it was processed by an event handler, we stop here, |
3096 | // notably we intentionally don't generate char event then. | |
08158721 | 3097 | processed = true; |
2d0a075d | 3098 | } |
b6885972 | 3099 | else // key down event not handled |
42e69d6b | 3100 | { |
b6885972 VZ |
3101 | // Examine the event to decide whether we need to generate a |
3102 | // char event for it ourselves or let Windows do it. Window | |
3103 | // mostly only does it for the keys which produce printable | |
3104 | // characters (although there are exceptions, e.g. VK_ESCAPE or | |
3105 | // VK_BACK (but not VK_DELETE)) while we do it for all keys | |
3106 | // except the modifier ones (the wisdom of this is debatable | |
3107 | // but by now this decision is enshrined forever due to | |
3108 | // backwards compatibility). | |
2b5f62a0 VZ |
3109 | switch ( wParam ) |
3110 | { | |
b6885972 | 3111 | // No wxEVT_CHAR events are generated for these keys at all. |
2b5f62a0 VZ |
3112 | case VK_SHIFT: |
3113 | case VK_CONTROL: | |
3114 | case VK_MENU: | |
3115 | case VK_CAPITAL: | |
3116 | case VK_NUMLOCK: | |
3117 | case VK_SCROLL: | |
2bda0e17 | 3118 | |
b6885972 VZ |
3119 | // Windows will send us WM_CHAR for these ones so we'll |
3120 | // generate wxEVT_CHAR for them later when we get it. | |
2b5f62a0 VZ |
3121 | case VK_ESCAPE: |
3122 | case VK_SPACE: | |
3123 | case VK_RETURN: | |
3124 | case VK_BACK: | |
3125 | case VK_TAB: | |
3126 | case VK_ADD: | |
3127 | case VK_SUBTRACT: | |
3128 | case VK_MULTIPLY: | |
3129 | case VK_DIVIDE: | |
7fd86b21 | 3130 | case VK_DECIMAL: |
3f2174bb VZ |
3131 | case VK_NUMPAD0: |
3132 | case VK_NUMPAD1: | |
3133 | case VK_NUMPAD2: | |
3134 | case VK_NUMPAD3: | |
3135 | case VK_NUMPAD4: | |
3136 | case VK_NUMPAD5: | |
3137 | case VK_NUMPAD6: | |
3138 | case VK_NUMPAD7: | |
3139 | case VK_NUMPAD8: | |
3140 | case VK_NUMPAD9: | |
2b5f62a0 VZ |
3141 | case VK_OEM_1: |
3142 | case VK_OEM_2: | |
3143 | case VK_OEM_3: | |
3144 | case VK_OEM_4: | |
3145 | case VK_OEM_5: | |
3146 | case VK_OEM_6: | |
3147 | case VK_OEM_7: | |
fc4070fc | 3148 | case VK_OEM_102: |
2b5f62a0 VZ |
3149 | case VK_OEM_PLUS: |
3150 | case VK_OEM_COMMA: | |
3151 | case VK_OEM_MINUS: | |
3152 | case VK_OEM_PERIOD: | |
2b5f62a0 | 3153 | break; |
2bda0e17 | 3154 | |
42e69d6b | 3155 | #ifdef VK_APPS |
2b5f62a0 VZ |
3156 | // special case of VK_APPS: treat it the same as right mouse |
3157 | // click because both usually pop up a context menu | |
3158 | case VK_APPS: | |
ae177b45 | 3159 | processed = HandleMouseEvent(WM_RBUTTONDOWN, -1, -1, 0); |
2b5f62a0 | 3160 | break; |
42e69d6b | 3161 | #endif // VK_APPS |
2bda0e17 | 3162 | |
2b5f62a0 | 3163 | default: |
b6885972 VZ |
3164 | if ( (wParam >= '0' && wParam <= '9') || |
3165 | (wParam >= 'A' && wParam <= 'Z') ) | |
3166 | { | |
3167 | // We'll get WM_CHAR for those later too. | |
3168 | break; | |
3169 | } | |
3170 | ||
3171 | // But for the rest we won't get WM_CHAR later so we do | |
3172 | // need to generate the event right now. | |
3173 | wxKeyEvent event(wxEVT_CHAR); | |
3174 | InitAnyKeyEvent(event, wParam, lParam); | |
3175 | ||
3176 | // Set the "extended" bit in lParam because we want to | |
3177 | // generate CHAR events with WXK_HOME and not | |
3178 | // WXK_NUMPAD_HOME even if the "Home" key on numpad was | |
3179 | // pressed. | |
0c03f52d | 3180 | event.m_keyCode = wxMSWKeyboard::VKToWX |
b6885972 VZ |
3181 | ( |
3182 | wParam, | |
3183 | lParam | (KF_EXTENDED << 16) | |
3184 | ); | |
033428a3 VZ |
3185 | |
3186 | // Don't produce events without any valid character | |
3187 | // code (even if this shouldn't normally happen...). | |
3188 | if ( event.m_keyCode != WXK_NONE ) | |
3189 | processed = HandleWindowEvent(event); | |
2b5f62a0 | 3190 | } |
42e69d6b | 3191 | } |
2b5f62a0 | 3192 | if (message == WM_SYSKEYDOWN) // Let Windows still handle the SYSKEYs |
08158721 | 3193 | processed = false; |
42e69d6b | 3194 | break; |
2bda0e17 | 3195 | |
4004f41e | 3196 | case WM_SYSKEYUP: |
42e69d6b | 3197 | case WM_KEYUP: |
4aff28fc VZ |
3198 | #ifdef VK_APPS |
3199 | // special case of VK_APPS: treat it the same as right mouse button | |
3200 | if ( wParam == VK_APPS ) | |
3201 | { | |
ae177b45 | 3202 | processed = HandleMouseEvent(WM_RBUTTONUP, -1, -1, 0); |
4aff28fc VZ |
3203 | } |
3204 | else | |
3205 | #endif // VK_APPS | |
3206 | { | |
3207 | processed = HandleKeyUp((WORD) wParam, lParam); | |
3208 | } | |
42e69d6b | 3209 | break; |
debe6624 | 3210 | |
170cbe33 | 3211 | case WM_SYSCHAR: |
42e69d6b | 3212 | case WM_CHAR: // Always an ASCII character |
d9f14e16 RD |
3213 | if ( m_lastKeydownProcessed ) |
3214 | { | |
3215 | // The key was handled in the EVT_KEY_DOWN and handling | |
3216 | // a key in an EVT_KEY_DOWN handler is meant, by | |
3217 | // design, to prevent EVT_CHARs from happening | |
08158721 DS |
3218 | m_lastKeydownProcessed = false; |
3219 | processed = true; | |
d9f14e16 RD |
3220 | } |
3221 | else | |
7de5bdf4 | 3222 | { |
b6885972 | 3223 | processed = HandleChar((WORD)wParam, lParam); |
7de5bdf4 | 3224 | } |
42e69d6b | 3225 | break; |
2bda0e17 | 3226 | |
982bc2e4 VZ |
3227 | case WM_IME_STARTCOMPOSITION: |
3228 | // IME popup needs Escape as it should undo the changes in its | |
3229 | // entry window instead of e.g. closing the dialog for which the | |
3230 | // IME is used (and losing all the changes in the IME window). | |
3231 | gs_modalEntryWindowCount++; | |
3232 | break; | |
3233 | ||
3234 | case WM_IME_ENDCOMPOSITION: | |
3235 | gs_modalEntryWindowCount--; | |
3236 | break; | |
3237 | ||
5048c832 JS |
3238 | #if wxUSE_HOTKEY |
3239 | case WM_HOTKEY: | |
3240 | processed = HandleHotKey((WORD)wParam, lParam); | |
3241 | break; | |
540b6b09 | 3242 | #endif // wxUSE_HOTKEY |
5048c832 | 3243 | |
b65f16da VS |
3244 | case WM_CUT: |
3245 | case WM_COPY: | |
3246 | case WM_PASTE: | |
3247 | processed = HandleClipboardEvent(message); | |
3248 | break; | |
3249 | ||
42e69d6b VZ |
3250 | case WM_HSCROLL: |
3251 | case WM_VSCROLL: | |
a23fd0e1 | 3252 | { |
42e69d6b VZ |
3253 | WXWORD code, pos; |
3254 | WXHWND hwnd; | |
3255 | UnpackScroll(wParam, lParam, &code, &pos, &hwnd); | |
2bda0e17 | 3256 | |
42e69d6b VZ |
3257 | processed = MSWOnScroll(message == WM_HSCROLL ? wxHORIZONTAL |
3258 | : wxVERTICAL, | |
3259 | code, pos, hwnd); | |
a23fd0e1 | 3260 | } |
42e69d6b | 3261 | break; |
a23fd0e1 | 3262 | |
42e69d6b | 3263 | // CTLCOLOR messages are sent by children to query the parent for their |
01c500af | 3264 | // colors |
04ef50df | 3265 | #ifndef __WXMICROWIN__ |
42e69d6b VZ |
3266 | case WM_CTLCOLORMSGBOX: |
3267 | case WM_CTLCOLOREDIT: | |
3268 | case WM_CTLCOLORLISTBOX: | |
3269 | case WM_CTLCOLORBTN: | |
3270 | case WM_CTLCOLORDLG: | |
3271 | case WM_CTLCOLORSCROLLBAR: | |
3272 | case WM_CTLCOLORSTATIC: | |
a23fd0e1 | 3273 | { |
42e69d6b VZ |
3274 | WXHDC hdc; |
3275 | WXHWND hwnd; | |
01c500af | 3276 | UnpackCtlColor(wParam, lParam, &hdc, &hwnd); |
42e69d6b | 3277 | |
48fa6bd3 | 3278 | processed = HandleCtlColor(&rc.hBrush, (WXHDC)hdc, (WXHWND)hwnd); |
a23fd0e1 | 3279 | } |
42e69d6b | 3280 | break; |
cd4453e5 | 3281 | #endif // !__WXMICROWIN__ |
debe6624 | 3282 | |
42e69d6b | 3283 | case WM_SYSCOLORCHANGE: |
90c1530a | 3284 | // the return value for this message is ignored |
42e69d6b VZ |
3285 | processed = HandleSysColorChange(); |
3286 | break; | |
2bda0e17 | 3287 | |
7f0586ef | 3288 | #if !defined(__WXWINCE__) |
574c939e KB |
3289 | case WM_DISPLAYCHANGE: |
3290 | processed = HandleDisplayChange(); | |
3291 | break; | |
7f0586ef | 3292 | #endif |
574c939e | 3293 | |
42e69d6b | 3294 | case WM_PALETTECHANGED: |
dca0f651 | 3295 | processed = HandlePaletteChanged((WXHWND)wParam); |
42e69d6b | 3296 | break; |
2bda0e17 | 3297 | |
a5e84126 | 3298 | case WM_CAPTURECHANGED: |
dca0f651 | 3299 | processed = HandleCaptureChanged((WXHWND)lParam); |
a5e84126 JS |
3300 | break; |
3301 | ||
3c96418b JG |
3302 | case WM_SETTINGCHANGE: |
3303 | processed = HandleSettingChange(wParam, lParam); | |
3304 | break; | |
3305 | ||
42e69d6b VZ |
3306 | case WM_QUERYNEWPALETTE: |
3307 | processed = HandleQueryNewPalette(); | |
3308 | break; | |
2bda0e17 | 3309 | |
42e69d6b | 3310 | case WM_ERASEBKGND: |
bec9bf3e VZ |
3311 | { |
3312 | #ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK | |
3313 | // check if an override was configured for this window | |
3314 | EraseBgHooks::const_iterator it = gs_eraseBgHooks.find(this); | |
3315 | if ( it != gs_eraseBgHooks.end() ) | |
3316 | processed = it->second->MSWEraseBgHook((WXHDC)wParam); | |
3317 | else | |
3318 | #endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK | |
3319 | processed = HandleEraseBkgnd((WXHDC)wParam); | |
3320 | } | |
3321 | ||
42e69d6b VZ |
3322 | if ( processed ) |
3323 | { | |
3324 | // we processed the message, i.e. erased the background | |
3325 | rc.result = TRUE; | |
3326 | } | |
3327 | break; | |
debe6624 | 3328 | |
7f0586ef | 3329 | #if !defined(__WXWINCE__) |
42e69d6b VZ |
3330 | case WM_DROPFILES: |
3331 | processed = HandleDropFiles(wParam); | |
3332 | break; | |
7f0586ef | 3333 | #endif |
2bda0e17 | 3334 | |
42e69d6b | 3335 | case WM_INITDIALOG: |
dca0f651 | 3336 | processed = HandleInitDialog((WXHWND)wParam); |
a23fd0e1 | 3337 | |
42e69d6b VZ |
3338 | if ( processed ) |
3339 | { | |
3340 | // we never set focus from here | |
3341 | rc.result = FALSE; | |
3342 | } | |
3343 | break; | |
a23fd0e1 | 3344 | |
7f0586ef | 3345 | #if !defined(__WXWINCE__) |
42e69d6b VZ |
3346 | case WM_QUERYENDSESSION: |
3347 | processed = HandleQueryEndSession(lParam, &rc.allow); | |
3348 | break; | |
2bda0e17 | 3349 | |
42e69d6b VZ |
3350 | case WM_ENDSESSION: |
3351 | processed = HandleEndSession(wParam != 0, lParam); | |
3352 | break; | |
2bda0e17 | 3353 | |
42e69d6b | 3354 | case WM_GETMINMAXINFO: |
25889d3c | 3355 | processed = HandleGetMinMaxInfo((MINMAXINFO*)lParam); |
42e69d6b | 3356 | break; |
7f0586ef | 3357 | #endif |
debe6624 | 3358 | |
42e69d6b | 3359 | case WM_SETCURSOR: |
dca0f651 | 3360 | processed = HandleSetCursor((WXHWND)wParam, |
42e69d6b VZ |
3361 | LOWORD(lParam), // hit test |
3362 | HIWORD(lParam)); // mouse msg | |
3363 | ||
3364 | if ( processed ) | |
3365 | { | |
3366 | // returning TRUE stops the DefWindowProc() from further | |
3367 | // processing this message - exactly what we need because we've | |
3368 | // just set the cursor. | |
3369 | rc.result = TRUE; | |
3370 | } | |
3371 | break; | |
4cdc2c13 | 3372 | |
ed5317e5 JS |
3373 | #if wxUSE_ACCESSIBILITY |
3374 | case WM_GETOBJECT: | |
3375 | { | |
3376 | //WPARAM dwFlags = (WPARAM) (DWORD) wParam; | |
3377 | LPARAM dwObjId = (LPARAM) (DWORD) lParam; | |
3378 | ||
66b9ec3d | 3379 | if (dwObjId == (LPARAM)OBJID_CLIENT && GetOrCreateAccessible()) |
ed5317e5 JS |
3380 | { |
3381 | return LresultFromObject(IID_IAccessible, wParam, (IUnknown*) GetAccessible()->GetIAccessible()); | |
3382 | } | |
3383 | break; | |
3384 | } | |
3385 | #endif | |
3386 | ||
e39af974 | 3387 | #if defined(WM_HELP) |
b96340e6 | 3388 | case WM_HELP: |
b96340e6 | 3389 | { |
a9c11b71 VZ |
3390 | // by default, WM_HELP is propagated by DefWindowProc() upwards |
3391 | // to the window parent but as we do it ourselves already | |
3392 | // (wxHelpEvent is derived from wxCommandEvent), we don't want | |
3393 | // to get the other events if we process this message at all | |
3394 | processed = true; | |
3395 | ||
3396 | // WM_HELP doesn't use lParam under CE | |
7f0586ef | 3397 | #ifndef __WXWINCE__ |
4cdc2c13 | 3398 | HELPINFO* info = (HELPINFO*) lParam; |
a9c11b71 | 3399 | if ( info->iContextType == HELPINFO_WINDOW ) |
b96340e6 | 3400 | { |
a9c11b71 VZ |
3401 | #endif // !__WXWINCE__ |
3402 | wxHelpEvent helpEvent | |
3403 | ( | |
3404 | wxEVT_HELP, | |
3405 | GetId(), | |
7f0586ef | 3406 | #ifdef __WXWINCE__ |
2d4ec362 | 3407 | wxGetMousePosition() // what else? |
7f0586ef | 3408 | #else |
a9c11b71 | 3409 | wxPoint(info->MousePos.x, info->MousePos.y) |
7f0586ef | 3410 | #endif |
a9c11b71 | 3411 | ); |
b96340e6 | 3412 | |
a9c11b71 | 3413 | helpEvent.SetEventObject(this); |
937013e0 | 3414 | HandleWindowEvent(helpEvent); |
7f0586ef | 3415 | #ifndef __WXWINCE__ |
b96340e6 | 3416 | } |
a9c11b71 | 3417 | else if ( info->iContextType == HELPINFO_MENUITEM ) |
4cdc2c13 VZ |
3418 | { |
3419 | wxHelpEvent helpEvent(wxEVT_HELP, info->iCtrlId); | |
3420 | helpEvent.SetEventObject(this); | |
937013e0 | 3421 | HandleWindowEvent(helpEvent); |
69231000 | 3422 | |
4cdc2c13 | 3423 | } |
a9c11b71 VZ |
3424 | else // unknown help event? |
3425 | { | |
3426 | processed = false; | |
3427 | } | |
3428 | #endif // !__WXWINCE__ | |
b96340e6 | 3429 | } |
b96340e6 | 3430 | break; |
a9c11b71 | 3431 | #endif // WM_HELP |
4cdc2c13 | 3432 | |
7f0586ef | 3433 | #if !defined(__WXWINCE__) |
69231000 | 3434 | case WM_CONTEXTMENU: |
4cdc2c13 VZ |
3435 | { |
3436 | // we don't convert from screen to client coordinates as | |
3437 | // the event may be handled by a parent window | |
3438 | wxPoint pt(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)); | |
3439 | ||
3440 | wxContextMenuEvent evtCtx(wxEVT_CONTEXT_MENU, GetId(), pt); | |
2d1715aa VZ |
3441 | |
3442 | // we could have got an event from our child, reflect it back | |
3443 | // to it if this is the case | |
d85c53a5 | 3444 | wxWindowMSW *win = NULL; |
dca0f651 VZ |
3445 | WXHWND hWnd = (WXHWND)wParam; |
3446 | if ( hWnd != m_hWnd ) | |
2d1715aa | 3447 | { |
dca0f651 | 3448 | win = FindItemByHWND(hWnd); |
2d1715aa VZ |
3449 | } |
3450 | ||
3451 | if ( !win ) | |
3452 | win = this; | |
3453 | ||
3454 | evtCtx.SetEventObject(win); | |
937013e0 | 3455 | processed = win->HandleWindowEvent(evtCtx); |
4cdc2c13 | 3456 | } |
69231000 | 3457 | break; |
7f0586ef | 3458 | #endif |
b74cce40 | 3459 | |
53a118d6 | 3460 | #if wxUSE_MENUS |
b74cce40 VZ |
3461 | case WM_MENUCHAR: |
3462 | // we're only interested in our own menus, not MF_SYSMENU | |
3463 | if ( HIWORD(wParam) == MF_POPUP ) | |
3464 | { | |
3465 | // handle menu chars for ownerdrawn menu items | |
3466 | int i = HandleMenuChar(toupper(LOWORD(wParam)), lParam); | |
3467 | if ( i != wxNOT_FOUND ) | |
3468 | { | |
3469 | rc.result = MAKELRESULT(i, MNC_EXECUTE); | |
08158721 | 3470 | processed = true; |
b74cce40 VZ |
3471 | } |
3472 | } | |
3473 | break; | |
53a118d6 | 3474 | #endif // wxUSE_MENUS |
355debca | 3475 | |
dbc74bcc | 3476 | #ifndef __WXWINCE__ |
355debca VZ |
3477 | case WM_POWERBROADCAST: |
3478 | { | |
3479 | bool vetoed; | |
3480 | processed = HandlePower(wParam, lParam, &vetoed); | |
3481 | rc.result = processed && vetoed ? BROADCAST_QUERY_DENY : TRUE; | |
3482 | } | |
3483 | break; | |
dbc74bcc | 3484 | #endif // __WXWINCE__ |
5acec112 | 3485 | |
a047aff2 JS |
3486 | #if wxUSE_UXTHEME |
3487 | // If we want the default themed border then we need to draw it ourselves | |
3488 | case WM_NCCALCSIZE: | |
3489 | { | |
3490 | wxUxThemeEngine* theme = wxUxThemeEngine::GetIfActive(); | |
dc797d8e JS |
3491 | const wxBorder border = TranslateBorder(GetBorder()); |
3492 | if (theme && border == wxBORDER_THEME) | |
a047aff2 JS |
3493 | { |
3494 | // first ask the widget to calculate the border size | |
3495 | rc.result = MSWDefWindowProc(message, wParam, lParam); | |
3496 | processed = true; | |
3497 | ||
e822d1bd VZ |
3498 | // now alter the client size making room for drawing a |
3499 | // themed border | |
dca0f651 | 3500 | RECT *rect; |
140d93c0 | 3501 | NCCALCSIZE_PARAMS *csparam = NULL; |
dca0f651 | 3502 | if ( wParam ) |
a047aff2 | 3503 | { |
140d93c0 | 3504 | csparam = (NCCALCSIZE_PARAMS *)lParam; |
dca0f651 | 3505 | rect = &csparam->rgrc[0]; |
a047aff2 JS |
3506 | } |
3507 | else | |
3508 | { | |
dca0f651 | 3509 | rect = (RECT *)lParam; |
a047aff2 | 3510 | } |
dca0f651 | 3511 | |
fe545198 | 3512 | wxUxThemeHandle hTheme((const wxWindow *)this, L"EDIT"); |
a047aff2 | 3513 | RECT rcClient = { 0, 0, 0, 0 }; |
d935b421 | 3514 | wxClientDC dc((wxWindow *)this); |
888dde65 | 3515 | wxMSWDCImpl *impl = (wxMSWDCImpl*) dc.GetImpl(); |
a047aff2 | 3516 | |
dca0f651 VZ |
3517 | if ( theme->GetThemeBackgroundContentRect |
3518 | ( | |
3519 | hTheme, | |
3520 | GetHdcOf(*impl), | |
3521 | EP_EDITTEXT, | |
3522 | ETS_NORMAL, | |
3523 | rect, | |
3524 | &rcClient) == S_OK ) | |
a047aff2 JS |
3525 | { |
3526 | InflateRect(&rcClient, -1, -1); | |
140d93c0 JS |
3527 | if (wParam) |
3528 | csparam->rgrc[0] = rcClient; | |
3529 | else | |
3530 | *((RECT*)lParam) = rcClient; | |
3531 | ||
3532 | // WVR_REDRAW triggers a bug whereby child windows are moved up and left, | |
3533 | // so don't use. | |
3534 | // rc.result = WVR_REDRAW; | |
a047aff2 JS |
3535 | } |
3536 | } | |
3537 | } | |
3538 | break; | |
3539 | ||
3540 | case WM_NCPAINT: | |
3541 | { | |
3542 | wxUxThemeEngine* theme = wxUxThemeEngine::GetIfActive(); | |
dc797d8e JS |
3543 | const wxBorder border = TranslateBorder(GetBorder()); |
3544 | if (theme && border == wxBORDER_THEME) | |
a047aff2 JS |
3545 | { |
3546 | // first ask the widget to paint its non-client area, such as scrollbars, etc. | |
3547 | rc.result = MSWDefWindowProc(message, wParam, lParam); | |
3548 | processed = true; | |
3549 | ||
fe545198 | 3550 | wxUxThemeHandle hTheme((const wxWindow *)this, L"EDIT"); |
d935b421 | 3551 | wxWindowDC dc((wxWindow *)this); |
888dde65 | 3552 | wxMSWDCImpl *impl = (wxMSWDCImpl*) dc.GetImpl(); |
a047aff2 JS |
3553 | |
3554 | // Clip the DC so that you only draw on the non-client area | |
3555 | RECT rcBorder; | |
3556 | wxCopyRectToRECT(GetSize(), rcBorder); | |
3557 | ||
3558 | RECT rcClient; | |
3559 | theme->GetThemeBackgroundContentRect( | |
888dde65 | 3560 | hTheme, GetHdcOf(*impl), EP_EDITTEXT, ETS_NORMAL, &rcBorder, &rcClient); |
a047aff2 JS |
3561 | InflateRect(&rcClient, -1, -1); |
3562 | ||
888dde65 | 3563 | ::ExcludeClipRect(GetHdcOf(*impl), rcClient.left, rcClient.top, |
a047aff2 JS |
3564 | rcClient.right, rcClient.bottom); |
3565 | ||
3566 | // Make sure the background is in a proper state | |
3567 | if (theme->IsThemeBackgroundPartiallyTransparent(hTheme, EP_EDITTEXT, ETS_NORMAL)) | |
3568 | { | |
888dde65 | 3569 | theme->DrawThemeParentBackground(GetHwnd(), GetHdcOf(*impl), &rcBorder); |
a047aff2 JS |
3570 | } |
3571 | ||
3572 | // Draw the border | |
3573 | int nState; | |
3574 | if ( !IsEnabled() ) | |
3575 | nState = ETS_DISABLED; | |
3576 | // should we check this? | |
3577 | //else if ( ::GetWindowLong(GetHwnd(), GWL_STYLE) & ES_READONLY) | |
3578 | // nState = ETS_READONLY; | |
3579 | else | |
3580 | nState = ETS_NORMAL; | |
888dde65 | 3581 | theme->DrawThemeBackground(hTheme, GetHdcOf(*impl), EP_EDITTEXT, nState, &rcBorder, NULL); |
a047aff2 JS |
3582 | } |
3583 | } | |
3584 | break; | |
3585 | ||
3586 | #endif // wxUSE_UXTHEME | |
3587 | ||
5acec112 VZ |
3588 | default: |
3589 | // try a custom message handler | |
3590 | const MSWMessageHandlers::const_iterator | |
3591 | i = gs_messageHandlers.find(message); | |
3592 | if ( i != gs_messageHandlers.end() ) | |
3593 | { | |
3594 | processed = (*i->second)(this, message, wParam, lParam); | |
3595 | } | |
a23fd0e1 | 3596 | } |
2d0a075d | 3597 | |
42e69d6b | 3598 | if ( !processed ) |
2e1cee23 VZ |
3599 | return false; |
3600 | ||
3601 | *result = rc.result; | |
3602 | ||
3603 | return true; | |
3604 | } | |
3605 | ||
3606 | WXLRESULT wxWindowMSW::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam) | |
3607 | { | |
3608 | WXLRESULT result; | |
3609 | if ( !MSWHandleMessage(&result, message, wParam, lParam) ) | |
2d0a075d | 3610 | { |
4b6a582b | 3611 | #if wxDEBUG_LEVEL >= 2 |
5ec3853f | 3612 | wxLogTrace("winmsg", wxT("Forwarding %s to DefWindowProc."), |
42e69d6b | 3613 | wxGetMessageName(message)); |
4b6a582b | 3614 | #endif // wxDEBUG_LEVEL >= 2 |
2e1cee23 | 3615 | result = MSWDefWindowProc(message, wParam, lParam); |
a23fd0e1 | 3616 | } |
2bda0e17 | 3617 | |
2e1cee23 | 3618 | return result; |
2bda0e17 KB |
3619 | } |
3620 | ||
b225f659 VZ |
3621 | // ---------------------------------------------------------------------------- |
3622 | // wxWindow <-> HWND map | |
3623 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 3624 | |
dca0f651 | 3625 | wxWindow *wxFindWinFromHandle(HWND hwnd) |
4ce81a75 | 3626 | { |
dca0f651 VZ |
3627 | WindowHandles::const_iterator i = gs_windowHandles.find(hwnd); |
3628 | return i == gs_windowHandles.end() ? NULL : i->second; | |
42e69d6b | 3629 | } |
4ce81a75 | 3630 | |
dca0f651 | 3631 | void wxAssociateWinWithHandle(HWND hwnd, wxWindowMSW *win) |
42e69d6b | 3632 | { |
dca0f651 | 3633 | // adding NULL hwnd is (first) surely a result of an error and |
42e69d6b | 3634 | // (secondly) breaks menu command processing |
dca0f651 VZ |
3635 | wxCHECK_RET( hwnd != (HWND)NULL, |
3636 | wxT("attempt to add a NULL hwnd to window list ignored") ); | |
4ce81a75 | 3637 | |
4b6a582b | 3638 | #if wxDEBUG_LEVEL |
dca0f651 VZ |
3639 | WindowHandles::const_iterator i = gs_windowHandles.find(hwnd); |
3640 | if ( i != gs_windowHandles.end() ) | |
c7527e3f | 3641 | { |
dca0f651 VZ |
3642 | if ( i->second != win ) |
3643 | { | |
4b6a582b VZ |
3644 | wxFAIL_MSG( |
3645 | wxString::Format( | |
3646 | wxT("HWND %p already associated with another window (%s)"), | |
3647 | hwnd, win->GetClassInfo()->GetClassName() | |
3648 | ) | |
3649 | ); | |
dca0f651 VZ |
3650 | } |
3651 | //else: this actually happens currently because we associate the window | |
3652 | // with its HWND during creation (if we create it) and also when | |
3653 | // SubclassWin() is called later, this is ok | |
c7527e3f | 3654 | } |
4b6a582b | 3655 | #endif // wxDEBUG_LEVEL |
dca0f651 | 3656 | |
936bb82e | 3657 | gs_windowHandles[hwnd] = (wxWindow *)win; |
42e69d6b | 3658 | } |
4ce81a75 | 3659 | |
1e6feb95 | 3660 | void wxRemoveHandleAssociation(wxWindowMSW *win) |
42e69d6b | 3661 | { |
dca0f651 | 3662 | gs_windowHandles.erase(GetHwndOf(win)); |
4ce81a75 JS |
3663 | } |
3664 | ||
b225f659 VZ |
3665 | // ---------------------------------------------------------------------------- |
3666 | // various MSW speciic class dependent functions | |
3667 | // ---------------------------------------------------------------------------- | |
3668 | ||
42e69d6b VZ |
3669 | // Default destroyer - override if you destroy it in some other way |
3670 | // (e.g. with MDI child windows) | |
1e6feb95 | 3671 | void wxWindowMSW::MSWDestroyWindow() |
4ce81a75 | 3672 | { |
42e69d6b | 3673 | } |
4ce81a75 | 3674 | |
fa5f4858 | 3675 | void wxWindowMSW::MSWGetCreateWindowCoords(const wxPoint& pos, |
b225f659 VZ |
3676 | const wxSize& size, |
3677 | int& x, int& y, | |
3678 | int& w, int& h) const | |
2bda0e17 | 3679 | { |
fa5f4858 VZ |
3680 | // CW_USEDEFAULT can't be used for child windows so just position them at |
3681 | // the origin by default | |
3682 | x = pos.x == wxDefaultCoord ? 0 : pos.x; | |
3683 | y = pos.y == wxDefaultCoord ? 0 : pos.y; | |
2a77c8c4 | 3684 | |
fa5f4858 | 3685 | AdjustForParentClientOrigin(x, y); |
c085e333 | 3686 | |
fa5f4858 VZ |
3687 | // We don't have any clearly good choice for the size by default neither |
3688 | // but we must use something non-zero. | |
3689 | w = WidthDefault(size.x); | |
3690 | h = HeightDefault(size.y); | |
2bda0e17 | 3691 | |
b889a3a2 VZ |
3692 | /* |
3693 | NB: there used to be some code here which set the initial size of the | |
3694 | window to the client size of the parent if no explicit size was | |
77ffb593 | 3695 | specified. This was wrong because wxWidgets programs often assume |
b889a3a2 VZ |
3696 | that they get a WM_SIZE (EVT_SIZE) upon creation, however this broke |
3697 | it. To see why, you should understand that Windows sends WM_SIZE from | |
3698 | inside ::CreateWindow() anyhow. However, ::CreateWindow() is called | |
3699 | from some base class ctor and so this WM_SIZE is not processed in the | |
3700 | real class' OnSize() (because it's not fully constructed yet and the | |
3701 | event goes to some base class OnSize() instead). So the WM_SIZE we | |
3702 | rely on is the one sent when the parent frame resizes its children | |
3703 | but here is the problem: if the child already has just the right | |
77ffb593 | 3704 | size, nothing will happen as both wxWidgets and Windows check for |
b889a3a2 VZ |
3705 | this and ignore any attempts to change the window size to the size it |
3706 | already has - so no WM_SIZE would be sent. | |
3707 | */ | |
b225f659 VZ |
3708 | } |
3709 | ||
9dfef5ac VZ |
3710 | WXHWND wxWindowMSW::MSWGetParent() const |
3711 | { | |
d285d708 | 3712 | return m_parent ? m_parent->GetHWND() : WXHWND(NULL); |
9dfef5ac VZ |
3713 | } |
3714 | ||
b225f659 VZ |
3715 | bool wxWindowMSW::MSWCreate(const wxChar *wclass, |
3716 | const wxChar *title, | |
3717 | const wxPoint& pos, | |
3718 | const wxSize& size, | |
3719 | WXDWORD style, | |
3720 | WXDWORD extendedStyle) | |
3721 | { | |
23035521 VZ |
3722 | // check a common bug in the user code: if the window is created with a |
3723 | // non-default ctor and Create() is called too, we'd create 2 HWND for a | |
3724 | // single wxWindow object and this results in all sorts of trouble, | |
3725 | // especially for wxTLWs | |
3726 | wxCHECK_MSG( !m_hWnd, true, "window can't be recreated" ); | |
3727 | ||
d9698bd4 VZ |
3728 | // this can happen if this function is called using the return value of |
3729 | // wxApp::GetRegisteredClassName() which failed | |
3730 | wxCHECK_MSG( wclass, false, "failed to register window class?" ); | |
3731 | ||
3732 | ||
b225f659 VZ |
3733 | // choose the position/size for the new window |
3734 | int x, y, w, h; | |
3735 | (void)MSWGetCreateWindowCoords(pos, size, x, y, w, h); | |
3736 | ||
b225f659 VZ |
3737 | // controlId is menu handle for the top level windows, so set it to 0 |
3738 | // unless we're creating a child window | |
f586fde3 | 3739 | int controlId = style & WS_CHILD ? GetId() : 0; |
2bda0e17 | 3740 | |
b225f659 VZ |
3741 | // for each class "Foo" we have we also have "FooNR" ("no repaint") class |
3742 | // which is the same but without CS_[HV]REDRAW class styles so using it | |
3743 | // ensures that the window is not fully repainted on each resize | |
3744 | wxString className(wclass); | |
e441e1f4 | 3745 | if ( !HasFlag(wxFULL_REPAINT_ON_RESIZE) ) |
b225f659 | 3746 | { |
d9698bd4 | 3747 | className += wxApp::GetNoRedrawClassSuffix(); |
a23fd0e1 | 3748 | } |
c085e333 | 3749 | |
b225f659 VZ |
3750 | // do create the window |
3751 | wxWindowCreationHook hook(this); | |
b3daa5a3 | 3752 | |
5e67eb97 VZ |
3753 | m_hWnd = (WXHWND)::CreateWindowEx |
3754 | ( | |
3755 | extendedStyle, | |
017dc06b VZ |
3756 | className.t_str(), |
3757 | title ? title : m_windowName.t_str(), | |
5e67eb97 VZ |
3758 | style, |
3759 | x, y, w, h, | |
3760 | (HWND)MSWGetParent(), | |
dca0f651 | 3761 | (HMENU)wxUIntToPtr(controlId), |
5e67eb97 VZ |
3762 | wxGetInstance(), |
3763 | NULL // no extra data | |
3764 | ); | |
b225f659 VZ |
3765 | |
3766 | if ( !m_hWnd ) | |
c7527e3f | 3767 | { |
5e67eb97 | 3768 | wxLogSysError(_("Can't create window of class %s"), className.c_str()); |
b225f659 | 3769 | |
08158721 | 3770 | return false; |
c7527e3f | 3771 | } |
b3daa5a3 | 3772 | |
b225f659 | 3773 | SubclassWin(m_hWnd); |
c085e333 | 3774 | |
08158721 | 3775 | return true; |
2bda0e17 KB |
3776 | } |
3777 | ||
42e69d6b VZ |
3778 | // =========================================================================== |
3779 | // MSW message handlers | |
3780 | // =========================================================================== | |
3781 | ||
3782 | // --------------------------------------------------------------------------- | |
3783 | // WM_NOTIFY | |
3784 | // --------------------------------------------------------------------------- | |
3785 | ||
1e6feb95 | 3786 | bool wxWindowMSW::HandleNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result) |
2bda0e17 | 3787 | { |
04ef50df | 3788 | #ifndef __WXMICROWIN__ |
42e69d6b VZ |
3789 | LPNMHDR hdr = (LPNMHDR)lParam; |
3790 | HWND hWnd = hdr->hwndFrom; | |
dca0f651 | 3791 | wxWindow *win = wxFindWinFromHandle(hWnd); |
42e69d6b | 3792 | |
2b15b970 | 3793 | // if the control is one of our windows, let it handle the message itself |
42e69d6b | 3794 | if ( win ) |
564b2609 | 3795 | { |
42e69d6b | 3796 | return win->MSWOnNotify(idCtrl, lParam, result); |
564b2609 | 3797 | } |
2bda0e17 | 3798 | |
2b15b970 VZ |
3799 | // VZ: why did we do it? normally this is unnecessary and, besides, it |
3800 | // breaks the message processing for the toolbars because the tooltip | |
3801 | // notifications were being forwarded to the toolbar child controls | |
3802 | // (if it had any) before being passed to the toolbar itself, so in my | |
3803 | // example the tooltip for the combobox was always shown instead of the | |
3804 | // correct button tooltips | |
3805 | #if 0 | |
42e69d6b | 3806 | // try all our children |
222ed1d6 | 3807 | wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); |
42e69d6b | 3808 | while ( node ) |
564b2609 | 3809 | { |
42e69d6b VZ |
3810 | wxWindow *child = node->GetData(); |
3811 | if ( child->MSWOnNotify(idCtrl, lParam, result) ) | |
3812 | { | |
08158721 | 3813 | return true; |
42e69d6b | 3814 | } |
2d0a075d | 3815 | |
42e69d6b VZ |
3816 | node = node->GetNext(); |
3817 | } | |
2b15b970 | 3818 | #endif // 0 |
2d0a075d | 3819 | |
2b15b970 | 3820 | // by default, handle it ourselves |
42e69d6b | 3821 | return MSWOnNotify(idCtrl, lParam, result); |
cd4453e5 | 3822 | #else // __WXMICROWIN__ |
08158721 | 3823 | return false; |
04ef50df | 3824 | #endif |
42e69d6b | 3825 | } |
2d0a075d | 3826 | |
bd9cd534 VZ |
3827 | #if wxUSE_TOOLTIPS |
3828 | ||
3829 | bool wxWindowMSW::HandleTooltipNotify(WXUINT code, | |
3830 | WXLPARAM lParam, | |
3831 | const wxString& ttip) | |
3832 | { | |
3833 | // I don't know why it happens, but the versions of comctl32.dll starting | |
3834 | // from 4.70 sometimes send TTN_NEEDTEXTW even to ANSI programs (normally, | |
3835 | // this message is supposed to be sent to Unicode programs only) -- hence | |
3836 | // we need to handle it as well, otherwise no tooltips will be shown in | |
3837 | // this case | |
7f0586ef | 3838 | #ifndef __WXWINCE__ |
118208ac VZ |
3839 | if ( !(code == (WXUINT) TTN_NEEDTEXTA || code == (WXUINT) TTN_NEEDTEXTW) |
3840 | || ttip.empty() ) | |
bd9cd534 VZ |
3841 | { |
3842 | // not a tooltip message or no tooltip to show anyhow | |
08158721 | 3843 | return false; |
bd9cd534 | 3844 | } |
7f0586ef | 3845 | #endif |
bd9cd534 VZ |
3846 | |
3847 | LPTOOLTIPTEXT ttText = (LPTOOLTIPTEXT)lParam; | |
3848 | ||
118208ac VZ |
3849 | // We don't want to use the szText buffer because it has a limit of 80 |
3850 | // bytes and this is not enough, especially for Unicode build where it | |
3851 | // limits the tooltip string length to only 40 characters | |
3852 | // | |
3853 | // The best would be, of course, to not impose any length limitations at | |
3854 | // all but then the buffer would have to be dynamic and someone would have | |
3855 | // to free it and we don't have the tooltip owner object here any more, so | |
3856 | // for now use our own static buffer with a higher fixed max length. | |
3857 | // | |
3858 | // Note that using a static buffer should not be a problem as only a single | |
3859 | // tooltip can be shown at the same time anyhow. | |
2b5f62a0 | 3860 | #if !wxUSE_UNICODE |
118208ac | 3861 | if ( code == (WXUINT) TTN_NEEDTEXTW ) |
bd9cd534 | 3862 | { |
118208ac VZ |
3863 | // We need to convert tooltip from multi byte to Unicode on the fly. |
3864 | static wchar_t buf[513]; | |
25c46fda | 3865 | |
118208ac VZ |
3866 | // Truncate tooltip length if needed as otherwise we might not have |
3867 | // enough space for it in the buffer and MultiByteToWideChar() would | |
3868 | // return an error | |
fec9cc08 | 3869 | size_t tipLength = wxMin(ttip.length(), WXSIZEOF(buf) - 1); |
7afebc8c JS |
3870 | |
3871 | // Convert to WideChar without adding the NULL character. The NULL | |
25c46fda | 3872 | // character is added afterwards (this is more efficient). |
118208ac VZ |
3873 | int len = ::MultiByteToWideChar |
3874 | ( | |
3875 | CP_ACP, | |
3876 | 0, // no flags | |
017dc06b | 3877 | ttip.t_str(), |
118208ac VZ |
3878 | tipLength, |
3879 | buf, | |
3880 | WXSIZEOF(buf) - 1 | |
3881 | ); | |
3882 | ||
3883 | if ( !len ) | |
3884 | { | |
9a83f860 | 3885 | wxLogLastError(wxT("MultiByteToWideChar()")); |
118208ac | 3886 | } |
7afebc8c | 3887 | |
118208ac VZ |
3888 | buf[len] = L'\0'; |
3889 | ttText->lpszText = (LPSTR) buf; | |
3890 | } | |
3891 | else // TTN_NEEDTEXTA | |
3892 | #endif // !wxUSE_UNICODE | |
3893 | { | |
3894 | // we get here if we got TTN_NEEDTEXTA (only happens in ANSI build) or | |
3895 | // if we got TTN_NEEDTEXTW in Unicode build: in this case we just have | |
3896 | // to copy the string we have into the buffer | |
3897 | static wxChar buf[513]; | |
e408bf52 | 3898 | wxStrlcpy(buf, ttip.c_str(), WXSIZEOF(buf)); |
118208ac | 3899 | ttText->lpszText = buf; |
bd9cd534 VZ |
3900 | } |
3901 | ||
08158721 | 3902 | return true; |
bd9cd534 VZ |
3903 | } |
3904 | ||
3905 | #endif // wxUSE_TOOLTIPS | |
3906 | ||
1e6feb95 | 3907 | bool wxWindowMSW::MSWOnNotify(int WXUNUSED(idCtrl), |
bd9cd534 VZ |
3908 | WXLPARAM lParam, |
3909 | WXLPARAM* WXUNUSED(result)) | |
42e69d6b VZ |
3910 | { |
3911 | #if wxUSE_TOOLTIPS | |
bd9cd534 | 3912 | if ( m_tooltip ) |
42e69d6b | 3913 | { |
bd9cd534 VZ |
3914 | NMHDR* hdr = (NMHDR *)lParam; |
3915 | if ( HandleTooltipNotify(hdr->code, lParam, m_tooltip->GetTip())) | |
3916 | { | |
3917 | // processed | |
08158721 | 3918 | return true; |
bd9cd534 | 3919 | } |
42e69d6b | 3920 | } |
f5dd1cf1 WS |
3921 | #else |
3922 | wxUnusedVar(lParam); | |
42e69d6b VZ |
3923 | #endif // wxUSE_TOOLTIPS |
3924 | ||
08158721 | 3925 | return false; |
42e69d6b | 3926 | } |
2b15b970 | 3927 | |
42e69d6b VZ |
3928 | // --------------------------------------------------------------------------- |
3929 | // end session messages | |
3930 | // --------------------------------------------------------------------------- | |
2d0a075d | 3931 | |
1e6feb95 | 3932 | bool wxWindowMSW::HandleQueryEndSession(long logOff, bool *mayEnd) |
42e69d6b | 3933 | { |
040e5f77 | 3934 | #ifdef ENDSESSION_LOGOFF |
abb74e0f | 3935 | wxCloseEvent event(wxEVT_QUERY_END_SESSION, wxID_ANY); |
42e69d6b | 3936 | event.SetEventObject(wxTheApp); |
08158721 | 3937 | event.SetCanVeto(true); |
a17e237f | 3938 | event.SetLoggingOff(logOff == (long)ENDSESSION_LOGOFF); |
2d0a075d | 3939 | |
42e69d6b VZ |
3940 | bool rc = wxTheApp->ProcessEvent(event); |
3941 | ||
3942 | if ( rc ) | |
3943 | { | |
3944 | // we may end only if the app didn't veto session closing (double | |
3945 | // negation...) | |
3946 | *mayEnd = !event.GetVeto(); | |
2d0a075d JS |
3947 | } |
3948 | ||
42e69d6b | 3949 | return rc; |
7f0586ef | 3950 | #else |
040e5f77 VZ |
3951 | wxUnusedVar(logOff); |
3952 | wxUnusedVar(mayEnd); | |
08158721 | 3953 | return false; |
7f0586ef | 3954 | #endif |
2bda0e17 KB |
3955 | } |
3956 | ||
1e6feb95 | 3957 | bool wxWindowMSW::HandleEndSession(bool endSession, long logOff) |
2bda0e17 | 3958 | { |
040e5f77 | 3959 | #ifdef ENDSESSION_LOGOFF |
42e69d6b VZ |
3960 | // do nothing if the session isn't ending |
3961 | if ( !endSession ) | |
08158721 | 3962 | return false; |
a23fd0e1 | 3963 | |
519dc37f VZ |
3964 | // only send once |
3965 | if ( (this != wxTheApp->GetTopWindow()) ) | |
08158721 | 3966 | return false; |
519dc37f | 3967 | |
abb74e0f | 3968 | wxCloseEvent event(wxEVT_END_SESSION, wxID_ANY); |
42e69d6b | 3969 | event.SetEventObject(wxTheApp); |
08158721 | 3970 | event.SetCanVeto(false); |
f801d19a | 3971 | event.SetLoggingOff((logOff & ENDSESSION_LOGOFF) != 0); |
519dc37f VZ |
3972 | |
3973 | return wxTheApp->ProcessEvent(event); | |
7f0586ef | 3974 | #else |
040e5f77 VZ |
3975 | wxUnusedVar(endSession); |
3976 | wxUnusedVar(logOff); | |
08158721 | 3977 | return false; |
7f0586ef | 3978 | #endif |
2bda0e17 KB |
3979 | } |
3980 | ||
42e69d6b VZ |
3981 | // --------------------------------------------------------------------------- |
3982 | // window creation/destruction | |
3983 | // --------------------------------------------------------------------------- | |
3984 | ||
0c0d1521 WS |
3985 | bool wxWindowMSW::HandleCreate(WXLPCREATESTRUCT WXUNUSED_IN_WINCE(cs), |
3986 | bool *mayCreate) | |
61179e28 | 3987 | { |
ee471817 VZ |
3988 | // VZ: why is this commented out for WinCE? If it doesn't support |
3989 | // WS_EX_CONTROLPARENT at all it should be somehow handled globally, | |
3990 | // not with multiple #ifdef's! | |
7f0586ef | 3991 | #ifndef __WXWINCE__ |
61179e28 | 3992 | if ( ((CREATESTRUCT *)cs)->dwExStyle & WS_EX_CONTROLPARENT ) |
ee471817 VZ |
3993 | EnsureParentHasControlParentStyle(GetParent()); |
3994 | #endif // !__WXWINCE__ | |
61179e28 | 3995 | |
08158721 | 3996 | *mayCreate = true; |
42e69d6b | 3997 | |
08158721 | 3998 | return true; |
2bda0e17 KB |
3999 | } |
4000 | ||
1e6feb95 | 4001 | bool wxWindowMSW::HandleDestroy() |
2bda0e17 | 4002 | { |
42e69d6b VZ |
4003 | // delete our drop target if we've got one |
4004 | #if wxUSE_DRAG_AND_DROP | |
4005 | if ( m_dropTarget != NULL ) | |
2d0a075d | 4006 | { |
42e69d6b VZ |
4007 | m_dropTarget->Revoke(m_hWnd); |
4008 | ||
5276b0a5 | 4009 | wxDELETE(m_dropTarget); |
2d0a075d | 4010 | } |
42e69d6b | 4011 | #endif // wxUSE_DRAG_AND_DROP |
2bda0e17 | 4012 | |
42e69d6b | 4013 | // WM_DESTROY handled |
08158721 | 4014 | return true; |
2bda0e17 KB |
4015 | } |
4016 | ||
42e69d6b VZ |
4017 | // --------------------------------------------------------------------------- |
4018 | // activation/focus | |
4019 | // --------------------------------------------------------------------------- | |
4020 | ||
1e6feb95 | 4021 | bool wxWindowMSW::HandleActivate(int state, |
42e69d6b VZ |
4022 | bool WXUNUSED(minimized), |
4023 | WXHWND WXUNUSED(activate)) | |
2bda0e17 | 4024 | { |
42e69d6b VZ |
4025 | wxActivateEvent event(wxEVT_ACTIVATE, |
4026 | (state == WA_ACTIVE) || (state == WA_CLICKACTIVE), | |
4027 | m_windowId); | |
4028 | event.SetEventObject(this); | |
4029 | ||
937013e0 | 4030 | return HandleWindowEvent(event); |
42e69d6b VZ |
4031 | } |
4032 | ||
1e6feb95 | 4033 | bool wxWindowMSW::HandleSetFocus(WXHWND hwnd) |
42e69d6b | 4034 | { |
c7aee865 RD |
4035 | // Strangly enough, some controls get set focus events when they are being |
4036 | // deleted, even if they already had focus before. | |
4037 | if ( m_isBeingDeleted ) | |
4038 | { | |
4039 | return false; | |
4040 | } | |
35bbb0c6 | 4041 | |
456bc6d9 VZ |
4042 | // notify the parent keeping track of focus for the kbd navigation |
4043 | // purposes that we got it | |
e72aa7f5 | 4044 | wxChildFocusEvent eventFocus((wxWindow *)this); |
937013e0 | 4045 | (void)HandleWindowEvent(eventFocus); |
456bc6d9 | 4046 | |
789295bf | 4047 | #if wxUSE_CARET |
42e69d6b | 4048 | // Deal with caret |
789295bf | 4049 | if ( m_caret ) |
2d0a075d | 4050 | { |
789295bf | 4051 | m_caret->OnSetFocus(); |
2bda0e17 | 4052 | } |
789295bf | 4053 | #endif // wxUSE_CARET |
42e69d6b | 4054 | |
42e69d6b VZ |
4055 | wxFocusEvent event(wxEVT_SET_FOCUS, m_windowId); |
4056 | event.SetEventObject(this); | |
4057 | ||
1e6feb95 VZ |
4058 | // wxFindWinFromHandle() may return NULL, it is ok |
4059 | event.SetWindow(wxFindWinFromHandle(hwnd)); | |
4060 | ||
937013e0 | 4061 | return HandleWindowEvent(event); |
2bda0e17 KB |
4062 | } |
4063 | ||
1e6feb95 | 4064 | bool wxWindowMSW::HandleKillFocus(WXHWND hwnd) |
2bda0e17 | 4065 | { |
789295bf | 4066 | #if wxUSE_CARET |
42e69d6b | 4067 | // Deal with caret |
789295bf | 4068 | if ( m_caret ) |
2d0a075d | 4069 | { |
789295bf | 4070 | m_caret->OnKillFocus(); |
2bda0e17 | 4071 | } |
789295bf | 4072 | #endif // wxUSE_CARET |
42e69d6b | 4073 | |
2913e597 RD |
4074 | // Don't send the event when in the process of being deleted. This can |
4075 | // only cause problems if the event handler tries to access the object. | |
4076 | if ( m_isBeingDeleted ) | |
4077 | { | |
08158721 | 4078 | return false; |
2913e597 RD |
4079 | } |
4080 | ||
42e69d6b VZ |
4081 | wxFocusEvent event(wxEVT_KILL_FOCUS, m_windowId); |
4082 | event.SetEventObject(this); | |
4083 | ||
1e6feb95 VZ |
4084 | // wxFindWinFromHandle() may return NULL, it is ok |
4085 | event.SetWindow(wxFindWinFromHandle(hwnd)); | |
4086 | ||
937013e0 | 4087 | return HandleWindowEvent(event); |
2bda0e17 KB |
4088 | } |
4089 | ||
faa49bfd WS |
4090 | // --------------------------------------------------------------------------- |
4091 | // labels | |
4092 | // --------------------------------------------------------------------------- | |
4093 | ||
4094 | void wxWindowMSW::SetLabel( const wxString& label) | |
4095 | { | |
4096 | SetWindowText(GetHwnd(), label.c_str()); | |
4097 | } | |
4098 | ||
4099 | wxString wxWindowMSW::GetLabel() const | |
4100 | { | |
4101 | return wxGetWindowText(GetHWND()); | |
4102 | } | |
4103 | ||
42e69d6b VZ |
4104 | // --------------------------------------------------------------------------- |
4105 | // miscellaneous | |
4106 | // --------------------------------------------------------------------------- | |
4107 | ||
1e6feb95 | 4108 | bool wxWindowMSW::HandleShow(bool show, int WXUNUSED(status)) |
2bda0e17 | 4109 | { |
42e69d6b | 4110 | wxShowEvent event(GetId(), show); |
687706f5 | 4111 | event.SetEventObject(this); |
42e69d6b | 4112 | |
937013e0 | 4113 | return HandleWindowEvent(event); |
2bda0e17 KB |
4114 | } |
4115 | ||
1e6feb95 | 4116 | bool wxWindowMSW::HandleInitDialog(WXHWND WXUNUSED(hWndFocus)) |
2bda0e17 | 4117 | { |
42e69d6b | 4118 | wxInitDialogEvent event(GetId()); |
687706f5 | 4119 | event.SetEventObject(this); |
42e69d6b | 4120 | |
937013e0 | 4121 | return HandleWindowEvent(event); |
2bda0e17 KB |
4122 | } |
4123 | ||
1e6feb95 | 4124 | bool wxWindowMSW::HandleDropFiles(WXWPARAM wParam) |
2bda0e17 | 4125 | { |
7f0586ef | 4126 | #if defined (__WXMICROWIN__) || defined(__WXWINCE__) |
35bbb0c6 | 4127 | wxUnusedVar(wParam); |
08158721 | 4128 | return false; |
4ce1efe1 | 4129 | #else // __WXMICROWIN__ |
42e69d6b | 4130 | HDROP hFilesInfo = (HDROP) wParam; |
42e69d6b VZ |
4131 | |
4132 | // Get the total number of files dropped | |
c3c39620 | 4133 | UINT gwFilesDropped = ::DragQueryFile |
f6bcfd97 BP |
4134 | ( |
4135 | (HDROP)hFilesInfo, | |
4136 | (UINT)-1, | |
4137 | (LPTSTR)0, | |
4138 | (UINT)0 | |
4139 | ); | |
42e69d6b VZ |
4140 | |
4141 | wxString *files = new wxString[gwFilesDropped]; | |
c3c39620 | 4142 | for ( UINT wIndex = 0; wIndex < gwFilesDropped; wIndex++ ) |
2d0a075d | 4143 | { |
c3c39620 VZ |
4144 | // first get the needed buffer length (+1 for terminating NUL) |
4145 | size_t len = ::DragQueryFile(hFilesInfo, wIndex, NULL, 0) + 1; | |
4146 | ||
4147 | // and now get the file name | |
4148 | ::DragQueryFile(hFilesInfo, wIndex, | |
de564874 | 4149 | wxStringBuffer(files[wIndex], len), len); |
2d0a075d | 4150 | } |
2bda0e17 | 4151 | |
42e69d6b | 4152 | wxDropFilesEvent event(wxEVT_DROP_FILES, gwFilesDropped, files); |
687706f5 | 4153 | event.SetEventObject(this); |
c3c39620 VZ |
4154 | |
4155 | POINT dropPoint; | |
4156 | DragQueryPoint(hFilesInfo, (LPPOINT) &dropPoint); | |
b3dc8a3e VZ |
4157 | event.m_pos.x = dropPoint.x; |
4158 | event.m_pos.y = dropPoint.y; | |
42e69d6b | 4159 | |
fe8f9ad7 VZ |
4160 | DragFinish(hFilesInfo); |
4161 | ||
937013e0 | 4162 | return HandleWindowEvent(event); |
04ef50df | 4163 | #endif |
2bda0e17 KB |
4164 | } |
4165 | ||
cc972ac6 | 4166 | |
1e6feb95 VZ |
4167 | bool wxWindowMSW::HandleSetCursor(WXHWND WXUNUSED(hWnd), |
4168 | short nHitTest, | |
4169 | int WXUNUSED(mouseMsg)) | |
2bda0e17 | 4170 | { |
04ef50df | 4171 | #ifndef __WXMICROWIN__ |
bfbd6dc1 | 4172 | // the logic is as follows: |
46753a7c VZ |
4173 | // 0. if we're busy, set the busy cursor (even for non client elements) |
4174 | // 1. don't set custom cursor for non client area of enabled windows | |
4175 | // 2. ask user EVT_SET_CURSOR handler for the cursor | |
4176 | // 3. if still no cursor but we're in a TLW, set the global cursor | |
42e69d6b | 4177 | |
46753a7c VZ |
4178 | HCURSOR hcursor = 0; |
4179 | if ( wxIsBusy() ) | |
43b5058d | 4180 | { |
46753a7c | 4181 | hcursor = wxGetCurrentBusyCursor(); |
43b5058d | 4182 | } |
46753a7c VZ |
4183 | else // not busy |
4184 | { | |
4185 | if ( nHitTest != HTCLIENT ) | |
4186 | return false; | |
43b5058d | 4187 | |
46753a7c VZ |
4188 | // first ask the user code - it may wish to set the cursor in some very |
4189 | // specific way (for example, depending on the current position) | |
4190 | POINT pt; | |
d6c37f5b | 4191 | wxGetCursorPosMSW(&pt); |
43b5058d | 4192 | |
46753a7c VZ |
4193 | int x = pt.x, |
4194 | y = pt.y; | |
4195 | ScreenToClient(&x, &y); | |
4196 | wxSetCursorEvent event(x, y); | |
564af280 RD |
4197 | event.SetId(GetId()); |
4198 | event.SetEventObject(this); | |
42e69d6b | 4199 | |
937013e0 | 4200 | bool processedEvtSetCursor = HandleWindowEvent(event); |
46753a7c | 4201 | if ( processedEvtSetCursor && event.HasCursor() ) |
bfbd6dc1 | 4202 | { |
46753a7c | 4203 | hcursor = GetHcursorOf(event.GetCursor()); |
bfbd6dc1 | 4204 | } |
43b5058d | 4205 | |
46753a7c | 4206 | if ( !hcursor ) |
bfbd6dc1 | 4207 | { |
46753a7c VZ |
4208 | // the test for processedEvtSetCursor is here to prevent using |
4209 | // m_cursor if the user code caught EVT_SET_CURSOR() and returned | |
4210 | // nothing from it - this is a way to say that our cursor shouldn't | |
4211 | // be used for this point | |
a1b806b9 | 4212 | if ( !processedEvtSetCursor && m_cursor.IsOk() ) |
42e69d6b | 4213 | { |
46753a7c | 4214 | hcursor = GetHcursorOf(m_cursor); |
43b5058d | 4215 | } |
46753a7c VZ |
4216 | |
4217 | if ( !hcursor && !GetParent() ) | |
43b5058d VZ |
4218 | { |
4219 | const wxCursor *cursor = wxGetGlobalCursor(); | |
a1b806b9 | 4220 | if ( cursor && cursor->IsOk() ) |
43b5058d VZ |
4221 | { |
4222 | hcursor = GetHcursorOf(*cursor); | |
4223 | } | |
42e69d6b VZ |
4224 | } |
4225 | } | |
4226 | } | |
4227 | ||
46753a7c | 4228 | |
bfbd6dc1 VZ |
4229 | if ( hcursor ) |
4230 | { | |
4231 | ::SetCursor(hcursor); | |
4232 | ||
4233 | // cursor set, stop here | |
08158721 | 4234 | return true; |
bfbd6dc1 | 4235 | } |
cd4453e5 VZ |
4236 | #endif // __WXMICROWIN__ |
4237 | ||
3ca6a5f0 | 4238 | // pass up the window chain |
08158721 | 4239 | return false; |
2bda0e17 KB |
4240 | } |
4241 | ||
dbc74bcc | 4242 | bool wxWindowMSW::HandlePower(WXWPARAM WXUNUSED_IN_WINCE(wParam), |
355debca | 4243 | WXLPARAM WXUNUSED(lParam), |
dbc74bcc | 4244 | bool *WXUNUSED_IN_WINCE(vetoed)) |
355debca | 4245 | { |
dbc74bcc WS |
4246 | #ifdef __WXWINCE__ |
4247 | // FIXME | |
4248 | return false; | |
4249 | #else | |
355debca VZ |
4250 | wxEventType evtType; |
4251 | switch ( wParam ) | |
4252 | { | |
4253 | case PBT_APMQUERYSUSPEND: | |
4254 | evtType = wxEVT_POWER_SUSPENDING; | |
4255 | break; | |
4256 | ||
4257 | case PBT_APMQUERYSUSPENDFAILED: | |
4258 | evtType = wxEVT_POWER_SUSPEND_CANCEL; | |
4259 | break; | |
4260 | ||
4261 | case PBT_APMSUSPEND: | |
4262 | evtType = wxEVT_POWER_SUSPENDED; | |
4263 | break; | |
4264 | ||
4265 | case PBT_APMRESUMESUSPEND: | |
4266 | evtType = wxEVT_POWER_RESUME; | |
4267 | break; | |
4268 | ||
4269 | default: | |
9a83f860 | 4270 | wxLogDebug(wxT("Unknown WM_POWERBROADCAST(%d) event"), wParam); |
355debca VZ |
4271 | // fall through |
4272 | ||
4273 | // these messages are currently not mapped to wx events | |
4274 | case PBT_APMQUERYSTANDBY: | |
4275 | case PBT_APMQUERYSTANDBYFAILED: | |
4276 | case PBT_APMSTANDBY: | |
4277 | case PBT_APMRESUMESTANDBY: | |
4278 | case PBT_APMBATTERYLOW: | |
4279 | case PBT_APMPOWERSTATUSCHANGE: | |
4280 | case PBT_APMOEMEVENT: | |
355debca | 4281 | case PBT_APMRESUMECRITICAL: |
55cd5d10 VZ |
4282 | #ifdef PBT_APMRESUMEAUTOMATIC |
4283 | case PBT_APMRESUMEAUTOMATIC: | |
4284 | #endif | |
355debca VZ |
4285 | evtType = wxEVT_NULL; |
4286 | break; | |
4287 | } | |
4288 | ||
4289 | // don't handle unknown messages | |
4290 | if ( evtType == wxEVT_NULL ) | |
4291 | return false; | |
4292 | ||
4293 | // TODO: notify about PBTF_APMRESUMEFROMFAILURE in case of resume events? | |
4294 | ||
4295 | wxPowerEvent event(evtType); | |
937013e0 | 4296 | if ( !HandleWindowEvent(event) ) |
355debca VZ |
4297 | return false; |
4298 | ||
4299 | *vetoed = event.IsVetoed(); | |
4300 | ||
4301 | return true; | |
dbc74bcc | 4302 | #endif |
355debca VZ |
4303 | } |
4304 | ||
2e992e06 VZ |
4305 | bool wxWindowMSW::IsDoubleBuffered() const |
4306 | { | |
75e8e6dc | 4307 | for ( const wxWindowMSW *win = this; win; win = win->GetParent() ) |
d66d0500 | 4308 | { |
75e8e6dc | 4309 | if ( wxHasWindowExStyle(win, WS_EX_COMPOSITED) ) |
2e992e06 | 4310 | return true; |
75e8e6dc VZ |
4311 | |
4312 | if ( win->IsTopLevel() ) | |
4313 | break; | |
4314 | } | |
d66d0500 | 4315 | |
2e992e06 VZ |
4316 | return false; |
4317 | } | |
4318 | ||
f60ca3e2 RD |
4319 | void wxWindowMSW::SetDoubleBuffered(bool on) |
4320 | { | |
4321 | // Get the current extended style bits | |
d66d0500 | 4322 | long exstyle = wxGetWindowExStyle(this); |
f60ca3e2 RD |
4323 | |
4324 | // Twiddle the bit as needed | |
4325 | if ( on ) | |
4326 | exstyle |= WS_EX_COMPOSITED; | |
4327 | else | |
4328 | exstyle &= ~WS_EX_COMPOSITED; | |
4329 | ||
4330 | // put it back | |
d66d0500 | 4331 | wxSetWindowExStyle(this, exstyle); |
f60ca3e2 RD |
4332 | } |
4333 | ||
42e69d6b VZ |
4334 | // --------------------------------------------------------------------------- |
4335 | // owner drawn stuff | |
4336 | // --------------------------------------------------------------------------- | |
4337 | ||
61fef19b VZ |
4338 | #if (wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE) || \ |
4339 | (wxUSE_CONTROLS && !defined(__WXUNIVERSAL__)) | |
4340 | #define WXUNUSED_UNLESS_ODRAWN(param) param | |
4341 | #else | |
4342 | #define WXUNUSED_UNLESS_ODRAWN(param) | |
4343 | #endif | |
4344 | ||
4345 | bool | |
4346 | wxWindowMSW::MSWOnDrawItem(int WXUNUSED_UNLESS_ODRAWN(id), | |
4347 | WXDRAWITEMSTRUCT * WXUNUSED_UNLESS_ODRAWN(itemStruct)) | |
2bda0e17 | 4348 | { |
4286a5b5 | 4349 | #if wxUSE_OWNER_DRAWN |
1e6feb95 VZ |
4350 | |
4351 | #if wxUSE_MENUS_NATIVE | |
42e69d6b | 4352 | // is it a menu item? |
6f806543 VZ |
4353 | DRAWITEMSTRUCT *pDrawStruct = (DRAWITEMSTRUCT *)itemStruct; |
4354 | if ( id == 0 && pDrawStruct->CtlType == ODT_MENU ) | |
42e69d6b | 4355 | { |
42e69d6b | 4356 | wxMenuItem *pMenuItem = (wxMenuItem *)(pDrawStruct->itemData); |
03cef643 | 4357 | |
2d29bf54 JS |
4358 | // see comment before the same test in MSWOnMeasureItem() below |
4359 | if ( !pMenuItem ) | |
4360 | return false; | |
4361 | ||
4362 | wxCHECK_MSG( wxDynamicCast(pMenuItem, wxMenuItem), | |
9a83f860 | 4363 | false, wxT("MSWOnDrawItem: bad wxMenuItem pointer") ); |
42e69d6b | 4364 | |
7561aacd VZ |
4365 | // prepare to call OnDrawItem(): notice using of wxDCTemp to prevent |
4366 | // the DC from being released | |
4367 | wxDCTemp dc((WXHDC)pDrawStruct->hDC); | |
42e69d6b VZ |
4368 | wxRect rect(pDrawStruct->rcItem.left, pDrawStruct->rcItem.top, |
4369 | pDrawStruct->rcItem.right - pDrawStruct->rcItem.left, | |
4370 | pDrawStruct->rcItem.bottom - pDrawStruct->rcItem.top); | |
4371 | ||
4372 | return pMenuItem->OnDrawItem | |
7561aacd VZ |
4373 | ( |
4374 | dc, | |
4375 | rect, | |
4376 | (wxOwnerDrawn::wxODAction)pDrawStruct->itemAction, | |
4377 | (wxOwnerDrawn::wxODStatus)pDrawStruct->itemState | |
4378 | ); | |
42e69d6b | 4379 | } |
1e6feb95 | 4380 | #endif // wxUSE_MENUS_NATIVE |
42e69d6b | 4381 | |
c8e4fa8b JS |
4382 | #endif // USE_OWNER_DRAWN |
4383 | ||
6a89f9ee | 4384 | #if wxUSE_CONTROLS && !defined(__WXUNIVERSAL__) |
c8e4fa8b | 4385 | |
c8e4fa8b | 4386 | #if wxUSE_OWNER_DRAWN |
1384636d | 4387 | wxControl *item = wxDynamicCast(FindItem(id), wxControl); |
567be187 | 4388 | #else // !wxUSE_OWNER_DRAWN |
1384636d VS |
4389 | // we may still have owner-drawn buttons internally because we have to make |
4390 | // them owner-drawn to support colour change | |
35bbb0c6 | 4391 | wxControl *item = |
095b80e2 WS |
4392 | # if wxUSE_BUTTON |
4393 | wxDynamicCast(FindItem(id), wxButton) | |
4394 | # else | |
4395 | NULL | |
4396 | # endif | |
4397 | ; | |
cd0b1709 | 4398 | #endif // USE_OWNER_DRAWN |
567be187 VZ |
4399 | |
4400 | if ( item ) | |
4401 | { | |
4402 | return item->MSWOnDraw(itemStruct); | |
4403 | } | |
4286a5b5 | 4404 | |
c8e4fa8b JS |
4405 | #endif // wxUSE_CONTROLS |
4406 | ||
08158721 | 4407 | return false; |
2bda0e17 KB |
4408 | } |
4409 | ||
61fef19b | 4410 | bool |
d1d276f2 | 4411 | wxWindowMSW::MSWOnMeasureItem(int id, WXMEASUREITEMSTRUCT *itemStruct) |
2bda0e17 | 4412 | { |
61fef19b | 4413 | #if wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE |
42e69d6b | 4414 | // is it a menu item? |
6f806543 VZ |
4415 | MEASUREITEMSTRUCT *pMeasureStruct = (MEASUREITEMSTRUCT *)itemStruct; |
4416 | if ( id == 0 && pMeasureStruct->CtlType == ODT_MENU ) | |
2d0a075d | 4417 | { |
42e69d6b VZ |
4418 | wxMenuItem *pMenuItem = (wxMenuItem *)(pMeasureStruct->itemData); |
4419 | ||
b6afa1a3 VZ |
4420 | // according to Carsten Fuchs the pointer may be NULL under XP if an |
4421 | // MDI child frame is initially maximized, see this for more info: | |
4422 | // http://article.gmane.org/gmane.comp.lib.wxwidgets.general/27745 | |
4423 | // | |
4424 | // so silently ignore it instead of asserting | |
4425 | if ( !pMenuItem ) | |
4426 | return false; | |
4427 | ||
4428 | wxCHECK_MSG( wxDynamicCast(pMenuItem, wxMenuItem), | |
9a83f860 | 4429 | false, wxT("MSWOnMeasureItem: bad wxMenuItem pointer") ); |
42e69d6b | 4430 | |
975b6bcf VZ |
4431 | size_t w, h; |
4432 | bool rc = pMenuItem->OnMeasureItem(&w, &h); | |
4433 | ||
4434 | pMeasureStruct->itemWidth = w; | |
4435 | pMeasureStruct->itemHeight = h; | |
4436 | ||
4437 | return rc; | |
2d0a075d | 4438 | } |
42e69d6b | 4439 | |
567be187 VZ |
4440 | wxControl *item = wxDynamicCast(FindItem(id), wxControl); |
4441 | if ( item ) | |
42e69d6b | 4442 | { |
567be187 | 4443 | return item->MSWOnMeasure(itemStruct); |
42e69d6b | 4444 | } |
d1d276f2 WS |
4445 | #else |
4446 | wxUnusedVar(id); | |
4447 | wxUnusedVar(itemStruct); | |
4448 | #endif // wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE | |
567be187 | 4449 | |
08158721 | 4450 | return false; |
2bda0e17 KB |
4451 | } |
4452 | ||
42e69d6b VZ |
4453 | // --------------------------------------------------------------------------- |
4454 | // colours and palettes | |
4455 | // --------------------------------------------------------------------------- | |
2bda0e17 | 4456 | |
1e6feb95 | 4457 | bool wxWindowMSW::HandleSysColorChange() |
2bda0e17 | 4458 | { |
42e69d6b VZ |
4459 | wxSysColourChangedEvent event; |
4460 | event.SetEventObject(this); | |
4461 | ||
937013e0 | 4462 | (void)HandleWindowEvent(event); |
23895080 VZ |
4463 | |
4464 | // always let the system carry on the default processing to allow the | |
4465 | // native controls to react to the colours update | |
08158721 | 4466 | return false; |
42e69d6b VZ |
4467 | } |
4468 | ||
574c939e KB |
4469 | bool wxWindowMSW::HandleDisplayChange() |
4470 | { | |
4471 | wxDisplayChangedEvent event; | |
4472 | event.SetEventObject(this); | |
4473 | ||
937013e0 | 4474 | return HandleWindowEvent(event); |
574c939e KB |
4475 | } |
4476 | ||
04ef50df | 4477 | #ifndef __WXMICROWIN__ |
42e69d6b | 4478 | |
1a784dfc | 4479 | bool wxWindowMSW::HandleCtlColor(WXHBRUSH *brush, WXHDC hDC, WXHWND hWnd) |
01c500af | 4480 | { |
3d74a760 | 4481 | #if !wxUSE_CONTROLS || defined(__WXUNIVERSAL__) |
43bfb798 | 4482 | wxUnusedVar(hDC); |
3d74a760 WS |
4483 | wxUnusedVar(hWnd); |
4484 | #else | |
2bae4332 | 4485 | wxControl *item = wxDynamicCast(FindItemByHWND(hWnd, true), wxControl); |
c3732409 | 4486 | |
01c500af | 4487 | if ( item ) |
1a784dfc | 4488 | *brush = item->MSWControlColor(hDC, hWnd); |
2d0a075d | 4489 | else |
1e6feb95 | 4490 | #endif // wxUSE_CONTROLS |
01c500af | 4491 | *brush = NULL; |
42e69d6b | 4492 | |
01c500af | 4493 | return *brush != NULL; |
2bda0e17 KB |
4494 | } |
4495 | ||
01c500af VZ |
4496 | #endif // __WXMICROWIN__ |
4497 | ||
1e6feb95 | 4498 | bool wxWindowMSW::HandlePaletteChanged(WXHWND hWndPalChange) |
42e69d6b | 4499 | { |
574c939e | 4500 | #if wxUSE_PALETTE |
b95edd47 VZ |
4501 | // same as below except we don't respond to our own messages |
4502 | if ( hWndPalChange != GetHWND() ) | |
4503 | { | |
574c939e | 4504 | // check to see if we our our parents have a custom palette |
fa21d338 | 4505 | wxWindowMSW *win = this; |
b95edd47 VZ |
4506 | while ( win && !win->HasCustomPalette() ) |
4507 | { | |
4508 | win = win->GetParent(); | |
4509 | } | |
4510 | ||
4511 | if ( win && win->HasCustomPalette() ) | |
4512 | { | |
4513 | // realize the palette to see whether redrawing is needed | |
4514 | HDC hdc = ::GetDC((HWND) hWndPalChange); | |
4515 | win->m_palette.SetHPALETTE((WXHPALETTE) | |
4516 | ::SelectPalette(hdc, GetHpaletteOf(win->m_palette), FALSE)); | |
574c939e KB |
4517 | |
4518 | int result = ::RealizePalette(hdc); | |
b95edd47 VZ |
4519 | |
4520 | // restore the palette (before releasing the DC) | |
4521 | win->m_palette.SetHPALETTE((WXHPALETTE) | |
4522 | ::SelectPalette(hdc, GetHpaletteOf(win->m_palette), FALSE)); | |
4523 | ::RealizePalette(hdc); | |
4524 | ::ReleaseDC((HWND) hWndPalChange, hdc); | |
4525 | ||
4526 | // now check for the need to redraw | |
574c939e | 4527 | if (result > 0) |
08158721 | 4528 | ::InvalidateRect((HWND) hWndPalChange, NULL, TRUE); |
574c939e | 4529 | } |
b95edd47 VZ |
4530 | |
4531 | } | |
4532 | #endif // wxUSE_PALETTE | |
574c939e | 4533 | |
42e69d6b VZ |
4534 | wxPaletteChangedEvent event(GetId()); |
4535 | event.SetEventObject(this); | |
4536 | event.SetChangedWindow(wxFindWinFromHandle(hWndPalChange)); | |
2d0a075d | 4537 | |
937013e0 | 4538 | return HandleWindowEvent(event); |
42e69d6b VZ |
4539 | } |
4540 | ||
a5e84126 JS |
4541 | bool wxWindowMSW::HandleCaptureChanged(WXHWND hWndGainedCapture) |
4542 | { | |
63e819f2 VS |
4543 | // notify windows on the capture stack about lost capture |
4544 | // (see http://sourceforge.net/tracker/index.php?func=detail&aid=1153662&group_id=9863&atid=109863): | |
72f8c792 | 4545 | wxWindowBase::NotifyCaptureLost(); |
a5e84126 | 4546 | |
72f8c792 | 4547 | wxWindow *win = wxFindWinFromHandle(hWndGainedCapture); |
63e819f2 VS |
4548 | wxMouseCaptureChangedEvent event(GetId(), win); |
4549 | event.SetEventObject(this); | |
937013e0 | 4550 | return HandleWindowEvent(event); |
a5e84126 JS |
4551 | } |
4552 | ||
3c96418b JG |
4553 | bool wxWindowMSW::HandleSettingChange(WXWPARAM wParam, WXLPARAM lParam) |
4554 | { | |
4555 | // despite MSDN saying "(This message cannot be sent directly to a window.)" | |
4556 | // we need to send this to child windows (it is only sent to top-level | |
4557 | // windows) so {list,tree}ctrls can adjust their font size if necessary | |
4558 | // this is exactly how explorer does it to enable the font size changes | |
4559 | ||
4560 | wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); | |
4561 | while ( node ) | |
4562 | { | |
4563 | // top-level windows already get this message from the system | |
4564 | wxWindow *win = node->GetData(); | |
4565 | if ( !win->IsTopLevel() ) | |
4566 | { | |
4567 | ::SendMessage(GetHwndOf(win), WM_SETTINGCHANGE, wParam, lParam); | |
4568 | } | |
4569 | ||
4570 | node = node->GetNext(); | |
4571 | } | |
4572 | ||
3c96418b JG |
4573 | // let the system handle it |
4574 | return false; | |
4575 | } | |
4576 | ||
1e6feb95 | 4577 | bool wxWindowMSW::HandleQueryNewPalette() |
42e69d6b | 4578 | { |
574c939e KB |
4579 | |
4580 | #if wxUSE_PALETTE | |
4581 | // check to see if we our our parents have a custom palette | |
fa21d338 | 4582 | wxWindowMSW *win = this; |
574c939e KB |
4583 | while (!win->HasCustomPalette() && win->GetParent()) win = win->GetParent(); |
4584 | if (win->HasCustomPalette()) { | |
4585 | /* realize the palette to see whether redrawing is needed */ | |
3a3c8603 | 4586 | HDC hdc = ::GetDC((HWND) GetHWND()); |
574c939e | 4587 | win->m_palette.SetHPALETTE( (WXHPALETTE) |
b95edd47 | 4588 | ::SelectPalette(hdc, (HPALETTE) win->m_palette.GetHPALETTE(), FALSE) ); |
574c939e KB |
4589 | |
4590 | int result = ::RealizePalette(hdc); | |
4591 | /* restore the palette (before releasing the DC) */ | |
4592 | win->m_palette.SetHPALETTE( (WXHPALETTE) | |
b95edd47 | 4593 | ::SelectPalette(hdc, (HPALETTE) win->m_palette.GetHPALETTE(), TRUE) ); |
574c939e KB |
4594 | ::RealizePalette(hdc); |
4595 | ::ReleaseDC((HWND) GetHWND(), hdc); | |
4596 | /* now check for the need to redraw */ | |
4597 | if (result > 0) | |
4598 | ::InvalidateRect((HWND) GetHWND(), NULL, TRUE); | |
4599 | } | |
b95edd47 | 4600 | #endif // wxUSE_PALETTE |
574c939e | 4601 | |
42e69d6b VZ |
4602 | wxQueryNewPaletteEvent event(GetId()); |
4603 | event.SetEventObject(this); | |
4604 | ||
937013e0 | 4605 | return HandleWindowEvent(event) && event.GetPaletteRealized(); |
42e69d6b VZ |
4606 | } |
4607 | ||
4608 | // Responds to colour changes: passes event on to children. | |
574c939e | 4609 | void wxWindowMSW::OnSysColourChanged(wxSysColourChangedEvent& WXUNUSED(event)) |
42e69d6b | 4610 | { |
90c1530a VZ |
4611 | // the top level window also reset the standard colour map as it might have |
4612 | // changed (there is no need to do it for the non top level windows as we | |
4613 | // only have to do it once) | |
4614 | if ( IsTopLevel() ) | |
4615 | { | |
4616 | // FIXME-MT | |
08158721 | 4617 | gs_hasStdCmap = false; |
90c1530a | 4618 | } |
222ed1d6 | 4619 | wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); |
42e69d6b VZ |
4620 | while ( node ) |
4621 | { | |
23895080 VZ |
4622 | // Only propagate to non-top-level windows because Windows already |
4623 | // sends this event to all top-level ones | |
4624 | wxWindow *win = node->GetData(); | |
4625 | if ( !win->IsTopLevel() ) | |
42e69d6b | 4626 | { |
23895080 VZ |
4627 | // we need to send the real WM_SYSCOLORCHANGE and not just trigger |
4628 | // EVT_SYS_COLOUR_CHANGED call because the latter wouldn't work for | |
4629 | // the standard controls | |
4630 | ::SendMessage(GetHwndOf(win), WM_SYSCOLORCHANGE, 0, 0); | |
564b2609 | 4631 | } |
42e69d6b | 4632 | |
23895080 VZ |
4633 | node = node->GetNext(); |
4634 | } | |
2bda0e17 KB |
4635 | } |
4636 | ||
90c1530a VZ |
4637 | extern wxCOLORMAP *wxGetStdColourMap() |
4638 | { | |
4639 | static COLORREF s_stdColours[wxSTD_COL_MAX]; | |
4640 | static wxCOLORMAP s_cmap[wxSTD_COL_MAX]; | |
4641 | ||
4642 | if ( !gs_hasStdCmap ) | |
4643 | { | |
08158721 | 4644 | static bool s_coloursInit = false; |
90c1530a VZ |
4645 | |
4646 | if ( !s_coloursInit ) | |
4647 | { | |
4648 | // When a bitmap is loaded, the RGB values can change (apparently | |
4649 | // because Windows adjusts them to care for the old programs always | |
4650 | // using 0xc0c0c0 while the transparent colour for the new Windows | |
4651 | // versions is different). But we do this adjustment ourselves so | |
4652 | // we want to avoid Windows' "help" and for this we need to have a | |
4653 | // reference bitmap which can tell us what the RGB values change | |
4654 | // to. | |
e5dbcb50 | 4655 | wxLogNull logNo; // suppress error if we couldn't load the bitmap |
9a83f860 | 4656 | wxBitmap stdColourBitmap(wxT("wxBITMAP_STD_COLOURS")); |
a1b806b9 | 4657 | if ( stdColourBitmap.IsOk() ) |
90c1530a VZ |
4658 | { |
4659 | // the pixels in the bitmap must correspond to wxSTD_COL_XXX! | |
4660 | wxASSERT_MSG( stdColourBitmap.GetWidth() == wxSTD_COL_MAX, | |
9a83f860 | 4661 | wxT("forgot to update wxBITMAP_STD_COLOURS!") ); |
90c1530a VZ |
4662 | |
4663 | wxMemoryDC memDC; | |
4664 | memDC.SelectObject(stdColourBitmap); | |
4665 | ||
4666 | wxColour colour; | |
4667 | for ( size_t i = 0; i < WXSIZEOF(s_stdColours); i++ ) | |
4668 | { | |
4669 | memDC.GetPixel(i, 0, &colour); | |
4670 | s_stdColours[i] = wxColourToRGB(colour); | |
4671 | } | |
4672 | } | |
4673 | else // wxBITMAP_STD_COLOURS couldn't be loaded | |
4674 | { | |
4675 | s_stdColours[0] = RGB(000,000,000); // black | |
4676 | s_stdColours[1] = RGB(128,128,128); // dark grey | |
4677 | s_stdColours[2] = RGB(192,192,192); // light grey | |
4678 | s_stdColours[3] = RGB(255,255,255); // white | |
4679 | //s_stdColours[4] = RGB(000,000,255); // blue | |
4680 | //s_stdColours[5] = RGB(255,000,255); // magenta | |
4681 | } | |
4682 | ||
08158721 | 4683 | s_coloursInit = true; |
90c1530a VZ |
4684 | } |
4685 | ||
08158721 | 4686 | gs_hasStdCmap = true; |
90c1530a VZ |
4687 | |
4688 | // create the colour map | |
4689 | #define INIT_CMAP_ENTRY(col) \ | |
4690 | s_cmap[wxSTD_COL_##col].from = s_stdColours[wxSTD_COL_##col]; \ | |
4691 | s_cmap[wxSTD_COL_##col].to = ::GetSysColor(COLOR_##col) | |
4692 | ||
4693 | INIT_CMAP_ENTRY(BTNTEXT); | |
4694 | INIT_CMAP_ENTRY(BTNSHADOW); | |
4695 | INIT_CMAP_ENTRY(BTNFACE); | |
4696 | INIT_CMAP_ENTRY(BTNHIGHLIGHT); | |
4697 | ||
4698 | #undef INIT_CMAP_ENTRY | |
4699 | } | |
4700 | ||
4701 | return s_cmap; | |
4702 | } | |
4703 | ||
a5b1be33 JS |
4704 | #if wxUSE_UXTHEME && !defined(TMT_FILLCOLOR) |
4705 | #define TMT_FILLCOLOR 3802 | |
4706 | #define TMT_TEXTCOLOR 3803 | |
4707 | #define TMT_BORDERCOLOR 3801 | |
4708 | #endif | |
4709 | ||
4710 | wxColour wxWindowMSW::MSWGetThemeColour(const wchar_t *themeName, | |
4711 | int themePart, | |
4712 | int themeState, | |
4713 | MSWThemeColour themeColour, | |
108694fe | 4714 | wxSystemColour fallback) const |
a5b1be33 JS |
4715 | { |
4716 | #if wxUSE_UXTHEME | |
4717 | const wxUxThemeEngine* theme = wxUxThemeEngine::GetIfActive(); | |
4718 | if ( theme ) | |
4719 | { | |
4720 | int themeProperty = 0; | |
4721 | ||
4722 | // TODO: Convert this into a table? Sure would be faster. | |
4723 | switch ( themeColour ) | |
4724 | { | |
4725 | case ThemeColourBackground: | |
4726 | themeProperty = TMT_FILLCOLOR; | |
4727 | break; | |
4728 | case ThemeColourText: | |
4729 | themeProperty = TMT_TEXTCOLOR; | |
4730 | break; | |
4731 | case ThemeColourBorder: | |
4732 | themeProperty = TMT_BORDERCOLOR; | |
4733 | break; | |
4734 | default: | |
4735 | wxFAIL_MSG(wxT("unsupported theme colour")); | |
4736 | }; | |
4737 | ||
108694fe | 4738 | wxUxThemeHandle hTheme((const wxWindow *)this, themeName); |
a5b1be33 JS |
4739 | COLORREF col; |
4740 | HRESULT hr = theme->GetThemeColor | |
4741 | ( | |
4742 | hTheme, | |
4743 | themePart, | |
4744 | themeState, | |
4745 | themeProperty, | |
4746 | &col | |
4747 | ); | |
4748 | ||
4749 | if ( SUCCEEDED(hr) ) | |
4750 | return wxRGBToColour(col); | |
4751 | ||
4752 | wxLogApiError( | |
4753 | wxString::Format( | |
4754 | "GetThemeColor(%s, %i, %i, %i)", | |
4755 | themeName, themePart, themeState, themeProperty), | |
4756 | hr); | |
4757 | } | |
b9de6a21 JS |
4758 | #else |
4759 | wxUnusedVar(themeName); | |
4760 | wxUnusedVar(themePart); | |
4761 | wxUnusedVar(themeState); | |
4762 | wxUnusedVar(themeColour); | |
a5b1be33 JS |
4763 | #endif |
4764 | return wxSystemSettings::GetColour(fallback); | |
4765 | } | |
4766 | ||
42e69d6b VZ |
4767 | // --------------------------------------------------------------------------- |
4768 | // painting | |
4769 | // --------------------------------------------------------------------------- | |
4770 | ||
7ca106e8 VZ |
4771 | // this variable is used to check that a paint event handler which processed |
4772 | // the event did create a wxPaintDC inside its code and called BeginPaint() to | |
4773 | // validate the invalidated window area as otherwise we'd keep getting an | |
4774 | // endless stream of WM_PAINT messages for this window resulting in a lot of | |
4775 | // difficult to debug problems (e.g. impossibility to repaint other windows, | |
4776 | // lack of timer and idle events and so on) | |
0369a9fe VZ |
4777 | extern bool wxDidCreatePaintDC; |
4778 | bool wxDidCreatePaintDC = false; | |
7ca106e8 | 4779 | |
1e6feb95 | 4780 | bool wxWindowMSW::HandlePaint() |
2bda0e17 | 4781 | { |
42e69d6b VZ |
4782 | HRGN hRegion = ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle |
4783 | if ( !hRegion ) | |
43b2d5e7 | 4784 | { |
f6bcfd97 | 4785 | wxLogLastError(wxT("CreateRectRgn")); |
43b2d5e7 | 4786 | } |
42e69d6b | 4787 | if ( ::GetUpdateRgn(GetHwnd(), hRegion, FALSE) == ERROR ) |
43b2d5e7 | 4788 | { |
f6bcfd97 | 4789 | wxLogLastError(wxT("GetUpdateRgn")); |
43b2d5e7 | 4790 | } |
c085e333 | 4791 | |
42e69d6b | 4792 | m_updateRegion = wxRegion((WXHRGN) hRegion); |
c085e333 | 4793 | |
7ca106e8 VZ |
4794 | wxDidCreatePaintDC = false; |
4795 | ||
42e69d6b VZ |
4796 | wxPaintEvent event(m_windowId); |
4797 | event.SetEventObject(this); | |
2bda0e17 | 4798 | |
937013e0 | 4799 | bool processed = HandleWindowEvent(event); |
1e6feb95 | 4800 | |
7ca106e8 VZ |
4801 | if ( processed && !wxDidCreatePaintDC ) |
4802 | { | |
4803 | // do call MSWDefWindowProc() to validate the update region to avoid | |
4804 | // the problems mentioned above | |
4805 | processed = false; | |
4806 | } | |
4807 | ||
1e6feb95 VZ |
4808 | // note that we must generate NC event after the normal one as otherwise |
4809 | // BeginPaint() will happily overwrite our decorations with the background | |
4810 | // colour | |
4811 | wxNcPaintEvent eventNc(m_windowId); | |
4812 | eventNc.SetEventObject(this); | |
937013e0 | 4813 | HandleWindowEvent(eventNc); |
1e6feb95 | 4814 | |
90df6033 VZ |
4815 | // don't keep an HRGN we don't need any longer (GetUpdateRegion() can only |
4816 | // be called from inside the event handlers called above) | |
4817 | m_updateRegion.Clear(); | |
4818 | ||
ddc8faa9 VZ |
4819 | wxPaintDCImpl::EndPaint((wxWindow *)this); |
4820 | ||
1e6feb95 | 4821 | return processed; |
2bda0e17 KB |
4822 | } |
4823 | ||
63da7df7 | 4824 | // Can be called from an application's OnPaint handler |
1e6feb95 | 4825 | void wxWindowMSW::OnPaint(wxPaintEvent& event) |
63da7df7 | 4826 | { |
1e6feb95 VZ |
4827 | #ifdef __WXUNIVERSAL__ |
4828 | event.Skip(); | |
4829 | #else | |
888dde65 | 4830 | HDC hDC = (HDC) wxPaintDCImpl::FindDCInCache((wxWindow*) event.GetEventObject()); |
63da7df7 JS |
4831 | if (hDC != 0) |
4832 | { | |
4833 | MSWDefWindowProc(WM_PAINT, (WPARAM) hDC, 0); | |
4834 | } | |
1e6feb95 | 4835 | #endif |
63da7df7 JS |
4836 | } |
4837 | ||
1e6feb95 | 4838 | bool wxWindowMSW::HandleEraseBkgnd(WXHDC hdc) |
8681b094 | 4839 | { |
a1578195 VZ |
4840 | if ( IsBeingDeleted() ) |
4841 | { | |
4842 | // We can get WM_ERASEBKGND after starting the destruction of our top | |
4843 | // level parent. Handling it in this case is unnecessary and can be | |
4844 | // actually harmful as e.g. wxStaticBox::GetClientSize() doesn't work | |
4845 | // without a valid TLW parent (because it uses dialog units internally | |
4846 | // which use the dialog font), so just don't do anything then. | |
4847 | return false; | |
4848 | } | |
4849 | ||
c753eb92 | 4850 | switch ( GetBackgroundStyle() ) |
d57f1dd7 | 4851 | { |
c753eb92 | 4852 | case wxBG_STYLE_ERASE: |
b469c9d8 | 4853 | case wxBG_STYLE_COLOUR: |
c753eb92 VZ |
4854 | // we need to generate an erase background event |
4855 | { | |
4856 | wxDCTemp dc(hdc, GetClientSize()); | |
4857 | wxDCTempImpl *impl = (wxDCTempImpl*) dc.GetImpl(); | |
d57f1dd7 | 4858 | |
c753eb92 VZ |
4859 | impl->SetHDC(hdc); |
4860 | impl->SetWindow((wxWindow *)this); | |
90df6033 | 4861 | |
c753eb92 VZ |
4862 | wxEraseEvent event(m_windowId, &dc); |
4863 | event.SetEventObject(this); | |
4864 | bool rc = HandleWindowEvent(event); | |
4865 | ||
4866 | // must be called manually as ~wxDC doesn't do anything for | |
4867 | // wxDCTemp | |
4868 | impl->SelectOldObjects(hdc); | |
4869 | ||
4870 | if ( rc ) | |
4871 | { | |
06393630 | 4872 | // background erased by the user-defined handler |
c753eb92 VZ |
4873 | return true; |
4874 | } | |
4875 | } | |
4876 | // fall through | |
4877 | ||
4878 | case wxBG_STYLE_SYSTEM: | |
4879 | if ( !DoEraseBackground(hdc) ) | |
4880 | { | |
4881 | // let the default processing to take place if we didn't erase | |
4882 | // the background ourselves | |
4883 | return false; | |
4884 | } | |
4885 | break; | |
4886 | ||
4887 | case wxBG_STYLE_PAINT: | |
b469c9d8 | 4888 | case wxBG_STYLE_TRANSPARENT: |
c753eb92 VZ |
4889 | // no need to do anything here at all, background will be entirely |
4890 | // redrawn in WM_PAINT handler | |
4891 | break; | |
4892 | ||
4893 | default: | |
4894 | wxFAIL_MSG( "unknown background style" ); | |
c5bd3c62 | 4895 | } |
c753eb92 VZ |
4896 | |
4897 | return true; | |
c5bd3c62 VZ |
4898 | } |
4899 | ||
bec9bf3e VZ |
4900 | #ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK |
4901 | ||
4902 | bool wxWindowMSW::MSWHasEraseBgHook() const | |
4903 | { | |
b93f4239 VZ |
4904 | return gs_eraseBgHooks.find(const_cast<wxWindowMSW *>(this)) |
4905 | != gs_eraseBgHooks.end(); | |
bec9bf3e VZ |
4906 | } |
4907 | ||
4908 | void wxWindowMSW::MSWSetEraseBgHook(wxWindow *child) | |
4909 | { | |
4910 | if ( child ) | |
4911 | { | |
4912 | if ( !gs_eraseBgHooks.insert( | |
4913 | EraseBgHooks::value_type(this, child)).second ) | |
4914 | { | |
4915 | wxFAIL_MSG( wxT("Setting erase background hook twice?") ); | |
4916 | } | |
4917 | } | |
4918 | else // reset the hook | |
4919 | { | |
4920 | if ( gs_eraseBgHooks.erase(this) != 1 ) | |
4921 | { | |
4922 | wxFAIL_MSG( wxT("Resetting erase background which was not set?") ); | |
4923 | } | |
4924 | } | |
4925 | } | |
4926 | ||
4927 | #endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK | |
4928 | ||
c3732409 | 4929 | bool wxWindowMSW::DoEraseBackground(WXHDC hDC) |
c581abbc | 4930 | { |
c3732409 VZ |
4931 | HBRUSH hbr = (HBRUSH)MSWGetBgBrush(hDC); |
4932 | if ( !hbr ) | |
c581abbc VZ |
4933 | return false; |
4934 | ||
bec9bf3e VZ |
4935 | // erase just the client area of the window, this is important for the |
4936 | // frames to avoid drawing over the toolbar part of the window (you might | |
4937 | // think using WS_CLIPCHILDREN would prevent this from happening, but it | |
4938 | // clearly doesn't) | |
4939 | RECT rc; | |
4940 | wxCopyRectToRECT(GetClientRect(), rc); | |
4941 | ::FillRect((HDC)hDC, &rc, hbr); | |
c581abbc VZ |
4942 | |
4943 | return true; | |
4944 | } | |
4945 | ||
c3732409 | 4946 | WXHBRUSH |
0a81f130 | 4947 | wxWindowMSW::MSWGetBgBrushForChild(WXHDC hDC, wxWindowMSW *child) |
c5bd3c62 | 4948 | { |
0a81f130 VZ |
4949 | // Test for the custom background brush first. |
4950 | WXHBRUSH hbrush = MSWGetCustomBgBrush(); | |
4951 | if ( hbrush ) | |
4952 | { | |
4953 | // We assume that this is either a stipple or hatched brush and not a | |
4954 | // solid one as otherwise it would have been enough to set the | |
4955 | // background colour and such brushes need to be positioned correctly | |
4956 | // in order to align when different windows are painted, so do it here. | |
4957 | RECT rc; | |
4958 | ::GetWindowRect(GetHwndOf(child), &rc); | |
4959 | ||
4960 | ::MapWindowPoints(NULL, GetHwnd(), (POINT *)&rc, 1); | |
4961 | ||
208717f6 VZ |
4962 | int x = rc.left, |
4963 | y = rc.top; | |
4964 | MSWAdjustBrushOrg(&x, &y); | |
4965 | ||
4966 | if ( !::SetBrushOrgEx((HDC)hDC, -x, -y, NULL) ) | |
0a81f130 VZ |
4967 | { |
4968 | wxLogLastError(wxT("SetBrushOrgEx(bg brush)")); | |
4969 | } | |
4970 | ||
4971 | return hbrush; | |
4972 | } | |
4973 | ||
4974 | // Otherwise see if we have a custom background colour. | |
accbb1e7 VZ |
4975 | if ( m_hasBgCol ) |
4976 | { | |
ebfee179 VZ |
4977 | wxBrush * |
4978 | brush = wxTheBrushList->FindOrCreateBrush(GetBackgroundColour()); | |
c3732409 | 4979 | |
ebfee179 | 4980 | return (WXHBRUSH)GetHbrushOf(*brush); |
accbb1e7 VZ |
4981 | } |
4982 | ||
c3732409 | 4983 | return 0; |
c5bd3c62 | 4984 | } |
8681b094 | 4985 | |
ebfee179 | 4986 | WXHBRUSH wxWindowMSW::MSWGetBgBrush(WXHDC hDC) |
bdd1a35d | 4987 | { |
a3b89fa9 VZ |
4988 | // Use the special wxWindowBeingErased variable if it is set as the child |
4989 | // being erased. | |
4990 | wxWindowMSW * const child = | |
4991 | #if wxUSE_UXTHEME | |
4992 | wxWindowBeingErased ? wxWindowBeingErased : | |
4993 | #endif | |
4994 | this; | |
4995 | ||
c3732409 | 4996 | for ( wxWindowMSW *win = this; win; win = win->GetParent() ) |
c5bd3c62 | 4997 | { |
a3b89fa9 | 4998 | WXHBRUSH hBrush = win->MSWGetBgBrushForChild(hDC, child); |
c5bd3c62 VZ |
4999 | if ( hBrush ) |
5000 | return hBrush; | |
24cb4019 | 5001 | |
ebfee179 VZ |
5002 | // don't use the parent background if we're not transparent |
5003 | if ( !win->HasTransparentBackground() ) | |
5004 | break; | |
5005 | ||
c3732409 VZ |
5006 | // background is not inherited beyond top level windows |
5007 | if ( win->IsTopLevel() ) | |
24cb4019 | 5008 | break; |
01c500af | 5009 | } |
c5bd3c62 VZ |
5010 | |
5011 | return 0; | |
8681b094 VZ |
5012 | } |
5013 | ||
b728a212 | 5014 | bool wxWindowMSW::HandlePrintClient(WXHDC hDC) |
1a784dfc | 5015 | { |
b728a212 JG |
5016 | // we receive this message when DrawThemeParentBackground() is |
5017 | // called from def window proc of several controls under XP and we | |
5018 | // must draw properly themed background here | |
5019 | // | |
5020 | // note that naively I'd expect filling the client rect with the | |
5021 | // brush returned by MSWGetBgBrush() work -- but for some reason it | |
5022 | // doesn't and we have to call parents MSWPrintChild() which is | |
5023 | // supposed to call DrawThemeBackground() with appropriate params | |
5024 | // | |
5025 | // also note that in this case lParam == PRF_CLIENT but we're | |
5026 | // clearly expected to paint the background and nothing else! | |
5027 | ||
5028 | if ( IsTopLevel() || InheritsBackgroundColour() ) | |
5029 | return false; | |
5030 | ||
5031 | // sometimes we don't want the parent to handle it at all, instead | |
5032 | // return whatever value this window wants | |
5033 | if ( !MSWShouldPropagatePrintChild() ) | |
5034 | return MSWPrintChild(hDC, (wxWindow *)this); | |
5035 | ||
5036 | for ( wxWindow *win = GetParent(); win; win = win->GetParent() ) | |
5037 | { | |
5038 | if ( win->MSWPrintChild(hDC, (wxWindow *)this) ) | |
5039 | return true; | |
5040 | ||
5041 | if ( win->IsTopLevel() || win->InheritsBackgroundColour() ) | |
5042 | break; | |
5043 | } | |
5044 | ||
1a784dfc VZ |
5045 | return false; |
5046 | } | |
5047 | ||
42e69d6b VZ |
5048 | // --------------------------------------------------------------------------- |
5049 | // moving and resizing | |
5050 | // --------------------------------------------------------------------------- | |
5051 | ||
1e6feb95 | 5052 | bool wxWindowMSW::HandleMinimize() |
42e69d6b VZ |
5053 | { |
5054 | wxIconizeEvent event(m_windowId); | |
5055 | event.SetEventObject(this); | |
2d0a075d | 5056 | |
937013e0 | 5057 | return HandleWindowEvent(event); |
2bda0e17 KB |
5058 | } |
5059 | ||
1e6feb95 | 5060 | bool wxWindowMSW::HandleMaximize() |
2bda0e17 | 5061 | { |
42e69d6b VZ |
5062 | wxMaximizeEvent event(m_windowId); |
5063 | event.SetEventObject(this); | |
c085e333 | 5064 | |
937013e0 | 5065 | return HandleWindowEvent(event); |
42e69d6b | 5066 | } |
2bda0e17 | 5067 | |
1e6feb95 | 5068 | bool wxWindowMSW::HandleMove(int x, int y) |
42e69d6b | 5069 | { |
907173e5 WS |
5070 | wxPoint point(x,y); |
5071 | wxMoveEvent event(point, m_windowId); | |
42e69d6b VZ |
5072 | event.SetEventObject(this); |
5073 | ||
937013e0 | 5074 | return HandleWindowEvent(event); |
42e69d6b VZ |
5075 | } |
5076 | ||
5706de1c JS |
5077 | bool wxWindowMSW::HandleMoving(wxRect& rect) |
5078 | { | |
5079 | wxMoveEvent event(rect, m_windowId); | |
5080 | event.SetEventObject(this); | |
577baeef | 5081 | |
937013e0 | 5082 | bool rc = HandleWindowEvent(event); |
5706de1c JS |
5083 | if (rc) |
5084 | rect = event.GetRect(); | |
5085 | return rc; | |
5086 | } | |
5087 | ||
aa767a45 JS |
5088 | bool wxWindowMSW::HandleEnterSizeMove() |
5089 | { | |
66e2ba91 | 5090 | wxMoveEvent event(wxPoint(0,0), m_windowId); |
aa767a45 JS |
5091 | event.SetEventType(wxEVT_MOVE_START); |
5092 | event.SetEventObject(this); | |
5093 | ||
937013e0 | 5094 | return HandleWindowEvent(event); |
aa767a45 JS |
5095 | } |
5096 | ||
5097 | bool wxWindowMSW::HandleExitSizeMove() | |
5098 | { | |
66e2ba91 | 5099 | wxMoveEvent event(wxPoint(0,0), m_windowId); |
aa767a45 JS |
5100 | event.SetEventType(wxEVT_MOVE_END); |
5101 | event.SetEventObject(this); | |
5102 | ||
937013e0 | 5103 | return HandleWindowEvent(event); |
aa767a45 JS |
5104 | } |
5105 | ||
4bc0f25e | 5106 | bool wxWindowMSW::HandleSize(int WXUNUSED(w), int WXUNUSED(h), WXUINT wParam) |
42e69d6b | 5107 | { |
6bd9b9f2 | 5108 | #if wxUSE_DEFERRED_SIZING |
c3723477 JS |
5109 | // when we resize this window, its children are probably going to be |
5110 | // repositioned as well, prepare to use DeferWindowPos() for them | |
5111 | int numChildren = 0; | |
5112 | for ( HWND child = ::GetWindow(GetHwndOf(this), GW_CHILD); | |
5113 | child; | |
5114 | child = ::GetWindow(child, GW_HWNDNEXT) ) | |
5115 | { | |
5116 | numChildren ++; | |
5117 | } | |
5118 | ||
3fca879c | 5119 | // Protect against valid m_hDWP being overwritten |
c3723477 JS |
5120 | bool useDefer = false; |
5121 | ||
3f48c8e2 VZ |
5122 | if ( numChildren > 1 ) |
5123 | { | |
c3723477 | 5124 | if (!m_hDWP) |
3fca879c | 5125 | { |
c3723477 JS |
5126 | m_hDWP = (WXHANDLE)::BeginDeferWindowPos(numChildren); |
5127 | if ( !m_hDWP ) | |
5128 | { | |
9a83f860 | 5129 | wxLogLastError(wxT("BeginDeferWindowPos")); |
c3723477 JS |
5130 | } |
5131 | if (m_hDWP) | |
5132 | useDefer = true; | |
3f48c8e2 VZ |
5133 | } |
5134 | } | |
6bd9b9f2 | 5135 | #endif // wxUSE_DEFERRED_SIZING |
42e69d6b | 5136 | |
3f48c8e2 VZ |
5137 | // update this window size |
5138 | bool processed = false; | |
4bc0f25e VZ |
5139 | switch ( wParam ) |
5140 | { | |
5141 | default: | |
9a83f860 | 5142 | wxFAIL_MSG( wxT("unexpected WM_SIZE parameter") ); |
4bc0f25e VZ |
5143 | // fall through nevertheless |
5144 | ||
5145 | case SIZE_MAXHIDE: | |
5146 | case SIZE_MAXSHOW: | |
5147 | // we're not interested in these messages at all | |
5148 | break; | |
5149 | ||
5150 | case SIZE_MINIMIZED: | |
5151 | processed = HandleMinimize(); | |
5152 | break; | |
5153 | ||
5154 | case SIZE_MAXIMIZED: | |
a4d1972d | 5155 | /* processed = */ HandleMaximize(); |
4bc0f25e VZ |
5156 | // fall through to send a normal size event as well |
5157 | ||
5158 | case SIZE_RESTORED: | |
5159 | // don't use w and h parameters as they specify the client size | |
5160 | // while according to the docs EVT_SIZE handler is supposed to | |
5161 | // receive the total size | |
5162 | wxSizeEvent event(GetSize(), m_windowId); | |
5163 | event.SetEventObject(this); | |
5164 | ||
937013e0 | 5165 | processed = HandleWindowEvent(event); |
4bc0f25e VZ |
5166 | } |
5167 | ||
6bd9b9f2 | 5168 | #if wxUSE_DEFERRED_SIZING |
3f48c8e2 | 5169 | // and finally change the positions of all child windows at once |
c3723477 | 5170 | if ( useDefer && m_hDWP ) |
3f48c8e2 VZ |
5171 | { |
5172 | // reset m_hDWP to NULL so that child windows don't try to use our | |
5173 | // m_hDWP after we call EndDeferWindowPos() on it (this shouldn't | |
5174 | // happen anyhow normally but who knows what weird flow of control we | |
5175 | // may have depending on what the users EVT_SIZE handler does...) | |
5176 | HDWP hDWP = (HDWP)m_hDWP; | |
5177 | m_hDWP = NULL; | |
3fca879c | 5178 | |
3f48c8e2 VZ |
5179 | // do put all child controls in place at once |
5180 | if ( !::EndDeferWindowPos(hDWP) ) | |
5181 | { | |
9a83f860 | 5182 | wxLogLastError(wxT("EndDeferWindowPos")); |
3f48c8e2 | 5183 | } |
c3723477 | 5184 | |
da78f3b1 | 5185 | // Reset our children's pending pos/size values. |
c3723477 JS |
5186 | for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst(); |
5187 | node; | |
5188 | node = node->GetNext() ) | |
5189 | { | |
6bd9b9f2 VZ |
5190 | wxWindowMSW * const child = node->GetData(); |
5191 | child->MSWEndDeferWindowPos(); | |
c3723477 | 5192 | } |
3f48c8e2 | 5193 | } |
6bd9b9f2 | 5194 | #endif // wxUSE_DEFERRED_SIZING |
3f48c8e2 | 5195 | |
4bc0f25e | 5196 | return processed; |
42e69d6b VZ |
5197 | } |
5198 | ||
5706de1c JS |
5199 | bool wxWindowMSW::HandleSizing(wxRect& rect) |
5200 | { | |
5201 | wxSizeEvent event(rect, m_windowId); | |
5202 | event.SetEventObject(this); | |
577baeef | 5203 | |
937013e0 | 5204 | bool rc = HandleWindowEvent(event); |
5706de1c JS |
5205 | if (rc) |
5206 | rect = event.GetRect(); | |
5207 | return rc; | |
5208 | } | |
5209 | ||
0c0d1521 | 5210 | bool wxWindowMSW::HandleGetMinMaxInfo(void *WXUNUSED_IN_WINCE(mmInfo)) |
42e69d6b | 5211 | { |
7f0586ef | 5212 | #ifdef __WXWINCE__ |
08158721 | 5213 | return false; |
7f0586ef | 5214 | #else |
42e69d6b VZ |
5215 | MINMAXINFO *info = (MINMAXINFO *)mmInfo; |
5216 | ||
08158721 | 5217 | bool rc = false; |
b2d5a7ee | 5218 | |
e7dda1ff VS |
5219 | int minWidth = GetMinWidth(), |
5220 | minHeight = GetMinHeight(), | |
5221 | maxWidth = GetMaxWidth(), | |
5222 | maxHeight = GetMaxHeight(); | |
42e69d6b | 5223 | |
422d0ff0 | 5224 | if ( minWidth != wxDefaultCoord ) |
2d0a075d | 5225 | { |
e7dda1ff | 5226 | info->ptMinTrackSize.x = minWidth; |
08158721 | 5227 | rc = true; |
2d0a075d | 5228 | } |
2bda0e17 | 5229 | |
422d0ff0 | 5230 | if ( minHeight != wxDefaultCoord ) |
42e69d6b | 5231 | { |
e7dda1ff | 5232 | info->ptMinTrackSize.y = minHeight; |
08158721 | 5233 | rc = true; |
42e69d6b | 5234 | } |
2bda0e17 | 5235 | |
422d0ff0 | 5236 | if ( maxWidth != wxDefaultCoord ) |
42e69d6b | 5237 | { |
e7dda1ff | 5238 | info->ptMaxTrackSize.x = maxWidth; |
08158721 | 5239 | rc = true; |
2d0a075d | 5240 | } |
2bda0e17 | 5241 | |
422d0ff0 | 5242 | if ( maxHeight != wxDefaultCoord ) |
42e69d6b | 5243 | { |
e7dda1ff | 5244 | info->ptMaxTrackSize.y = maxHeight; |
08158721 | 5245 | rc = true; |
42e69d6b | 5246 | } |
2bda0e17 | 5247 | |
42e69d6b | 5248 | return rc; |
7f0586ef | 5249 | #endif |
42e69d6b | 5250 | } |
2d0a075d | 5251 | |
42e69d6b VZ |
5252 | // --------------------------------------------------------------------------- |
5253 | // command messages | |
5254 | // --------------------------------------------------------------------------- | |
5255 | ||
0edeeb6d | 5256 | bool wxWindowMSW::HandleCommand(WXWORD id_, WXWORD cmd, WXHWND control) |
42e69d6b | 5257 | { |
0edeeb6d VZ |
5258 | // sign extend to int from short before comparing with the other int ids |
5259 | int id = (signed short)id_; | |
5260 | ||
1e6feb95 | 5261 | #if wxUSE_MENUS_NATIVE |
8c290175 | 5262 | if ( !cmd && wxCurrentPopupMenu ) |
42e69d6b VZ |
5263 | { |
5264 | wxMenu *popupMenu = wxCurrentPopupMenu; | |
5265 | wxCurrentPopupMenu = NULL; | |
5266 | ||
5267 | return popupMenu->MSWCommand(cmd, id); | |
5268 | } | |
1e6feb95 | 5269 | #endif // wxUSE_MENUS_NATIVE |
42e69d6b | 5270 | |
8c290175 | 5271 | wxWindow *win = NULL; |
71292fab VZ |
5272 | |
5273 | // first try to find it from HWND - this works even with the broken | |
5274 | // programs using the same ids for different controls | |
5275 | if ( control ) | |
42e69d6b | 5276 | { |
71292fab | 5277 | win = wxFindWinFromHandle(control); |
b853f898 | 5278 | } |
2f4ef631 | 5279 | |
71292fab VZ |
5280 | // try the id |
5281 | if ( !win ) | |
b853f898 | 5282 | { |
0edeeb6d | 5283 | win = FindItem(id); |
42e69d6b VZ |
5284 | } |
5285 | ||
5286 | if ( win ) | |
b94ae1ea | 5287 | { |
42e69d6b | 5288 | return win->MSWCommand(cmd, id); |
b94ae1ea VZ |
5289 | } |
5290 | ||
5291 | // the messages sent from the in-place edit control used by the treectrl | |
5292 | // for label editing have id == 0, but they should _not_ be treated as menu | |
5293 | // messages (they are EN_XXX ones, in fact) so don't translate anything | |
ce7fe42e | 5294 | // coming from a control to wxEVT_MENU |
b94ae1ea | 5295 | if ( !control ) |
a84fc80b | 5296 | { |
ce7fe42e | 5297 | wxCommandEvent event(wxEVT_MENU, id); |
a84fc80b | 5298 | event.SetEventObject(this); |
a84fc80b | 5299 | event.SetInt(id); |
b94ae1ea | 5300 | |
937013e0 | 5301 | return HandleWindowEvent(event); |
a84fc80b | 5302 | } |
6fe19057 VZ |
5303 | else |
5304 | { | |
01d2bf4d | 5305 | #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__) |
6fe19057 VZ |
5306 | // the text ctrl which is logically part of wxSpinCtrl sends WM_COMMAND |
5307 | // notifications to its parent which we want to reflect back to | |
5308 | // wxSpinCtrl | |
5309 | wxSpinCtrl *spin = wxSpinCtrl::GetSpinForTextCtrl(control); | |
5310 | if ( spin && spin->ProcessTextCommand(cmd, id) ) | |
08158721 | 5311 | return true; |
6fe19057 | 5312 | #endif // wxUSE_SPINCTRL |
42e69d6b | 5313 | |
01d2bf4d WS |
5314 | #if wxUSE_CHOICE && defined(__SMARTPHONE__) |
5315 | // the listbox ctrl which is logically part of wxChoice sends WM_COMMAND | |
5316 | // notifications to its parent which we want to reflect back to | |
5317 | // wxChoice | |
5318 | wxChoice *choice = wxChoice::GetChoiceForListBox(control); | |
5319 | if ( choice && choice->MSWCommand(cmd, id) ) | |
5320 | return true; | |
5321 | #endif | |
5322 | } | |
5323 | ||
08158721 | 5324 | return false; |
2bda0e17 KB |
5325 | } |
5326 | ||
42e69d6b VZ |
5327 | // --------------------------------------------------------------------------- |
5328 | // mouse events | |
5329 | // --------------------------------------------------------------------------- | |
5330 | ||
1e6feb95 VZ |
5331 | void wxWindowMSW::InitMouseEvent(wxMouseEvent& event, |
5332 | int x, int y, | |
5333 | WXUINT flags) | |
42e69d6b | 5334 | { |
1e6feb95 VZ |
5335 | // our client coords are not quite the same as Windows ones |
5336 | wxPoint pt = GetClientAreaOrigin(); | |
5337 | event.m_x = x - pt.x; | |
5338 | event.m_y = y - pt.y; | |
5339 | ||
5340 | event.m_shiftDown = (flags & MK_SHIFT) != 0; | |
5341 | event.m_controlDown = (flags & MK_CONTROL) != 0; | |
5342 | event.m_leftDown = (flags & MK_LBUTTON) != 0; | |
5343 | event.m_middleDown = (flags & MK_MBUTTON) != 0; | |
5344 | event.m_rightDown = (flags & MK_RBUTTON) != 0; | |
2f68482e | 5345 | #ifdef wxHAS_XBUTTON |
01101e2d VZ |
5346 | event.m_aux1Down = (flags & MK_XBUTTON1) != 0; |
5347 | event.m_aux2Down = (flags & MK_XBUTTON2) != 0; | |
2f68482e | 5348 | #endif // wxHAS_XBUTTON |
6719c06a | 5349 | event.m_altDown = ::wxIsAltDown(); |
1e6feb95 | 5350 | |
f0b1ccde | 5351 | #ifndef __WXWINCE__ |
1bf77ee5 | 5352 | event.SetTimestamp(::GetMessageTime()); |
f0b1ccde JS |
5353 | #endif |
5354 | ||
687706f5 | 5355 | event.SetEventObject(this); |
fb35f0c7 | 5356 | event.SetId(GetId()); |
42e69d6b VZ |
5357 | |
5358 | #if wxUSE_MOUSEEVENT_HACK | |
c358ea41 VZ |
5359 | gs_lastMouseEvent.pos = ClientToScreen(wxPoint(x, y)); |
5360 | gs_lastMouseEvent.type = event.GetEventType(); | |
42e69d6b | 5361 | #endif // wxUSE_MOUSEEVENT_HACK |
2bda0e17 KB |
5362 | } |
5363 | ||
42b1fb63 | 5364 | #ifdef __WXWINCE__ |
dfafa702 VZ |
5365 | // Windows doesn't send the mouse events to the static controls (which are |
5366 | // transparent in the sense that their WM_NCHITTEST handler returns | |
5367 | // HTTRANSPARENT) at all but we want all controls to receive the mouse events | |
5368 | // and so we manually check if we don't have a child window under mouse and if | |
5369 | // we do, send the event to it instead of the window Windows had sent WM_XXX | |
5370 | // to. | |
5371 | // | |
5372 | // Notice that this is not done for the mouse move events because this could | |
5373 | // (would?) be too slow, but only for clicks which means that the static texts | |
5374 | // still don't get move, enter nor leave events. | |
42b1fb63 | 5375 | static wxWindowMSW *FindWindowForMouseEvent(wxWindowMSW *win, int *x, int *y) |
dfafa702 | 5376 | { |
9a83f860 | 5377 | wxCHECK_MSG( x && y, win, wxT("NULL pointer in FindWindowForMouseEvent") ); |
dfafa702 VZ |
5378 | |
5379 | // first try to find a non transparent child: this allows us to send events | |
5380 | // to a static text which is inside a static box, for example | |
5381 | POINT pt = { *x, *y }; | |
5382 | HWND hwnd = GetHwndOf(win), | |
5383 | hwndUnderMouse; | |
5384 | ||
7f0586ef JS |
5385 | #ifdef __WXWINCE__ |
5386 | hwndUnderMouse = ::ChildWindowFromPoint | |
5387 | ( | |
5388 | hwnd, | |
5389 | pt | |
5390 | ); | |
5391 | #else | |
dfafa702 VZ |
5392 | hwndUnderMouse = ::ChildWindowFromPointEx |
5393 | ( | |
5394 | hwnd, | |
5395 | pt, | |
5396 | CWP_SKIPINVISIBLE | | |
5397 | CWP_SKIPDISABLED | | |
5398 | CWP_SKIPTRANSPARENT | |
5399 | ); | |
7f0586ef | 5400 | #endif |
dfafa702 VZ |
5401 | |
5402 | if ( !hwndUnderMouse || hwndUnderMouse == hwnd ) | |
dfafa702 VZ |
5403 | { |
5404 | // now try any child window at all | |
5405 | hwndUnderMouse = ::ChildWindowFromPoint(hwnd, pt); | |
5406 | } | |
5407 | ||
5408 | // check that we have a child window which is susceptible to receive mouse | |
5409 | // events: for this it must be shown and enabled | |
5410 | if ( hwndUnderMouse && | |
5411 | hwndUnderMouse != hwnd && | |
5412 | ::IsWindowVisible(hwndUnderMouse) && | |
5413 | ::IsWindowEnabled(hwndUnderMouse) ) | |
5414 | { | |
dca0f651 | 5415 | wxWindow *winUnderMouse = wxFindWinFromHandle(hwndUnderMouse); |
dfafa702 VZ |
5416 | if ( winUnderMouse ) |
5417 | { | |
5418 | // translate the mouse coords to the other window coords | |
5419 | win->ClientToScreen(x, y); | |
5420 | winUnderMouse->ScreenToClient(x, y); | |
5421 | ||
5422 | win = winUnderMouse; | |
5423 | } | |
5424 | } | |
5425 | ||
5426 | return win; | |
5427 | } | |
42b1fb63 | 5428 | #endif // __WXWINCE__ |
dfafa702 | 5429 | |
1e6feb95 | 5430 | bool wxWindowMSW::HandleMouseEvent(WXUINT msg, int x, int y, WXUINT flags) |
2bda0e17 | 5431 | { |
42e69d6b | 5432 | // the mouse events take consecutive IDs from WM_MOUSEFIRST to |
34621cc5 | 5433 | // WM_MOUSELAST, so it's enough to subtract WM_MOUSEMOVE == WM_MOUSEFIRST |
42e69d6b VZ |
5434 | // from the message id and take the value in the table to get wxWin event |
5435 | // id | |
5436 | static const wxEventType eventsMouse[] = | |
5437 | { | |
5438 | wxEVT_MOTION, | |
5439 | wxEVT_LEFT_DOWN, | |
5440 | wxEVT_LEFT_UP, | |
5441 | wxEVT_LEFT_DCLICK, | |
5442 | wxEVT_RIGHT_DOWN, | |
5443 | wxEVT_RIGHT_UP, | |
5444 | wxEVT_RIGHT_DCLICK, | |
5445 | wxEVT_MIDDLE_DOWN, | |
5446 | wxEVT_MIDDLE_UP, | |
01101e2d VZ |
5447 | wxEVT_MIDDLE_DCLICK, |
5448 | 0, // this one is for wxEVT_MOTION which is not used here | |
5449 | wxEVT_AUX1_DOWN, | |
5450 | wxEVT_AUX1_UP, | |
5451 | wxEVT_AUX1_DCLICK, | |
5452 | wxEVT_AUX2_DOWN, | |
5453 | wxEVT_AUX2_UP, | |
5454 | wxEVT_AUX2_DCLICK | |
42e69d6b | 5455 | }; |
2bda0e17 | 5456 | |
2f68482e | 5457 | #ifdef wxHAS_XBUTTON |
070d6391 | 5458 | // the same messages are used for both auxiliary mouse buttons so we need |
01101e2d VZ |
5459 | // to adjust the index manually |
5460 | switch ( msg ) | |
5461 | { | |
5462 | case WM_XBUTTONDOWN: | |
5463 | case WM_XBUTTONUP: | |
5464 | case WM_XBUTTONDBLCLK: | |
5465 | if ( flags & MK_XBUTTON2 ) | |
5466 | msg += wxEVT_AUX2_DOWN - wxEVT_AUX1_DOWN; | |
5467 | } | |
2f68482e | 5468 | #endif // wxHAS_XBUTTON |
01101e2d | 5469 | |
42e69d6b VZ |
5470 | wxMouseEvent event(eventsMouse[msg - WM_MOUSEMOVE]); |
5471 | InitMouseEvent(event, x, y, flags); | |
5472 | ||
937013e0 | 5473 | return HandleWindowEvent(event); |
42e69d6b VZ |
5474 | } |
5475 | ||
1e6feb95 | 5476 | bool wxWindowMSW::HandleMouseMove(int x, int y, WXUINT flags) |
42e69d6b VZ |
5477 | { |
5478 | if ( !m_mouseInWindow ) | |
2bda0e17 | 5479 | { |
1e6feb95 VZ |
5480 | // it would be wrong to assume that just because we get a mouse move |
5481 | // event that the mouse is inside the window: although this is usually | |
5482 | // true, it is not if we had captured the mouse, so we need to check | |
5483 | // the mouse coordinates here | |
5484 | if ( !HasCapture() || IsMouseInWindow() ) | |
5485 | { | |
5486 | // Generate an ENTER event | |
08158721 | 5487 | m_mouseInWindow = true; |
e5297b7f | 5488 | |
4e5c6c33 | 5489 | #ifdef HAVE_TRACKMOUSEEVENT |
aafb9978 VZ |
5490 | typedef BOOL (WINAPI *_TrackMouseEvent_t)(LPTRACKMOUSEEVENT); |
5491 | #ifdef __WXWINCE__ | |
5492 | static const _TrackMouseEvent_t | |
5493 | s_pfn_TrackMouseEvent = _TrackMouseEvent; | |
5494 | #else // !__WXWINCE__ | |
5495 | static _TrackMouseEvent_t s_pfn_TrackMouseEvent; | |
5496 | static bool s_initDone = false; | |
5497 | if ( !s_initDone ) | |
5498 | { | |
e2d4ce7d | 5499 | // see comment in wxApp::GetComCtl32Version() explaining the |
5a9379d7 | 5500 | // use of wxLoadedDLL |
9a83f860 | 5501 | wxLoadedDLL dllComCtl32(wxT("comctl32.dll")); |
aafb9978 VZ |
5502 | if ( dllComCtl32.IsLoaded() ) |
5503 | { | |
5504 | s_pfn_TrackMouseEvent = (_TrackMouseEvent_t) | |
9a83f860 | 5505 | dllComCtl32.RawGetSymbol(wxT("_TrackMouseEvent")); |
aafb9978 VZ |
5506 | } |
5507 | ||
5508 | s_initDone = true; | |
aafb9978 VZ |
5509 | } |
5510 | ||
5511 | if ( s_pfn_TrackMouseEvent ) | |
5512 | #endif // __WXWINCE__/!__WXWINCE__ | |
5513 | { | |
5514 | WinStruct<TRACKMOUSEEVENT> trackinfo; | |
4e5c6c33 | 5515 | |
aafb9978 VZ |
5516 | trackinfo.dwFlags = TME_LEAVE; |
5517 | trackinfo.hwndTrack = GetHwnd(); | |
5518 | ||
5519 | (*s_pfn_TrackMouseEvent)(&trackinfo); | |
5520 | } | |
4e5c6c33 VZ |
5521 | #endif // HAVE_TRACKMOUSEEVENT |
5522 | ||
1e6feb95 VZ |
5523 | wxMouseEvent event(wxEVT_ENTER_WINDOW); |
5524 | InitMouseEvent(event, x, y, flags); | |
42e69d6b | 5525 | |
937013e0 | 5526 | (void)HandleWindowEvent(event); |
1e6feb95 | 5527 | } |
42e69d6b | 5528 | } |
cff58b52 | 5529 | #ifdef HAVE_TRACKMOUSEEVENT |
aafb9978 | 5530 | else // mouse not in window |
cff58b52 KH |
5531 | { |
5532 | // Check if we need to send a LEAVE event | |
5533 | // Windows doesn't send WM_MOUSELEAVE if the mouse has been captured so | |
5534 | // send it here if we are using native mouse leave tracking | |
5535 | if ( HasCapture() && !IsMouseInWindow() ) | |
5536 | { | |
5537 | GenerateMouseLeave(); | |
5538 | } | |
5539 | } | |
1ca78aa1 | 5540 | #endif // HAVE_TRACKMOUSEEVENT |
42e69d6b VZ |
5541 | |
5542 | #if wxUSE_MOUSEEVENT_HACK | |
c358ea41 VZ |
5543 | // Windows often generates mouse events even if mouse position hasn't |
5544 | // changed (http://article.gmane.org/gmane.comp.lib.wxwidgets.devel/66576) | |
5545 | // | |
5546 | // Filter this out as it can result in unexpected behaviour compared to | |
5547 | // other platforms | |
5548 | if ( gs_lastMouseEvent.type == wxEVT_RIGHT_DOWN || | |
5549 | gs_lastMouseEvent.type == wxEVT_LEFT_DOWN || | |
5550 | gs_lastMouseEvent.type == wxEVT_MIDDLE_DOWN || | |
5551 | gs_lastMouseEvent.type == wxEVT_MOTION ) | |
5552 | { | |
5553 | if ( ClientToScreen(wxPoint(x, y)) == gs_lastMouseEvent.pos ) | |
5554 | { | |
5555 | gs_lastMouseEvent.type = wxEVT_MOTION; | |
42e69d6b | 5556 | |
c358ea41 VZ |
5557 | return false; |
5558 | } | |
42e69d6b VZ |
5559 | } |
5560 | #endif // wxUSE_MOUSEEVENT_HACK | |
5561 | ||
5562 | return HandleMouseEvent(WM_MOUSEMOVE, x, y, flags); | |
5563 | } | |
5564 | ||
d2c52078 | 5565 | |
b9e52a19 VZ |
5566 | bool |
5567 | wxWindowMSW::HandleMouseWheel(wxMouseWheelAxis axis, | |
5568 | WXWPARAM wParam, WXLPARAM lParam) | |
d2c52078 RD |
5569 | { |
5570 | #if wxUSE_MOUSEWHEEL | |
3c297348 VZ |
5571 | // notice that WM_MOUSEWHEEL position is in screen coords (as it's |
5572 | // forwarded up to the parent by DefWindowProc()) and not in the client | |
5573 | // ones as all the other messages, translate them to the client coords for | |
5574 | // consistency | |
5575 | const wxPoint | |
5576 | pt = ScreenToClient(wxPoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam))); | |
d2c52078 | 5577 | wxMouseEvent event(wxEVT_MOUSEWHEEL); |
3c297348 | 5578 | InitMouseEvent(event, pt.x, pt.y, LOWORD(wParam)); |
d2c52078 RD |
5579 | event.m_wheelRotation = (short)HIWORD(wParam); |
5580 | event.m_wheelDelta = WHEEL_DELTA; | |
b9e52a19 | 5581 | event.m_wheelAxis = axis; |
d2c52078 | 5582 | |
0f7a546d RD |
5583 | static int s_linesPerRotation = -1; |
5584 | if ( s_linesPerRotation == -1 ) | |
5585 | { | |
5586 | if ( !::SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0, | |
5587 | &s_linesPerRotation, 0)) | |
5588 | { | |
5589 | // this is not supposed to happen | |
9a83f860 | 5590 | wxLogLastError(wxT("SystemParametersInfo(GETWHEELSCROLLLINES)")); |
0f7a546d RD |
5591 | |
5592 | // the default is 3, so use it if SystemParametersInfo() failed | |
5593 | s_linesPerRotation = 3; | |
5594 | } | |
5595 | } | |
d2c52078 | 5596 | |
0f7a546d | 5597 | event.m_linesPerAction = s_linesPerRotation; |
937013e0 | 5598 | return HandleWindowEvent(event); |
0f7a546d | 5599 | |
51e4e266 VZ |
5600 | #else // !wxUSE_MOUSEWHEEL |
5601 | wxUnusedVar(wParam); | |
5602 | wxUnusedVar(lParam); | |
38caaa61 | 5603 | |
08158721 | 5604 | return false; |
51e4e266 | 5605 | #endif // wxUSE_MOUSEWHEEL/!wxUSE_MOUSEWHEEL |
d2c52078 RD |
5606 | } |
5607 | ||
51e4e266 VZ |
5608 | void wxWindowMSW::GenerateMouseLeave() |
5609 | { | |
5610 | m_mouseInWindow = false; | |
5611 | ||
5612 | int state = 0; | |
5613 | if ( wxIsShiftDown() ) | |
5614 | state |= MK_SHIFT; | |
5615 | if ( wxIsCtrlDown() ) | |
5616 | state |= MK_CONTROL; | |
5617 | ||
5618 | // Only the high-order bit should be tested | |
5619 | if ( GetKeyState( VK_LBUTTON ) & (1<<15) ) | |
5620 | state |= MK_LBUTTON; | |
5621 | if ( GetKeyState( VK_MBUTTON ) & (1<<15) ) | |
5622 | state |= MK_MBUTTON; | |
5623 | if ( GetKeyState( VK_RBUTTON ) & (1<<15) ) | |
5624 | state |= MK_RBUTTON; | |
5625 | ||
5626 | POINT pt; | |
d6c37f5b | 5627 | wxGetCursorPosMSW(&pt); |
51e4e266 VZ |
5628 | |
5629 | // we need to have client coordinates here for symmetry with | |
5630 | // wxEVT_ENTER_WINDOW | |
5631 | RECT rect = wxGetWindowRect(GetHwnd()); | |
5632 | pt.x -= rect.left; | |
5633 | pt.y -= rect.top; | |
5634 | ||
5635 | wxMouseEvent event(wxEVT_LEAVE_WINDOW); | |
5636 | InitMouseEvent(event, pt.x, pt.y, state); | |
5637 | ||
937013e0 | 5638 | (void)HandleWindowEvent(event); |
51e4e266 | 5639 | } |
d2c52078 | 5640 | |
42e69d6b VZ |
5641 | // --------------------------------------------------------------------------- |
5642 | // keyboard handling | |
5643 | // --------------------------------------------------------------------------- | |
5644 | ||
246117d4 VZ |
5645 | namespace |
5646 | { | |
5647 | ||
5648 | // Implementation of InitAnyKeyEvent() which can also be used when there is no | |
5649 | // associated window: this can happen for the wxEVT_CHAR_HOOK events created by | |
5650 | // the global keyboard hook (e.g. the event might have happened in a non-wx | |
5651 | // window). | |
b6885972 | 5652 | void |
246117d4 VZ |
5653 | MSWInitAnyKeyEvent(wxKeyEvent& event, |
5654 | WXWPARAM wParam, | |
5655 | WXLPARAM lParam, | |
eb7a47b7 | 5656 | const wxWindowBase *win /* may be NULL */) |
c42404a5 | 5657 | { |
246117d4 VZ |
5658 | if ( win ) |
5659 | { | |
5660 | event.SetId(win->GetId()); | |
eb7a47b7 | 5661 | event.SetEventObject(const_cast<wxWindowBase *>(win)); |
246117d4 VZ |
5662 | } |
5663 | else // No associated window. | |
5664 | { | |
5665 | // Use wxID_ANY for compatibility with the old code even if wxID_NONE | |
5666 | // would arguably make more sense. | |
5667 | event.SetId(wxID_ANY); | |
5668 | } | |
5669 | ||
3f7bc32b VZ |
5670 | event.m_shiftDown = wxIsShiftDown(); |
5671 | event.m_controlDown = wxIsCtrlDown(); | |
c42404a5 VZ |
5672 | event.m_altDown = (HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN; |
5673 | ||
9c7df356 VZ |
5674 | event.m_rawCode = (wxUint32) wParam; |
5675 | event.m_rawFlags = (wxUint32) lParam; | |
f0b1ccde | 5676 | #ifndef __WXWINCE__ |
1bf77ee5 | 5677 | event.SetTimestamp(::GetMessageTime()); |
f0b1ccde | 5678 | #endif |
246117d4 VZ |
5679 | } |
5680 | ||
5681 | } // anonymous namespace | |
5682 | ||
5683 | void | |
5684 | wxWindowMSW::InitAnyKeyEvent(wxKeyEvent& event, | |
5685 | WXWPARAM wParam, | |
5686 | WXLPARAM lParam) const | |
5687 | { | |
5688 | MSWInitAnyKeyEvent(event, wParam, lParam, this); | |
b6885972 VZ |
5689 | } |
5690 | ||
5691 | wxKeyEvent | |
5692 | wxWindowMSW::CreateKeyEvent(wxEventType evType, | |
5693 | WXWPARAM wParam, | |
5694 | WXLPARAM lParam) const | |
5695 | { | |
5696 | // Catch any attempts to use this with WM_CHAR, it wouldn't work because | |
5697 | // wParam is supposed to be a virtual key and not a character here. | |
5698 | wxASSERT_MSG( evType != wxEVT_CHAR && evType != wxEVT_CHAR_HOOK, | |
5699 | "CreateKeyEvent() can't be used for char events" ); | |
5700 | ||
5701 | wxKeyEvent event(evType); | |
5702 | InitAnyKeyEvent(event, wParam, lParam); | |
5703 | ||
5844ad30 VZ |
5704 | event.m_keyCode = wxMSWKeyboard::VKToWX |
5705 | ( | |
5706 | wParam, | |
5707 | lParam | |
b6885972 | 5708 | #if wxUSE_UNICODE |
5844ad30 | 5709 | , &event.m_uniChar |
b6885972 | 5710 | #endif // wxUSE_UNICODE |
5844ad30 | 5711 | ); |
c42404a5 VZ |
5712 | |
5713 | return event; | |
5714 | } | |
5715 | ||
1afe4f9b VZ |
5716 | wxKeyEvent |
5717 | wxWindowMSW::CreateCharEvent(wxEventType evType, | |
5718 | WXWPARAM wParam, | |
5719 | WXLPARAM lParam) const | |
42e69d6b | 5720 | { |
1afe4f9b | 5721 | wxKeyEvent event(evType); |
b6885972 VZ |
5722 | InitAnyKeyEvent(event, wParam, lParam); |
5723 | ||
5724 | #if wxUSE_UNICODE | |
5725 | // TODO: wParam uses UTF-16 so this is incorrect for characters outside of | |
5726 | // the BMP, we should use WM_UNICHAR to handle them. | |
5727 | event.m_uniChar = wParam; | |
5728 | #endif // wxUSE_UNICODE | |
5729 | ||
5730 | // Set non-Unicode key code too for compatibility if possible. | |
5731 | if ( wParam < 0x80 ) | |
42e69d6b | 5732 | { |
b6885972 VZ |
5733 | // It's an ASCII character, no need to translate it. |
5734 | event.m_keyCode = wParam; | |
2d0a075d | 5735 | } |
b6885972 | 5736 | else |
c42404a5 | 5737 | { |
b6885972 VZ |
5738 | // Check if this key can be represented (as a single character) in the |
5739 | // current locale. | |
5740 | const wchar_t wc = wParam; | |
5741 | char ch; | |
5742 | if ( wxConvLibc.FromWChar(&ch, 1, &wc, 1) != wxCONV_FAILED ) | |
c42404a5 | 5743 | { |
b6885972 VZ |
5744 | // For compatibility continue to provide the key code in this field |
5745 | // even though using GetUnicodeKey() is recommended now. | |
5746 | event.m_keyCode = static_cast<unsigned char>(ch); | |
c42404a5 | 5747 | } |
b6885972 VZ |
5748 | //else: Key can't be represented in the current locale, leave m_keyCode |
5749 | // as WXK_NONE and use GetUnicodeKey() to access the character. | |
9c7df356 | 5750 | } |
42e69d6b | 5751 | |
2b5f62a0 VZ |
5752 | // the alphanumeric keys produced by pressing AltGr+something on European |
5753 | // keyboards have both Ctrl and Alt modifiers which may confuse the user | |
5754 | // code as, normally, keys with Ctrl and/or Alt don't result in anything | |
5755 | // alphanumeric, so pretend that there are no modifiers at all (the | |
5756 | // KEY_DOWN event would still have the correct modifiers if they're really | |
5757 | // needed) | |
5758 | if ( event.m_controlDown && event.m_altDown && | |
b6885972 | 5759 | (event.m_keyCode >= 32 && event.m_keyCode < 256) ) |
9c7df356 | 5760 | { |
2b5f62a0 | 5761 | event.m_controlDown = |
08158721 | 5762 | event.m_altDown = false; |
2d0a075d | 5763 | } |
c42404a5 | 5764 | |
1afe4f9b VZ |
5765 | return event; |
5766 | } | |
5767 | ||
5768 | // isASCII is true only when we're called from WM_CHAR handler and not from | |
5769 | // WM_KEYDOWN one | |
5770 | bool wxWindowMSW::HandleChar(WXWPARAM wParam, WXLPARAM lParam) | |
5771 | { | |
5772 | wxKeyEvent event(CreateCharEvent(wxEVT_CHAR, wParam, lParam)); | |
937013e0 | 5773 | return HandleWindowEvent(event); |
2bda0e17 KB |
5774 | } |
5775 | ||
1e6feb95 | 5776 | bool wxWindowMSW::HandleKeyDown(WXWPARAM wParam, WXLPARAM lParam) |
2bda0e17 | 5777 | { |
b6885972 | 5778 | wxKeyEvent event(CreateKeyEvent(wxEVT_KEY_DOWN, wParam, lParam)); |
937013e0 | 5779 | return HandleWindowEvent(event); |
2bda0e17 KB |
5780 | } |
5781 | ||
1e6feb95 | 5782 | bool wxWindowMSW::HandleKeyUp(WXWPARAM wParam, WXLPARAM lParam) |
2bda0e17 | 5783 | { |
b6885972 | 5784 | wxKeyEvent event(CreateKeyEvent(wxEVT_KEY_UP, wParam, lParam)); |
937013e0 | 5785 | return HandleWindowEvent(event); |
2bda0e17 KB |
5786 | } |
5787 | ||
53a118d6 | 5788 | #if wxUSE_MENUS |
0c0d1521 WS |
5789 | int wxWindowMSW::HandleMenuChar(int WXUNUSED_IN_WINCE(chAccel), |
5790 | WXLPARAM WXUNUSED_IN_WINCE(lParam)) | |
b74cce40 | 5791 | { |
7f0586ef JS |
5792 | // FIXME: implement GetMenuItemCount for WinCE, possibly |
5793 | // in terms of GetMenuItemInfo | |
5794 | #ifndef __WXWINCE__ | |
b74cce40 VZ |
5795 | const HMENU hmenu = (HMENU)lParam; |
5796 | ||
be85a191 | 5797 | WinStruct<MENUITEMINFO> mii; |
c70ffbdb VZ |
5798 | |
5799 | // we could use MIIM_FTYPE here as we only need to know if the item is | |
5800 | // ownerdrawn or not and not dwTypeData which MIIM_TYPE also returns, but | |
5801 | // MIIM_FTYPE is not supported under Win95 | |
b74cce40 VZ |
5802 | mii.fMask = MIIM_TYPE | MIIM_DATA; |
5803 | ||
5804 | // find if we have this letter in any owner drawn item | |
5805 | const int count = ::GetMenuItemCount(hmenu); | |
5806 | for ( int i = 0; i < count; i++ ) | |
5807 | { | |
c70ffbdb VZ |
5808 | // previous loop iteration could modify it, reset it back before |
5809 | // calling GetMenuItemInfo() to prevent it from overflowing dwTypeData | |
5810 | mii.cch = 0; | |
5811 | ||
b74cce40 VZ |
5812 | if ( ::GetMenuItemInfo(hmenu, i, TRUE, &mii) ) |
5813 | { | |
5814 | if ( mii.fType == MFT_OWNERDRAW ) | |
5815 | { | |
5816 | // dwItemData member of the MENUITEMINFO is a | |
5817 | // pointer to the associated wxMenuItem -- see the | |
5818 | // menu creation code | |
5819 | wxMenuItem *item = (wxMenuItem*)mii.dwItemData; | |
5820 | ||
4193a1a4 | 5821 | const wxString label(item->GetItemLabel()); |
017dc06b | 5822 | const wxChar *p = wxStrchr(label.t_str(), wxT('&')); |
b74cce40 VZ |
5823 | while ( p++ ) |
5824 | { | |
9a83f860 | 5825 | if ( *p == wxT('&') ) |
b74cce40 VZ |
5826 | { |
5827 | // this is not the accel char, find the real one | |
9a83f860 | 5828 | p = wxStrchr(p + 1, wxT('&')); |
b74cce40 VZ |
5829 | } |
5830 | else // got the accel char | |
5831 | { | |
5832 | // FIXME-UNICODE: this comparison doesn't risk to work | |
5833 | // for non ASCII accelerator characters I'm afraid, but | |
5834 | // what can we do? | |
907173e5 | 5835 | if ( (wchar_t)wxToupper(*p) == (wchar_t)chAccel ) |
b74cce40 VZ |
5836 | { |
5837 | return i; | |
5838 | } | |
5839 | else | |
5840 | { | |
5841 | // this one doesn't match | |
5842 | break; | |
5843 | } | |
5844 | } | |
5845 | } | |
5846 | } | |
5847 | } | |
e39af974 | 5848 | else // failed to get the menu text? |
b74cce40 | 5849 | { |
c70ffbdb | 5850 | // it's not fatal, so don't show error, but still log it |
9a83f860 | 5851 | wxLogLastError(wxT("GetMenuItemInfo")); |
b74cce40 VZ |
5852 | } |
5853 | } | |
7f0586ef | 5854 | #endif |
b74cce40 VZ |
5855 | return wxNOT_FOUND; |
5856 | } | |
5857 | ||
17a04304 VZ |
5858 | #endif // wxUSE_MENUS |
5859 | ||
5860 | bool wxWindowMSW::HandleClipboardEvent(WXUINT nMsg) | |
78c91815 | 5861 | { |
ce7fe42e VZ |
5862 | const wxEventType type = nMsg == WM_CUT ? wxEVT_TEXT_CUT |
5863 | : nMsg == WM_COPY ? wxEVT_TEXT_COPY | |
5864 | : /* nMsg == WM_PASTE */ wxEVT_TEXT_PASTE; | |
78c91815 VZ |
5865 | wxClipboardTextEvent evt(type, GetId()); |
5866 | ||
5867 | evt.SetEventObject(this); | |
5868 | ||
937013e0 | 5869 | return HandleWindowEvent(evt); |
78c91815 VZ |
5870 | } |
5871 | ||
42e69d6b VZ |
5872 | // --------------------------------------------------------------------------- |
5873 | // joystick | |
5874 | // --------------------------------------------------------------------------- | |
5875 | ||
1e6feb95 | 5876 | bool wxWindowMSW::HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags) |
2bda0e17 | 5877 | { |
8cb172b4 | 5878 | #ifdef JOY_BUTTON1 |
42e69d6b VZ |
5879 | int change = 0; |
5880 | if ( flags & JOY_BUTTON1CHG ) | |
5881 | change = wxJOY_BUTTON1; | |
5882 | if ( flags & JOY_BUTTON2CHG ) | |
5883 | change = wxJOY_BUTTON2; | |
5884 | if ( flags & JOY_BUTTON3CHG ) | |
5885 | change = wxJOY_BUTTON3; | |
5886 | if ( flags & JOY_BUTTON4CHG ) | |
5887 | change = wxJOY_BUTTON4; | |
2bda0e17 | 5888 | |
42e69d6b VZ |
5889 | int buttons = 0; |
5890 | if ( flags & JOY_BUTTON1 ) | |
5891 | buttons |= wxJOY_BUTTON1; | |
5892 | if ( flags & JOY_BUTTON2 ) | |
5893 | buttons |= wxJOY_BUTTON2; | |
5894 | if ( flags & JOY_BUTTON3 ) | |
5895 | buttons |= wxJOY_BUTTON3; | |
5896 | if ( flags & JOY_BUTTON4 ) | |
5897 | buttons |= wxJOY_BUTTON4; | |
c085e333 | 5898 | |
42e69d6b VZ |
5899 | // the event ids aren't consecutive so we can't use table based lookup |
5900 | int joystick; | |
5901 | wxEventType eventType; | |
5902 | switch ( msg ) | |
5903 | { | |
5904 | case MM_JOY1MOVE: | |
5905 | joystick = 1; | |
5906 | eventType = wxEVT_JOY_MOVE; | |
5907 | break; | |
2bda0e17 | 5908 | |
42e69d6b VZ |
5909 | case MM_JOY2MOVE: |
5910 | joystick = 2; | |
5911 | eventType = wxEVT_JOY_MOVE; | |
5912 | break; | |
2bda0e17 | 5913 | |
42e69d6b VZ |
5914 | case MM_JOY1ZMOVE: |
5915 | joystick = 1; | |
5916 | eventType = wxEVT_JOY_ZMOVE; | |
5917 | break; | |
2bda0e17 | 5918 | |
42e69d6b VZ |
5919 | case MM_JOY2ZMOVE: |
5920 | joystick = 2; | |
5921 | eventType = wxEVT_JOY_ZMOVE; | |
5922 | break; | |
2bda0e17 | 5923 | |
42e69d6b VZ |
5924 | case MM_JOY1BUTTONDOWN: |
5925 | joystick = 1; | |
5926 | eventType = wxEVT_JOY_BUTTON_DOWN; | |
5927 | break; | |
2bda0e17 | 5928 | |
42e69d6b VZ |
5929 | case MM_JOY2BUTTONDOWN: |
5930 | joystick = 2; | |
5931 | eventType = wxEVT_JOY_BUTTON_DOWN; | |
5932 | break; | |
2bda0e17 | 5933 | |
42e69d6b VZ |
5934 | case MM_JOY1BUTTONUP: |
5935 | joystick = 1; | |
5936 | eventType = wxEVT_JOY_BUTTON_UP; | |
5937 | break; | |
5938 | ||
5939 | case MM_JOY2BUTTONUP: | |
5940 | joystick = 2; | |
5941 | eventType = wxEVT_JOY_BUTTON_UP; | |
5942 | break; | |
5943 | ||
5944 | default: | |
223d09f6 | 5945 | wxFAIL_MSG(wxT("no such joystick event")); |
2d0a075d | 5946 | |
08158721 | 5947 | return false; |
2d0a075d | 5948 | } |
2bda0e17 | 5949 | |
42e69d6b | 5950 | wxJoystickEvent event(eventType, buttons, joystick, change); |
3b2f80c2 VZ |
5951 | if ( eventType == wxEVT_JOY_ZMOVE ) |
5952 | event.SetZPosition(x); | |
5953 | else | |
5954 | event.SetPosition(wxPoint(x, y)); | |
42e69d6b | 5955 | event.SetEventObject(this); |
c085e333 | 5956 | |
937013e0 | 5957 | return HandleWindowEvent(event); |
8cb172b4 | 5958 | #else |
991420e6 WS |
5959 | wxUnusedVar(msg); |
5960 | wxUnusedVar(x); | |
5961 | wxUnusedVar(y); | |
5962 | wxUnusedVar(flags); | |
08158721 | 5963 | return false; |
8cb172b4 | 5964 | #endif |
2bda0e17 KB |
5965 | } |
5966 | ||
42e69d6b VZ |
5967 | // --------------------------------------------------------------------------- |
5968 | // scrolling | |
5969 | // --------------------------------------------------------------------------- | |
5970 | ||
1e6feb95 | 5971 | bool wxWindowMSW::MSWOnScroll(int orientation, WXWORD wParam, |
f4f734c1 | 5972 | WXWORD pos, WXHWND control) |
35bbb0c6 | 5973 | { |
a0d924c6 | 5974 | if ( control && control != m_hWnd ) // Prevent infinite recursion |
cc2b7472 | 5975 | { |
42e69d6b VZ |
5976 | wxWindow *child = wxFindWinFromHandle(control); |
5977 | if ( child ) | |
5978 | return child->MSWOnScroll(orientation, wParam, pos, control); | |
cc2b7472 | 5979 | } |
2bda0e17 | 5980 | |
9145664b | 5981 | wxScrollWinEvent event; |
42e69d6b VZ |
5982 | event.SetPosition(pos); |
5983 | event.SetOrientation(orientation); | |
687706f5 | 5984 | event.SetEventObject(this); |
cc2b7472 | 5985 | |
42e69d6b VZ |
5986 | switch ( wParam ) |
5987 | { | |
5988 | case SB_TOP: | |
687706f5 | 5989 | event.SetEventType(wxEVT_SCROLLWIN_TOP); |
42e69d6b | 5990 | break; |
cc2b7472 | 5991 | |
42e69d6b | 5992 | case SB_BOTTOM: |
687706f5 | 5993 | event.SetEventType(wxEVT_SCROLLWIN_BOTTOM); |
42e69d6b | 5994 | break; |
cc2b7472 | 5995 | |
42e69d6b | 5996 | case SB_LINEUP: |
687706f5 | 5997 | event.SetEventType(wxEVT_SCROLLWIN_LINEUP); |
42e69d6b | 5998 | break; |
2bda0e17 | 5999 | |
42e69d6b | 6000 | case SB_LINEDOWN: |
687706f5 | 6001 | event.SetEventType(wxEVT_SCROLLWIN_LINEDOWN); |
42e69d6b | 6002 | break; |
a02eb1d2 | 6003 | |
42e69d6b | 6004 | case SB_PAGEUP: |
687706f5 | 6005 | event.SetEventType(wxEVT_SCROLLWIN_PAGEUP); |
42e69d6b | 6006 | break; |
2bda0e17 | 6007 | |
42e69d6b | 6008 | case SB_PAGEDOWN: |
687706f5 | 6009 | event.SetEventType(wxEVT_SCROLLWIN_PAGEDOWN); |
42e69d6b | 6010 | break; |
2bda0e17 | 6011 | |
42e69d6b | 6012 | case SB_THUMBPOSITION: |
feda3011 | 6013 | case SB_THUMBTRACK: |
f6bcfd97 BP |
6014 | // under Win32, the scrollbar range and position are 32 bit integers, |
6015 | // but WM_[HV]SCROLL only carry the low 16 bits of them, so we must | |
6016 | // explicitly query the scrollbar for the correct position (this must | |
6017 | // be done only for these two SB_ events as they are the only one | |
6018 | // carrying the scrollbar position) | |
6019 | { | |
0cf5de11 | 6020 | WinStruct<SCROLLINFO> scrollInfo; |
f6bcfd97 BP |
6021 | scrollInfo.fMask = SIF_TRACKPOS; |
6022 | ||
6023 | if ( !::GetScrollInfo(GetHwnd(), | |
1ddb6d28 | 6024 | WXOrientToSB(orientation), |
f6bcfd97 BP |
6025 | &scrollInfo) ) |
6026 | { | |
3103e8a9 | 6027 | // Not necessarily an error, if there are no scrollbars yet. |
9a83f860 | 6028 | // wxLogLastError(wxT("GetScrollInfo")); |
f6bcfd97 BP |
6029 | } |
6030 | ||
6031 | event.SetPosition(scrollInfo.nTrackPos); | |
6032 | } | |
f6bcfd97 | 6033 | |
687706f5 | 6034 | event.SetEventType( wParam == SB_THUMBPOSITION |
f6bcfd97 | 6035 | ? wxEVT_SCROLLWIN_THUMBRELEASE |
687706f5 | 6036 | : wxEVT_SCROLLWIN_THUMBTRACK ); |
42e69d6b | 6037 | break; |
c085e333 | 6038 | |
42e69d6b | 6039 | default: |
08158721 | 6040 | return false; |
564b2609 | 6041 | } |
2bda0e17 | 6042 | |
937013e0 | 6043 | return HandleWindowEvent(event); |
2bda0e17 KB |
6044 | } |
6045 | ||
5acec112 VZ |
6046 | // ---------------------------------------------------------------------------- |
6047 | // custom message handlers | |
6048 | // ---------------------------------------------------------------------------- | |
6049 | ||
6050 | /* static */ bool | |
6051 | wxWindowMSW::MSWRegisterMessageHandler(int msg, MSWMessageHandler handler) | |
6052 | { | |
6053 | wxCHECK_MSG( gs_messageHandlers.find(msg) == gs_messageHandlers.end(), | |
9a83f860 | 6054 | false, wxT("registering handler for the same message twice") ); |
5acec112 VZ |
6055 | |
6056 | gs_messageHandlers[msg] = handler; | |
6057 | return true; | |
6058 | } | |
6059 | ||
6060 | /* static */ void | |
6061 | wxWindowMSW::MSWUnregisterMessageHandler(int msg, MSWMessageHandler handler) | |
6062 | { | |
6063 | const MSWMessageHandlers::iterator i = gs_messageHandlers.find(msg); | |
6064 | wxCHECK_RET( i != gs_messageHandlers.end() && i->second == handler, | |
9a83f860 | 6065 | wxT("unregistering non-registered handler?") ); |
5acec112 VZ |
6066 | |
6067 | gs_messageHandlers.erase(i); | |
6068 | } | |
6069 | ||
42e69d6b VZ |
6070 | // =========================================================================== |
6071 | // global functions | |
6072 | // =========================================================================== | |
6073 | ||
7a5e53ab | 6074 | void wxGetCharSize(WXHWND wnd, int *x, int *y, const wxFont& the_font) |
2bda0e17 | 6075 | { |
42e69d6b VZ |
6076 | TEXTMETRIC tm; |
6077 | HDC dc = ::GetDC((HWND) wnd); | |
42e69d6b | 6078 | HFONT was = 0; |
35bbb0c6 | 6079 | |
7a5e53ab VS |
6080 | // the_font.UseResource(); |
6081 | // the_font.RealizeResource(); | |
c57c2993 | 6082 | HFONT fnt = (HFONT)the_font.GetResourceHandle(); // const_cast |
7a5e53ab VS |
6083 | if ( fnt ) |
6084 | was = (HFONT) SelectObject(dc,fnt); | |
35bbb0c6 | 6085 | |
42e69d6b | 6086 | GetTextMetrics(dc, &tm); |
7a5e53ab | 6087 | if ( fnt && was ) |
2d0a075d | 6088 | { |
42e69d6b | 6089 | SelectObject(dc,was); |
2d0a075d | 6090 | } |
42e69d6b | 6091 | ReleaseDC((HWND)wnd, dc); |
0655ad29 VZ |
6092 | |
6093 | if ( x ) | |
6094 | *x = tm.tmAveCharWidth; | |
6095 | if ( y ) | |
6096 | *y = tm.tmHeight + tm.tmExternalLeading; | |
2bda0e17 | 6097 | |
7a5e53ab | 6098 | // the_font.ReleaseResource(); |
42e69d6b | 6099 | } |
c085e333 | 6100 | |
0c03f52d VZ |
6101 | // ---------------------------------------------------------------------------- |
6102 | // keyboard codes | |
6103 | // ---------------------------------------------------------------------------- | |
6104 | ||
6105 | namespace wxMSWKeyboard | |
6106 | { | |
6107 | ||
daf9622e VZ |
6108 | namespace |
6109 | { | |
6110 | ||
e6cef55a VZ |
6111 | // use the "extended" bit of lParam to distinguish extended keys from normal |
6112 | // keys as the same virtual key code is sent for both by Windows | |
daf9622e | 6113 | inline |
ed5bc8f1 | 6114 | int ChooseNormalOrExtended(int lParam, int keyNormal, int keyExtended) |
5004c3ad | 6115 | { |
ed5bc8f1 VZ |
6116 | // except that if lParam is 0, it means we don't have real lParam from |
6117 | // WM_KEYDOWN but are just translating just a VK constant (e.g. done from | |
6118 | // msw/treectrl.cpp when processing TVN_KEYDOWN) -- then assume this is a | |
6119 | // non-numpad (hence extended) key as this is a more common case | |
e6cef55a | 6120 | return !lParam || (HIWORD(lParam) & KF_EXTENDED) ? keyExtended : keyNormal; |
5004c3ad JG |
6121 | } |
6122 | ||
d5c21b02 | 6123 | // this array contains the Windows virtual key codes which map one to one to |
0c03f52d | 6124 | // WXK_xxx constants and is used in wxMSWKeyboard::VKToWX/WXToVK() below |
d5c21b02 VZ |
6125 | // |
6126 | // note that keys having a normal and numpad version (e.g. WXK_HOME and | |
6127 | // WXK_NUMPAD_HOME) are not included in this table as the mapping is not 1-to-1 | |
daf9622e | 6128 | const struct wxKeyMapping |
d5c21b02 VZ |
6129 | { |
6130 | int vk; | |
6131 | wxKeyCode wxk; | |
6132 | } gs_specialKeys[] = | |
6133 | { | |
6134 | { VK_CANCEL, WXK_CANCEL }, | |
6135 | { VK_BACK, WXK_BACK }, | |
6136 | { VK_TAB, WXK_TAB }, | |
6137 | { VK_CLEAR, WXK_CLEAR }, | |
6138 | { VK_SHIFT, WXK_SHIFT }, | |
6139 | { VK_CONTROL, WXK_CONTROL }, | |
6140 | { VK_MENU , WXK_ALT }, | |
6141 | { VK_PAUSE, WXK_PAUSE }, | |
6142 | { VK_CAPITAL, WXK_CAPITAL }, | |
6143 | { VK_SPACE, WXK_SPACE }, | |
6144 | { VK_ESCAPE, WXK_ESCAPE }, | |
6145 | { VK_SELECT, WXK_SELECT }, | |
6146 | { VK_PRINT, WXK_PRINT }, | |
6147 | { VK_EXECUTE, WXK_EXECUTE }, | |
e59c2b2d VZ |
6148 | { VK_SNAPSHOT, WXK_SNAPSHOT }, |
6149 | { VK_HELP, WXK_HELP }, | |
d5c21b02 VZ |
6150 | |
6151 | { VK_NUMPAD0, WXK_NUMPAD0 }, | |
6152 | { VK_NUMPAD1, WXK_NUMPAD1 }, | |
6153 | { VK_NUMPAD2, WXK_NUMPAD2 }, | |
6154 | { VK_NUMPAD3, WXK_NUMPAD3 }, | |
6155 | { VK_NUMPAD4, WXK_NUMPAD4 }, | |
6156 | { VK_NUMPAD5, WXK_NUMPAD5 }, | |
6157 | { VK_NUMPAD6, WXK_NUMPAD6 }, | |
6158 | { VK_NUMPAD7, WXK_NUMPAD7 }, | |
6159 | { VK_NUMPAD8, WXK_NUMPAD8 }, | |
6160 | { VK_NUMPAD9, WXK_NUMPAD9 }, | |
6161 | { VK_MULTIPLY, WXK_NUMPAD_MULTIPLY }, | |
6162 | { VK_ADD, WXK_NUMPAD_ADD }, | |
6163 | { VK_SUBTRACT, WXK_NUMPAD_SUBTRACT }, | |
6164 | { VK_DECIMAL, WXK_NUMPAD_DECIMAL }, | |
6165 | { VK_DIVIDE, WXK_NUMPAD_DIVIDE }, | |
6166 | ||
6167 | { VK_F1, WXK_F1 }, | |
6168 | { VK_F2, WXK_F2 }, | |
6169 | { VK_F3, WXK_F3 }, | |
6170 | { VK_F4, WXK_F4 }, | |
6171 | { VK_F5, WXK_F5 }, | |
6172 | { VK_F6, WXK_F6 }, | |
6173 | { VK_F7, WXK_F7 }, | |
6174 | { VK_F8, WXK_F8 }, | |
6175 | { VK_F9, WXK_F9 }, | |
6176 | { VK_F10, WXK_F10 }, | |
6177 | { VK_F11, WXK_F11 }, | |
6178 | { VK_F12, WXK_F12 }, | |
6179 | { VK_F13, WXK_F13 }, | |
6180 | { VK_F14, WXK_F14 }, | |
6181 | { VK_F15, WXK_F15 }, | |
6182 | { VK_F16, WXK_F16 }, | |
6183 | { VK_F17, WXK_F17 }, | |
6184 | { VK_F18, WXK_F18 }, | |
6185 | { VK_F19, WXK_F19 }, | |
6186 | { VK_F20, WXK_F20 }, | |
6187 | { VK_F21, WXK_F21 }, | |
6188 | { VK_F22, WXK_F22 }, | |
6189 | { VK_F23, WXK_F23 }, | |
6190 | { VK_F24, WXK_F24 }, | |
6191 | ||
6192 | { VK_NUMLOCK, WXK_NUMLOCK }, | |
6193 | { VK_SCROLL, WXK_SCROLL }, | |
6194 | ||
6195 | #ifdef VK_APPS | |
6196 | { VK_LWIN, WXK_WINDOWS_LEFT }, | |
6197 | { VK_RWIN, WXK_WINDOWS_RIGHT }, | |
6198 | { VK_APPS, WXK_WINDOWS_MENU }, | |
6199 | #endif // VK_APPS defined | |
6200 | }; | |
6201 | ||
daf9622e VZ |
6202 | } // anonymous namespace |
6203 | ||
5844ad30 | 6204 | int VKToWX(WXWORD vk, WXLPARAM lParam, wchar_t *uc) |
42e69d6b | 6205 | { |
5844ad30 VZ |
6206 | int wxk; |
6207 | ||
d5c21b02 VZ |
6208 | // check the table first |
6209 | for ( size_t n = 0; n < WXSIZEOF(gs_specialKeys); n++ ) | |
6210 | { | |
6211 | if ( gs_specialKeys[n].vk == vk ) | |
5844ad30 VZ |
6212 | { |
6213 | wxk = gs_specialKeys[n].wxk; | |
6214 | if ( wxk < WXK_START ) | |
6215 | { | |
6216 | // Unicode code for this key is the same as its ASCII code. | |
6217 | if ( uc ) | |
6218 | *uc = wxk; | |
6219 | } | |
6220 | ||
6221 | return wxk; | |
6222 | } | |
d5c21b02 | 6223 | } |
9c7df356 | 6224 | |
d5c21b02 | 6225 | // keys requiring special handling |
d5c21b02 VZ |
6226 | switch ( vk ) |
6227 | { | |
5844ad30 VZ |
6228 | case VK_OEM_1: |
6229 | case VK_OEM_PLUS: | |
6230 | case VK_OEM_COMMA: | |
6231 | case VK_OEM_MINUS: | |
6232 | case VK_OEM_PERIOD: | |
6233 | case VK_OEM_2: | |
6234 | case VK_OEM_3: | |
6235 | case VK_OEM_4: | |
6236 | case VK_OEM_5: | |
6237 | case VK_OEM_6: | |
6238 | case VK_OEM_7: | |
fc4070fc | 6239 | case VK_OEM_102: |
5844ad30 VZ |
6240 | // MapVirtualKey() returns 0 if it fails to convert the virtual |
6241 | // key which nicely corresponds to our WXK_NONE. | |
6242 | wxk = ::MapVirtualKey(vk, MAPVK_VK_TO_CHAR); | |
6243 | ||
6244 | if ( HIWORD(wxk) & 0x8000 ) | |
6245 | { | |
6246 | // It's a dead key and we don't return anything at all for them | |
6247 | // as we simply don't have any way to indicate the difference | |
6248 | // between e.g. a normal "'" and "'" as a dead key -- and | |
6249 | // generating the same events for them just doesn't seem like a | |
6250 | // good idea. | |
6251 | wxk = WXK_NONE; | |
6252 | } | |
5844ad30 | 6253 | |
033428a3 VZ |
6254 | // In any case return this as a Unicode character value. |
6255 | if ( uc ) | |
6256 | *uc = wxk; | |
6257 | ||
6258 | // For compatibility with the old non-Unicode code we continue | |
6259 | // returning key codes for Latin-1 characters directly | |
6260 | // (normally it would really only make sense to do it for the | |
6261 | // ASCII characters, not Latin-1 ones). | |
6262 | if ( wxk > 255 ) | |
6263 | { | |
6264 | // But for anything beyond this we can only return the key | |
6265 | // value as a real Unicode character, not a wxKeyCode | |
6266 | // because this enum values clash with Unicode characters | |
6267 | // (e.g. WXK_LBUTTON also happens to be U+012C a.k.a. | |
6268 | // "LATIN CAPITAL LETTER I WITH BREVE"). | |
6269 | wxk = WXK_NONE; | |
5844ad30 VZ |
6270 | } |
6271 | break; | |
702c4208 | 6272 | |
5004c3ad | 6273 | // handle extended keys |
413553cc | 6274 | case VK_PRIOR: |
d5c21b02 | 6275 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_PAGEUP, WXK_PAGEUP); |
413553cc | 6276 | break; |
d5c21b02 | 6277 | |
413553cc | 6278 | case VK_NEXT: |
d5c21b02 | 6279 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_PAGEDOWN, WXK_PAGEDOWN); |
413553cc | 6280 | break; |
d5c21b02 | 6281 | |
413553cc | 6282 | case VK_END: |
d5c21b02 | 6283 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_END, WXK_END); |
413553cc | 6284 | break; |
d5c21b02 | 6285 | |
413553cc | 6286 | case VK_HOME: |
d5c21b02 | 6287 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_HOME, WXK_HOME); |
413553cc | 6288 | break; |
d5c21b02 | 6289 | |
413553cc | 6290 | case VK_LEFT: |
d5c21b02 | 6291 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_LEFT, WXK_LEFT); |
413553cc | 6292 | break; |
d5c21b02 | 6293 | |
413553cc | 6294 | case VK_UP: |
d5c21b02 | 6295 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_UP, WXK_UP); |
413553cc | 6296 | break; |
d5c21b02 | 6297 | |
413553cc | 6298 | case VK_RIGHT: |
d5c21b02 | 6299 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_RIGHT, WXK_RIGHT); |
413553cc | 6300 | break; |
d5c21b02 | 6301 | |
413553cc | 6302 | case VK_DOWN: |
d5c21b02 | 6303 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_DOWN, WXK_DOWN); |
413553cc | 6304 | break; |
d5c21b02 | 6305 | |
413553cc | 6306 | case VK_INSERT: |
d5c21b02 | 6307 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_INSERT, WXK_INSERT); |
413553cc | 6308 | break; |
d5c21b02 | 6309 | |
413553cc | 6310 | case VK_DELETE: |
d5c21b02 | 6311 | wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_DELETE, WXK_DELETE); |
fec65d7d VZ |
6312 | |
6313 | if ( uc ) | |
6314 | *uc = WXK_DELETE; | |
413553cc | 6315 | break; |
d5c21b02 | 6316 | |
ff792344 | 6317 | case VK_RETURN: |
ed5bc8f1 VZ |
6318 | // don't use ChooseNormalOrExtended() here as the keys are reversed |
6319 | // here: numpad enter is the extended one | |
e6cef55a | 6320 | wxk = HIWORD(lParam) & KF_EXTENDED ? WXK_NUMPAD_ENTER : WXK_RETURN; |
b4c0df15 VZ |
6321 | |
6322 | if ( uc ) | |
6323 | *uc = WXK_RETURN; | |
ff792344 VZ |
6324 | break; |
6325 | ||
f6bcfd97 | 6326 | default: |
5844ad30 VZ |
6327 | if ( (vk >= '0' && vk <= '9') || (vk >= 'A' && vk <= 'Z') ) |
6328 | { | |
6329 | // A simple alphanumeric key and the values of them coincide in | |
6330 | // Windows and wx for both ASCII and Unicode codes. | |
6331 | wxk = vk; | |
5844ad30 VZ |
6332 | } |
6333 | else // Something we simply don't know about at all. | |
6334 | { | |
6335 | wxk = WXK_NONE; | |
6336 | } | |
033428a3 VZ |
6337 | |
6338 | if ( uc ) | |
6339 | *uc = vk; | |
d5c21b02 VZ |
6340 | } |
6341 | ||
6342 | return wxk; | |
6343 | } | |
6344 | ||
0c03f52d | 6345 | WXWORD WXToVK(int wxk, bool *isExtended) |
d5c21b02 | 6346 | { |
d5c21b02 VZ |
6347 | // check the table first |
6348 | for ( size_t n = 0; n < WXSIZEOF(gs_specialKeys); n++ ) | |
6349 | { | |
6350 | if ( gs_specialKeys[n].wxk == wxk ) | |
2dcbc461 VZ |
6351 | { |
6352 | // All extended keys (i.e. non-numpad versions of the keys that | |
6353 | // exist both in the numpad and outside of it) are dealt with | |
6354 | // below. | |
6355 | if ( isExtended ) | |
6356 | *isExtended = false; | |
6357 | ||
d5c21b02 | 6358 | return gs_specialKeys[n].vk; |
2dcbc461 | 6359 | } |
d5c21b02 VZ |
6360 | } |
6361 | ||
6362 | // and then check for special keys not included in the table | |
2dcbc461 | 6363 | bool extended = false; |
d5c21b02 VZ |
6364 | WXWORD vk; |
6365 | switch ( wxk ) | |
6366 | { | |
71403278 | 6367 | case WXK_PAGEUP: |
2dcbc461 | 6368 | extended = true; |
71403278 VZ |
6369 | case WXK_NUMPAD_PAGEUP: |
6370 | vk = VK_PRIOR; | |
6371 | break; | |
6372 | ||
6373 | case WXK_PAGEDOWN: | |
2dcbc461 | 6374 | extended = true; |
71403278 VZ |
6375 | case WXK_NUMPAD_PAGEDOWN: |
6376 | vk = VK_NEXT; | |
6377 | break; | |
6378 | ||
6379 | case WXK_END: | |
2dcbc461 | 6380 | extended = true; |
71403278 VZ |
6381 | case WXK_NUMPAD_END: |
6382 | vk = VK_END; | |
6383 | break; | |
6384 | ||
6385 | case WXK_HOME: | |
2dcbc461 | 6386 | extended = true; |
71403278 VZ |
6387 | case WXK_NUMPAD_HOME: |
6388 | vk = VK_HOME; | |
6389 | break; | |
6390 | ||
6391 | case WXK_LEFT: | |
2dcbc461 | 6392 | extended = true; |
71403278 VZ |
6393 | case WXK_NUMPAD_LEFT: |
6394 | vk = VK_LEFT; | |
6395 | break; | |
6396 | ||
6397 | case WXK_UP: | |
2dcbc461 | 6398 | extended = true; |
71403278 VZ |
6399 | case WXK_NUMPAD_UP: |
6400 | vk = VK_UP; | |
6401 | break; | |
6402 | ||
6403 | case WXK_RIGHT: | |
2dcbc461 | 6404 | extended = true; |
71403278 VZ |
6405 | case WXK_NUMPAD_RIGHT: |
6406 | vk = VK_RIGHT; | |
6407 | break; | |
6408 | ||
6409 | case WXK_DOWN: | |
2dcbc461 | 6410 | extended = true; |
71403278 VZ |
6411 | case WXK_NUMPAD_DOWN: |
6412 | vk = VK_DOWN; | |
6413 | break; | |
6414 | ||
6415 | case WXK_INSERT: | |
2dcbc461 | 6416 | extended = true; |
71403278 VZ |
6417 | case WXK_NUMPAD_INSERT: |
6418 | vk = VK_INSERT; | |
6419 | break; | |
6420 | ||
6421 | case WXK_DELETE: | |
2dcbc461 | 6422 | extended = true; |
71403278 VZ |
6423 | case WXK_NUMPAD_DELETE: |
6424 | vk = VK_DELETE; | |
6425 | break; | |
d5c21b02 VZ |
6426 | |
6427 | default: | |
d9fda37b VZ |
6428 | // no VkKeyScan() under CE unfortunately, we need to test how does |
6429 | // it handle OEM keys | |
6430 | #ifndef __WXWINCE__ | |
ad294cb8 VZ |
6431 | // check to see if its one of the OEM key codes. |
6432 | BYTE vks = LOBYTE(VkKeyScan(wxk)); | |
6e3e6c8e | 6433 | if ( vks != 0xff ) |
ad294cb8 VZ |
6434 | { |
6435 | vk = vks; | |
6436 | } | |
6437 | else | |
d9fda37b | 6438 | #endif // !__WXWINCE__ |
ad294cb8 | 6439 | { |
ad294cb8 VZ |
6440 | vk = (WXWORD)wxk; |
6441 | } | |
2bda0e17 | 6442 | } |
d5c21b02 | 6443 | |
2dcbc461 VZ |
6444 | if ( isExtended ) |
6445 | *isExtended = extended; | |
6446 | ||
d5c21b02 VZ |
6447 | return vk; |
6448 | } | |
6449 | ||
0c03f52d VZ |
6450 | } // namespace wxMSWKeyboard |
6451 | ||
d5c21b02 VZ |
6452 | // small helper for wxGetKeyState() and wxGetMouseState() |
6453 | static inline bool wxIsKeyDown(WXWORD vk) | |
6454 | { | |
d9fda37b VZ |
6455 | // SM_SWAPBUTTON is not available under CE, so don't swap buttons there |
6456 | #ifdef SM_SWAPBUTTON | |
6457 | if ( vk == VK_LBUTTON || vk == VK_RBUTTON ) | |
b8f434e7 | 6458 | { |
d9fda37b VZ |
6459 | if ( ::GetSystemMetrics(SM_SWAPBUTTON) ) |
6460 | { | |
6461 | if ( vk == VK_LBUTTON ) | |
6462 | vk = VK_RBUTTON; | |
6463 | else // vk == VK_RBUTTON | |
6464 | vk = VK_LBUTTON; | |
6465 | } | |
b8f434e7 | 6466 | } |
d9fda37b VZ |
6467 | #endif // SM_SWAPBUTTON |
6468 | ||
d5c21b02 VZ |
6469 | // the low order bit indicates whether the key was pressed since the last |
6470 | // call and the high order one indicates whether it is down right now and | |
6471 | // we only want that one | |
b8f434e7 | 6472 | return (GetAsyncKeyState(vk) & (1<<15)) != 0; |
2bda0e17 KB |
6473 | } |
6474 | ||
1751226c | 6475 | bool wxGetKeyState(wxKeyCode key) |
6ed892f3 | 6476 | { |
d5c21b02 VZ |
6477 | // although this does work under Windows, it is not supported under other |
6478 | // platforms so don't allow it, you must use wxGetMouseState() instead | |
6479 | wxASSERT_MSG( key != VK_LBUTTON && | |
6480 | key != VK_RBUTTON && | |
6481 | key != VK_MBUTTON, | |
6482 | wxT("can't use wxGetKeyState() for mouse buttons") ); | |
6ed892f3 | 6483 | |
0c03f52d | 6484 | const WXWORD vk = wxMSWKeyboard::WXToVK(key); |
44353523 | 6485 | |
d5c21b02 VZ |
6486 | // if the requested key is a LED key, return true if the led is pressed |
6487 | if ( key == WXK_NUMLOCK || key == WXK_CAPITAL || key == WXK_SCROLL ) | |
fdec2c05 | 6488 | { |
d5c21b02 VZ |
6489 | // low order bit means LED is highlighted and high order one means the |
6490 | // key is down; for compatibility with the other ports return true if | |
6491 | // either one is set | |
b8f434e7 | 6492 | return GetKeyState(vk) != 0; |
35bbb0c6 | 6493 | |
fdec2c05 | 6494 | } |
d5c21b02 | 6495 | else // normal key |
84c51ddf | 6496 | { |
d5c21b02 | 6497 | return wxIsKeyDown(vk); |
84c51ddf | 6498 | } |
6ed892f3 RN |
6499 | } |
6500 | ||
7dd40b6f RD |
6501 | |
6502 | wxMouseState wxGetMouseState() | |
6503 | { | |
6504 | wxMouseState ms; | |
6505 | POINT pt; | |
d6c37f5b | 6506 | wxGetCursorPosMSW(&pt); |
7dd40b6f RD |
6507 | |
6508 | ms.SetX(pt.x); | |
6509 | ms.SetY(pt.y); | |
d5c21b02 VZ |
6510 | ms.SetLeftDown(wxIsKeyDown(VK_LBUTTON)); |
6511 | ms.SetMiddleDown(wxIsKeyDown(VK_MBUTTON)); | |
6512 | ms.SetRightDown(wxIsKeyDown(VK_RBUTTON)); | |
2f68482e | 6513 | #ifdef wxHAS_XBUTTON |
01101e2d VZ |
6514 | ms.SetAux1Down(wxIsKeyDown(VK_XBUTTON1)); |
6515 | ms.SetAux2Down(wxIsKeyDown(VK_XBUTTON2)); | |
2f68482e | 6516 | #endif // wxHAS_XBUTTON |
dd28827a | 6517 | |
6719c06a VZ |
6518 | ms.SetControlDown(wxIsCtrlDown ()); |
6519 | ms.SetShiftDown (wxIsShiftDown()); | |
6520 | ms.SetAltDown (wxIsAltDown ()); | |
7dd40b6f | 6521 | // ms.SetMetaDown(); |
dd28827a | 6522 | |
7dd40b6f RD |
6523 | return ms; |
6524 | } | |
6525 | ||
6526 | ||
42e69d6b | 6527 | wxWindow *wxGetActiveWindow() |
2bda0e17 | 6528 | { |
42e69d6b VZ |
6529 | HWND hWnd = GetActiveWindow(); |
6530 | if ( hWnd != 0 ) | |
2d0a075d | 6531 | { |
dca0f651 | 6532 | return wxFindWinFromHandle(hWnd); |
2d0a075d | 6533 | } |
42e69d6b | 6534 | return NULL; |
2bda0e17 KB |
6535 | } |
6536 | ||
8614c467 VZ |
6537 | extern wxWindow *wxGetWindowFromHWND(WXHWND hWnd) |
6538 | { | |
6539 | HWND hwnd = (HWND)hWnd; | |
6540 | ||
6541 | // For a radiobutton, we get the radiobox from GWL_USERDATA (which is set | |
6542 | // by code in msw/radiobox.cpp), for all the others we just search up the | |
6543 | // window hierarchy | |
d3b9f782 | 6544 | wxWindow *win = NULL; |
8614c467 VZ |
6545 | if ( hwnd ) |
6546 | { | |
dca0f651 | 6547 | win = wxFindWinFromHandle(hwnd); |
8614c467 VZ |
6548 | if ( !win ) |
6549 | { | |
402bacb3 | 6550 | #if wxUSE_RADIOBOX && !defined(__WXUNIVERSAL__) |
8614c467 VZ |
6551 | // native radiobuttons return DLGC_RADIOBUTTON here and for any |
6552 | // wxWindow class which overrides WM_GETDLGCODE processing to | |
6553 | // do it as well, win would be already non NULL | |
a2242341 | 6554 | if ( ::SendMessage(hwnd, WM_GETDLGCODE, 0, 0) & DLGC_RADIOBUTTON ) |
8614c467 | 6555 | { |
7ee21e3a | 6556 | win = wxRadioBox::GetFromRadioButtonHWND(hwnd); |
8614c467 | 6557 | } |
a2242341 VZ |
6558 | //else: it's a wxRadioButton, not a radiobutton from wxRadioBox |
6559 | #endif // wxUSE_RADIOBOX | |
6560 | ||
6561 | // spin control text buddy window should be mapped to spin ctrl | |
6562 | // itself so try it too | |
24ce4c18 | 6563 | #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__) |
a2242341 VZ |
6564 | if ( !win ) |
6565 | { | |
6566 | win = wxSpinCtrl::GetSpinForTextCtrl((WXHWND)hwnd); | |
6567 | } | |
6568 | #endif // wxUSE_SPINCTRL | |
8614c467 | 6569 | } |
8614c467 VZ |
6570 | } |
6571 | ||
6572 | while ( hwnd && !win ) | |
6573 | { | |
761989ff VZ |
6574 | // this is a really ugly hack needed to avoid mistakenly returning the |
6575 | // parent frame wxWindow for the find/replace modeless dialog HWND - | |
6576 | // this, in turn, is needed to call IsDialogMessage() from | |
6577 | // wxApp::ProcessMessage() as for this we must return NULL from here | |
6578 | // | |
6579 | // FIXME: this is clearly not the best way to do it but I think we'll | |
6580 | // need to change HWND <-> wxWindow code more heavily than I can | |
6581 | // do it now to fix it | |
c67d6888 | 6582 | #ifndef __WXMICROWIN__ |
761989ff VZ |
6583 | if ( ::GetWindow(hwnd, GW_OWNER) ) |
6584 | { | |
6585 | // it's a dialog box, don't go upwards | |
6586 | break; | |
6587 | } | |
c67d6888 | 6588 | #endif |
761989ff | 6589 | |
8614c467 | 6590 | hwnd = ::GetParent(hwnd); |
dca0f651 | 6591 | win = wxFindWinFromHandle(hwnd); |
8614c467 VZ |
6592 | } |
6593 | ||
6594 | return win; | |
6595 | } | |
6596 | ||
7f0586ef | 6597 | #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) |
04ef50df | 6598 | |
42e69d6b VZ |
6599 | // Windows keyboard hook. Allows interception of e.g. F1, ESCAPE |
6600 | // in active frames and dialogs, regardless of where the focus is. | |
6601 | static HHOOK wxTheKeyboardHook = 0; | |
2bda0e17 | 6602 | |
23c26b99 | 6603 | int APIENTRY |
42e69d6b | 6604 | wxKeyboardHook(int nCode, WORD wParam, DWORD lParam) |
2bda0e17 | 6605 | { |
42e69d6b VZ |
6606 | DWORD hiWord = HIWORD(lParam); |
6607 | if ( nCode != HC_NOREMOVE && ((hiWord & KF_UP) == 0) ) | |
43d811ea | 6608 | { |
82bf23ce | 6609 | wchar_t uc = 0; |
246117d4 | 6610 | int id = wxMSWKeyboard::VKToWX(wParam, lParam, &uc); |
982bc2e4 VZ |
6611 | |
6612 | // Don't intercept keyboard entry (notably Escape) if a modal window | |
6613 | // (not managed by wx, e.g. IME one) is currently opened as more often | |
6614 | // than not it needs all the keys for itself. | |
5c16a699 VZ |
6615 | // |
6616 | // Also don't catch it if a window currently captures the mouse as | |
6617 | // Escape is normally used to release the mouse capture and if you | |
6618 | // really need to catch all the keys in the window that has mouse | |
6619 | // capture it can be easily done in its own EVT_CHAR handler as it is | |
6620 | // certain to have focus while it has the capture. | |
6621 | if ( !gs_modalEntryWindowCount && !::GetCapture() ) | |
982bc2e4 VZ |
6622 | { |
6623 | if ( id != WXK_NONE | |
033428a3 | 6624 | #if wxUSE_UNICODE |
982bc2e4 | 6625 | || static_cast<int>(uc) != WXK_NONE |
033428a3 | 6626 | #endif // wxUSE_UNICODE |
982bc2e4 VZ |
6627 | ) |
6628 | { | |
3a95f73c VZ |
6629 | wxWindow const* win = wxWindow::DoFindFocus(); |
6630 | if ( !win ) | |
6631 | { | |
6632 | // Even if the focus got lost somehow, still send the event | |
6633 | // to the top level parent to allow a wxDialog to always | |
6634 | // close on Escape. | |
6635 | win = wxGetActiveWindow(); | |
6636 | } | |
246117d4 | 6637 | |
982bc2e4 VZ |
6638 | wxKeyEvent event(wxEVT_CHAR_HOOK); |
6639 | MSWInitAnyKeyEvent(event, wParam, lParam, win); | |
c085e333 | 6640 | |
982bc2e4 | 6641 | event.m_keyCode = id; |
246117d4 | 6642 | #if wxUSE_UNICODE |
982bc2e4 | 6643 | event.m_uniChar = uc; |
246117d4 VZ |
6644 | #endif // wxUSE_UNICODE |
6645 | ||
982bc2e4 VZ |
6646 | wxEvtHandler * const handler = win ? win->GetEventHandler() |
6647 | : wxTheApp; | |
32de7d24 | 6648 | |
982bc2e4 VZ |
6649 | if ( handler && handler->ProcessEvent(event) ) |
6650 | { | |
4cf1a9bf VZ |
6651 | if ( !event.IsNextEventAllowed() ) |
6652 | { | |
6653 | // Stop processing of this event. | |
6654 | return 1; | |
6655 | } | |
982bc2e4 | 6656 | } |
42e69d6b | 6657 | } |
43d811ea JS |
6658 | } |
6659 | } | |
32de7d24 | 6660 | |
42e69d6b | 6661 | return (int)CallNextHookEx(wxTheKeyboardHook, nCode, wParam, lParam); |
4fabb575 | 6662 | } |
cd4453e5 | 6663 | |
23c26b99 VZ |
6664 | void wxSetKeyboardHook(bool doIt) |
6665 | { | |
6666 | if ( doIt ) | |
6667 | { | |
6668 | wxTheKeyboardHook = ::SetWindowsHookEx | |
6669 | ( | |
6670 | WH_KEYBOARD, | |
6671 | (HOOKPROC)wxKeyboardHook, | |
6672 | NULL, // must be NULL for process hook | |
6673 | ::GetCurrentThreadId() | |
6674 | ); | |
6675 | if ( !wxTheKeyboardHook ) | |
6676 | { | |
9a83f860 | 6677 | wxLogLastError(wxT("SetWindowsHookEx(wxKeyboardHook)")); |
23c26b99 VZ |
6678 | } |
6679 | } | |
6680 | else // uninstall | |
6681 | { | |
6682 | if ( wxTheKeyboardHook ) | |
6683 | ::UnhookWindowsHookEx(wxTheKeyboardHook); | |
6684 | } | |
6685 | } | |
6686 | ||
cd4453e5 | 6687 | #endif // !__WXMICROWIN__ |
4fabb575 | 6688 | |
50e08f9d | 6689 | #if wxDEBUG_LEVEL >= 2 |
4a712ba3 | 6690 | const wxChar *wxGetMessageName(int message) |
47cbd6da | 6691 | { |
42e69d6b VZ |
6692 | switch ( message ) |
6693 | { | |
4a712ba3 VZ |
6694 | case 0x0000: return wxT("WM_NULL"); |
6695 | case 0x0001: return wxT("WM_CREATE"); | |
6696 | case 0x0002: return wxT("WM_DESTROY"); | |
6697 | case 0x0003: return wxT("WM_MOVE"); | |
6698 | case 0x0005: return wxT("WM_SIZE"); | |
6699 | case 0x0006: return wxT("WM_ACTIVATE"); | |
6700 | case 0x0007: return wxT("WM_SETFOCUS"); | |
6701 | case 0x0008: return wxT("WM_KILLFOCUS"); | |
6702 | case 0x000A: return wxT("WM_ENABLE"); | |
6703 | case 0x000B: return wxT("WM_SETREDRAW"); | |
6704 | case 0x000C: return wxT("WM_SETTEXT"); | |
6705 | case 0x000D: return wxT("WM_GETTEXT"); | |
6706 | case 0x000E: return wxT("WM_GETTEXTLENGTH"); | |
6707 | case 0x000F: return wxT("WM_PAINT"); | |
6708 | case 0x0010: return wxT("WM_CLOSE"); | |
6709 | case 0x0011: return wxT("WM_QUERYENDSESSION"); | |
6710 | case 0x0012: return wxT("WM_QUIT"); | |
6711 | case 0x0013: return wxT("WM_QUERYOPEN"); | |
6712 | case 0x0014: return wxT("WM_ERASEBKGND"); | |
6713 | case 0x0015: return wxT("WM_SYSCOLORCHANGE"); | |
6714 | case 0x0016: return wxT("WM_ENDSESSION"); | |
6715 | case 0x0017: return wxT("WM_SYSTEMERROR"); | |
6716 | case 0x0018: return wxT("WM_SHOWWINDOW"); | |
6717 | case 0x0019: return wxT("WM_CTLCOLOR"); | |
6718 | case 0x001A: return wxT("WM_WININICHANGE"); | |
6719 | case 0x001B: return wxT("WM_DEVMODECHANGE"); | |
6720 | case 0x001C: return wxT("WM_ACTIVATEAPP"); | |
6721 | case 0x001D: return wxT("WM_FONTCHANGE"); | |
6722 | case 0x001E: return wxT("WM_TIMECHANGE"); | |
6723 | case 0x001F: return wxT("WM_CANCELMODE"); | |
6724 | case 0x0020: return wxT("WM_SETCURSOR"); | |
6725 | case 0x0021: return wxT("WM_MOUSEACTIVATE"); | |
6726 | case 0x0022: return wxT("WM_CHILDACTIVATE"); | |
6727 | case 0x0023: return wxT("WM_QUEUESYNC"); | |
6728 | case 0x0024: return wxT("WM_GETMINMAXINFO"); | |
6729 | case 0x0026: return wxT("WM_PAINTICON"); | |
6730 | case 0x0027: return wxT("WM_ICONERASEBKGND"); | |
6731 | case 0x0028: return wxT("WM_NEXTDLGCTL"); | |
6732 | case 0x002A: return wxT("WM_SPOOLERSTATUS"); | |
6733 | case 0x002B: return wxT("WM_DRAWITEM"); | |
6734 | case 0x002C: return wxT("WM_MEASUREITEM"); | |
6735 | case 0x002D: return wxT("WM_DELETEITEM"); | |
6736 | case 0x002E: return wxT("WM_VKEYTOITEM"); | |
6737 | case 0x002F: return wxT("WM_CHARTOITEM"); | |
6738 | case 0x0030: return wxT("WM_SETFONT"); | |
6739 | case 0x0031: return wxT("WM_GETFONT"); | |
6740 | case 0x0037: return wxT("WM_QUERYDRAGICON"); | |
6741 | case 0x0039: return wxT("WM_COMPAREITEM"); | |
6742 | case 0x0041: return wxT("WM_COMPACTING"); | |
6743 | case 0x0044: return wxT("WM_COMMNOTIFY"); | |
6744 | case 0x0046: return wxT("WM_WINDOWPOSCHANGING"); | |
6745 | case 0x0047: return wxT("WM_WINDOWPOSCHANGED"); | |
6746 | case 0x0048: return wxT("WM_POWER"); | |
6747 | ||
6748 | case 0x004A: return wxT("WM_COPYDATA"); | |
6749 | case 0x004B: return wxT("WM_CANCELJOURNAL"); | |
6750 | case 0x004E: return wxT("WM_NOTIFY"); | |
6751 | case 0x0050: return wxT("WM_INPUTLANGCHANGEREQUEST"); | |
6752 | case 0x0051: return wxT("WM_INPUTLANGCHANGE"); | |
6753 | case 0x0052: return wxT("WM_TCARD"); | |
6754 | case 0x0053: return wxT("WM_HELP"); | |
6755 | case 0x0054: return wxT("WM_USERCHANGED"); | |
6756 | case 0x0055: return wxT("WM_NOTIFYFORMAT"); | |
6757 | case 0x007B: return wxT("WM_CONTEXTMENU"); | |
6758 | case 0x007C: return wxT("WM_STYLECHANGING"); | |
6759 | case 0x007D: return wxT("WM_STYLECHANGED"); | |
6760 | case 0x007E: return wxT("WM_DISPLAYCHANGE"); | |
6761 | case 0x007F: return wxT("WM_GETICON"); | |
6762 | case 0x0080: return wxT("WM_SETICON"); | |
6763 | ||
6764 | case 0x0081: return wxT("WM_NCCREATE"); | |
6765 | case 0x0082: return wxT("WM_NCDESTROY"); | |
6766 | case 0x0083: return wxT("WM_NCCALCSIZE"); | |
6767 | case 0x0084: return wxT("WM_NCHITTEST"); | |
6768 | case 0x0085: return wxT("WM_NCPAINT"); | |
6769 | case 0x0086: return wxT("WM_NCACTIVATE"); | |
6770 | case 0x0087: return wxT("WM_GETDLGCODE"); | |
6771 | case 0x00A0: return wxT("WM_NCMOUSEMOVE"); | |
6772 | case 0x00A1: return wxT("WM_NCLBUTTONDOWN"); | |
6773 | case 0x00A2: return wxT("WM_NCLBUTTONUP"); | |
6774 | case 0x00A3: return wxT("WM_NCLBUTTONDBLCLK"); | |
6775 | case 0x00A4: return wxT("WM_NCRBUTTONDOWN"); | |
6776 | case 0x00A5: return wxT("WM_NCRBUTTONUP"); | |
6777 | case 0x00A6: return wxT("WM_NCRBUTTONDBLCLK"); | |
6778 | case 0x00A7: return wxT("WM_NCMBUTTONDOWN"); | |
6779 | case 0x00A8: return wxT("WM_NCMBUTTONUP"); | |
6780 | case 0x00A9: return wxT("WM_NCMBUTTONDBLCLK"); | |
609da8bb VZ |
6781 | |
6782 | case 0x00B0: return wxT("EM_GETSEL"); | |
6783 | case 0x00B1: return wxT("EM_SETSEL"); | |
6784 | case 0x00B2: return wxT("EM_GETRECT"); | |
6785 | case 0x00B3: return wxT("EM_SETRECT"); | |
6786 | case 0x00B4: return wxT("EM_SETRECTNP"); | |
6787 | case 0x00B5: return wxT("EM_SCROLL"); | |
6788 | case 0x00B6: return wxT("EM_LINESCROLL"); | |
6789 | case 0x00B7: return wxT("EM_SCROLLCARET"); | |
6790 | case 0x00B8: return wxT("EM_GETMODIFY"); | |
6791 | case 0x00B9: return wxT("EM_SETMODIFY"); | |
6792 | case 0x00BA: return wxT("EM_GETLINECOUNT"); | |
6793 | case 0x00BB: return wxT("EM_LINEINDEX"); | |
6794 | case 0x00BC: return wxT("EM_SETHANDLE"); | |
6795 | case 0x00BD: return wxT("EM_GETHANDLE"); | |
6796 | case 0x00BE: return wxT("EM_GETTHUMB"); | |
6797 | case 0x00C1: return wxT("EM_LINELENGTH"); | |
6798 | case 0x00C2: return wxT("EM_REPLACESEL"); | |
6799 | case 0x00C4: return wxT("EM_GETLINE"); | |
6800 | case 0x00C5: return wxT("EM_LIMITTEXT/EM_SETLIMITTEXT"); /* ;win40 Name change */ | |
6801 | case 0x00C6: return wxT("EM_CANUNDO"); | |
6802 | case 0x00C7: return wxT("EM_UNDO"); | |
6803 | case 0x00C8: return wxT("EM_FMTLINES"); | |
6804 | case 0x00C9: return wxT("EM_LINEFROMCHAR"); | |
6805 | case 0x00CB: return wxT("EM_SETTABSTOPS"); | |
6806 | case 0x00CC: return wxT("EM_SETPASSWORDCHAR"); | |
6807 | case 0x00CD: return wxT("EM_EMPTYUNDOBUFFER"); | |
6808 | case 0x00CE: return wxT("EM_GETFIRSTVISIBLELINE"); | |
6809 | case 0x00CF: return wxT("EM_SETREADONLY"); | |
6810 | case 0x00D0: return wxT("EM_SETWORDBREAKPROC"); | |
6811 | case 0x00D1: return wxT("EM_GETWORDBREAKPROC"); | |
6812 | case 0x00D2: return wxT("EM_GETPASSWORDCHAR"); | |
6813 | case 0x00D3: return wxT("EM_SETMARGINS"); | |
6814 | case 0x00D4: return wxT("EM_GETMARGINS"); | |
6815 | case 0x00D5: return wxT("EM_GETLIMITTEXT"); | |
6816 | case 0x00D6: return wxT("EM_POSFROMCHAR"); | |
6817 | case 0x00D7: return wxT("EM_CHARFROMPOS"); | |
6818 | case 0x00D8: return wxT("EM_SETIMESTATUS"); | |
6819 | case 0x00D9: return wxT("EM_GETIMESTATUS"); | |
6820 | ||
4a712ba3 VZ |
6821 | case 0x0100: return wxT("WM_KEYDOWN"); |
6822 | case 0x0101: return wxT("WM_KEYUP"); | |
6823 | case 0x0102: return wxT("WM_CHAR"); | |
6824 | case 0x0103: return wxT("WM_DEADCHAR"); | |
6825 | case 0x0104: return wxT("WM_SYSKEYDOWN"); | |
6826 | case 0x0105: return wxT("WM_SYSKEYUP"); | |
6827 | case 0x0106: return wxT("WM_SYSCHAR"); | |
6828 | case 0x0107: return wxT("WM_SYSDEADCHAR"); | |
6829 | case 0x0108: return wxT("WM_KEYLAST"); | |
6830 | ||
6831 | case 0x010D: return wxT("WM_IME_STARTCOMPOSITION"); | |
6832 | case 0x010E: return wxT("WM_IME_ENDCOMPOSITION"); | |
6833 | case 0x010F: return wxT("WM_IME_COMPOSITION"); | |
6834 | ||
6835 | case 0x0110: return wxT("WM_INITDIALOG"); | |
6836 | case 0x0111: return wxT("WM_COMMAND"); | |
6837 | case 0x0112: return wxT("WM_SYSCOMMAND"); | |
6838 | case 0x0113: return wxT("WM_TIMER"); | |
6839 | case 0x0114: return wxT("WM_HSCROLL"); | |
6840 | case 0x0115: return wxT("WM_VSCROLL"); | |
6841 | case 0x0116: return wxT("WM_INITMENU"); | |
6842 | case 0x0117: return wxT("WM_INITMENUPOPUP"); | |
6843 | case 0x011F: return wxT("WM_MENUSELECT"); | |
6844 | case 0x0120: return wxT("WM_MENUCHAR"); | |
6845 | case 0x0121: return wxT("WM_ENTERIDLE"); | |
609da8bb | 6846 | |
ff9b9665 VZ |
6847 | case 0x0127: return wxT("WM_CHANGEUISTATE"); |
6848 | case 0x0128: return wxT("WM_UPDATEUISTATE"); | |
6849 | case 0x0129: return wxT("WM_QUERYUISTATE"); | |
6850 | ||
609da8bb VZ |
6851 | case 0x0132: return wxT("WM_CTLCOLORMSGBOX"); |
6852 | case 0x0133: return wxT("WM_CTLCOLOREDIT"); | |
6853 | case 0x0134: return wxT("WM_CTLCOLORLISTBOX"); | |
6854 | case 0x0135: return wxT("WM_CTLCOLORBTN"); | |
6855 | case 0x0136: return wxT("WM_CTLCOLORDLG"); | |
6856 | case 0x0137: return wxT("WM_CTLCOLORSCROLLBAR"); | |
6857 | case 0x0138: return wxT("WM_CTLCOLORSTATIC"); | |
6858 | case 0x01E1: return wxT("MN_GETHMENU"); | |
6859 | ||
4a712ba3 VZ |
6860 | case 0x0200: return wxT("WM_MOUSEMOVE"); |
6861 | case 0x0201: return wxT("WM_LBUTTONDOWN"); | |
6862 | case 0x0202: return wxT("WM_LBUTTONUP"); | |
6863 | case 0x0203: return wxT("WM_LBUTTONDBLCLK"); | |
6864 | case 0x0204: return wxT("WM_RBUTTONDOWN"); | |
6865 | case 0x0205: return wxT("WM_RBUTTONUP"); | |
6866 | case 0x0206: return wxT("WM_RBUTTONDBLCLK"); | |
6867 | case 0x0207: return wxT("WM_MBUTTONDOWN"); | |
6868 | case 0x0208: return wxT("WM_MBUTTONUP"); | |
6869 | case 0x0209: return wxT("WM_MBUTTONDBLCLK"); | |
6870 | case 0x020A: return wxT("WM_MOUSEWHEEL"); | |
01101e2d VZ |
6871 | case 0x020B: return wxT("WM_XBUTTONDOWN"); |
6872 | case 0x020C: return wxT("WM_XBUTTONUP"); | |
6873 | case 0x020D: return wxT("WM_XBUTTONDBLCLK"); | |
4a712ba3 VZ |
6874 | case 0x0210: return wxT("WM_PARENTNOTIFY"); |
6875 | case 0x0211: return wxT("WM_ENTERMENULOOP"); | |
6876 | case 0x0212: return wxT("WM_EXITMENULOOP"); | |
6877 | ||
6878 | case 0x0213: return wxT("WM_NEXTMENU"); | |
6879 | case 0x0214: return wxT("WM_SIZING"); | |
6880 | case 0x0215: return wxT("WM_CAPTURECHANGED"); | |
6881 | case 0x0216: return wxT("WM_MOVING"); | |
6882 | case 0x0218: return wxT("WM_POWERBROADCAST"); | |
6883 | case 0x0219: return wxT("WM_DEVICECHANGE"); | |
6884 | ||
6885 | case 0x0220: return wxT("WM_MDICREATE"); | |
6886 | case 0x0221: return wxT("WM_MDIDESTROY"); | |
6887 | case 0x0222: return wxT("WM_MDIACTIVATE"); | |
6888 | case 0x0223: return wxT("WM_MDIRESTORE"); | |
6889 | case 0x0224: return wxT("WM_MDINEXT"); | |
6890 | case 0x0225: return wxT("WM_MDIMAXIMIZE"); | |
6891 | case 0x0226: return wxT("WM_MDITILE"); | |
6892 | case 0x0227: return wxT("WM_MDICASCADE"); | |
6893 | case 0x0228: return wxT("WM_MDIICONARRANGE"); | |
6894 | case 0x0229: return wxT("WM_MDIGETACTIVE"); | |
6895 | case 0x0230: return wxT("WM_MDISETMENU"); | |
6896 | case 0x0233: return wxT("WM_DROPFILES"); | |
6897 | ||
6898 | case 0x0281: return wxT("WM_IME_SETCONTEXT"); | |
6899 | case 0x0282: return wxT("WM_IME_NOTIFY"); | |
6900 | case 0x0283: return wxT("WM_IME_CONTROL"); | |
6901 | case 0x0284: return wxT("WM_IME_COMPOSITIONFULL"); | |
6902 | case 0x0285: return wxT("WM_IME_SELECT"); | |
6903 | case 0x0286: return wxT("WM_IME_CHAR"); | |
6904 | case 0x0290: return wxT("WM_IME_KEYDOWN"); | |
6905 | case 0x0291: return wxT("WM_IME_KEYUP"); | |
6906 | ||
609da8bb VZ |
6907 | case 0x02A0: return wxT("WM_NCMOUSEHOVER"); |
6908 | case 0x02A1: return wxT("WM_MOUSEHOVER"); | |
6909 | case 0x02A2: return wxT("WM_NCMOUSELEAVE"); | |
6910 | case 0x02A3: return wxT("WM_MOUSELEAVE"); | |
6911 | ||
4a712ba3 VZ |
6912 | case 0x0300: return wxT("WM_CUT"); |
6913 | case 0x0301: return wxT("WM_COPY"); | |
6914 | case 0x0302: return wxT("WM_PASTE"); | |
6915 | case 0x0303: return wxT("WM_CLEAR"); | |
6916 | case 0x0304: return wxT("WM_UNDO"); | |
6917 | case 0x0305: return wxT("WM_RENDERFORMAT"); | |
6918 | case 0x0306: return wxT("WM_RENDERALLFORMATS"); | |
6919 | case 0x0307: return wxT("WM_DESTROYCLIPBOARD"); | |
6920 | case 0x0308: return wxT("WM_DRAWCLIPBOARD"); | |
6921 | case 0x0309: return wxT("WM_PAINTCLIPBOARD"); | |
6922 | case 0x030A: return wxT("WM_VSCROLLCLIPBOARD"); | |
6923 | case 0x030B: return wxT("WM_SIZECLIPBOARD"); | |
6924 | case 0x030C: return wxT("WM_ASKCBFORMATNAME"); | |
6925 | case 0x030D: return wxT("WM_CHANGECBCHAIN"); | |
6926 | case 0x030E: return wxT("WM_HSCROLLCLIPBOARD"); | |
6927 | case 0x030F: return wxT("WM_QUERYNEWPALETTE"); | |
6928 | case 0x0310: return wxT("WM_PALETTEISCHANGING"); | |
6929 | case 0x0311: return wxT("WM_PALETTECHANGED"); | |
4a712ba3 | 6930 | case 0x0312: return wxT("WM_HOTKEY"); |
609da8bb VZ |
6931 | |
6932 | case 0x0317: return wxT("WM_PRINT"); | |
6933 | case 0x0318: return wxT("WM_PRINTCLIENT"); | |
c085e333 | 6934 | |
2d0a075d JS |
6935 | // common controls messages - although they're not strictly speaking |
6936 | // standard, it's nice to decode them nevertheless | |
a02eb1d2 | 6937 | |
2d0a075d | 6938 | // listview |
4a712ba3 VZ |
6939 | case 0x1000 + 0: return wxT("LVM_GETBKCOLOR"); |
6940 | case 0x1000 + 1: return wxT("LVM_SETBKCOLOR"); | |
6941 | case 0x1000 + 2: return wxT("LVM_GETIMAGELIST"); | |
6942 | case 0x1000 + 3: return wxT("LVM_SETIMAGELIST"); | |
6943 | case 0x1000 + 4: return wxT("LVM_GETITEMCOUNT"); | |
6944 | case 0x1000 + 5: return wxT("LVM_GETITEMA"); | |
6945 | case 0x1000 + 75: return wxT("LVM_GETITEMW"); | |
6946 | case 0x1000 + 6: return wxT("LVM_SETITEMA"); | |
6947 | case 0x1000 + 76: return wxT("LVM_SETITEMW"); | |
6948 | case 0x1000 + 7: return wxT("LVM_INSERTITEMA"); | |
6949 | case 0x1000 + 77: return wxT("LVM_INSERTITEMW"); | |
6950 | case 0x1000 + 8: return wxT("LVM_DELETEITEM"); | |
6951 | case 0x1000 + 9: return wxT("LVM_DELETEALLITEMS"); | |
6952 | case 0x1000 + 10: return wxT("LVM_GETCALLBACKMASK"); | |
6953 | case 0x1000 + 11: return wxT("LVM_SETCALLBACKMASK"); | |
6954 | case 0x1000 + 12: return wxT("LVM_GETNEXTITEM"); | |
6955 | case 0x1000 + 13: return wxT("LVM_FINDITEMA"); | |
6956 | case 0x1000 + 83: return wxT("LVM_FINDITEMW"); | |
6957 | case 0x1000 + 14: return wxT("LVM_GETITEMRECT"); | |
6958 | case 0x1000 + 15: return wxT("LVM_SETITEMPOSITION"); | |
6959 | case 0x1000 + 16: return wxT("LVM_GETITEMPOSITION"); | |
6960 | case 0x1000 + 17: return wxT("LVM_GETSTRINGWIDTHA"); | |
6961 | case 0x1000 + 87: return wxT("LVM_GETSTRINGWIDTHW"); | |
6962 | case 0x1000 + 18: return wxT("LVM_HITTEST"); | |
6963 | case 0x1000 + 19: return wxT("LVM_ENSUREVISIBLE"); | |
6964 | case 0x1000 + 20: return wxT("LVM_SCROLL"); | |
6965 | case 0x1000 + 21: return wxT("LVM_REDRAWITEMS"); | |
6966 | case 0x1000 + 22: return wxT("LVM_ARRANGE"); | |
6967 | case 0x1000 + 23: return wxT("LVM_EDITLABELA"); | |
6968 | case 0x1000 + 118: return wxT("LVM_EDITLABELW"); | |
6969 | case 0x1000 + 24: return wxT("LVM_GETEDITCONTROL"); | |
6970 | case 0x1000 + 25: return wxT("LVM_GETCOLUMNA"); | |
6971 | case 0x1000 + 95: return wxT("LVM_GETCOLUMNW"); | |
6972 | case 0x1000 + 26: return wxT("LVM_SETCOLUMNA"); | |
6973 | case 0x1000 + 96: return wxT("LVM_SETCOLUMNW"); | |
6974 | case 0x1000 + 27: return wxT("LVM_INSERTCOLUMNA"); | |
6975 | case 0x1000 + 97: return wxT("LVM_INSERTCOLUMNW"); | |
6976 | case 0x1000 + 28: return wxT("LVM_DELETECOLUMN"); | |
6977 | case 0x1000 + 29: return wxT("LVM_GETCOLUMNWIDTH"); | |
6978 | case 0x1000 + 30: return wxT("LVM_SETCOLUMNWIDTH"); | |
6979 | case 0x1000 + 31: return wxT("LVM_GETHEADER"); | |
6980 | case 0x1000 + 33: return wxT("LVM_CREATEDRAGIMAGE"); | |
6981 | case 0x1000 + 34: return wxT("LVM_GETVIEWRECT"); | |
6982 | case 0x1000 + 35: return wxT("LVM_GETTEXTCOLOR"); | |
6983 | case 0x1000 + 36: return wxT("LVM_SETTEXTCOLOR"); | |
6984 | case 0x1000 + 37: return wxT("LVM_GETTEXTBKCOLOR"); | |
6985 | case 0x1000 + 38: return wxT("LVM_SETTEXTBKCOLOR"); | |
6986 | case 0x1000 + 39: return wxT("LVM_GETTOPINDEX"); | |
6987 | case 0x1000 + 40: return wxT("LVM_GETCOUNTPERPAGE"); | |
6988 | case 0x1000 + 41: return wxT("LVM_GETORIGIN"); | |
6989 | case 0x1000 + 42: return wxT("LVM_UPDATE"); | |
6990 | case 0x1000 + 43: return wxT("LVM_SETITEMSTATE"); | |
6991 | case 0x1000 + 44: return wxT("LVM_GETITEMSTATE"); | |
6992 | case 0x1000 + 45: return wxT("LVM_GETITEMTEXTA"); | |
6993 | case 0x1000 + 115: return wxT("LVM_GETITEMTEXTW"); | |
6994 | case 0x1000 + 46: return wxT("LVM_SETITEMTEXTA"); | |
6995 | case 0x1000 + 116: return wxT("LVM_SETITEMTEXTW"); | |
6996 | case 0x1000 + 47: return wxT("LVM_SETITEMCOUNT"); | |
6997 | case 0x1000 + 48: return wxT("LVM_SORTITEMS"); | |
6998 | case 0x1000 + 49: return wxT("LVM_SETITEMPOSITION32"); | |
6999 | case 0x1000 + 50: return wxT("LVM_GETSELECTEDCOUNT"); | |
7000 | case 0x1000 + 51: return wxT("LVM_GETITEMSPACING"); | |
7001 | case 0x1000 + 52: return wxT("LVM_GETISEARCHSTRINGA"); | |
7002 | case 0x1000 + 117: return wxT("LVM_GETISEARCHSTRINGW"); | |
7003 | case 0x1000 + 53: return wxT("LVM_SETICONSPACING"); | |
7004 | case 0x1000 + 54: return wxT("LVM_SETEXTENDEDLISTVIEWSTYLE"); | |
7005 | case 0x1000 + 55: return wxT("LVM_GETEXTENDEDLISTVIEWSTYLE"); | |
7006 | case 0x1000 + 56: return wxT("LVM_GETSUBITEMRECT"); | |
7007 | case 0x1000 + 57: return wxT("LVM_SUBITEMHITTEST"); | |
7008 | case 0x1000 + 58: return wxT("LVM_SETCOLUMNORDERARRAY"); | |
7009 | case 0x1000 + 59: return wxT("LVM_GETCOLUMNORDERARRAY"); | |
7010 | case 0x1000 + 60: return wxT("LVM_SETHOTITEM"); | |
7011 | case 0x1000 + 61: return wxT("LVM_GETHOTITEM"); | |
7012 | case 0x1000 + 62: return wxT("LVM_SETHOTCURSOR"); | |
7013 | case 0x1000 + 63: return wxT("LVM_GETHOTCURSOR"); | |
7014 | case 0x1000 + 64: return wxT("LVM_APPROXIMATEVIEWRECT"); | |
7015 | case 0x1000 + 65: return wxT("LVM_SETWORKAREA"); | |
c085e333 | 7016 | |
2d0a075d | 7017 | // tree view |
4a712ba3 VZ |
7018 | case 0x1100 + 0: return wxT("TVM_INSERTITEMA"); |
7019 | case 0x1100 + 50: return wxT("TVM_INSERTITEMW"); | |
7020 | case 0x1100 + 1: return wxT("TVM_DELETEITEM"); | |
7021 | case 0x1100 + 2: return wxT("TVM_EXPAND"); | |
7022 | case 0x1100 + 4: return wxT("TVM_GETITEMRECT"); | |
7023 | case 0x1100 + 5: return wxT("TVM_GETCOUNT"); | |
7024 | case 0x1100 + 6: return wxT("TVM_GETINDENT"); | |
7025 | case 0x1100 + 7: return wxT("TVM_SETINDENT"); | |
7026 | case 0x1100 + 8: return wxT("TVM_GETIMAGELIST"); | |
7027 | case 0x1100 + 9: return wxT("TVM_SETIMAGELIST"); | |
7028 | case 0x1100 + 10: return wxT("TVM_GETNEXTITEM"); | |
7029 | case 0x1100 + 11: return wxT("TVM_SELECTITEM"); | |
7030 | case 0x1100 + 12: return wxT("TVM_GETITEMA"); | |
7031 | case 0x1100 + 62: return wxT("TVM_GETITEMW"); | |
7032 | case 0x1100 + 13: return wxT("TVM_SETITEMA"); | |
7033 | case 0x1100 + 63: return wxT("TVM_SETITEMW"); | |
7034 | case 0x1100 + 14: return wxT("TVM_EDITLABELA"); | |
7035 | case 0x1100 + 65: return wxT("TVM_EDITLABELW"); | |
7036 | case 0x1100 + 15: return wxT("TVM_GETEDITCONTROL"); | |
7037 | case 0x1100 + 16: return wxT("TVM_GETVISIBLECOUNT"); | |
7038 | case 0x1100 + 17: return wxT("TVM_HITTEST"); | |
7039 | case 0x1100 + 18: return wxT("TVM_CREATEDRAGIMAGE"); | |
7040 | case 0x1100 + 19: return wxT("TVM_SORTCHILDREN"); | |
7041 | case 0x1100 + 20: return wxT("TVM_ENSUREVISIBLE"); | |
7042 | case 0x1100 + 21: return wxT("TVM_SORTCHILDRENCB"); | |
7043 | case 0x1100 + 22: return wxT("TVM_ENDEDITLABELNOW"); | |
7044 | case 0x1100 + 23: return wxT("TVM_GETISEARCHSTRINGA"); | |
7045 | case 0x1100 + 64: return wxT("TVM_GETISEARCHSTRINGW"); | |
7046 | case 0x1100 + 24: return wxT("TVM_SETTOOLTIPS"); | |
7047 | case 0x1100 + 25: return wxT("TVM_GETTOOLTIPS"); | |
c085e333 | 7048 | |
2d0a075d | 7049 | // header |
4a712ba3 VZ |
7050 | case 0x1200 + 0: return wxT("HDM_GETITEMCOUNT"); |
7051 | case 0x1200 + 1: return wxT("HDM_INSERTITEMA"); | |
7052 | case 0x1200 + 10: return wxT("HDM_INSERTITEMW"); | |
7053 | case 0x1200 + 2: return wxT("HDM_DELETEITEM"); | |
7054 | case 0x1200 + 3: return wxT("HDM_GETITEMA"); | |
7055 | case 0x1200 + 11: return wxT("HDM_GETITEMW"); | |
7056 | case 0x1200 + 4: return wxT("HDM_SETITEMA"); | |
7057 | case 0x1200 + 12: return wxT("HDM_SETITEMW"); | |
7058 | case 0x1200 + 5: return wxT("HDM_LAYOUT"); | |
7059 | case 0x1200 + 6: return wxT("HDM_HITTEST"); | |
7060 | case 0x1200 + 7: return wxT("HDM_GETITEMRECT"); | |
7061 | case 0x1200 + 8: return wxT("HDM_SETIMAGELIST"); | |
7062 | case 0x1200 + 9: return wxT("HDM_GETIMAGELIST"); | |
7063 | case 0x1200 + 15: return wxT("HDM_ORDERTOINDEX"); | |
7064 | case 0x1200 + 16: return wxT("HDM_CREATEDRAGIMAGE"); | |
7065 | case 0x1200 + 17: return wxT("HDM_GETORDERARRAY"); | |
7066 | case 0x1200 + 18: return wxT("HDM_SETORDERARRAY"); | |
7067 | case 0x1200 + 19: return wxT("HDM_SETHOTDIVIDER"); | |
c085e333 | 7068 | |
2d0a075d | 7069 | // tab control |
4a712ba3 VZ |
7070 | case 0x1300 + 2: return wxT("TCM_GETIMAGELIST"); |
7071 | case 0x1300 + 3: return wxT("TCM_SETIMAGELIST"); | |
7072 | case 0x1300 + 4: return wxT("TCM_GETITEMCOUNT"); | |
7073 | case 0x1300 + 5: return wxT("TCM_GETITEMA"); | |
7074 | case 0x1300 + 60: return wxT("TCM_GETITEMW"); | |
7075 | case 0x1300 + 6: return wxT("TCM_SETITEMA"); | |
7076 | case 0x1300 + 61: return wxT("TCM_SETITEMW"); | |
7077 | case 0x1300 + 7: return wxT("TCM_INSERTITEMA"); | |
7078 | case 0x1300 + 62: return wxT("TCM_INSERTITEMW"); | |
7079 | case 0x1300 + 8: return wxT("TCM_DELETEITEM"); | |
7080 | case 0x1300 + 9: return wxT("TCM_DELETEALLITEMS"); | |
7081 | case 0x1300 + 10: return wxT("TCM_GETITEMRECT"); | |
7082 | case 0x1300 + 11: return wxT("TCM_GETCURSEL"); | |
7083 | case 0x1300 + 12: return wxT("TCM_SETCURSEL"); | |
7084 | case 0x1300 + 13: return wxT("TCM_HITTEST"); | |
7085 | case 0x1300 + 14: return wxT("TCM_SETITEMEXTRA"); | |
7086 | case 0x1300 + 40: return wxT("TCM_ADJUSTRECT"); | |
7087 | case 0x1300 + 41: return wxT("TCM_SETITEMSIZE"); | |
7088 | case 0x1300 + 42: return wxT("TCM_REMOVEIMAGE"); | |
7089 | case 0x1300 + 43: return wxT("TCM_SETPADDING"); | |
7090 | case 0x1300 + 44: return wxT("TCM_GETROWCOUNT"); | |
7091 | case 0x1300 + 45: return wxT("TCM_GETTOOLTIPS"); | |
7092 | case 0x1300 + 46: return wxT("TCM_SETTOOLTIPS"); | |
7093 | case 0x1300 + 47: return wxT("TCM_GETCURFOCUS"); | |
7094 | case 0x1300 + 48: return wxT("TCM_SETCURFOCUS"); | |
7095 | case 0x1300 + 49: return wxT("TCM_SETMINTABWIDTH"); | |
7096 | case 0x1300 + 50: return wxT("TCM_DESELECTALL"); | |
c085e333 | 7097 | |
2d0a075d | 7098 | // toolbar |
4a712ba3 VZ |
7099 | case WM_USER+1: return wxT("TB_ENABLEBUTTON"); |
7100 | case WM_USER+2: return wxT("TB_CHECKBUTTON"); | |
7101 | case WM_USER+3: return wxT("TB_PRESSBUTTON"); | |
7102 | case WM_USER+4: return wxT("TB_HIDEBUTTON"); | |
7103 | case WM_USER+5: return wxT("TB_INDETERMINATE"); | |
7104 | case WM_USER+9: return wxT("TB_ISBUTTONENABLED"); | |
7105 | case WM_USER+10: return wxT("TB_ISBUTTONCHECKED"); | |
7106 | case WM_USER+11: return wxT("TB_ISBUTTONPRESSED"); | |
7107 | case WM_USER+12: return wxT("TB_ISBUTTONHIDDEN"); | |
7108 | case WM_USER+13: return wxT("TB_ISBUTTONINDETERMINATE"); | |
7109 | case WM_USER+17: return wxT("TB_SETSTATE"); | |
7110 | case WM_USER+18: return wxT("TB_GETSTATE"); | |
7111 | case WM_USER+19: return wxT("TB_ADDBITMAP"); | |
7112 | case WM_USER+20: return wxT("TB_ADDBUTTONS"); | |
7113 | case WM_USER+21: return wxT("TB_INSERTBUTTON"); | |
7114 | case WM_USER+22: return wxT("TB_DELETEBUTTON"); | |
7115 | case WM_USER+23: return wxT("TB_GETBUTTON"); | |
7116 | case WM_USER+24: return wxT("TB_BUTTONCOUNT"); | |
7117 | case WM_USER+25: return wxT("TB_COMMANDTOINDEX"); | |
7118 | case WM_USER+26: return wxT("TB_SAVERESTOREA"); | |
7119 | case WM_USER+76: return wxT("TB_SAVERESTOREW"); | |
7120 | case WM_USER+27: return wxT("TB_CUSTOMIZE"); | |
7121 | case WM_USER+28: return wxT("TB_ADDSTRINGA"); | |
7122 | case WM_USER+77: return wxT("TB_ADDSTRINGW"); | |
7123 | case WM_USER+29: return wxT("TB_GETITEMRECT"); | |
7124 | case WM_USER+30: return wxT("TB_BUTTONSTRUCTSIZE"); | |
7125 | case WM_USER+31: return wxT("TB_SETBUTTONSIZE"); | |
7126 | case WM_USER+32: return wxT("TB_SETBITMAPSIZE"); | |
7127 | case WM_USER+33: return wxT("TB_AUTOSIZE"); | |
7128 | case WM_USER+35: return wxT("TB_GETTOOLTIPS"); | |
7129 | case WM_USER+36: return wxT("TB_SETTOOLTIPS"); | |
7130 | case WM_USER+37: return wxT("TB_SETPARENT"); | |
7131 | case WM_USER+39: return wxT("TB_SETROWS"); | |
7132 | case WM_USER+40: return wxT("TB_GETROWS"); | |
7133 | case WM_USER+42: return wxT("TB_SETCMDID"); | |
7134 | case WM_USER+43: return wxT("TB_CHANGEBITMAP"); | |
7135 | case WM_USER+44: return wxT("TB_GETBITMAP"); | |
7136 | case WM_USER+45: return wxT("TB_GETBUTTONTEXTA"); | |
7137 | case WM_USER+75: return wxT("TB_GETBUTTONTEXTW"); | |
7138 | case WM_USER+46: return wxT("TB_REPLACEBITMAP"); | |
7139 | case WM_USER+47: return wxT("TB_SETINDENT"); | |
7140 | case WM_USER+48: return wxT("TB_SETIMAGELIST"); | |
7141 | case WM_USER+49: return wxT("TB_GETIMAGELIST"); | |
7142 | case WM_USER+50: return wxT("TB_LOADIMAGES"); | |
7143 | case WM_USER+51: return wxT("TB_GETRECT"); | |
7144 | case WM_USER+52: return wxT("TB_SETHOTIMAGELIST"); | |
7145 | case WM_USER+53: return wxT("TB_GETHOTIMAGELIST"); | |
7146 | case WM_USER+54: return wxT("TB_SETDISABLEDIMAGELIST"); | |
7147 | case WM_USER+55: return wxT("TB_GETDISABLEDIMAGELIST"); | |
7148 | case WM_USER+56: return wxT("TB_SETSTYLE"); | |
7149 | case WM_USER+57: return wxT("TB_GETSTYLE"); | |
7150 | case WM_USER+58: return wxT("TB_GETBUTTONSIZE"); | |
7151 | case WM_USER+59: return wxT("TB_SETBUTTONWIDTH"); | |
7152 | case WM_USER+60: return wxT("TB_SETMAXTEXTROWS"); | |
7153 | case WM_USER+61: return wxT("TB_GETTEXTROWS"); | |
7154 | case WM_USER+41: return wxT("TB_GETBITMAPFLAGS"); | |
c085e333 | 7155 | |
42e69d6b | 7156 | default: |
4a712ba3 VZ |
7157 | static wxString s_szBuf; |
7158 | s_szBuf.Printf(wxT("<unknown message = %d>"), message); | |
7159 | return s_szBuf.c_str(); | |
42e69d6b | 7160 | } |
47cbd6da | 7161 | } |
4b6a582b | 7162 | #endif // wxDEBUG_LEVEL >= 2 |
4aff28fc | 7163 | |
1e6feb95 | 7164 | static TEXTMETRIC wxGetTextMetrics(const wxWindowMSW *win) |
f6bcfd97 BP |
7165 | { |
7166 | // prepare the DC | |
7167 | TEXTMETRIC tm; | |
7168 | HWND hwnd = GetHwndOf(win); | |
7169 | HDC hdc = ::GetDC(hwnd); | |
7170 | ||
7171 | #if !wxDIALOG_UNIT_COMPATIBILITY | |
7172 | // and select the current font into it | |
7173 | HFONT hfont = GetHfontOf(win->GetFont()); | |
7174 | if ( hfont ) | |
7175 | { | |
7176 | hfont = (HFONT)::SelectObject(hdc, hfont); | |
7177 | } | |
7178 | #endif | |
7179 | ||
7180 | // finally retrieve the text metrics from it | |
7181 | GetTextMetrics(hdc, &tm); | |
7182 | ||
7183 | #if !wxDIALOG_UNIT_COMPATIBILITY | |
7184 | // and clean up | |
7185 | if ( hfont ) | |
7186 | { | |
7187 | (void)::SelectObject(hdc, hfont); | |
7188 | } | |
7189 | #endif | |
7190 | ||
7191 | ::ReleaseDC(hwnd, hdc); | |
7192 | ||
7193 | return tm; | |
7194 | } | |
3723b7b1 JS |
7195 | |
7196 | // Find the wxWindow at the current mouse position, returning the mouse | |
7197 | // position. | |
2b5f62a0 | 7198 | wxWindow* wxFindWindowAtPointer(wxPoint& pt) |
3723b7b1 | 7199 | { |
2b5f62a0 VZ |
7200 | pt = wxGetMousePosition(); |
7201 | return wxFindWindowAtPoint(pt); | |
57591e0e JS |
7202 | } |
7203 | ||
7204 | wxWindow* wxFindWindowAtPoint(const wxPoint& pt) | |
7205 | { | |
7206 | POINT pt2; | |
7207 | pt2.x = pt.x; | |
7208 | pt2.y = pt.y; | |
3723b7b1 | 7209 | |
ab3eae34 | 7210 | HWND hWnd = ::WindowFromPoint(pt2); |
e18a74e2 VZ |
7211 | if ( hWnd ) |
7212 | { | |
7213 | // WindowFromPoint() ignores the disabled children but we're supposed | |
7214 | // to take them into account, so check if we have a child at this | |
0825f0ba VZ |
7215 | // coordinate using ChildWindowFromPointEx(). |
7216 | for ( ;; ) | |
7217 | { | |
7218 | pt2.x = pt.x; | |
7219 | pt2.y = pt.y; | |
7220 | ::ScreenToClient(hWnd, &pt2); | |
7221 | HWND child = ::ChildWindowFromPointEx(hWnd, pt2, CWP_SKIPINVISIBLE); | |
7222 | if ( child == hWnd || !child ) | |
7223 | break; | |
7224 | ||
7225 | // ChildWindowFromPointEx() only examines the immediate children | |
7226 | // but we want to get the deepest (top in Z-order) one, so continue | |
7227 | // iterating for as long as it finds anything. | |
7228 | hWnd = child; | |
7229 | } | |
e18a74e2 | 7230 | } |
3723b7b1 | 7231 | |
ab3eae34 | 7232 | return wxGetWindowFromHWND((WXHWND)hWnd); |
3723b7b1 JS |
7233 | } |
7234 | ||
7235 | // Get the current mouse position. | |
7236 | wxPoint wxGetMousePosition() | |
7237 | { | |
1772ead0 | 7238 | POINT pt; |
d6c37f5b | 7239 | wxGetCursorPosMSW(&pt); |
5cd16c0c | 7240 | |
1772ead0 | 7241 | return wxPoint(pt.x, pt.y); |
3723b7b1 JS |
7242 | } |
7243 | ||
5048c832 | 7244 | #if wxUSE_HOTKEY |
540b6b09 | 7245 | |
afafd942 JS |
7246 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) |
7247 | static void WinCEUnregisterHotKey(int modifiers, int id) | |
7248 | { | |
7249 | // Register hotkeys for the hardware buttons | |
7250 | HINSTANCE hCoreDll; | |
7251 | typedef BOOL (WINAPI *UnregisterFunc1Proc)(UINT, UINT); | |
7252 | ||
7253 | UnregisterFunc1Proc procUnregisterFunc; | |
9a83f860 | 7254 | hCoreDll = LoadLibrary(wxT("coredll.dll")); |
afafd942 JS |
7255 | if (hCoreDll) |
7256 | { | |
9a83f860 | 7257 | procUnregisterFunc = (UnregisterFunc1Proc)GetProcAddress(hCoreDll, wxT("UnregisterFunc1")); |
afafd942 JS |
7258 | if (procUnregisterFunc) |
7259 | procUnregisterFunc(modifiers, id); | |
7260 | FreeLibrary(hCoreDll); | |
7261 | } | |
7262 | } | |
7263 | #endif | |
7264 | ||
540b6b09 | 7265 | bool wxWindowMSW::RegisterHotKey(int hotkeyId, int modifiers, int keycode) |
5048c832 JS |
7266 | { |
7267 | UINT win_modifiers=0; | |
540b6b09 VZ |
7268 | if ( modifiers & wxMOD_ALT ) |
7269 | win_modifiers |= MOD_ALT; | |
7270 | if ( modifiers & wxMOD_SHIFT ) | |
7271 | win_modifiers |= MOD_SHIFT; | |
7272 | if ( modifiers & wxMOD_CONTROL ) | |
7273 | win_modifiers |= MOD_CONTROL; | |
7274 | if ( modifiers & wxMOD_WIN ) | |
7275 | win_modifiers |= MOD_WIN; | |
7276 | ||
afafd942 JS |
7277 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) |
7278 | // Required for PPC and Smartphone hardware buttons | |
7279 | if (keycode >= WXK_SPECIAL1 && keycode <= WXK_SPECIAL20) | |
7280 | WinCEUnregisterHotKey(win_modifiers, hotkeyId); | |
7281 | #endif | |
7282 | ||
540b6b09 VZ |
7283 | if ( !::RegisterHotKey(GetHwnd(), hotkeyId, win_modifiers, keycode) ) |
7284 | { | |
9a83f860 | 7285 | wxLogLastError(wxT("RegisterHotKey")); |
5048c832 | 7286 | |
08158721 | 7287 | return false; |
540b6b09 VZ |
7288 | } |
7289 | ||
08158721 | 7290 | return true; |
5048c832 JS |
7291 | } |
7292 | ||
7293 | bool wxWindowMSW::UnregisterHotKey(int hotkeyId) | |
7294 | { | |
afafd942 JS |
7295 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) |
7296 | WinCEUnregisterHotKey(MOD_WIN, hotkeyId); | |
7297 | #endif | |
7298 | ||
540b6b09 VZ |
7299 | if ( !::UnregisterHotKey(GetHwnd(), hotkeyId) ) |
7300 | { | |
9a83f860 | 7301 | wxLogLastError(wxT("UnregisterHotKey")); |
540b6b09 | 7302 | |
08158721 | 7303 | return false; |
540b6b09 VZ |
7304 | } |
7305 | ||
08158721 | 7306 | return true; |
5048c832 JS |
7307 | } |
7308 | ||
0b4f47a3 DS |
7309 | #if wxUSE_ACCEL |
7310 | ||
5048c832 JS |
7311 | bool wxWindowMSW::HandleHotKey(WXWPARAM wParam, WXLPARAM lParam) |
7312 | { | |
540b6b09 VZ |
7313 | int win_modifiers = LOWORD(lParam); |
7314 | ||
b6885972 VZ |
7315 | wxKeyEvent event(CreateKeyEvent(wxEVT_HOTKEY, HIWORD(lParam))); |
7316 | event.SetId(wParam); | |
5048c832 JS |
7317 | event.m_shiftDown = (win_modifiers & MOD_SHIFT) != 0; |
7318 | event.m_controlDown = (win_modifiers & MOD_CONTROL) != 0; | |
7319 | event.m_altDown = (win_modifiers & MOD_ALT) != 0; | |
7320 | event.m_metaDown = (win_modifiers & MOD_WIN) != 0; | |
540b6b09 | 7321 | |
937013e0 | 7322 | return HandleWindowEvent(event); |
5048c832 | 7323 | } |
540b6b09 | 7324 | |
0b4f47a3 DS |
7325 | #endif // wxUSE_ACCEL |
7326 | ||
540b6b09 | 7327 | #endif // wxUSE_HOTKEY |
5048c832 | 7328 | |
550049c2 | 7329 | // Not tested under WinCE |
d79df32c | 7330 | #ifndef __WXWINCE__ |
d79df32c | 7331 | |
550049c2 VZ |
7332 | // this class installs a message hook which really wakes up our idle processing |
7333 | // each time a WM_NULL is received (wxWakeUpIdle does this), even if we're | |
7334 | // sitting inside a local modal loop (e.g. a menu is opened or scrollbar is | |
7335 | // being dragged or even inside ::MessageBox()) and so don't control message | |
7336 | // dispatching otherwise | |
7337 | class wxIdleWakeUpModule : public wxModule | |
7338 | { | |
d79df32c | 7339 | public: |
3a3c8603 | 7340 | virtual bool OnInit() |
550049c2 | 7341 | { |
3a3c8603 | 7342 | ms_hMsgHookProc = ::SetWindowsHookEx |
550049c2 VZ |
7343 | ( |
7344 | WH_GETMESSAGE, | |
7345 | &wxIdleWakeUpModule::MsgHookProc, | |
7346 | NULL, | |
7347 | GetCurrentThreadId() | |
7348 | ); | |
d79df32c | 7349 | |
550049c2 VZ |
7350 | if ( !ms_hMsgHookProc ) |
7351 | { | |
9a83f860 | 7352 | wxLogLastError(wxT("SetWindowsHookEx(WH_GETMESSAGE)")); |
550049c2 VZ |
7353 | |
7354 | return false; | |
7355 | } | |
7356 | ||
7357 | return true; | |
3a3c8603 | 7358 | } |
550049c2 | 7359 | |
3a3c8603 | 7360 | virtual void OnExit() |
550049c2 | 7361 | { |
3a3c8603 DS |
7362 | ::UnhookWindowsHookEx(wxIdleWakeUpModule::ms_hMsgHookProc); |
7363 | } | |
550049c2 | 7364 | |
3a3c8603 | 7365 | static LRESULT CALLBACK MsgHookProc(int nCode, WPARAM wParam, LPARAM lParam) |
550049c2 | 7366 | { |
3a3c8603 | 7367 | MSG *msg = (MSG*)lParam; |
34ea3c74 VZ |
7368 | |
7369 | // only process the message if it is actually going to be removed from | |
7370 | // the message queue, this prevents that the same event from being | |
7371 | // processed multiple times if now someone just called PeekMessage() | |
7372 | if ( msg->message == WM_NULL && wParam == PM_REMOVE ) | |
3a3c8603 | 7373 | { |
550049c2 | 7374 | wxTheApp->ProcessPendingEvents(); |
3a3c8603 | 7375 | } |
550049c2 | 7376 | |
3a3c8603 | 7377 | return CallNextHookEx(ms_hMsgHookProc, nCode, wParam, lParam); |
47b378bd | 7378 | } |
550049c2 | 7379 | |
d79df32c | 7380 | private: |
3a3c8603 | 7381 | static HHOOK ms_hMsgHookProc; |
550049c2 VZ |
7382 | |
7383 | DECLARE_DYNAMIC_CLASS(wxIdleWakeUpModule) | |
d79df32c | 7384 | }; |
d79df32c | 7385 | |
550049c2 VZ |
7386 | HHOOK wxIdleWakeUpModule::ms_hMsgHookProc = 0; |
7387 | ||
7388 | IMPLEMENT_DYNAMIC_CLASS(wxIdleWakeUpModule, wxModule) | |
7389 | ||
7390 | #endif // __WXWINCE__ | |
3a3c8603 | 7391 | |
d26e1ab2 JS |
7392 | #ifdef __WXWINCE__ |
7393 | ||
7394 | #if wxUSE_STATBOX | |
7395 | static void wxAdjustZOrder(wxWindow* parent) | |
7396 | { | |
345c78ca | 7397 | if (wxDynamicCast(parent, wxStaticBox)) |
d26e1ab2 JS |
7398 | { |
7399 | // Set the z-order correctly | |
7400 | SetWindowPos((HWND) parent->GetHWND(), HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE); | |
7401 | } | |
35bbb0c6 | 7402 | |
d26e1ab2 JS |
7403 | wxWindowList::compatibility_iterator current = parent->GetChildren().GetFirst(); |
7404 | while (current) | |
7405 | { | |
7406 | wxWindow *childWin = current->GetData(); | |
7407 | wxAdjustZOrder(childWin); | |
7408 | current = current->GetNext(); | |
7409 | } | |
7410 | } | |
7411 | #endif | |
7412 | ||
7413 | // We need to adjust the z-order of static boxes in WinCE, to | |
7414 | // make 'contained' controls visible | |
7415 | void wxWindowMSW::OnInitDialog( wxInitDialogEvent& event ) | |
7416 | { | |
7417 | #if wxUSE_STATBOX | |
7418 | wxAdjustZOrder(this); | |
7419 | #endif | |
35bbb0c6 | 7420 | |
d26e1ab2 JS |
7421 | event.Skip(); |
7422 | } | |
7423 | #endif |