]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: windows.cpp | |
3 | // Purpose: wxWindow | |
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$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
a3622daa | 9 | // Licence: wxWindows license |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
a23fd0e1 VZ |
12 | // =========================================================================== |
13 | // declarations | |
14 | // =========================================================================== | |
15 | ||
16 | // --------------------------------------------------------------------------- | |
17 | // headers | |
18 | // --------------------------------------------------------------------------- | |
19 | ||
2bda0e17 | 20 | #ifdef __GNUG__ |
a23fd0e1 | 21 | #pragma implementation "window.h" |
2bda0e17 KB |
22 | #endif |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
09914df7 | 28 | #pragma hdrstop |
2bda0e17 KB |
29 | #endif |
30 | ||
31 | #ifndef WX_PRECOMP | |
0c589ad0 BM |
32 | #include <windows.h> |
33 | #include "wx/msw/winundef.h" | |
4e938f5b | 34 | #include "wx/window.h" |
0c589ad0 | 35 | #include "wx/accel.h" |
3a19e16d VZ |
36 | #include "wx/setup.h" |
37 | #include "wx/menu.h" | |
38 | #include "wx/dc.h" | |
39 | #include "wx/dcclient.h" | |
40 | #include "wx/utils.h" | |
41 | #include "wx/app.h" | |
42 | #include "wx/panel.h" | |
43 | #include "wx/layout.h" | |
44 | #include "wx/dialog.h" | |
45 | #include "wx/frame.h" | |
46 | #include "wx/listbox.h" | |
47 | #include "wx/button.h" | |
3a19e16d | 48 | #include "wx/msgdlg.h" |
1f3943e0 | 49 | #include "wx/settings.h" |
341c92a8 VZ |
50 | |
51 | #include <stdio.h> | |
2bda0e17 KB |
52 | #endif |
53 | ||
f6bcfd97 | 54 | #if wxUSE_OWNER_DRAWN |
09914df7 | 55 | #include "wx/ownerdrw.h" |
2bda0e17 KB |
56 | #endif |
57 | ||
9e2896e5 VZ |
58 | #if wxUSE_DRAG_AND_DROP |
59 | #include "wx/dnd.h" | |
2bda0e17 KB |
60 | #endif |
61 | ||
62 | #include "wx/menuitem.h" | |
47cbd6da | 63 | #include "wx/log.h" |
750b78ba | 64 | |
0c589ad0 BM |
65 | #include "wx/msw/private.h" |
66 | ||
750b78ba | 67 | #if wxUSE_TOOLTIPS |
42e69d6b | 68 | #include "wx/tooltip.h" |
750b78ba JS |
69 | #endif |
70 | ||
789295bf VZ |
71 | #if wxUSE_CARET |
72 | #include "wx/caret.h" | |
73 | #endif // wxUSE_CARET | |
74 | ||
6fe19057 VZ |
75 | #if wxUSE_SPINCTRL |
76 | #include "wx/spinctrl.h" | |
77 | #endif // wxUSE_SPINCTRL | |
78 | ||
dbda9e86 JS |
79 | #include "wx/intl.h" |
80 | #include "wx/log.h" | |
3a19e16d | 81 | |
2a47d3c1 | 82 | #include "wx/textctrl.h" |
d9317fd4 | 83 | #include "wx/notebook.h" |
2a47d3c1 | 84 | |
2bda0e17 KB |
85 | #include <string.h> |
86 | ||
c42404a5 | 87 | #ifndef __GNUWIN32_OLD__ |
3a19e16d VZ |
88 | #include <shellapi.h> |
89 | #include <mmsystem.h> | |
2bda0e17 KB |
90 | #endif |
91 | ||
92 | #ifdef __WIN32__ | |
3a19e16d | 93 | #include <windowsx.h> |
2bda0e17 KB |
94 | #endif |
95 | ||
c42404a5 | 96 | #if !defined(__GNUWIN32_OLD__) && !defined(__TWIN32__) |
310df81b | 97 | #ifdef __WIN95__ |
c42404a5 VZ |
98 | #include <commctrl.h> |
99 | #endif | |
100 | #else // broken compiler | |
101 | #ifndef __TWIN32__ | |
102 | #include "wx/msw/gnuwin32/extra.h" | |
3a19e16d | 103 | #endif |
57c208c5 | 104 | #endif |
2bda0e17 | 105 | |
f6bcfd97 BP |
106 | // This didn't appear in mingw until 2.95.2 |
107 | #ifndef SIF_TRACKPOS | |
108 | #define SIF_TRACKPOS 16 | |
109 | #endif | |
110 | ||
d2c52078 RD |
111 | #if wxUSE_MOUSEWHEEL |
112 | #ifndef WM_MOUSEWHEEL | |
113 | #define WM_MOUSEWHEEL 0x020A | |
c9d4f881 RD |
114 | #endif |
115 | #ifndef WHEEL_DELTA | |
d2c52078 | 116 | #define WHEEL_DELTA 120 |
c9d4f881 RD |
117 | #endif |
118 | #ifndef SPI_GETWHEELSCROLLLINES | |
d2c52078 RD |
119 | #define SPI_GETWHEELSCROLLLINES 104 |
120 | #endif | |
121 | #endif | |
122 | ||
123 | ||
a23fd0e1 | 124 | // --------------------------------------------------------------------------- |
42e69d6b | 125 | // global variables |
a23fd0e1 | 126 | // --------------------------------------------------------------------------- |
47cbd6da | 127 | |
42e69d6b VZ |
128 | // the last Windows message we got (MT-UNSAFE) |
129 | extern MSG s_currentMsg; | |
2bda0e17 KB |
130 | |
131 | wxMenu *wxCurrentPopupMenu = NULL; | |
cde9f08e | 132 | extern wxList WXDLLEXPORT wxPendingDelete; |
2ffa221c | 133 | extern const wxChar *wxCanvasClassName; |
42e69d6b VZ |
134 | |
135 | // --------------------------------------------------------------------------- | |
136 | // private functions | |
137 | // --------------------------------------------------------------------------- | |
138 | ||
139 | // the window proc for all our windows | |
3135f4a7 | 140 | LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message, |
42e69d6b VZ |
141 | WPARAM wParam, LPARAM lParam); |
142 | ||
143 | #ifdef __WXDEBUG__ | |
144 | const char *wxGetMessageName(int message); | |
145 | #endif //__WXDEBUG__ | |
2bda0e17 KB |
146 | |
147 | void wxRemoveHandleAssociation(wxWindow *win); | |
148 | void wxAssociateWinWithHandle(HWND hWnd, wxWindow *win); | |
149 | wxWindow *wxFindWinFromHandle(WXHWND hWnd); | |
150 | ||
4aff28fc VZ |
151 | // this magical function is used to translate VK_APPS key presses to right |
152 | // mouse clicks | |
153 | static void TranslateKbdEventToMouse(wxWindow *win, int *x, int *y, WPARAM *flags); | |
154 | ||
f6bcfd97 BP |
155 | // get the text metrics for the current font |
156 | static TEXTMETRIC wxGetTextMetrics(const wxWindow *win); | |
157 | ||
a23fd0e1 VZ |
158 | // --------------------------------------------------------------------------- |
159 | // event tables | |
160 | // --------------------------------------------------------------------------- | |
161 | ||
00c4e897 | 162 | IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase) |
42e69d6b | 163 | |
cc2b7472 | 164 | BEGIN_EVENT_TABLE(wxWindow, wxWindowBase) |
cf65ad8d VZ |
165 | EVT_ERASE_BACKGROUND(wxWindow::OnEraseBackground) |
166 | EVT_SYS_COLOUR_CHANGED(wxWindow::OnSysColourChanged) | |
167 | EVT_INIT_DIALOG(wxWindow::OnInitDialog) | |
168 | EVT_IDLE(wxWindow::OnIdle) | |
00c4e897 | 169 | EVT_SET_FOCUS(wxWindow::OnSetFocus) |
2bda0e17 KB |
170 | END_EVENT_TABLE() |
171 | ||
a23fd0e1 VZ |
172 | // =========================================================================== |
173 | // implementation | |
174 | // =========================================================================== | |
175 | ||
42e69d6b VZ |
176 | // --------------------------------------------------------------------------- |
177 | // wxWindow utility functions | |
178 | // --------------------------------------------------------------------------- | |
179 | ||
2bda0e17 | 180 | // Find an item given the MS Windows id |
197dd9af | 181 | wxWindow *wxWindow::FindItem(long id) const |
2bda0e17 | 182 | { |
33ac7e6f | 183 | wxControl *item = wxDynamicThisCast(this, wxControl); |
f048e32f VZ |
184 | if ( item ) |
185 | { | |
186 | // i it we or one of our "internal" children? | |
187 | if ( item->GetId() == id || | |
188 | (item->GetSubcontrols().Index(id) != wxNOT_FOUND) ) | |
189 | { | |
190 | return item; | |
191 | } | |
192 | } | |
193 | ||
42e69d6b | 194 | wxWindowList::Node *current = GetChildren().GetFirst(); |
2d0a075d JS |
195 | while (current) |
196 | { | |
42e69d6b | 197 | wxWindow *childWin = current->GetData(); |
2bda0e17 | 198 | |
42e69d6b | 199 | wxWindow *wnd = childWin->FindItem(id); |
cc2b7472 | 200 | if ( wnd ) |
42e69d6b | 201 | return wnd; |
2bda0e17 | 202 | |
42e69d6b | 203 | current = current->GetNext(); |
2bda0e17 | 204 | } |
42e69d6b | 205 | |
2d0a075d | 206 | return NULL; |
2bda0e17 KB |
207 | } |
208 | ||
209 | // Find an item given the MS Windows handle | |
debe6624 | 210 | wxWindow *wxWindow::FindItemByHWND(WXHWND hWnd, bool controlOnly) const |
2bda0e17 | 211 | { |
42e69d6b | 212 | wxWindowList::Node *current = GetChildren().GetFirst(); |
2d0a075d | 213 | while (current) |
2bda0e17 | 214 | { |
42e69d6b VZ |
215 | wxWindow *parent = current->GetData(); |
216 | ||
2d0a075d | 217 | // Do a recursive search. |
42e69d6b | 218 | wxWindow *wnd = parent->FindItemByHWND(hWnd); |
cc2b7472 | 219 | if ( wnd ) |
42e69d6b | 220 | return wnd; |
2d0a075d | 221 | |
42e69d6b | 222 | if ( !controlOnly || parent->IsKindOf(CLASSINFO(wxControl)) ) |
2d0a075d | 223 | { |
42e69d6b VZ |
224 | wxWindow *item = current->GetData(); |
225 | if ( item->GetHWND() == hWnd ) | |
2d0a075d JS |
226 | return item; |
227 | else | |
228 | { | |
229 | if ( item->ContainsHWND(hWnd) ) | |
230 | return item; | |
231 | } | |
232 | } | |
42e69d6b VZ |
233 | |
234 | current = current->GetNext(); | |
2bda0e17 | 235 | } |
2d0a075d | 236 | return NULL; |
2bda0e17 KB |
237 | } |
238 | ||
239 | // Default command handler | |
debe6624 | 240 | bool wxWindow::MSWCommand(WXUINT WXUNUSED(param), WXWORD WXUNUSED(id)) |
2bda0e17 | 241 | { |
2d0a075d | 242 | return FALSE; |
2bda0e17 KB |
243 | } |
244 | ||
fd3f686c VZ |
245 | // ---------------------------------------------------------------------------- |
246 | // constructors and such | |
247 | // ---------------------------------------------------------------------------- | |
248 | ||
249 | void wxWindow::Init() | |
2bda0e17 | 250 | { |
cc2b7472 VZ |
251 | // generic |
252 | InitBase(); | |
634903fd | 253 | |
cc2b7472 | 254 | // MSW specific |
42e69d6b | 255 | m_doubleClickAllowed = 0; |
2d0a075d | 256 | m_winCaptured = FALSE; |
cc2b7472 | 257 | |
2d0a075d JS |
258 | m_isBeingDeleted = FALSE; |
259 | m_oldWndProc = 0; | |
2d0a075d | 260 | m_useCtl3D = FALSE; |
fd3f686c | 261 | m_mouseInWindow = FALSE; |
2bda0e17 | 262 | |
2d0a075d | 263 | // wxWnd |
2d0a075d | 264 | m_hMenu = 0; |
2bda0e17 | 265 | |
319fefa9 VZ |
266 | m_hWnd = 0; |
267 | ||
268 | // pass WM_GETDLGCODE to DefWindowProc() | |
269 | m_lDlgCode = 0; | |
270 | ||
2d0a075d JS |
271 | m_xThumbSize = 0; |
272 | m_yThumbSize = 0; | |
273 | m_backgroundTransparent = FALSE; | |
2bda0e17 | 274 | |
85d10d9b VZ |
275 | // as all windows are created with WS_VISIBLE style... |
276 | m_isShown = TRUE; | |
277 | ||
a23fd0e1 | 278 | #if wxUSE_MOUSEEVENT_HACK |
cc2b7472 VZ |
279 | m_lastMouseX = |
280 | m_lastMouseY = -1; | |
281 | m_lastMouseEvent = -1; | |
a23fd0e1 | 282 | #endif // wxUSE_MOUSEEVENT_HACK |
fd3f686c VZ |
283 | } |
284 | ||
2bda0e17 | 285 | // Destructor |
fd3f686c | 286 | wxWindow::~wxWindow() |
2bda0e17 | 287 | { |
2d0a075d | 288 | m_isBeingDeleted = TRUE; |
2bda0e17 | 289 | |
2d0a075d | 290 | MSWDetachWindowMenu(); |
2bda0e17 | 291 | |
a23fd0e1 VZ |
292 | if ( m_parent ) |
293 | m_parent->RemoveChild(this); | |
294 | ||
295 | DestroyChildren(); | |
296 | ||
cc2b7472 | 297 | if ( m_hWnd ) |
42e69d6b | 298 | { |
98440bc3 VZ |
299 | // VZ: test temp removed to understand what really happens here |
300 | //if (::IsWindow(GetHwnd())) | |
df61c009 JS |
301 | { |
302 | if ( !::DestroyWindow(GetHwnd()) ) | |
f6bcfd97 | 303 | wxLogLastError(wxT("DestroyWindow")); |
df61c009 | 304 | } |
2bda0e17 | 305 | |
c50f1fb9 VZ |
306 | // remove hWnd <-> wxWindow association |
307 | wxRemoveHandleAssociation(this); | |
308 | } | |
2bda0e17 KB |
309 | } |
310 | ||
fd3f686c | 311 | // real construction (Init() must have been called before!) |
debe6624 | 312 | bool wxWindow::Create(wxWindow *parent, wxWindowID id, |
2d0a075d JS |
313 | const wxPoint& pos, |
314 | const wxSize& size, | |
315 | long style, | |
316 | const wxString& name) | |
317 | { | |
223d09f6 | 318 | wxCHECK_MSG( parent, FALSE, wxT("can't create wxWindow without parent") ); |
2bda0e17 | 319 | |
8d99be5f VZ |
320 | if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) ) |
321 | return FALSE; | |
42e69d6b | 322 | |
fd3f686c | 323 | parent->AddChild(this); |
2bda0e17 | 324 | |
2d0a075d | 325 | DWORD msflags = 0; |
cc2b7472 | 326 | if ( style & wxBORDER ) |
2d0a075d | 327 | msflags |= WS_BORDER; |
f6bcfd97 BP |
328 | /* Not appropriate for non-frame/dialog windows, and |
329 | may clash with other window styles. | |
cc2b7472 | 330 | if ( style & wxTHICK_FRAME ) |
2d0a075d | 331 | msflags |= WS_THICKFRAME; |
f6bcfd97 BP |
332 | */ |
333 | //msflags |= WS_CHILD /* | WS_CLIPSIBLINGS */ | WS_VISIBLE; | |
2d027cfa | 334 | msflags |= WS_CHILD | WS_VISIBLE; |
cc2b7472 | 335 | if ( style & wxCLIP_CHILDREN ) |
2d0a075d | 336 | msflags |= WS_CLIPCHILDREN; |
d11bb14f JS |
337 | if ( style & wxCLIP_SIBLINGS ) |
338 | msflags |= WS_CLIPSIBLINGS; | |
2bda0e17 | 339 | |
2d0a075d | 340 | bool want3D; |
42e69d6b | 341 | WXDWORD exStyle = Determine3DEffects(WS_EX_CLIENTEDGE, &want3D); |
2bda0e17 | 342 | |
2d0a075d JS |
343 | // Even with extended styles, need to combine with WS_BORDER |
344 | // for them to look right. | |
cc2b7472 | 345 | if ( want3D || (m_windowStyle & wxSIMPLE_BORDER) || (m_windowStyle & wxRAISED_BORDER ) || |
2d0a075d | 346 | (m_windowStyle & wxSUNKEN_BORDER) || (m_windowStyle & wxDOUBLE_BORDER)) |
cc2b7472 | 347 | { |
2d0a075d | 348 | msflags |= WS_BORDER; |
cc2b7472 | 349 | } |
2bda0e17 | 350 | |
101f488c VZ |
351 | // calculate the value to return from WM_GETDLGCODE handler |
352 | if ( GetWindowStyleFlag() & wxWANTS_CHARS ) | |
353 | { | |
354 | // want everything: i.e. all keys and WM_CHAR message | |
355 | m_lDlgCode = DLGC_WANTARROWS | DLGC_WANTCHARS | | |
356 | DLGC_WANTTAB | DLGC_WANTMESSAGE; | |
101f488c | 357 | } |
101f488c | 358 | |
8bf30fe9 VZ |
359 | return MSWCreate(m_windowId, parent, wxCanvasClassName, this, NULL, |
360 | pos.x, pos.y, | |
361 | WidthDefault(size.x), HeightDefault(size.y), | |
362 | msflags, NULL, exStyle); | |
2bda0e17 KB |
363 | } |
364 | ||
42e69d6b VZ |
365 | // --------------------------------------------------------------------------- |
366 | // basic operations | |
367 | // --------------------------------------------------------------------------- | |
368 | ||
fd3f686c | 369 | void wxWindow::SetFocus() |
2bda0e17 | 370 | { |
a23fd0e1 | 371 | HWND hWnd = GetHwnd(); |
cc2b7472 | 372 | if ( hWnd ) |
2d0a075d | 373 | ::SetFocus(hWnd); |
2bda0e17 KB |
374 | } |
375 | ||
42e69d6b VZ |
376 | // Get the window with the focus |
377 | wxWindow *wxWindowBase::FindFocus() | |
378 | { | |
379 | HWND hWnd = ::GetFocus(); | |
380 | if ( hWnd ) | |
381 | { | |
382 | return wxFindWinFromHandle((WXHWND) hWnd); | |
383 | } | |
384 | ||
385 | return NULL; | |
386 | } | |
387 | ||
cc2b7472 | 388 | bool wxWindow::Enable(bool enable) |
2bda0e17 | 389 | { |
cc2b7472 VZ |
390 | if ( !wxWindowBase::Enable(enable) ) |
391 | return FALSE; | |
392 | ||
a23fd0e1 | 393 | HWND hWnd = GetHwnd(); |
cc2b7472 | 394 | if ( hWnd ) |
2d0a075d | 395 | ::EnableWindow(hWnd, (BOOL)enable); |
cc2b7472 | 396 | |
cbc66a27 VZ |
397 | // VZ: no, this is a bad idea: imagine that you have a dialog with some |
398 | // disabled controls and disable it - you really wouldn't like the | |
399 | // disabled controls eb reenabled too when you reenable the dialog! | |
400 | #if 0 | |
87a1e308 VZ |
401 | wxWindowList::Node *node = GetChildren().GetFirst(); |
402 | while ( node ) | |
403 | { | |
404 | wxWindow *child = node->GetData(); | |
405 | child->Enable(enable); | |
406 | ||
407 | node = node->GetNext(); | |
408 | } | |
cbc66a27 | 409 | #endif // 0 |
87a1e308 | 410 | |
cc2b7472 | 411 | return TRUE; |
2bda0e17 KB |
412 | } |
413 | ||
42e69d6b VZ |
414 | bool wxWindow::Show(bool show) |
415 | { | |
416 | if ( !wxWindowBase::Show(show) ) | |
417 | return FALSE; | |
418 | ||
419 | HWND hWnd = GetHwnd(); | |
420 | int cshow = show ? SW_SHOW : SW_HIDE; | |
421 | ::ShowWindow(hWnd, cshow); | |
422 | ||
423 | if ( show ) | |
424 | { | |
425 | BringWindowToTop(hWnd); | |
426 | } | |
427 | ||
428 | return TRUE; | |
429 | } | |
430 | ||
431 | // Raise the window to the top of the Z order | |
432 | void wxWindow::Raise() | |
433 | { | |
434 | ::BringWindowToTop(GetHwnd()); | |
435 | } | |
436 | ||
437 | // Lower the window to the bottom of the Z order | |
438 | void wxWindow::Lower() | |
439 | { | |
440 | ::SetWindowPos(GetHwnd(), HWND_BOTTOM, 0, 0, 0, 0, | |
441 | SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE); | |
442 | } | |
443 | ||
444 | void wxWindow::SetTitle( const wxString& title) | |
445 | { | |
446 | SetWindowText(GetHwnd(), title.c_str()); | |
447 | } | |
448 | ||
449 | wxString wxWindow::GetTitle() const | |
450 | { | |
451 | return wxGetWindowText(GetHWND()); | |
452 | } | |
453 | ||
fd3f686c | 454 | void wxWindow::CaptureMouse() |
2bda0e17 | 455 | { |
a23fd0e1 | 456 | HWND hWnd = GetHwnd(); |
cc2b7472 | 457 | if ( hWnd && !m_winCaptured ) |
2d0a075d JS |
458 | { |
459 | SetCapture(hWnd); | |
460 | m_winCaptured = TRUE; | |
461 | } | |
2bda0e17 KB |
462 | } |
463 | ||
fd3f686c | 464 | void wxWindow::ReleaseMouse() |
2bda0e17 | 465 | { |
cc2b7472 | 466 | if ( m_winCaptured ) |
2d0a075d JS |
467 | { |
468 | ReleaseCapture(); | |
469 | m_winCaptured = FALSE; | |
470 | } | |
2bda0e17 KB |
471 | } |
472 | ||
42e69d6b | 473 | bool wxWindow::SetFont(const wxFont& font) |
2bda0e17 | 474 | { |
42e69d6b VZ |
475 | if ( !wxWindowBase::SetFont(font) ) |
476 | { | |
477 | // nothing to do | |
478 | return FALSE; | |
2d0a075d | 479 | } |
195896c7 | 480 | |
42e69d6b VZ |
481 | HWND hWnd = GetHwnd(); |
482 | if ( hWnd != 0 ) | |
483 | { | |
484 | WXHANDLE hFont = m_font.GetResourceHandle(); | |
2bda0e17 | 485 | |
223d09f6 | 486 | wxASSERT_MSG( hFont, wxT("should have valid font") ); |
3a19e16d | 487 | |
c50f1fb9 | 488 | ::SendMessage(hWnd, WM_SETFONT, (WPARAM)hFont, MAKELPARAM(TRUE, 0)); |
42e69d6b | 489 | } |
2bda0e17 | 490 | |
42e69d6b VZ |
491 | return TRUE; |
492 | } | |
493 | bool wxWindow::SetCursor(const wxCursor& cursor) | |
2bda0e17 | 494 | { |
42e69d6b VZ |
495 | if ( !wxWindowBase::SetCursor(cursor) ) |
496 | { | |
497 | // no change | |
498 | return FALSE; | |
499 | } | |
500 | ||
8a9c2246 VZ |
501 | if ( m_cursor.Ok() ) |
502 | { | |
503 | HWND hWnd = GetHwnd(); | |
42e69d6b | 504 | |
8a9c2246 VZ |
505 | // Change the cursor NOW if we're within the correct window |
506 | POINT point; | |
507 | ::GetCursorPos(&point); | |
2bda0e17 | 508 | |
8a9c2246 VZ |
509 | RECT rect; |
510 | ::GetWindowRect(hWnd, &rect); | |
3a19e16d | 511 | |
8a9c2246 VZ |
512 | if ( ::PtInRect(&rect, point) && !wxIsBusy() ) |
513 | ::SetCursor(GetHcursorOf(m_cursor)); | |
514 | } | |
3a19e16d | 515 | |
42e69d6b | 516 | return TRUE; |
3a19e16d VZ |
517 | } |
518 | ||
42e69d6b | 519 | void wxWindow::WarpPointer (int x_pos, int y_pos) |
2bda0e17 | 520 | { |
42e69d6b VZ |
521 | // Move the pointer to (x_pos,y_pos) coordinates. They are expressed in |
522 | // pixel coordinates, relatives to the canvas -- So, we first need to | |
523 | // substract origin of the window, then convert to screen position | |
524 | ||
525 | int x = x_pos; int y = y_pos; | |
2d0a075d | 526 | RECT rect; |
42e69d6b | 527 | GetWindowRect (GetHwnd(), &rect); |
cc2b7472 | 528 | |
42e69d6b VZ |
529 | x += rect.left; |
530 | y += rect.top; | |
531 | ||
532 | SetCursorPos (x, y); | |
2bda0e17 KB |
533 | } |
534 | ||
42e69d6b VZ |
535 | #if WXWIN_COMPATIBILITY |
536 | void wxWindow::MSWDeviceToLogical (float *x, float *y) const | |
2bda0e17 | 537 | { |
42e69d6b VZ |
538 | } |
539 | #endif // WXWIN_COMPATIBILITY | |
81d66cf3 | 540 | |
42e69d6b VZ |
541 | // --------------------------------------------------------------------------- |
542 | // scrolling stuff | |
543 | // --------------------------------------------------------------------------- | |
2d0a075d | 544 | |
42e69d6b VZ |
545 | #if WXWIN_COMPATIBILITY |
546 | void wxWindow::SetScrollRange(int orient, int range, bool refresh) | |
547 | { | |
548 | #if defined(__WIN95__) | |
549 | ||
550 | int range1 = range; | |
551 | ||
552 | // Try to adjust the range to cope with page size > 1 | |
553 | // - a Windows API quirk | |
554 | int pageSize = GetScrollPage(orient); | |
555 | if ( pageSize > 1 && range > 0) | |
2d0a075d | 556 | { |
42e69d6b | 557 | range1 += (pageSize - 1); |
2d0a075d JS |
558 | } |
559 | ||
42e69d6b VZ |
560 | SCROLLINFO info; |
561 | int dir; | |
562 | ||
563 | if ( orient == wxHORIZONTAL ) { | |
564 | dir = SB_HORZ; | |
565 | } else { | |
566 | dir = SB_VERT; | |
2d0a075d | 567 | } |
cc2b7472 | 568 | |
42e69d6b VZ |
569 | info.cbSize = sizeof(SCROLLINFO); |
570 | info.nPage = pageSize; // Have to set this, or scrollbar goes awry | |
571 | info.nMin = 0; | |
572 | info.nMax = range1; | |
573 | info.nPos = 0; | |
574 | info.fMask = SIF_RANGE | SIF_PAGE; | |
575 | ||
576 | HWND hWnd = GetHwnd(); | |
577 | if ( hWnd ) | |
578 | ::SetScrollInfo(hWnd, dir, &info, refresh); | |
579 | #else | |
580 | int wOrient; | |
581 | if ( orient == wxHORIZONTAL ) | |
582 | wOrient = SB_HORZ; | |
583 | else | |
584 | wOrient = SB_VERT; | |
585 | ||
586 | HWND hWnd = GetHwnd(); | |
587 | if ( hWnd ) | |
588 | ::SetScrollRange(hWnd, wOrient, 0, range, refresh); | |
589 | #endif | |
2bda0e17 KB |
590 | } |
591 | ||
42e69d6b | 592 | void wxWindow::SetScrollPage(int orient, int page, bool refresh) |
2bda0e17 | 593 | { |
42e69d6b VZ |
594 | #if defined(__WIN95__) |
595 | SCROLLINFO info; | |
596 | int dir; | |
2d0a075d | 597 | |
42e69d6b VZ |
598 | if ( orient == wxHORIZONTAL ) { |
599 | dir = SB_HORZ; | |
600 | m_xThumbSize = page; | |
601 | } else { | |
602 | dir = SB_VERT; | |
603 | m_yThumbSize = page; | |
604 | } | |
0757d27c | 605 | |
42e69d6b VZ |
606 | info.cbSize = sizeof(SCROLLINFO); |
607 | info.nPage = page; | |
608 | info.nMin = 0; | |
609 | info.fMask = SIF_PAGE; | |
610 | ||
611 | HWND hWnd = GetHwnd(); | |
612 | if ( hWnd ) | |
613 | ::SetScrollInfo(hWnd, dir, &info, refresh); | |
614 | #else | |
615 | if ( orient == wxHORIZONTAL ) | |
616 | m_xThumbSize = page; | |
617 | else | |
618 | m_yThumbSize = page; | |
619 | #endif | |
2bda0e17 KB |
620 | } |
621 | ||
42e69d6b | 622 | int wxWindow::OldGetScrollRange(int orient) const |
2bda0e17 | 623 | { |
42e69d6b VZ |
624 | int wOrient; |
625 | if ( orient == wxHORIZONTAL ) | |
626 | wOrient = SB_HORZ; | |
627 | else | |
628 | wOrient = SB_VERT; | |
2d0a075d | 629 | |
42e69d6b VZ |
630 | #if __WATCOMC__ && defined(__WINDOWS_386__) |
631 | short minPos, maxPos; | |
632 | #else | |
633 | int minPos, maxPos; | |
634 | #endif | |
a23fd0e1 | 635 | HWND hWnd = GetHwnd(); |
42e69d6b VZ |
636 | if ( hWnd ) |
637 | { | |
638 | ::GetScrollRange(hWnd, wOrient, &minPos, &maxPos); | |
639 | #if defined(__WIN95__) | |
640 | // Try to adjust the range to cope with page size > 1 | |
641 | // - a Windows API quirk | |
642 | int pageSize = GetScrollPage(orient); | |
643 | if ( pageSize > 1 ) | |
644 | { | |
645 | maxPos -= (pageSize - 1); | |
646 | } | |
647 | #endif | |
648 | return maxPos; | |
649 | } | |
650 | else | |
651 | return 0; | |
652 | } | |
2bda0e17 | 653 | |
42e69d6b VZ |
654 | int wxWindow::GetScrollPage(int orient) const |
655 | { | |
656 | if ( orient == wxHORIZONTAL ) | |
657 | return m_xThumbSize; | |
658 | else | |
659 | return m_yThumbSize; | |
2bda0e17 KB |
660 | } |
661 | ||
42e69d6b VZ |
662 | #endif // WXWIN_COMPATIBILITY |
663 | ||
664 | int wxWindow::GetScrollPos(int orient) const | |
2bda0e17 | 665 | { |
42e69d6b VZ |
666 | int wOrient; |
667 | if ( orient == wxHORIZONTAL ) | |
668 | wOrient = SB_HORZ; | |
669 | else | |
670 | wOrient = SB_VERT; | |
671 | HWND hWnd = GetHwnd(); | |
672 | if ( hWnd ) | |
2d0a075d | 673 | { |
42e69d6b | 674 | return ::GetScrollPos(hWnd, wOrient); |
cc2b7472 | 675 | } |
42e69d6b VZ |
676 | else |
677 | return 0; | |
678 | } | |
2bda0e17 | 679 | |
42e69d6b VZ |
680 | // This now returns the whole range, not just the number |
681 | // of positions that we can scroll. | |
682 | int wxWindow::GetScrollRange(int orient) const | |
683 | { | |
684 | int wOrient; | |
685 | if ( orient == wxHORIZONTAL ) | |
686 | wOrient = SB_HORZ; | |
687 | else | |
688 | wOrient = SB_VERT; | |
2bda0e17 | 689 | |
42e69d6b VZ |
690 | #if __WATCOMC__ && defined(__WINDOWS_386__) |
691 | short minPos, maxPos; | |
692 | #else | |
693 | int minPos, maxPos; | |
694 | #endif | |
a23fd0e1 | 695 | HWND hWnd = GetHwnd(); |
42e69d6b VZ |
696 | if ( hWnd ) |
697 | { | |
698 | ::GetScrollRange(hWnd, wOrient, &minPos, &maxPos); | |
699 | #if defined(__WIN95__) | |
700 | // Try to adjust the range to cope with page size > 1 | |
701 | // - a Windows API quirk | |
702 | int pageSize = GetScrollThumb(orient); | |
703 | if ( pageSize > 1 ) | |
704 | { | |
705 | maxPos -= (pageSize - 1); | |
706 | } | |
707 | // October 10th: new range concept. | |
708 | maxPos += pageSize; | |
709 | #endif | |
2bda0e17 | 710 | |
42e69d6b VZ |
711 | return maxPos; |
712 | } | |
713 | else | |
714 | return 0; | |
cc2b7472 | 715 | } |
2bda0e17 | 716 | |
42e69d6b | 717 | int wxWindow::GetScrollThumb(int orient) const |
2bda0e17 | 718 | { |
42e69d6b VZ |
719 | if ( orient == wxHORIZONTAL ) |
720 | return m_xThumbSize; | |
721 | else | |
722 | return m_yThumbSize; | |
2bda0e17 KB |
723 | } |
724 | ||
42e69d6b | 725 | void wxWindow::SetScrollPos(int orient, int pos, bool refresh) |
2bda0e17 | 726 | { |
42e69d6b VZ |
727 | #if defined(__WIN95__) |
728 | SCROLLINFO info; | |
729 | int dir; | |
72fd19a1 | 730 | |
42e69d6b VZ |
731 | if ( orient == wxHORIZONTAL ) { |
732 | dir = SB_HORZ; | |
733 | } else { | |
734 | dir = SB_VERT; | |
735 | } | |
2d0a075d | 736 | |
42e69d6b VZ |
737 | info.cbSize = sizeof(SCROLLINFO); |
738 | info.nPage = 0; | |
739 | info.nMin = 0; | |
740 | info.nPos = pos; | |
741 | info.fMask = SIF_POS; | |
2d0a075d | 742 | |
42e69d6b VZ |
743 | HWND hWnd = GetHwnd(); |
744 | if ( hWnd ) | |
745 | ::SetScrollInfo(hWnd, dir, &info, refresh); | |
746 | #else | |
747 | int wOrient; | |
748 | if ( orient == wxHORIZONTAL ) | |
749 | wOrient = SB_HORZ; | |
750 | else | |
751 | wOrient = SB_VERT; | |
81d66cf3 | 752 | |
a23fd0e1 | 753 | HWND hWnd = GetHwnd(); |
cc2b7472 | 754 | if ( hWnd ) |
42e69d6b VZ |
755 | ::SetScrollPos(hWnd, wOrient, pos, refresh); |
756 | #endif | |
2bda0e17 KB |
757 | } |
758 | ||
42e69d6b VZ |
759 | // New function that will replace some of the above. |
760 | void wxWindow::SetScrollbar(int orient, int pos, int thumbVisible, | |
761 | int range, bool refresh) | |
2bda0e17 | 762 | { |
42e69d6b VZ |
763 | #if defined(__WIN95__) |
764 | int oldRange = range - thumbVisible; | |
2bda0e17 | 765 | |
42e69d6b | 766 | int range1 = oldRange; |
2bda0e17 | 767 | |
42e69d6b VZ |
768 | // Try to adjust the range to cope with page size > 1 |
769 | // - a Windows API quirk | |
770 | int pageSize = thumbVisible; | |
771 | if ( pageSize > 1 && range > 0) | |
772 | { | |
773 | range1 += (pageSize - 1); | |
774 | } | |
2bda0e17 | 775 | |
42e69d6b VZ |
776 | SCROLLINFO info; |
777 | int dir; | |
2bda0e17 | 778 | |
42e69d6b VZ |
779 | if ( orient == wxHORIZONTAL ) { |
780 | dir = SB_HORZ; | |
781 | } else { | |
782 | dir = SB_VERT; | |
2d0a075d | 783 | } |
2bda0e17 | 784 | |
42e69d6b VZ |
785 | info.cbSize = sizeof(SCROLLINFO); |
786 | info.nPage = pageSize; // Have to set this, or scrollbar goes awry | |
787 | info.nMin = 0; | |
788 | info.nMax = range1; | |
789 | info.nPos = pos; | |
790 | info.fMask = SIF_RANGE | SIF_PAGE | SIF_POS; | |
2bda0e17 | 791 | |
42e69d6b VZ |
792 | HWND hWnd = GetHwnd(); |
793 | if ( hWnd ) | |
794 | ::SetScrollInfo(hWnd, dir, &info, refresh); | |
795 | #else | |
796 | int wOrient; | |
797 | if ( orient == wxHORIZONTAL ) | |
798 | wOrient = SB_HORZ; | |
799 | else | |
800 | wOrient = SB_VERT; | |
81d66cf3 | 801 | |
42e69d6b VZ |
802 | HWND hWnd = GetHwnd(); |
803 | if ( hWnd ) | |
81d66cf3 | 804 | { |
42e69d6b VZ |
805 | ::SetScrollRange(hWnd, wOrient, 0, range, FALSE); |
806 | ::SetScrollPos(hWnd, wOrient, pos, refresh); | |
807 | } | |
808 | #endif | |
809 | if ( orient == wxHORIZONTAL ) { | |
810 | m_xThumbSize = thumbVisible; | |
811 | } else { | |
812 | m_yThumbSize = thumbVisible; | |
81d66cf3 JS |
813 | } |
814 | } | |
815 | ||
42e69d6b | 816 | void wxWindow::ScrollWindow(int dx, int dy, const wxRect *rect) |
2bda0e17 | 817 | { |
42e69d6b VZ |
818 | RECT rect2; |
819 | if ( rect ) | |
2d0a075d | 820 | { |
42e69d6b VZ |
821 | rect2.left = rect->x; |
822 | rect2.top = rect->y; | |
823 | rect2.right = rect->x + rect->width; | |
824 | rect2.bottom = rect->y + rect->height; | |
2d0a075d | 825 | } |
2bda0e17 | 826 | |
42e69d6b VZ |
827 | if ( rect ) |
828 | ::ScrollWindow(GetHwnd(), dx, dy, &rect2, NULL); | |
829 | else | |
830 | ::ScrollWindow(GetHwnd(), dx, dy, NULL, NULL); | |
2bda0e17 KB |
831 | } |
832 | ||
42e69d6b VZ |
833 | // --------------------------------------------------------------------------- |
834 | // subclassing | |
835 | // --------------------------------------------------------------------------- | |
836 | ||
837 | void wxWindow::SubclassWin(WXHWND hWnd) | |
2bda0e17 | 838 | { |
223d09f6 | 839 | wxASSERT_MSG( !m_oldWndProc, wxT("subclassing window twice?") ); |
2bda0e17 | 840 | |
c50f1fb9 | 841 | HWND hwnd = (HWND)hWnd; |
223d09f6 | 842 | wxCHECK_RET( ::IsWindow(hwnd), wxT("invalid HWND in SubclassWin") ); |
c50f1fb9 VZ |
843 | |
844 | wxAssociateWinWithHandle(hwnd, this); | |
2bda0e17 | 845 | |
c50f1fb9 VZ |
846 | m_oldWndProc = (WXFARPROC) GetWindowLong(hwnd, GWL_WNDPROC); |
847 | SetWindowLong(hwnd, GWL_WNDPROC, (LONG) wxWndProc); | |
2bda0e17 KB |
848 | } |
849 | ||
42e69d6b | 850 | void wxWindow::UnsubclassWin() |
2bda0e17 | 851 | { |
42e69d6b | 852 | wxRemoveHandleAssociation(this); |
2bda0e17 | 853 | |
42e69d6b | 854 | // Restore old Window proc |
c50f1fb9 VZ |
855 | HWND hwnd = GetHwnd(); |
856 | if ( hwnd ) | |
42e69d6b | 857 | { |
c50f1fb9 VZ |
858 | m_hWnd = 0; |
859 | ||
223d09f6 | 860 | wxCHECK_RET( ::IsWindow(hwnd), wxT("invalid HWND in UnsubclassWin") ); |
c50f1fb9 VZ |
861 | |
862 | FARPROC farProc = (FARPROC) GetWindowLong(hwnd, GWL_WNDPROC); | |
42e69d6b VZ |
863 | if ( (m_oldWndProc != 0) && (farProc != (FARPROC) m_oldWndProc) ) |
864 | { | |
c50f1fb9 | 865 | SetWindowLong(hwnd, GWL_WNDPROC, (LONG) m_oldWndProc); |
42e69d6b VZ |
866 | m_oldWndProc = 0; |
867 | } | |
42e69d6b | 868 | } |
2bda0e17 KB |
869 | } |
870 | ||
42e69d6b VZ |
871 | // Make a Windows extended style from the given wxWindows window style |
872 | WXDWORD wxWindow::MakeExtendedStyle(long style, bool eliminateBorders) | |
2bda0e17 | 873 | { |
42e69d6b VZ |
874 | WXDWORD exStyle = 0; |
875 | if ( style & wxTRANSPARENT_WINDOW ) | |
876 | exStyle |= WS_EX_TRANSPARENT; | |
2bda0e17 | 877 | |
42e69d6b | 878 | if ( !eliminateBorders ) |
2d0a075d | 879 | { |
42e69d6b VZ |
880 | if ( style & wxSUNKEN_BORDER ) |
881 | exStyle |= WS_EX_CLIENTEDGE; | |
882 | if ( style & wxDOUBLE_BORDER ) | |
883 | exStyle |= WS_EX_DLGMODALFRAME; | |
884 | #if defined(__WIN95__) | |
885 | if ( style & wxRAISED_BORDER ) | |
fe25efa3 JS |
886 | // It seems that WS_EX_WINDOWEDGE doesn't work, but WS_EX_DLGMODALFRAME does |
887 | exStyle |= WS_EX_DLGMODALFRAME; /* WS_EX_WINDOWEDGE */; | |
42e69d6b VZ |
888 | if ( style & wxSTATIC_BORDER ) |
889 | exStyle |= WS_EX_STATICEDGE; | |
890 | #endif | |
2d0a075d | 891 | } |
42e69d6b | 892 | return exStyle; |
2bda0e17 KB |
893 | } |
894 | ||
42e69d6b VZ |
895 | // Determines whether native 3D effects or CTL3D should be used, |
896 | // applying a default border style if required, and returning an extended | |
897 | // style to pass to CreateWindowEx. | |
8d99be5f VZ |
898 | WXDWORD wxWindow::Determine3DEffects(WXDWORD defaultBorderStyle, |
899 | bool *want3D) const | |
2bda0e17 | 900 | { |
42e69d6b VZ |
901 | // If matches certain criteria, then assume no 3D effects |
902 | // unless specifically requested (dealt with in MakeExtendedStyle) | |
903 | if ( !GetParent() || !IsKindOf(CLASSINFO(wxControl)) || (m_windowStyle & wxNO_BORDER) ) | |
2bda0e17 | 904 | { |
42e69d6b VZ |
905 | *want3D = FALSE; |
906 | return MakeExtendedStyle(m_windowStyle, FALSE); | |
2bda0e17 | 907 | } |
2bda0e17 | 908 | |
42e69d6b VZ |
909 | // Determine whether we should be using 3D effects or not. |
910 | bool nativeBorder = FALSE; // by default, we don't want a Win95 effect | |
a02eb1d2 | 911 | |
42e69d6b VZ |
912 | // 1) App can specify global 3D effects |
913 | *want3D = wxTheApp->GetAuto3D(); | |
2bda0e17 | 914 | |
42e69d6b VZ |
915 | // 2) If the parent is being drawn with user colours, or simple border specified, |
916 | // switch effects off. TODO: replace wxUSER_COLOURS with wxNO_3D | |
917 | if ( GetParent() && (GetParent()->GetWindowStyleFlag() & wxUSER_COLOURS) || (m_windowStyle & wxSIMPLE_BORDER) ) | |
918 | *want3D = FALSE; | |
a23fd0e1 | 919 | |
42e69d6b VZ |
920 | // 3) Control can override this global setting by defining |
921 | // a border style, e.g. wxSUNKEN_BORDER | |
922 | if ( m_windowStyle & wxSUNKEN_BORDER ) | |
923 | *want3D = TRUE; | |
2bda0e17 | 924 | |
42e69d6b VZ |
925 | // 4) If it's a special border, CTL3D can't cope so we want a native border |
926 | if ( (m_windowStyle & wxDOUBLE_BORDER) || (m_windowStyle & wxRAISED_BORDER) || | |
927 | (m_windowStyle & wxSTATIC_BORDER) ) | |
2d0a075d | 928 | { |
42e69d6b VZ |
929 | *want3D = TRUE; |
930 | nativeBorder = TRUE; | |
2d0a075d | 931 | } |
ea57084d | 932 | |
42e69d6b VZ |
933 | // 5) If this isn't a Win95 app, and we are using CTL3D, remove border |
934 | // effects from extended style | |
935 | #if wxUSE_CTL3D | |
936 | if ( *want3D ) | |
937 | nativeBorder = FALSE; | |
938 | #endif | |
a23fd0e1 | 939 | |
42e69d6b | 940 | DWORD exStyle = MakeExtendedStyle(m_windowStyle, !nativeBorder); |
2bda0e17 | 941 | |
42e69d6b VZ |
942 | // If we want 3D, but haven't specified a border here, |
943 | // apply the default border style specified. | |
944 | // TODO what about non-Win95 WIN32? Does it have borders? | |
945 | #if defined(__WIN95__) && !wxUSE_CTL3D | |
946 | if ( defaultBorderStyle && (*want3D) && ! ((m_windowStyle & wxDOUBLE_BORDER) || (m_windowStyle & wxRAISED_BORDER ) || | |
947 | (m_windowStyle & wxSTATIC_BORDER) || (m_windowStyle & wxSIMPLE_BORDER) )) | |
948 | exStyle |= defaultBorderStyle; // WS_EX_CLIENTEDGE; | |
949 | #endif | |
950 | ||
951 | return exStyle; | |
a23fd0e1 | 952 | } |
2bda0e17 | 953 | |
c455ab93 | 954 | #if WXWIN_COMPATIBILITY |
42e69d6b VZ |
955 | // If nothing defined for this, try the parent. |
956 | // E.g. we may be a button loaded from a resource, with no callback function | |
957 | // defined. | |
958 | void wxWindow::OnCommand(wxWindow& win, wxCommandEvent& event) | |
2bda0e17 | 959 | { |
42e69d6b VZ |
960 | if ( GetEventHandler()->ProcessEvent(event) ) |
961 | return; | |
962 | if ( m_parent ) | |
963 | m_parent->GetEventHandler()->OnCommand(win, event); | |
964 | } | |
965 | #endif // WXWIN_COMPATIBILITY_2 | |
c085e333 | 966 | |
42e69d6b VZ |
967 | #if WXWIN_COMPATIBILITY |
968 | wxObject* wxWindow::GetChild(int number) const | |
969 | { | |
970 | // Return a pointer to the Nth object in the Panel | |
971 | wxNode *node = GetChildren().First(); | |
972 | int n = number; | |
973 | while (node && n--) | |
974 | node = node->Next(); | |
975 | if ( node ) | |
976 | { | |
977 | wxObject *obj = (wxObject *)node->Data(); | |
978 | return(obj); | |
979 | } | |
980 | else | |
981 | return NULL; | |
982 | } | |
983 | #endif // WXWIN_COMPATIBILITY | |
2bda0e17 | 984 | |
42e69d6b VZ |
985 | // Setup background and foreground colours correctly |
986 | void wxWindow::SetupColours() | |
987 | { | |
988 | if ( GetParent() ) | |
989 | SetBackgroundColour(GetParent()->GetBackgroundColour()); | |
990 | } | |
a23fd0e1 | 991 | |
33ac7e6f | 992 | void wxWindow::OnIdle(wxIdleEvent& WXUNUSED(event)) |
42e69d6b VZ |
993 | { |
994 | // Check if we need to send a LEAVE event | |
995 | if ( m_mouseInWindow ) | |
2d0a075d | 996 | { |
42e69d6b VZ |
997 | POINT pt; |
998 | ::GetCursorPos(&pt); | |
999 | if ( ::WindowFromPoint(pt) != GetHwnd() ) | |
1000 | { | |
1001 | // Generate a LEAVE event | |
1002 | m_mouseInWindow = FALSE; | |
2bda0e17 | 1003 | |
42e69d6b VZ |
1004 | // Unfortunately the mouse button and keyboard state may have changed |
1005 | // by the time the OnIdle function is called, so 'state' may be | |
1006 | // meaningless. | |
1007 | int state = 0; | |
3f7bc32b | 1008 | if ( wxIsShiftDown() ) |
42e69d6b | 1009 | state |= MK_SHIFT; |
3f7bc32b | 1010 | if ( wxIsCtrlDown() ) |
42e69d6b | 1011 | state |= MK_CONTROL; |
54ca0d12 GRG |
1012 | if ( GetKeyState( VK_LBUTTON ) ) |
1013 | state |= MK_LBUTTON; | |
1014 | if ( GetKeyState( VK_MBUTTON ) ) | |
1015 | state |= MK_MBUTTON; | |
1016 | if ( GetKeyState( VK_RBUTTON ) ) | |
1017 | state |= MK_RBUTTON; | |
33ac7e6f | 1018 | |
42e69d6b VZ |
1019 | wxMouseEvent event(wxEVT_LEAVE_WINDOW); |
1020 | InitMouseEvent(event, pt.x, pt.y, state); | |
c085e333 | 1021 | |
42e69d6b VZ |
1022 | (void)GetEventHandler()->ProcessEvent(event); |
1023 | } | |
1024 | } | |
c085e333 | 1025 | |
42e69d6b VZ |
1026 | UpdateWindowUI(); |
1027 | } | |
568cb543 | 1028 | |
42e69d6b | 1029 | // Set this window to be the child of 'parent'. |
33ac7e6f | 1030 | bool wxWindow::Reparent(wxWindowBase *parent) |
42e69d6b VZ |
1031 | { |
1032 | if ( !wxWindowBase::Reparent(parent) ) | |
1033 | return FALSE; | |
c085e333 | 1034 | |
42e69d6b VZ |
1035 | HWND hWndChild = GetHwnd(); |
1036 | HWND hWndParent = GetParent() ? GetWinHwnd(GetParent()) : (HWND)0; | |
a23fd0e1 | 1037 | |
42e69d6b | 1038 | ::SetParent(hWndChild, hWndParent); |
a23fd0e1 | 1039 | |
42e69d6b VZ |
1040 | return TRUE; |
1041 | } | |
a23fd0e1 | 1042 | |
42e69d6b VZ |
1043 | void wxWindow::Clear() |
1044 | { | |
1045 | wxClientDC dc(this); | |
1046 | wxBrush brush(GetBackgroundColour(), wxSOLID); | |
1047 | dc.SetBackground(brush); | |
1048 | dc.Clear(); | |
1049 | } | |
a23fd0e1 | 1050 | |
42e69d6b VZ |
1051 | void wxWindow::Refresh(bool eraseBack, const wxRect *rect) |
1052 | { | |
1053 | HWND hWnd = GetHwnd(); | |
1054 | if ( hWnd ) | |
1055 | { | |
1056 | if ( rect ) | |
1057 | { | |
1058 | RECT mswRect; | |
1059 | mswRect.left = rect->x; | |
1060 | mswRect.top = rect->y; | |
1061 | mswRect.right = rect->x + rect->width; | |
1062 | mswRect.bottom = rect->y + rect->height; | |
a23fd0e1 | 1063 | |
42e69d6b VZ |
1064 | ::InvalidateRect(hWnd, &mswRect, eraseBack); |
1065 | } | |
1066 | else | |
1067 | ::InvalidateRect(hWnd, NULL, eraseBack); | |
1068 | } | |
1069 | } | |
a23fd0e1 | 1070 | |
42e69d6b VZ |
1071 | // --------------------------------------------------------------------------- |
1072 | // drag and drop | |
1073 | // --------------------------------------------------------------------------- | |
a23fd0e1 | 1074 | |
34636400 | 1075 | #if wxUSE_DRAG_AND_DROP |
a23fd0e1 | 1076 | |
42e69d6b VZ |
1077 | void wxWindow::SetDropTarget(wxDropTarget *pDropTarget) |
1078 | { | |
1079 | if ( m_dropTarget != 0 ) { | |
1080 | m_dropTarget->Revoke(m_hWnd); | |
1081 | delete m_dropTarget; | |
1082 | } | |
a23fd0e1 | 1083 | |
42e69d6b VZ |
1084 | m_dropTarget = pDropTarget; |
1085 | if ( m_dropTarget != 0 ) | |
1086 | m_dropTarget->Register(m_hWnd); | |
1087 | } | |
a23fd0e1 | 1088 | |
42e69d6b | 1089 | #endif // wxUSE_DRAG_AND_DROP |
2a47d3c1 | 1090 | |
42e69d6b VZ |
1091 | // old style file-manager drag&drop support: we retain the old-style |
1092 | // DragAcceptFiles in parallel with SetDropTarget. | |
1093 | void wxWindow::DragAcceptFiles(bool accept) | |
1094 | { | |
1095 | HWND hWnd = GetHwnd(); | |
1096 | if ( hWnd ) | |
1097 | ::DragAcceptFiles(hWnd, (BOOL)accept); | |
1098 | } | |
a23fd0e1 | 1099 | |
42e69d6b VZ |
1100 | // ---------------------------------------------------------------------------- |
1101 | // tooltips | |
1102 | // ---------------------------------------------------------------------------- | |
dbda9e86 | 1103 | |
42e69d6b | 1104 | #if wxUSE_TOOLTIPS |
2d0a075d | 1105 | |
42e69d6b VZ |
1106 | void wxWindow::DoSetToolTip(wxToolTip *tooltip) |
1107 | { | |
1108 | wxWindowBase::DoSetToolTip(tooltip); | |
839b865d | 1109 | |
42e69d6b VZ |
1110 | if ( m_tooltip ) |
1111 | m_tooltip->SetWindow(this); | |
1112 | } | |
9a05fd8d | 1113 | |
42e69d6b | 1114 | #endif // wxUSE_TOOLTIPS |
9a05fd8d | 1115 | |
42e69d6b VZ |
1116 | // --------------------------------------------------------------------------- |
1117 | // moving and resizing | |
1118 | // --------------------------------------------------------------------------- | |
839b865d | 1119 | |
42e69d6b VZ |
1120 | // Get total size |
1121 | void wxWindow::DoGetSize(int *x, int *y) const | |
1122 | { | |
1123 | HWND hWnd = GetHwnd(); | |
1124 | RECT rect; | |
f6bcfd97 BP |
1125 | #ifdef __WIN16__ |
1126 | ::GetWindowRect(hWnd, &rect); | |
1127 | #else | |
1128 | if ( !::GetWindowRect(hWnd, &rect) ) | |
1129 | { | |
1130 | wxLogLastError(_T("GetWindowRect")); | |
1131 | } | |
1132 | #endif | |
42e69d6b VZ |
1133 | if ( x ) |
1134 | *x = rect.right - rect.left; | |
1135 | if ( y ) | |
1136 | *y = rect.bottom - rect.top; | |
1137 | } | |
1138 | ||
1139 | void wxWindow::DoGetPosition(int *x, int *y) const | |
1140 | { | |
1141 | HWND hWnd = GetHwnd(); | |
42e69d6b VZ |
1142 | |
1143 | RECT rect; | |
1144 | GetWindowRect(hWnd, &rect); | |
1145 | ||
42e69d6b VZ |
1146 | POINT point; |
1147 | point.x = rect.left; | |
1148 | point.y = rect.top; | |
42e69d6b | 1149 | |
92049cd4 VZ |
1150 | // we do the adjustments with respect to the parent only for the "real" |
1151 | // children, not for the dialogs/frames | |
1152 | if ( !IsTopLevel() ) | |
42e69d6b | 1153 | { |
92049cd4 VZ |
1154 | HWND hParentWnd = 0; |
1155 | wxWindow *parent = GetParent(); | |
1156 | if ( parent ) | |
1157 | hParentWnd = GetWinHwnd(parent); | |
1158 | ||
1159 | // Since we now have the absolute screen coords, if there's a parent we | |
1160 | // must subtract its top left corner | |
1161 | if ( hParentWnd ) | |
1162 | { | |
1163 | ::ScreenToClient(hParentWnd, &point); | |
1164 | } | |
1165 | ||
89e3037c GT |
1166 | if ( parent ) |
1167 | { | |
1168 | // We may be faking the client origin. So a window that's really at (0, | |
1169 | // 30) may appear (to wxWin apps) to be at (0, 0). | |
1170 | wxPoint pt(parent->GetClientAreaOrigin()); | |
1171 | point.x -= pt.x; | |
1172 | point.y -= pt.y; | |
1173 | } | |
42e69d6b VZ |
1174 | } |
1175 | ||
1176 | if ( x ) | |
1177 | *x = point.x; | |
1178 | if ( y ) | |
1179 | *y = point.y; | |
1180 | } | |
54bdd8b0 | 1181 | |
dabc0cd5 | 1182 | void wxWindow::DoScreenToClient(int *x, int *y) const |
42e69d6b VZ |
1183 | { |
1184 | POINT pt; | |
1185 | if ( x ) | |
1186 | pt.x = *x; | |
1187 | if ( y ) | |
1188 | pt.y = *y; | |
54bdd8b0 | 1189 | |
42e69d6b VZ |
1190 | HWND hWnd = GetHwnd(); |
1191 | ::ScreenToClient(hWnd, &pt); | |
a23fd0e1 | 1192 | |
42e69d6b VZ |
1193 | if ( x ) |
1194 | *x = pt.x; | |
1195 | if ( y ) | |
1196 | *y = pt.y; | |
1197 | } | |
a23fd0e1 | 1198 | |
dabc0cd5 | 1199 | void wxWindow::DoClientToScreen(int *x, int *y) const |
42e69d6b VZ |
1200 | { |
1201 | POINT pt; | |
1202 | if ( x ) | |
1203 | pt.x = *x; | |
1204 | if ( y ) | |
1205 | pt.y = *y; | |
54bdd8b0 | 1206 | |
42e69d6b VZ |
1207 | HWND hWnd = GetHwnd(); |
1208 | ::ClientToScreen(hWnd, &pt); | |
a23fd0e1 | 1209 | |
42e69d6b VZ |
1210 | if ( x ) |
1211 | *x = pt.x; | |
1212 | if ( y ) | |
1213 | *y = pt.y; | |
1214 | } | |
a23fd0e1 | 1215 | |
42e69d6b VZ |
1216 | // Get size *available for subwindows* i.e. excluding menu bar etc. |
1217 | void wxWindow::DoGetClientSize(int *x, int *y) const | |
1218 | { | |
1219 | HWND hWnd = GetHwnd(); | |
1220 | RECT rect; | |
1221 | ::GetClientRect(hWnd, &rect); | |
1222 | if ( x ) | |
1223 | *x = rect.right; | |
1224 | if ( y ) | |
1225 | *y = rect.bottom; | |
1226 | } | |
a23fd0e1 | 1227 | |
b782f2e0 VZ |
1228 | void wxWindow::DoMoveWindow(int x, int y, int width, int height) |
1229 | { | |
1230 | if ( !::MoveWindow(GetHwnd(), x, y, width, height, TRUE) ) | |
1231 | { | |
f6bcfd97 | 1232 | wxLogLastError(wxT("MoveWindow")); |
b782f2e0 VZ |
1233 | } |
1234 | } | |
1235 | ||
4438caf4 VZ |
1236 | // set the size of the window: if the dimensions are positive, just use them, |
1237 | // but if any of them is equal to -1, it means that we must find the value for | |
1238 | // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in | |
1239 | // which case -1 is a valid value for x and y) | |
1240 | // | |
1241 | // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate | |
1242 | // the width/height to best suit our contents, otherwise we reuse the current | |
1243 | // width/height | |
42e69d6b VZ |
1244 | void wxWindow::DoSetSize(int x, int y, int width, int height, int sizeFlags) |
1245 | { | |
4438caf4 | 1246 | // get the current size and position... |
42e69d6b VZ |
1247 | int currentX, currentY; |
1248 | GetPosition(¤tX, ¤tY); | |
1249 | int currentW,currentH; | |
1250 | GetSize(¤tW, ¤tH); | |
a23fd0e1 | 1251 | |
4438caf4 VZ |
1252 | // ... and don't do anything (avoiding flicker) if it's already ok |
1253 | if ( x == currentX && y == currentY && | |
1254 | width == currentW && height == currentH ) | |
1255 | { | |
42e69d6b | 1256 | return; |
4438caf4 | 1257 | } |
a23fd0e1 | 1258 | |
f8c03547 | 1259 | if ( x == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) ) |
4438caf4 | 1260 | x = currentX; |
f8c03547 | 1261 | if ( y == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) ) |
4438caf4 | 1262 | y = currentY; |
a23fd0e1 | 1263 | |
4438caf4 | 1264 | AdjustForParentClientOrigin(x, y, sizeFlags); |
a23fd0e1 | 1265 | |
4438caf4 | 1266 | wxSize size(-1, -1); |
42e69d6b | 1267 | if ( width == -1 ) |
4438caf4 | 1268 | { |
9e2896e5 | 1269 | if ( sizeFlags & wxSIZE_AUTO_WIDTH ) |
4438caf4 VZ |
1270 | { |
1271 | size = DoGetBestSize(); | |
1272 | width = size.x; | |
1273 | } | |
1274 | else | |
1275 | { | |
1276 | // just take the current one | |
1277 | width = currentW; | |
1278 | } | |
1279 | } | |
1280 | ||
42e69d6b | 1281 | if ( height == -1 ) |
4438caf4 | 1282 | { |
9e2896e5 | 1283 | if ( sizeFlags & wxSIZE_AUTO_HEIGHT ) |
4438caf4 VZ |
1284 | { |
1285 | if ( size.x == -1 ) | |
1286 | { | |
b782f2e0 | 1287 | size = DoGetBestSize(); |
4438caf4 VZ |
1288 | } |
1289 | //else: already called DoGetBestSize() above | |
a23fd0e1 | 1290 | |
4438caf4 VZ |
1291 | height = size.y; |
1292 | } | |
1293 | else | |
1294 | { | |
1295 | // just take the current one | |
1296 | height = currentH; | |
1297 | } | |
1298 | } | |
1299 | ||
b782f2e0 | 1300 | DoMoveWindow(x, y, width, height); |
4438caf4 VZ |
1301 | } |
1302 | ||
42e69d6b VZ |
1303 | void wxWindow::DoSetClientSize(int width, int height) |
1304 | { | |
1305 | wxWindow *parent = GetParent(); | |
1306 | HWND hWnd = GetHwnd(); | |
1307 | HWND hParentWnd = (HWND) 0; | |
1308 | if ( parent ) | |
1309 | hParentWnd = (HWND) parent->GetHWND(); | |
2bda0e17 | 1310 | |
42e69d6b VZ |
1311 | RECT rect; |
1312 | ::GetClientRect(hWnd, &rect); | |
a23fd0e1 | 1313 | |
42e69d6b VZ |
1314 | RECT rect2; |
1315 | GetWindowRect(hWnd, &rect2); | |
a23fd0e1 | 1316 | |
42e69d6b VZ |
1317 | // Find the difference between the entire window (title bar and all) |
1318 | // and the client area; add this to the new client size to move the | |
1319 | // window | |
1320 | int actual_width = rect2.right - rect2.left - rect.right + width; | |
1321 | int actual_height = rect2.bottom - rect2.top - rect.bottom + height; | |
a23fd0e1 | 1322 | |
42e69d6b VZ |
1323 | // If there's a parent, must subtract the parent's top left corner |
1324 | // since MoveWindow moves relative to the parent | |
a23fd0e1 | 1325 | |
42e69d6b VZ |
1326 | POINT point; |
1327 | point.x = rect2.left; | |
1328 | point.y = rect2.top; | |
1329 | if ( parent ) | |
1330 | { | |
1331 | ::ScreenToClient(hParentWnd, &point); | |
1332 | } | |
387a3b02 | 1333 | |
b782f2e0 | 1334 | DoMoveWindow(point.x, point.y, actual_width, actual_height); |
a23fd0e1 | 1335 | |
42e69d6b VZ |
1336 | wxSizeEvent event(wxSize(width, height), m_windowId); |
1337 | event.SetEventObject(this); | |
1338 | GetEventHandler()->ProcessEvent(event); | |
1339 | } | |
a23fd0e1 | 1340 | |
42e69d6b VZ |
1341 | // For implementation purposes - sometimes decorations make the client area |
1342 | // smaller | |
1343 | wxPoint wxWindow::GetClientAreaOrigin() const | |
1344 | { | |
1345 | return wxPoint(0, 0); | |
1346 | } | |
a23fd0e1 | 1347 | |
42e69d6b VZ |
1348 | // Makes an adjustment to the window position (for example, a frame that has |
1349 | // a toolbar that it manages itself). | |
1350 | void wxWindow::AdjustForParentClientOrigin(int& x, int& y, int sizeFlags) | |
1351 | { | |
92049cd4 VZ |
1352 | // don't do it for the dialogs/frames - they float independently of their |
1353 | // parent | |
1354 | if ( !IsTopLevel() ) | |
42e69d6b | 1355 | { |
92049cd4 VZ |
1356 | wxWindow *parent = GetParent(); |
1357 | if ( !(sizeFlags & wxSIZE_NO_ADJUSTMENTS) && parent ) | |
1358 | { | |
1359 | wxPoint pt(parent->GetClientAreaOrigin()); | |
1360 | x += pt.x; y += pt.y; | |
1361 | } | |
42e69d6b VZ |
1362 | } |
1363 | } | |
a23fd0e1 | 1364 | |
42e69d6b VZ |
1365 | // --------------------------------------------------------------------------- |
1366 | // text metrics | |
1367 | // --------------------------------------------------------------------------- | |
a23fd0e1 | 1368 | |
42e69d6b VZ |
1369 | int wxWindow::GetCharHeight() const |
1370 | { | |
f6bcfd97 | 1371 | return wxGetTextMetrics(this).tmHeight; |
42e69d6b | 1372 | } |
3eddf563 | 1373 | |
42e69d6b VZ |
1374 | int wxWindow::GetCharWidth() const |
1375 | { | |
f6bcfd97 BP |
1376 | // +1 is needed because Windows apparently adds it when calculating the |
1377 | // dialog units size in pixels | |
1378 | #if wxDIALOG_UNIT_COMPATIBILITY | |
1379 | return wxGetTextMetrics(this).tmAveCharWidth ; | |
1380 | #else | |
1381 | return wxGetTextMetrics(this).tmAveCharWidth + 1; | |
1382 | #endif | |
42e69d6b | 1383 | } |
f4621a09 | 1384 | |
34636400 VZ |
1385 | void wxWindow::GetTextExtent(const wxString& string, |
1386 | int *x, int *y, | |
42e69d6b VZ |
1387 | int *descent, int *externalLeading, |
1388 | const wxFont *theFont) const | |
1389 | { | |
1390 | const wxFont *fontToUse = theFont; | |
1391 | if ( !fontToUse ) | |
1392 | fontToUse = &m_font; | |
634903fd | 1393 | |
42e69d6b VZ |
1394 | HWND hWnd = GetHwnd(); |
1395 | HDC dc = ::GetDC(hWnd); | |
634903fd | 1396 | |
42e69d6b VZ |
1397 | HFONT fnt = 0; |
1398 | HFONT hfontOld = 0; | |
1399 | if ( fontToUse && fontToUse->Ok() ) | |
1400 | { | |
1401 | fnt = (HFONT)((wxFont *)fontToUse)->GetResourceHandle(); // const_cast | |
1402 | if ( fnt ) | |
1403 | hfontOld = (HFONT)SelectObject(dc,fnt); | |
2bda0e17 | 1404 | } |
341c92a8 | 1405 | |
42e69d6b VZ |
1406 | SIZE sizeRect; |
1407 | TEXTMETRIC tm; | |
4438caf4 | 1408 | GetTextExtentPoint(dc, string, (int)string.Length(), &sizeRect); |
42e69d6b VZ |
1409 | GetTextMetrics(dc, &tm); |
1410 | ||
1411 | if ( fontToUse && fnt && hfontOld ) | |
1412 | SelectObject(dc, hfontOld); | |
1413 | ||
1414 | ReleaseDC(hWnd, dc); | |
1415 | ||
0655ad29 VZ |
1416 | if ( x ) |
1417 | *x = sizeRect.cx; | |
1418 | if ( y ) | |
1419 | *y = sizeRect.cy; | |
1420 | if ( descent ) | |
1421 | *descent = tm.tmDescent; | |
1422 | if ( externalLeading ) | |
1423 | *externalLeading = tm.tmExternalLeading; | |
2bda0e17 KB |
1424 | } |
1425 | ||
c455ab93 | 1426 | #if wxUSE_CARET && WXWIN_COMPATIBILITY |
42e69d6b VZ |
1427 | // --------------------------------------------------------------------------- |
1428 | // Caret manipulation | |
1429 | // --------------------------------------------------------------------------- | |
1430 | ||
1431 | void wxWindow::CreateCaret(int w, int h) | |
2bda0e17 | 1432 | { |
789295bf | 1433 | SetCaret(new wxCaret(this, w, h)); |
2bda0e17 KB |
1434 | } |
1435 | ||
42e69d6b | 1436 | void wxWindow::CreateCaret(const wxBitmap *WXUNUSED(bitmap)) |
2bda0e17 | 1437 | { |
789295bf | 1438 | wxFAIL_MSG("not implemented"); |
2bda0e17 KB |
1439 | } |
1440 | ||
42e69d6b | 1441 | void wxWindow::ShowCaret(bool show) |
2bda0e17 | 1442 | { |
789295bf VZ |
1443 | wxCHECK_RET( m_caret, "no caret to show" ); |
1444 | ||
1445 | m_caret->Show(show); | |
2bda0e17 KB |
1446 | } |
1447 | ||
42e69d6b | 1448 | void wxWindow::DestroyCaret() |
2bda0e17 | 1449 | { |
789295bf | 1450 | SetCaret(NULL); |
2bda0e17 KB |
1451 | } |
1452 | ||
42e69d6b | 1453 | void wxWindow::SetCaretPos(int x, int y) |
2bda0e17 | 1454 | { |
789295bf VZ |
1455 | wxCHECK_RET( m_caret, "no caret to move" ); |
1456 | ||
1457 | m_caret->Move(x, y); | |
2bda0e17 KB |
1458 | } |
1459 | ||
42e69d6b | 1460 | void wxWindow::GetCaretPos(int *x, int *y) const |
2d0a075d | 1461 | { |
789295bf VZ |
1462 | wxCHECK_RET( m_caret, "no caret to get position of" ); |
1463 | ||
1464 | m_caret->GetPosition(x, y); | |
42e69d6b | 1465 | } |
789295bf | 1466 | #endif // wxUSE_CARET |
2bda0e17 | 1467 | |
c50f1fb9 VZ |
1468 | // --------------------------------------------------------------------------- |
1469 | // popup menu | |
1470 | // --------------------------------------------------------------------------- | |
1471 | ||
a1665b22 | 1472 | bool wxWindow::DoPopupMenu(wxMenu *menu, int x, int y) |
c50f1fb9 VZ |
1473 | { |
1474 | menu->SetInvokingWindow(this); | |
1475 | menu->UpdateUI(); | |
1476 | ||
1477 | HWND hWnd = GetHwnd(); | |
1478 | HMENU hMenu = GetHmenuOf(menu); | |
1479 | POINT point; | |
1480 | point.x = x; | |
1481 | point.y = y; | |
1482 | ::ClientToScreen(hWnd, &point); | |
1483 | wxCurrentPopupMenu = menu; | |
1484 | ::TrackPopupMenu(hMenu, TPM_RIGHTBUTTON, point.x, point.y, 0, hWnd, NULL); | |
29e2c38b | 1485 | wxYieldIfNeeded(); |
c50f1fb9 VZ |
1486 | wxCurrentPopupMenu = NULL; |
1487 | ||
1488 | menu->SetInvokingWindow(NULL); | |
1489 | ||
1490 | return TRUE; | |
1491 | } | |
1492 | ||
42e69d6b VZ |
1493 | // =========================================================================== |
1494 | // pre/post message processing | |
1495 | // =========================================================================== | |
2bda0e17 | 1496 | |
42e69d6b VZ |
1497 | long wxWindow::MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) |
1498 | { | |
1499 | if ( m_oldWndProc ) | |
1500 | return ::CallWindowProc(CASTWNDPROC m_oldWndProc, GetHwnd(), (UINT) nMsg, (WPARAM) wParam, (LPARAM) lParam); | |
1501 | else | |
1502 | return ::DefWindowProc(GetHwnd(), nMsg, wParam, lParam); | |
1503 | } | |
2bda0e17 | 1504 | |
42e69d6b VZ |
1505 | bool wxWindow::MSWProcessMessage(WXMSG* pMsg) |
1506 | { | |
1507 | if ( m_hWnd != 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL) ) | |
2d0a075d | 1508 | { |
42e69d6b VZ |
1509 | // intercept dialog navigation keys |
1510 | MSG *msg = (MSG *)pMsg; | |
d9317fd4 VZ |
1511 | |
1512 | // here we try to do all the job which ::IsDialogMessage() usually does | |
1513 | // internally | |
d9506e77 | 1514 | #if 1 |
42e69d6b VZ |
1515 | bool bProcess = TRUE; |
1516 | if ( msg->message != WM_KEYDOWN ) | |
1517 | bProcess = FALSE; | |
c085e333 | 1518 | |
42e69d6b VZ |
1519 | if ( bProcess && (HIWORD(msg->lParam) & KF_ALTDOWN) == KF_ALTDOWN ) |
1520 | bProcess = FALSE; | |
a23fd0e1 | 1521 | |
42e69d6b VZ |
1522 | if ( bProcess ) |
1523 | { | |
3f7bc32b VZ |
1524 | bool bCtrlDown = wxIsCtrlDown(); |
1525 | bool bShiftDown = wxIsShiftDown(); | |
a23fd0e1 | 1526 | |
42e69d6b VZ |
1527 | // WM_GETDLGCODE: ask the control if it wants the key for itself, |
1528 | // don't process it if it's the case (except for Ctrl-Tab/Enter | |
1529 | // combinations which are always processed) | |
1530 | LONG lDlgCode = 0; | |
1531 | if ( !bCtrlDown ) | |
1532 | { | |
1533 | lDlgCode = ::SendMessage(msg->hwnd, WM_GETDLGCODE, 0, 0); | |
1534 | } | |
a23fd0e1 | 1535 | |
42e69d6b VZ |
1536 | bool bForward = TRUE, |
1537 | bWindowChange = FALSE; | |
a23fd0e1 | 1538 | |
9145664b | 1539 | switch ( msg->wParam ) |
42e69d6b VZ |
1540 | { |
1541 | case VK_TAB: | |
319fefa9 VZ |
1542 | // assume that nobody wants Shift-TAB for himself - if we |
1543 | // don't do it there is no easy way for a control to grab | |
1544 | // TABs but still let Shift-TAB work as navugation key | |
1545 | if ( (lDlgCode & DLGC_WANTTAB) && !bShiftDown ) { | |
42e69d6b VZ |
1546 | bProcess = FALSE; |
1547 | } | |
1548 | else { | |
1549 | // Ctrl-Tab cycles thru notebook pages | |
1550 | bWindowChange = bCtrlDown; | |
319fefa9 | 1551 | bForward = !bShiftDown; |
42e69d6b VZ |
1552 | } |
1553 | break; | |
a23fd0e1 | 1554 | |
42e69d6b VZ |
1555 | case VK_UP: |
1556 | case VK_LEFT: | |
1557 | if ( (lDlgCode & DLGC_WANTARROWS) || bCtrlDown ) | |
1558 | bProcess = FALSE; | |
1559 | else | |
1560 | bForward = FALSE; | |
1561 | break; | |
a02eb1d2 | 1562 | |
42e69d6b VZ |
1563 | case VK_DOWN: |
1564 | case VK_RIGHT: | |
1565 | if ( (lDlgCode & DLGC_WANTARROWS) || bCtrlDown ) | |
1566 | bProcess = FALSE; | |
1567 | break; | |
2bda0e17 | 1568 | |
42e69d6b VZ |
1569 | case VK_RETURN: |
1570 | { | |
edccf428 | 1571 | if ( (lDlgCode & DLGC_WANTMESSAGE) && !bCtrlDown ) |
42e69d6b VZ |
1572 | { |
1573 | // control wants to process Enter itself, don't | |
1574 | // call IsDialogMessage() which would interpret | |
1575 | // it | |
1576 | return FALSE; | |
1577 | } | |
319fefa9 VZ |
1578 | else if ( lDlgCode & DLGC_BUTTON ) |
1579 | { | |
3e79ed96 VZ |
1580 | // let IsDialogMessage() handle this for all |
1581 | // buttons except the owner-drawn ones which it | |
1582 | // just seems to ignore | |
1583 | long style = ::GetWindowLong(msg->hwnd, GWL_STYLE); | |
1584 | if ( (style & BS_OWNERDRAW) == BS_OWNERDRAW ) | |
1585 | { | |
1586 | // emulate the button click | |
1587 | wxWindow *btn = wxFindWinFromHandle((WXHWND)msg->hwnd); | |
1588 | if ( btn ) | |
1589 | btn->MSWCommand(BN_CLICKED, 0 /* unused */); | |
1590 | } | |
1591 | ||
319fefa9 VZ |
1592 | bProcess = FALSE; |
1593 | } | |
c50f1fb9 VZ |
1594 | else |
1595 | { | |
33ac7e6f | 1596 | wxPanel *panel = wxDynamicThisCast(this, wxPanel); |
c50f1fb9 VZ |
1597 | wxButton *btn = NULL; |
1598 | if ( panel ) | |
1599 | { | |
1600 | // panel may have a default button which should | |
1601 | // be activated by Enter | |
1602 | btn = panel->GetDefaultItem(); | |
1603 | } | |
1604 | ||
73927f8b | 1605 | if ( btn && btn->IsEnabled() ) |
c50f1fb9 VZ |
1606 | { |
1607 | // if we do have a default button, do press it | |
1608 | btn->MSWCommand(BN_CLICKED, 0 /* unused */); | |
1609 | ||
1610 | return TRUE; | |
1611 | } | |
1612 | // else: but if it does not it makes sense to make | |
1613 | // it work like a TAB - and that's what we do. | |
1614 | // Note that Ctrl-Enter always works this way. | |
1615 | } | |
42e69d6b VZ |
1616 | } |
1617 | break; | |
2bda0e17 | 1618 | |
42e69d6b VZ |
1619 | default: |
1620 | bProcess = FALSE; | |
1621 | } | |
2bda0e17 | 1622 | |
42e69d6b VZ |
1623 | if ( bProcess ) |
1624 | { | |
1625 | wxNavigationKeyEvent event; | |
1626 | event.SetDirection(bForward); | |
1627 | event.SetWindowChange(bWindowChange); | |
1628 | event.SetEventObject(this); | |
3572173c | 1629 | |
42e69d6b | 1630 | if ( GetEventHandler()->ProcessEvent(event) ) |
57c0af52 VZ |
1631 | { |
1632 | wxButton *btn = wxDynamicCast(FindFocus(), wxButton); | |
1633 | if ( btn ) | |
1634 | { | |
1635 | // the button which has focus should be default | |
1636 | btn->SetDefault(); | |
1637 | } | |
1638 | ||
42e69d6b | 1639 | return TRUE; |
57c0af52 | 1640 | } |
42e69d6b VZ |
1641 | } |
1642 | } | |
d9317fd4 VZ |
1643 | #else |
1644 | // let ::IsDialogMessage() do almost everything and handle just the | |
1645 | // things it doesn't here: Ctrl-TAB for switching notebook pages | |
1646 | if ( msg->message == WM_KEYDOWN ) | |
1647 | { | |
1648 | // don't process system keys here | |
1649 | if ( !(HIWORD(msg->lParam) & KF_ALTDOWN) ) | |
1650 | { | |
3f7bc32b | 1651 | if ( (msg->wParam == VK_TAB) && wxIsCtrlDown() ) |
d9317fd4 VZ |
1652 | { |
1653 | // find the first notebook parent and change its page | |
1654 | wxWindow *win = this; | |
1655 | wxNotebook *nbook = NULL; | |
1656 | while ( win && !nbook ) | |
1657 | { | |
1658 | nbook = wxDynamicCast(win, wxNotebook); | |
1659 | win = win->GetParent(); | |
1660 | } | |
1661 | ||
1662 | if ( nbook ) | |
1663 | { | |
3f7bc32b | 1664 | bool forward = !wxIsShiftDown(); |
d9317fd4 VZ |
1665 | |
1666 | nbook->AdvanceSelection(forward); | |
1667 | } | |
1668 | } | |
1669 | } | |
1670 | } | |
1671 | #endif // 0 | |
a23fd0e1 | 1672 | |
42e69d6b | 1673 | if ( ::IsDialogMessage(GetHwnd(), msg) ) |
f6bcfd97 BP |
1674 | { |
1675 | // IsDialogMessage() did something... | |
42e69d6b | 1676 | return TRUE; |
f6bcfd97 | 1677 | } |
42e69d6b | 1678 | } |
a23fd0e1 | 1679 | |
42e69d6b VZ |
1680 | #if wxUSE_TOOLTIPS |
1681 | if ( m_tooltip ) | |
387a3b02 | 1682 | { |
42e69d6b VZ |
1683 | // relay mouse move events to the tooltip control |
1684 | MSG *msg = (MSG *)pMsg; | |
1685 | if ( msg->message == WM_MOUSEMOVE ) | |
1686 | m_tooltip->RelayEvent(pMsg); | |
387a3b02 | 1687 | } |
42e69d6b | 1688 | #endif // wxUSE_TOOLTIPS |
a23fd0e1 | 1689 | |
42e69d6b | 1690 | return FALSE; |
387a3b02 JS |
1691 | } |
1692 | ||
42e69d6b | 1693 | bool wxWindow::MSWTranslateMessage(WXMSG* pMsg) |
387a3b02 | 1694 | { |
c50f1fb9 | 1695 | return m_acceleratorTable.Translate(this, pMsg); |
387a3b02 JS |
1696 | } |
1697 | ||
42e69d6b VZ |
1698 | // --------------------------------------------------------------------------- |
1699 | // message params unpackers (different for Win16 and Win32) | |
1700 | // --------------------------------------------------------------------------- | |
2bda0e17 | 1701 | |
42e69d6b | 1702 | #ifdef __WIN32__ |
c085e333 | 1703 | |
42e69d6b VZ |
1704 | void wxWindow::UnpackCommand(WXWPARAM wParam, WXLPARAM lParam, |
1705 | WORD *id, WXHWND *hwnd, WORD *cmd) | |
1706 | { | |
1707 | *id = LOWORD(wParam); | |
1708 | *hwnd = (WXHWND)lParam; | |
1709 | *cmd = HIWORD(wParam); | |
2bda0e17 KB |
1710 | } |
1711 | ||
42e69d6b VZ |
1712 | void wxWindow::UnpackActivate(WXWPARAM wParam, WXLPARAM lParam, |
1713 | WXWORD *state, WXWORD *minimized, WXHWND *hwnd) | |
2bda0e17 | 1714 | { |
42e69d6b VZ |
1715 | *state = LOWORD(wParam); |
1716 | *minimized = HIWORD(wParam); | |
1717 | *hwnd = (WXHWND)lParam; | |
2bda0e17 KB |
1718 | } |
1719 | ||
42e69d6b VZ |
1720 | void wxWindow::UnpackScroll(WXWPARAM wParam, WXLPARAM lParam, |
1721 | WXWORD *code, WXWORD *pos, WXHWND *hwnd) | |
2bda0e17 | 1722 | { |
42e69d6b VZ |
1723 | *code = LOWORD(wParam); |
1724 | *pos = HIWORD(wParam); | |
1725 | *hwnd = (WXHWND)lParam; | |
1726 | } | |
a23fd0e1 | 1727 | |
42e69d6b VZ |
1728 | void wxWindow::UnpackCtlColor(WXWPARAM wParam, WXLPARAM lParam, |
1729 | WXWORD *nCtlColor, WXHDC *hdc, WXHWND *hwnd) | |
1730 | { | |
1731 | *nCtlColor = CTLCOLOR_BTN; | |
1732 | *hwnd = (WXHWND)lParam; | |
1733 | *hdc = (WXHDC)wParam; | |
2bda0e17 KB |
1734 | } |
1735 | ||
42e69d6b VZ |
1736 | void wxWindow::UnpackMenuSelect(WXWPARAM wParam, WXLPARAM lParam, |
1737 | WXWORD *item, WXWORD *flags, WXHMENU *hmenu) | |
2bda0e17 | 1738 | { |
42e69d6b VZ |
1739 | *item = (WXWORD)wParam; |
1740 | *flags = HIWORD(wParam); | |
1741 | *hmenu = (WXHMENU)lParam; | |
1742 | } | |
c085e333 | 1743 | |
42e69d6b | 1744 | #else // Win16 |
341c92a8 | 1745 | |
42e69d6b VZ |
1746 | void wxWindow::UnpackCommand(WXWPARAM wParam, WXLPARAM lParam, |
1747 | WXWORD *id, WXHWND *hwnd, WXWORD *cmd) | |
1748 | { | |
1749 | *id = (WXWORD)wParam; | |
1750 | *hwnd = (WXHWND)LOWORD(lParam); | |
1751 | *cmd = HIWORD(lParam); | |
2bda0e17 KB |
1752 | } |
1753 | ||
42e69d6b VZ |
1754 | void wxWindow::UnpackActivate(WXWPARAM wParam, WXLPARAM lParam, |
1755 | WXWORD *state, WXWORD *minimized, WXHWND *hwnd) | |
2bda0e17 | 1756 | { |
42e69d6b VZ |
1757 | *state = (WXWORD)wParam; |
1758 | *minimized = LOWORD(lParam); | |
1759 | *hwnd = (WXHWND)HIWORD(lParam); | |
2bda0e17 KB |
1760 | } |
1761 | ||
42e69d6b VZ |
1762 | void wxWindow::UnpackScroll(WXWPARAM wParam, WXLPARAM lParam, |
1763 | WXWORD *code, WXWORD *pos, WXHWND *hwnd) | |
2bda0e17 | 1764 | { |
42e69d6b VZ |
1765 | *code = (WXWORD)wParam; |
1766 | *pos = LOWORD(lParam); | |
1767 | *hwnd = (WXHWND)HIWORD(lParam); | |
1768 | } | |
c085e333 | 1769 | |
42e69d6b VZ |
1770 | void wxWindow::UnpackCtlColor(WXWPARAM wParam, WXLPARAM lParam, |
1771 | WXWORD *nCtlColor, WXHDC *hdc, WXHWND *hwnd) | |
1772 | { | |
25889d3c | 1773 | *hwnd = (WXHWND)LOWORD(lParam); |
42e69d6b VZ |
1774 | *nCtlColor = (int)HIWORD(lParam); |
1775 | *hdc = (WXHDC)wParam; | |
2bda0e17 KB |
1776 | } |
1777 | ||
42e69d6b VZ |
1778 | void wxWindow::UnpackMenuSelect(WXWPARAM wParam, WXLPARAM lParam, |
1779 | WXWORD *item, WXWORD *flags, WXHMENU *hmenu) | |
2bda0e17 | 1780 | { |
42e69d6b VZ |
1781 | *item = (WXWORD)wParam; |
1782 | *flags = LOWORD(lParam); | |
1783 | *hmenu = (WXHMENU)HIWORD(lParam); | |
1784 | } | |
2d0a075d | 1785 | |
42e69d6b | 1786 | #endif // Win32/16 |
c085e333 | 1787 | |
42e69d6b VZ |
1788 | // --------------------------------------------------------------------------- |
1789 | // Main wxWindows window proc and the window proc for wxWindow | |
1790 | // --------------------------------------------------------------------------- | |
2bda0e17 | 1791 | |
42e69d6b VZ |
1792 | // Hook for new window just as it's being created, when the window isn't yet |
1793 | // associated with the handle | |
1794 | wxWindow *wxWndHook = NULL; | |
1795 | ||
1796 | // Main window proc | |
3135f4a7 | 1797 | LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) |
2bda0e17 | 1798 | { |
42e69d6b VZ |
1799 | // trace all messages - useful for the debugging |
1800 | #ifdef __WXDEBUG__ | |
223d09f6 | 1801 | wxLogTrace(wxTraceMessages, wxT("Processing %s(wParam=%8lx, lParam=%8lx)"), |
42e69d6b VZ |
1802 | wxGetMessageName(message), wParam, lParam); |
1803 | #endif // __WXDEBUG__ | |
2bda0e17 | 1804 | |
42e69d6b | 1805 | wxWindow *wnd = wxFindWinFromHandle((WXHWND) hWnd); |
c085e333 | 1806 | |
42e69d6b VZ |
1807 | // when we get the first message for the HWND we just created, we associate |
1808 | // it with wxWindow stored in wxWndHook | |
1809 | if ( !wnd && wxWndHook ) | |
2d0a075d | 1810 | { |
c7527e3f JS |
1811 | #if 0 // def __WXDEBUG__ |
1812 | char buf[512]; | |
1813 | ::GetClassNameA((HWND) hWnd, buf, 512); | |
1814 | wxString className(buf); | |
1815 | #endif | |
1816 | ||
42e69d6b VZ |
1817 | wxAssociateWinWithHandle(hWnd, wxWndHook); |
1818 | wnd = wxWndHook; | |
1819 | wxWndHook = NULL; | |
1820 | wnd->SetHWND((WXHWND)hWnd); | |
2d0a075d | 1821 | } |
2bda0e17 | 1822 | |
42e69d6b | 1823 | LRESULT rc; |
a23fd0e1 | 1824 | |
42e69d6b VZ |
1825 | // Stop right here if we don't have a valid handle in our wxWindow object. |
1826 | if ( wnd && !wnd->GetHWND() ) | |
2d0a075d | 1827 | { |
42e69d6b VZ |
1828 | // FIXME: why do we do this? |
1829 | wnd->SetHWND((WXHWND) hWnd); | |
1830 | rc = wnd->MSWDefWindowProc(message, wParam, lParam ); | |
1831 | wnd->SetHWND(0); | |
a23fd0e1 VZ |
1832 | } |
1833 | else | |
1834 | { | |
42e69d6b VZ |
1835 | if ( wnd ) |
1836 | rc = wnd->MSWWindowProc(message, wParam, lParam); | |
1837 | else | |
1838 | rc = DefWindowProc( hWnd, message, wParam, lParam ); | |
2d0a075d | 1839 | } |
2bda0e17 | 1840 | |
42e69d6b | 1841 | return rc; |
f7bd2698 JS |
1842 | } |
1843 | ||
42e69d6b | 1844 | long wxWindow::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam) |
f7bd2698 | 1845 | { |
42e69d6b VZ |
1846 | // did we process the message? |
1847 | bool processed = FALSE; | |
f7bd2698 | 1848 | |
42e69d6b VZ |
1849 | // the return value |
1850 | union | |
2bda0e17 | 1851 | { |
42e69d6b VZ |
1852 | bool allow; |
1853 | long result; | |
1854 | WXHICON hIcon; | |
1855 | WXHBRUSH hBrush; | |
1856 | } rc; | |
2bda0e17 | 1857 | |
42e69d6b VZ |
1858 | // for most messages we should return 0 when we do process the message |
1859 | rc.result = 0; | |
2bda0e17 | 1860 | |
42e69d6b | 1861 | switch ( message ) |
39136494 | 1862 | { |
42e69d6b VZ |
1863 | case WM_CREATE: |
1864 | { | |
1865 | bool mayCreate; | |
1866 | processed = HandleCreate((WXLPCREATESTRUCT)lParam, &mayCreate); | |
1867 | if ( processed ) | |
1868 | { | |
1869 | // return 0 to allow window creation | |
1870 | rc.result = mayCreate ? 0 : -1; | |
1871 | } | |
1872 | } | |
1873 | break; | |
47cbd6da | 1874 | |
42e69d6b VZ |
1875 | case WM_DESTROY: |
1876 | processed = HandleDestroy(); | |
1877 | break; | |
1878 | ||
1879 | case WM_MOVE: | |
132cb640 | 1880 | processed = HandleMove(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)); |
42e69d6b | 1881 | break; |
47cbd6da | 1882 | |
42e69d6b VZ |
1883 | case WM_SIZE: |
1884 | processed = HandleSize(LOWORD(lParam), HIWORD(lParam), wParam); | |
1885 | break; | |
47cbd6da | 1886 | |
42e69d6b | 1887 | case WM_ACTIVATE: |
341c92a8 | 1888 | { |
42e69d6b VZ |
1889 | WXWORD state, minimized; |
1890 | WXHWND hwnd; | |
1891 | UnpackActivate(wParam, lParam, &state, &minimized, &hwnd); | |
1892 | ||
1893 | processed = HandleActivate(state, minimized != 0, (WXHWND)hwnd); | |
341c92a8 | 1894 | } |
42e69d6b | 1895 | break; |
341c92a8 | 1896 | |
42e69d6b VZ |
1897 | case WM_SETFOCUS: |
1898 | processed = HandleSetFocus((WXHWND)(HWND)wParam); | |
1899 | break; | |
47cbd6da | 1900 | |
42e69d6b VZ |
1901 | case WM_KILLFOCUS: |
1902 | processed = HandleKillFocus((WXHWND)(HWND)wParam); | |
1903 | break; | |
47cbd6da | 1904 | |
42e69d6b VZ |
1905 | case WM_PAINT: |
1906 | processed = HandlePaint(); | |
1907 | break; | |
47cbd6da | 1908 | |
42e69d6b VZ |
1909 | case WM_CLOSE: |
1910 | // don't let the DefWindowProc() destroy our window - we'll do it | |
1911 | // ourselves in ~wxWindow | |
1912 | processed = TRUE; | |
1913 | rc.result = TRUE; | |
1914 | break; | |
47cbd6da | 1915 | |
42e69d6b VZ |
1916 | case WM_SHOWWINDOW: |
1917 | processed = HandleShow(wParam != 0, (int)lParam); | |
1918 | break; | |
3a19e16d | 1919 | |
42e69d6b | 1920 | case WM_MOUSEMOVE: |
132cb640 VZ |
1921 | processed = HandleMouseMove(GET_X_LPARAM(lParam), |
1922 | GET_Y_LPARAM(lParam), | |
1923 | wParam); | |
1924 | break; | |
0d0512bd | 1925 | |
d2c52078 RD |
1926 | #if wxUSE_MOUSEWHEEL |
1927 | case WM_MOUSEWHEEL: | |
1928 | processed = HandleMouseWheel(wParam, lParam); | |
1929 | break; | |
1930 | #endif | |
1931 | ||
42e69d6b | 1932 | case WM_LBUTTONDOWN: |
882a8f40 | 1933 | // set focus to this window |
4f430439 | 1934 | if (AcceptsFocus()) |
e63fdcd6 | 1935 | SetFocus(); |
882a8f40 VZ |
1936 | |
1937 | // fall through | |
1938 | ||
42e69d6b VZ |
1939 | case WM_LBUTTONUP: |
1940 | case WM_LBUTTONDBLCLK: | |
1941 | case WM_RBUTTONDOWN: | |
1942 | case WM_RBUTTONUP: | |
1943 | case WM_RBUTTONDBLCLK: | |
1944 | case WM_MBUTTONDOWN: | |
1945 | case WM_MBUTTONUP: | |
1946 | case WM_MBUTTONDBLCLK: | |
132cb640 VZ |
1947 | processed = HandleMouseEvent(message, |
1948 | GET_X_LPARAM(lParam), | |
1949 | GET_Y_LPARAM(lParam), | |
1950 | wParam); | |
42e69d6b | 1951 | break; |
47cbd6da | 1952 | |
42e69d6b VZ |
1953 | case MM_JOY1MOVE: |
1954 | case MM_JOY2MOVE: | |
1955 | case MM_JOY1ZMOVE: | |
1956 | case MM_JOY2ZMOVE: | |
1957 | case MM_JOY1BUTTONDOWN: | |
1958 | case MM_JOY2BUTTONDOWN: | |
1959 | case MM_JOY1BUTTONUP: | |
1960 | case MM_JOY2BUTTONUP: | |
132cb640 VZ |
1961 | processed = HandleJoystickEvent(message, |
1962 | GET_X_LPARAM(lParam), | |
1963 | GET_Y_LPARAM(lParam), | |
1964 | wParam); | |
42e69d6b | 1965 | break; |
47cbd6da | 1966 | |
42e69d6b VZ |
1967 | case WM_SYSCOMMAND: |
1968 | processed = HandleSysCommand(wParam, lParam); | |
1969 | break; | |
2a47d3c1 | 1970 | |
42e69d6b VZ |
1971 | case WM_COMMAND: |
1972 | { | |
1973 | WORD id, cmd; | |
1974 | WXHWND hwnd; | |
1975 | UnpackCommand(wParam, lParam, &id, &hwnd, &cmd); | |
47cbd6da | 1976 | |
42e69d6b VZ |
1977 | processed = HandleCommand(id, cmd, hwnd); |
1978 | } | |
1979 | break; | |
7d532b0c | 1980 | |
42e69d6b VZ |
1981 | #ifdef __WIN95__ |
1982 | case WM_NOTIFY: | |
1983 | processed = HandleNotify((int)wParam, lParam, &rc.result); | |
1984 | break; | |
1985 | #endif // Win95 | |
2bda0e17 | 1986 | |
42e69d6b VZ |
1987 | // for these messages we must return TRUE if process the message |
1988 | case WM_DRAWITEM: | |
1989 | case WM_MEASUREITEM: | |
1990 | { | |
1991 | int idCtrl = (UINT)wParam; | |
1992 | if ( message == WM_DRAWITEM ) | |
1993 | { | |
1994 | processed = MSWOnDrawItem(idCtrl, | |
1995 | (WXDRAWITEMSTRUCT *)lParam); | |
1996 | } | |
1997 | else | |
1998 | { | |
1999 | processed = MSWOnMeasureItem(idCtrl, | |
2000 | (WXMEASUREITEMSTRUCT *)lParam); | |
2001 | } | |
57a7b7c1 | 2002 | |
42e69d6b VZ |
2003 | if ( processed ) |
2004 | rc.result = TRUE; | |
2005 | } | |
2006 | break; | |
2007 | ||
9bf84618 | 2008 | case WM_GETDLGCODE: |
101f488c | 2009 | if ( m_lDlgCode ) |
9bf84618 | 2010 | { |
101f488c | 2011 | rc.result = m_lDlgCode; |
9bf84618 VZ |
2012 | processed = TRUE; |
2013 | } | |
101f488c | 2014 | //else: get the dlg code from the DefWindowProc() |
9bf84618 VZ |
2015 | break; |
2016 | ||
4004f41e | 2017 | case WM_SYSKEYDOWN: |
42e69d6b VZ |
2018 | case WM_KEYDOWN: |
2019 | // If this has been processed by an event handler, | |
2020 | // return 0 now (we've handled it). | |
2021 | if ( HandleKeyDown((WORD) wParam, lParam) ) | |
2d0a075d | 2022 | { |
42e69d6b VZ |
2023 | processed = TRUE; |
2024 | ||
2d0a075d JS |
2025 | break; |
2026 | } | |
81d66cf3 | 2027 | |
42e69d6b VZ |
2028 | // we consider these message "not interesting" to OnChar |
2029 | if ( wParam == VK_SHIFT || wParam == VK_CONTROL ) | |
2030 | { | |
2031 | processed = TRUE; | |
81d66cf3 | 2032 | |
42e69d6b VZ |
2033 | break; |
2034 | } | |
debe6624 | 2035 | |
42e69d6b VZ |
2036 | switch ( wParam ) |
2037 | { | |
2038 | // avoid duplicate messages to OnChar for these ASCII keys: they | |
2039 | // will be translated by TranslateMessage() and received in WM_CHAR | |
2040 | case VK_ESCAPE: | |
2041 | case VK_SPACE: | |
2042 | case VK_RETURN: | |
2043 | case VK_BACK: | |
2044 | case VK_TAB: | |
882a8f40 VZ |
2045 | case VK_ADD: |
2046 | case VK_SUBTRACT: | |
edccf428 VZ |
2047 | // but set processed to FALSE, not TRUE to still pass them to |
2048 | // the control's default window proc - otherwise built-in | |
2049 | // keyboard handling won't work | |
2050 | processed = FALSE; | |
2bda0e17 | 2051 | |
42e69d6b | 2052 | break; |
2bda0e17 | 2053 | |
42e69d6b VZ |
2054 | #ifdef VK_APPS |
2055 | // special case of VK_APPS: treat it the same as right mouse | |
2056 | // click because both usually pop up a context menu | |
2057 | case VK_APPS: | |
2058 | { | |
4aff28fc VZ |
2059 | WPARAM flags; |
2060 | int x, y; | |
2061 | ||
2062 | TranslateKbdEventToMouse(this, &x, &y, &flags); | |
2063 | processed = HandleMouseEvent(WM_RBUTTONDOWN, x, y, flags); | |
42e69d6b VZ |
2064 | } |
2065 | break; | |
2066 | #endif // VK_APPS | |
2bda0e17 | 2067 | |
42e69d6b VZ |
2068 | case VK_LEFT: |
2069 | case VK_RIGHT: | |
2070 | case VK_DOWN: | |
2071 | case VK_UP: | |
2072 | default: | |
2073 | processed = HandleChar((WORD)wParam, lParam); | |
2074 | } | |
2075 | break; | |
2bda0e17 | 2076 | |
4004f41e | 2077 | case WM_SYSKEYUP: |
42e69d6b | 2078 | case WM_KEYUP: |
4aff28fc VZ |
2079 | #ifdef VK_APPS |
2080 | // special case of VK_APPS: treat it the same as right mouse button | |
2081 | if ( wParam == VK_APPS ) | |
2082 | { | |
2083 | WPARAM flags; | |
2084 | int x, y; | |
2085 | ||
2086 | TranslateKbdEventToMouse(this, &x, &y, &flags); | |
2087 | processed = HandleMouseEvent(WM_RBUTTONUP, x, y, flags); | |
2088 | } | |
2089 | else | |
2090 | #endif // VK_APPS | |
2091 | { | |
2092 | processed = HandleKeyUp((WORD) wParam, lParam); | |
2093 | } | |
42e69d6b | 2094 | break; |
debe6624 | 2095 | |
170cbe33 | 2096 | case WM_SYSCHAR: |
42e69d6b VZ |
2097 | case WM_CHAR: // Always an ASCII character |
2098 | processed = HandleChar((WORD)wParam, lParam, TRUE); | |
2099 | break; | |
2bda0e17 | 2100 | |
42e69d6b VZ |
2101 | case WM_HSCROLL: |
2102 | case WM_VSCROLL: | |
a23fd0e1 | 2103 | { |
42e69d6b VZ |
2104 | WXWORD code, pos; |
2105 | WXHWND hwnd; | |
2106 | UnpackScroll(wParam, lParam, &code, &pos, &hwnd); | |
2bda0e17 | 2107 | |
42e69d6b VZ |
2108 | processed = MSWOnScroll(message == WM_HSCROLL ? wxHORIZONTAL |
2109 | : wxVERTICAL, | |
2110 | code, pos, hwnd); | |
a23fd0e1 | 2111 | } |
42e69d6b | 2112 | break; |
a23fd0e1 | 2113 | |
42e69d6b VZ |
2114 | // CTLCOLOR messages are sent by children to query the parent for their |
2115 | // colors | |
2116 | #ifdef __WIN32__ | |
2117 | case WM_CTLCOLORMSGBOX: | |
2118 | case WM_CTLCOLOREDIT: | |
2119 | case WM_CTLCOLORLISTBOX: | |
2120 | case WM_CTLCOLORBTN: | |
2121 | case WM_CTLCOLORDLG: | |
2122 | case WM_CTLCOLORSCROLLBAR: | |
2123 | case WM_CTLCOLORSTATIC: | |
2124 | #else // Win16 | |
2125 | case WM_CTLCOLOR: | |
2126 | #endif // Win32/16 | |
a23fd0e1 | 2127 | { |
42e69d6b VZ |
2128 | WXWORD nCtlColor; |
2129 | WXHDC hdc; | |
2130 | WXHWND hwnd; | |
2131 | UnpackCtlColor(wParam, lParam, &nCtlColor, &hdc, &hwnd); | |
2132 | ||
2133 | processed = HandleCtlColor(&rc.hBrush, | |
2134 | (WXHDC)hdc, | |
2135 | (WXHWND)hwnd, | |
2136 | nCtlColor, | |
2137 | message, | |
2138 | wParam, | |
2139 | lParam); | |
a23fd0e1 | 2140 | } |
42e69d6b | 2141 | break; |
debe6624 | 2142 | |
42e69d6b VZ |
2143 | // the return value for this message is ignored |
2144 | case WM_SYSCOLORCHANGE: | |
2145 | processed = HandleSysColorChange(); | |
2146 | break; | |
2bda0e17 | 2147 | |
42e69d6b VZ |
2148 | case WM_PALETTECHANGED: |
2149 | processed = HandlePaletteChanged((WXHWND) (HWND) wParam); | |
2150 | break; | |
2bda0e17 | 2151 | |
42e69d6b VZ |
2152 | case WM_QUERYNEWPALETTE: |
2153 | processed = HandleQueryNewPalette(); | |
2154 | break; | |
2bda0e17 | 2155 | |
42e69d6b VZ |
2156 | case WM_ERASEBKGND: |
2157 | processed = HandleEraseBkgnd((WXHDC)(HDC)wParam); | |
2158 | if ( processed ) | |
2159 | { | |
2160 | // we processed the message, i.e. erased the background | |
2161 | rc.result = TRUE; | |
2162 | } | |
2163 | break; | |
debe6624 | 2164 | |
42e69d6b VZ |
2165 | case WM_DROPFILES: |
2166 | processed = HandleDropFiles(wParam); | |
2167 | break; | |
2bda0e17 | 2168 | |
42e69d6b VZ |
2169 | case WM_INITDIALOG: |
2170 | processed = HandleInitDialog((WXHWND)(HWND)wParam); | |
a23fd0e1 | 2171 | |
42e69d6b VZ |
2172 | if ( processed ) |
2173 | { | |
2174 | // we never set focus from here | |
2175 | rc.result = FALSE; | |
2176 | } | |
2177 | break; | |
a23fd0e1 | 2178 | |
42e69d6b VZ |
2179 | case WM_QUERYENDSESSION: |
2180 | processed = HandleQueryEndSession(lParam, &rc.allow); | |
2181 | break; | |
2bda0e17 | 2182 | |
42e69d6b VZ |
2183 | case WM_ENDSESSION: |
2184 | processed = HandleEndSession(wParam != 0, lParam); | |
2185 | break; | |
2bda0e17 | 2186 | |
42e69d6b | 2187 | case WM_GETMINMAXINFO: |
25889d3c | 2188 | processed = HandleGetMinMaxInfo((MINMAXINFO*)lParam); |
42e69d6b | 2189 | break; |
debe6624 | 2190 | |
42e69d6b VZ |
2191 | case WM_SETCURSOR: |
2192 | processed = HandleSetCursor((WXHWND)(HWND)wParam, | |
2193 | LOWORD(lParam), // hit test | |
2194 | HIWORD(lParam)); // mouse msg | |
2195 | ||
2196 | if ( processed ) | |
2197 | { | |
2198 | // returning TRUE stops the DefWindowProc() from further | |
2199 | // processing this message - exactly what we need because we've | |
2200 | // just set the cursor. | |
2201 | rc.result = TRUE; | |
2202 | } | |
2203 | break; | |
b96340e6 JS |
2204 | #ifdef __WIN32__ |
2205 | case WM_HELP: | |
2206 | { | |
2207 | HELPINFO* info = (HELPINFO*) lParam; | |
2208 | // Don't yet process menu help events, just windows | |
2209 | if (info->iContextType == HELPINFO_WINDOW) | |
2210 | { | |
2211 | wxWindow* subjectOfHelp = this; | |
2212 | bool eventProcessed = FALSE; | |
2213 | while (subjectOfHelp && !eventProcessed) | |
2214 | { | |
2215 | wxHelpEvent helpEvent(wxEVT_HELP, subjectOfHelp->GetId(), wxPoint(info->MousePos.x, info->MousePos.y) ) ; // info->iCtrlId); | |
2216 | helpEvent.SetEventObject(this); | |
2217 | eventProcessed = GetEventHandler()->ProcessEvent(helpEvent); | |
2218 | ||
2219 | // Go up the window hierarchy until the event is handled (or not) | |
2220 | subjectOfHelp = subjectOfHelp->GetParent(); | |
2221 | } | |
2222 | processed = eventProcessed; | |
2223 | } | |
2224 | else if (info->iContextType == HELPINFO_MENUITEM) | |
2225 | { | |
2226 | wxHelpEvent helpEvent(wxEVT_HELP, info->iCtrlId) ; | |
2227 | helpEvent.SetEventObject(this); | |
2228 | processed = GetEventHandler()->ProcessEvent(helpEvent); | |
69231000 | 2229 | |
b96340e6 JS |
2230 | } |
2231 | else processed = FALSE; | |
2232 | break; | |
2233 | } | |
69231000 JS |
2234 | case WM_CONTEXTMENU: |
2235 | { | |
2236 | HWND hWnd = (HWND) wParam; | |
2237 | ||
2238 | // we don't convert from screen to client coordinates as | |
2239 | // the event may be handled by a parent window | |
2240 | wxPoint p(LOWORD(lParam), HIWORD(lParam)); | |
2241 | ||
2242 | wxContextMenuEvent contextEvent(wxEVT_CONTEXT_MENU, GetId(), p); | |
2243 | GetEventHandler()->ProcessEvent(contextEvent); | |
2244 | ||
2245 | // set processed to true even if the event is not handled because if we don't | |
2246 | // windows will propogate the WM_CONTEXTMENU up the parent window chain, which | |
2247 | // we have already done ourselves. | |
2248 | processed = true; | |
2249 | ||
2250 | break; | |
2251 | } | |
b96340e6 | 2252 | #endif |
a23fd0e1 | 2253 | } |
2d0a075d | 2254 | |
42e69d6b | 2255 | if ( !processed ) |
2d0a075d | 2256 | { |
42e69d6b | 2257 | #ifdef __WXDEBUG__ |
223d09f6 | 2258 | wxLogTrace(wxTraceMessages, wxT("Forwarding %s to DefWindowProc."), |
42e69d6b VZ |
2259 | wxGetMessageName(message)); |
2260 | #endif // __WXDEBUG__ | |
2261 | rc.result = MSWDefWindowProc(message, wParam, lParam); | |
a23fd0e1 | 2262 | } |
2bda0e17 | 2263 | |
42e69d6b | 2264 | return rc.result; |
2bda0e17 KB |
2265 | } |
2266 | ||
42e69d6b VZ |
2267 | // Dialog window proc |
2268 | LONG APIENTRY _EXPORT | |
33ac7e6f | 2269 | wxDlgProc(HWND WXUNUSED(hWnd), UINT message, WPARAM WXUNUSED(wParam), LPARAM WXUNUSED(lParam)) |
2bda0e17 | 2270 | { |
42e69d6b | 2271 | if ( message == WM_INITDIALOG ) |
2bda0e17 | 2272 | { |
42e69d6b VZ |
2273 | // for this message, returning TRUE tells system to set focus to the |
2274 | // first control in the dialog box | |
2275 | return TRUE; | |
2d0a075d | 2276 | } |
42e69d6b | 2277 | else |
2d0a075d | 2278 | { |
42e69d6b VZ |
2279 | // for all the other ones, FALSE means that we didn't process the |
2280 | // message | |
2281 | return 0; | |
2d0a075d | 2282 | } |
2bda0e17 KB |
2283 | } |
2284 | ||
42e69d6b VZ |
2285 | wxList *wxWinHandleList = NULL; |
2286 | wxWindow *wxFindWinFromHandle(WXHWND hWnd) | |
4ce81a75 | 2287 | { |
42e69d6b VZ |
2288 | wxNode *node = wxWinHandleList->Find((long)hWnd); |
2289 | if ( !node ) | |
2290 | return NULL; | |
2291 | return (wxWindow *)node->Data(); | |
2292 | } | |
4ce81a75 | 2293 | |
c7527e3f JS |
2294 | #if 0 // def __WXDEBUG__ |
2295 | static int gs_AssociationCount = 0; | |
2296 | #endif | |
2297 | ||
42e69d6b VZ |
2298 | void wxAssociateWinWithHandle(HWND hWnd, wxWindow *win) |
2299 | { | |
2300 | // adding NULL hWnd is (first) surely a result of an error and | |
2301 | // (secondly) breaks menu command processing | |
2302 | wxCHECK_RET( hWnd != (HWND)NULL, | |
223d09f6 | 2303 | wxT("attempt to add a NULL hWnd to window list ignored") ); |
4ce81a75 | 2304 | |
c7527e3f JS |
2305 | |
2306 | wxWindow *oldWin = wxFindWinFromHandle((WXHWND) hWnd); | |
2307 | if ( oldWin && (oldWin != win) ) | |
2308 | { | |
2309 | wxString str(win->GetClassInfo()->GetClassName()); | |
f5166ed4 | 2310 | wxLogError(wxT("Bug! Found existing HWND %X for new window of class %s"), (int) hWnd, (const wxChar*) str); |
c7527e3f JS |
2311 | } |
2312 | else if (!oldWin) | |
2313 | { | |
2314 | #if 0 // def __WXDEBUG__ | |
2315 | gs_AssociationCount ++; | |
2316 | wxLogDebug("+ Association %d", gs_AssociationCount); | |
2317 | #endif | |
2318 | ||
42e69d6b | 2319 | wxWinHandleList->Append((long)hWnd, win); |
c7527e3f | 2320 | } |
42e69d6b | 2321 | } |
4ce81a75 | 2322 | |
42e69d6b VZ |
2323 | void wxRemoveHandleAssociation(wxWindow *win) |
2324 | { | |
c7527e3f JS |
2325 | #if 0 // def __WXDEBUG__ |
2326 | if (wxWinHandleList->Member(win)) | |
2327 | { | |
2328 | wxLogDebug("- Association %d", gs_AssociationCount); | |
2329 | gs_AssociationCount --; | |
2330 | } | |
2331 | #endif | |
42e69d6b | 2332 | wxWinHandleList->DeleteObject(win); |
4ce81a75 JS |
2333 | } |
2334 | ||
42e69d6b VZ |
2335 | // Default destroyer - override if you destroy it in some other way |
2336 | // (e.g. with MDI child windows) | |
2337 | void wxWindow::MSWDestroyWindow() | |
4ce81a75 | 2338 | { |
42e69d6b | 2339 | } |
4ce81a75 | 2340 | |
42e69d6b VZ |
2341 | void wxWindow::MSWDetachWindowMenu() |
2342 | { | |
2343 | if ( m_hMenu ) | |
4ce81a75 | 2344 | { |
aa44b261 | 2345 | wxChar buf[1024]; |
42e69d6b | 2346 | HMENU hMenu = (HMENU)m_hMenu; |
4ce81a75 | 2347 | |
42e69d6b | 2348 | int N = ::GetMenuItemCount(hMenu); |
aa44b261 | 2349 | for ( int i = 0; i < N; i++ ) |
42e69d6b | 2350 | { |
aa44b261 | 2351 | if ( !::GetMenuString(hMenu, i, buf, WXSIZEOF(buf), MF_BYPOSITION) ) |
42e69d6b | 2352 | { |
223d09f6 | 2353 | wxLogLastError(wxT("GetMenuString")); |
4ce81a75 | 2354 | |
42e69d6b VZ |
2355 | continue; |
2356 | } | |
4ce81a75 | 2357 | |
9318daf2 | 2358 | if ( wxStrcmp(buf, _("&Window")) == 0 ) |
42e69d6b | 2359 | { |
aa44b261 VZ |
2360 | if ( !::RemoveMenu(hMenu, i, MF_BYPOSITION) ) |
2361 | { | |
2362 | wxLogLastError(wxT("RemoveMenu")); | |
2363 | } | |
4ce81a75 | 2364 | |
42e69d6b VZ |
2365 | break; |
2366 | } | |
2367 | } | |
4ce81a75 JS |
2368 | } |
2369 | } | |
2370 | ||
42e69d6b VZ |
2371 | bool wxWindow::MSWCreate(int id, |
2372 | wxWindow *parent, | |
837e5743 | 2373 | const wxChar *wclass, |
33ac7e6f | 2374 | wxWindow *WXUNUSED(wx_win), |
837e5743 | 2375 | const wxChar *title, |
42e69d6b VZ |
2376 | int x, |
2377 | int y, | |
2378 | int width, | |
2379 | int height, | |
2380 | WXDWORD style, | |
837e5743 | 2381 | const wxChar *dialog_template, |
42e69d6b | 2382 | WXDWORD extendedStyle) |
2bda0e17 | 2383 | { |
42e69d6b VZ |
2384 | int x1 = CW_USEDEFAULT; |
2385 | int y1 = 0; | |
2386 | int width1 = CW_USEDEFAULT; | |
2387 | int height1 = 100; | |
c085e333 | 2388 | |
42e69d6b VZ |
2389 | // Find parent's size, if it exists, to set up a possible default |
2390 | // panel size the size of the parent window | |
2391 | RECT parent_rect; | |
2392 | if ( parent ) | |
a23fd0e1 | 2393 | { |
42e69d6b | 2394 | ::GetClientRect((HWND) parent->GetHWND(), &parent_rect); |
c085e333 | 2395 | |
42e69d6b VZ |
2396 | width1 = parent_rect.right - parent_rect.left; |
2397 | height1 = parent_rect.bottom - parent_rect.top; | |
2398 | } | |
2bda0e17 | 2399 | |
655076c7 VZ |
2400 | if ( x != -1 ) |
2401 | x1 = x; | |
2402 | if ( y != -1 ) | |
2403 | y1 = y; | |
2404 | if ( width != -1 ) | |
2405 | width1 = width; | |
2406 | if ( height != -1 ) | |
2407 | height1 = height; | |
c085e333 | 2408 | |
f6bcfd97 BP |
2409 | // unfortunately, setting WS_EX_CONTROLPARENT only for some windows in the |
2410 | // hierarchy with several embedded panels (and not all of them) causes the | |
2411 | // program to hang during the next call to IsDialogMessage() due to the bug | |
2412 | // in this function (at least in Windows NT 4.0, it seems to work ok in | |
2413 | // Win2K) | |
2414 | #if 0 | |
8614c467 VZ |
2415 | // if we have wxTAB_TRAVERSAL style, we want WS_EX_CONTROLPARENT or |
2416 | // IsDialogMessage() won't work for us | |
2417 | if ( GetWindowStyleFlag() & wxTAB_TRAVERSAL ) | |
2418 | { | |
2419 | extendedStyle |= WS_EX_CONTROLPARENT; | |
2420 | } | |
f6bcfd97 | 2421 | #endif // 0 |
8614c467 | 2422 | |
b3daa5a3 | 2423 | HWND hParent = parent ? GetHwndOf(parent) : NULL; |
c085e333 | 2424 | |
42e69d6b | 2425 | wxWndHook = this; |
c085e333 | 2426 | |
42e69d6b VZ |
2427 | if ( dialog_template ) |
2428 | { | |
b3daa5a3 VZ |
2429 | // for the dialogs without wxDIALOG_NO_PARENT style, use the top level |
2430 | // app window as parent - this avoids creating modal dialogs without | |
2431 | // parent | |
2432 | if ( !hParent && !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT) ) | |
2433 | { | |
2434 | wxWindow *winTop = wxTheApp->GetTopWindow(); | |
2435 | if ( winTop ) | |
2436 | hParent = GetHwndOf(winTop); | |
2437 | } | |
2438 | ||
42e69d6b VZ |
2439 | m_hWnd = (WXHWND)::CreateDialog(wxGetInstance(), |
2440 | dialog_template, | |
2441 | hParent, | |
2442 | (DLGPROC)wxDlgProc); | |
2bda0e17 | 2443 | |
42e69d6b VZ |
2444 | if ( m_hWnd == 0 ) |
2445 | { | |
b3daa5a3 VZ |
2446 | wxLogError(_("Can't find dialog template '%s'!\nCheck resource include path for finding wx.rc."), |
2447 | dialog_template); | |
c085e333 | 2448 | |
42e69d6b VZ |
2449 | return FALSE; |
2450 | } | |
b3daa5a3 VZ |
2451 | |
2452 | if ( extendedStyle != 0 ) | |
c43e86bd JS |
2453 | { |
2454 | ::SetWindowLong(GetHwnd(), GWL_EXSTYLE, extendedStyle); | |
2455 | ::SetWindowPos(GetHwnd(), NULL, 0, 0, 0, 0, | |
b3daa5a3 VZ |
2456 | SWP_NOSIZE | |
2457 | SWP_NOMOVE | | |
2458 | SWP_NOZORDER | | |
2459 | SWP_NOACTIVATE); | |
c43e86bd | 2460 | } |
b3daa5a3 | 2461 | |
3723b7b1 JS |
2462 | #if defined(__WIN95__) |
2463 | // For some reason, the system menu is activated when we use the | |
2464 | // WS_EX_CONTEXTHELP style, so let's set a reasonable icon | |
2465 | if (extendedStyle & WS_EX_CONTEXTHELP) | |
2466 | { | |
b3daa5a3 VZ |
2467 | wxFrame *winTop = wxDynamicCast(wxTheApp->GetTopWindow(), wxFrame); |
2468 | if ( winTop ) | |
3723b7b1 | 2469 | { |
b3daa5a3 VZ |
2470 | wxIcon icon = winTop->GetIcon(); |
2471 | if ( icon.Ok() ) | |
2472 | { | |
2473 | ::SendMessage(GetHwnd(), WM_SETICON, | |
2474 | (WPARAM)TRUE, | |
2475 | (LPARAM)GetHiconOf(icon)); | |
2476 | } | |
3723b7b1 JS |
2477 | } |
2478 | } | |
2479 | #endif // __WIN95__ | |
2480 | ||
2481 | ||
2482 | // JACS: is the following still necessary? The above seems to work. | |
c085e333 | 2483 | |
789295bf VZ |
2484 | // ::SetWindowLong(GWL_EXSTYLE) doesn't work for the dialogs, so try |
2485 | // to take care of (at least some) extended style flags ourselves | |
2486 | if ( extendedStyle & WS_EX_TOPMOST ) | |
2487 | { | |
2488 | if ( !::SetWindowPos(GetHwnd(), HWND_TOPMOST, 0, 0, 0, 0, | |
2489 | SWP_NOSIZE | SWP_NOMOVE) ) | |
2490 | { | |
223d09f6 | 2491 | wxLogLastError(wxT("SetWindowPos")); |
789295bf VZ |
2492 | } |
2493 | } | |
2494 | ||
2495 | // move the dialog to its initial position without forcing repainting | |
2496 | if ( !::MoveWindow(GetHwnd(), x1, y1, width1, height1, FALSE) ) | |
2497 | { | |
223d09f6 | 2498 | wxLogLastError(wxT("MoveWindow")); |
789295bf | 2499 | } |
42e69d6b | 2500 | } |
b3daa5a3 | 2501 | else // creating a normal window, not a dialog |
42e69d6b VZ |
2502 | { |
2503 | int controlId = 0; | |
2504 | if ( style & WS_CHILD ) | |
2505 | controlId = id; | |
b0766406 JS |
2506 | |
2507 | if ( GetWindowStyleFlag() & wxCLIP_SIBLINGS ) | |
2508 | style |= WS_CLIPSIBLINGS; | |
42e69d6b | 2509 | |
193fe989 VZ |
2510 | wxString className(wclass); |
2511 | if ( GetWindowStyleFlag() & wxNO_FULL_REPAINT_ON_RESIZE ) | |
2512 | { | |
223d09f6 | 2513 | className += wxT("NR"); |
193fe989 VZ |
2514 | } |
2515 | ||
42e69d6b | 2516 | m_hWnd = (WXHWND)CreateWindowEx(extendedStyle, |
b782f2e0 | 2517 | className, |
223d09f6 | 2518 | title ? title : wxT(""), |
42e69d6b VZ |
2519 | style, |
2520 | x1, y1, | |
2521 | width1, height1, | |
2522 | hParent, (HMENU)controlId, | |
2523 | wxGetInstance(), | |
2524 | NULL); | |
2525 | ||
2526 | if ( !m_hWnd ) | |
2527 | { | |
f6bcfd97 | 2528 | wxLogError(_("Can't create window of class %s!\nPossible Windows 3.x compatibility problem?"), |
42e69d6b | 2529 | wclass); |
2bda0e17 | 2530 | |
a23fd0e1 | 2531 | return FALSE; |
42e69d6b | 2532 | } |
a23fd0e1 | 2533 | } |
c085e333 | 2534 | |
42e69d6b | 2535 | wxWndHook = NULL; |
b3daa5a3 | 2536 | |
c7527e3f JS |
2537 | #ifdef __WXDEBUG__ |
2538 | wxNode* node = wxWinHandleList->Member(this); | |
2539 | if (node) | |
2540 | { | |
2541 | HWND hWnd = (HWND) node->GetKeyInteger(); | |
2542 | if (hWnd != (HWND) m_hWnd) | |
2543 | { | |
f5166ed4 | 2544 | wxLogError(wxT("A second HWND association is being added for the same window!")); |
c7527e3f JS |
2545 | } |
2546 | } | |
b3daa5a3 VZ |
2547 | #endif // Debug |
2548 | ||
c7527e3f | 2549 | wxAssociateWinWithHandle((HWND) m_hWnd, this); |
c085e333 | 2550 | |
8bf30fe9 VZ |
2551 | SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT)); |
2552 | ||
42e69d6b | 2553 | return TRUE; |
2bda0e17 KB |
2554 | } |
2555 | ||
42e69d6b VZ |
2556 | // =========================================================================== |
2557 | // MSW message handlers | |
2558 | // =========================================================================== | |
2559 | ||
2560 | // --------------------------------------------------------------------------- | |
2561 | // WM_NOTIFY | |
2562 | // --------------------------------------------------------------------------- | |
2563 | ||
2564 | #ifdef __WIN95__ | |
2565 | // FIXME: VZ: I'm not sure at all that the order of processing is correct | |
2566 | bool wxWindow::HandleNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result) | |
2bda0e17 | 2567 | { |
42e69d6b VZ |
2568 | LPNMHDR hdr = (LPNMHDR)lParam; |
2569 | HWND hWnd = hdr->hwndFrom; | |
2570 | wxWindow *win = wxFindWinFromHandle((WXHWND)hWnd); | |
2571 | ||
2572 | // is this one of our windows? | |
2573 | if ( win ) | |
564b2609 | 2574 | { |
42e69d6b | 2575 | return win->MSWOnNotify(idCtrl, lParam, result); |
564b2609 | 2576 | } |
2bda0e17 | 2577 | |
42e69d6b VZ |
2578 | // try all our children |
2579 | wxWindowList::Node *node = GetChildren().GetFirst(); | |
2580 | while ( node ) | |
564b2609 | 2581 | { |
42e69d6b VZ |
2582 | wxWindow *child = node->GetData(); |
2583 | if ( child->MSWOnNotify(idCtrl, lParam, result) ) | |
2584 | { | |
2585 | return TRUE; | |
42e69d6b | 2586 | } |
2d0a075d | 2587 | |
42e69d6b VZ |
2588 | node = node->GetNext(); |
2589 | } | |
2d0a075d | 2590 | |
42e69d6b VZ |
2591 | // finally try this window too (catches toolbar case) |
2592 | return MSWOnNotify(idCtrl, lParam, result); | |
2593 | } | |
2d0a075d | 2594 | |
42e69d6b VZ |
2595 | bool wxWindow::MSWOnNotify(int WXUNUSED(idCtrl), |
2596 | WXLPARAM lParam, | |
2597 | WXLPARAM* WXUNUSED(result)) | |
2598 | { | |
2599 | #if wxUSE_TOOLTIPS | |
2600 | NMHDR* hdr = (NMHDR *)lParam; | |
a17e237f | 2601 | if ( (int)hdr->code == TTN_NEEDTEXT && m_tooltip ) |
42e69d6b VZ |
2602 | { |
2603 | TOOLTIPTEXT *ttt = (TOOLTIPTEXT *)lParam; | |
837e5743 | 2604 | ttt->lpszText = (wxChar *)m_tooltip->GetTip().c_str(); |
2d0a075d | 2605 | |
42e69d6b VZ |
2606 | // processed |
2607 | return TRUE; | |
2608 | } | |
2609 | #endif // wxUSE_TOOLTIPS | |
2610 | ||
2611 | return FALSE; | |
2612 | } | |
2613 | #endif // __WIN95__ | |
2614 | ||
2615 | // --------------------------------------------------------------------------- | |
2616 | // end session messages | |
2617 | // --------------------------------------------------------------------------- | |
2d0a075d | 2618 | |
42e69d6b VZ |
2619 | bool wxWindow::HandleQueryEndSession(long logOff, bool *mayEnd) |
2620 | { | |
2621 | wxCloseEvent event(wxEVT_QUERY_END_SESSION, -1); | |
2622 | event.SetEventObject(wxTheApp); | |
2623 | event.SetCanVeto(TRUE); | |
a17e237f | 2624 | event.SetLoggingOff(logOff == (long)ENDSESSION_LOGOFF); |
2d0a075d | 2625 | |
42e69d6b VZ |
2626 | bool rc = wxTheApp->ProcessEvent(event); |
2627 | ||
2628 | if ( rc ) | |
2629 | { | |
2630 | // we may end only if the app didn't veto session closing (double | |
2631 | // negation...) | |
2632 | *mayEnd = !event.GetVeto(); | |
2d0a075d JS |
2633 | } |
2634 | ||
42e69d6b | 2635 | return rc; |
2bda0e17 KB |
2636 | } |
2637 | ||
42e69d6b | 2638 | bool wxWindow::HandleEndSession(bool endSession, long logOff) |
2bda0e17 | 2639 | { |
42e69d6b VZ |
2640 | // do nothing if the session isn't ending |
2641 | if ( !endSession ) | |
2642 | return FALSE; | |
a23fd0e1 | 2643 | |
42e69d6b VZ |
2644 | wxCloseEvent event(wxEVT_END_SESSION, -1); |
2645 | event.SetEventObject(wxTheApp); | |
2646 | event.SetCanVeto(FALSE); | |
a17e237f | 2647 | event.SetLoggingOff( (logOff == (long)ENDSESSION_LOGOFF) ); |
42e69d6b VZ |
2648 | if ( (this == wxTheApp->GetTopWindow()) && // Only send once |
2649 | wxTheApp->ProcessEvent(event)) | |
2650 | { | |
2651 | } | |
2652 | return TRUE; | |
2bda0e17 KB |
2653 | } |
2654 | ||
42e69d6b VZ |
2655 | // --------------------------------------------------------------------------- |
2656 | // window creation/destruction | |
2657 | // --------------------------------------------------------------------------- | |
2658 | ||
33ac7e6f | 2659 | bool wxWindow::HandleCreate(WXLPCREATESTRUCT WXUNUSED(cs), bool *mayCreate) |
2bda0e17 | 2660 | { |
42e69d6b VZ |
2661 | // TODO: should generate this event from WM_NCCREATE |
2662 | wxWindowCreateEvent event(this); | |
2663 | (void)GetEventHandler()->ProcessEvent(event); | |
a23fd0e1 | 2664 | |
42e69d6b VZ |
2665 | *mayCreate = TRUE; |
2666 | ||
2667 | return TRUE; | |
2bda0e17 KB |
2668 | } |
2669 | ||
42e69d6b | 2670 | bool wxWindow::HandleDestroy() |
2bda0e17 | 2671 | { |
42e69d6b VZ |
2672 | wxWindowDestroyEvent event(this); |
2673 | (void)GetEventHandler()->ProcessEvent(event); | |
2674 | ||
2675 | // delete our drop target if we've got one | |
2676 | #if wxUSE_DRAG_AND_DROP | |
2677 | if ( m_dropTarget != NULL ) | |
2d0a075d | 2678 | { |
42e69d6b VZ |
2679 | m_dropTarget->Revoke(m_hWnd); |
2680 | ||
2681 | delete m_dropTarget; | |
2682 | m_dropTarget = NULL; | |
2d0a075d | 2683 | } |
42e69d6b | 2684 | #endif // wxUSE_DRAG_AND_DROP |
2bda0e17 | 2685 | |
42e69d6b VZ |
2686 | // WM_DESTROY handled |
2687 | return TRUE; | |
2bda0e17 KB |
2688 | } |
2689 | ||
42e69d6b VZ |
2690 | // --------------------------------------------------------------------------- |
2691 | // activation/focus | |
2692 | // --------------------------------------------------------------------------- | |
2693 | ||
00c4e897 VZ |
2694 | void wxWindow::OnSetFocus(wxFocusEvent& event) |
2695 | { | |
2696 | // panel wants to track the window which was the last to have focus in it, | |
2697 | // so we want to set ourselves as the window which last had focus | |
2698 | // | |
2699 | // notice that it's also important to do it upwards the tree becaus | |
2700 | // otherwise when the top level panel gets focus, it won't set it back to | |
2701 | // us, but to some other sibling | |
2702 | wxWindow *win = this; | |
2703 | while ( win ) | |
2704 | { | |
2705 | wxWindow *parent = win->GetParent(); | |
2706 | wxPanel *panel = wxDynamicCast(parent, wxPanel); | |
2707 | if ( panel ) | |
2708 | { | |
2709 | panel->SetLastFocus(win); | |
2710 | } | |
2711 | ||
2712 | win = parent; | |
2713 | } | |
2714 | ||
2715 | wxLogTrace(_T("focus"), _T("%s (0x%08x) gets focus"), | |
2716 | GetClassInfo()->GetClassName(), GetHandle()); | |
2717 | ||
2718 | event.Skip(); | |
2719 | } | |
2720 | ||
42e69d6b VZ |
2721 | bool wxWindow::HandleActivate(int state, |
2722 | bool WXUNUSED(minimized), | |
2723 | WXHWND WXUNUSED(activate)) | |
2bda0e17 | 2724 | { |
42e69d6b VZ |
2725 | wxActivateEvent event(wxEVT_ACTIVATE, |
2726 | (state == WA_ACTIVE) || (state == WA_CLICKACTIVE), | |
2727 | m_windowId); | |
2728 | event.SetEventObject(this); | |
2729 | ||
2730 | return GetEventHandler()->ProcessEvent(event); | |
2731 | } | |
2732 | ||
2733 | bool wxWindow::HandleSetFocus(WXHWND WXUNUSED(hwnd)) | |
2734 | { | |
789295bf | 2735 | #if wxUSE_CARET |
42e69d6b | 2736 | // Deal with caret |
789295bf | 2737 | if ( m_caret ) |
2d0a075d | 2738 | { |
789295bf | 2739 | m_caret->OnSetFocus(); |
2bda0e17 | 2740 | } |
789295bf | 2741 | #endif // wxUSE_CARET |
42e69d6b | 2742 | |
42e69d6b VZ |
2743 | wxFocusEvent event(wxEVT_SET_FOCUS, m_windowId); |
2744 | event.SetEventObject(this); | |
2745 | ||
2746 | return GetEventHandler()->ProcessEvent(event); | |
2bda0e17 KB |
2747 | } |
2748 | ||
42e69d6b | 2749 | bool wxWindow::HandleKillFocus(WXHWND WXUNUSED(hwnd)) |
2bda0e17 | 2750 | { |
789295bf | 2751 | #if wxUSE_CARET |
42e69d6b | 2752 | // Deal with caret |
789295bf | 2753 | if ( m_caret ) |
2d0a075d | 2754 | { |
789295bf | 2755 | m_caret->OnKillFocus(); |
2bda0e17 | 2756 | } |
789295bf | 2757 | #endif // wxUSE_CARET |
42e69d6b VZ |
2758 | |
2759 | wxFocusEvent event(wxEVT_KILL_FOCUS, m_windowId); | |
2760 | event.SetEventObject(this); | |
2761 | ||
2762 | return GetEventHandler()->ProcessEvent(event); | |
2bda0e17 KB |
2763 | } |
2764 | ||
42e69d6b VZ |
2765 | // --------------------------------------------------------------------------- |
2766 | // miscellaneous | |
2767 | // --------------------------------------------------------------------------- | |
2768 | ||
33ac7e6f | 2769 | bool wxWindow::HandleShow(bool show, int WXUNUSED(status)) |
2bda0e17 | 2770 | { |
42e69d6b VZ |
2771 | wxShowEvent event(GetId(), show); |
2772 | event.m_eventObject = this; | |
2773 | ||
2774 | return GetEventHandler()->ProcessEvent(event); | |
2bda0e17 KB |
2775 | } |
2776 | ||
42e69d6b | 2777 | bool wxWindow::HandleInitDialog(WXHWND WXUNUSED(hWndFocus)) |
2bda0e17 | 2778 | { |
42e69d6b VZ |
2779 | wxInitDialogEvent event(GetId()); |
2780 | event.m_eventObject = this; | |
2781 | ||
2782 | return GetEventHandler()->ProcessEvent(event); | |
2bda0e17 KB |
2783 | } |
2784 | ||
42e69d6b | 2785 | bool wxWindow::HandleDropFiles(WXWPARAM wParam) |
2bda0e17 | 2786 | { |
42e69d6b VZ |
2787 | HDROP hFilesInfo = (HDROP) wParam; |
2788 | POINT dropPoint; | |
2789 | DragQueryPoint(hFilesInfo, (LPPOINT) &dropPoint); | |
2790 | ||
2791 | // Get the total number of files dropped | |
f6bcfd97 BP |
2792 | WORD gwFilesDropped = (WORD)::DragQueryFile |
2793 | ( | |
2794 | (HDROP)hFilesInfo, | |
2795 | (UINT)-1, | |
2796 | (LPTSTR)0, | |
2797 | (UINT)0 | |
2798 | ); | |
42e69d6b VZ |
2799 | |
2800 | wxString *files = new wxString[gwFilesDropped]; | |
2801 | int wIndex; | |
2802 | for (wIndex=0; wIndex < (int)gwFilesDropped; wIndex++) | |
2d0a075d | 2803 | { |
837e5743 | 2804 | DragQueryFile (hFilesInfo, wIndex, (LPTSTR) wxBuffer, 1000); |
42e69d6b | 2805 | files[wIndex] = wxBuffer; |
2d0a075d | 2806 | } |
42e69d6b | 2807 | DragFinish (hFilesInfo); |
2bda0e17 | 2808 | |
42e69d6b VZ |
2809 | wxDropFilesEvent event(wxEVT_DROP_FILES, gwFilesDropped, files); |
2810 | event.m_eventObject = this; | |
2811 | event.m_pos.x = dropPoint.x; event.m_pos.x = dropPoint.y; | |
2812 | ||
2813 | bool rc = GetEventHandler()->ProcessEvent(event); | |
2814 | ||
2815 | delete[] files; | |
2816 | ||
2817 | return rc; | |
2bda0e17 KB |
2818 | } |
2819 | ||
33ac7e6f | 2820 | bool wxWindow::HandleSetCursor(WXHWND WXUNUSED(hWnd), |
42e69d6b VZ |
2821 | short nHitTest, |
2822 | int WXUNUSED(mouseMsg)) | |
2bda0e17 | 2823 | { |
bfbd6dc1 | 2824 | // the logic is as follows: |
43b5058d VZ |
2825 | // -1. don't set cursor for non client area, including but not limited to |
2826 | // the title bar, scrollbars, &c | |
2827 | // 0. allow the user to override default behaviour by using EVT_SET_CURSOR | |
bfbd6dc1 VZ |
2828 | // 1. if we have the cursor set it unless wxIsBusy() |
2829 | // 2. if we're a top level window, set some cursor anyhow | |
2830 | // 3. if wxIsBusy(), set the busy cursor, otherwise the global one | |
42e69d6b | 2831 | |
43b5058d VZ |
2832 | if ( nHitTest != HTCLIENT ) |
2833 | { | |
2834 | return FALSE; | |
2835 | } | |
2836 | ||
bfbd6dc1 | 2837 | HCURSOR hcursor = 0; |
43b5058d VZ |
2838 | |
2839 | // first ask the user code - it may wish to set the cursor in some very | |
2840 | // specific way (for example, depending on the current position) | |
2841 | POINT pt; | |
669f7a11 | 2842 | #ifdef __WIN32__ |
43b5058d VZ |
2843 | if ( !::GetCursorPos(&pt) ) |
2844 | { | |
f6bcfd97 | 2845 | wxLogLastError(wxT("GetCursorPos")); |
43b5058d | 2846 | } |
669f7a11 JS |
2847 | #else |
2848 | // In WIN16 it doesn't return a value. | |
2849 | ::GetCursorPos(&pt); | |
2850 | #endif | |
43b5058d VZ |
2851 | |
2852 | int x = pt.x, | |
2853 | y = pt.y; | |
2854 | ScreenToClient(&x, &y); | |
2855 | wxSetCursorEvent event(x, y); | |
2856 | ||
2857 | bool processedEvtSetCursor = GetEventHandler()->ProcessEvent(event); | |
2858 | if ( processedEvtSetCursor && event.HasCursor() ) | |
bfbd6dc1 | 2859 | { |
43b5058d | 2860 | hcursor = GetHcursorOf(event.GetCursor()); |
bfbd6dc1 | 2861 | } |
42e69d6b | 2862 | |
43b5058d | 2863 | if ( !hcursor ) |
bfbd6dc1 | 2864 | { |
43b5058d VZ |
2865 | bool isBusy = wxIsBusy(); |
2866 | ||
2867 | // the test for processedEvtSetCursor is here to prevent using m_cursor | |
2868 | // if the user code caught EVT_SET_CURSOR() and returned nothing from | |
2869 | // it - this is a way to say that our cursor shouldn't be used for this | |
2870 | // point | |
2871 | if ( !processedEvtSetCursor && m_cursor.Ok() ) | |
bfbd6dc1 | 2872 | { |
43b5058d | 2873 | hcursor = GetHcursorOf(m_cursor); |
bfbd6dc1 | 2874 | } |
43b5058d VZ |
2875 | |
2876 | if ( !GetParent() ) | |
bfbd6dc1 | 2877 | { |
43b5058d | 2878 | if ( isBusy ) |
42e69d6b | 2879 | { |
43b5058d VZ |
2880 | hcursor = wxGetCurrentBusyCursor(); |
2881 | } | |
2882 | else if ( !hcursor ) | |
2883 | { | |
2884 | const wxCursor *cursor = wxGetGlobalCursor(); | |
2885 | if ( cursor && cursor->Ok() ) | |
2886 | { | |
2887 | hcursor = GetHcursorOf(*cursor); | |
2888 | } | |
42e69d6b VZ |
2889 | } |
2890 | } | |
2891 | } | |
2892 | ||
bfbd6dc1 VZ |
2893 | if ( hcursor ) |
2894 | { | |
2895 | ::SetCursor(hcursor); | |
2896 | ||
2897 | // cursor set, stop here | |
2898 | return TRUE; | |
2899 | } | |
3ca6a5f0 BP |
2900 | |
2901 | // pass up the window chain | |
2902 | return FALSE; | |
2bda0e17 KB |
2903 | } |
2904 | ||
42e69d6b VZ |
2905 | // --------------------------------------------------------------------------- |
2906 | // owner drawn stuff | |
2907 | // --------------------------------------------------------------------------- | |
2908 | ||
2909 | bool wxWindow::MSWOnDrawItem(int id, WXDRAWITEMSTRUCT *itemStruct) | |
2bda0e17 | 2910 | { |
4286a5b5 | 2911 | #if wxUSE_OWNER_DRAWN |
42e69d6b VZ |
2912 | // is it a menu item? |
2913 | if ( id == 0 ) | |
2914 | { | |
2915 | DRAWITEMSTRUCT *pDrawStruct = (DRAWITEMSTRUCT *)itemStruct; | |
2916 | wxMenuItem *pMenuItem = (wxMenuItem *)(pDrawStruct->itemData); | |
2917 | ||
2918 | wxCHECK( pMenuItem->IsKindOf(CLASSINFO(wxMenuItem)), FALSE ); | |
2919 | ||
2920 | // prepare to call OnDrawItem() | |
2921 | wxDC dc; | |
2922 | dc.SetHDC((WXHDC)pDrawStruct->hDC, FALSE); | |
2923 | wxRect rect(pDrawStruct->rcItem.left, pDrawStruct->rcItem.top, | |
2924 | pDrawStruct->rcItem.right - pDrawStruct->rcItem.left, | |
2925 | pDrawStruct->rcItem.bottom - pDrawStruct->rcItem.top); | |
2926 | ||
2927 | return pMenuItem->OnDrawItem | |
2928 | ( | |
2929 | dc, rect, | |
2930 | (wxOwnerDrawn::wxODAction)pDrawStruct->itemAction, | |
2931 | (wxOwnerDrawn::wxODStatus)pDrawStruct->itemState | |
2932 | ); | |
2933 | } | |
2934 | ||
2935 | wxWindow *item = FindItem(id); | |
2936 | if ( item && item->IsKindOf(CLASSINFO(wxControl)) ) | |
2937 | { | |
2938 | return ((wxControl *)item)->MSWOnDraw(itemStruct); | |
2939 | } | |
cd0b1709 | 2940 | #endif // USE_OWNER_DRAWN |
4286a5b5 | 2941 | |
cd0b1709 | 2942 | return FALSE; |
2bda0e17 KB |
2943 | } |
2944 | ||
42e69d6b | 2945 | bool wxWindow::MSWOnMeasureItem(int id, WXMEASUREITEMSTRUCT *itemStruct) |
2bda0e17 | 2946 | { |
4286a5b5 | 2947 | #if wxUSE_OWNER_DRAWN |
42e69d6b VZ |
2948 | // is it a menu item? |
2949 | if ( id == 0 ) | |
2d0a075d | 2950 | { |
42e69d6b VZ |
2951 | MEASUREITEMSTRUCT *pMeasureStruct = (MEASUREITEMSTRUCT *)itemStruct; |
2952 | wxMenuItem *pMenuItem = (wxMenuItem *)(pMeasureStruct->itemData); | |
2953 | ||
2954 | wxCHECK( pMenuItem->IsKindOf(CLASSINFO(wxMenuItem)), FALSE ); | |
2955 | ||
2956 | return pMenuItem->OnMeasureItem(&pMeasureStruct->itemWidth, | |
2957 | &pMeasureStruct->itemHeight); | |
2d0a075d | 2958 | } |
42e69d6b VZ |
2959 | |
2960 | wxWindow *item = FindItem(id); | |
2961 | if ( item && item->IsKindOf(CLASSINFO(wxControl)) ) | |
2962 | { | |
2963 | return ((wxControl *)item)->MSWOnMeasure(itemStruct); | |
2964 | } | |
4286a5b5 | 2965 | #endif // owner-drawn menus |
42e69d6b | 2966 | return FALSE; |
2bda0e17 KB |
2967 | } |
2968 | ||
42e69d6b VZ |
2969 | // --------------------------------------------------------------------------- |
2970 | // colours and palettes | |
2971 | // --------------------------------------------------------------------------- | |
2bda0e17 | 2972 | |
42e69d6b | 2973 | bool wxWindow::HandleSysColorChange() |
2bda0e17 | 2974 | { |
42e69d6b VZ |
2975 | wxSysColourChangedEvent event; |
2976 | event.SetEventObject(this); | |
2977 | ||
2978 | return GetEventHandler()->ProcessEvent(event); | |
2979 | } | |
2980 | ||
2981 | bool wxWindow::HandleCtlColor(WXHBRUSH *brush, | |
2982 | WXHDC pDC, | |
2983 | WXHWND pWnd, | |
2984 | WXUINT nCtlColor, | |
2985 | WXUINT message, | |
2986 | WXWPARAM wParam, | |
2987 | WXLPARAM lParam) | |
2988 | { | |
2989 | WXHBRUSH hBrush = 0; | |
2990 | ||
2991 | if ( nCtlColor == CTLCOLOR_DLG ) | |
2d0a075d | 2992 | { |
42e69d6b | 2993 | hBrush = OnCtlColor(pDC, pWnd, nCtlColor, message, wParam, lParam); |
2d0a075d JS |
2994 | } |
2995 | else | |
2996 | { | |
42e69d6b VZ |
2997 | wxControl *item = (wxControl *)FindItemByHWND(pWnd, TRUE); |
2998 | if ( item ) | |
2999 | hBrush = item->OnCtlColor(pDC, pWnd, nCtlColor, message, wParam, lParam); | |
2d0a075d | 3000 | } |
42e69d6b VZ |
3001 | |
3002 | if ( hBrush ) | |
3003 | *brush = hBrush; | |
3004 | ||
3005 | return hBrush != 0; | |
2bda0e17 KB |
3006 | } |
3007 | ||
42e69d6b | 3008 | // Define for each class of dialog and control |
33ac7e6f KB |
3009 | WXHBRUSH wxWindow::OnCtlColor(WXHDC WXUNUSED(hDC), |
3010 | WXHWND WXUNUSED(hWnd), | |
3011 | WXUINT WXUNUSED(nCtlColor), | |
3012 | WXUINT WXUNUSED(message), | |
3013 | WXWPARAM WXUNUSED(wParam), | |
3014 | WXLPARAM WXUNUSED(lParam)) | |
2bda0e17 | 3015 | { |
42e69d6b VZ |
3016 | return (WXHBRUSH)0; |
3017 | } | |
2d0a075d | 3018 | |
42e69d6b VZ |
3019 | bool wxWindow::HandlePaletteChanged(WXHWND hWndPalChange) |
3020 | { | |
3021 | wxPaletteChangedEvent event(GetId()); | |
3022 | event.SetEventObject(this); | |
3023 | event.SetChangedWindow(wxFindWinFromHandle(hWndPalChange)); | |
2d0a075d | 3024 | |
42e69d6b VZ |
3025 | return GetEventHandler()->ProcessEvent(event); |
3026 | } | |
3027 | ||
3028 | bool wxWindow::HandleQueryNewPalette() | |
3029 | { | |
3030 | wxQueryNewPaletteEvent event(GetId()); | |
3031 | event.SetEventObject(this); | |
3032 | ||
3033 | return GetEventHandler()->ProcessEvent(event) && event.GetPaletteRealized(); | |
3034 | } | |
3035 | ||
3036 | // Responds to colour changes: passes event on to children. | |
3037 | void wxWindow::OnSysColourChanged(wxSysColourChangedEvent& event) | |
3038 | { | |
3039 | wxNode *node = GetChildren().First(); | |
3040 | while ( node ) | |
3041 | { | |
3042 | // Only propagate to non-top-level windows | |
3043 | wxWindow *win = (wxWindow *)node->Data(); | |
3044 | if ( win->GetParent() ) | |
3045 | { | |
3046 | wxSysColourChangedEvent event2; | |
3047 | event.m_eventObject = win; | |
3048 | win->GetEventHandler()->ProcessEvent(event2); | |
564b2609 | 3049 | } |
42e69d6b VZ |
3050 | |
3051 | node = node->Next(); | |
2bda0e17 | 3052 | } |
2bda0e17 KB |
3053 | } |
3054 | ||
42e69d6b VZ |
3055 | // --------------------------------------------------------------------------- |
3056 | // painting | |
3057 | // --------------------------------------------------------------------------- | |
3058 | ||
3059 | bool wxWindow::HandlePaint() | |
2bda0e17 | 3060 | { |
42e69d6b VZ |
3061 | #ifdef __WIN32__ |
3062 | HRGN hRegion = ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle | |
3063 | if ( !hRegion ) | |
f6bcfd97 | 3064 | wxLogLastError(wxT("CreateRectRgn")); |
42e69d6b | 3065 | if ( ::GetUpdateRgn(GetHwnd(), hRegion, FALSE) == ERROR ) |
f6bcfd97 | 3066 | wxLogLastError(wxT("GetUpdateRgn")); |
c085e333 | 3067 | |
42e69d6b VZ |
3068 | m_updateRegion = wxRegion((WXHRGN) hRegion); |
3069 | #else | |
3070 | RECT updateRect; | |
3071 | ::GetUpdateRect(GetHwnd(), & updateRect, FALSE); | |
c085e333 | 3072 | |
42e69d6b VZ |
3073 | m_updateRegion = wxRegion(updateRect.left, updateRect.top, |
3074 | updateRect.right - updateRect.left, | |
3075 | updateRect.bottom - updateRect.top); | |
3076 | #endif | |
c085e333 | 3077 | |
42e69d6b VZ |
3078 | wxPaintEvent event(m_windowId); |
3079 | event.SetEventObject(this); | |
2bda0e17 | 3080 | |
42e69d6b | 3081 | return GetEventHandler()->ProcessEvent(event); |
2bda0e17 KB |
3082 | } |
3083 | ||
63da7df7 JS |
3084 | // Can be called from an application's OnPaint handler |
3085 | void wxWindow::OnPaint(wxPaintEvent& event) | |
3086 | { | |
3087 | HDC hDC = (HDC) wxPaintDC::FindDCInCache((wxWindow*) event.GetEventObject()); | |
3088 | if (hDC != 0) | |
3089 | { | |
3090 | MSWDefWindowProc(WM_PAINT, (WPARAM) hDC, 0); | |
3091 | } | |
3092 | } | |
3093 | ||
42e69d6b | 3094 | bool wxWindow::HandleEraseBkgnd(WXHDC hdc) |
a23fd0e1 | 3095 | { |
42e69d6b VZ |
3096 | // Prevents flicker when dragging |
3097 | if ( ::IsIconic(GetHwnd()) ) | |
3098 | return TRUE; | |
a23fd0e1 | 3099 | |
a23fd0e1 | 3100 | wxDC dc; |
c085e333 | 3101 | |
a23fd0e1 | 3102 | dc.SetHDC(hdc); |
564b2609 VZ |
3103 | dc.SetWindow(this); |
3104 | dc.BeginDrawing(); | |
c085e333 | 3105 | |
2bda0e17 | 3106 | wxEraseEvent event(m_windowId, &dc); |
42e69d6b | 3107 | event.SetEventObject(this); |
a23fd0e1 | 3108 | bool rc = GetEventHandler()->ProcessEvent(event); |
c085e333 | 3109 | |
a23fd0e1 VZ |
3110 | dc.EndDrawing(); |
3111 | dc.SelectOldObjects(hdc); | |
2bda0e17 | 3112 | dc.SetHDC((WXHDC) NULL); |
a23fd0e1 VZ |
3113 | |
3114 | return rc; | |
2bda0e17 KB |
3115 | } |
3116 | ||
3117 | void wxWindow::OnEraseBackground(wxEraseEvent& event) | |
3118 | { | |
2d0a075d | 3119 | RECT rect; |
a23fd0e1 | 3120 | ::GetClientRect(GetHwnd(), &rect); |
2bda0e17 | 3121 | |
42e69d6b VZ |
3122 | COLORREF ref = PALETTERGB(m_backgroundColour.Red(), |
3123 | m_backgroundColour.Green(), | |
3124 | m_backgroundColour.Blue()); | |
ce3ed50d | 3125 | HBRUSH hBrush = ::CreateSolidBrush(ref); |
42e69d6b | 3126 | if ( !hBrush ) |
f6bcfd97 | 3127 | wxLogLastError(wxT("CreateSolidBrush")); |
42e69d6b VZ |
3128 | |
3129 | HDC hdc = (HDC)event.GetDC()->GetHDC(); | |
2bda0e17 | 3130 | |
42e69d6b VZ |
3131 | int mode = ::SetMapMode(hdc, MM_TEXT); |
3132 | ||
3133 | ::FillRect(hdc, &rect, hBrush); | |
2d0a075d | 3134 | ::DeleteObject(hBrush); |
42e69d6b VZ |
3135 | ::SetMapMode(hdc, mode); |
3136 | } | |
3137 | ||
3138 | // --------------------------------------------------------------------------- | |
3139 | // moving and resizing | |
3140 | // --------------------------------------------------------------------------- | |
3141 | ||
3142 | bool wxWindow::HandleMinimize() | |
3143 | { | |
3144 | wxIconizeEvent event(m_windowId); | |
3145 | event.SetEventObject(this); | |
2d0a075d | 3146 | |
42e69d6b | 3147 | return GetEventHandler()->ProcessEvent(event); |
2bda0e17 KB |
3148 | } |
3149 | ||
42e69d6b | 3150 | bool wxWindow::HandleMaximize() |
2bda0e17 | 3151 | { |
42e69d6b VZ |
3152 | wxMaximizeEvent event(m_windowId); |
3153 | event.SetEventObject(this); | |
c085e333 | 3154 | |
42e69d6b VZ |
3155 | return GetEventHandler()->ProcessEvent(event); |
3156 | } | |
2bda0e17 | 3157 | |
42e69d6b VZ |
3158 | bool wxWindow::HandleMove(int x, int y) |
3159 | { | |
3160 | wxMoveEvent event(wxPoint(x, y), m_windowId); | |
3161 | event.SetEventObject(this); | |
3162 | ||
3163 | return GetEventHandler()->ProcessEvent(event); | |
3164 | } | |
3165 | ||
3166 | bool wxWindow::HandleSize(int w, int h, WXUINT WXUNUSED(flag)) | |
3167 | { | |
3168 | wxSizeEvent event(wxSize(w, h), m_windowId); | |
3169 | event.SetEventObject(this); | |
3170 | ||
3171 | return GetEventHandler()->ProcessEvent(event); | |
3172 | } | |
3173 | ||
3174 | bool wxWindow::HandleGetMinMaxInfo(void *mmInfo) | |
3175 | { | |
3176 | MINMAXINFO *info = (MINMAXINFO *)mmInfo; | |
3177 | ||
3178 | bool rc = FALSE; | |
3179 | ||
3180 | if ( m_minWidth != -1 ) | |
2d0a075d | 3181 | { |
42e69d6b VZ |
3182 | info->ptMinTrackSize.x = m_minWidth; |
3183 | rc = TRUE; | |
2d0a075d | 3184 | } |
2bda0e17 | 3185 | |
42e69d6b VZ |
3186 | if ( m_minHeight != -1 ) |
3187 | { | |
3188 | info->ptMinTrackSize.y = m_minHeight; | |
3189 | rc = TRUE; | |
3190 | } | |
2bda0e17 | 3191 | |
42e69d6b VZ |
3192 | if ( m_maxWidth != -1 ) |
3193 | { | |
3194 | info->ptMaxTrackSize.x = m_maxWidth; | |
3195 | rc = TRUE; | |
2d0a075d | 3196 | } |
2bda0e17 | 3197 | |
42e69d6b VZ |
3198 | if ( m_maxHeight != -1 ) |
3199 | { | |
3200 | info->ptMaxTrackSize.y = m_maxHeight; | |
3201 | rc = TRUE; | |
3202 | } | |
2bda0e17 | 3203 | |
42e69d6b VZ |
3204 | return rc; |
3205 | } | |
2d0a075d | 3206 | |
f6bcfd97 | 3207 | // generate an artificial resize event |
67bd5bad | 3208 | /* FUNCTION IS NOW A MEMBER OF wxFrame - gt |
f6bcfd97 BP |
3209 | void wxWindow::SendSizeEvent() |
3210 | { | |
3211 | RECT r; | |
3212 | #ifdef __WIN16__ | |
3213 | ::GetWindowRect(GetHwnd(), &r); | |
3214 | #else | |
3215 | if ( !::GetWindowRect(GetHwnd(), &r) ) | |
3216 | { | |
3217 | wxLogLastError(_T("GetWindowRect")); | |
3218 | } | |
3219 | #endif | |
3220 | ||
3221 | (void)::PostMessage(GetHwnd(), WM_SIZE, SIZE_RESTORED, | |
3222 | MAKELPARAM(r.right - r.left, r.bottom - r.top)); | |
3223 | } | |
67bd5bad | 3224 | */ |
f6bcfd97 | 3225 | |
42e69d6b VZ |
3226 | // --------------------------------------------------------------------------- |
3227 | // command messages | |
3228 | // --------------------------------------------------------------------------- | |
3229 | ||
3230 | bool wxWindow::HandleCommand(WXWORD id, WXWORD cmd, WXHWND control) | |
3231 | { | |
3232 | if ( wxCurrentPopupMenu ) | |
3233 | { | |
3234 | wxMenu *popupMenu = wxCurrentPopupMenu; | |
3235 | wxCurrentPopupMenu = NULL; | |
3236 | ||
3237 | return popupMenu->MSWCommand(cmd, id); | |
3238 | } | |
3239 | ||
2f4ef631 | 3240 | wxWindow *win = (wxWindow*) NULL; |
b853f898 | 3241 | if ( cmd == 0 || cmd == 1 ) // menu or accel - use id |
42e69d6b | 3242 | { |
b853f898 VZ |
3243 | // must cast to a signed type before comparing with other ids! |
3244 | win = FindItem((signed short)id); | |
3245 | } | |
2f4ef631 JS |
3246 | |
3247 | if (!win && control) | |
b853f898 VZ |
3248 | { |
3249 | // find it from HWND - this works even with the broken programs using | |
3250 | // the same ids for different controls | |
42e69d6b VZ |
3251 | win = wxFindWinFromHandle(control); |
3252 | } | |
3253 | ||
3254 | if ( win ) | |
b94ae1ea | 3255 | { |
42e69d6b | 3256 | return win->MSWCommand(cmd, id); |
b94ae1ea VZ |
3257 | } |
3258 | ||
3259 | // the messages sent from the in-place edit control used by the treectrl | |
3260 | // for label editing have id == 0, but they should _not_ be treated as menu | |
3261 | // messages (they are EN_XXX ones, in fact) so don't translate anything | |
3262 | // coming from a control to wxEVT_COMMAND_MENU_SELECTED | |
3263 | if ( !control ) | |
a84fc80b | 3264 | { |
b94ae1ea VZ |
3265 | // If no child window, it may be an accelerator, e.g. for a popup menu |
3266 | // command | |
a84fc80b JS |
3267 | |
3268 | wxCommandEvent event(wxEVT_COMMAND_MENU_SELECTED); | |
3269 | event.SetEventObject(this); | |
3270 | event.SetId(id); | |
3271 | event.SetInt(id); | |
b94ae1ea VZ |
3272 | |
3273 | return GetEventHandler()->ProcessEvent(event); | |
a84fc80b | 3274 | } |
6fe19057 VZ |
3275 | #if wxUSE_SPINCTRL |
3276 | else | |
3277 | { | |
3278 | // the text ctrl which is logically part of wxSpinCtrl sends WM_COMMAND | |
3279 | // notifications to its parent which we want to reflect back to | |
3280 | // wxSpinCtrl | |
3281 | wxSpinCtrl *spin = wxSpinCtrl::GetSpinForTextCtrl(control); | |
3282 | if ( spin && spin->ProcessTextCommand(cmd, id) ) | |
3283 | return TRUE; | |
3284 | } | |
3285 | #endif // wxUSE_SPINCTRL | |
42e69d6b VZ |
3286 | |
3287 | return FALSE; | |
2bda0e17 KB |
3288 | } |
3289 | ||
33ac7e6f | 3290 | bool wxWindow::HandleSysCommand(WXWPARAM wParam, WXLPARAM WXUNUSED(lParam)) |
2bda0e17 | 3291 | { |
42e69d6b VZ |
3292 | // 4 bits are reserved |
3293 | switch ( wParam & 0xFFFFFFF0 ) | |
3294 | { | |
3295 | case SC_MAXIMIZE: | |
3296 | return HandleMaximize(); | |
2d0a075d | 3297 | |
42e69d6b VZ |
3298 | case SC_MINIMIZE: |
3299 | return HandleMinimize(); | |
2d0a075d | 3300 | } |
2bda0e17 | 3301 | |
42e69d6b VZ |
3302 | return FALSE; |
3303 | } | |
3304 | ||
3305 | // --------------------------------------------------------------------------- | |
3306 | // mouse events | |
3307 | // --------------------------------------------------------------------------- | |
3308 | ||
3309 | void wxWindow::InitMouseEvent(wxMouseEvent& event, int x, int y, WXUINT flags) | |
3310 | { | |
3311 | event.m_x = x; | |
3312 | event.m_y = y; | |
3313 | event.m_shiftDown = ((flags & MK_SHIFT) != 0); | |
3314 | event.m_controlDown = ((flags & MK_CONTROL) != 0); | |
3315 | event.m_leftDown = ((flags & MK_LBUTTON) != 0); | |
3316 | event.m_middleDown = ((flags & MK_MBUTTON) != 0); | |
3317 | event.m_rightDown = ((flags & MK_RBUTTON) != 0); | |
b96340e6 | 3318 | event.m_altDown = (::GetKeyState(VK_MENU) & 0x80000000) != 0; |
42e69d6b VZ |
3319 | event.SetTimestamp(s_currentMsg.time); |
3320 | event.m_eventObject = this; | |
3321 | ||
3322 | #if wxUSE_MOUSEEVENT_HACK | |
3323 | m_lastMouseX = x; | |
3324 | m_lastMouseY = y; | |
3325 | m_lastMouseEvent = event.GetEventType(); | |
3326 | #endif // wxUSE_MOUSEEVENT_HACK | |
2bda0e17 | 3327 | |
2bda0e17 KB |
3328 | } |
3329 | ||
42e69d6b | 3330 | bool wxWindow::HandleMouseEvent(WXUINT msg, int x, int y, WXUINT flags) |
2bda0e17 | 3331 | { |
42e69d6b VZ |
3332 | // the mouse events take consecutive IDs from WM_MOUSEFIRST to |
3333 | // WM_MOUSELAST, so it's enough to substract WM_MOUSEMOVE == WM_MOUSEFIRST | |
3334 | // from the message id and take the value in the table to get wxWin event | |
3335 | // id | |
3336 | static const wxEventType eventsMouse[] = | |
3337 | { | |
3338 | wxEVT_MOTION, | |
3339 | wxEVT_LEFT_DOWN, | |
3340 | wxEVT_LEFT_UP, | |
3341 | wxEVT_LEFT_DCLICK, | |
3342 | wxEVT_RIGHT_DOWN, | |
3343 | wxEVT_RIGHT_UP, | |
3344 | wxEVT_RIGHT_DCLICK, | |
3345 | wxEVT_MIDDLE_DOWN, | |
3346 | wxEVT_MIDDLE_UP, | |
3347 | wxEVT_MIDDLE_DCLICK | |
3348 | }; | |
2bda0e17 | 3349 | |
42e69d6b VZ |
3350 | wxMouseEvent event(eventsMouse[msg - WM_MOUSEMOVE]); |
3351 | InitMouseEvent(event, x, y, flags); | |
3352 | ||
3353 | return GetEventHandler()->ProcessEvent(event); | |
3354 | } | |
3355 | ||
3356 | bool wxWindow::HandleMouseMove(int x, int y, WXUINT flags) | |
3357 | { | |
3358 | if ( !m_mouseInWindow ) | |
2bda0e17 | 3359 | { |
42e69d6b VZ |
3360 | // Generate an ENTER event |
3361 | m_mouseInWindow = TRUE; | |
3362 | ||
3363 | wxMouseEvent event(wxEVT_ENTER_WINDOW); | |
3364 | InitMouseEvent(event, x, y, flags); | |
3365 | ||
3366 | (void)GetEventHandler()->ProcessEvent(event); | |
3367 | } | |
3368 | ||
3369 | #if wxUSE_MOUSEEVENT_HACK | |
3370 | // Window gets a click down message followed by a mouse move message even | |
3371 | // if position isn't changed! We want to discard the trailing move event | |
3372 | // if x and y are the same. | |
3373 | if ( (m_lastMouseEvent == wxEVT_RIGHT_DOWN || | |
3374 | m_lastMouseEvent == wxEVT_LEFT_DOWN || | |
3375 | m_lastMouseEvent == wxEVT_MIDDLE_DOWN) && | |
3376 | (m_lastMouseX == event.m_x && m_lastMouseY == event.m_y) ) | |
3377 | { | |
3378 | m_lastMouseEvent = wxEVT_MOTION; | |
3379 | ||
3380 | return FALSE; | |
3381 | } | |
3382 | #endif // wxUSE_MOUSEEVENT_HACK | |
3383 | ||
3384 | return HandleMouseEvent(WM_MOUSEMOVE, x, y, flags); | |
3385 | } | |
3386 | ||
d2c52078 RD |
3387 | |
3388 | bool wxWindow::HandleMouseWheel(WXWPARAM wParam, WXLPARAM lParam) | |
3389 | { | |
3390 | #if wxUSE_MOUSEWHEEL | |
3391 | wxMouseEvent event(wxEVT_MOUSEWHEEL); | |
3392 | InitMouseEvent(event, | |
3393 | GET_X_LPARAM(lParam), | |
3394 | GET_Y_LPARAM(lParam), | |
3395 | LOWORD(wParam)); | |
d2c52078 RD |
3396 | event.m_wheelRotation = (short)HIWORD(wParam); |
3397 | event.m_wheelDelta = WHEEL_DELTA; | |
3398 | ||
0f7a546d RD |
3399 | #ifdef __WIN32__ |
3400 | static int s_linesPerRotation = -1; | |
3401 | if ( s_linesPerRotation == -1 ) | |
3402 | { | |
3403 | if ( !::SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0, | |
3404 | &s_linesPerRotation, 0)) | |
3405 | { | |
3406 | // this is not supposed to happen | |
3407 | wxLogLastError(_T("SystemParametersInfo(GETWHEELSCROLLLINES)")); | |
3408 | ||
3409 | // the default is 3, so use it if SystemParametersInfo() failed | |
3410 | s_linesPerRotation = 3; | |
3411 | } | |
3412 | } | |
3413 | #else // Win16 | |
3414 | // no SystemParametersInfo() under Win16 | |
3415 | static const int s_linesPerRotation = 3; | |
3416 | #endif | |
d2c52078 | 3417 | |
0f7a546d | 3418 | event.m_linesPerAction = s_linesPerRotation; |
d2c52078 | 3419 | return GetEventHandler()->ProcessEvent(event); |
0f7a546d | 3420 | |
d2c52078 RD |
3421 | #else |
3422 | return FALSE; | |
3423 | #endif | |
3424 | } | |
3425 | ||
3426 | ||
42e69d6b VZ |
3427 | // --------------------------------------------------------------------------- |
3428 | // keyboard handling | |
3429 | // --------------------------------------------------------------------------- | |
3430 | ||
c42404a5 VZ |
3431 | // create the key event of the given type for the given key - used by |
3432 | // HandleChar and HandleKeyDown/Up | |
3433 | wxKeyEvent wxWindow::CreateKeyEvent(wxEventType evType, | |
3434 | int id, | |
3435 | WXLPARAM lParam) const | |
3436 | { | |
3437 | wxKeyEvent event(evType); | |
3438 | event.SetId(GetId()); | |
3f7bc32b VZ |
3439 | event.m_shiftDown = wxIsShiftDown(); |
3440 | event.m_controlDown = wxIsCtrlDown(); | |
c42404a5 VZ |
3441 | event.m_altDown = (HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN; |
3442 | ||
3443 | event.m_eventObject = (wxWindow *)this; // const_cast | |
3444 | event.m_keyCode = id; | |
3445 | event.SetTimestamp(s_currentMsg.time); | |
3446 | ||
3447 | // translate the position to client coords | |
3448 | POINT pt; | |
3449 | GetCursorPos(&pt); | |
3450 | RECT rect; | |
3451 | GetWindowRect(GetHwnd(),&rect); | |
3452 | pt.x -= rect.left; | |
3453 | pt.y -= rect.top; | |
3454 | ||
3455 | event.m_x = pt.x; | |
3456 | event.m_y = pt.y; | |
3457 | ||
3458 | return event; | |
3459 | } | |
3460 | ||
42e69d6b VZ |
3461 | // isASCII is TRUE only when we're called from WM_CHAR handler and not from |
3462 | // WM_KEYDOWN one | |
33ac7e6f | 3463 | bool wxWindow::HandleChar(WXWPARAM wParam, WXLPARAM lParam, bool isASCII) |
42e69d6b | 3464 | { |
c42404a5 VZ |
3465 | bool ctrlDown = FALSE; |
3466 | ||
42e69d6b | 3467 | int id; |
42e69d6b VZ |
3468 | if ( isASCII ) |
3469 | { | |
3470 | // If 1 -> 26, translate to CTRL plus a letter. | |
3471 | id = wParam; | |
3472 | if ( (id > 0) && (id < 27) ) | |
2d0a075d | 3473 | { |
42e69d6b VZ |
3474 | switch (id) |
3475 | { | |
c42404a5 | 3476 | case 13: |
42e69d6b VZ |
3477 | id = WXK_RETURN; |
3478 | break; | |
c42404a5 VZ |
3479 | |
3480 | case 8: | |
42e69d6b VZ |
3481 | id = WXK_BACK; |
3482 | break; | |
c42404a5 VZ |
3483 | |
3484 | case 9: | |
42e69d6b VZ |
3485 | id = WXK_TAB; |
3486 | break; | |
c42404a5 VZ |
3487 | |
3488 | default: | |
3489 | ctrlDown = TRUE; | |
42e69d6b | 3490 | id = id + 96; |
42e69d6b | 3491 | } |
2d0a075d | 3492 | } |
2d0a075d | 3493 | } |
c42404a5 VZ |
3494 | else if ( (id = wxCharCodeMSWToWX(wParam)) == 0 ) |
3495 | { | |
42e69d6b | 3496 | // it's ASCII and will be processed here only when called from |
c42404a5 | 3497 | // WM_CHAR (i.e. when isASCII = TRUE), don't process it now |
42e69d6b VZ |
3498 | id = -1; |
3499 | } | |
2bda0e17 | 3500 | |
42e69d6b | 3501 | if ( id != -1 ) |
2d0a075d | 3502 | { |
c42404a5 VZ |
3503 | wxKeyEvent event(CreateKeyEvent(wxEVT_CHAR, id, lParam)); |
3504 | if ( ctrlDown ) | |
3505 | { | |
3506 | event.m_controlDown = TRUE; | |
3507 | } | |
42e69d6b VZ |
3508 | |
3509 | if ( GetEventHandler()->ProcessEvent(event) ) | |
3510 | return TRUE; | |
2d0a075d | 3511 | } |
c42404a5 VZ |
3512 | |
3513 | return FALSE; | |
2bda0e17 KB |
3514 | } |
3515 | ||
33ac7e6f | 3516 | bool wxWindow::HandleKeyDown(WXWPARAM wParam, WXLPARAM lParam) |
2bda0e17 | 3517 | { |
c42404a5 | 3518 | int id = wxCharCodeMSWToWX(wParam); |
2bda0e17 | 3519 | |
c42404a5 VZ |
3520 | if ( !id ) |
3521 | { | |
3522 | // normal ASCII char | |
42e69d6b VZ |
3523 | id = wParam; |
3524 | } | |
3525 | ||
c42404a5 | 3526 | if ( id != -1 ) // VZ: does this ever happen (FIXME)? |
2bda0e17 | 3527 | { |
c42404a5 | 3528 | wxKeyEvent event(CreateKeyEvent(wxEVT_KEY_DOWN, id, lParam)); |
42e69d6b | 3529 | if ( GetEventHandler()->ProcessEvent(event) ) |
2d0a075d | 3530 | { |
42e69d6b | 3531 | return TRUE; |
2d0a075d | 3532 | } |
42e69d6b | 3533 | } |
c42404a5 VZ |
3534 | |
3535 | return FALSE; | |
2bda0e17 KB |
3536 | } |
3537 | ||
33ac7e6f | 3538 | bool wxWindow::HandleKeyUp(WXWPARAM wParam, WXLPARAM lParam) |
2bda0e17 | 3539 | { |
c42404a5 | 3540 | int id = wxCharCodeMSWToWX(wParam); |
2bda0e17 | 3541 | |
c42404a5 VZ |
3542 | if ( !id ) |
3543 | { | |
3544 | // normal ASCII char | |
42e69d6b | 3545 | id = wParam; |
2d0a075d | 3546 | } |
2bda0e17 | 3547 | |
c42404a5 | 3548 | if ( id != -1 ) // VZ: does this ever happen (FIXME)? |
42e69d6b | 3549 | { |
c42404a5 | 3550 | wxKeyEvent event(CreateKeyEvent(wxEVT_KEY_UP, id, lParam)); |
42e69d6b VZ |
3551 | if ( GetEventHandler()->ProcessEvent(event) ) |
3552 | return TRUE; | |
42e69d6b | 3553 | } |
c42404a5 VZ |
3554 | |
3555 | return FALSE; | |
2bda0e17 KB |
3556 | } |
3557 | ||
42e69d6b VZ |
3558 | // --------------------------------------------------------------------------- |
3559 | // joystick | |
3560 | // --------------------------------------------------------------------------- | |
3561 | ||
3562 | bool wxWindow::HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags) | |
2bda0e17 | 3563 | { |
42e69d6b VZ |
3564 | int change = 0; |
3565 | if ( flags & JOY_BUTTON1CHG ) | |
3566 | change = wxJOY_BUTTON1; | |
3567 | if ( flags & JOY_BUTTON2CHG ) | |
3568 | change = wxJOY_BUTTON2; | |
3569 | if ( flags & JOY_BUTTON3CHG ) | |
3570 | change = wxJOY_BUTTON3; | |
3571 | if ( flags & JOY_BUTTON4CHG ) | |
3572 | change = wxJOY_BUTTON4; | |
2bda0e17 | 3573 | |
42e69d6b VZ |
3574 | int buttons = 0; |
3575 | if ( flags & JOY_BUTTON1 ) | |
3576 | buttons |= wxJOY_BUTTON1; | |
3577 | if ( flags & JOY_BUTTON2 ) | |
3578 | buttons |= wxJOY_BUTTON2; | |
3579 | if ( flags & JOY_BUTTON3 ) | |
3580 | buttons |= wxJOY_BUTTON3; | |
3581 | if ( flags & JOY_BUTTON4 ) | |
3582 | buttons |= wxJOY_BUTTON4; | |
c085e333 | 3583 | |
42e69d6b VZ |
3584 | // the event ids aren't consecutive so we can't use table based lookup |
3585 | int joystick; | |
3586 | wxEventType eventType; | |
3587 | switch ( msg ) | |
3588 | { | |
3589 | case MM_JOY1MOVE: | |
3590 | joystick = 1; | |
3591 | eventType = wxEVT_JOY_MOVE; | |
3592 | break; | |
2bda0e17 | 3593 | |
42e69d6b VZ |
3594 | case MM_JOY2MOVE: |
3595 | joystick = 2; | |
3596 | eventType = wxEVT_JOY_MOVE; | |
3597 | break; | |
2bda0e17 | 3598 | |
42e69d6b VZ |
3599 | case MM_JOY1ZMOVE: |
3600 | joystick = 1; | |
3601 | eventType = wxEVT_JOY_ZMOVE; | |
3602 | break; | |
2bda0e17 | 3603 | |
42e69d6b VZ |
3604 | case MM_JOY2ZMOVE: |
3605 | joystick = 2; | |
3606 | eventType = wxEVT_JOY_ZMOVE; | |
3607 | break; | |
2bda0e17 | 3608 | |
42e69d6b VZ |
3609 | case MM_JOY1BUTTONDOWN: |
3610 | joystick = 1; | |
3611 | eventType = wxEVT_JOY_BUTTON_DOWN; | |
3612 | break; | |
2bda0e17 | 3613 | |
42e69d6b VZ |
3614 | case MM_JOY2BUTTONDOWN: |
3615 | joystick = 2; | |
3616 | eventType = wxEVT_JOY_BUTTON_DOWN; | |
3617 | break; | |
2bda0e17 | 3618 | |
42e69d6b VZ |
3619 | case MM_JOY1BUTTONUP: |
3620 | joystick = 1; | |
3621 | eventType = wxEVT_JOY_BUTTON_UP; | |
3622 | break; | |
3623 | ||
3624 | case MM_JOY2BUTTONUP: | |
3625 | joystick = 2; | |
3626 | eventType = wxEVT_JOY_BUTTON_UP; | |
3627 | break; | |
3628 | ||
3629 | default: | |
223d09f6 | 3630 | wxFAIL_MSG(wxT("no such joystick event")); |
2d0a075d | 3631 | |
42e69d6b | 3632 | return FALSE; |
2d0a075d | 3633 | } |
2bda0e17 | 3634 | |
42e69d6b VZ |
3635 | wxJoystickEvent event(eventType, buttons, joystick, change); |
3636 | event.SetPosition(wxPoint(x, y)); | |
3637 | event.SetEventObject(this); | |
c085e333 | 3638 | |
42e69d6b | 3639 | return GetEventHandler()->ProcessEvent(event); |
2bda0e17 KB |
3640 | } |
3641 | ||
42e69d6b VZ |
3642 | // --------------------------------------------------------------------------- |
3643 | // scrolling | |
3644 | // --------------------------------------------------------------------------- | |
3645 | ||
3646 | bool wxWindow::MSWOnScroll(int orientation, WXWORD wParam, | |
3647 | WXWORD pos, WXHWND control) | |
2bda0e17 | 3648 | { |
42e69d6b | 3649 | if ( control ) |
cc2b7472 | 3650 | { |
42e69d6b VZ |
3651 | wxWindow *child = wxFindWinFromHandle(control); |
3652 | if ( child ) | |
3653 | return child->MSWOnScroll(orientation, wParam, pos, control); | |
cc2b7472 | 3654 | } |
2bda0e17 | 3655 | |
9145664b | 3656 | wxScrollWinEvent event; |
42e69d6b VZ |
3657 | event.SetPosition(pos); |
3658 | event.SetOrientation(orientation); | |
3659 | event.m_eventObject = this; | |
cc2b7472 | 3660 | |
42e69d6b VZ |
3661 | switch ( wParam ) |
3662 | { | |
3663 | case SB_TOP: | |
9145664b | 3664 | event.m_eventType = wxEVT_SCROLLWIN_TOP; |
42e69d6b | 3665 | break; |
cc2b7472 | 3666 | |
42e69d6b | 3667 | case SB_BOTTOM: |
9145664b | 3668 | event.m_eventType = wxEVT_SCROLLWIN_BOTTOM; |
42e69d6b | 3669 | break; |
cc2b7472 | 3670 | |
42e69d6b | 3671 | case SB_LINEUP: |
9145664b | 3672 | event.m_eventType = wxEVT_SCROLLWIN_LINEUP; |
42e69d6b | 3673 | break; |
2bda0e17 | 3674 | |
42e69d6b | 3675 | case SB_LINEDOWN: |
9145664b | 3676 | event.m_eventType = wxEVT_SCROLLWIN_LINEDOWN; |
42e69d6b | 3677 | break; |
a02eb1d2 | 3678 | |
42e69d6b | 3679 | case SB_PAGEUP: |
9145664b | 3680 | event.m_eventType = wxEVT_SCROLLWIN_PAGEUP; |
42e69d6b | 3681 | break; |
2bda0e17 | 3682 | |
42e69d6b | 3683 | case SB_PAGEDOWN: |
9145664b | 3684 | event.m_eventType = wxEVT_SCROLLWIN_PAGEDOWN; |
42e69d6b | 3685 | break; |
2bda0e17 | 3686 | |
42e69d6b | 3687 | case SB_THUMBPOSITION: |
feda3011 | 3688 | case SB_THUMBTRACK: |
f6bcfd97 BP |
3689 | #ifdef __WIN32__ |
3690 | // under Win32, the scrollbar range and position are 32 bit integers, | |
3691 | // but WM_[HV]SCROLL only carry the low 16 bits of them, so we must | |
3692 | // explicitly query the scrollbar for the correct position (this must | |
3693 | // be done only for these two SB_ events as they are the only one | |
3694 | // carrying the scrollbar position) | |
3695 | { | |
3696 | SCROLLINFO scrollInfo; | |
3697 | wxZeroMemory(scrollInfo); | |
3698 | scrollInfo.cbSize = sizeof(SCROLLINFO); | |
3699 | scrollInfo.fMask = SIF_TRACKPOS; | |
3700 | ||
3701 | if ( !::GetScrollInfo(GetHwnd(), | |
3702 | orientation == wxHORIZONTAL ? SB_HORZ | |
3703 | : SB_VERT, | |
3704 | &scrollInfo) ) | |
3705 | { | |
3706 | wxLogLastError(_T("GetScrollInfo")); | |
3707 | } | |
3708 | ||
3709 | event.SetPosition(scrollInfo.nTrackPos); | |
3710 | } | |
3711 | #endif // Win32 | |
3712 | ||
3713 | event.m_eventType = wParam == SB_THUMBPOSITION | |
3714 | ? wxEVT_SCROLLWIN_THUMBRELEASE | |
3715 | : wxEVT_SCROLLWIN_THUMBTRACK; | |
42e69d6b | 3716 | break; |
c085e333 | 3717 | |
42e69d6b VZ |
3718 | default: |
3719 | return FALSE; | |
564b2609 | 3720 | } |
2bda0e17 | 3721 | |
42e69d6b | 3722 | return GetEventHandler()->ProcessEvent(event); |
2bda0e17 KB |
3723 | } |
3724 | ||
42e69d6b VZ |
3725 | // =========================================================================== |
3726 | // global functions | |
3727 | // =========================================================================== | |
3728 | ||
f68586e5 | 3729 | void wxGetCharSize(WXHWND wnd, int *x, int *y, const wxFont *the_font) |
2bda0e17 | 3730 | { |
42e69d6b VZ |
3731 | TEXTMETRIC tm; |
3732 | HDC dc = ::GetDC((HWND) wnd); | |
3733 | HFONT fnt =0; | |
3734 | HFONT was = 0; | |
3735 | if ( the_font ) | |
2d0a075d | 3736 | { |
42e69d6b VZ |
3737 | // the_font->UseResource(); |
3738 | // the_font->RealizeResource(); | |
f68586e5 | 3739 | fnt = (HFONT)((wxFont *)the_font)->GetResourceHandle(); // const_cast |
42e69d6b VZ |
3740 | if ( fnt ) |
3741 | was = (HFONT) SelectObject(dc,fnt); | |
2d0a075d | 3742 | } |
42e69d6b VZ |
3743 | GetTextMetrics(dc, &tm); |
3744 | if ( the_font && fnt && was ) | |
2d0a075d | 3745 | { |
42e69d6b | 3746 | SelectObject(dc,was); |
2d0a075d | 3747 | } |
42e69d6b | 3748 | ReleaseDC((HWND)wnd, dc); |
0655ad29 VZ |
3749 | |
3750 | if ( x ) | |
3751 | *x = tm.tmAveCharWidth; | |
3752 | if ( y ) | |
3753 | *y = tm.tmHeight + tm.tmExternalLeading; | |
2bda0e17 | 3754 | |
42e69d6b VZ |
3755 | // if ( the_font ) |
3756 | // the_font->ReleaseResource(); | |
3757 | } | |
c085e333 | 3758 | |
42e69d6b VZ |
3759 | // Returns 0 if was a normal ASCII value, not a special key. This indicates that |
3760 | // the key should be ignored by WM_KEYDOWN and processed by WM_CHAR instead. | |
3761 | int wxCharCodeMSWToWX(int keySym) | |
3762 | { | |
f6bcfd97 | 3763 | int id; |
42e69d6b VZ |
3764 | switch (keySym) |
3765 | { | |
f6bcfd97 BP |
3766 | case VK_CANCEL: id = WXK_CANCEL; break; |
3767 | case VK_BACK: id = WXK_BACK; break; | |
3768 | case VK_TAB: id = WXK_TAB; break; | |
3769 | case VK_CLEAR: id = WXK_CLEAR; break; | |
3770 | case VK_RETURN: id = WXK_RETURN; break; | |
3771 | case VK_SHIFT: id = WXK_SHIFT; break; | |
3772 | case VK_CONTROL: id = WXK_CONTROL; break; | |
3773 | case VK_MENU : id = WXK_MENU; break; | |
3774 | case VK_PAUSE: id = WXK_PAUSE; break; | |
3775 | case VK_SPACE: id = WXK_SPACE; break; | |
3776 | case VK_ESCAPE: id = WXK_ESCAPE; break; | |
3777 | case VK_PRIOR: id = WXK_PRIOR; break; | |
3778 | case VK_NEXT : id = WXK_NEXT; break; | |
3779 | case VK_END: id = WXK_END; break; | |
3780 | case VK_HOME : id = WXK_HOME; break; | |
3781 | case VK_LEFT : id = WXK_LEFT; break; | |
3782 | case VK_UP: id = WXK_UP; break; | |
3783 | case VK_RIGHT: id = WXK_RIGHT; break; | |
3784 | case VK_DOWN : id = WXK_DOWN; break; | |
3785 | case VK_SELECT: id = WXK_SELECT; break; | |
3786 | case VK_PRINT: id = WXK_PRINT; break; | |
3787 | case VK_EXECUTE: id = WXK_EXECUTE; break; | |
3788 | case VK_INSERT: id = WXK_INSERT; break; | |
3789 | case VK_DELETE: id = WXK_DELETE; break; | |
3790 | case VK_HELP : id = WXK_HELP; break; | |
3791 | case VK_NUMPAD0: id = WXK_NUMPAD0; break; | |
3792 | case VK_NUMPAD1: id = WXK_NUMPAD1; break; | |
3793 | case VK_NUMPAD2: id = WXK_NUMPAD2; break; | |
3794 | case VK_NUMPAD3: id = WXK_NUMPAD3; break; | |
3795 | case VK_NUMPAD4: id = WXK_NUMPAD4; break; | |
3796 | case VK_NUMPAD5: id = WXK_NUMPAD5; break; | |
3797 | case VK_NUMPAD6: id = WXK_NUMPAD6; break; | |
3798 | case VK_NUMPAD7: id = WXK_NUMPAD7; break; | |
3799 | case VK_NUMPAD8: id = WXK_NUMPAD8; break; | |
3800 | case VK_NUMPAD9: id = WXK_NUMPAD9; break; | |
3801 | case VK_MULTIPLY: id = WXK_MULTIPLY; break; | |
3802 | case 0xBB: // VK_OEM_PLUS | |
3803 | case VK_ADD: id = WXK_ADD; break; | |
3804 | case 0xBD: // VK_OEM_MINUS | |
3805 | case VK_SUBTRACT: id = WXK_SUBTRACT; break; | |
3806 | case 0xBE: // VK_OEM_PERIOD | |
3807 | case VK_DECIMAL: id = WXK_DECIMAL; break; | |
3808 | case VK_DIVIDE: id = WXK_DIVIDE; break; | |
3809 | case VK_F1: id = WXK_F1; break; | |
3810 | case VK_F2: id = WXK_F2; break; | |
3811 | case VK_F3: id = WXK_F3; break; | |
3812 | case VK_F4: id = WXK_F4; break; | |
3813 | case VK_F5: id = WXK_F5; break; | |
3814 | case VK_F6: id = WXK_F6; break; | |
3815 | case VK_F7: id = WXK_F7; break; | |
3816 | case VK_F8: id = WXK_F8; break; | |
3817 | case VK_F9: id = WXK_F9; break; | |
3818 | case VK_F10: id = WXK_F10; break; | |
3819 | case VK_F11: id = WXK_F11; break; | |
3820 | case VK_F12: id = WXK_F12; break; | |
3821 | case VK_F13: id = WXK_F13; break; | |
3822 | case VK_F14: id = WXK_F14; break; | |
3823 | case VK_F15: id = WXK_F15; break; | |
3824 | case VK_F16: id = WXK_F16; break; | |
3825 | case VK_F17: id = WXK_F17; break; | |
3826 | case VK_F18: id = WXK_F18; break; | |
3827 | case VK_F19: id = WXK_F19; break; | |
3828 | case VK_F20: id = WXK_F20; break; | |
3829 | case VK_F21: id = WXK_F21; break; | |
3830 | case VK_F22: id = WXK_F22; break; | |
3831 | case VK_F23: id = WXK_F23; break; | |
3832 | case VK_F24: id = WXK_F24; break; | |
3833 | case VK_NUMLOCK: id = WXK_NUMLOCK; break; | |
3834 | case VK_SCROLL: id = WXK_SCROLL; break; | |
3835 | default: | |
3836 | id = 0; | |
42e69d6b | 3837 | } |
f6bcfd97 | 3838 | |
42e69d6b | 3839 | return id; |
2bda0e17 KB |
3840 | } |
3841 | ||
42e69d6b | 3842 | int wxCharCodeWXToMSW(int id, bool *isVirtual) |
2bda0e17 | 3843 | { |
42e69d6b VZ |
3844 | *isVirtual = TRUE; |
3845 | int keySym = 0; | |
3846 | switch (id) | |
2bda0e17 | 3847 | { |
42e69d6b VZ |
3848 | case WXK_CANCEL: keySym = VK_CANCEL; break; |
3849 | case WXK_CLEAR: keySym = VK_CLEAR; break; | |
3850 | case WXK_SHIFT: keySym = VK_SHIFT; break; | |
3851 | case WXK_CONTROL: keySym = VK_CONTROL; break; | |
3852 | case WXK_MENU : keySym = VK_MENU; break; | |
3853 | case WXK_PAUSE: keySym = VK_PAUSE; break; | |
3854 | case WXK_PRIOR: keySym = VK_PRIOR; break; | |
3855 | case WXK_NEXT : keySym = VK_NEXT; break; | |
3856 | case WXK_END: keySym = VK_END; break; | |
3857 | case WXK_HOME : keySym = VK_HOME; break; | |
3858 | case WXK_LEFT : keySym = VK_LEFT; break; | |
3859 | case WXK_UP: keySym = VK_UP; break; | |
3860 | case WXK_RIGHT: keySym = VK_RIGHT; break; | |
3861 | case WXK_DOWN : keySym = VK_DOWN; break; | |
3862 | case WXK_SELECT: keySym = VK_SELECT; break; | |
3863 | case WXK_PRINT: keySym = VK_PRINT; break; | |
3864 | case WXK_EXECUTE: keySym = VK_EXECUTE; break; | |
3865 | case WXK_INSERT: keySym = VK_INSERT; break; | |
3866 | case WXK_DELETE: keySym = VK_DELETE; break; | |
3867 | case WXK_HELP : keySym = VK_HELP; break; | |
3868 | case WXK_NUMPAD0: keySym = VK_NUMPAD0; break; | |
3869 | case WXK_NUMPAD1: keySym = VK_NUMPAD1; break; | |
3870 | case WXK_NUMPAD2: keySym = VK_NUMPAD2; break; | |
3871 | case WXK_NUMPAD3: keySym = VK_NUMPAD3; break; | |
3872 | case WXK_NUMPAD4: keySym = VK_NUMPAD4; break; | |
3873 | case WXK_NUMPAD5: keySym = VK_NUMPAD5; break; | |
3874 | case WXK_NUMPAD6: keySym = VK_NUMPAD6; break; | |
3875 | case WXK_NUMPAD7: keySym = VK_NUMPAD7; break; | |
3876 | case WXK_NUMPAD8: keySym = VK_NUMPAD8; break; | |
3877 | case WXK_NUMPAD9: keySym = VK_NUMPAD9; break; | |
3878 | case WXK_MULTIPLY: keySym = VK_MULTIPLY; break; | |
3879 | case WXK_ADD: keySym = VK_ADD; break; | |
3880 | case WXK_SUBTRACT: keySym = VK_SUBTRACT; break; | |
3881 | case WXK_DECIMAL: keySym = VK_DECIMAL; break; | |
3882 | case WXK_DIVIDE: keySym = VK_DIVIDE; break; | |
3883 | case WXK_F1: keySym = VK_F1; break; | |
3884 | case WXK_F2: keySym = VK_F2; break; | |
3885 | case WXK_F3: keySym = VK_F3; break; | |
3886 | case WXK_F4: keySym = VK_F4; break; | |
3887 | case WXK_F5: keySym = VK_F5; break; | |
3888 | case WXK_F6: keySym = VK_F6; break; | |
3889 | case WXK_F7: keySym = VK_F7; break; | |
3890 | case WXK_F8: keySym = VK_F8; break; | |
3891 | case WXK_F9: keySym = VK_F9; break; | |
3892 | case WXK_F10: keySym = VK_F10; break; | |
3893 | case WXK_F11: keySym = VK_F11; break; | |
3894 | case WXK_F12: keySym = VK_F12; break; | |
3895 | case WXK_F13: keySym = VK_F13; break; | |
3896 | case WXK_F14: keySym = VK_F14; break; | |
3897 | case WXK_F15: keySym = VK_F15; break; | |
3898 | case WXK_F16: keySym = VK_F16; break; | |
3899 | case WXK_F17: keySym = VK_F17; break; | |
3900 | case WXK_F18: keySym = VK_F18; break; | |
3901 | case WXK_F19: keySym = VK_F19; break; | |
3902 | case WXK_F20: keySym = VK_F20; break; | |
3903 | case WXK_F21: keySym = VK_F21; break; | |
3904 | case WXK_F22: keySym = VK_F22; break; | |
3905 | case WXK_F23: keySym = VK_F23; break; | |
3906 | case WXK_F24: keySym = VK_F24; break; | |
3907 | case WXK_NUMLOCK: keySym = VK_NUMLOCK; break; | |
3908 | case WXK_SCROLL: keySym = VK_SCROLL; break; | |
3909 | default: | |
3910 | { | |
3911 | *isVirtual = FALSE; | |
3912 | keySym = id; | |
3913 | break; | |
3914 | } | |
2bda0e17 | 3915 | } |
42e69d6b | 3916 | return keySym; |
2bda0e17 KB |
3917 | } |
3918 | ||
42e69d6b | 3919 | wxWindow *wxGetActiveWindow() |
2bda0e17 | 3920 | { |
42e69d6b VZ |
3921 | HWND hWnd = GetActiveWindow(); |
3922 | if ( hWnd != 0 ) | |
2d0a075d | 3923 | { |
42e69d6b | 3924 | return wxFindWinFromHandle((WXHWND) hWnd); |
2d0a075d | 3925 | } |
42e69d6b | 3926 | return NULL; |
2bda0e17 KB |
3927 | } |
3928 | ||
8614c467 VZ |
3929 | extern wxWindow *wxGetWindowFromHWND(WXHWND hWnd) |
3930 | { | |
3931 | HWND hwnd = (HWND)hWnd; | |
3932 | ||
3933 | // For a radiobutton, we get the radiobox from GWL_USERDATA (which is set | |
3934 | // by code in msw/radiobox.cpp), for all the others we just search up the | |
3935 | // window hierarchy | |
3936 | wxWindow *win = (wxWindow *)NULL; | |
3937 | if ( hwnd ) | |
3938 | { | |
3939 | win = wxFindWinFromHandle((WXHWND)hwnd); | |
3940 | if ( !win ) | |
3941 | { | |
4f527e71 VZ |
3942 | // the radiobox pointer is stored in GWL_USERDATA only under Win32 |
3943 | #ifdef __WIN32__ | |
8614c467 VZ |
3944 | // native radiobuttons return DLGC_RADIOBUTTON here and for any |
3945 | // wxWindow class which overrides WM_GETDLGCODE processing to | |
3946 | // do it as well, win would be already non NULL | |
3947 | if ( ::SendMessage((HWND)hwnd, WM_GETDLGCODE, | |
3948 | 0, 0) & DLGC_RADIOBUTTON ) | |
3949 | { | |
3950 | win = (wxWindow *)::GetWindowLong(hwnd, GWL_USERDATA); | |
3951 | } | |
3952 | else | |
4f527e71 | 3953 | #endif // Win32 |
8614c467 VZ |
3954 | { |
3955 | // hwnd is not a wxWindow, try its parent next below | |
3956 | hwnd = ::GetParent(hwnd); | |
3957 | } | |
3958 | } | |
3959 | //else: it's a wxRadioButton, not a radiobutton from wxRadioBox | |
3960 | } | |
3961 | ||
3962 | while ( hwnd && !win ) | |
3963 | { | |
3964 | win = wxFindWinFromHandle((WXHWND)hwnd); | |
3965 | hwnd = ::GetParent(hwnd); | |
3966 | } | |
3967 | ||
3968 | return win; | |
3969 | } | |
3970 | ||
42e69d6b VZ |
3971 | // Windows keyboard hook. Allows interception of e.g. F1, ESCAPE |
3972 | // in active frames and dialogs, regardless of where the focus is. | |
3973 | static HHOOK wxTheKeyboardHook = 0; | |
3974 | static FARPROC wxTheKeyboardHookProc = 0; | |
3975 | int APIENTRY _EXPORT | |
3976 | wxKeyboardHook(int nCode, WORD wParam, DWORD lParam); | |
2bda0e17 | 3977 | |
42e69d6b | 3978 | void wxSetKeyboardHook(bool doIt) |
2bda0e17 | 3979 | { |
42e69d6b | 3980 | if ( doIt ) |
2d0a075d | 3981 | { |
42e69d6b VZ |
3982 | wxTheKeyboardHookProc = MakeProcInstance((FARPROC) wxKeyboardHook, wxGetInstance()); |
3983 | wxTheKeyboardHook = SetWindowsHookEx(WH_KEYBOARD, (HOOKPROC) wxTheKeyboardHookProc, wxGetInstance(), | |
c7527e3f | 3984 | |
42e69d6b | 3985 | #if defined(__WIN32__) && !defined(__TWIN32__) |
8614c467 | 3986 | GetCurrentThreadId() |
42e69d6b VZ |
3987 | // (DWORD)GetCurrentProcess()); // This is another possibility. Which is right? |
3988 | #else | |
8614c467 | 3989 | GetCurrentTask() |
42e69d6b | 3990 | #endif |
8614c467 | 3991 | ); |
2d0a075d | 3992 | } |
2d0a075d | 3993 | else |
2d0a075d | 3994 | { |
42e69d6b | 3995 | UnhookWindowsHookEx(wxTheKeyboardHook); |
33ac7e6f KB |
3996 | // avoids warning about statement with no effect (FreeProcInstance |
3997 | // doesn't do anything under Win32) | |
3998 | #if !defined(WIN32) && !defined(_WIN32) && !defined(__WIN32__) && !defined(__NT__) && !defined(__GNUWIN32__) | |
42e69d6b | 3999 | FreeProcInstance(wxTheKeyboardHookProc); |
a17e237f | 4000 | #endif |
2d0a075d | 4001 | } |
2bda0e17 KB |
4002 | } |
4003 | ||
42e69d6b VZ |
4004 | int APIENTRY _EXPORT |
4005 | wxKeyboardHook(int nCode, WORD wParam, DWORD lParam) | |
2bda0e17 | 4006 | { |
42e69d6b VZ |
4007 | DWORD hiWord = HIWORD(lParam); |
4008 | if ( nCode != HC_NOREMOVE && ((hiWord & KF_UP) == 0) ) | |
43d811ea | 4009 | { |
32de7d24 VZ |
4010 | int id = wxCharCodeMSWToWX(wParam); |
4011 | if ( id != 0 ) | |
43d811ea | 4012 | { |
42e69d6b VZ |
4013 | wxKeyEvent event(wxEVT_CHAR_HOOK); |
4014 | if ( (HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN ) | |
4015 | event.m_altDown = TRUE; | |
c085e333 | 4016 | |
42e69d6b VZ |
4017 | event.m_eventObject = NULL; |
4018 | event.m_keyCode = id; | |
3f7bc32b VZ |
4019 | event.m_shiftDown = wxIsShiftDown(); |
4020 | event.m_controlDown = wxIsCtrlDown(); | |
42e69d6b | 4021 | event.SetTimestamp(s_currentMsg.time); |
c085e333 | 4022 | |
42e69d6b | 4023 | wxWindow *win = wxGetActiveWindow(); |
32de7d24 | 4024 | wxEvtHandler *handler; |
42e69d6b VZ |
4025 | if ( win ) |
4026 | { | |
32de7d24 VZ |
4027 | handler = win->GetEventHandler(); |
4028 | event.SetId(win->GetId()); | |
42e69d6b VZ |
4029 | } |
4030 | else | |
4031 | { | |
32de7d24 VZ |
4032 | handler = wxTheApp; |
4033 | event.SetId(-1); | |
4034 | } | |
4035 | ||
4036 | if ( handler && handler->ProcessEvent(event) ) | |
4037 | { | |
4038 | // processed | |
4039 | return 1; | |
42e69d6b | 4040 | } |
43d811ea JS |
4041 | } |
4042 | } | |
32de7d24 | 4043 | |
42e69d6b | 4044 | return (int)CallNextHookEx(wxTheKeyboardHook, nCode, wParam, lParam); |
4fabb575 JS |
4045 | } |
4046 | ||
b2aef89b | 4047 | #ifdef __WXDEBUG__ |
f449ef69 | 4048 | const char *wxGetMessageName(int message) |
47cbd6da | 4049 | { |
42e69d6b VZ |
4050 | switch ( message ) |
4051 | { | |
4052 | case 0x0000: return "WM_NULL"; | |
4053 | case 0x0001: return "WM_CREATE"; | |
4054 | case 0x0002: return "WM_DESTROY"; | |
4055 | case 0x0003: return "WM_MOVE"; | |
4056 | case 0x0005: return "WM_SIZE"; | |
4057 | case 0x0006: return "WM_ACTIVATE"; | |
4058 | case 0x0007: return "WM_SETFOCUS"; | |
4059 | case 0x0008: return "WM_KILLFOCUS"; | |
4060 | case 0x000A: return "WM_ENABLE"; | |
4061 | case 0x000B: return "WM_SETREDRAW"; | |
9b64e798 VZ |
4062 | case 0x000C: return "WM_SETTEXT"; |
4063 | case 0x000D: return "WM_GETTEXT"; | |
42e69d6b | 4064 | case 0x000E: return "WM_GETTEXTLENGTH"; |
9b64e798 | 4065 | case 0x000F: return "WM_PAINT"; |
42e69d6b VZ |
4066 | case 0x0010: return "WM_CLOSE"; |
4067 | case 0x0011: return "WM_QUERYENDSESSION"; | |
9b64e798 | 4068 | case 0x0012: return "WM_QUIT"; |
42e69d6b VZ |
4069 | case 0x0013: return "WM_QUERYOPEN"; |
4070 | case 0x0014: return "WM_ERASEBKGND"; | |
4071 | case 0x0015: return "WM_SYSCOLORCHANGE"; | |
4072 | case 0x0016: return "WM_ENDSESSION"; | |
4073 | case 0x0017: return "WM_SYSTEMERROR"; | |
4074 | case 0x0018: return "WM_SHOWWINDOW"; | |
4075 | case 0x0019: return "WM_CTLCOLOR"; | |
4076 | case 0x001A: return "WM_WININICHANGE"; | |
4077 | case 0x001B: return "WM_DEVMODECHANGE"; | |
4078 | case 0x001C: return "WM_ACTIVATEAPP"; | |
4079 | case 0x001D: return "WM_FONTCHANGE"; | |
4080 | case 0x001E: return "WM_TIMECHANGE"; | |
4081 | case 0x001F: return "WM_CANCELMODE"; | |
4082 | case 0x0020: return "WM_SETCURSOR"; | |
4083 | case 0x0021: return "WM_MOUSEACTIVATE"; | |
4084 | case 0x0022: return "WM_CHILDACTIVATE"; | |
4085 | case 0x0023: return "WM_QUEUESYNC"; | |
4086 | case 0x0024: return "WM_GETMINMAXINFO"; | |
4087 | case 0x0026: return "WM_PAINTICON"; | |
4088 | case 0x0027: return "WM_ICONERASEBKGND"; | |
4089 | case 0x0028: return "WM_NEXTDLGCTL"; | |
4090 | case 0x002A: return "WM_SPOOLERSTATUS"; | |
4091 | case 0x002B: return "WM_DRAWITEM"; | |
4092 | case 0x002C: return "WM_MEASUREITEM"; | |
4093 | case 0x002D: return "WM_DELETEITEM"; | |
4094 | case 0x002E: return "WM_VKEYTOITEM"; | |
4095 | case 0x002F: return "WM_CHARTOITEM"; | |
9b64e798 VZ |
4096 | case 0x0030: return "WM_SETFONT"; |
4097 | case 0x0031: return "WM_GETFONT"; | |
42e69d6b VZ |
4098 | case 0x0037: return "WM_QUERYDRAGICON"; |
4099 | case 0x0039: return "WM_COMPAREITEM"; | |
4100 | case 0x0041: return "WM_COMPACTING"; | |
4101 | case 0x0044: return "WM_COMMNOTIFY"; | |
4102 | case 0x0046: return "WM_WINDOWPOSCHANGING"; | |
4103 | case 0x0047: return "WM_WINDOWPOSCHANGED"; | |
4104 | case 0x0048: return "WM_POWER"; | |
c085e333 | 4105 | |
a02eb1d2 | 4106 | #ifdef __WIN32__ |
42e69d6b VZ |
4107 | case 0x004A: return "WM_COPYDATA"; |
4108 | case 0x004B: return "WM_CANCELJOURNAL"; | |
4109 | case 0x004E: return "WM_NOTIFY"; | |
9b64e798 | 4110 | case 0x0050: return "WM_INPUTLANGCHANGEREQUEST"; |
42e69d6b VZ |
4111 | case 0x0051: return "WM_INPUTLANGCHANGE"; |
4112 | case 0x0052: return "WM_TCARD"; | |
4113 | case 0x0053: return "WM_HELP"; | |
4114 | case 0x0054: return "WM_USERCHANGED"; | |
9b64e798 | 4115 | case 0x0055: return "WM_NOTIFYFORMAT"; |
42e69d6b VZ |
4116 | case 0x007B: return "WM_CONTEXTMENU"; |
4117 | case 0x007C: return "WM_STYLECHANGING"; | |
4118 | case 0x007D: return "WM_STYLECHANGED"; | |
4119 | case 0x007E: return "WM_DISPLAYCHANGE"; | |
4120 | case 0x007F: return "WM_GETICON"; | |
4121 | case 0x0080: return "WM_SETICON"; | |
a02eb1d2 | 4122 | #endif //WIN32 |
c085e333 | 4123 | |
42e69d6b VZ |
4124 | case 0x0081: return "WM_NCCREATE"; |
4125 | case 0x0082: return "WM_NCDESTROY"; | |
4126 | case 0x0083: return "WM_NCCALCSIZE"; | |
9b64e798 VZ |
4127 | case 0x0084: return "WM_NCHITTEST"; |
4128 | case 0x0085: return "WM_NCPAINT"; | |
42e69d6b VZ |
4129 | case 0x0086: return "WM_NCACTIVATE"; |
4130 | case 0x0087: return "WM_GETDLGCODE"; | |
4131 | case 0x00A0: return "WM_NCMOUSEMOVE"; | |
4132 | case 0x00A1: return "WM_NCLBUTTONDOWN"; | |
4133 | case 0x00A2: return "WM_NCLBUTTONUP"; | |
4134 | case 0x00A3: return "WM_NCLBUTTONDBLCLK"; | |
4135 | case 0x00A4: return "WM_NCRBUTTONDOWN"; | |
4136 | case 0x00A5: return "WM_NCRBUTTONUP"; | |
4137 | case 0x00A6: return "WM_NCRBUTTONDBLCLK"; | |
4138 | case 0x00A7: return "WM_NCMBUTTONDOWN"; | |
4139 | case 0x00A8: return "WM_NCMBUTTONUP"; | |
4140 | case 0x00A9: return "WM_NCMBUTTONDBLCLK"; | |
4141 | case 0x0100: return "WM_KEYDOWN"; | |
4142 | case 0x0101: return "WM_KEYUP"; | |
4143 | case 0x0102: return "WM_CHAR"; | |
4144 | case 0x0103: return "WM_DEADCHAR"; | |
4145 | case 0x0104: return "WM_SYSKEYDOWN"; | |
4146 | case 0x0105: return "WM_SYSKEYUP"; | |
4147 | case 0x0106: return "WM_SYSCHAR"; | |
4148 | case 0x0107: return "WM_SYSDEADCHAR"; | |
9b64e798 | 4149 | case 0x0108: return "WM_KEYLAST"; |
c085e333 | 4150 | |
a02eb1d2 | 4151 | #ifdef __WIN32__ |
42e69d6b VZ |
4152 | case 0x010D: return "WM_IME_STARTCOMPOSITION"; |
4153 | case 0x010E: return "WM_IME_ENDCOMPOSITION"; | |
4154 | case 0x010F: return "WM_IME_COMPOSITION"; | |
a02eb1d2 | 4155 | #endif //WIN32 |
c085e333 | 4156 | |
42e69d6b VZ |
4157 | case 0x0110: return "WM_INITDIALOG"; |
4158 | case 0x0111: return "WM_COMMAND"; | |
4159 | case 0x0112: return "WM_SYSCOMMAND"; | |
4160 | case 0x0113: return "WM_TIMER"; | |
4161 | case 0x0114: return "WM_HSCROLL"; | |
4162 | case 0x0115: return "WM_VSCROLL"; | |
4163 | case 0x0116: return "WM_INITMENU"; | |
4164 | case 0x0117: return "WM_INITMENUPOPUP"; | |
9b64e798 | 4165 | case 0x011F: return "WM_MENUSELECT"; |
42e69d6b VZ |
4166 | case 0x0120: return "WM_MENUCHAR"; |
4167 | case 0x0121: return "WM_ENTERIDLE"; | |
4168 | case 0x0200: return "WM_MOUSEMOVE"; | |
4169 | case 0x0201: return "WM_LBUTTONDOWN"; | |
4170 | case 0x0202: return "WM_LBUTTONUP"; | |
4171 | case 0x0203: return "WM_LBUTTONDBLCLK"; | |
4172 | case 0x0204: return "WM_RBUTTONDOWN"; | |
4173 | case 0x0205: return "WM_RBUTTONUP"; | |
4174 | case 0x0206: return "WM_RBUTTONDBLCLK"; | |
4175 | case 0x0207: return "WM_MBUTTONDOWN"; | |
4176 | case 0x0208: return "WM_MBUTTONUP"; | |
4177 | case 0x0209: return "WM_MBUTTONDBLCLK"; | |
d2c52078 | 4178 | case 0x020A: return "WM_MOUSEWHEEL"; |
42e69d6b VZ |
4179 | case 0x0210: return "WM_PARENTNOTIFY"; |
4180 | case 0x0211: return "WM_ENTERMENULOOP"; | |
4181 | case 0x0212: return "WM_EXITMENULOOP"; | |
c085e333 | 4182 | |
a02eb1d2 | 4183 | #ifdef __WIN32__ |
42e69d6b VZ |
4184 | case 0x0213: return "WM_NEXTMENU"; |
4185 | case 0x0214: return "WM_SIZING"; | |
4186 | case 0x0215: return "WM_CAPTURECHANGED"; | |
4187 | case 0x0216: return "WM_MOVING"; | |
9b64e798 | 4188 | case 0x0218: return "WM_POWERBROADCAST"; |
42e69d6b | 4189 | case 0x0219: return "WM_DEVICECHANGE"; |
a02eb1d2 | 4190 | #endif //WIN32 |
c085e333 | 4191 | |
42e69d6b VZ |
4192 | case 0x0220: return "WM_MDICREATE"; |
4193 | case 0x0221: return "WM_MDIDESTROY"; | |
4194 | case 0x0222: return "WM_MDIACTIVATE"; | |
4195 | case 0x0223: return "WM_MDIRESTORE"; | |
9b64e798 | 4196 | case 0x0224: return "WM_MDINEXT"; |
42e69d6b VZ |
4197 | case 0x0225: return "WM_MDIMAXIMIZE"; |
4198 | case 0x0226: return "WM_MDITILE"; | |
4199 | case 0x0227: return "WM_MDICASCADE"; | |
4200 | case 0x0228: return "WM_MDIICONARRANGE"; | |
4201 | case 0x0229: return "WM_MDIGETACTIVE"; | |
4202 | case 0x0230: return "WM_MDISETMENU"; | |
4203 | case 0x0233: return "WM_DROPFILES"; | |
c085e333 | 4204 | |
a02eb1d2 | 4205 | #ifdef __WIN32__ |
9b64e798 | 4206 | case 0x0281: return "WM_IME_SETCONTEXT"; |
42e69d6b VZ |
4207 | case 0x0282: return "WM_IME_NOTIFY"; |
4208 | case 0x0283: return "WM_IME_CONTROL"; | |
4209 | case 0x0284: return "WM_IME_COMPOSITIONFULL"; | |
9b64e798 | 4210 | case 0x0285: return "WM_IME_SELECT"; |
42e69d6b VZ |
4211 | case 0x0286: return "WM_IME_CHAR"; |
4212 | case 0x0290: return "WM_IME_KEYDOWN"; | |
4213 | case 0x0291: return "WM_IME_KEYUP"; | |
a02eb1d2 | 4214 | #endif //WIN32 |
c085e333 | 4215 | |
9b64e798 | 4216 | case 0x0300: return "WM_CUT"; |
42e69d6b VZ |
4217 | case 0x0301: return "WM_COPY"; |
4218 | case 0x0302: return "WM_PASTE"; | |
4219 | case 0x0303: return "WM_CLEAR"; | |
4220 | case 0x0304: return "WM_UNDO"; | |
9b64e798 | 4221 | case 0x0305: return "WM_RENDERFORMAT"; |
42e69d6b VZ |
4222 | case 0x0306: return "WM_RENDERALLFORMATS"; |
4223 | case 0x0307: return "WM_DESTROYCLIPBOARD"; | |
4224 | case 0x0308: return "WM_DRAWCLIPBOARD"; | |
4225 | case 0x0309: return "WM_PAINTCLIPBOARD"; | |
4226 | case 0x030A: return "WM_VSCROLLCLIPBOARD"; | |
4227 | case 0x030B: return "WM_SIZECLIPBOARD"; | |
4228 | case 0x030C: return "WM_ASKCBFORMATNAME"; | |
4229 | case 0x030D: return "WM_CHANGECBCHAIN"; | |
4230 | case 0x030E: return "WM_HSCROLLCLIPBOARD"; | |
4231 | case 0x030F: return "WM_QUERYNEWPALETTE"; | |
4232 | case 0x0310: return "WM_PALETTEISCHANGING"; | |
4233 | case 0x0311: return "WM_PALETTECHANGED"; | |
c085e333 | 4234 | |
a02eb1d2 | 4235 | #ifdef __WIN32__ |
2d0a075d JS |
4236 | // common controls messages - although they're not strictly speaking |
4237 | // standard, it's nice to decode them nevertheless | |
a02eb1d2 | 4238 | |
2d0a075d | 4239 | // listview |
42e69d6b VZ |
4240 | case 0x1000 + 0: return "LVM_GETBKCOLOR"; |
4241 | case 0x1000 + 1: return "LVM_SETBKCOLOR"; | |
9b64e798 VZ |
4242 | case 0x1000 + 2: return "LVM_GETIMAGELIST"; |
4243 | case 0x1000 + 3: return "LVM_SETIMAGELIST"; | |
4244 | case 0x1000 + 4: return "LVM_GETITEMCOUNT"; | |
42e69d6b VZ |
4245 | case 0x1000 + 5: return "LVM_GETITEMA"; |
4246 | case 0x1000 + 75: return "LVM_GETITEMW"; | |
4247 | case 0x1000 + 6: return "LVM_SETITEMA"; | |
4248 | case 0x1000 + 76: return "LVM_SETITEMW"; | |
4249 | case 0x1000 + 7: return "LVM_INSERTITEMA"; | |
4250 | case 0x1000 + 77: return "LVM_INSERTITEMW"; | |
4251 | case 0x1000 + 8: return "LVM_DELETEITEM"; | |
4252 | case 0x1000 + 9: return "LVM_DELETEALLITEMS"; | |
4253 | case 0x1000 + 10: return "LVM_GETCALLBACKMASK"; | |
4254 | case 0x1000 + 11: return "LVM_SETCALLBACKMASK"; | |
4255 | case 0x1000 + 12: return "LVM_GETNEXTITEM"; | |
4256 | case 0x1000 + 13: return "LVM_FINDITEMA"; | |
4257 | case 0x1000 + 83: return "LVM_FINDITEMW"; | |
9b64e798 | 4258 | case 0x1000 + 14: return "LVM_GETITEMRECT"; |
42e69d6b VZ |
4259 | case 0x1000 + 15: return "LVM_SETITEMPOSITION"; |
4260 | case 0x1000 + 16: return "LVM_GETITEMPOSITION"; | |
4261 | case 0x1000 + 17: return "LVM_GETSTRINGWIDTHA"; | |
4262 | case 0x1000 + 87: return "LVM_GETSTRINGWIDTHW"; | |
9b64e798 | 4263 | case 0x1000 + 18: return "LVM_HITTEST"; |
42e69d6b VZ |
4264 | case 0x1000 + 19: return "LVM_ENSUREVISIBLE"; |
4265 | case 0x1000 + 20: return "LVM_SCROLL"; | |
4266 | case 0x1000 + 21: return "LVM_REDRAWITEMS"; | |
4267 | case 0x1000 + 22: return "LVM_ARRANGE"; | |
4268 | case 0x1000 + 23: return "LVM_EDITLABELA"; | |
4269 | case 0x1000 + 118: return "LVM_EDITLABELW"; | |
4270 | case 0x1000 + 24: return "LVM_GETEDITCONTROL"; | |
4271 | case 0x1000 + 25: return "LVM_GETCOLUMNA"; | |
4272 | case 0x1000 + 95: return "LVM_GETCOLUMNW"; | |
4273 | case 0x1000 + 26: return "LVM_SETCOLUMNA"; | |
4274 | case 0x1000 + 96: return "LVM_SETCOLUMNW"; | |
4275 | case 0x1000 + 27: return "LVM_INSERTCOLUMNA"; | |
4276 | case 0x1000 + 97: return "LVM_INSERTCOLUMNW"; | |
4277 | case 0x1000 + 28: return "LVM_DELETECOLUMN"; | |
4278 | case 0x1000 + 29: return "LVM_GETCOLUMNWIDTH"; | |
4279 | case 0x1000 + 30: return "LVM_SETCOLUMNWIDTH"; | |
4280 | case 0x1000 + 31: return "LVM_GETHEADER"; | |
4281 | case 0x1000 + 33: return "LVM_CREATEDRAGIMAGE"; | |
9b64e798 | 4282 | case 0x1000 + 34: return "LVM_GETVIEWRECT"; |
42e69d6b VZ |
4283 | case 0x1000 + 35: return "LVM_GETTEXTCOLOR"; |
4284 | case 0x1000 + 36: return "LVM_SETTEXTCOLOR"; | |
4285 | case 0x1000 + 37: return "LVM_GETTEXTBKCOLOR"; | |
4286 | case 0x1000 + 38: return "LVM_SETTEXTBKCOLOR"; | |
4287 | case 0x1000 + 39: return "LVM_GETTOPINDEX"; | |
4288 | case 0x1000 + 40: return "LVM_GETCOUNTPERPAGE"; | |
4289 | case 0x1000 + 41: return "LVM_GETORIGIN"; | |
4290 | case 0x1000 + 42: return "LVM_UPDATE"; | |
4291 | case 0x1000 + 43: return "LVM_SETITEMSTATE"; | |
4292 | case 0x1000 + 44: return "LVM_GETITEMSTATE"; | |
4293 | case 0x1000 + 45: return "LVM_GETITEMTEXTA"; | |
4294 | case 0x1000 + 115: return "LVM_GETITEMTEXTW"; | |
4295 | case 0x1000 + 46: return "LVM_SETITEMTEXTA"; | |
4296 | case 0x1000 + 116: return "LVM_SETITEMTEXTW"; | |
9b64e798 | 4297 | case 0x1000 + 47: return "LVM_SETITEMCOUNT"; |
42e69d6b VZ |
4298 | case 0x1000 + 48: return "LVM_SORTITEMS"; |
4299 | case 0x1000 + 49: return "LVM_SETITEMPOSITION32"; | |
9b64e798 | 4300 | case 0x1000 + 50: return "LVM_GETSELECTEDCOUNT"; |
42e69d6b VZ |
4301 | case 0x1000 + 51: return "LVM_GETITEMSPACING"; |
4302 | case 0x1000 + 52: return "LVM_GETISEARCHSTRINGA"; | |
4303 | case 0x1000 + 117: return "LVM_GETISEARCHSTRINGW"; | |
4304 | case 0x1000 + 53: return "LVM_SETICONSPACING"; | |
4305 | case 0x1000 + 54: return "LVM_SETEXTENDEDLISTVIEWSTYLE"; | |
4306 | case 0x1000 + 55: return "LVM_GETEXTENDEDLISTVIEWSTYLE"; | |
9b64e798 VZ |
4307 | case 0x1000 + 56: return "LVM_GETSUBITEMRECT"; |
4308 | case 0x1000 + 57: return "LVM_SUBITEMHITTEST"; | |
42e69d6b VZ |
4309 | case 0x1000 + 58: return "LVM_SETCOLUMNORDERARRAY"; |
4310 | case 0x1000 + 59: return "LVM_GETCOLUMNORDERARRAY"; | |
4311 | case 0x1000 + 60: return "LVM_SETHOTITEM"; | |
4312 | case 0x1000 + 61: return "LVM_GETHOTITEM"; | |
4313 | case 0x1000 + 62: return "LVM_SETHOTCURSOR"; | |
4314 | case 0x1000 + 63: return "LVM_GETHOTCURSOR"; | |
9b64e798 | 4315 | case 0x1000 + 64: return "LVM_APPROXIMATEVIEWRECT"; |
42e69d6b | 4316 | case 0x1000 + 65: return "LVM_SETWORKAREA"; |
c085e333 | 4317 | |
2d0a075d | 4318 | // tree view |
42e69d6b VZ |
4319 | case 0x1100 + 0: return "TVM_INSERTITEMA"; |
4320 | case 0x1100 + 50: return "TVM_INSERTITEMW"; | |
4321 | case 0x1100 + 1: return "TVM_DELETEITEM"; | |
4322 | case 0x1100 + 2: return "TVM_EXPAND"; | |
9b64e798 VZ |
4323 | case 0x1100 + 4: return "TVM_GETITEMRECT"; |
4324 | case 0x1100 + 5: return "TVM_GETCOUNT"; | |
4325 | case 0x1100 + 6: return "TVM_GETINDENT"; | |
4326 | case 0x1100 + 7: return "TVM_SETINDENT"; | |
4327 | case 0x1100 + 8: return "TVM_GETIMAGELIST"; | |
4328 | case 0x1100 + 9: return "TVM_SETIMAGELIST"; | |
42e69d6b VZ |
4329 | case 0x1100 + 10: return "TVM_GETNEXTITEM"; |
4330 | case 0x1100 + 11: return "TVM_SELECTITEM"; | |
4331 | case 0x1100 + 12: return "TVM_GETITEMA"; | |
4332 | case 0x1100 + 62: return "TVM_GETITEMW"; | |
4333 | case 0x1100 + 13: return "TVM_SETITEMA"; | |
4334 | case 0x1100 + 63: return "TVM_SETITEMW"; | |
4335 | case 0x1100 + 14: return "TVM_EDITLABELA"; | |
4336 | case 0x1100 + 65: return "TVM_EDITLABELW"; | |
4337 | case 0x1100 + 15: return "TVM_GETEDITCONTROL"; | |
9b64e798 VZ |
4338 | case 0x1100 + 16: return "TVM_GETVISIBLECOUNT"; |
4339 | case 0x1100 + 17: return "TVM_HITTEST"; | |
42e69d6b VZ |
4340 | case 0x1100 + 18: return "TVM_CREATEDRAGIMAGE"; |
4341 | case 0x1100 + 19: return "TVM_SORTCHILDREN"; | |
4342 | case 0x1100 + 20: return "TVM_ENSUREVISIBLE"; | |
4343 | case 0x1100 + 21: return "TVM_SORTCHILDRENCB"; | |
4344 | case 0x1100 + 22: return "TVM_ENDEDITLABELNOW"; | |
4345 | case 0x1100 + 23: return "TVM_GETISEARCHSTRINGA"; | |
4346 | case 0x1100 + 64: return "TVM_GETISEARCHSTRINGW"; | |
4347 | case 0x1100 + 24: return "TVM_SETTOOLTIPS"; | |
4348 | case 0x1100 + 25: return "TVM_GETTOOLTIPS"; | |
c085e333 | 4349 | |
2d0a075d | 4350 | // header |
9b64e798 | 4351 | case 0x1200 + 0: return "HDM_GETITEMCOUNT"; |
42e69d6b VZ |
4352 | case 0x1200 + 1: return "HDM_INSERTITEMA"; |
4353 | case 0x1200 + 10: return "HDM_INSERTITEMW"; | |
4354 | case 0x1200 + 2: return "HDM_DELETEITEM"; | |
4355 | case 0x1200 + 3: return "HDM_GETITEMA"; | |
4356 | case 0x1200 + 11: return "HDM_GETITEMW"; | |
4357 | case 0x1200 + 4: return "HDM_SETITEMA"; | |
4358 | case 0x1200 + 12: return "HDM_SETITEMW"; | |
9b64e798 VZ |
4359 | case 0x1200 + 5: return "HDM_LAYOUT"; |
4360 | case 0x1200 + 6: return "HDM_HITTEST"; | |
4361 | case 0x1200 + 7: return "HDM_GETITEMRECT"; | |
4362 | case 0x1200 + 8: return "HDM_SETIMAGELIST"; | |
4363 | case 0x1200 + 9: return "HDM_GETIMAGELIST"; | |
42e69d6b VZ |
4364 | case 0x1200 + 15: return "HDM_ORDERTOINDEX"; |
4365 | case 0x1200 + 16: return "HDM_CREATEDRAGIMAGE"; | |
4366 | case 0x1200 + 17: return "HDM_GETORDERARRAY"; | |
4367 | case 0x1200 + 18: return "HDM_SETORDERARRAY"; | |
4368 | case 0x1200 + 19: return "HDM_SETHOTDIVIDER"; | |
c085e333 | 4369 | |
2d0a075d | 4370 | // tab control |
9b64e798 VZ |
4371 | case 0x1300 + 2: return "TCM_GETIMAGELIST"; |
4372 | case 0x1300 + 3: return "TCM_SETIMAGELIST"; | |
4373 | case 0x1300 + 4: return "TCM_GETITEMCOUNT"; | |
42e69d6b VZ |
4374 | case 0x1300 + 5: return "TCM_GETITEMA"; |
4375 | case 0x1300 + 60: return "TCM_GETITEMW"; | |
4376 | case 0x1300 + 6: return "TCM_SETITEMA"; | |
4377 | case 0x1300 + 61: return "TCM_SETITEMW"; | |
4378 | case 0x1300 + 7: return "TCM_INSERTITEMA"; | |
4379 | case 0x1300 + 62: return "TCM_INSERTITEMW"; | |
4380 | case 0x1300 + 8: return "TCM_DELETEITEM"; | |
4381 | case 0x1300 + 9: return "TCM_DELETEALLITEMS"; | |
9b64e798 | 4382 | case 0x1300 + 10: return "TCM_GETITEMRECT"; |
42e69d6b VZ |
4383 | case 0x1300 + 11: return "TCM_GETCURSEL"; |
4384 | case 0x1300 + 12: return "TCM_SETCURSEL"; | |
9b64e798 | 4385 | case 0x1300 + 13: return "TCM_HITTEST"; |
42e69d6b | 4386 | case 0x1300 + 14: return "TCM_SETITEMEXTRA"; |
9b64e798 | 4387 | case 0x1300 + 40: return "TCM_ADJUSTRECT"; |
42e69d6b VZ |
4388 | case 0x1300 + 41: return "TCM_SETITEMSIZE"; |
4389 | case 0x1300 + 42: return "TCM_REMOVEIMAGE"; | |
4390 | case 0x1300 + 43: return "TCM_SETPADDING"; | |
9b64e798 | 4391 | case 0x1300 + 44: return "TCM_GETROWCOUNT"; |
42e69d6b VZ |
4392 | case 0x1300 + 45: return "TCM_GETTOOLTIPS"; |
4393 | case 0x1300 + 46: return "TCM_SETTOOLTIPS"; | |
4394 | case 0x1300 + 47: return "TCM_GETCURFOCUS"; | |
4395 | case 0x1300 + 48: return "TCM_SETCURFOCUS"; | |
4396 | case 0x1300 + 49: return "TCM_SETMINTABWIDTH"; | |
4397 | case 0x1300 + 50: return "TCM_DESELECTALL"; | |
c085e333 | 4398 | |
2d0a075d | 4399 | // toolbar |
42e69d6b VZ |
4400 | case WM_USER+1: return "TB_ENABLEBUTTON"; |
4401 | case WM_USER+2: return "TB_CHECKBUTTON"; | |
4402 | case WM_USER+3: return "TB_PRESSBUTTON"; | |
4403 | case WM_USER+4: return "TB_HIDEBUTTON"; | |
4404 | case WM_USER+5: return "TB_INDETERMINATE"; | |
4405 | case WM_USER+9: return "TB_ISBUTTONENABLED"; | |
4406 | case WM_USER+10: return "TB_ISBUTTONCHECKED"; | |
4407 | case WM_USER+11: return "TB_ISBUTTONPRESSED"; | |
4408 | case WM_USER+12: return "TB_ISBUTTONHIDDEN"; | |
4409 | case WM_USER+13: return "TB_ISBUTTONINDETERMINATE"; | |
4410 | case WM_USER+17: return "TB_SETSTATE"; | |
4411 | case WM_USER+18: return "TB_GETSTATE"; | |
4412 | case WM_USER+19: return "TB_ADDBITMAP"; | |
4413 | case WM_USER+20: return "TB_ADDBUTTONS"; | |
4414 | case WM_USER+21: return "TB_INSERTBUTTON"; | |
4415 | case WM_USER+22: return "TB_DELETEBUTTON"; | |
4416 | case WM_USER+23: return "TB_GETBUTTON"; | |
9b64e798 | 4417 | case WM_USER+24: return "TB_BUTTONCOUNT"; |
42e69d6b VZ |
4418 | case WM_USER+25: return "TB_COMMANDTOINDEX"; |
4419 | case WM_USER+26: return "TB_SAVERESTOREA"; | |
4420 | case WM_USER+76: return "TB_SAVERESTOREW"; | |
4421 | case WM_USER+27: return "TB_CUSTOMIZE"; | |
4422 | case WM_USER+28: return "TB_ADDSTRINGA"; | |
4423 | case WM_USER+77: return "TB_ADDSTRINGW"; | |
9b64e798 | 4424 | case WM_USER+29: return "TB_GETITEMRECT"; |
42e69d6b VZ |
4425 | case WM_USER+30: return "TB_BUTTONSTRUCTSIZE"; |
4426 | case WM_USER+31: return "TB_SETBUTTONSIZE"; | |
4427 | case WM_USER+32: return "TB_SETBITMAPSIZE"; | |
4428 | case WM_USER+33: return "TB_AUTOSIZE"; | |
4429 | case WM_USER+35: return "TB_GETTOOLTIPS"; | |
4430 | case WM_USER+36: return "TB_SETTOOLTIPS"; | |
9b64e798 | 4431 | case WM_USER+37: return "TB_SETPARENT"; |
42e69d6b VZ |
4432 | case WM_USER+39: return "TB_SETROWS"; |
4433 | case WM_USER+40: return "TB_GETROWS"; | |
4434 | case WM_USER+42: return "TB_SETCMDID"; | |
4435 | case WM_USER+43: return "TB_CHANGEBITMAP"; | |
4436 | case WM_USER+44: return "TB_GETBITMAP"; | |
4437 | case WM_USER+45: return "TB_GETBUTTONTEXTA"; | |
4438 | case WM_USER+75: return "TB_GETBUTTONTEXTW"; | |
4439 | case WM_USER+46: return "TB_REPLACEBITMAP"; | |
9b64e798 VZ |
4440 | case WM_USER+47: return "TB_SETINDENT"; |
4441 | case WM_USER+48: return "TB_SETIMAGELIST"; | |
4442 | case WM_USER+49: return "TB_GETIMAGELIST"; | |
42e69d6b | 4443 | case WM_USER+50: return "TB_LOADIMAGES"; |
9b64e798 VZ |
4444 | case WM_USER+51: return "TB_GETRECT"; |
4445 | case WM_USER+52: return "TB_SETHOTIMAGELIST"; | |
4446 | case WM_USER+53: return "TB_GETHOTIMAGELIST"; | |
4447 | case WM_USER+54: return "TB_SETDISABLEDIMAGELIST"; | |
4448 | case WM_USER+55: return "TB_GETDISABLEDIMAGELIST"; | |
42e69d6b VZ |
4449 | case WM_USER+56: return "TB_SETSTYLE"; |
4450 | case WM_USER+57: return "TB_GETSTYLE"; | |
4451 | case WM_USER+58: return "TB_GETBUTTONSIZE"; | |
4452 | case WM_USER+59: return "TB_SETBUTTONWIDTH"; | |
4453 | case WM_USER+60: return "TB_SETMAXTEXTROWS"; | |
4454 | case WM_USER+61: return "TB_GETTEXTROWS"; | |
4455 | case WM_USER+41: return "TB_GETBITMAPFLAGS"; | |
c085e333 | 4456 | |
a02eb1d2 | 4457 | #endif //WIN32 |
c085e333 | 4458 | |
42e69d6b VZ |
4459 | default: |
4460 | static char s_szBuf[128]; | |
4461 | sprintf(s_szBuf, "<unknown message = %d>", message); | |
4462 | return s_szBuf; | |
4463 | } | |
47cbd6da | 4464 | } |
ea57084d | 4465 | #endif //__WXDEBUG__ |
4aff28fc VZ |
4466 | |
4467 | static void TranslateKbdEventToMouse(wxWindow *win, int *x, int *y, WPARAM *flags) | |
4468 | { | |
4469 | // construct the key mask | |
4470 | WPARAM& fwKeys = *flags; | |
4471 | ||
4472 | fwKeys = MK_RBUTTON; | |
3f7bc32b | 4473 | if ( wxIsCtrlDown() ) |
4aff28fc | 4474 | fwKeys |= MK_CONTROL; |
3f7bc32b | 4475 | if ( wxIsShiftDown() ) |
4aff28fc VZ |
4476 | fwKeys |= MK_SHIFT; |
4477 | ||
4478 | // simulate right mouse button click | |
4479 | DWORD dwPos = ::GetMessagePos(); | |
4480 | *x = GET_X_LPARAM(dwPos); | |
4481 | *y = GET_Y_LPARAM(dwPos); | |
4482 | ||
4483 | win->ScreenToClient(x, y); | |
4484 | } | |
f6bcfd97 BP |
4485 | |
4486 | static TEXTMETRIC wxGetTextMetrics(const wxWindow *win) | |
4487 | { | |
4488 | // prepare the DC | |
4489 | TEXTMETRIC tm; | |
4490 | HWND hwnd = GetHwndOf(win); | |
4491 | HDC hdc = ::GetDC(hwnd); | |
4492 | ||
4493 | #if !wxDIALOG_UNIT_COMPATIBILITY | |
4494 | // and select the current font into it | |
4495 | HFONT hfont = GetHfontOf(win->GetFont()); | |
4496 | if ( hfont ) | |
4497 | { | |
4498 | hfont = (HFONT)::SelectObject(hdc, hfont); | |
4499 | } | |
4500 | #endif | |
4501 | ||
4502 | // finally retrieve the text metrics from it | |
4503 | GetTextMetrics(hdc, &tm); | |
4504 | ||
4505 | #if !wxDIALOG_UNIT_COMPATIBILITY | |
4506 | // and clean up | |
4507 | if ( hfont ) | |
4508 | { | |
4509 | (void)::SelectObject(hdc, hfont); | |
4510 | } | |
4511 | #endif | |
4512 | ||
4513 | ::ReleaseDC(hwnd, hdc); | |
4514 | ||
4515 | return tm; | |
4516 | } | |
3723b7b1 JS |
4517 | |
4518 | // Find the wxWindow at the current mouse position, returning the mouse | |
4519 | // position. | |
33ac7e6f | 4520 | wxWindow* wxFindWindowAtPointer(wxPoint& WXUNUSED(pt)) |
3723b7b1 | 4521 | { |
57591e0e JS |
4522 | return wxFindWindowAtPoint(wxGetMousePosition()); |
4523 | } | |
4524 | ||
4525 | wxWindow* wxFindWindowAtPoint(const wxPoint& pt) | |
4526 | { | |
4527 | POINT pt2; | |
4528 | pt2.x = pt.x; | |
4529 | pt2.y = pt.y; | |
4530 | HWND hWndHit = ::WindowFromPoint(pt2); | |
3723b7b1 JS |
4531 | |
4532 | wxWindow* win = wxFindWinFromHandle((WXHWND) hWndHit) ; | |
4533 | HWND hWnd = hWndHit; | |
4534 | ||
4535 | // Try to find a window with a wxWindow associated with it | |
4536 | while (!win && (hWnd != 0)) | |
4537 | { | |
4538 | hWnd = ::GetParent(hWnd); | |
4539 | win = wxFindWinFromHandle((WXHWND) hWnd) ; | |
4540 | } | |
4541 | return win; | |
4542 | } | |
4543 | ||
4544 | // Get the current mouse position. | |
4545 | wxPoint wxGetMousePosition() | |
4546 | { | |
1772ead0 JS |
4547 | POINT pt; |
4548 | GetCursorPos( & pt ); | |
4549 | return wxPoint(pt.x, pt.y); | |
3723b7b1 JS |
4550 | } |
4551 |