]> git.saurik.com Git - wxWidgets.git/blame - src/os2/window.cpp
wxBitmap::LoadFile and SaveFile now uses wxImage's methods in case there is no wxBitm...
[wxWidgets.git] / src / os2 / window.cpp
CommitLineData
0e320a79
DW
1/////////////////////////////////////////////////////////////////////////////
2// Name: windows.cpp
3// Purpose: wxWindow
cdf1e714 4// Author: David Webster
0e320a79 5// Modified by:
cdf1e714 6// Created: 10/12/99
0e320a79 7// RCS-ID: $Id$
cdf1e714
DW
8// Copyright: (c) David Webster
9// Licence: wxWindows licence
0e320a79
DW
10/////////////////////////////////////////////////////////////////////////////
11
cdf1e714
DW
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
0e320a79 14
849949b1
DW
15#ifndef WX_PRECOMP
16 #define INCL_DOS
17 #define INCL_PM
18 #include <os2.h>
19 #include "wx/window.h"
20 #include "wx/accel.h"
21 #include "wx/setup.h"
22 #include "wx/menu.h"
23 #include "wx/dc.h"
24 #include "wx/dcclient.h"
25 #include "wx/utils.h"
26 #include "wx/app.h"
27 #include "wx/panel.h"
28 #include "wx/layout.h"
29 #include "wx/dialog.h"
30 #include "wx/frame.h"
31 #include "wx/listbox.h"
32 #include "wx/button.h"
33 #include "wx/msgdlg.h"
34
35 #include <stdio.h>
36#endif
37
38#if wxUSE_OWNER_DRAWN
39 #include "wx/ownerdrw.h"
40#endif
41
42#if wxUSE_DRAG_AND_DROP
43 #include "wx/dnd.h"
44#endif
0e320a79
DW
45
46#include "wx/menuitem.h"
47#include "wx/log.h"
48
cdf1e714
DW
49#include "wx/os2/private.h"
50
849949b1
DW
51#if wxUSE_TOOLTIPS
52 #include "wx/tooltip.h"
0e320a79
DW
53#endif
54
849949b1
DW
55#if wxUSE_CARET
56 #include "wx/caret.h"
57#endif // wxUSE_CARET
58
59#include "wx/intl.h"
60#include "wx/log.h"
61
62
63#include "wx/textctrl.h"
64
0e320a79
DW
65#include <string.h>
66
849949b1
DW
67// place compiler, OS specific includes here
68
69
70// standard macros -- these are for OS/2 PM, but most GUI's have something similar
71#ifndef GET_X_LPARAM
72// SHORT1FROMMP -- LOWORD
73 #define GET_X_LPARAM(mp) ((unsigned short)(unsigned long)(mp))
74// SHORT2FROMMP -- HIWORD
75 #define GET_Y_LPARAM(mp) ((unsigned short)(unsigned long)(mp >> 16))
76#endif // GET_X_LPARAM
77
78// ---------------------------------------------------------------------------
79// global variables
80// ---------------------------------------------------------------------------
81
82// the last Windows message we got (MT-UNSAFE)
83extern WXMSGID s_currentMsg;
84extern wxList WXDLLEXPORT wxPendingDelete;
85extern wxChar wxCanvasClassName[];
86
87wxMenu *wxCurrentPopupMenu = NULL;
88wxList *wxWinHandleList = NULL;
89
90// ---------------------------------------------------------------------------
91// private functions
92// ---------------------------------------------------------------------------
93// the window proc for all our windows; most gui's have something similar
94MRESULT wxWndProc( HWND hWnd
95 ,ULONG message
96 ,MPARAM mp1
97 ,MPARAM mp2
98 );
11e59d47
DW
99
100#ifdef __WXDEBUG__
101 const char *wxGetMessageName(int message);
102#endif //__WXDEBUG__
103
849949b1
DW
104void wxRemoveHandleAssociation(wxWindow *win);
105void wxAssociateWinWithHandle(HWND hWnd, wxWindow *win);
106wxWindow *wxFindWinFromHandle(WXHWND hWnd);
107
108// ---------------------------------------------------------------------------
109// event tables
110// ---------------------------------------------------------------------------
0e320a79
DW
111
112#if !USE_SHARED_LIBRARY
849949b1 113 IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase)
0e320a79
DW
114#endif
115
849949b1
DW
116BEGIN_EVENT_TABLE(wxWindow, wxWindowBase)
117 EVT_ERASE_BACKGROUND(wxWindow::OnEraseBackground)
118 EVT_SYS_COLOUR_CHANGED(wxWindow::OnSysColourChanged)
119 EVT_INIT_DIALOG(wxWindow::OnInitDialog)
120 EVT_IDLE(wxWindow::OnIdle)
121END_EVENT_TABLE()
0e320a79 122
849949b1
DW
123// ===========================================================================
124// implementation
125// ===========================================================================
0e320a79 126
776d87d5
DW
127// Find an item given the PM Window id
128wxWindow* wxWindow::FindItem(
129 long ulId
130) const
cdf1e714 131{
776d87d5
DW
132 wxWindowList::Node* pCurrent = GetChildren().GetFirst();
133
134 while (pCurrent)
cdf1e714 135 {
776d87d5
DW
136 wxWindow* pChildWin = pCurrent->GetData();
137 wxWindow* pWnd = pChildWin->FindItem(ulId);
cdf1e714 138
776d87d5
DW
139 if (pWnd)
140 return pWnd;
cdf1e714 141
776d87d5 142 if (pChildWin->IsKindOf(CLASSINFO(wxControl)))
cdf1e714 143 {
776d87d5
DW
144 wxControl* pItem = (wxControl *)pChildWin;
145
146 if (pItem->GetId() == ulId)
147 return(pItem);
cdf1e714
DW
148 else
149 {
150 // In case it's a 'virtual' control (e.g. radiobox)
776d87d5
DW
151 if (pItem->GetSubcontrols().Member((wxObject *)ulId))
152 return(pItem);
cdf1e714
DW
153 }
154 }
776d87d5 155 pCurrent = pCurrent->GetNext();
cdf1e714 156 }
776d87d5 157 return(NULL);
cdf1e714
DW
158}
159
776d87d5
DW
160// Find an item given the PM Window handle
161wxWindow* wxWindow::FindItemByHWND(
162 WXHWND hWnd
163, bool bControlOnly
164) const
cdf1e714 165{
776d87d5
DW
166 wxWindowList::Node* pCurrent = GetChildren().GetFirst();
167
168 while (pCurrent)
cdf1e714 169 {
776d87d5 170 wxWindow* pParent = pCurrent->GetData();
cdf1e714
DW
171
172 // Do a recursive search.
776d87d5
DW
173 wxWindow* pWnd = pParent->FindItemByHWND(hWnd);
174
175 if (pWnd)
176 return(pWnd);
cdf1e714 177
776d87d5 178 if (!bControlOnly || pParent->IsKindOf(CLASSINFO(wxControl)))
cdf1e714 179 {
776d87d5
DW
180 wxWindow* pItem = pCurrent->GetData();
181
182 if (pItem->GetHWND() == hWnd)
183 return(pItem);
cdf1e714
DW
184 else
185 {
776d87d5
DW
186 if (pItem->ContainsHWND(hWnd))
187 return(pItem);
cdf1e714
DW
188 }
189 }
776d87d5 190 pCurrent = pCurrent->GetNext();
cdf1e714 191 }
776d87d5 192 return(NULL);
cdf1e714
DW
193}
194
195// Default command handler
776d87d5
DW
196bool wxWindow::OS2Command(
197 WXUINT WXUNUSED(uParam)
198, WXWORD WXUNUSED(uId)
199)
cdf1e714 200{
776d87d5 201 return(FALSE);
cdf1e714
DW
202}
203
204// ----------------------------------------------------------------------------
205// constructors and such
206// ----------------------------------------------------------------------------
207
849949b1 208void wxWindow::Init()
0e320a79 209{
849949b1
DW
210 // generic
211 InitBase();
0e320a79 212
849949b1 213 // PM specific
776d87d5
DW
214 m_bDoubleClickAllowed = 0;
215 m_bWinCaptured = FALSE;
cdf1e714 216
849949b1 217 m_isBeingDeleted = FALSE;
776d87d5
DW
218 m_fnOldWndProc = 0;
219 m_bUseCtl3D = FALSE;
220 m_bMouseInWindow = FALSE;
0e320a79 221
849949b1
DW
222 // wxWnd
223 m_hMenu = 0;
0e320a79 224
849949b1 225 m_hWnd = 0;
0e320a79 226
849949b1
DW
227 // pass WM_GETDLGCODE to DefWindowProc()
228 m_lDlgCode = 0;
0e320a79 229
776d87d5
DW
230 m_nXThumbSize = 0;
231 m_nYThumbSize = 0;
232 m_bBackgroundTransparent = FALSE;
0e320a79 233
849949b1
DW
234 // as all windows are created with WS_VISIBLE style...
235 m_isShown = TRUE;
0e320a79 236
cdf1e714 237#if wxUSE_MOUSEEVENT_HACK
776d87d5
DW
238 m_lLastMouseX =
239 m_lLastMouseY = -1;
240 m_nLastMouseEvent = -1;
cdf1e714 241#endif // wxUSE_MOUSEEVENT_HACK
0e320a79
DW
242}
243
849949b1
DW
244// Destructor
245wxWindow::~wxWindow()
0e320a79 246{
849949b1 247 m_isBeingDeleted = TRUE;
0e320a79 248
cdf1e714 249 OS2DetachWindowMenu();
849949b1
DW
250 // delete handlers?
251 if (m_parent)
252 m_parent->RemoveChild(this);
253 DestroyChildren();
254 if (m_hWnd)
255 {
86de7616 256 if(!WinDestroyWindow(GetHWND()))
223d09f6 257 wxLogLastError(wxT("DestroyWindow"));
849949b1
DW
258 // remove hWnd <-> wxWindow association
259 wxRemoveHandleAssociation(this);
260 }
0e320a79
DW
261}
262
776d87d5
DW
263bool wxWindow::Create(
264 wxWindow* pParent
265, wxWindowID vId
266, const wxPoint& rPos
267, const wxSize& rSize
268, long lStyle
269, const wxString& rName
270)
271{
272 wxCHECK_MSG(pParent, FALSE, wxT("can't create wxWindow without parent"));
273
274 if ( !CreateBase( pParent
275 ,vId
276 ,rPos
277 ,rSize
278 ,lStyle
279 ,wxDefaultValidator
280 ,rName
281 ))
282 return(FALSE);
283
284 pParent->AddChild(this);
285
286 bool bWant3D;
287 WXDWORD dwExStyle = Determine3DEffects(WS_EX_CLIENTEDGE, &bWant3D);
288 DWORD ulFlags = 0L;
289
290 OS2Create( m_windowId
291 ,pParent
292 ,wxCanvasClassName
293 ,this
294 ,NULL
295 ,rPos.x
296 ,rPos.y
297 ,WidthDefault(rSize.x)
298 ,HeightDefault(rSize.y)
299 ,ulFlags
300 ,NULL
301 ,dwExStyle
302 );
303 return(TRUE);
0e320a79
DW
304}
305
cdf1e714
DW
306// ---------------------------------------------------------------------------
307// basic operations
308// ---------------------------------------------------------------------------
0e320a79 309
cdf1e714 310void wxWindow::SetFocus()
0e320a79 311{
bbdc9a87
DW
312 HWND hWnd = GetHwnd();
313
314 if (hWnd)
315 ::WinSetFocus(HWND_DESKTOP, hWnd);
0e320a79
DW
316}
317
11e59d47 318wxWindow* wxWindowBase::FindFocus()
0e320a79 319{
bbdc9a87
DW
320 HWND hWnd = ::WinQueryFocus(HWND_DESKTOP);
321
322 if (hWnd)
323 {
324 return wxFindWinFromHandle((WXHWND)hWnd);
325 }
326 return NULL;
0e320a79
DW
327}
328
bbdc9a87
DW
329bool wxWindow::Enable(
330 bool bEnable
331)
0e320a79 332{
bbdc9a87
DW
333 if (!wxWindowBase::Enable(bEnable))
334 return(FALSE);
335
336 HWND hWnd = GetHwnd();
337
338 if ( hWnd )
339 ::WinEnableWindow(hWnd, (BOOL)bEnable);
340
341 wxWindowList::Node* pNode = GetChildren().GetFirst();
342
343 while (pNode)
344 {
345 wxWindow* pChild = pNode->GetData();
346
347 pChild->Enable(bEnable);
348 pNode = pNode->GetNext();
349 }
cdf1e714 350 return(TRUE);
0e320a79
DW
351}
352
bbdc9a87
DW
353bool wxWindow::Show(
354 bool bShow
355)
0e320a79 356{
bbdc9a87
DW
357 if (!wxWindowBase::Show(bShow))
358 return(FALSE);
359
360 HWND hWnd = GetHwnd();
361
362 ::WinShowWindow(hWnd, bShow);
363
364 if (bShow)
365 {
366 ::WinSetWindowPos(hWnd, HWND_TOP, 0, 0, 0, 0, SWP_ACTIVATE);
367 }
849949b1 368 return(TRUE);
0e320a79
DW
369}
370
cdf1e714 371void wxWindow::Raise()
0e320a79 372{
bbdc9a87 373 ::WinSetWindowPos(GetHwnd(), HWND_BOTTOM, 0, 0, 0, 0, SWP_ACTIVATE);
0e320a79
DW
374}
375
cdf1e714 376void wxWindow::Lower()
0e320a79 377{
bbdc9a87 378 ::WinSetWindowPos(GetHwnd(), HWND_BOTTOM, 0, 0, 0, 0, SWP_DEACTIVATE);
0e320a79
DW
379}
380
bbdc9a87
DW
381void wxWindow::SetTitle(
382 const wxString& rTitle
383)
0e320a79 384{
bbdc9a87 385 ::WinSetWindowText(GetHwnd(), title.c_str());
0e320a79
DW
386}
387
cdf1e714 388wxString wxWindow::GetTitle() const
0e320a79 389{
cdf1e714 390 return wxGetWindowText(GetHWND());
0e320a79
DW
391}
392
cdf1e714 393void wxWindow::CaptureMouse()
0e320a79 394{
849949b1 395 // TODO:
0e320a79
DW
396}
397
cdf1e714 398void wxWindow::ReleaseMouse()
0e320a79 399{
849949b1 400 // TODO:
0e320a79
DW
401}
402
cdf1e714 403bool wxWindow::SetFont(const wxFont& f)
0e320a79 404{
849949b1 405 // TODO:
cdf1e714 406 return(TRUE);
0e320a79
DW
407}
408
cdf1e714 409bool wxWindow::SetCursor(const wxCursor& cursor) // check if base implementation is OK
0e320a79 410{
849949b1 411 // TODO:
cdf1e714 412 return(TRUE);
0e320a79
DW
413}
414
cdf1e714 415void wxWindow::WarpPointer(int x_pos, int y_pos)
0e320a79 416{
849949b1 417 // TODO:
0e320a79
DW
418}
419
cdf1e714
DW
420#if WXWIN_COMPATIBILITY
421void wxWindow::OS2DeviceToLogical (float *x, float *y) const
0e320a79 422{
0e320a79 423}
cdf1e714 424#endif // WXWIN_COMPATIBILITY
0e320a79 425
cdf1e714
DW
426// ---------------------------------------------------------------------------
427// scrolling stuff
428// ---------------------------------------------------------------------------
0e320a79 429
cdf1e714
DW
430#if WXWIN_COMPATIBILITY
431void wxWindow::SetScrollRange(int orient, int range, bool refresh)
0e320a79 432{
cdf1e714 433 // TODO:
0e320a79
DW
434}
435
cdf1e714 436void wxWindow::SetScrollPage(int orient, int page, bool refresh)
0e320a79 437{
cdf1e714 438 // TODO:
0e320a79
DW
439}
440
cdf1e714 441int wxWindow::OldGetScrollRange(int orient) const
0e320a79 442{
cdf1e714
DW
443 // TODO:
444 return 0;
0e320a79
DW
445}
446
cdf1e714 447int wxWindow::GetScrollPage(int orient) const
0e320a79 448{
849949b1 449 // TODO:
cdf1e714 450 return(1);
0e320a79 451}
11e59d47 452#endif // WXWIN_COMPATIBILITY
0e320a79 453
cdf1e714 454int wxWindow::GetScrollPos(int orient) const
0e320a79 455{
849949b1 456 // TODO:
cdf1e714 457 return(1);
0e320a79
DW
458}
459
cdf1e714 460int wxWindow::GetScrollRange(int orient) const
0e320a79 461{
849949b1 462 // TODO:
cdf1e714 463 return(1);
0e320a79
DW
464}
465
cdf1e714 466int wxWindow::GetScrollThumb(int orient) const
0e320a79 467{
849949b1 468 // TODO:
cdf1e714 469 return(1);
0e320a79
DW
470}
471
cdf1e714
DW
472void wxWindow::SetScrollPos( int orient
473 ,int pos
474 ,bool refresh
475 )
0e320a79 476{
849949b1 477 // TODO:
0e320a79
DW
478}
479
cdf1e714
DW
480void wxWindow::SetScrollbar( int orient
481 ,int pos
482 ,int thumbVisible
483 ,int range
484 ,bool refresh
485 )
0e320a79 486{
849949b1 487 // TODO:
0e320a79
DW
488}
489
cdf1e714
DW
490void wxWindow::ScrollWindow( int dx
491 ,int dy
492 ,const wxRect* rect
493 )
0e320a79 494{
849949b1 495 // TODO:
0e320a79
DW
496}
497
cdf1e714
DW
498// ---------------------------------------------------------------------------
499// subclassing
500// ---------------------------------------------------------------------------
0e320a79 501
cdf1e714 502void wxWindow::SubclassWin(WXHWND hWnd)
0e320a79 503{
776d87d5 504 wxASSERT_MSG( !m_fnOldWndProc, wxT("subclassing window twice?") );
0e320a79 505
cdf1e714
DW
506 HWND hwnd = (HWND)hWnd;
507/*
508* TODO: implement something like this:
509* wxCHECK_RET( ::IsWindow(hwnd), wxT("invalid HWND in SubclassWin") );
510*
511* wxAssociateWinWithHandle(hwnd, this);
512*
513* m_oldWndProc = (WXFARPROC) GetWindowLong(hwnd, GWL_WNDPROC);
514* SetWindowLong(hwnd, GWL_WNDPROC, (LONG) wxWndProc);
515*/
0e320a79
DW
516}
517
cdf1e714 518void wxWindow::UnsubclassWin()
0e320a79 519{
cdf1e714
DW
520/*
521* TODO:
0e320a79 522
cdf1e714 523 wxRemoveHandleAssociation(this);
0e320a79 524
cdf1e714
DW
525 // Restore old Window proc
526 HWND hwnd = GetHwnd();
527 if ( hwnd )
528 {
529 m_hWnd = 0;
0e320a79 530
cdf1e714 531 wxCHECK_RET( ::IsWindow(hwnd), wxT("invalid HWND in UnsubclassWin") );
0e320a79 532
cdf1e714
DW
533 FARPROC farProc = (FARPROC) GetWindowLong(hwnd, GWL_WNDPROC);
534 if ( (m_oldWndProc != 0) && (farProc != (FARPROC) m_oldWndProc) )
535 {
536 SetWindowLong(hwnd, GWL_WNDPROC, (LONG) m_oldWndProc);
537 m_oldWndProc = 0;
538 }
539 }
540*/
0e320a79
DW
541}
542
cdf1e714
DW
543// Make a Windows extended style from the given wxWindows window style
544WXDWORD wxWindow::MakeExtendedStyle(long style, bool eliminateBorders)
0e320a79 545{
cdf1e714
DW
546 // TODO:
547 WXDWORD exStyle = 0;
548/*
549 if ( style & wxTRANSPARENT_WINDOW )
550 exStyle |= WS_EX_TRANSPARENT;
0e320a79 551
cdf1e714
DW
552 if ( !eliminateBorders )
553 {
554 if ( style & wxSUNKEN_BORDER )
555 exStyle |= WS_EX_CLIENTEDGE;
556 if ( style & wxDOUBLE_BORDER )
557 exStyle |= WS_EX_DLGMODALFRAME;
558 if ( style & wxRAISED_BORDER )
559 exStyle |= WS_EX_WINDOWEDGE;
560 if ( style & wxSTATIC_BORDER )
561 exStyle |= WS_EX_STATICEDGE;
562 }
563*/
564 return exStyle;
565}
566
567// Determines whether native 3D effects or CTL3D should be used,
568// applying a default border style if required, and returning an extended
569// style to pass to CreateWindowEx.
570WXDWORD wxWindow::Determine3DEffects(WXDWORD defaultBorderStyle,
571 bool *want3D) const
572{
573 DWORD exStyle; // remove after implementation doe
574/* TODO: this ought to be fun
575*
576 // If matches certain criteria, then assume no 3D effects
577 // unless specifically requested (dealt with in MakeExtendedStyle)
578 if ( !GetParent() || !IsKindOf(CLASSINFO(wxControl)) || (m_windowStyle & wxNO_BORDER) )
579 {
580 *want3D = FALSE;
581 return MakeExtendedStyle(m_windowStyle, FALSE);
582 }
583
584 // Determine whether we should be using 3D effects or not.
585 bool nativeBorder = FALSE; // by default, we don't want a Win95 effect
586
587 // 1) App can specify global 3D effects
588 *want3D = wxTheApp->GetAuto3D();
589
590 // 2) If the parent is being drawn with user colours, or simple border specified,
591 // switch effects off. TODO: replace wxUSER_COLOURS with wxNO_3D
592 if ( GetParent() && (GetParent()->GetWindowStyleFlag() & wxUSER_COLOURS) || (m_windowStyle & wxSIMPLE_BORDER) )
593 *want3D = FALSE;
594
595 // 3) Control can override this global setting by defining
596 // a border style, e.g. wxSUNKEN_BORDER
597 if ( m_windowStyle & wxSUNKEN_BORDER )
598 *want3D = TRUE;
599
600 // 4) If it's a special border, CTL3D can't cope so we want a native border
601 if ( (m_windowStyle & wxDOUBLE_BORDER) || (m_windowStyle & wxRAISED_BORDER) ||
602 (m_windowStyle & wxSTATIC_BORDER) )
603 {
604 *want3D = TRUE;
605 nativeBorder = TRUE;
606 }
607
608 // 5) If this isn't a Win95 app, and we are using CTL3D, remove border
609 // effects from extended style
610#if wxUSE_CTL3D
611 if ( *want3D )
612 nativeBorder = FALSE;
613#endif
614
615 DWORD exStyle = MakeExtendedStyle(m_windowStyle, !nativeBorder);
616
617 // If we want 3D, but haven't specified a border here,
618 // apply the default border style specified.
619 // TODO what about non-Win95 WIN32? Does it have borders?
620#if defined(__WIN95__) && !wxUSE_CTL3D
621 if ( defaultBorderStyle && (*want3D) && ! ((m_windowStyle & wxDOUBLE_BORDER) || (m_windowStyle & wxRAISED_BORDER ) ||
622 (m_windowStyle & wxSTATIC_BORDER) || (m_windowStyle & wxSIMPLE_BORDER) ))
623 exStyle |= defaultBorderStyle; // WS_EX_CLIENTEDGE;
624#endif
625*/
626 return exStyle;
627}
628
629#if WXWIN_COMPATIBILITY
630void wxWindow::OnCommand(wxWindow& win, wxCommandEvent& event)
631{
632 // TODO:
633}
634
635wxObject* wxWindow::GetChild(int number) const
636{
637 // TODO:
638 return((wxObject*)this);
639}
640
641void wxWindow::OnDefaultAction(wxControl *initiatingItem)
642{
643 // TODO:
644}
645
646#endif // WXWIN_COMPATIBILITY
647
648// Setup background and foreground colours correctly
649void wxWindow::SetupColours()
650{
651 if ( GetParent() )
652 SetBackgroundColour(GetParent()->GetBackgroundColour());
653}
654
655void wxWindow::OnIdle(wxIdleEvent& event)
656{
657 // TODO:
658}
659
660// Set this window to be the child of 'parent'.
661bool wxWindow::Reparent(wxWindow *parent)
662{
663 if ( !wxWindowBase::Reparent(parent) )
664 return FALSE;
665 // TODO:
666 return FALSE;
667}
668
669void wxWindow::Clear()
670{
671 // TODO:
672}
673
674void wxWindow::Refresh(bool eraseBack, const wxRect *rect)
675{
676 // TODO:
677}
678
679// ---------------------------------------------------------------------------
680// drag and drop
681// ---------------------------------------------------------------------------
682
683#if wxUSE_DRAG_AND_DROP
684void wxWindow::SetDropTarget(wxDropTarget *pDropTarget)
685{
686 // TODO:
687}
688#endif
689
690// old style file-manager drag&drop support: we retain the old-style
691// DragAcceptFiles in parallel with SetDropTarget.
692void wxWindow::DragAcceptFiles(bool accept)
693{
694 // TODO:
695}
696
697// ----------------------------------------------------------------------------
698// tooltips
699// ----------------------------------------------------------------------------
700
701#if wxUSE_TOOLTIPS
702
703void wxWindow::DoSetToolTip(wxToolTip *tooltip)
704{
705 wxWindowBase::DoSetToolTip(tooltip);
706
707 if ( m_tooltip )
708 m_tooltip->SetWindow(this);
709}
710
711#endif // wxUSE_TOOLTIPS
712
713// ---------------------------------------------------------------------------
714// moving and resizing
715// ---------------------------------------------------------------------------
716
717// Get total size
718void wxWindow::DoGetSize( int *width, int *height ) const
719{
720 // TODO:
721}
722
723void wxWindow::DoGetPosition( int *x, int *y ) const
724{
725 // TODO:
726}
727
728void wxWindow::DoScreenToClient( int *x, int *y ) const
729{
730 // TODO:
731}
732
733void wxWindow::DoClientToScreen( int *x, int *y ) const
734{
735 // TODO:
736}
737
738// Get size *available for subwindows* i.e. excluding menu bar etc.
739void wxWindow::DoGetClientSize( int *width, int *height ) const
740{
741 // TODO:
742}
743
744void wxWindow::DoMoveWindow(int x, int y, int width, int height)
745{
746 // TODO:
747}
748
749// set the size of the window: if the dimensions are positive, just use them,
750// but if any of them is equal to -1, it means that we must find the value for
751// it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
752// which case -1 is a valid value for x and y)
753//
754// If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
755// the width/height to best suit our contents, otherwise we reuse the current
756// width/height
757void wxWindow::DoSetSize(int x, int y,
758 int width, int height,
759 int sizeFlags)
760{
761 // TODO:
762}
763
764// for a generic window there is no natural best size - just use the current one
765wxSize wxWindow::DoGetBestSize()
766{
767 return GetSize();
768}
769
770void wxWindow::DoSetClientSize(int width, int height)
771{
772 // TODO:
773}
774
775wxPoint wxWindow::GetClientAreaOrigin() const
776{
777 return wxPoint(0, 0);
778}
779
780void wxWindow::AdjustForParentClientOrigin(int& x, int& y, int sizeFlags)
781{
782 // TODO:
783}
784
785// ---------------------------------------------------------------------------
786// text metrics
787// ---------------------------------------------------------------------------
788
789int wxWindow::GetCharHeight() const
790{
791 // TODO:
792 return(1);
793}
794
795int wxWindow::GetCharWidth() const
796{
797 // TODO:
798 return(1);
799}
800
801void wxWindow::GetTextExtent( const wxString& string
802 ,int* x
803 ,int* y
804 ,int* descent
805 ,int* externalLeading
806 ,const wxFont* theFont
807 ) const
808{
809 // TODO:
810}
811
812#if wxUSE_CARET && WXWIN_COMPATIBILITY
813// ---------------------------------------------------------------------------
814// Caret manipulation
815// ---------------------------------------------------------------------------
816
817void wxWindow::CreateCaret(int w, int h)
818{
819 // TODO:
820}
821
822void wxWindow::CreateCaret(const wxBitmap *bitmap)
823{
824 // TODO:
825}
826
827void wxWindow::ShowCaret(bool show)
828{
829 // TODO:
830}
831
832void wxWindow::DestroyCaret()
833{
834 // TODO:
835}
836
837void wxWindow::SetCaretPos(int x, int y)
838{
839 // TODO:
840}
841
842void wxWindow::GetCaretPos(int *x, int *y) const
843{
844 // TODO:
845}
846
847#endif //wxUSE_CARET
848
849// ---------------------------------------------------------------------------
850// popup menu
851// ---------------------------------------------------------------------------
852
853bool wxWindow::DoPopupMenu( wxMenu *menu, int x, int y )
854{
855 // TODO:
856 return(TRUE);
857}
858
859// ===========================================================================
860// pre/post message processing
861// ===========================================================================
862
863MRESULT wxWindow::OS2DefWindowProc(HWND hwnd, WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
864{
865 // TODO:
866 return (MRESULT)0;
867}
868
869bool wxWindow::OS2ProcessMessage(WXMSG* pMsg)
870{
871 // TODO:
872 return FALSE;
873}
874
875bool wxWindow::OS2TranslateMessage(WXMSG* pMsg)
876{
877 return m_acceleratorTable.Translate(this, pMsg);
878}
879
880// ---------------------------------------------------------------------------
881// message params unpackers (different for Win16 and Win32)
882// ---------------------------------------------------------------------------
883
884void wxWindow::UnpackCommand(WXWPARAM wParam, WXLPARAM lParam,
885 WORD *id, WXHWND *hwnd, WORD *cmd)
886{
887 *id = LOWORD(wParam);
888 *hwnd = (WXHWND)lParam;
889 *cmd = HIWORD(wParam);
890}
891
892void wxWindow::UnpackActivate(WXWPARAM wParam, WXLPARAM lParam,
893 WXWORD *state, WXWORD *minimized, WXHWND *hwnd)
894{
895 *state = LOWORD(wParam);
896 *minimized = HIWORD(wParam);
897 *hwnd = (WXHWND)lParam;
898}
899
900void wxWindow::UnpackScroll(WXWPARAM wParam, WXLPARAM lParam,
901 WXWORD *code, WXWORD *pos, WXHWND *hwnd)
902{
903 *code = LOWORD(wParam);
904 *pos = HIWORD(wParam);
905 *hwnd = (WXHWND)lParam;
906}
907
908void wxWindow::UnpackCtlColor(WXWPARAM wParam, WXLPARAM lParam,
909 WXWORD *nCtlColor, WXHDC *hdc, WXHWND *hwnd)
910{
11e59d47 911 *nCtlColor = 0; // TODO: CTLCOLOR_BTN;
cdf1e714
DW
912 *hwnd = (WXHWND)lParam;
913 *hdc = (WXHDC)wParam;
914}
915
916void wxWindow::UnpackMenuSelect(WXWPARAM wParam, WXLPARAM lParam,
917 WXWORD *item, WXWORD *flags, WXHMENU *hmenu)
918{
11e59d47 919 *item = (WXWORD)LOWORD(wParam);
cdf1e714
DW
920 *flags = HIWORD(wParam);
921 *hmenu = (WXHMENU)lParam;
922}
923
924// ---------------------------------------------------------------------------
925// Main wxWindows window proc and the window proc for wxWindow
926// ---------------------------------------------------------------------------
927
928// Hook for new window just as it's being created, when the window isn't yet
929// associated with the handle
930wxWindow *wxWndHook = NULL;
931
932// Main window proc
933MRESULT wxWndProc(HWND hWnd, UINT message, MPARAM wParam, MPARAM lParam)
934{
935 // trace all messages - useful for the debugging
936#ifdef __WXDEBUG__
937 wxLogTrace(wxTraceMessages, wxT("Processing %s(wParam=%8lx, lParam=%8lx)"),
938 wxGetMessageName(message), wParam, lParam);
939#endif // __WXDEBUG__
940
941 wxWindow *wnd = wxFindWinFromHandle((WXHWND) hWnd);
942
943 // when we get the first message for the HWND we just created, we associate
944 // it with wxWindow stored in wxWndHook
945 if ( !wnd && wxWndHook )
946 {
947#if 0 // def __WXDEBUG__
948 char buf[512];
949 ::GetClassNameA((HWND) hWnd, buf, 512);
950 wxString className(buf);
951#endif
952
953 wxAssociateWinWithHandle(hWnd, wxWndHook);
954 wnd = wxWndHook;
955 wxWndHook = NULL;
956 wnd->SetHWND((WXHWND)hWnd);
957 }
958
959 MRESULT rc;
960
961 // Stop right here if we don't have a valid handle in our wxWindow object.
962 if ( wnd && !wnd->GetHWND() )
963 {
964 // FIXME: why do we do this?
965 wnd->SetHWND((WXHWND) hWnd);
11e59d47 966 rc = wnd->OS2DefWindowProc(hWnd, message, wParam, lParam );
cdf1e714
DW
967 wnd->SetHWND(0);
968 }
969 else
970 {
971 if ( wnd )
972 rc = wnd->OS2WindowProc(hWnd, message, wParam, lParam);
973 else
11e59d47 974 rc = 0; //TODO: DefWindowProc( hWnd, message, wParam, lParam );
cdf1e714
DW
975 }
976
977 return rc;
978}
979
980MRESULT wxWindow::OS2WindowProc(HWND hWnd, WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
981{
982 // did we process the message?
983 bool processed = FALSE;
984
985 // the return value
986 union
987 {
988 bool allow;
989 long result;
990 WXHICON hIcon;
991 WXHBRUSH hBrush;
992 } rc;
993
994 // for most messages we should return 0 when we do process the message
995 rc.result = 0;
996 // TODO:
997/*
998 switch ( message )
999 {
1000 case WM_CREATE:
1001 {
1002 bool mayCreate;
1003 processed = HandleCreate((WXLPCREATESTRUCT)lParam, &mayCreate);
1004 if ( processed )
1005 {
1006 // return 0 to allow window creation
1007 rc.result = mayCreate ? 0 : -1;
1008 }
1009 }
1010 break;
1011
1012 case WM_DESTROY:
1013 processed = HandleDestroy();
1014 break;
1015
1016 case WM_MOVE:
1017 processed = HandleMove(LOWORD(lParam), HIWORD(lParam));
1018 break;
1019
1020 case WM_SIZE:
1021 processed = HandleSize(LOWORD(lParam), HIWORD(lParam), wParam);
1022 break;
1023
1024 case WM_ACTIVATE:
1025 {
1026 WXWORD state, minimized;
1027 WXHWND hwnd;
1028 UnpackActivate(wParam, lParam, &state, &minimized, &hwnd);
1029
1030 processed = HandleActivate(state, minimized != 0, (WXHWND)hwnd);
1031 }
1032 break;
1033
1034 case WM_SETFOCUS:
1035 processed = HandleSetFocus((WXHWND)(HWND)wParam);
1036 break;
1037
1038 case WM_KILLFOCUS:
1039 processed = HandleKillFocus((WXHWND)(HWND)wParam);
1040 break;
1041
1042 case WM_PAINT:
1043 processed = HandlePaint();
1044 break;
1045
1046 case WM_CLOSE:
1047 // don't let the DefWindowProc() destroy our window - we'll do it
1048 // ourselves in ~wxWindow
1049 processed = TRUE;
1050 rc.result = TRUE;
1051 break;
1052
1053 case WM_SHOWWINDOW:
1054 processed = HandleShow(wParam != 0, (int)lParam);
1055 break;
1056
1057 case WM_MOUSEMOVE:
1058 case WM_LBUTTONDOWN:
1059 case WM_LBUTTONUP:
1060 case WM_LBUTTONDBLCLK:
1061 case WM_RBUTTONDOWN:
1062 case WM_RBUTTONUP:
1063 case WM_RBUTTONDBLCLK:
1064 case WM_MBUTTONDOWN:
1065 case WM_MBUTTONUP:
1066 case WM_MBUTTONDBLCLK:
1067 {
1068 short x = LOWORD(lParam);
1069 short y = HIWORD(lParam);
1070
1071 processed = HandleMouseEvent(message, x, y, wParam);
1072 }
1073 break;
1074
1075 case MM_JOY1MOVE:
1076 case MM_JOY2MOVE:
1077 case MM_JOY1ZMOVE:
1078 case MM_JOY2ZMOVE:
1079 case MM_JOY1BUTTONDOWN:
1080 case MM_JOY2BUTTONDOWN:
1081 case MM_JOY1BUTTONUP:
1082 case MM_JOY2BUTTONUP:
1083 {
1084 int x = LOWORD(lParam);
1085 int y = HIWORD(lParam);
1086
1087 processed = HandleJoystickEvent(message, x, y, wParam);
1088 }
1089 break;
1090
1091 case WM_SYSCOMMAND:
1092 processed = HandleSysCommand(wParam, lParam);
1093 break;
1094
1095 case WM_COMMAND:
1096 {
1097 WORD id, cmd;
1098 WXHWND hwnd;
1099 UnpackCommand(wParam, lParam, &id, &hwnd, &cmd);
1100
1101 processed = HandleCommand(id, cmd, hwnd);
1102 }
1103 break;
1104
1105#ifdef __WIN95__
1106 case WM_NOTIFY:
1107 processed = HandleNotify((int)wParam, lParam, &rc.result);
1108 break;
1109#endif // Win95
1110
1111 // for these messages we must return TRUE if process the message
1112 case WM_DRAWITEM:
1113 case WM_MEASUREITEM:
1114 {
1115 int idCtrl = (UINT)wParam;
1116 if ( message == WM_DRAWITEM )
1117 {
1118 processed = MSWOnDrawItem(idCtrl,
1119 (WXDRAWITEMSTRUCT *)lParam);
1120 }
1121 else
1122 {
1123 processed = MSWOnMeasureItem(idCtrl,
1124 (WXMEASUREITEMSTRUCT *)lParam);
1125 }
1126
1127 if ( processed )
1128 rc.result = TRUE;
1129 }
1130 break;
1131
1132 case WM_GETDLGCODE:
1133 if ( m_lDlgCode )
1134 {
1135 rc.result = m_lDlgCode;
1136 processed = TRUE;
1137 }
1138 //else: get the dlg code from the DefWindowProc()
1139 break;
1140
1141 case WM_KEYDOWN:
1142 // If this has been processed by an event handler,
1143 // return 0 now (we've handled it).
1144 if ( HandleKeyDown((WORD) wParam, lParam) )
1145 {
1146 processed = TRUE;
1147
1148 break;
1149 }
1150
1151 // we consider these message "not interesting" to OnChar
1152 if ( wParam == VK_SHIFT || wParam == VK_CONTROL )
1153 {
1154 processed = TRUE;
1155
1156 break;
1157 }
1158
1159 switch ( wParam )
1160 {
1161 // avoid duplicate messages to OnChar for these ASCII keys: they
1162 // will be translated by TranslateMessage() and received in WM_CHAR
1163 case VK_ESCAPE:
1164 case VK_SPACE:
1165 case VK_RETURN:
1166 case VK_BACK:
1167 case VK_TAB:
1168 // but set processed to FALSE, not TRUE to still pass them to
1169 // the control's default window proc - otherwise built-in
1170 // keyboard handling won't work
1171 processed = FALSE;
1172
1173 break;
1174
1175#ifdef VK_APPS
1176 // special case of VK_APPS: treat it the same as right mouse
1177 // click because both usually pop up a context menu
1178 case VK_APPS:
1179 {
1180 // construct the key mask
1181 WPARAM fwKeys = MK_RBUTTON;
1182 if ( (::GetKeyState(VK_CONTROL) & 0x100) != 0 )
1183 fwKeys |= MK_CONTROL;
1184 if ( (::GetKeyState(VK_SHIFT) & 0x100) != 0 )
1185 fwKeys |= MK_SHIFT;
1186
1187 // simulate right mouse button click
1188 DWORD dwPos = ::GetMessagePos();
1189 int x = GET_X_LPARAM(dwPos),
1190 y = GET_Y_LPARAM(dwPos);
1191
1192 ScreenToClient(&x, &y);
1193 processed = HandleMouseEvent(WM_RBUTTONDOWN, x, y, fwKeys);
1194 }
1195 break;
1196#endif // VK_APPS
1197
1198 case VK_LEFT:
1199 case VK_RIGHT:
1200 case VK_DOWN:
1201 case VK_UP:
1202 default:
1203 processed = HandleChar((WORD)wParam, lParam);
1204 }
1205 break;
1206
1207 case WM_KEYUP:
1208 processed = HandleKeyUp((WORD) wParam, lParam);
1209 break;
1210
1211 case WM_CHAR: // Always an ASCII character
1212 processed = HandleChar((WORD)wParam, lParam, TRUE);
1213 break;
1214
1215 case WM_HSCROLL:
1216 case WM_VSCROLL:
1217 {
1218 WXWORD code, pos;
1219 WXHWND hwnd;
1220 UnpackScroll(wParam, lParam, &code, &pos, &hwnd);
1221
1222 processed = MSWOnScroll(message == WM_HSCROLL ? wxHORIZONTAL
1223 : wxVERTICAL,
1224 code, pos, hwnd);
1225 }
1226 break;
1227
1228 // CTLCOLOR messages are sent by children to query the parent for their
1229 // colors
1230#ifdef __WIN32__
1231 case WM_CTLCOLORMSGBOX:
1232 case WM_CTLCOLOREDIT:
1233 case WM_CTLCOLORLISTBOX:
1234 case WM_CTLCOLORBTN:
1235 case WM_CTLCOLORDLG:
1236 case WM_CTLCOLORSCROLLBAR:
1237 case WM_CTLCOLORSTATIC:
1238#else // Win16
1239 case WM_CTLCOLOR:
1240#endif // Win32/16
1241 {
1242 WXWORD nCtlColor;
1243 WXHDC hdc;
1244 WXHWND hwnd;
1245 UnpackCtlColor(wParam, lParam, &nCtlColor, &hdc, &hwnd);
1246
1247 processed = HandleCtlColor(&rc.hBrush,
1248 (WXHDC)hdc,
1249 (WXHWND)hwnd,
1250 nCtlColor,
1251 message,
1252 wParam,
1253 lParam);
1254 }
1255 break;
1256
1257 // the return value for this message is ignored
1258 case WM_SYSCOLORCHANGE:
1259 processed = HandleSysColorChange();
1260 break;
1261
1262 case WM_PALETTECHANGED:
1263 processed = HandlePaletteChanged((WXHWND) (HWND) wParam);
1264 break;
1265
1266 case WM_QUERYNEWPALETTE:
1267 processed = HandleQueryNewPalette();
1268 break;
1269
1270 case WM_ERASEBKGND:
1271 processed = HandleEraseBkgnd((WXHDC)(HDC)wParam);
1272 if ( processed )
1273 {
1274 // we processed the message, i.e. erased the background
1275 rc.result = TRUE;
1276 }
1277 break;
1278
1279 case WM_DROPFILES:
1280 processed = HandleDropFiles(wParam);
1281 break;
1282
1283 case WM_INITDIALOG:
1284 processed = HandleInitDialog((WXHWND)(HWND)wParam);
1285
1286 if ( processed )
1287 {
1288 // we never set focus from here
1289 rc.result = FALSE;
1290 }
1291 break;
1292
1293 case WM_QUERYENDSESSION:
1294 processed = HandleQueryEndSession(lParam, &rc.allow);
1295 break;
1296
1297 case WM_ENDSESSION:
1298 processed = HandleEndSession(wParam != 0, lParam);
1299 break;
1300
1301 case WM_GETMINMAXINFO:
1302 processed = HandleGetMinMaxInfo((MINMAXINFO*)lParam);
1303 break;
1304
1305 case WM_SETCURSOR:
1306 processed = HandleSetCursor((WXHWND)(HWND)wParam,
1307 LOWORD(lParam), // hit test
1308 HIWORD(lParam)); // mouse msg
1309
1310 if ( processed )
1311 {
1312 // returning TRUE stops the DefWindowProc() from further
1313 // processing this message - exactly what we need because we've
1314 // just set the cursor.
1315 rc.result = TRUE;
1316 }
1317 break;
1318 }
1319
1320 if ( !processed )
1321 {
1322#ifdef __WXDEBUG__
1323 wxLogTrace(wxTraceMessages, wxT("Forwarding %s to DefWindowProc."),
1324 wxGetMessageName(message));
1325#endif // __WXDEBUG__
1326 rc.result = MSWDefWindowProc(message, wParam, lParam);
1327 }
1328*/
11e59d47 1329 return (MRESULT)0;
cdf1e714
DW
1330}
1331
1332// Dialog window proc
11e59d47 1333MRESULT wxDlgProc(HWND hWnd, UINT message, MPARAM wParam, MPARAM lParam)
cdf1e714
DW
1334{
1335 // TODO:
1336/*
1337 if ( message == WM_INITDIALOG )
1338 {
1339 // for this message, returning TRUE tells system to set focus to the
1340 // first control in the dialog box
1341 return TRUE;
1342 }
1343 else
1344 {
1345 // for all the other ones, FALSE means that we didn't process the
1346 // message
1347 return 0;
1348 }
1349*/
1350 return (MRESULT)0;
1351}
1352
cdf1e714
DW
1353wxWindow *wxFindWinFromHandle(WXHWND hWnd)
1354{
1355 wxNode *node = wxWinHandleList->Find((long)hWnd);
1356 if ( !node )
1357 return NULL;
1358 return (wxWindow *)node->Data();
1359}
1360
1361void wxAssociateWinWithHandle(HWND hWnd, wxWindow *win)
1362{
1363 // adding NULL hWnd is (first) surely a result of an error and
1364 // (secondly) breaks menu command processing
1365 wxCHECK_RET( hWnd != (HWND)NULL,
1366 wxT("attempt to add a NULL hWnd to window list ignored") );
1367
1368
1369 wxWindow *oldWin = wxFindWinFromHandle((WXHWND) hWnd);
1370 if ( oldWin && (oldWin != win) )
1371 {
1372 wxString str(win->GetClassInfo()->GetClassName());
1373 wxLogError("Bug! Found existing HWND %X for new window of class %s", (int) hWnd, (const char*) str);
1374 }
1375 else if (!oldWin)
1376 {
1377 wxWinHandleList->Append((long)hWnd, win);
1378 }
1379}
1380
1381void wxRemoveHandleAssociation(wxWindow *win)
1382{
1383 wxWinHandleList->DeleteObject(win);
1384}
1385
1386// Default destroyer - override if you destroy it in some other way
1387// (e.g. with MDI child windows)
1388void wxWindow::OS2DestroyWindow()
1389{
1390}
1391
1392void wxWindow::OS2DetachWindowMenu()
1393{
1394 if ( m_hMenu )
1395 {
1396 HMENU hMenu = (HMENU)m_hMenu;
1397
1398 int N = (int)WinSendMsg(hMenu, MM_QUERYITEMCOUNT, 0, 0);
1399 int i;
1400 for (i = 0; i < N; i++)
1401 {
1402 wxChar buf[100];
1403 int chars = (int)WinSendMsg(hMenu, MM_QUERYITEMTEXT, MPFROM2SHORT(i, N), buf);
1404 if ( !chars )
1405 {
1406 wxLogLastError(wxT("GetMenuString"));
1407
1408 continue;
1409 }
1410
1411 if ( wxStrcmp(buf, wxT("&Window")) == 0 )
1412 {
1413 WinSendMsg(hMenu, MM_DELETEITEM, MPFROM2SHORT(i, TRUE), 0);
1414 break;
1415 }
1416 }
1417 }
1418}
1419
1420bool wxWindow::OS2Create(int id,
1421 wxWindow *parent,
1422 const wxChar *wclass,
1423 wxWindow *wx_win,
1424 const wxChar *title,
1425 int x,
1426 int y,
1427 int width,
1428 int height,
1429 WXDWORD style,
1430 const wxChar *dialog_template,
1431 WXDWORD extendedStyle)
1432{
1433 // TODO:
1434/*
1435 int x1 = CW_USEDEFAULT;
1436 int y1 = 0;
1437 int width1 = CW_USEDEFAULT;
1438 int height1 = 100;
1439
1440 // Find parent's size, if it exists, to set up a possible default
1441 // panel size the size of the parent window
1442 RECT parent_rect;
1443 if ( parent )
1444 {
1445 ::GetClientRect((HWND) parent->GetHWND(), &parent_rect);
1446
1447 width1 = parent_rect.right - parent_rect.left;
1448 height1 = parent_rect.bottom - parent_rect.top;
1449 }
1450
1451 if ( x > -1 ) x1 = x;
1452 if ( y > -1 ) y1 = y;
1453 if ( width > -1 ) width1 = width;
1454 if ( height > -1 ) height1 = height;
1455
1456 HWND hParent = (HWND)NULL;
1457 if ( parent )
1458 hParent = (HWND) parent->GetHWND();
1459
1460 wxWndHook = this;
1461
1462 if ( dialog_template )
1463 {
1464 m_hWnd = (WXHWND)::CreateDialog(wxGetInstance(),
1465 dialog_template,
1466 hParent,
1467 (DLGPROC)wxDlgProc);
1468
1469 if ( m_hWnd == 0 )
1470 {
1471 wxLogError(_("Can't find dummy dialog template!\n"
1472 "Check resource include path for finding wx.rc."));
1473
1474 return FALSE;
1475 }
1476
1477 // ::SetWindowLong(GWL_EXSTYLE) doesn't work for the dialogs, so try
1478 // to take care of (at least some) extended style flags ourselves
1479 if ( extendedStyle & WS_EX_TOPMOST )
1480 {
1481 if ( !::SetWindowPos(GetHwnd(), HWND_TOPMOST, 0, 0, 0, 0,
1482 SWP_NOSIZE | SWP_NOMOVE) )
1483 {
1484 wxLogLastError(wxT("SetWindowPos"));
1485 }
1486 }
1487
1488 // move the dialog to its initial position without forcing repainting
1489 if ( !::MoveWindow(GetHwnd(), x1, y1, width1, height1, FALSE) )
1490 {
1491 wxLogLastError(wxT("MoveWindow"));
1492 }
1493 }
1494 else
1495 {
1496 int controlId = 0;
1497 if ( style & WS_CHILD )
1498 controlId = id;
1499
1500 wxString className(wclass);
1501 if ( GetWindowStyleFlag() & wxNO_FULL_REPAINT_ON_RESIZE )
1502 {
1503 className += wxT("NR");
1504 }
1505
1506 m_hWnd = (WXHWND)CreateWindowEx(extendedStyle,
1507 className,
1508 title ? title : wxT(""),
1509 style,
1510 x1, y1,
1511 width1, height1,
1512 hParent, (HMENU)controlId,
1513 wxGetInstance(),
1514 NULL);
1515
1516 if ( !m_hWnd )
1517 {
1518 wxLogError(_("Can't create window of class %s!\n"
1519 "Possible Windows 3.x compatibility problem?"),
1520 wclass);
1521
1522 return FALSE;
1523 }
1524 }
1525
1526 wxWndHook = NULL;
1527#ifdef __WXDEBUG__
1528 wxNode* node = wxWinHandleList->Member(this);
1529 if (node)
1530 {
1531 HWND hWnd = (HWND) node->GetKeyInteger();
1532 if (hWnd != (HWND) m_hWnd)
1533 {
1534 wxLogError("A second HWND association is being added for the same window!");
1535 }
1536 }
1537#endif
1538*/
1539 wxAssociateWinWithHandle((HWND) m_hWnd, this);
1540
1541 return TRUE;
1542}
1543
1544// ===========================================================================
1545// OS2 PM message handlers
1546// ===========================================================================
1547
1548// ---------------------------------------------------------------------------
1549// WM_NOTIFY
1550// ---------------------------------------------------------------------------
1551
1552bool wxWindow::HandleNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
1553{
1554 // TODO:
1555 return FALSE;
1556}
1557
1558bool wxWindow::OS2OnNotify(int WXUNUSED(idCtrl),
1559 WXLPARAM lParam,
1560 WXLPARAM* WXUNUSED(result))
1561{
1562 // TODO:
1563 return FALSE;
1564}
1565
1566// ---------------------------------------------------------------------------
1567// end session messages
1568// ---------------------------------------------------------------------------
1569
1570bool wxWindow::HandleQueryEndSession(long logOff, bool *mayEnd)
1571{
1572 wxCloseEvent event(wxEVT_QUERY_END_SESSION, -1);
1573 event.SetEventObject(wxTheApp);
1574 event.SetCanVeto(TRUE);
1575 event.SetLoggingOff(logOff == ENDSESSION_LOGOFF);
1576
1577 bool rc = wxTheApp->ProcessEvent(event);
1578
1579 if ( rc )
1580 {
1581 // we may end only if the app didn't veto session closing (double
1582 // negation...)
1583 *mayEnd = !event.GetVeto();
1584 }
1585
1586 return rc;
1587}
1588
1589bool wxWindow::HandleEndSession(bool endSession, long logOff)
1590{
1591 // do nothing if the session isn't ending
1592 if ( !endSession )
1593 return FALSE;
1594
1595 wxCloseEvent event(wxEVT_END_SESSION, -1);
1596 event.SetEventObject(wxTheApp);
1597 event.SetCanVeto(FALSE);
1598 event.SetLoggingOff( (logOff == ENDSESSION_LOGOFF) );
1599 if ( (this == wxTheApp->GetTopWindow()) && // Only send once
1600 wxTheApp->ProcessEvent(event))
1601 {
1602 }
1603 return TRUE;
1604}
1605
1606// ---------------------------------------------------------------------------
1607// window creation/destruction
1608// ---------------------------------------------------------------------------
1609
1610bool wxWindow::HandleCreate(WXLPCREATESTRUCT cs, bool *mayCreate)
1611{
1612 // TODO: should generate this event from WM_NCCREATE
1613 wxWindowCreateEvent event(this);
1614 (void)GetEventHandler()->ProcessEvent(event);
1615
1616 *mayCreate = TRUE;
1617
1618 return TRUE;
1619}
1620
1621bool wxWindow::HandleDestroy()
1622{
1623 wxWindowDestroyEvent event(this);
1624 (void)GetEventHandler()->ProcessEvent(event);
1625
1626 // delete our drop target if we've got one
1627#if wxUSE_DRAG_AND_DROP
1628 if ( m_dropTarget != NULL )
1629 {
11e59d47 1630// m_dropTarget->Revoke(m_hWnd);
cdf1e714
DW
1631
1632 delete m_dropTarget;
1633 m_dropTarget = NULL;
1634 }
1635#endif // wxUSE_DRAG_AND_DROP
1636
1637 // WM_DESTROY handled
1638 return TRUE;
1639}
1640
1641// ---------------------------------------------------------------------------
1642// activation/focus
1643// ---------------------------------------------------------------------------
1644
1645bool wxWindow::HandleActivate(int state,
1646 bool WXUNUSED(minimized),
1647 WXHWND WXUNUSED(activate))
1648{
11e59d47
DW
1649 // TODO:
1650 /*
cdf1e714
DW
1651 wxActivateEvent event(wxEVT_ACTIVATE,
1652 (state == WA_ACTIVE) || (state == WA_CLICKACTIVE),
1653 m_windowId);
1654 event.SetEventObject(this);
1655
1656 return GetEventHandler()->ProcessEvent(event);
11e59d47
DW
1657 */
1658 return FALSE;
cdf1e714
DW
1659}
1660
1661bool wxWindow::HandleSetFocus(WXHWND WXUNUSED(hwnd))
1662{
1663#if wxUSE_CARET
1664 // Deal with caret
1665 if ( m_caret )
1666 {
1667 m_caret->OnSetFocus();
1668 }
1669#endif // wxUSE_CARET
1670
1671 // panel wants to track the window which was the last to have focus in it
1672 wxPanel *panel = wxDynamicCast(GetParent(), wxPanel);
1673 if ( panel )
1674 {
1675 panel->SetLastFocus(this);
1676 }
1677
1678 wxFocusEvent event(wxEVT_SET_FOCUS, m_windowId);
1679 event.SetEventObject(this);
1680
1681 return GetEventHandler()->ProcessEvent(event);
1682}
1683
1684bool wxWindow::HandleKillFocus(WXHWND WXUNUSED(hwnd))
1685{
1686#if wxUSE_CARET
1687 // Deal with caret
1688 if ( m_caret )
1689 {
1690 m_caret->OnKillFocus();
1691 }
1692#endif // wxUSE_CARET
1693
1694 wxFocusEvent event(wxEVT_KILL_FOCUS, m_windowId);
1695 event.SetEventObject(this);
1696
1697 return GetEventHandler()->ProcessEvent(event);
1698}
1699
1700// ---------------------------------------------------------------------------
1701// miscellaneous
1702// ---------------------------------------------------------------------------
1703
1704bool wxWindow::HandleShow(bool show, int status)
1705{
1706 wxShowEvent event(GetId(), show);
1707 event.m_eventObject = this;
1708
1709 return GetEventHandler()->ProcessEvent(event);
1710}
1711
1712bool wxWindow::HandleInitDialog(WXHWND WXUNUSED(hWndFocus))
1713{
1714 wxInitDialogEvent event(GetId());
1715 event.m_eventObject = this;
1716
1717 return GetEventHandler()->ProcessEvent(event);
1718}
1719
1720bool wxWindow::HandleDropFiles(WXWPARAM wParam)
1721{
1722 // TODO:
1723 return FALSE;
1724}
1725
1726bool wxWindow::HandleSetCursor(WXHWND hWnd,
1727 short nHitTest,
1728 int WXUNUSED(mouseMsg))
1729{
1730 // don't set cursor for other windows, only for this one: this prevents
1731 // children of this window from getting the same cursor as the parent has
1732 // (don't forget that this message is propagated by default up the window
1733 // parent-child hierarchy)
1734 if ( GetHWND() == hWnd )
1735 {
1736 // don't set cursor when the mouse is not in the client part
11e59d47
DW
1737// TODO
1738/*
cdf1e714
DW
1739 if ( nHitTest == HTCLIENT || nHitTest == HTERROR )
1740 {
1741 HCURSOR hcursor = 0;
1742 if ( wxIsBusy() )
1743 {
1744 // from msw\utils.cpp
1745 extern HCURSOR gs_wxBusyCursor;
1746
1747 hcursor = gs_wxBusyCursor;
1748 }
1749 else
1750 {
1751 wxCursor *cursor = NULL;
1752
1753 if ( m_cursor.Ok() )
1754 {
1755 cursor = &m_cursor;
1756 }
1757 else
1758 {
1759 // from msw\data.cpp
1760 extern wxCursor *g_globalCursor;
1761
1762 if ( g_globalCursor && g_globalCursor->Ok() )
1763 cursor = g_globalCursor;
1764 }
1765
1766 if ( cursor )
1767 hcursor = (HCURSOR)cursor->GetHCURSOR();
1768 }
1769
1770 if ( hcursor )
1771 {
1772// ::SetCursor(hcursor);
1773
1774 return TRUE;
1775 }
1776 }
11e59d47 1777*/
cdf1e714
DW
1778 }
1779
1780 return FALSE;
1781}
1782
1783// ---------------------------------------------------------------------------
1784// owner drawn stuff
1785// ---------------------------------------------------------------------------
1786
11e59d47 1787bool wxWindow::OS2OnDrawItem(int id, WXDRAWITEMSTRUCT *itemStruct)
cdf1e714
DW
1788{
1789 // TODO:
1790/*
1791#if wxUSE_OWNER_DRAWN
1792 // is it a menu item?
1793 if ( id == 0 )
1794 {
1795 DRAWITEMSTRUCT *pDrawStruct = (DRAWITEMSTRUCT *)itemStruct;
1796 wxMenuItem *pMenuItem = (wxMenuItem *)(pDrawStruct->itemData);
1797
1798 wxCHECK( pMenuItem->IsKindOf(CLASSINFO(wxMenuItem)), FALSE );
1799
1800 // prepare to call OnDrawItem()
1801 wxDC dc;
1802 dc.SetHDC((WXHDC)pDrawStruct->hDC, FALSE);
1803 wxRect rect(pDrawStruct->rcItem.left, pDrawStruct->rcItem.top,
1804 pDrawStruct->rcItem.right - pDrawStruct->rcItem.left,
1805 pDrawStruct->rcItem.bottom - pDrawStruct->rcItem.top);
1806
1807 return pMenuItem->OnDrawItem
1808 (
1809 dc, rect,
1810 (wxOwnerDrawn::wxODAction)pDrawStruct->itemAction,
1811 (wxOwnerDrawn::wxODStatus)pDrawStruct->itemState
1812 );
1813 }
1814
1815 wxWindow *item = FindItem(id);
1816 if ( item && item->IsKindOf(CLASSINFO(wxControl)) )
1817 {
1818 return ((wxControl *)item)->MSWOnDraw(itemStruct);
1819 }
1820 else
1821#endif
1822 return FALSE;
1823*/
1824 return FALSE;
1825}
1826
1827bool wxWindow::OS2OnMeasureItem(int id, WXMEASUREITEMSTRUCT *itemStruct)
0e320a79 1828{
cdf1e714
DW
1829 // TODO:
1830/*
1831#if wxUSE_OWNER_DRAWN
1832 // is it a menu item?
1833 if ( id == 0 )
1834 {
1835 MEASUREITEMSTRUCT *pMeasureStruct = (MEASUREITEMSTRUCT *)itemStruct;
1836 wxMenuItem *pMenuItem = (wxMenuItem *)(pMeasureStruct->itemData);
1837
1838 wxCHECK( pMenuItem->IsKindOf(CLASSINFO(wxMenuItem)), FALSE );
1839
1840 return pMenuItem->OnMeasureItem(&pMeasureStruct->itemWidth,
1841 &pMeasureStruct->itemHeight);
1842 }
1843
1844 wxWindow *item = FindItem(id);
1845 if ( item && item->IsKindOf(CLASSINFO(wxControl)) )
1846 {
1847 return ((wxControl *)item)->MSWOnMeasure(itemStruct);
1848 }
1849#endif // owner-drawn menus
1850*/
1851 return FALSE;
0e320a79
DW
1852}
1853
cdf1e714
DW
1854// ---------------------------------------------------------------------------
1855// colours and palettes
1856// ---------------------------------------------------------------------------
849949b1 1857
cdf1e714 1858bool wxWindow::HandleSysColorChange()
0e320a79 1859{
cdf1e714
DW
1860 wxSysColourChangedEvent event;
1861 event.SetEventObject(this);
1862
1863 return GetEventHandler()->ProcessEvent(event);
0e320a79
DW
1864}
1865
cdf1e714
DW
1866bool wxWindow::HandleCtlColor(WXHBRUSH *brush,
1867 WXHDC pDC,
1868 WXHWND pWnd,
1869 WXUINT nCtlColor,
1870 WXUINT message,
1871 WXWPARAM wParam,
1872 WXLPARAM lParam)
0e320a79 1873{
cdf1e714 1874 WXHBRUSH hBrush = 0;
11e59d47
DW
1875// TODO:
1876/*
cdf1e714
DW
1877 if ( nCtlColor == CTLCOLOR_DLG )
1878 {
1879 hBrush = OnCtlColor(pDC, pWnd, nCtlColor, message, wParam, lParam);
1880 }
1881 else
1882 {
1883 wxControl *item = (wxControl *)FindItemByHWND(pWnd, TRUE);
1884 if ( item )
1885 hBrush = item->OnCtlColor(pDC, pWnd, nCtlColor, message, wParam, lParam);
1886 }
1887
1888 if ( hBrush )
1889 *brush = hBrush;
1890
1891 return hBrush != 0;
11e59d47
DW
1892*/
1893 return FALSE;
0e320a79
DW
1894}
1895
cdf1e714
DW
1896// Define for each class of dialog and control
1897WXHBRUSH wxWindow::OnCtlColor(WXHDC hDC,
1898 WXHWND hWnd,
1899 WXUINT nCtlColor,
1900 WXUINT message,
1901 WXWPARAM wParam,
1902 WXLPARAM lParam)
0e320a79 1903{
cdf1e714 1904 return (WXHBRUSH)0;
0e320a79
DW
1905}
1906
cdf1e714 1907bool wxWindow::HandlePaletteChanged(WXHWND hWndPalChange)
0e320a79 1908{
cdf1e714
DW
1909 wxPaletteChangedEvent event(GetId());
1910 event.SetEventObject(this);
1911 event.SetChangedWindow(wxFindWinFromHandle(hWndPalChange));
1912
1913 return GetEventHandler()->ProcessEvent(event);
0e320a79
DW
1914}
1915
cdf1e714 1916bool wxWindow::HandleQueryNewPalette()
0e320a79 1917{
cdf1e714
DW
1918 wxQueryNewPaletteEvent event(GetId());
1919 event.SetEventObject(this);
1920
1921 return GetEventHandler()->ProcessEvent(event) && event.GetPaletteRealized();
0e320a79
DW
1922}
1923
cdf1e714
DW
1924// Responds to colour changes: passes event on to children.
1925void wxWindow::OnSysColourChanged(wxSysColourChangedEvent& event)
0e320a79 1926{
cdf1e714
DW
1927 wxNode *node = GetChildren().First();
1928 while ( node )
1929 {
1930 // Only propagate to non-top-level windows
1931 wxWindow *win = (wxWindow *)node->Data();
1932 if ( win->GetParent() )
1933 {
1934 wxSysColourChangedEvent event2;
1935 event.m_eventObject = win;
1936 win->GetEventHandler()->ProcessEvent(event2);
1937 }
1938
1939 node = node->Next();
1940 }
0e320a79
DW
1941}
1942
cdf1e714
DW
1943// ---------------------------------------------------------------------------
1944// painting
1945// ---------------------------------------------------------------------------
1946
1947bool wxWindow::HandlePaint()
0e320a79 1948{
cdf1e714 1949 // TODO:
11e59d47 1950 return FALSE;
0e320a79
DW
1951}
1952
cdf1e714 1953bool wxWindow::HandleEraseBkgnd(WXHDC hdc)
0e320a79 1954{
cdf1e714 1955 // Prevents flicker when dragging
11e59d47
DW
1956// if ( ::IsIconic(GetHwnd()) )
1957// return TRUE;
cdf1e714
DW
1958
1959 wxDC dc;
1960
1961 dc.SetHDC(hdc);
1962 dc.SetWindow(this);
1963 dc.BeginDrawing();
1964
1965 wxEraseEvent event(m_windowId, &dc);
1966 event.SetEventObject(this);
1967 bool rc = GetEventHandler()->ProcessEvent(event);
1968
1969 dc.EndDrawing();
1970 dc.SelectOldObjects(hdc);
1971 dc.SetHDC((WXHDC) NULL);
1972
1973 return rc;
0e320a79
DW
1974}
1975
cdf1e714 1976void wxWindow::OnEraseBackground(wxEraseEvent& event)
0e320a79 1977{
849949b1 1978 // TODO:
0e320a79
DW
1979}
1980
cdf1e714
DW
1981// ---------------------------------------------------------------------------
1982// moving and resizing
1983// ---------------------------------------------------------------------------
0e320a79 1984
cdf1e714 1985bool wxWindow::HandleMinimize()
0e320a79 1986{
cdf1e714
DW
1987 wxIconizeEvent event(m_windowId);
1988 event.SetEventObject(this);
1989
1990 return GetEventHandler()->ProcessEvent(event);
0e320a79
DW
1991}
1992
cdf1e714 1993bool wxWindow::HandleMaximize()
0e320a79 1994{
cdf1e714
DW
1995 wxMaximizeEvent event(m_windowId);
1996 event.SetEventObject(this);
1997
1998 return GetEventHandler()->ProcessEvent(event);
0e320a79
DW
1999}
2000
cdf1e714 2001bool wxWindow::HandleMove(int x, int y)
0e320a79 2002{
cdf1e714
DW
2003 wxMoveEvent event(wxPoint(x, y), m_windowId);
2004 event.SetEventObject(this);
2005
2006 return GetEventHandler()->ProcessEvent(event);
0e320a79
DW
2007}
2008
cdf1e714 2009bool wxWindow::HandleSize(int w, int h, WXUINT WXUNUSED(flag))
0e320a79 2010{
cdf1e714
DW
2011 wxSizeEvent event(wxSize(w, h), m_windowId);
2012 event.SetEventObject(this);
2013
2014 return GetEventHandler()->ProcessEvent(event);
0e320a79
DW
2015}
2016
cdf1e714 2017bool wxWindow::HandleGetMinMaxInfo(void *mmInfo)
0e320a79 2018{
11e59d47
DW
2019// TODO:
2020/*
cdf1e714
DW
2021 MINMAXINFO *info = (MINMAXINFO *)mmInfo;
2022
2023 bool rc = FALSE;
2024
2025 if ( m_minWidth != -1 )
2026 {
2027 info->ptMinTrackSize.x = m_minWidth;
2028 rc = TRUE;
2029 }
2030
2031 if ( m_minHeight != -1 )
2032 {
2033 info->ptMinTrackSize.y = m_minHeight;
2034 rc = TRUE;
2035 }
2036
2037 if ( m_maxWidth != -1 )
2038 {
2039 info->ptMaxTrackSize.x = m_maxWidth;
2040 rc = TRUE;
2041 }
2042
2043 if ( m_maxHeight != -1 )
2044 {
2045 info->ptMaxTrackSize.y = m_maxHeight;
2046 rc = TRUE;
2047 }
2048
2049 return rc;
11e59d47
DW
2050*/
2051 return FALSE;
0e320a79
DW
2052}
2053
cdf1e714
DW
2054// ---------------------------------------------------------------------------
2055// command messages
2056// ---------------------------------------------------------------------------
2057
2058bool wxWindow::HandleCommand(WXWORD id, WXWORD cmd, WXHWND control)
0e320a79 2059{
cdf1e714 2060 if ( wxCurrentPopupMenu )
0e320a79 2061 {
cdf1e714
DW
2062 wxMenu *popupMenu = wxCurrentPopupMenu;
2063 wxCurrentPopupMenu = NULL;
0e320a79 2064
11e59d47 2065 return popupMenu->OS2Command(cmd, id);
cdf1e714 2066 }
0e320a79 2067
cdf1e714
DW
2068 wxWindow *win = FindItem(id);
2069 if ( !win )
2070 {
2071 win = wxFindWinFromHandle(control);
0e320a79 2072 }
cdf1e714
DW
2073
2074 if ( win )
11e59d47 2075 return win->OS2Command(cmd, id);
cdf1e714
DW
2076
2077 return FALSE;
0e320a79 2078}
de44a9f0 2079
cdf1e714 2080bool wxWindow::HandleSysCommand(WXWPARAM wParam, WXLPARAM lParam)
0e320a79 2081{
cdf1e714
DW
2082 // TODO:
2083 return FALSE;
2084}
2085
2086// ---------------------------------------------------------------------------
2087// mouse events
2088// ---------------------------------------------------------------------------
2089
2090void wxWindow::InitMouseEvent(wxMouseEvent& event, int x, int y, WXUINT flags)
2091{
11e59d47
DW
2092// TODO:
2093/*
cdf1e714
DW
2094 event.m_x = x;
2095 event.m_y = y;
2096 event.m_shiftDown = ((flags & MK_SHIFT) != 0);
2097 event.m_controlDown = ((flags & MK_CONTROL) != 0);
2098 event.m_leftDown = ((flags & MK_LBUTTON) != 0);
2099 event.m_middleDown = ((flags & MK_MBUTTON) != 0);
2100 event.m_rightDown = ((flags & MK_RBUTTON) != 0);
2101 event.SetTimestamp(s_currentMsg.time);
2102 event.m_eventObject = this;
2103
2104#if wxUSE_MOUSEEVENT_HACK
2105 m_lastMouseX = x;
2106 m_lastMouseY = y;
2107 m_lastMouseEvent = event.GetEventType();
2108#endif // wxUSE_MOUSEEVENT_HACK
11e59d47 2109*/
0e320a79
DW
2110}
2111
cdf1e714 2112bool wxWindow::HandleMouseEvent(WXUINT msg, int x, int y, WXUINT flags)
0e320a79 2113{
cdf1e714
DW
2114 // the mouse events take consecutive IDs from WM_MOUSEFIRST to
2115 // WM_MOUSELAST, so it's enough to substract WM_MOUSEMOVE == WM_MOUSEFIRST
2116 // from the message id and take the value in the table to get wxWin event
2117 // id
2118 static const wxEventType eventsMouse[] =
2119 {
2120 wxEVT_MOTION,
2121 wxEVT_LEFT_DOWN,
2122 wxEVT_LEFT_UP,
2123 wxEVT_LEFT_DCLICK,
2124 wxEVT_RIGHT_DOWN,
2125 wxEVT_RIGHT_UP,
2126 wxEVT_RIGHT_DCLICK,
2127 wxEVT_MIDDLE_DOWN,
2128 wxEVT_MIDDLE_UP,
2129 wxEVT_MIDDLE_DCLICK
2130 };
2131
2132 wxMouseEvent event(eventsMouse[msg - WM_MOUSEMOVE]);
2133 InitMouseEvent(event, x, y, flags);
2134
2135 return GetEventHandler()->ProcessEvent(event);
0e320a79
DW
2136}
2137
cdf1e714 2138bool wxWindow::HandleMouseMove(int x, int y, WXUINT flags)
0e320a79 2139{
776d87d5 2140 if ( !m_bMouseInWindow )
cdf1e714
DW
2141 {
2142 // Generate an ENTER event
776d87d5 2143 m_bMouseInWindow = TRUE;
cdf1e714
DW
2144
2145 wxMouseEvent event(wxEVT_ENTER_WINDOW);
2146 InitMouseEvent(event, x, y, flags);
2147
2148 (void)GetEventHandler()->ProcessEvent(event);
2149 }
2150
2151#if wxUSE_MOUSEEVENT_HACK
2152 // Window gets a click down message followed by a mouse move message even
2153 // if position isn't changed! We want to discard the trailing move event
2154 // if x and y are the same.
2155 if ( (m_lastMouseEvent == wxEVT_RIGHT_DOWN ||
2156 m_lastMouseEvent == wxEVT_LEFT_DOWN ||
2157 m_lastMouseEvent == wxEVT_MIDDLE_DOWN) &&
2158 (m_lastMouseX == event.m_x && m_lastMouseY == event.m_y) )
2159 {
2160 m_lastMouseEvent = wxEVT_MOTION;
2161
2162 return FALSE;
2163 }
2164#endif // wxUSE_MOUSEEVENT_HACK
2165
2166 return HandleMouseEvent(WM_MOUSEMOVE, x, y, flags);
0e320a79
DW
2167}
2168
cdf1e714
DW
2169// ---------------------------------------------------------------------------
2170// keyboard handling
2171// ---------------------------------------------------------------------------
2172
2173// isASCII is TRUE only when we're called from WM_CHAR handler and not from
2174// WM_KEYDOWN one
2175bool wxWindow::HandleChar(WXWORD wParam, WXLPARAM lParam, bool isASCII)
86de7616 2176{
cdf1e714
DW
2177 // TODO:
2178 return FALSE;
2179}
86de7616 2180
cdf1e714
DW
2181bool wxWindow::HandleKeyDown(WXWORD wParam, WXLPARAM lParam)
2182{
2183 // TODO:
2184 return FALSE;
86de7616
DW
2185}
2186
cdf1e714 2187bool wxWindow::HandleKeyUp(WXWORD wParam, WXLPARAM lParam)
86de7616 2188{
cdf1e714
DW
2189 // TODO:
2190 return FALSE;
2191}
86de7616 2192
cdf1e714
DW
2193// ---------------------------------------------------------------------------
2194// joystick
2195// ---------------------------------------------------------------------------
86de7616 2196
cdf1e714
DW
2197bool wxWindow::HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags)
2198{
2199 // TODO:
2200 return FALSE;
2201}
2202
2203// ---------------------------------------------------------------------------
2204// scrolling
2205// ---------------------------------------------------------------------------
2206
2207bool wxWindow::OS2OnScroll(int orientation, WXWORD wParam,
2208 WXWORD pos, WXHWND control)
2209{
2210 if ( control )
86de7616 2211 {
cdf1e714
DW
2212 wxWindow *child = wxFindWinFromHandle(control);
2213 if ( child )
11e59d47 2214 return child->OS2OnScroll(orientation, wParam, pos, control);
cdf1e714 2215 }
86de7616 2216
cdf1e714
DW
2217 wxScrollWinEvent event;
2218 event.SetPosition(pos);
2219 event.SetOrientation(orientation);
2220 event.m_eventObject = this;
2221 // TODO:
2222 return FALSE;
2223}
86de7616 2224
cdf1e714
DW
2225// ===========================================================================
2226// global functions
2227// ===========================================================================
2228
2229void wxGetCharSize(WXHWND wnd, int *x, int *y,wxFont *the_font)
2230{
2231 // TODO:
2232}
2233
2234// Returns 0 if was a normal ASCII value, not a special key. This indicates that
2235// the key should be ignored by WM_KEYDOWN and processed by WM_CHAR instead.
2236int wxCharCodeOS2ToWX(int keySym)
2237{
2238 int id = 0;
2239 // TODO:
2240/*
2241 switch (keySym)
2242 {
2243 case VK_CANCEL: id = WXK_CANCEL; break;
2244 case VK_BACK: id = WXK_BACK; break;
2245 case VK_TAB: id = WXK_TAB; break;
2246 case VK_CLEAR: id = WXK_CLEAR; break;
2247 case VK_RETURN: id = WXK_RETURN; break;
2248 case VK_SHIFT: id = WXK_SHIFT; break;
2249 case VK_CONTROL: id = WXK_CONTROL; break;
2250 case VK_MENU : id = WXK_MENU; break;
2251 case VK_PAUSE: id = WXK_PAUSE; break;
2252 case VK_SPACE: id = WXK_SPACE; break;
2253 case VK_ESCAPE: id = WXK_ESCAPE; break;
2254 case VK_PRIOR: id = WXK_PRIOR; break;
2255 case VK_NEXT : id = WXK_NEXT; break;
2256 case VK_END: id = WXK_END; break;
2257 case VK_HOME : id = WXK_HOME; break;
2258 case VK_LEFT : id = WXK_LEFT; break;
2259 case VK_UP: id = WXK_UP; break;
2260 case VK_RIGHT: id = WXK_RIGHT; break;
2261 case VK_DOWN : id = WXK_DOWN; break;
2262 case VK_SELECT: id = WXK_SELECT; break;
2263 case VK_PRINT: id = WXK_PRINT; break;
2264 case VK_EXECUTE: id = WXK_EXECUTE; break;
2265 case VK_INSERT: id = WXK_INSERT; break;
2266 case VK_DELETE: id = WXK_DELETE; break;
2267 case VK_HELP : id = WXK_HELP; break;
2268 case VK_NUMPAD0: id = WXK_NUMPAD0; break;
2269 case VK_NUMPAD1: id = WXK_NUMPAD1; break;
2270 case VK_NUMPAD2: id = WXK_NUMPAD2; break;
2271 case VK_NUMPAD3: id = WXK_NUMPAD3; break;
2272 case VK_NUMPAD4: id = WXK_NUMPAD4; break;
2273 case VK_NUMPAD5: id = WXK_NUMPAD5; break;
2274 case VK_NUMPAD6: id = WXK_NUMPAD6; break;
2275 case VK_NUMPAD7: id = WXK_NUMPAD7; break;
2276 case VK_NUMPAD8: id = WXK_NUMPAD8; break;
2277 case VK_NUMPAD9: id = WXK_NUMPAD9; break;
2278 case VK_MULTIPLY: id = WXK_MULTIPLY; break;
2279 case VK_ADD: id = WXK_ADD; break;
2280 case VK_SUBTRACT: id = WXK_SUBTRACT; break;
2281 case VK_DECIMAL: id = WXK_DECIMAL; break;
2282 case VK_DIVIDE: id = WXK_DIVIDE; break;
2283 case VK_F1: id = WXK_F1; break;
2284 case VK_F2: id = WXK_F2; break;
2285 case VK_F3: id = WXK_F3; break;
2286 case VK_F4: id = WXK_F4; break;
2287 case VK_F5: id = WXK_F5; break;
2288 case VK_F6: id = WXK_F6; break;
2289 case VK_F7: id = WXK_F7; break;
2290 case VK_F8: id = WXK_F8; break;
2291 case VK_F9: id = WXK_F9; break;
2292 case VK_F10: id = WXK_F10; break;
2293 case VK_F11: id = WXK_F11; break;
2294 case VK_F12: id = WXK_F12; break;
2295 case VK_F13: id = WXK_F13; break;
2296 case VK_F14: id = WXK_F14; break;
2297 case VK_F15: id = WXK_F15; break;
2298 case VK_F16: id = WXK_F16; break;
2299 case VK_F17: id = WXK_F17; break;
2300 case VK_F18: id = WXK_F18; break;
2301 case VK_F19: id = WXK_F19; break;
2302 case VK_F20: id = WXK_F20; break;
2303 case VK_F21: id = WXK_F21; break;
2304 case VK_F22: id = WXK_F22; break;
2305 case VK_F23: id = WXK_F23; break;
2306 case VK_F24: id = WXK_F24; break;
2307 case VK_NUMLOCK: id = WXK_NUMLOCK; break;
2308 case VK_SCROLL: id = WXK_SCROLL; break;
2309 default:
86de7616 2310 {
cdf1e714 2311 return 0;
86de7616
DW
2312 }
2313 }
2314*/
cdf1e714 2315 return id;
86de7616
DW
2316}
2317
cdf1e714 2318int wxCharCodeWXToOS2(int id, bool *isVirtual)
86de7616 2319{
cdf1e714
DW
2320 *isVirtual = TRUE;
2321 int keySym = 0;
2322 // TODO
2323/*
2324 switch (id)
86de7616 2325 {
cdf1e714
DW
2326 case WXK_CANCEL: keySym = VK_CANCEL; break;
2327 case WXK_CLEAR: keySym = VK_CLEAR; break;
2328 case WXK_SHIFT: keySym = VK_SHIFT; break;
2329 case WXK_CONTROL: keySym = VK_CONTROL; break;
2330 case WXK_MENU : keySym = VK_MENU; break;
2331 case WXK_PAUSE: keySym = VK_PAUSE; break;
2332 case WXK_PRIOR: keySym = VK_PRIOR; break;
2333 case WXK_NEXT : keySym = VK_NEXT; break;
2334 case WXK_END: keySym = VK_END; break;
2335 case WXK_HOME : keySym = VK_HOME; break;
2336 case WXK_LEFT : keySym = VK_LEFT; break;
2337 case WXK_UP: keySym = VK_UP; break;
2338 case WXK_RIGHT: keySym = VK_RIGHT; break;
2339 case WXK_DOWN : keySym = VK_DOWN; break;
2340 case WXK_SELECT: keySym = VK_SELECT; break;
2341 case WXK_PRINT: keySym = VK_PRINT; break;
2342 case WXK_EXECUTE: keySym = VK_EXECUTE; break;
2343 case WXK_INSERT: keySym = VK_INSERT; break;
2344 case WXK_DELETE: keySym = VK_DELETE; break;
2345 case WXK_HELP : keySym = VK_HELP; break;
2346 case WXK_NUMPAD0: keySym = VK_NUMPAD0; break;
2347 case WXK_NUMPAD1: keySym = VK_NUMPAD1; break;
2348 case WXK_NUMPAD2: keySym = VK_NUMPAD2; break;
2349 case WXK_NUMPAD3: keySym = VK_NUMPAD3; break;
2350 case WXK_NUMPAD4: keySym = VK_NUMPAD4; break;
2351 case WXK_NUMPAD5: keySym = VK_NUMPAD5; break;
2352 case WXK_NUMPAD6: keySym = VK_NUMPAD6; break;
2353 case WXK_NUMPAD7: keySym = VK_NUMPAD7; break;
2354 case WXK_NUMPAD8: keySym = VK_NUMPAD8; break;
2355 case WXK_NUMPAD9: keySym = VK_NUMPAD9; break;
2356 case WXK_MULTIPLY: keySym = VK_MULTIPLY; break;
2357 case WXK_ADD: keySym = VK_ADD; break;
2358 case WXK_SUBTRACT: keySym = VK_SUBTRACT; break;
2359 case WXK_DECIMAL: keySym = VK_DECIMAL; break;
2360 case WXK_DIVIDE: keySym = VK_DIVIDE; break;
2361 case WXK_F1: keySym = VK_F1; break;
2362 case WXK_F2: keySym = VK_F2; break;
2363 case WXK_F3: keySym = VK_F3; break;
2364 case WXK_F4: keySym = VK_F4; break;
2365 case WXK_F5: keySym = VK_F5; break;
2366 case WXK_F6: keySym = VK_F6; break;
2367 case WXK_F7: keySym = VK_F7; break;
2368 case WXK_F8: keySym = VK_F8; break;
2369 case WXK_F9: keySym = VK_F9; break;
2370 case WXK_F10: keySym = VK_F10; break;
2371 case WXK_F11: keySym = VK_F11; break;
2372 case WXK_F12: keySym = VK_F12; break;
2373 case WXK_F13: keySym = VK_F13; break;
2374 case WXK_F14: keySym = VK_F14; break;
2375 case WXK_F15: keySym = VK_F15; break;
2376 case WXK_F16: keySym = VK_F16; break;
2377 case WXK_F17: keySym = VK_F17; break;
2378 case WXK_F18: keySym = VK_F18; break;
2379 case WXK_F19: keySym = VK_F19; break;
2380 case WXK_F20: keySym = VK_F20; break;
2381 case WXK_F21: keySym = VK_F21; break;
2382 case WXK_F22: keySym = VK_F22; break;
2383 case WXK_F23: keySym = VK_F23; break;
2384 case WXK_F24: keySym = VK_F24; break;
2385 case WXK_NUMLOCK: keySym = VK_NUMLOCK; break;
2386 case WXK_SCROLL: keySym = VK_SCROLL; break;
2387 default:
2388 {
2389 *isVirtual = FALSE;
2390 keySym = id;
2391 break;
2392 }
86de7616 2393 }
cdf1e714
DW
2394*/
2395 return keySym;
2396}
86de7616 2397
cdf1e714
DW
2398wxWindow *wxGetActiveWindow()
2399{
2400 // TODO
2401 return NULL;
2402}
86de7616 2403
cdf1e714
DW
2404// Windows keyboard hook. Allows interception of e.g. F1, ESCAPE
2405// in active frames and dialogs, regardless of where the focus is.
11e59d47
DW
2406//static HHOOK wxTheKeyboardHook = 0;
2407//static FARPROC wxTheKeyboardHookProc = 0;
cdf1e714 2408int wxKeyboardHook(int nCode, WORD wParam, DWORD lParam);
86de7616 2409
cdf1e714
DW
2410void wxSetKeyboardHook(bool doIt)
2411{
2412 // TODO:
2413}
86de7616 2414
cdf1e714
DW
2415int wxKeyboardHook(int nCode, WORD wParam, DWORD lParam)
2416{
2417 // TODO:
86de7616 2418
cdf1e714
DW
2419 return 0;
2420}
2421
2422#ifdef __WXDEBUG__
2423const char *wxGetMessageName(int message)
2424{
2425 // TODO
2426/*
2427 switch ( message )
86de7616 2428 {
cdf1e714
DW
2429 case 0x0000: return "WM_NULL";
2430 case 0x0001: return "WM_CREATE";
2431 case 0x0002: return "WM_DESTROY";
2432 case 0x0003: return "WM_MOVE";
2433 case 0x0005: return "WM_SIZE";
2434 case 0x0006: return "WM_ACTIVATE";
2435 case 0x0007: return "WM_SETFOCUS";
2436 case 0x0008: return "WM_KILLFOCUS";
2437 case 0x000A: return "WM_ENABLE";
2438 case 0x000B: return "WM_SETREDRAW";
2439 case 0x000C: return "WM_SETTEXT";
2440 case 0x000D: return "WM_GETTEXT";
2441 case 0x000E: return "WM_GETTEXTLENGTH";
2442 case 0x000F: return "WM_PAINT";
2443 case 0x0010: return "WM_CLOSE";
2444 case 0x0011: return "WM_QUERYENDSESSION";
2445 case 0x0012: return "WM_QUIT";
2446 case 0x0013: return "WM_QUERYOPEN";
2447 case 0x0014: return "WM_ERASEBKGND";
2448 case 0x0015: return "WM_SYSCOLORCHANGE";
2449 case 0x0016: return "WM_ENDSESSION";
2450 case 0x0017: return "WM_SYSTEMERROR";
2451 case 0x0018: return "WM_SHOWWINDOW";
2452 case 0x0019: return "WM_CTLCOLOR";
2453 case 0x001A: return "WM_WININICHANGE";
2454 case 0x001B: return "WM_DEVMODECHANGE";
2455 case 0x001C: return "WM_ACTIVATEAPP";
2456 case 0x001D: return "WM_FONTCHANGE";
2457 case 0x001E: return "WM_TIMECHANGE";
2458 case 0x001F: return "WM_CANCELMODE";
2459 case 0x0020: return "WM_SETCURSOR";
2460 case 0x0021: return "WM_MOUSEACTIVATE";
2461 case 0x0022: return "WM_CHILDACTIVATE";
2462 case 0x0023: return "WM_QUEUESYNC";
2463 case 0x0024: return "WM_GETMINMAXINFO";
2464 case 0x0026: return "WM_PAINTICON";
2465 case 0x0027: return "WM_ICONERASEBKGND";
2466 case 0x0028: return "WM_NEXTDLGCTL";
2467 case 0x002A: return "WM_SPOOLERSTATUS";
2468 case 0x002B: return "WM_DRAWITEM";
2469 case 0x002C: return "WM_MEASUREITEM";
2470 case 0x002D: return "WM_DELETEITEM";
2471 case 0x002E: return "WM_VKEYTOITEM";
2472 case 0x002F: return "WM_CHARTOITEM";
2473 case 0x0030: return "WM_SETFONT";
2474 case 0x0031: return "WM_GETFONT";
2475 case 0x0037: return "WM_QUERYDRAGICON";
2476 case 0x0039: return "WM_COMPAREITEM";
2477 case 0x0041: return "WM_COMPACTING";
2478 case 0x0044: return "WM_COMMNOTIFY";
2479 case 0x0046: return "WM_WINDOWPOSCHANGING";
2480 case 0x0047: return "WM_WINDOWPOSCHANGED";
2481 case 0x0048: return "WM_POWER";
2482
2483#ifdef __WIN32__
2484 case 0x004A: return "WM_COPYDATA";
2485 case 0x004B: return "WM_CANCELJOURNAL";
2486 case 0x004E: return "WM_NOTIFY";
2487 case 0x0050: return "WM_INPUTLANGCHANGEREQUEST";
2488 case 0x0051: return "WM_INPUTLANGCHANGE";
2489 case 0x0052: return "WM_TCARD";
2490 case 0x0053: return "WM_HELP";
2491 case 0x0054: return "WM_USERCHANGED";
2492 case 0x0055: return "WM_NOTIFYFORMAT";
2493 case 0x007B: return "WM_CONTEXTMENU";
2494 case 0x007C: return "WM_STYLECHANGING";
2495 case 0x007D: return "WM_STYLECHANGED";
2496 case 0x007E: return "WM_DISPLAYCHANGE";
2497 case 0x007F: return "WM_GETICON";
2498 case 0x0080: return "WM_SETICON";
2499#endif //WIN32
2500
2501 case 0x0081: return "WM_NCCREATE";
2502 case 0x0082: return "WM_NCDESTROY";
2503 case 0x0083: return "WM_NCCALCSIZE";
2504 case 0x0084: return "WM_NCHITTEST";
2505 case 0x0085: return "WM_NCPAINT";
2506 case 0x0086: return "WM_NCACTIVATE";
2507 case 0x0087: return "WM_GETDLGCODE";
2508 case 0x00A0: return "WM_NCMOUSEMOVE";
2509 case 0x00A1: return "WM_NCLBUTTONDOWN";
2510 case 0x00A2: return "WM_NCLBUTTONUP";
2511 case 0x00A3: return "WM_NCLBUTTONDBLCLK";
2512 case 0x00A4: return "WM_NCRBUTTONDOWN";
2513 case 0x00A5: return "WM_NCRBUTTONUP";
2514 case 0x00A6: return "WM_NCRBUTTONDBLCLK";
2515 case 0x00A7: return "WM_NCMBUTTONDOWN";
2516 case 0x00A8: return "WM_NCMBUTTONUP";
2517 case 0x00A9: return "WM_NCMBUTTONDBLCLK";
2518 case 0x0100: return "WM_KEYDOWN";
2519 case 0x0101: return "WM_KEYUP";
2520 case 0x0102: return "WM_CHAR";
2521 case 0x0103: return "WM_DEADCHAR";
2522 case 0x0104: return "WM_SYSKEYDOWN";
2523 case 0x0105: return "WM_SYSKEYUP";
2524 case 0x0106: return "WM_SYSCHAR";
2525 case 0x0107: return "WM_SYSDEADCHAR";
2526 case 0x0108: return "WM_KEYLAST";
2527
2528#ifdef __WIN32__
2529 case 0x010D: return "WM_IME_STARTCOMPOSITION";
2530 case 0x010E: return "WM_IME_ENDCOMPOSITION";
2531 case 0x010F: return "WM_IME_COMPOSITION";
2532#endif //WIN32
2533
2534 case 0x0110: return "WM_INITDIALOG";
2535 case 0x0111: return "WM_COMMAND";
2536 case 0x0112: return "WM_SYSCOMMAND";
2537 case 0x0113: return "WM_TIMER";
2538 case 0x0114: return "WM_HSCROLL";
2539 case 0x0115: return "WM_VSCROLL";
2540 case 0x0116: return "WM_INITMENU";
2541 case 0x0117: return "WM_INITMENUPOPUP";
2542 case 0x011F: return "WM_MENUSELECT";
2543 case 0x0120: return "WM_MENUCHAR";
2544 case 0x0121: return "WM_ENTERIDLE";
2545 case 0x0200: return "WM_MOUSEMOVE";
2546 case 0x0201: return "WM_LBUTTONDOWN";
2547 case 0x0202: return "WM_LBUTTONUP";
2548 case 0x0203: return "WM_LBUTTONDBLCLK";
2549 case 0x0204: return "WM_RBUTTONDOWN";
2550 case 0x0205: return "WM_RBUTTONUP";
2551 case 0x0206: return "WM_RBUTTONDBLCLK";
2552 case 0x0207: return "WM_MBUTTONDOWN";
2553 case 0x0208: return "WM_MBUTTONUP";
2554 case 0x0209: return "WM_MBUTTONDBLCLK";
2555 case 0x0210: return "WM_PARENTNOTIFY";
2556 case 0x0211: return "WM_ENTERMENULOOP";
2557 case 0x0212: return "WM_EXITMENULOOP";
2558
2559#ifdef __WIN32__
2560 case 0x0213: return "WM_NEXTMENU";
2561 case 0x0214: return "WM_SIZING";
2562 case 0x0215: return "WM_CAPTURECHANGED";
2563 case 0x0216: return "WM_MOVING";
2564 case 0x0218: return "WM_POWERBROADCAST";
2565 case 0x0219: return "WM_DEVICECHANGE";
2566#endif //WIN32
2567
2568 case 0x0220: return "WM_MDICREATE";
2569 case 0x0221: return "WM_MDIDESTROY";
2570 case 0x0222: return "WM_MDIACTIVATE";
2571 case 0x0223: return "WM_MDIRESTORE";
2572 case 0x0224: return "WM_MDINEXT";
2573 case 0x0225: return "WM_MDIMAXIMIZE";
2574 case 0x0226: return "WM_MDITILE";
2575 case 0x0227: return "WM_MDICASCADE";
2576 case 0x0228: return "WM_MDIICONARRANGE";
2577 case 0x0229: return "WM_MDIGETACTIVE";
2578 case 0x0230: return "WM_MDISETMENU";
2579 case 0x0233: return "WM_DROPFILES";
2580
2581#ifdef __WIN32__
2582 case 0x0281: return "WM_IME_SETCONTEXT";
2583 case 0x0282: return "WM_IME_NOTIFY";
2584 case 0x0283: return "WM_IME_CONTROL";
2585 case 0x0284: return "WM_IME_COMPOSITIONFULL";
2586 case 0x0285: return "WM_IME_SELECT";
2587 case 0x0286: return "WM_IME_CHAR";
2588 case 0x0290: return "WM_IME_KEYDOWN";
2589 case 0x0291: return "WM_IME_KEYUP";
2590#endif //WIN32
2591
2592 case 0x0300: return "WM_CUT";
2593 case 0x0301: return "WM_COPY";
2594 case 0x0302: return "WM_PASTE";
2595 case 0x0303: return "WM_CLEAR";
2596 case 0x0304: return "WM_UNDO";
2597 case 0x0305: return "WM_RENDERFORMAT";
2598 case 0x0306: return "WM_RENDERALLFORMATS";
2599 case 0x0307: return "WM_DESTROYCLIPBOARD";
2600 case 0x0308: return "WM_DRAWCLIPBOARD";
2601 case 0x0309: return "WM_PAINTCLIPBOARD";
2602 case 0x030A: return "WM_VSCROLLCLIPBOARD";
2603 case 0x030B: return "WM_SIZECLIPBOARD";
2604 case 0x030C: return "WM_ASKCBFORMATNAME";
2605 case 0x030D: return "WM_CHANGECBCHAIN";
2606 case 0x030E: return "WM_HSCROLLCLIPBOARD";
2607 case 0x030F: return "WM_QUERYNEWPALETTE";
2608 case 0x0310: return "WM_PALETTEISCHANGING";
2609 case 0x0311: return "WM_PALETTECHANGED";
2610
2611#ifdef __WIN32__
2612 // common controls messages - although they're not strictly speaking
2613 // standard, it's nice to decode them nevertheless
2614
2615 // listview
2616 case 0x1000 + 0: return "LVM_GETBKCOLOR";
2617 case 0x1000 + 1: return "LVM_SETBKCOLOR";
2618 case 0x1000 + 2: return "LVM_GETIMAGELIST";
2619 case 0x1000 + 3: return "LVM_SETIMAGELIST";
2620 case 0x1000 + 4: return "LVM_GETITEMCOUNT";
2621 case 0x1000 + 5: return "LVM_GETITEMA";
2622 case 0x1000 + 75: return "LVM_GETITEMW";
2623 case 0x1000 + 6: return "LVM_SETITEMA";
2624 case 0x1000 + 76: return "LVM_SETITEMW";
2625 case 0x1000 + 7: return "LVM_INSERTITEMA";
2626 case 0x1000 + 77: return "LVM_INSERTITEMW";
2627 case 0x1000 + 8: return "LVM_DELETEITEM";
2628 case 0x1000 + 9: return "LVM_DELETEALLITEMS";
2629 case 0x1000 + 10: return "LVM_GETCALLBACKMASK";
2630 case 0x1000 + 11: return "LVM_SETCALLBACKMASK";
2631 case 0x1000 + 12: return "LVM_GETNEXTITEM";
2632 case 0x1000 + 13: return "LVM_FINDITEMA";
2633 case 0x1000 + 83: return "LVM_FINDITEMW";
2634 case 0x1000 + 14: return "LVM_GETITEMRECT";
2635 case 0x1000 + 15: return "LVM_SETITEMPOSITION";
2636 case 0x1000 + 16: return "LVM_GETITEMPOSITION";
2637 case 0x1000 + 17: return "LVM_GETSTRINGWIDTHA";
2638 case 0x1000 + 87: return "LVM_GETSTRINGWIDTHW";
2639 case 0x1000 + 18: return "LVM_HITTEST";
2640 case 0x1000 + 19: return "LVM_ENSUREVISIBLE";
2641 case 0x1000 + 20: return "LVM_SCROLL";
2642 case 0x1000 + 21: return "LVM_REDRAWITEMS";
2643 case 0x1000 + 22: return "LVM_ARRANGE";
2644 case 0x1000 + 23: return "LVM_EDITLABELA";
2645 case 0x1000 + 118: return "LVM_EDITLABELW";
2646 case 0x1000 + 24: return "LVM_GETEDITCONTROL";
2647 case 0x1000 + 25: return "LVM_GETCOLUMNA";
2648 case 0x1000 + 95: return "LVM_GETCOLUMNW";
2649 case 0x1000 + 26: return "LVM_SETCOLUMNA";
2650 case 0x1000 + 96: return "LVM_SETCOLUMNW";
2651 case 0x1000 + 27: return "LVM_INSERTCOLUMNA";
2652 case 0x1000 + 97: return "LVM_INSERTCOLUMNW";
2653 case 0x1000 + 28: return "LVM_DELETECOLUMN";
2654 case 0x1000 + 29: return "LVM_GETCOLUMNWIDTH";
2655 case 0x1000 + 30: return "LVM_SETCOLUMNWIDTH";
2656 case 0x1000 + 31: return "LVM_GETHEADER";
2657 case 0x1000 + 33: return "LVM_CREATEDRAGIMAGE";
2658 case 0x1000 + 34: return "LVM_GETVIEWRECT";
2659 case 0x1000 + 35: return "LVM_GETTEXTCOLOR";
2660 case 0x1000 + 36: return "LVM_SETTEXTCOLOR";
2661 case 0x1000 + 37: return "LVM_GETTEXTBKCOLOR";
2662 case 0x1000 + 38: return "LVM_SETTEXTBKCOLOR";
2663 case 0x1000 + 39: return "LVM_GETTOPINDEX";
2664 case 0x1000 + 40: return "LVM_GETCOUNTPERPAGE";
2665 case 0x1000 + 41: return "LVM_GETORIGIN";
2666 case 0x1000 + 42: return "LVM_UPDATE";
2667 case 0x1000 + 43: return "LVM_SETITEMSTATE";
2668 case 0x1000 + 44: return "LVM_GETITEMSTATE";
2669 case 0x1000 + 45: return "LVM_GETITEMTEXTA";
2670 case 0x1000 + 115: return "LVM_GETITEMTEXTW";
2671 case 0x1000 + 46: return "LVM_SETITEMTEXTA";
2672 case 0x1000 + 116: return "LVM_SETITEMTEXTW";
2673 case 0x1000 + 47: return "LVM_SETITEMCOUNT";
2674 case 0x1000 + 48: return "LVM_SORTITEMS";
2675 case 0x1000 + 49: return "LVM_SETITEMPOSITION32";
2676 case 0x1000 + 50: return "LVM_GETSELECTEDCOUNT";
2677 case 0x1000 + 51: return "LVM_GETITEMSPACING";
2678 case 0x1000 + 52: return "LVM_GETISEARCHSTRINGA";
2679 case 0x1000 + 117: return "LVM_GETISEARCHSTRINGW";
2680 case 0x1000 + 53: return "LVM_SETICONSPACING";
2681 case 0x1000 + 54: return "LVM_SETEXTENDEDLISTVIEWSTYLE";
2682 case 0x1000 + 55: return "LVM_GETEXTENDEDLISTVIEWSTYLE";
2683 case 0x1000 + 56: return "LVM_GETSUBITEMRECT";
2684 case 0x1000 + 57: return "LVM_SUBITEMHITTEST";
2685 case 0x1000 + 58: return "LVM_SETCOLUMNORDERARRAY";
2686 case 0x1000 + 59: return "LVM_GETCOLUMNORDERARRAY";
2687 case 0x1000 + 60: return "LVM_SETHOTITEM";
2688 case 0x1000 + 61: return "LVM_GETHOTITEM";
2689 case 0x1000 + 62: return "LVM_SETHOTCURSOR";
2690 case 0x1000 + 63: return "LVM_GETHOTCURSOR";
2691 case 0x1000 + 64: return "LVM_APPROXIMATEVIEWRECT";
2692 case 0x1000 + 65: return "LVM_SETWORKAREA";
2693
2694 // tree view
2695 case 0x1100 + 0: return "TVM_INSERTITEMA";
2696 case 0x1100 + 50: return "TVM_INSERTITEMW";
2697 case 0x1100 + 1: return "TVM_DELETEITEM";
2698 case 0x1100 + 2: return "TVM_EXPAND";
2699 case 0x1100 + 4: return "TVM_GETITEMRECT";
2700 case 0x1100 + 5: return "TVM_GETCOUNT";
2701 case 0x1100 + 6: return "TVM_GETINDENT";
2702 case 0x1100 + 7: return "TVM_SETINDENT";
2703 case 0x1100 + 8: return "TVM_GETIMAGELIST";
2704 case 0x1100 + 9: return "TVM_SETIMAGELIST";
2705 case 0x1100 + 10: return "TVM_GETNEXTITEM";
2706 case 0x1100 + 11: return "TVM_SELECTITEM";
2707 case 0x1100 + 12: return "TVM_GETITEMA";
2708 case 0x1100 + 62: return "TVM_GETITEMW";
2709 case 0x1100 + 13: return "TVM_SETITEMA";
2710 case 0x1100 + 63: return "TVM_SETITEMW";
2711 case 0x1100 + 14: return "TVM_EDITLABELA";
2712 case 0x1100 + 65: return "TVM_EDITLABELW";
2713 case 0x1100 + 15: return "TVM_GETEDITCONTROL";
2714 case 0x1100 + 16: return "TVM_GETVISIBLECOUNT";
2715 case 0x1100 + 17: return "TVM_HITTEST";
2716 case 0x1100 + 18: return "TVM_CREATEDRAGIMAGE";
2717 case 0x1100 + 19: return "TVM_SORTCHILDREN";
2718 case 0x1100 + 20: return "TVM_ENSUREVISIBLE";
2719 case 0x1100 + 21: return "TVM_SORTCHILDRENCB";
2720 case 0x1100 + 22: return "TVM_ENDEDITLABELNOW";
2721 case 0x1100 + 23: return "TVM_GETISEARCHSTRINGA";
2722 case 0x1100 + 64: return "TVM_GETISEARCHSTRINGW";
2723 case 0x1100 + 24: return "TVM_SETTOOLTIPS";
2724 case 0x1100 + 25: return "TVM_GETTOOLTIPS";
2725
2726 // header
2727 case 0x1200 + 0: return "HDM_GETITEMCOUNT";
2728 case 0x1200 + 1: return "HDM_INSERTITEMA";
2729 case 0x1200 + 10: return "HDM_INSERTITEMW";
2730 case 0x1200 + 2: return "HDM_DELETEITEM";
2731 case 0x1200 + 3: return "HDM_GETITEMA";
2732 case 0x1200 + 11: return "HDM_GETITEMW";
2733 case 0x1200 + 4: return "HDM_SETITEMA";
2734 case 0x1200 + 12: return "HDM_SETITEMW";
2735 case 0x1200 + 5: return "HDM_LAYOUT";
2736 case 0x1200 + 6: return "HDM_HITTEST";
2737 case 0x1200 + 7: return "HDM_GETITEMRECT";
2738 case 0x1200 + 8: return "HDM_SETIMAGELIST";
2739 case 0x1200 + 9: return "HDM_GETIMAGELIST";
2740 case 0x1200 + 15: return "HDM_ORDERTOINDEX";
2741 case 0x1200 + 16: return "HDM_CREATEDRAGIMAGE";
2742 case 0x1200 + 17: return "HDM_GETORDERARRAY";
2743 case 0x1200 + 18: return "HDM_SETORDERARRAY";
2744 case 0x1200 + 19: return "HDM_SETHOTDIVIDER";
2745
2746 // tab control
2747 case 0x1300 + 2: return "TCM_GETIMAGELIST";
2748 case 0x1300 + 3: return "TCM_SETIMAGELIST";
2749 case 0x1300 + 4: return "TCM_GETITEMCOUNT";
2750 case 0x1300 + 5: return "TCM_GETITEMA";
2751 case 0x1300 + 60: return "TCM_GETITEMW";
2752 case 0x1300 + 6: return "TCM_SETITEMA";
2753 case 0x1300 + 61: return "TCM_SETITEMW";
2754 case 0x1300 + 7: return "TCM_INSERTITEMA";
2755 case 0x1300 + 62: return "TCM_INSERTITEMW";
2756 case 0x1300 + 8: return "TCM_DELETEITEM";
2757 case 0x1300 + 9: return "TCM_DELETEALLITEMS";
2758 case 0x1300 + 10: return "TCM_GETITEMRECT";
2759 case 0x1300 + 11: return "TCM_GETCURSEL";
2760 case 0x1300 + 12: return "TCM_SETCURSEL";
2761 case 0x1300 + 13: return "TCM_HITTEST";
2762 case 0x1300 + 14: return "TCM_SETITEMEXTRA";
2763 case 0x1300 + 40: return "TCM_ADJUSTRECT";
2764 case 0x1300 + 41: return "TCM_SETITEMSIZE";
2765 case 0x1300 + 42: return "TCM_REMOVEIMAGE";
2766 case 0x1300 + 43: return "TCM_SETPADDING";
2767 case 0x1300 + 44: return "TCM_GETROWCOUNT";
2768 case 0x1300 + 45: return "TCM_GETTOOLTIPS";
2769 case 0x1300 + 46: return "TCM_SETTOOLTIPS";
2770 case 0x1300 + 47: return "TCM_GETCURFOCUS";
2771 case 0x1300 + 48: return "TCM_SETCURFOCUS";
2772 case 0x1300 + 49: return "TCM_SETMINTABWIDTH";
2773 case 0x1300 + 50: return "TCM_DESELECTALL";
2774
2775 // toolbar
2776 case WM_USER+1: return "TB_ENABLEBUTTON";
2777 case WM_USER+2: return "TB_CHECKBUTTON";
2778 case WM_USER+3: return "TB_PRESSBUTTON";
2779 case WM_USER+4: return "TB_HIDEBUTTON";
2780 case WM_USER+5: return "TB_INDETERMINATE";
2781 case WM_USER+9: return "TB_ISBUTTONENABLED";
2782 case WM_USER+10: return "TB_ISBUTTONCHECKED";
2783 case WM_USER+11: return "TB_ISBUTTONPRESSED";
2784 case WM_USER+12: return "TB_ISBUTTONHIDDEN";
2785 case WM_USER+13: return "TB_ISBUTTONINDETERMINATE";
2786 case WM_USER+17: return "TB_SETSTATE";
2787 case WM_USER+18: return "TB_GETSTATE";
2788 case WM_USER+19: return "TB_ADDBITMAP";
2789 case WM_USER+20: return "TB_ADDBUTTONS";
2790 case WM_USER+21: return "TB_INSERTBUTTON";
2791 case WM_USER+22: return "TB_DELETEBUTTON";
2792 case WM_USER+23: return "TB_GETBUTTON";
2793 case WM_USER+24: return "TB_BUTTONCOUNT";
2794 case WM_USER+25: return "TB_COMMANDTOINDEX";
2795 case WM_USER+26: return "TB_SAVERESTOREA";
2796 case WM_USER+76: return "TB_SAVERESTOREW";
2797 case WM_USER+27: return "TB_CUSTOMIZE";
2798 case WM_USER+28: return "TB_ADDSTRINGA";
2799 case WM_USER+77: return "TB_ADDSTRINGW";
2800 case WM_USER+29: return "TB_GETITEMRECT";
2801 case WM_USER+30: return "TB_BUTTONSTRUCTSIZE";
2802 case WM_USER+31: return "TB_SETBUTTONSIZE";
2803 case WM_USER+32: return "TB_SETBITMAPSIZE";
2804 case WM_USER+33: return "TB_AUTOSIZE";
2805 case WM_USER+35: return "TB_GETTOOLTIPS";
2806 case WM_USER+36: return "TB_SETTOOLTIPS";
2807 case WM_USER+37: return "TB_SETPARENT";
2808 case WM_USER+39: return "TB_SETROWS";
2809 case WM_USER+40: return "TB_GETROWS";
2810 case WM_USER+42: return "TB_SETCMDID";
2811 case WM_USER+43: return "TB_CHANGEBITMAP";
2812 case WM_USER+44: return "TB_GETBITMAP";
2813 case WM_USER+45: return "TB_GETBUTTONTEXTA";
2814 case WM_USER+75: return "TB_GETBUTTONTEXTW";
2815 case WM_USER+46: return "TB_REPLACEBITMAP";
2816 case WM_USER+47: return "TB_SETINDENT";
2817 case WM_USER+48: return "TB_SETIMAGELIST";
2818 case WM_USER+49: return "TB_GETIMAGELIST";
2819 case WM_USER+50: return "TB_LOADIMAGES";
2820 case WM_USER+51: return "TB_GETRECT";
2821 case WM_USER+52: return "TB_SETHOTIMAGELIST";
2822 case WM_USER+53: return "TB_GETHOTIMAGELIST";
2823 case WM_USER+54: return "TB_SETDISABLEDIMAGELIST";
2824 case WM_USER+55: return "TB_GETDISABLEDIMAGELIST";
2825 case WM_USER+56: return "TB_SETSTYLE";
2826 case WM_USER+57: return "TB_GETSTYLE";
2827 case WM_USER+58: return "TB_GETBUTTONSIZE";
2828 case WM_USER+59: return "TB_SETBUTTONWIDTH";
2829 case WM_USER+60: return "TB_SETMAXTEXTROWS";
2830 case WM_USER+61: return "TB_GETTEXTROWS";
2831 case WM_USER+41: return "TB_GETBITMAPFLAGS";
2832
2833#endif //WIN32
2834
2835 default:
2836 static char s_szBuf[128];
2837 sprintf(s_szBuf, "<unknown message = %d>", message);
2838 return s_szBuf;
86de7616 2839 }
86de7616 2840*/
cdf1e714 2841 return NULL;
86de7616
DW
2842}
2843
11e59d47
DW
2844#endif // __WXDEBUG__
2845