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