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