1 /////////////////////////////////////////////////////////////////////////////
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 // For compilers that support precompilation, includes "wx.h".
15 #include "wx/wxprec.h"
21 #include "wx/window.h"
26 #include "wx/dcclient.h"
30 #include "wx/layout.h"
31 #include "wx/dialog.h"
33 #include "wx/listbox.h"
34 #include "wx/button.h"
35 #include "wx/msgdlg.h"
41 #include "wx/ownerdrw.h"
44 #if wxUSE_DRAG_AND_DROP
48 #include "wx/menuitem.h"
51 #include "wx/os2/private.h"
54 #include "wx/tooltip.h"
65 #include "wx/textctrl.h"
70 // Place compiler, OS specific includes here
74 // Standard macros -- these are for OS/2 PM, but most GUI's have something similar
78 // SHORT1FROMMP -- LOWORD
80 #define GET_X_LPARAM(mp) ((unsigned short)(unsigned long)(mp))
82 // SHORT2FROMMP -- HIWORD
84 #define GET_Y_LPARAM(mp) ((unsigned short)(unsigned long)(mp >> 16))
85 #endif // GET_X_LPARAM
88 # define CW_USEDEFAULT ((int)0x80000000)
91 // ---------------------------------------------------------------------------
93 // ---------------------------------------------------------------------------
96 // The last Windows message we got (MT-UNSAFE)
100 wxMenu
* wxCurrentPopupMenu
= NULL
;
101 extern wxList WXDLLEXPORT wxPendingDelete
;
102 #if !defined(__VISAGECPP__) || (__IBMCPP__ < 400)
103 extern wxChar wxCanvasClassName
[];
105 wxList
* wxWinHandleList
= NULL
;
107 // ---------------------------------------------------------------------------
109 // ---------------------------------------------------------------------------
112 // the window proc for all our windows; most gui's have something similar
114 MRESULT EXPENTRY
wxWndProc( HWND hWnd
121 const char *wxGetMessageName(int message
);
124 void wxRemoveHandleAssociation(wxWindow
* pWin
);
125 void wxAssociateWinWithHandle( HWND hWnd
128 wxWindow
* wxFindWinFromHandle(WXHWND hWnd
);
131 // This magical function is used to translate VK_APPS key presses to right
134 static void TranslateKbdEventToMouse( wxWindow
* pWin
141 // get the current state of SHIFT/CTRL keys
143 static inline bool IsShiftDown() { return (::WinGetKeyState(HWND_DESKTOP
, VK_SHIFT
) & 0x8000) != 0; }
144 static inline bool IsCtrlDown() { return (::WinGetKeyState(HWND_DESKTOP
, VK_CTRL
) & 0x8000) != 0; }
145 // ---------------------------------------------------------------------------
147 // ---------------------------------------------------------------------------
149 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowBase
)
151 BEGIN_EVENT_TABLE(wxWindow
, wxWindowBase
)
152 EVT_ERASE_BACKGROUND(wxWindow::OnEraseBackground
)
153 EVT_SYS_COLOUR_CHANGED(wxWindow::OnSysColourChanged
)
154 EVT_INIT_DIALOG(wxWindow::OnInitDialog
)
155 EVT_IDLE(wxWindow::OnIdle
)
156 EVT_SET_FOCUS(wxWindow::OnSetFocus
)
159 // ===========================================================================
161 // ===========================================================================
164 // Find an item given the PM Window id
166 wxWindow
* wxWindow::FindItem(
170 wxControl
* pItem
= wxDynamicCast( this
177 // I it we or one of our "internal" children?
179 if (pItem
->GetId() == lId
||
180 (pItem
->GetSubcontrols().Index(lId
) != wxNOT_FOUND
))
186 wxWindowList::Node
* pCurrent
= GetChildren().GetFirst();
190 wxWindow
* pChildWin
= pCurrent
->GetData();
191 wxWindow
* pWnd
= pChildWin
->FindItem(lId
);
196 pCurrent
= pCurrent
->GetNext();
199 } // end of wxWindow::FindItem
202 // Find an item given the PM Window handle
204 wxWindow
* wxWindow::FindItemByHWND(
209 wxWindowList::Node
* pCurrent
= GetChildren().GetFirst();
213 wxWindow
* pParent
= pCurrent
->GetData();
216 // Do a recursive search.
218 wxWindow
* pWnd
= pParent
->FindItemByHWND(hWnd
);
223 if (!bControlOnly
|| pParent
->IsKindOf(CLASSINFO(wxControl
)))
225 wxWindow
* pItem
= pCurrent
->GetData();
227 if (pItem
->GetHWND() == hWnd
)
231 if (pItem
->ContainsHWND(hWnd
))
235 pCurrent
= pCurrent
->GetNext();
238 } // end of wxWindow::FindItemByHWND
241 // Default command handler
243 bool wxWindow::OS2Command(
244 WXUINT
WXUNUSED(uParam
)
245 , WXWORD
WXUNUSED(uId
)
251 // ----------------------------------------------------------------------------
252 // constructors and such
253 // ----------------------------------------------------------------------------
255 void wxWindow::Init()
265 m_bDoubleClickAllowed
= 0;
266 m_bWinCaptured
= FALSE
;
268 m_isBeingDeleted
= FALSE
;
271 m_bMouseInWindow
= FALSE
;
280 // Pass WM_GETDLGCODE to DefWindowProc()
285 m_bBackgroundTransparent
= FALSE
;
288 // As all windows are created with WS_VISIBLE style...
292 #if wxUSE_MOUSEEVENT_HACK
295 m_nLastMouseEvent
= -1;
296 #endif // wxUSE_MOUSEEVENT_HACK
302 wxWindow::~wxWindow()
304 m_isBeingDeleted
= TRUE
;
306 OS2DetachWindowMenu();
308 m_parent
->RemoveChild(this);
313 if(!::WinDestroyWindow(GetHWND()))
314 wxLogLastError(wxT("DestroyWindow"));
316 // remove hWnd <-> wxWindow association
318 wxRemoveHandleAssociation(this);
320 } // end of wxWindow::~wxWindow
322 bool wxWindow::Create(
325 , const wxPoint
& rPos
326 , const wxSize
& rSize
328 , const wxString
& rName
331 HWND hParent
= NULLHANDLE
;
333 wxCHECK_MSG(pParent
, FALSE
, wxT("can't create wxWindow without parent"));
335 if ( !CreateBase( pParent
347 pParent
->AddChild(this);
348 hParent
= GetWinHwnd(pParent
);
351 hParent
= HWND_DESKTOP
;
353 ULONG ulCreateFlags
= 0L;
357 // Most wxSTYLES are really PM Class specific styles and will be
358 // set in those class create procs. PM's basic windows styles are
361 ulCreateFlags
|= WS_VISIBLE
;
364 if ( lStyle
& wxCLIP_SIBLINGS
)
365 ulCreateFlags
|= WS_CLIPSIBLINGS
;
367 if (lStyle
& wxCLIP_CHILDREN
)
368 ulCreateFlags
|= WS_CLIPCHILDREN
;
371 // Empty stuff for now since PM has no custome 3D effects
372 // Doesn't mean someone cannot make some up though
375 WXDWORD dwExStyle
= Determine3DEffects(WS_EX_CLIENTEDGE
, &bWant3D
);
378 // Generic OS/2 Windows are created with no owner, no Z Order, no Control data,
379 // and no presentation parameters
382 ,(PSZ
)wxCanvasClassName
387 ,WidthDefault(rSize
.x
)
388 ,HeightDefault(rSize
.y
)
395 } // end of wxWindow::Create
397 // ---------------------------------------------------------------------------
399 // ---------------------------------------------------------------------------
401 void wxWindow::SetFocus()
403 HWND hWnd
= GetHwnd();
406 ::WinSetFocus(HWND_DESKTOP
, hWnd
);
407 } // end of wxWindow::SetFocus
409 wxWindow
* wxWindowBase::FindFocus()
411 HWND hWnd
= ::WinQueryFocus(HWND_DESKTOP
);
415 return wxFindWinFromHandle((WXHWND
)hWnd
);
418 } // wxWindowBase::FindFocus
420 bool wxWindow::Enable(
424 if (!wxWindowBase::Enable(bEnable
))
427 HWND hWnd
= GetHwnd();
430 ::WinEnableWindow(hWnd
, (BOOL
)bEnable
);
432 wxWindowList::Node
* pNode
= GetChildren().GetFirst();
436 wxWindow
* pChild
= pNode
->GetData();
438 pChild
->Enable(bEnable
);
439 pNode
= pNode
->GetNext();
442 } // end of wxWindow::Enable
448 if (!wxWindowBase::Show(bShow
))
451 HWND hWnd
= GetHwnd();
453 ::WinShowWindow(hWnd
, bShow
);
457 ::WinSetWindowPos(hWnd
, HWND_TOP
, 0, 0, 0, 0, SWP_ACTIVATE
| SWP_ZORDER
);
460 } // end of wxWindow::Show
462 void wxWindow::Raise()
464 ::WinSetWindowPos(GetHwnd(), HWND_TOP
, 0, 0, 0, 0, SWP_ZORDER
| SWP_ACTIVATE
);
465 } // end of wxWindow::Raise
467 void wxWindow::Lower()
469 ::WinSetWindowPos(GetHwnd(), HWND_BOTTOM
, 0, 0, 0, 0, SWP_ZORDER
| SWP_DEACTIVATE
);
470 } // end of wxWindow::Lower
472 void wxWindow::SetTitle(
473 const wxString
& rTitle
476 ::WinSetWindowText(GetHwnd(), rTitle
.c_str());
477 } // end of wxWindow::SetTitle
479 wxString
wxWindow::GetTitle() const
481 return wxGetWindowText(GetHWND());
482 } // end of wxWindow::GetTitle
484 void wxWindow::CaptureMouse()
486 HWND hWnd
= GetHwnd();
488 if (hWnd
&& !m_bWinCaptured
)
490 ::WinSetCapture(HWND_DESKTOP
, hWnd
);
491 m_bWinCaptured
= TRUE
;
493 } // end of wxWindow::GetTitle
495 void wxWindow::ReleaseMouse()
499 ::WinSetCapture(HWND_DESKTOP
, NULLHANDLE
);
500 m_bWinCaptured
= FALSE
;
502 } // end of wxWindow::ReleaseMouse
504 bool wxWindow::SetFont(
508 if (!wxWindowBase::SetFont(rFont
))
514 HWND hWnd
= GetHwnd();
520 sprintf(zFont
, "%d.%s", rFont
.GetPointSize(), rFont
.GetFaceName().c_str());
521 return(::WinSetPresParam(hWnd
, PP_FONTNAMESIZE
, strlen(zFont
), (PVOID
)zFont
));
526 bool wxWindow::SetCursor(
527 const wxCursor
& rCursor
528 ) // check if base implementation is OK
530 if ( !wxWindowBase::SetCursor(rCursor
))
536 wxASSERT_MSG( m_cursor
.Ok(),
537 wxT("cursor must be valid after call to the base version"));
539 HWND hWnd
= GetHwnd();
545 hPS
= ::WinGetPS(hWnd
);
547 ::WinQueryPointerPos(HWND_DESKTOP
, &vPoint
);
548 ::WinQueryWindowRect(hWnd
, &vRect
);
550 hRGN
= ::GpiCreateRegion(hPS
, 1L, &vRect
);
552 if ((::GpiPtInRegion(hPS
, hRGN
, &vPoint
) == PRGN_INSIDE
) && !wxIsBusy())
554 ::WinSetPointer(HWND_DESKTOP
, (HPOINTER
)m_cursor
.GetHCURSOR());
557 } // end of wxWindow::SetCursor
559 void wxWindow::WarpPointer(
568 ::WinQueryWindowRect(GetHwnd(), &vRect
);
572 ::WinSetPointerPos(HWND_DESKTOP
, (LONG
)nX
, (LONG
)(nY
));
573 } // end of wxWindow::WarpPointer
575 #if WXWIN_COMPATIBILITY
576 void wxWindow::OS2DeviceToLogical (float *x
, float *y
) const
579 #endif // WXWIN_COMPATIBILITY
581 // ---------------------------------------------------------------------------
583 // ---------------------------------------------------------------------------
585 #if WXWIN_COMPATIBILITY
586 void wxWindow::SetScrollRange(
592 ::WinSendMsg(GetHwnd(), SBM_SETSCROLLBAR
, (MPARAM
)0, MPFROM2SHORT(0, nRange
));
593 } // end of wxWindow::SetScrollRange
595 void wxWindow::SetScrollPage(
601 if ( orient
== wxHORIZONTAL
)
607 int wxWindow::OldGetScrollRange(
612 HWND hWnd
= GetHwnd();
616 mRc
= WinSendMsg(hWnd
, SBM_QUERYRANGE
, (MPARAM
)0L, (MPARAM
)0L);
617 return(SHORT2FROMMR(mRc
));
620 } // end of wxWindow::OldGetScrollRange
622 int wxWindow::GetScrollPage(
626 if (nOrient
== wxHORIZONTAL
)
627 return m_nXThumbSize
;
629 return m_nYThumbSize
;
630 } // end of wxWindow::GetScrollPage
631 #endif // WXWIN_COMPATIBILITY
633 int wxWindow::GetScrollPos(
637 return((int)::WinSendMsg(GetHwnd(), SBM_QUERYPOS
, (MPARAM
)NULL
, (MPARAM
)NULL
));
638 } // end of wxWindow::GetScrollPos
640 int wxWindow::GetScrollRange(
646 mr
= ::WinSendMsg(GetHwnd(), SBM_QUERYRANGE
, (MPARAM
)NULL
, (MPARAM
)NULL
);
647 return((int)SHORT2FROMMR(mr
));
648 } // end of wxWindow::GetScrollRange
650 int wxWindow::GetScrollThumb(
654 WNDPARAMS vWndParams
;
657 ::WinSendMsg(GetHwnd(), WM_QUERYWINDOWPARAMS
, (MPARAM
)&vWndParams
, (MPARAM
)NULL
);
658 pSbcd
= (PSBCDATA
)vWndParams
.pCtlData
;
659 return((int)pSbcd
->posThumb
);
660 } // end of wxWindow::GetScrollThumb
662 void wxWindow::SetScrollPos(
668 ::WinSendMsg(GetHwnd(), SBM_SETPOS
, (MPARAM
)nPos
, (MPARAM
)NULL
);
669 } // end of wxWindow::SetScrollPos(
671 void wxWindow::SetScrollbar(
679 ::WinSendMsg(GetHwnd(), SBM_SETSCROLLBAR
, (MPARAM
)nPos
, MPFROM2SHORT(0, nRange
));
680 if (nOrient
== wxHORIZONTAL
)
682 m_nXThumbSize
= nThumbVisible
;
686 m_nYThumbSize
= nThumbVisible
;
688 } // end of wxWindow::SetScrollbar
690 void wxWindow::ScrollWindow(
693 , const wxRect
* pRect
700 vRect2
.xLeft
= pRect
->x
;
701 vRect2
.yTop
= pRect
->y
;
702 vRect2
.xRight
= pRect
->x
+ pRect
->width
;
703 vRect2
.yBottom
= pRect
->y
+ pRect
->height
;
707 ::WinScrollWindow(GetHwnd(), (LONG
)nDx
, (LONG
)nDy
, &vRect2
, NULL
, NULLHANDLE
, NULL
, 0L);
709 ::WinScrollWindow(GetHwnd(), nDx
, nDy
, NULL
, NULL
, NULLHANDLE
, NULL
, 0L);
710 } // end of wxWindow::ScrollWindow
712 // ---------------------------------------------------------------------------
714 // ---------------------------------------------------------------------------
716 void wxWindow::SubclassWin(
720 HWND hwnd
= (HWND
)hWnd
;
722 wxASSERT_MSG( !m_fnOldWndProc
, wxT("subclassing window twice?") );
723 wxCHECK_RET(::WinIsWindow(vHabmain
, hwnd
), wxT("invalid HWND in SubclassWin") );
724 m_fnOldWndProc
= (WXFARPROC
) ::WinSubclassWindow(hwnd
, (PFNWP
)wxWndProc
);
725 } // end of wxWindow::SubclassWin
727 void wxWindow::UnsubclassWin()
730 // Restore old Window proc
732 HWND hwnd
= GetHWND();
736 wxCHECK_RET( ::WinIsWindow(vHabmain
, hwnd
), wxT("invalid HWND in UnsubclassWin") );
738 PFNWP fnProc
= (PFNWP
)::WinQueryWindowPtr(hwnd
, QWP_PFNWP
);
740 if ( (m_fnOldWndProc
!= 0) && (fnProc
!= (PFNWP
) m_fnOldWndProc
))
742 WinSubclassWindow(hwnd
, (PFNWP
)m_fnOldWndProc
);
746 } // end of wxWindow::UnsubclassWin
749 // Make a Windows extended style from the given wxWindows window style
751 WXDWORD
wxWindow::MakeExtendedStyle(
753 , bool bEliminateBorders
757 // PM does not support extended style
761 } // end of wxWindow::MakeExtendedStyle
764 // Determines whether native 3D effects or CTL3D should be used,
765 // applying a default border style if required, and returning an extended
766 // style to pass to CreateWindowEx.
768 WXDWORD
wxWindow::Determine3DEffects(
769 WXDWORD dwDefaultBorderStyle
773 WXDWORD dwStyle
= 0L;
776 // Native PM does not have any specialize 3D effects like WIN32 does
780 } // end of wxWindow::Determine3DEffects
782 #if WXWIN_COMPATIBILITY
783 void wxWindow::OnCommand(
785 , wxCommandEvent
& rEvent
788 if (GetEventHandler()->ProcessEvent(rEvent
))
791 m_parent
->GetEventHandler()->OnCommand( rWin
794 } // end of wxWindow::OnCommand
796 wxObject
* wxWindow::GetChild(
801 // Return a pointer to the Nth object in the Panel
803 wxNode
* pNode
= GetChildren().First();
807 pNode
= pNode
->Next();
810 wxObject
* pObj
= (wxObject
*)pNode
->Data();
815 } // end of wxWindow::GetChild
817 #endif // WXWIN_COMPATIBILITY
820 // Setup background and foreground colours correctly
822 void wxWindow::SetupColours()
825 SetBackgroundColour(GetParent()->GetBackgroundColour());
826 } // end of wxWindow::SetupColours
828 void wxWindow::OnIdle(
833 // Check if we need to send a LEAVE event
835 if (m_bMouseInWindow
)
839 ::WinQueryPointerPos(HWND_DESKTOP
, &vPoint
);
840 if (::WinWindowFromPoint(HWND_DESKTOP
, &vPoint
, FALSE
) != (HWND
)GetHwnd())
843 // Generate a LEAVE event
845 m_bMouseInWindow
= FALSE
;
848 // Unfortunately the mouse button and keyboard state may have changed
849 // by the time the OnIdle function is called, so 'state' may be
854 if (::WinGetKeyState(HWND_DESKTOP
, VK_SHIFT
) != 0)
856 if (::WinGetKeyState(HWND_DESKTOP
, VK_CTRL
) != 0);
859 wxMouseEvent
rEvent(wxEVT_LEAVE_WINDOW
);
861 InitMouseEvent( rEvent
866 (void)GetEventHandler()->ProcessEvent(rEvent
);
870 } // end of wxWindow::OnIdle
873 // Set this window to be the child of 'parent'.
875 bool wxWindow::Reparent(
879 if (!wxWindowBase::Reparent(pParent
))
882 HWND hWndChild
= GetHwnd();
883 HWND hWndParent
= GetParent() ? GetWinHwnd(GetParent()) : (HWND
)0;
885 ::WinSetParent(hWndChild
, hWndParent
, TRUE
);
887 } // end of wxWindow::Reparent
889 void wxWindow::Clear()
891 wxClientDC
vDc(this);
892 wxBrush
vBrush( GetBackgroundColour()
896 vDc
.SetBackground(vBrush
);
898 } // end of wxWindow::Clear
900 void wxWindow::Refresh(
902 , const wxRect
* pRect
905 HWND hWnd
= GetHwnd();
913 vOs2Rect
.xLeft
= pRect
->x
;
914 vOs2Rect
.yTop
= pRect
->y
;
915 vOs2Rect
.xRight
= pRect
->x
+ pRect
->width
;
916 vOs2Rect
.yBottom
= pRect
->y
+ pRect
->height
;
918 ::WinInvalidateRect(hWnd
, &vOs2Rect
, bEraseBack
);
921 ::WinInvalidateRect(hWnd
, NULL
, bEraseBack
);
923 } // end of wxWindow::Refresh
925 // ---------------------------------------------------------------------------
927 // ---------------------------------------------------------------------------
929 #if wxUSE_DRAG_AND_DROP
930 void wxWindow::SetDropTarget(
931 wxDropTarget
* pDropTarget
934 if (m_dropTarget
!= 0)
936 m_dropTarget
->Revoke(m_hWnd
);
939 m_dropTarget
= pDropTarget
;
940 if (m_dropTarget
!= 0)
941 m_dropTarget
->Register(m_hWnd
);
942 } // end of wxWindow::SetDropTarget
946 // old style file-manager drag&drop support: we retain the old-style
947 // DragAcceptFiles in parallel with SetDropTarget.
949 void wxWindow::DragAcceptFiles(
953 HWND hWnd
= GetHwnd();
956 ::DrgAcceptDroppedFiles(hWnd
, NULL
, NULL
, DO_COPY
, 0L);
957 } // end of wxWindow::DragAcceptFiles
959 // ----------------------------------------------------------------------------
961 // ----------------------------------------------------------------------------
965 void wxWindow::DoSetToolTip(
969 wxWindowBase::DoSetToolTip(pTooltip
);
972 m_tooltip
->SetWindow(this);
973 } // end of wxWindow::DoSetToolTip
975 #endif // wxUSE_TOOLTIPS
977 // ---------------------------------------------------------------------------
978 // moving and resizing
979 // ---------------------------------------------------------------------------
982 void wxWindow::DoGetSize(
987 HWND hWnd
= GetHwnd();
990 ::WinQueryWindowRect(hWnd
, &vRect
);
993 *pWidth
= vRect
.xRight
- vRect
.xLeft
;
995 // OS/2 PM is backwards from windows
996 *pHeight
= vRect
.yTop
- vRect
.yBottom
;
997 } // end of wxWindow::DoGetSize
999 void wxWindow::DoGetPosition(
1004 HWND hWnd
= GetHwnd();
1008 ::WinQueryWindowRect(hWnd
, &vRect
);
1010 vPoint
.x
= vRect
.xLeft
;
1011 vPoint
.y
= vRect
.yBottom
;
1014 // We do the adjustments with respect to the parent only for the "real"
1015 // children, not for the dialogs/frames
1019 HWND hParentWnd
= 0;
1020 wxWindow
* pParent
= GetParent();
1023 hParentWnd
= GetWinHwnd(pParent
);
1026 // Since we now have the absolute screen coords, if there's a parent we
1027 // must subtract its bottom left corner
1033 ::WinQueryWindowRect(hParentWnd
, &vRect2
);
1034 vPoint
.x
-= vRect
.xLeft
;
1035 vPoint
.y
-= vRect
.yBottom
;
1039 // We may be faking the client origin. So a window that's really at (0,
1040 // 30) may appear (to wxWin apps) to be at (0, 0).
1042 wxPoint
vPt(pParent
->GetClientAreaOrigin());
1052 } // end of wxWindow::DoGetPosition
1054 void wxWindow::DoScreenToClient(
1059 HWND hWnd
= GetHwnd();
1062 ::WinQueryWindowPos(hWnd
, &vSwp
);
1068 } // end of wxWindow::DoScreenToClient
1070 void wxWindow::DoClientToScreen(
1075 HWND hWnd
= GetHwnd();
1078 ::WinQueryWindowPos(hWnd
, &vSwp
);
1084 } // end of wxWindow::DoClientToScreen
1087 // Get size *available for subwindows* i.e. excluding menu bar etc.
1088 // Must be a frame type window
1090 void wxWindow::DoGetClientSize(
1095 HWND hWnd
= GetHwnd();
1099 hWndClient
= ::WinWindowFromID(GetHwnd(), FID_CLIENT
);
1100 if( hWndClient
== NULLHANDLE
)
1101 ::WinQueryWindowRect(GetHwnd(), &vRect
);
1103 ::WinQueryWindowRect(hWndClient
, &vRect
);
1106 *pWidth
= vRect
.xRight
;
1108 *pHeight
= vRect
.yTop
;
1109 } // end of wxWindow::DoGetClientSize
1111 void wxWindow::DoMoveWindow(
1118 if ( !::WinSetWindowPos( GetHwnd()
1124 ,SWP_SIZE
| SWP_MOVE
1127 wxLogLastError("MoveWindow");
1129 } // end of wxWindow::DoMoveWindow
1132 // Set the size of the window: if the dimensions are positive, just use them,
1133 // but if any of them is equal to -1, it means that we must find the value for
1134 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1135 // which case -1 is a valid value for x and y)
1137 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1138 // the width/height to best suit our contents, otherwise we reuse the current
1141 void wxWindow::DoSetSize(
1150 // Get the current size and position...
1156 wxSize
vSize(-1, -1);
1158 GetPosition( &nCurrentX
1161 GetSize( &nCurrentWidth
1166 // ... and don't do anything (avoiding flicker) if it's already ok
1168 if ( nX
== nCurrentX
&&
1170 nWidth
== nCurrentWidth
&&
1171 nHeight
== nCurrentHeight
1177 if (nX
== -1 && !(nSizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
1179 if (nY
== -1 && !(nSizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
1182 AdjustForParentClientOrigin( nX
1189 if (nSizeFlags
& wxSIZE_AUTO_WIDTH
)
1191 vSize
= DoGetBestSize();
1197 // Just take the current one
1199 nWidth
= nCurrentWidth
;
1205 if (nSizeFlags
& wxSIZE_AUTO_HEIGHT
)
1209 vSize
= DoGetBestSize();
1215 // just take the current one
1216 nHeight
= nCurrentHeight
;
1225 } // end of wxWindow::DoSetSize
1227 void wxWindow::DoSetClientSize(
1232 wxWindow
* pParent
= GetParent();
1233 HWND hWnd
= GetHwnd();
1234 HWND hParentWnd
= (HWND
)0;
1235 HWND hClientWnd
= (HWND
)0;
1240 hClientWnd
= ::WinWindowFromID(GetHwnd(), FID_CLIENT
);
1241 ::WinQueryWindowRect(hClientWnd
, &vRect2
);
1244 hParentWnd
= (HWND
) pParent
->GetHWND();
1246 ::WinQueryWindowRect(hWnd
, &vRect
);
1247 ::WinQueryWindowRect(hParentWnd
, &vRect3
);
1249 // Find the difference between the entire window (title bar and all)
1250 // and the client area; add this to the new client size to move the
1251 // window. OS/2 is backward from windows on height
1253 int nActualWidth
= vRect2
.xRight
- vRect2
.xLeft
- vRect
.xRight
+ nWidth
;
1254 int nActualHeight
= vRect2
.yTop
- vRect2
.yBottom
- vRect
.yTop
+ nHeight
;
1257 // If there's a parent, must subtract the parent's bottom left corner
1258 // since MoveWindow moves relative to the parent
1262 vPoint
.x
= vRect2
.xLeft
;
1263 vPoint
.y
= vRect2
.yBottom
;
1266 vPoint
.x
-= vRect3
.xLeft
;
1267 vPoint
.y
-= vRect3
.yBottom
;
1270 DoMoveWindow( vPoint
.x
1276 wxSizeEvent
vEvent( wxSize( nWidth
1282 vEvent
.SetEventObject(this);
1283 GetEventHandler()->ProcessEvent(vEvent
);
1284 } // end of wxWindow::DoSetClientSize
1286 wxPoint
wxWindow::GetClientAreaOrigin() const
1288 return wxPoint(0, 0);
1289 } // end of wxWindow::GetClientAreaOrigin
1291 void wxWindow::AdjustForParentClientOrigin(
1298 // Don't do it for the dialogs/frames - they float independently of their
1303 wxWindow
* pParent
= GetParent();
1305 if (!(nSizeFlags
& wxSIZE_NO_ADJUSTMENTS
) && pParent
)
1307 wxPoint
vPoint(pParent
->GetClientAreaOrigin());
1312 } // end of wxWindow::AdjustForParentClientOrigin
1314 // ---------------------------------------------------------------------------
1316 // ---------------------------------------------------------------------------
1318 int wxWindow::GetCharHeight() const
1321 FONTMETRICS vFontMetrics
;
1324 hPs
= ::WinGetPS(GetHwnd());
1326 if(!GpiQueryFontMetrics(hPs
, sizeof(FONTMETRICS
), &vFontMetrics
))
1328 ::WinReleasePS(hPs
);
1331 ::WinReleasePS(hPs
);
1332 return(vFontMetrics
.lMaxAscender
+ vFontMetrics
.lMaxDescender
);
1333 } // end of wxWindow::GetCharHeight
1335 int wxWindow::GetCharWidth() const
1338 FONTMETRICS vFontMetrics
;
1340 hPs
= ::WinGetPS(GetHwnd());
1342 if(!GpiQueryFontMetrics(hPs
, sizeof(FONTMETRICS
), &vFontMetrics
))
1344 ::WinReleasePS(hPs
);
1347 ::WinReleasePS(hPs
);
1348 return(vFontMetrics
.lAveCharWidth
);
1349 } // end of wxWindow::GetCharWidth
1351 void wxWindow::GetTextExtent(
1352 const wxString
& rString
1356 , int* pExternalLeading
1357 , const wxFont
* pTheFont
1360 const wxFont
* pFontToUse
= pTheFont
;
1363 hPs
= ::WinGetPS(GetHwnd());
1365 // TODO: Will have to play with fonts later
1368 pFontToUse = &m_font;
1371 HFONT hFfontOld = 0;
1373 if (pFontToUse && pFontToUse->Ok())
1376 hFnt = (HFONT)((wxFont *)pFontToUse)->GetResourceHandle(); // const_cast
1378 hFontOld = (HFONT)SelectObject(dc,fnt);
1383 GetTextExtentPoint(dc, string, (int)string.Length(), &sizeRect);
1384 GetTextMetrics(dc, &tm);
1386 if ( fontToUse && fnt && hfontOld )
1387 SelectObject(dc, hfontOld);
1389 ReleaseDC(hWnd, dc);
1396 *descent = tm.tmDescent;
1397 if ( externalLeading )
1398 *externalLeading = tm.tmExternalLeading;
1400 ::WinReleasePS(hPs
);
1403 #if wxUSE_CARET && WXWIN_COMPATIBILITY
1404 // ---------------------------------------------------------------------------
1405 // Caret manipulation
1406 // ---------------------------------------------------------------------------
1408 void wxWindow::CreateCaret(
1413 SetCaret(new wxCaret( this
1417 } // end of wxWindow::CreateCaret
1419 void wxWindow::CreateCaret(
1420 const wxBitmap
* pBitmap
1423 wxFAIL_MSG("not implemented");
1424 } // end of wxWindow::CreateCaret
1426 void wxWindow::ShowCaret(
1430 wxCHECK_RET( m_caret
, "no caret to show" );
1432 m_caret
->Show(bShow
);
1433 } // end of wxWindow::ShowCaret
1435 void wxWindow::DestroyCaret()
1438 } // end of wxWindow::DestroyCaret
1440 void wxWindow::SetCaretPos(
1444 wxCHECK_RET( m_caret
, "no caret to move" );
1449 } // end of wxWindow::SetCaretPos
1451 void wxWindow::GetCaretPos(
1456 wxCHECK_RET( m_caret
, "no caret to get position of" );
1458 m_caret
->GetPosition( pX
1461 } // end of wxWindow::GetCaretPos
1463 #endif //wxUSE_CARET
1465 // ---------------------------------------------------------------------------
1467 // ---------------------------------------------------------------------------
1469 bool wxWindow::DoPopupMenu(
1475 HWND hWnd
= GetHwnd();
1476 HWND hWndParent
= GetParent() ? GetWinHwnd(GetParent()) : (HWND
)0;
1477 HWND hMenu
= GetHmenuOf(pMenu
);
1479 pMenu
->SetInvokingWindow(this);
1482 DoClientToScreen( &nX
1485 wxCurrentPopupMenu
= pMenu
;
1487 ::WinPopupMenu( hWndParent
1493 ,PU_MOUSEBUTTON2DOWN
| PU_MOUSEBUTTON2
| PU_KEYBOARD
1496 wxCurrentPopupMenu
= NULL
;
1498 pMenu
->SetInvokingWindow(NULL
);
1500 } // end of wxWindow::DoPopupMenu
1502 // ===========================================================================
1503 // pre/post message processing
1504 // ===========================================================================
1506 MRESULT
wxWindow::OS2DefWindowProc(
1513 return (MRESULT
)m_fnOldWndProc(GetHWND(), (ULONG
)uMsg
, (MPARAM
)wParam
, (MPARAM
)lParam
);
1515 return ::WinDefWindowProc(GetHWND(), (ULONG
)uMsg
, (MPARAM
)wParam
, (MPARAM
)lParam
);
1516 } // end of wxWindow::OS2DefWindowProc
1518 bool wxWindow::OS2ProcessMessage(
1522 QMSG
* pQMsg
= (QMSG
*)pMsg
;
1524 if (m_hWnd
!= 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL
))
1527 // Intercept dialog navigation keys
1529 bool bProcess
= TRUE
;
1530 USHORT uKeyFlags
= SHORT1FROMMP(pQMsg
->mp1
);
1532 if (uKeyFlags
& KC_KEYUP
)
1535 if (uKeyFlags
& KC_ALT
)
1538 if (!(uKeyFlags
& KC_VIRTUALKEY
))
1543 bool bCtrlDown
= IsCtrlDown();
1544 bool bShiftDown
= IsShiftDown();
1547 // WM_QUERYDLGCODE: ask the control if it wants the key for itself,
1548 // don't process it if it's the case (except for Ctrl-Tab/Enter
1549 // combinations which are always processed)
1551 ULONG ulDlgCode
= 0;
1555 ulDlgCode
= (ULONG
)::WinSendMsg(pQMsg
->hwnd
, WM_QUERYDLGCODE
, pQMsg
, 0);
1558 bool bForward
= TRUE
;
1559 bool bWindowChange
= FALSE
;
1561 switch (SHORT2FROMMP(pQMsg
->mp2
))
1564 // Going to make certain assumptions about specific types of controls
1565 // here, so we may have to alter some things later if they prove invalid
1569 // Shift tabl will always be a nav-key but tabs may be wanted
1578 // Entry Fields want tabs for themselve usually
1582 case DLGC_ENTRYFIELD
:
1592 // Ctrl-Tab cycles thru notebook pages
1594 bWindowChange
= bCtrlDown
;
1595 bForward
= !bShiftDown
;
1618 // ctrl-enter is not processed
1622 else if (ulDlgCode
& DLGC_BUTTON
)
1625 // buttons want process Enter themselevs
1631 wxPanel
* pPanel
= wxDynamicCast(this, wxPanel
);
1632 wxButton
* pBtn
= NULL
;
1637 // Panel may have a default button which should
1638 // be activated by Enter
1640 pBtn
= pPanel
->GetDefaultItem();
1643 if (pBtn
&& pBtn
->IsEnabled())
1646 // If we do have a default button, do press it
1648 pBtn
->OS2Command(BN_CLICKED
, 0 /* unused */);
1651 // else: but if it does not it makes sense to make
1652 // it work like a TAB - and that's what we do.
1653 // Note that Ctrl-Enter always works this way.
1664 wxNavigationKeyEvent vEvent
;
1666 vEvent
.SetDirection(bForward
);
1667 vEvent
.SetWindowChange(bWindowChange
);
1668 vEvent
.SetEventObject(this);
1670 if (GetEventHandler()->ProcessEvent(vEvent
))
1672 wxButton
* pBtn
= wxDynamicCast(FindFocus(), wxButton
);
1677 // The button which has focus should be default
1686 // Let Dialogs process
1688 if (::WinSendMsg(pQMsg
->hwnd
, WM_QUERYDLGCODE
, pQMsg
, 0));
1695 // relay mouse move events to the tooltip control
1696 QMSG
* pQMsg
= (QMSG
*)pMsg
;
1698 if (pQMsg
->msg
== WM_MOUSEMOVE
)
1699 m_tooltip
->RelayEvent(pMsg
);
1701 #endif // wxUSE_TOOLTIPS
1704 } // end of wxWindow::OS2ProcessMessage
1706 bool wxWindow::OS2TranslateMessage(
1711 return m_acceleratorTable
.Translate(m_hWnd
, pMsg
);
1714 #endif //wxUSE_ACCEL
1715 } // end of wxWindow::OS2TranslateMessage
1717 // ---------------------------------------------------------------------------
1718 // message params unpackers
1719 // ---------------------------------------------------------------------------
1721 void wxWindow::UnpackCommand(
1729 *pId
= LOWORD(wParam
);
1730 *phWnd
= NULL
; // or may be GetHWND() ?
1731 *pCmd
= LOWORD(lParam
);
1732 } // end of wxWindow::UnpackCommand
1734 void wxWindow::UnpackActivate(
1741 *pState
= LOWORD(wParam
);
1742 *phWnd
= (WXHWND
)lParam
;
1743 } // end of wxWindow::UnpackActivate
1745 void wxWindow::UnpackScroll(
1753 *pCode
= LOWORD(wParam
);
1754 *pPos
= HIWORD(wParam
);
1755 *phWnd
= (WXHWND
)lParam
;
1756 } // end of wxWindow::UnpackScroll
1758 void wxWindow::UnpackMenuSelect(
1766 *pItem
= (WXWORD
)LOWORD(wParam
);
1767 *pFlags
= HIWORD(wParam
);
1768 *phMenu
= (WXHMENU
)lParam
;
1769 } // end of wxWindow::UnpackMenuSelect
1771 // ---------------------------------------------------------------------------
1772 // Main wxWindows window proc and the window proc for wxWindow
1773 // ---------------------------------------------------------------------------
1776 // Hook for new window just as it's being created, when the window isn't yet
1777 // associated with the handle
1779 wxWindow
* wxWndHook
= NULL
;
1784 MRESULT EXPENTRY
wxWndProc(
1792 // Trace all ulMsgs - useful for the debugging
1795 wxLogTrace(wxTraceMessages
, wxT("Processing %s(wParam=%8lx, lParam=%8lx)"),
1796 wxGetMessageName(ulMsg
), wParam
, lParam
);
1797 #endif // __WXDEBUG__
1799 wxWindow
* pWnd
= wxFindWinFromHandle((WXHWND
)hWnd
);
1802 // When we get the first message for the HWND we just created, we associate
1803 // it with wxWindow stored in wxWndHook
1805 if (!pWnd
&& wxWndHook
)
1807 wxAssociateWinWithHandle(hWnd
, wxWndHook
);
1810 pWnd
->SetHWND((WXHWND
)hWnd
);
1813 MRESULT rc
= (MRESULT
)0;
1817 // Stop right here if we don't have a valid handle in our wxWindow object.
1819 if (pWnd
&& !pWnd
->GetHWND())
1821 pWnd
->SetHWND((WXHWND
) hWnd
);
1822 rc
= pWnd
->OS2DefWindowProc(ulMsg
, wParam
, lParam
);
1828 rc
= pWnd
->OS2WindowProc(ulMsg
, wParam
, lParam
);
1830 rc
= ::WinDefWindowProc(hWnd
, ulMsg
, wParam
, lParam
);
1834 } // end of wxWndProc
1837 // We will add (or delete) messages we need to handle at this default
1840 MRESULT
wxWindow::OS2WindowProc(
1847 // Did we process the uMsg?
1849 bool bProcessed
= FALSE
;
1856 // For most messages we should return 0 when we do process the message
1858 mResult
= (MRESULT
)0;
1866 bProcessed
= HandleCreate( (WXLPCREATESTRUCT
)lParam
1872 // Return 0 to bAllow window creation
1874 mResult
= (MRESULT
)(bMayCreate
? 0 : -1);
1885 bProcessed
= HandleMove( LOWORD(lParam
)
1891 bProcessed
= HandleSize( LOWORD(lParam
)
1902 UnpackActivate( wParam
1908 bProcessed
= HandleActivate( wState
1916 if (SHORT1FROMMP((MPARAM
)lParam
) == TRUE
)
1917 bProcessed
= HandleSetFocus((WXHWND
)(HWND
)wParam
);
1919 bProcessed
= HandleKillFocus((WXHWND
)(HWND
)wParam
);
1923 bProcessed
= HandlePaint();
1928 // Don't let the DefWindowProc() destroy our window - we'll do it
1929 // ourselves in ~wxWindow
1932 mResult
= (MRESULT
)TRUE
;
1936 bProcessed
= HandleShow(wParam
!= 0, (int)lParam
);
1940 // Under OS2 PM Joysticks are treated just like mouse events
1941 // The "Motion" events will be prevelent in joysticks
1944 case WM_BUTTON1DOWN
:
1946 case WM_BUTTON1DBLCLK
:
1947 case WM_BUTTON1MOTIONEND
:
1948 case WM_BUTTON1MOTIONSTART
:
1949 case WM_BUTTON2DOWN
:
1951 case WM_BUTTON2DBLCLK
:
1952 case WM_BUTTON2MOTIONEND
:
1953 case WM_BUTTON2MOTIONSTART
:
1954 case WM_BUTTON3DOWN
:
1956 case WM_BUTTON3DBLCLK
:
1957 case WM_BUTTON3MOTIONEND
:
1958 case WM_BUTTON3MOTIONSTART
:
1960 short x
= LOWORD(lParam
);
1961 short y
= HIWORD(lParam
);
1963 bProcessed
= HandleMouseEvent(uMsg
, x
, y
, (WXUINT
)wParam
);
1967 bProcessed
= HandleSysCommand(wParam
, lParam
);
1974 UnpackCommand(wParam
, lParam
, &id
, &hwnd
, &cmd
);
1976 bProcessed
= HandleCommand(id
, cmd
, hwnd
);
1981 // For these messages we must return TRUE if process the message
1984 case WM_MEASUREITEM
:
1986 int idCtrl
= (UINT
)wParam
;
1987 if ( uMsg
== WM_DRAWITEM
)
1989 bProcessed
= OS2OnDrawItem(idCtrl
,
1990 (WXDRAWITEMSTRUCT
*)lParam
);
1994 bProcessed
= OS2OnMeasureItem(idCtrl
,
1995 (WXMEASUREITEMSTRUCT
*)lParam
);
1999 mResult
= (MRESULT
)TRUE
;
2003 case WM_QUERYDLGCODE
:
2006 mResult
= (MRESULT
)m_lDlgCode
;
2010 //else: get the dlg code from the DefWindowProc()
2015 // In OS/2 PM all keyboard events are of the WM_CHAR type. Virtual key and key-up
2016 // and key-down events are obtained from the WM_CHAR params.
2020 USHORT uKeyFlags
= SHORT1FROMMP((MPARAM
)wParam
);
2022 if (uKeyFlags
& KC_KEYUP
)
2024 bProcessed
= HandleKeyUp((WXDWORD
)wParam
, lParam
);
2027 else // keydown event
2030 // If this has been processed by an event handler,
2031 // return 0 now (we've handled it). DON't RETURN
2032 // we still need to process further
2034 HandleKeyDown((WXDWORD
)wParam
, lParam
);
2035 if (uKeyFlags
& KC_VIRTUALKEY
)
2037 USHORT uVk
= SHORT2FROMMP((MPARAM
)lParam
);
2040 // We consider these message "not interesting" to OnChar
2042 if (uVk
== VK_SHIFT
|| uVk
== VK_CTRL
)
2050 // Avoid duplicate messages to OnChar for these ASCII keys: they
2051 // will be translated by TranslateMessage() and received in WM_CHAR
2057 // But set processed to FALSE, not TRUE to still pass them to
2058 // the control's default window proc - otherwise built-in
2059 // keyboard handling won't work
2068 bProcessed
= HandleChar((WXDWORD
)wParam
, lParam
);
2072 else // WM_CHAR -- Always an ASCII character
2074 bProcessed
= HandleChar((WXDWORD
)wParam
, lParam
, TRUE
);
2086 UnpackScroll( wParam
2093 bProcessed
= OS2OnScroll( uMsg
== WM_HSCROLL
? wxHORIZONTAL
2102 #if defined(__VISAGECPP__) && (__IBMCPP__ >= 400)
2103 case WM_CTLCOLORCHANGE
:
2105 bProcessed
= HandleCtlColor(&hBrush
);
2110 // Instead of CTLCOLOR messages PM sends QUERYWINDOWPARAMS to
2111 // things such as colors and fonts and such
2113 case WM_QUERYWINDOWPARAMS
:
2115 PWNDPARAMS pWndParams
= (PWNDPARAMS
)wParam
;
2117 bProcessed
= HandleWindowParams( pWndParams
2123 // the return value for this message is ignored
2124 case WM_SYSCOLORCHANGE
:
2125 bProcessed
= HandleSysColorChange();
2128 case WM_REALIZEPALETTE
:
2129 bProcessed
= HandlePaletteChanged();
2132 case WM_PRESPARAMCHANGED
:
2133 bProcessed
= HandlePresParamChanged(wParam
);
2136 // move this to wxFrame
2137 case WM_ERASEBACKGROUND
:
2138 bProcessed
= HandleEraseBkgnd((WXHDC
)(HDC
)wParam
);
2142 // We processed the message, i.e. erased the background
2144 mResult
= (MRESULT
)TRUE
;
2148 // move all drag and drops to wxDrg
2150 bProcessed
= HandleEndDrag(wParam
);
2154 bProcessed
= HandleInitDialog((WXHWND
)(HWND
)wParam
);
2158 // we never set focus from here
2163 // wxFrame specific message
2164 case WM_MINMAXFRAME
:
2165 bProcessed
= HandleGetMinMaxInfo((PSWP
)wParam
);
2168 case WM_SYSVALUECHANGED
:
2169 // TODO: do something
2170 mResult
= (MRESULT
)TRUE
;
2174 // Comparable to WM_SETPOINTER for windows, only for just controls
2176 case WM_CONTROLPOINTER
:
2177 bProcessed
= HandleSetCursor( SHORT1FROMMP(wParam
) // Control ID
2178 ,(HWND
)lParam
// Cursor Handle
2183 // Returning TRUE stops the DefWindowProc() from further
2184 // processing this message - exactly what we need because we've
2185 // just set the cursor.
2187 mResult
= (MRESULT
)TRUE
;
2194 wxLogTrace(wxTraceMessages
, wxT("Forwarding %s to DefWindowProc."),
2195 wxGetMessageName(uMsg
));
2196 #endif // __WXDEBUG__
2197 if (IsKindOf(CLASSINFO(wxFrame
)))
2198 mResult
= ::WinDefWindowProc(m_hWnd
, uMsg
, wParam
, lParam
);
2200 mResult
= OS2DefWindowProc(uMsg
, wParam
, lParam
);
2203 } // end of wxWindow::OS2WindowProc
2206 // Dialog window proc
2214 if (uMsg
== WM_INITDLG
)
2217 // For this message, returning TRUE tells system to set focus to the
2218 // first control in the dialog box
2220 return (MRESULT
)TRUE
;
2225 // For all the other ones, FALSE means that we didn't process the
2230 } // end of wxDlgProc
2232 wxWindow
* wxFindWinFromHandle(
2236 wxNode
* pNode
= wxWinHandleList
->Find((long)hWnd
);
2240 return (wxWindow
*)pNode
->Data();
2241 } // end of wxFindWinFromHandle
2243 void wxAssociateWinWithHandle(
2249 // Adding NULL hWnd is (first) surely a result of an error and
2250 // (secondly) breaks menu command processing
2252 wxCHECK_RET( hWnd
!= (HWND
)NULL
,
2253 wxT("attempt to add a NULL hWnd to window list ignored") );
2256 wxWindow
* pOldWin
= wxFindWinFromHandle((WXHWND
) hWnd
);
2258 if (pOldWin
&& (pOldWin
!= pWin
))
2260 wxString
str(pWin
->GetClassInfo()->GetClassName());
2261 wxLogError( "Bug! Found existing HWND %X for new window of class %s"
2268 wxWinHandleList
->Append( (long)hWnd
2272 } // end of wxAssociateWinWithHandle
2274 void wxRemoveHandleAssociation(
2278 wxWinHandleList
->DeleteObject(pWin
);
2279 } // end of wxRemoveHandleAssociation
2282 // Default destroyer - override if you destroy it in some other way
2283 // (e.g. with MDI child windows)
2285 void wxWindow::OS2DestroyWindow()
2289 void wxWindow::OS2DetachWindowMenu()
2293 HMENU hMenu
= (HMENU
)m_hMenu
;
2295 int nN
= (int)::WinSendMsg(hMenu
, MM_QUERYITEMCOUNT
, 0, 0);
2298 for (i
= 0; i
< nN
; i
++)
2301 int nChars
= (int)::WinSendMsg( hMenu
2303 ,MPFROM2SHORT(i
, nN
)
2308 wxLogLastError(wxT("GetMenuString"));
2312 if (wxStrcmp(zBuf
, wxT("&Window")) == 0)
2314 ::WinSendMsg(hMenu
, MM_DELETEITEM
, MPFROM2SHORT(i
, TRUE
), 0);
2319 } // end of wxWindow::OS2DetachWindowMenu
2321 bool wxWindow::OS2Create(
2324 , const wxChar
* zTitle
2332 , unsigned long ulId
2342 long lHeight1
= 20L;
2344 int nNeedsubclass
= 0;
2345 PCSZ pszClass
= zClass
;
2348 // Find parent's size, if it exists, to set up a possible default
2349 // panel size the size of the parent window
2366 // check to see if the new window is a standard control
2368 if ((ULONG
)zClass
== (ULONG
)WC_BUTTON
||
2369 (ULONG
)zClass
== (ULONG
)WC_COMBOBOX
||
2370 (ULONG
)zClass
== (ULONG
)WC_CONTAINER
||
2371 (ULONG
)zClass
== (ULONG
)WC_ENTRYFIELD
||
2372 (ULONG
)zClass
== (ULONG
)WC_FRAME
||
2373 (ULONG
)zClass
== (ULONG
)WC_LISTBOX
||
2374 (ULONG
)zClass
== (ULONG
)WC_MENU
||
2375 (ULONG
)zClass
== (ULONG
)WC_NOTEBOOK
||
2376 (ULONG
)zClass
== (ULONG
)WC_SCROLLBAR
||
2377 (ULONG
)zClass
== (ULONG
)WC_SPINBUTTON
||
2378 (ULONG
)zClass
== (ULONG
)WC_STATIC
||
2379 (ULONG
)zClass
== (ULONG
)WC_TITLEBAR
||
2380 (ULONG
)zClass
== (ULONG
)WC_VALUESET
2387 // no standard controls
2388 if(wxString (wxT("wxFrameClass")) == wxString(zClass
) )
2390 pszClass
= WC_FRAME
;
2397 nControlId
= FID_CLIENT
;
2402 // We will either have a registered class via string name or a standard PM Class via a long
2404 m_hWnd
= (WXHWND
)::WinCreateWindow( (HWND
)hParent
2406 ,(PSZ
)zTitle
? zTitle
: wxT("")
2420 vError
= ::WinGetLastError(vHabmain
);
2421 sError
= wxPMErrorToStr(vError
);
2422 wxLogError("Can't create window of class %s!. Error: %s\n", zClass
, sError
);
2425 ::WinSetWindowULong(m_hWnd
, QWL_USER
, (ULONG
) this);
2429 wxNode
* pNode
= wxWinHandleList
->Member(this);
2433 HWND hWnd
= (HWND
)pNode
->GetKeyInteger();
2435 if (hWnd
!= (HWND
)m_hWnd
)
2438 wxLogError("A second HWND association is being added for the same window!");
2442 wxAssociateWinWithHandle((HWND
)m_hWnd
2446 // Now need to subclass window.
2450 wxAssociateWinWithHandle((HWND
)m_hWnd
,this);
2454 SubclassWin(GetHWND());
2457 } // end of wxWindow::OS2Create
2459 // ===========================================================================
2460 // OS2 PM message handlers
2461 // ===========================================================================
2463 // ---------------------------------------------------------------------------
2464 // window creation/destruction
2465 // ---------------------------------------------------------------------------
2467 bool wxWindow::HandleCreate(
2468 WXLPCREATESTRUCT vCs
2472 wxWindowCreateEvent
vEvent(this);
2474 (void)GetEventHandler()->ProcessEvent(vEvent
);
2475 *pbMayCreate
= TRUE
;
2477 } // end of wxWindow::HandleCreate
2479 bool wxWindow::HandleDestroy()
2481 wxWindowDestroyEvent
vEvent(this);
2483 (void)GetEventHandler()->ProcessEvent(vEvent
);
2486 // Delete our drop target if we've got one
2488 #if wxUSE_DRAG_AND_DROP
2489 if (m_dropTarget
!= NULL
)
2491 m_dropTarget
->Revoke(m_hWnd
);
2492 delete m_dropTarget
;
2493 m_dropTarget
= NULL
;
2495 #endif // wxUSE_DRAG_AND_DROP
2498 // WM_DESTROY handled
2501 } // end of wxWindow::HandleDestroy
2503 // ---------------------------------------------------------------------------
2505 // ---------------------------------------------------------------------------
2506 void wxWindow::OnSetFocus(
2507 wxFocusEvent
& rEvent
2511 // Panel wants to track the window which was the last to have focus in it,
2512 // so we want to set ourselves as the window which last had focus
2514 // Notice that it's also important to do it upwards the tree becaus
2515 // otherwise when the top level panel gets focus, it won't set it back to
2516 // us, but to some other sibling
2518 wxWindow
* pWin
= this;
2522 wxWindow
* pParent
= pWin
->GetParent();
2523 wxPanel
* pPanel
= wxDynamicCast( pParent
2528 pPanel
->SetLastFocus(pWin
);
2533 wxLogTrace(_T("focus"), _T("%s (0x%08x) gets focus"),
2534 GetClassInfo()->GetClassName(), GetHandle());
2537 } // end of wxWindow::OnSetFocus
2539 bool wxWindow::HandleActivate(
2541 , WXHWND
WXUNUSED(hActivate
)
2544 wxActivateEvent
vEvent( wxEVT_ACTIVATE
2548 vEvent
.SetEventObject(this);
2549 return GetEventHandler()->ProcessEvent(vEvent
);
2550 } // end of wxWindow::HandleActivate
2552 bool wxWindow::HandleSetFocus(
2553 WXHWND
WXUNUSED(hWnd
)
2562 m_caret
->OnSetFocus();
2564 #endif // wxUSE_CARET
2567 // Panel wants to track the window which was the last to have focus in it
2569 wxPanel
* pPanel
= wxDynamicCast( GetParent()
2574 pPanel
->SetLastFocus(this);
2577 wxFocusEvent
vEvent(wxEVT_SET_FOCUS
, m_windowId
);
2579 vEvent
.SetEventObject(this);
2580 return GetEventHandler()->ProcessEvent(vEvent
);
2581 } // end of wxWindow::HandleSetFocus
2583 bool wxWindow::HandleKillFocus(
2584 WXHWND
WXUNUSED(hWnd
)
2593 m_caret
->OnKillFocus();
2595 #endif // wxUSE_CARET
2597 wxFocusEvent
vEvent( wxEVT_KILL_FOCUS
2601 vEvent
.SetEventObject(this);
2602 return GetEventHandler()->ProcessEvent(vEvent
);
2603 } // end of wxWindow::HandleKillFocus
2605 // ---------------------------------------------------------------------------
2607 // ---------------------------------------------------------------------------
2609 bool wxWindow::HandleShow(
2614 wxShowEvent
vEvent( GetId()
2618 vEvent
.m_eventObject
= this;
2619 return GetEventHandler()->ProcessEvent(vEvent
);
2620 } // end of wxWindow::HandleShow
2622 bool wxWindow::HandleInitDialog(
2623 WXHWND
WXUNUSED(hWndFocus
)
2626 wxInitDialogEvent
vEvent(GetId());
2628 vEvent
.m_eventObject
= this;
2629 return GetEventHandler()->ProcessEvent(vEvent
);
2630 } // end of wxWindow::HandleInitDialog
2632 bool wxWindow::HandleEndDrag(WXWPARAM wParam
)
2634 // TODO: We'll handle drag and drop later
2638 bool wxWindow::HandleSetCursor(
2644 // Under OS/2 PM this allows the pointer to be changed
2645 // as it passes over a control
2647 ::WinSetPointer(HWND_DESKTOP
, (HPOINTER
)hPointer
);
2649 } // end of wxWindow::HandleSetCursor
2651 // ---------------------------------------------------------------------------
2652 // owner drawn stuff
2653 // ---------------------------------------------------------------------------
2654 bool wxWindow::OS2OnDrawItem(
2656 , WXDRAWITEMSTRUCT
* pItemStruct
2660 // I'll get to owner drawn stuff later
2664 // is it a menu item or control?
2666 wxWindow
* pItem
= FindItem(vId
);
2668 #if wxUSE_OWNER_DRAWN
2669 if (pItem
&& pItem
->IsKindOf(CLASSINFO(wxControl
)))
2671 return ((wxControl
*)pItem
)->OS2OnDraw(pItemStruct
);
2673 else if (pItem
&& pItem
->IsKindOf(CLASSINFO(wxMenu
)))
2676 // TODO: draw a menu item
2678 POWNERITEM pDrawStruct = (OWNERITEM *)pItemStruct;
2679 wxMenuItem* pMenuItem = (wxMenuItem *)(pDrawStruct->pItemData);
2681 wxCHECK(pMenuItem->IsKindOf(CLASSINFO(wxMenuItem)), FALSE);
2684 // Prepare to call OnDrawItem()
2687 dc.SetHDC((WXHDC)pDrawStruct->hDC, FALSE);
2688 wxRect rect(pDrawStruct->rcItem.left, pDrawStruct->rcItem.top,
2689 pDrawStruct->rcItem.right - pDrawStruct->rcItem.left,
2690 pDrawStruct->rcItem.bottom - pDrawStruct->rcItem.top);
2692 return pMenuItem->OnDrawItem
2695 (wxOwnerDrawn::wxODAction)pDrawStruct->itemAction,
2696 (wxOwnerDrawn::wxODStatus)pDrawStruct->itemState
2705 } // end of wxWindow::OS2OnDrawItem
2707 bool wxWindow::OS2OnMeasureItem(int id
, WXMEASUREITEMSTRUCT
*itemStruct
)
2709 // TODO: more owner drawn menu related stuff, get to it later
2711 #if wxUSE_OWNER_DRAWN
2712 // is it a menu item?
2715 MEASUREITEMSTRUCT *pMeasureStruct = (MEASUREITEMSTRUCT *)itemStruct;
2716 wxMenuItem *pMenuItem = (wxMenuItem *)(pMeasureStruct->itemData);
2718 wxCHECK( pMenuItem->IsKindOf(CLASSINFO(wxMenuItem)), FALSE );
2720 return pMenuItem->OnMeasureItem(&pMeasureStruct->itemWidth,
2721 &pMeasureStruct->itemHeight);
2724 wxWindow *item = FindItem(id);
2725 if ( item && item->IsKindOf(CLASSINFO(wxControl)) )
2727 return ((wxControl *)item)->MSWOnMeasure(itemStruct);
2729 #endif // owner-drawn menus
2734 // ---------------------------------------------------------------------------
2735 // colours and palettes
2736 // ---------------------------------------------------------------------------
2738 bool wxWindow::HandleSysColorChange()
2740 wxSysColourChangedEvent vEvent
;
2742 vEvent
.SetEventObject(this);
2743 return GetEventHandler()->ProcessEvent(vEvent
);
2744 } // end of wxWindow::HandleSysColorChange
2746 bool wxWindow::HandleCtlColor(
2751 // Not much provided with message. So not sure I can do anything with it
2754 } // end of wxWindow::HandleCtlColor
2756 bool wxWindow::HandleWindowParams(
2757 PWNDPARAMS pWndParams
2761 // TODO: I'll do something here, just not sure what yet
2765 // Define for each class of dialog and control
2766 WXHBRUSH
wxWindow::OnCtlColor(WXHDC hDC
,
2776 bool wxWindow::HandlePaletteChanged()
2778 // need to set this to something first
2779 WXHWND hWndPalChange
= NULLHANDLE
;
2781 wxPaletteChangedEvent
vEvent(GetId());
2783 vEvent
.SetEventObject(this);
2784 vEvent
.SetChangedWindow(wxFindWinFromHandle(hWndPalChange
));
2786 return GetEventHandler()->ProcessEvent(vEvent
);
2787 } // end of wxWindow::HandlePaletteChanged
2789 bool wxWindow::HandlePresParamChanged(
2794 // TODO: Once again I'll do something here when I need it
2796 //wxQueryNewPaletteEvent event(GetId());
2797 //event.SetEventObject(this);
2798 // if the background is erased
2799 // bProcessed = HandleEraseBkgnd((WXHDC)(HDC)wParam);
2801 return FALSE
; //GetEventHandler()->ProcessEvent(event) && event.GetPaletteRealized();
2805 // Responds to colour changes: passes event on to children.
2807 void wxWindow::OnSysColourChanged(
2808 wxSysColourChangedEvent
& rEvent
2811 wxNode
* pNode
= GetChildren().First();
2816 // Only propagate to non-top-level windows
2818 wxWindow
* pWin
= (wxWindow
*)pNode
->Data();
2820 if (pWin
->GetParent())
2822 wxSysColourChangedEvent vEvent
;
2824 rEvent
.m_eventObject
= pWin
;
2825 pWin
->GetEventHandler()->ProcessEvent(vEvent
);
2827 pNode
= pNode
->Next();
2829 } // end of wxWindow::OnSysColourChanged
2831 // ---------------------------------------------------------------------------
2833 // ---------------------------------------------------------------------------
2835 bool wxWindow::HandlePaint()
2837 HRGN hRgn
= NULLHANDLE
;
2838 wxPaintEvent vEvent
;
2842 if (::WinQueryUpdateRegion(GetHwnd(), hRgn
) == RGN_NULL
)
2844 wxLogLastError("CreateRectRgn");
2853 HWND hWnd0
= NULLHANDLE
;
2857 printf("HandlePaint hWnd=%x ",hWnd
);
2861 m_updateRegion
= wxRegion(hRgn
);
2862 vEvent
.SetEventObject(this);
2863 return (GetEventHandler()->ProcessEvent(vEvent
));
2864 } // end of wxWindow::HandlePaint
2866 bool wxWindow::HandleEraseBkgnd(WXHDC hdc
)
2868 // TODO: will have to worry about this later as part of
2869 // the handling of changed presentation parameters
2871 if ( ::IsIconic(GetHwnd()) )
2880 wxEraseEvent event(m_windowId, &dc);
2881 event.SetEventObject(this);
2882 bool rc = GetEventHandler()->ProcessEvent(event);
2885 dc.SelectOldObjects(hdc);
2886 dc.SetHDC((WXHDC) NULL);
2889 } // end of wxWindow::HandleEraseBkgnd
2891 void wxWindow::OnEraseBackground(
2892 wxEraseEvent
& rEvent
2896 } // end of wxWindow::OnEraseBackground
2898 // ---------------------------------------------------------------------------
2899 // moving and resizing
2900 // ---------------------------------------------------------------------------
2902 bool wxWindow::HandleMinimize()
2904 wxIconizeEvent
vEvent(m_windowId
);
2906 vEvent
.SetEventObject(this);
2907 return GetEventHandler()->ProcessEvent(vEvent
);
2908 } // end of wxWindow::HandleMinimize
2910 bool wxWindow::HandleMaximize()
2912 wxMaximizeEvent
vEvent(m_windowId
);
2914 vEvent
.SetEventObject(this);
2915 return GetEventHandler()->ProcessEvent(vEvent
);
2916 } // end of wxWindow::HandleMaximize
2918 bool wxWindow::HandleMove(
2923 wxMoveEvent
vEvent( wxPoint( nX
2929 vEvent
.SetEventObject(this);
2930 return GetEventHandler()->ProcessEvent(vEvent
);
2931 } // end of wxWindow::HandleMove
2933 bool wxWindow::HandleSize(
2936 , WXUINT
WXUNUSED(nFlag
)
2939 wxSizeEvent
vEvent( wxSize( nWidth
2945 vEvent
.SetEventObject(this);
2946 return GetEventHandler()->ProcessEvent(vEvent
);
2947 } // end of wxWindow::HandleSize
2949 bool wxWindow::HandleGetMinMaxInfo(
2959 ::WinGetMaxPosition(GetHwnd(), pSwp
);
2960 m_maxWidth
= pSwp
->cx
;
2961 m_maxHeight
= pSwp
->cy
;
2965 ::WinGetMinPosition(GetHwnd(), pSwp
, &vPoint
);
2966 m_minWidth
= pSwp
->cx
;
2967 m_minHeight
= pSwp
->cy
;
2974 } // end of wxWindow::HandleGetMinMaxInfo
2976 // ---------------------------------------------------------------------------
2978 // ---------------------------------------------------------------------------
2979 bool wxWindow::HandleCommand(
2985 if (wxCurrentPopupMenu
)
2987 wxMenu
* pPopupMenu
= wxCurrentPopupMenu
;
2989 wxCurrentPopupMenu
= NULL
;
2990 return pPopupMenu
->OS2Command(wCmd
, wId
);
2993 wxWindow
* pWin
= FindItem(wId
);
2997 pWin
= wxFindWinFromHandle(hControl
);
3001 return pWin
->OS2Command( wCmd
3005 } // end of wxWindow::HandleCommand
3007 bool wxWindow::HandleSysCommand(
3013 // 4 bits are reserved
3015 switch (SHORT1FROMMP(wParam
))
3018 return HandleMaximize();
3021 return HandleMinimize();
3024 } // end of wxWindow::HandleSysCommand
3026 // ---------------------------------------------------------------------------
3028 // ---------------------------------------------------------------------------
3030 void wxWindow::InitMouseEvent(
3031 wxMouseEvent
& rEvent
3039 rEvent
.m_shiftDown
= ((uFlags
& VK_SHIFT
) != 0);
3040 rEvent
.m_controlDown
= ((uFlags
& VK_CTRL
) != 0);
3041 rEvent
.m_leftDown
= ((uFlags
& VK_BUTTON1
) != 0);
3042 rEvent
.m_middleDown
= ((uFlags
& VK_BUTTON3
) != 0);
3043 rEvent
.m_rightDown
= ((uFlags
& VK_BUTTON2
) != 0);
3044 rEvent
.SetTimestamp(s_currentMsg
.time
);
3045 rEvent
.m_eventObject
= this;
3047 #if wxUSE_MOUSEEVENT_HACK
3050 m_lastMouseEvent
= rEvent
.GetEventType();
3051 #endif // wxUSE_MOUSEEVENT_HACK
3052 } // end of wxWindow::InitMouseEvent
3054 bool wxWindow::HandleMouseEvent(
3062 // The mouse events take consecutive IDs from WM_MOUSEFIRST to
3063 // WM_MOUSELAST, so it's enough to substract WM_MOUSEMOVE == WM_MOUSEFIRST
3064 // from the message id and take the value in the table to get wxWin event
3067 static const wxEventType eventsMouse
[] =
3081 wxMouseEvent
vEvent(eventsMouse
[uMsg
- WM_MOUSEMOVE
]);
3083 InitMouseEvent( vEvent
3089 return GetEventHandler()->ProcessEvent(vEvent
);
3090 } // end of wxWindow::HandleMouseEvent
3092 bool wxWindow::HandleMouseMove(
3098 if (!m_bMouseInWindow
)
3101 // Generate an ENTER event
3103 m_bMouseInWindow
= TRUE
;
3105 wxMouseEvent
vEvent(wxEVT_ENTER_WINDOW
);
3107 InitMouseEvent( vEvent
3113 (void)GetEventHandler()->ProcessEvent(vEvent
);
3115 return HandleMouseEvent( WM_MOUSEMOVE
3120 } // end of wxWindow::HandleMouseMove
3122 // ---------------------------------------------------------------------------
3123 // keyboard handling
3124 // ---------------------------------------------------------------------------
3127 // Create the key event of the given type for the given key - used by
3128 // HandleChar and HandleKeyDown/Up
3130 wxKeyEvent
wxWindow::CreateKeyEvent(
3136 wxKeyEvent
vEvent(eType
);
3138 vEvent
.SetId(GetId());
3139 vEvent
.m_shiftDown
= IsShiftDown();
3140 vEvent
.m_controlDown
= IsCtrlDown();
3141 vEvent
.m_altDown
= (HIWORD(lParam
) & KC_ALT
) == KC_ALT
;
3143 vEvent
.m_eventObject
= (wxWindow
*)this; // const_cast
3144 vEvent
.m_keyCode
= nId
;
3145 vEvent
.SetTimestamp(s_currentMsg
.time
);
3148 // Translate the position to client coords
3153 ::WinQueryPointerPos(HWND_DESKTOP
, &vPoint
);
3154 ::WinQueryWindowRect( GetHwnd()
3158 vPoint
.x
-= vRect
.xLeft
;
3159 vPoint
.y
-= vRect
.yBottom
;
3161 vEvent
.m_x
= vPoint
.x
;
3162 vEvent
.m_y
= vPoint
.y
;
3165 } // end of wxWindow::CreateKeyEvent
3168 // isASCII is TRUE only when we're called from WM_CHAR handler and not from
3171 bool wxWindow::HandleChar(
3177 bool bCtrlDown
= FALSE
;
3183 // If 1 -> 26, translate to CTRL plus a letter.
3186 if ((vId
> 0) && (vId
< 27))
3208 else if ( (vId
= wxCharCodeOS2ToWX(wParam
)) == 0)
3211 // It's ASCII and will be processed here only when called from
3212 // WM_CHAR (i.e. when isASCII = TRUE), don't process it now
3219 wxKeyEvent
vEvent(CreateKeyEvent( wxEVT_CHAR
3226 vEvent
.m_controlDown
= TRUE
;
3229 if (GetEventHandler()->ProcessEvent(vEvent
))
3235 bool wxWindow::HandleKeyDown(
3240 int nId
= wxCharCodeOS2ToWX(wParam
);
3245 // Normal ASCII char
3252 wxKeyEvent
vEvent(CreateKeyEvent( wxEVT_KEY_DOWN
3257 if (GetEventHandler()->ProcessEvent(vEvent
))
3263 } // end of wxWindow::HandleKeyDown
3265 bool wxWindow::HandleKeyUp(
3270 int nId
= wxCharCodeOS2ToWX(wParam
);
3275 // Normal ASCII char
3282 wxKeyEvent
vEvent(CreateKeyEvent( wxEVT_KEY_UP
3287 if (GetEventHandler()->ProcessEvent(vEvent
))
3291 } // end of wxWindow::HandleKeyUp
3293 // ---------------------------------------------------------------------------
3295 // ---------------------------------------------------------------------------
3297 // ---------------------------------------------------------------------------
3299 // ---------------------------------------------------------------------------
3301 bool wxWindow::OS2OnScroll(
3310 wxWindow
* pChild
= wxFindWinFromHandle(hControl
);
3313 return pChild
->OS2OnScroll( nOrientation
3320 wxScrollWinEvent vEvent
;
3322 vEvent
.SetPosition(wPos
);
3323 vEvent
.SetOrientation(nOrientation
);
3324 vEvent
.m_eventObject
= this;
3329 vEvent
.m_eventType
= wxEVT_SCROLLWIN_LINEUP
;
3333 vEvent
.m_eventType
= wxEVT_SCROLLWIN_LINEDOWN
;
3337 vEvent
.m_eventType
= wxEVT_SCROLLWIN_PAGEUP
;
3341 vEvent
.m_eventType
= wxEVT_SCROLLWIN_PAGEDOWN
;
3344 case SB_SLIDERPOSITION
:
3345 vEvent
.m_eventType
= wxEVT_SCROLLWIN_THUMBRELEASE
;
3348 case SB_SLIDERTRACK
:
3349 vEvent
.m_eventType
= wxEVT_SCROLLWIN_THUMBTRACK
;
3355 return GetEventHandler()->ProcessEvent(vEvent
);
3356 } // end of wxWindow::OS2OnScroll
3358 // ===========================================================================
3360 // ===========================================================================
3369 // TODO: we'll do this later
3370 } // end of wxGetCharSize
3373 // Returns 0 if was a normal ASCII value, not a special key. This indicates that
3374 // the key should be ignored by WM_KEYDOWN and processed by WM_CHAR instead.
3376 int wxCharCodeOS2ToWX(
3384 case VK_BACKTAB
: nId
= WXK_BACK
; break;
3385 case VK_TAB
: nId
= WXK_TAB
; break;
3386 case VK_CLEAR
: nId
= WXK_CLEAR
; break;
3387 case VK_ENTER
: nId
= WXK_RETURN
; break;
3388 case VK_SHIFT
: nId
= WXK_SHIFT
; break;
3389 case VK_CTRL
: nId
= WXK_CONTROL
; break;
3390 case VK_PAUSE
: nId
= WXK_PAUSE
; break;
3391 case VK_SPACE
: nId
= WXK_SPACE
; break;
3392 case VK_ESC
: nId
= WXK_ESCAPE
; break;
3393 case VK_END
: nId
= WXK_END
; break;
3394 case VK_HOME
: nId
= WXK_HOME
; break;
3395 case VK_LEFT
: nId
= WXK_LEFT
; break;
3396 case VK_UP
: nId
= WXK_UP
; break;
3397 case VK_RIGHT
: nId
= WXK_RIGHT
; break;
3398 case VK_DOWN
: nId
= WXK_DOWN
; break;
3399 case VK_PRINTSCRN
: nId
= WXK_PRINT
; break;
3400 case VK_INSERT
: nId
= WXK_INSERT
; break;
3401 case VK_DELETE
: nId
= WXK_DELETE
; break;
3402 case VK_F1
: nId
= WXK_F1
; break;
3403 case VK_F2
: nId
= WXK_F2
; break;
3404 case VK_F3
: nId
= WXK_F3
; break;
3405 case VK_F4
: nId
= WXK_F4
; break;
3406 case VK_F5
: nId
= WXK_F5
; break;
3407 case VK_F6
: nId
= WXK_F6
; break;
3408 case VK_F7
: nId
= WXK_F7
; break;
3409 case VK_F8
: nId
= WXK_F8
; break;
3410 case VK_F9
: nId
= WXK_F9
; break;
3411 case VK_F10
: nId
= WXK_F10
; break;
3412 case VK_F11
: nId
= WXK_F11
; break;
3413 case VK_F12
: nId
= WXK_F12
; break;
3414 case VK_F13
: nId
= WXK_F13
; break;
3415 case VK_F14
: nId
= WXK_F14
; break;
3416 case VK_F15
: nId
= WXK_F15
; break;
3417 case VK_F16
: nId
= WXK_F16
; break;
3418 case VK_F17
: nId
= WXK_F17
; break;
3419 case VK_F18
: nId
= WXK_F18
; break;
3420 case VK_F19
: nId
= WXK_F19
; break;
3421 case VK_F20
: nId
= WXK_F20
; break;
3422 case VK_F21
: nId
= WXK_F21
; break;
3423 case VK_F22
: nId
= WXK_F22
; break;
3424 case VK_F23
: nId
= WXK_F23
; break;
3425 case VK_F24
: nId
= WXK_F24
; break;
3426 case VK_NUMLOCK
: nId
= WXK_NUMLOCK
; break;
3427 case VK_SCRLLOCK
: nId
= WXK_SCROLL
; break;
3434 } // end of wxCharCodeOS2ToWX
3436 int wxCharCodeWXToOS2(
3446 case WXK_CLEAR
: nKeySym
= VK_CLEAR
; break;
3447 case WXK_SHIFT
: nKeySym
= VK_SHIFT
; break;
3448 case WXK_CONTROL
: nKeySym
= VK_CTRL
; break;
3449 case WXK_PAUSE
: nKeySym
= VK_PAUSE
; break;
3450 case WXK_END
: nKeySym
= VK_END
; break;
3451 case WXK_HOME
: nKeySym
= VK_HOME
; break;
3452 case WXK_LEFT
: nKeySym
= VK_LEFT
; break;
3453 case WXK_UP
: nKeySym
= VK_UP
; break;
3454 case WXK_RIGHT
: nKeySym
= VK_RIGHT
; break;
3455 case WXK_DOWN
: nKeySym
= VK_DOWN
; break;
3456 case WXK_PRINT
: nKeySym
= VK_PRINTSCRN
; break;
3457 case WXK_INSERT
: nKeySym
= VK_INSERT
; break;
3458 case WXK_DELETE
: nKeySym
= VK_DELETE
; break;
3459 case WXK_F1
: nKeySym
= VK_F1
; break;
3460 case WXK_F2
: nKeySym
= VK_F2
; break;
3461 case WXK_F3
: nKeySym
= VK_F3
; break;
3462 case WXK_F4
: nKeySym
= VK_F4
; break;
3463 case WXK_F5
: nKeySym
= VK_F5
; break;
3464 case WXK_F6
: nKeySym
= VK_F6
; break;
3465 case WXK_F7
: nKeySym
= VK_F7
; break;
3466 case WXK_F8
: nKeySym
= VK_F8
; break;
3467 case WXK_F9
: nKeySym
= VK_F9
; break;
3468 case WXK_F10
: nKeySym
= VK_F10
; break;
3469 case WXK_F11
: nKeySym
= VK_F11
; break;
3470 case WXK_F12
: nKeySym
= VK_F12
; break;
3471 case WXK_F13
: nKeySym
= VK_F13
; break;
3472 case WXK_F14
: nKeySym
= VK_F14
; break;
3473 case WXK_F15
: nKeySym
= VK_F15
; break;
3474 case WXK_F16
: nKeySym
= VK_F16
; break;
3475 case WXK_F17
: nKeySym
= VK_F17
; break;
3476 case WXK_F18
: nKeySym
= VK_F18
; break;
3477 case WXK_F19
: nKeySym
= VK_F19
; break;
3478 case WXK_F20
: nKeySym
= VK_F20
; break;
3479 case WXK_F21
: nKeySym
= VK_F21
; break;
3480 case WXK_F22
: nKeySym
= VK_F22
; break;
3481 case WXK_F23
: nKeySym
= VK_F23
; break;
3482 case WXK_F24
: nKeySym
= VK_F24
; break;
3483 case WXK_NUMLOCK
: nKeySym
= VK_NUMLOCK
; break;
3484 case WXK_SCROLL
: nKeySym
= VK_SCRLLOCK
; break;
3487 *bIsVirtual
= FALSE
;
3493 } // end of wxCharCodeWXToOS2
3495 wxWindow
* wxGetActiveWindow()
3497 HWND hWnd
= ::WinQueryActiveWindow(HWND_DESKTOP
);
3501 return wxFindWinFromHandle((WXHWND
)hWnd
);
3504 } // end of wxGetActiveWindow
3507 const char* wxGetMessageName(
3512 case 0x0000: return "WM_NULL";
3513 case 0x0001: return "WM_CREATE";
3514 case 0x0002: return "WM_DESTROY";
3515 case 0x0004: return "WM_ENABLE";
3516 case 0x0005: return "WM_SHOW";
3517 case 0x0006: return "WM_MOVE";
3518 case 0x0007: return "WM_SIZE";
3519 case 0x0008: return "WM_ADJUSTWINDOWPOS";
3520 case 0x0009: return "WM_CALCVALIDRECTS";
3521 case 0x000A: return "WM_SETWINDOWPARAMS";
3522 case 0x000B: return "WM_QUERYWINDOWPARAMS";
3523 case 0x000C: return "WM_HITTEST";
3524 case 0x000D: return "WM_ACTIVATE";
3525 case 0x000F: return "WM_SETFOCUS";
3526 case 0x0010: return "WM_SETSELECTION";
3527 case 0x0011: return "WM_PPAINT";
3528 case 0x0012: return "WM_PSETFOCUS";
3529 case 0x0013: return "WM_PSYSCOLORCHANGE";
3530 case 0x0014: return "WM_PSIZE";
3531 case 0x0015: return "WM_PACTIVATE";
3532 case 0x0016: return "WM_PCONTROL";
3533 case 0x0020: return "WM_COMMAND";
3534 case 0x0021: return "WM_SYSCOMMAND";
3535 case 0x0022: return "WM_HELP";
3536 case 0x0023: return "WM_PAINT";
3537 case 0x0024: return "WM_TIMER";
3538 case 0x0025: return "WM_SEM1";
3539 case 0x0026: return "WM_SEM2";
3540 case 0x0027: return "WM_SEM3";
3541 case 0x0028: return "WM_SEM4";
3542 case 0x0029: return "WM_CLOSE";
3543 case 0x002A: return "WM_QUIT";
3544 case 0x002B: return "WM_SYSCOLORCHANGE";
3545 case 0x002D: return "WM_SYSVALUECHANGE";
3546 case 0x002E: return "WM_APPTERMINATENOTIFY";
3547 case 0x002F: return "WM_PRESPARAMCHANGED";
3548 // Control notification messages
3549 case 0x0030: return "WM_CONTROL";
3550 case 0x0031: return "WM_VSCROLL";
3551 case 0x0032: return "WM_HSCROLL";
3552 case 0x0033: return "WM_INITMENU";
3553 case 0x0034: return "WM_MENUSELECT";
3554 case 0x0035: return "WM_MENUSEND";
3555 case 0x0036: return "WM_DRAWITEM";
3556 case 0x0037: return "WM_MEASUREITEM";
3557 case 0x0038: return "WM_CONTROLPOINTER";
3558 case 0x003A: return "WM_QUERYDLGCODE";
3559 case 0x003B: return "WM_INITDLG";
3560 case 0x003C: return "WM_SUBSTITUTESTRING";
3561 case 0x003D: return "WM_MATCHMNEMONIC";
3562 case 0x003E: return "WM_SAVEAPPLICATION";
3563 case 0x0129: return "WM_CTLCOLORCHANGE";
3564 case 0x0130: return "WM_QUERYCTLTYPE";
3566 case 0x0040: return "WM_FLASHWINDOW";
3567 case 0x0041: return "WM_FORMATFRAME";
3568 case 0x0042: return "WM_UPDATEFRAME";
3569 case 0x0043: return "WM_FOCUSCHANGE";
3570 case 0x0044: return "WM_SETBORDERSIZE";
3571 case 0x0045: return "WM_TRACKFRAME";
3572 case 0x0046: return "WM_MINMAXFRAME";
3573 case 0x0047: return "WM_SETICON";
3574 case 0x0048: return "WM_QUERYICON";
3575 case 0x0049: return "WM_SETACCELTABLE";
3576 case 0x004A: return "WM_QUERYACCELTABLE";
3577 case 0x004B: return "WM_TRANSLATEACCEL";
3578 case 0x004C: return "WM_QUERYTRACKINFO";
3579 case 0x004D: return "WM_QUERYBORDERSIZE";
3580 case 0x004E: return "WM_NEXTMENU";
3581 case 0x004F: return "WM_ERASEBACKGROUND";
3582 case 0x0050: return "WM_QUERYFRAMEINFO";
3583 case 0x0051: return "WM_QUERYFOCUSCHAIN";
3584 case 0x0052: return "WM_OWNERPOSCHANGE";
3585 case 0x0053: return "WM_CACLFRAMERECT";
3586 case 0x0055: return "WM_WINDOWPOSCHANGED";
3587 case 0x0056: return "WM_ADJUSTFRAMEPOS";
3588 case 0x0059: return "WM_QUERYFRAMECTLCOUNT";
3589 case 0x005B: return "WM_QUERYHELPINFO";
3590 case 0x005C: return "WM_SETHELPINFO";
3591 case 0x005D: return "WM_ERROR";
3592 case 0x005E: return "WM_REALIZEPALETTE";
3593 // Clipboard messages
3594 case 0x0060: return "WM_RENDERFMT";
3595 case 0x0061: return "WM_RENDERALLFMTS";
3596 case 0x0062: return "WM_DESTROYCLIPBOARD";
3597 case 0x0063: return "WM_PAINTCLIPBOARD";
3598 case 0x0064: return "WM_SIZECLIPBOARD";
3599 case 0x0065: return "WM_HSCROLLCLIPBOARD";
3600 case 0x0066: return "WM_VSCROLLCLIPBOARD";
3601 case 0x0067: return "WM_DRAWCLIPBOARD";
3603 case 0x0070: return "WM_MOUSEMOVE";
3604 case 0x0071: return "WM_BUTTON1DOWN";
3605 case 0x0072: return "WM_BUTTON1UP";
3606 case 0x0073: return "WM_BUTTON1DBLCLK";
3607 case 0x0074: return "WM_BUTTON2DOWN";
3608 case 0x0075: return "WM_BUTTON2UP";
3609 case 0x0076: return "WM_BUTTON2DBLCLK";
3610 case 0x0077: return "WM_BUTTON3DOWN";
3611 case 0x0078: return "WM_BUTTON3UP";
3612 case 0x0079: return "WM_BUTTON3DBLCLK";
3613 case 0x007D: return "WM_MOUSEMAP";
3614 case 0x007E: return "WM_VRNDISABLED";
3615 case 0x007F: return "WM_VRNENABLED";
3616 case 0x0410: return "WM_CHORD";
3617 case 0x0411: return "WM_BUTTON1MOTIONSTART";
3618 case 0x0412: return "WM_BUTTON1MOTIONEND";
3619 case 0x0413: return "WM_BUTTON1CLICK";
3620 case 0x0414: return "WM_BUTTON2MOTIONSTART";
3621 case 0x0415: return "WM_BUTTON2MOTIONEND";
3622 case 0x0416: return "WM_BUTTON2CLICK";
3623 case 0x0417: return "WM_BUTTON3MOTIONSTART";
3624 case 0x0418: return "WM_BUTTON3MOTIONEND";
3625 case 0x0419: return "WM_BUTTON3CLICK";
3626 case 0x0420: return "WM_BEGINDRAG";
3627 case 0x0421: return "WM_ENDDRAG";
3628 case 0x0422: return "WM_SINGLESELECT";
3629 case 0x0423: return "WM_OPEN";
3630 case 0x0424: return "WM_CONTEXTMENU";
3631 case 0x0425: return "WM_CONTEXTHELP";
3632 case 0x0426: return "WM_TEXTEDIT";
3633 case 0x0427: return "WM_BEGINSELECT";
3634 case 0x0228: return "WM_ENDSELECT";
3635 case 0x0429: return "WM_PICKUP";
3636 case 0x04C0: return "WM_PENFIRST";
3637 case 0x04FF: return "WM_PENLAST";
3638 case 0x0500: return "WM_MMPMFIRST";
3639 case 0x05FF: return "WM_MMPMLAST";
3640 case 0x0600: return "WM_STDDLGFIRST";
3641 case 0x06FF: return "WM_STDDLGLAST";
3642 case 0x0BD0: return "WM_BIDI_FIRST";
3643 case 0x0BFF: return "WM_BIDI_LAST";
3645 case 0x007A: return "WM_CHAR";
3646 case 0x007B: return "WM_VIOCHAR";
3648 case 0x00A0: return "WM_DDE_INITIATE";
3649 case 0x00A1: return "WM_DDE_REQUEST";
3650 case 0x00A2: return "WM_DDE_ACK";
3651 case 0x00A3: return "WM_DDE_DATA";
3652 case 0x00A4: return "WM_DDE_ADVISE";
3653 case 0x00A5: return "WM_DDE_UNADVISE";
3654 case 0x00A6: return "WM_DDE_POKE";
3655 case 0x00A7: return "WM_DDE_EXECUTE";
3656 case 0x00A8: return "WM_DDE_TERMINATE";
3657 case 0x00A9: return "WM_DDE_INITIATEACK";
3658 case 0x00AF: return "WM_DDE_LAST";
3660 case 0x0120: return "BM_CLICK";
3661 case 0x0121: return "BM_QUERYCHECKINDEX";
3662 case 0x0122: return "BM_QUERYHILITE";
3663 case 0x0123: return "BM_SETHILITE";
3664 case 0x0124: return "BM_QUERYCHECK";
3665 case 0x0125: return "BM_SETCHECK";
3666 case 0x0126: return "BM_SETDEFAULT";
3667 case 0x0128: return "BM_AUTOSIZE";
3669 case 0x029A: return "CBID_LIST";
3670 case 0x029B: return "CBID_EDIT";
3671 case 0x0170: return "CBM_SHOWLIST";
3672 case 0x0171: return "CBM_HILITE";
3673 case 0x0172: return "CBM_ISLISTSHOWING";
3675 case 0x0140: return "EM_QUERYCHANGED";
3676 case 0x0141: return "EM_QUERYSEL";
3677 case 0x0142: return "EM_SETSEL";
3678 case 0x0143: return "EM_SETTEXTLIMIT";
3679 case 0x0144: return "EM_CUT";
3680 case 0x0145: return "EM_COPY";
3681 case 0x0146: return "EM_CLEAR";
3682 case 0x0147: return "EM_PASTE";
3683 case 0x0148: return "EM_QUERYFIRSTCHAR";
3684 case 0x0149: return "EM_SETFIRSTCHAR";
3685 case 0x014A: return "EM_QUERYREADONLY";
3686 case 0x014B: return "EM_SETREADONLY";
3687 case 0x014C: return "EM_SETINSERTMODE";
3689 case 0x0160: return "LM_QUERYITEMCOUNT";
3690 case 0x0161: return "LM_INSERTITEM";
3691 case 0x0162: return "LM_SETOPENINDEX";
3692 case 0x0163: return "LM_DELETEITEM";
3693 case 0x0164: return "LM_SELECTITEM";
3694 case 0x0165: return "LM_QUERYSELECTION";
3695 case 0x0166: return "LM_SETITEMTEXT";
3696 case 0x0167: return "LM_QUERYITEMTEXTLENGTH";
3697 case 0x0168: return "LM_QUERYITEMTEXT";
3698 case 0x0169: return "LM_SETITEMHANDLE";
3699 case 0x016A: return "LM_QUERYITEMHANDLE";
3700 case 0x016B: return "LM_SEARCHSTRING";
3701 case 0x016C: return "LM_SETITEMHEIGHT";
3702 case 0x016D: return "LM_QUERYTOPINDEX";
3703 case 0x016E: return "LM_DELETEALL";
3704 case 0x016F: return "LM_INSERTMULITEMS";
3705 case 0x0660: return "LM_SETITEMWIDTH";
3707 case 0x0180: return "MM_INSERTITEM";
3708 case 0x0181: return "MM_DELETEITEM";
3709 case 0x0182: return "MM_QUERYITEM";
3710 case 0x0183: return "MM_SETITEM";
3711 case 0x0184: return "MM_QUERYITEMCOUNT";
3712 case 0x0185: return "MM_STARTMENUMODE";
3713 case 0x0186: return "MM_ENDMENUMODE";
3714 case 0x0188: return "MM_REMOVEITEM";
3715 case 0x0189: return "MM_SELECTITEM";
3716 case 0x018A: return "MM_QUERYSELITEMID";
3717 case 0x018B: return "MM_QUERYITEMTEXT";
3718 case 0x018C: return "MM_QUERYITEMTEXTLENGTH";
3719 case 0x018D: return "MM_SETITEMHANDLE";
3720 case 0x018E: return "MM_SETITEMTEXT";
3721 case 0x018F: return "MM_ITEMPOSITIONFROMID";
3722 case 0x0190: return "MM_ITEMIDFROMPOSITION";
3723 case 0x0191: return "MM_QUERYITEMATTR";
3724 case 0x0192: return "MM_SETITEMATTR";
3725 case 0x0193: return "MM_ISITEMVALID";
3726 case 0x0194: return "MM_QUERYITEMRECT";
3727 case 0x0431: return "MM_QUERYDEFAULTITEMID";
3728 case 0x0432: return "MM_SETDEFAULTITEMID";
3730 case 0x01A0: return "SBM_SETSCROLLBAR";
3731 case 0x01A1: return "SBM_SETPOS";
3732 case 0x01A2: return "SBM_QUERYPOS";
3733 case 0x01A3: return "SBM_QUERYRANGE";
3734 case 0x01A6: return "SBM_SETTHUMBSIZE";
3737 case 0x0F00: return "WM_HELPBASE";
3738 case 0x0FFF: return "WM_HELPTOP";
3739 // Beginning of user defined messages
3740 case 0x1000: return "WM_USER";
3742 // wxWindows user defined types
3745 // case 0x1000 + 0: return "LVM_GETBKCOLOR";
3746 case 0x1000 + 1: return "LVM_SETBKCOLOR";
3747 case 0x1000 + 2: return "LVM_GETIMAGELIST";
3748 case 0x1000 + 3: return "LVM_SETIMAGELIST";
3749 case 0x1000 + 4: return "LVM_GETITEMCOUNT";
3750 case 0x1000 + 5: return "LVM_GETITEMA";
3751 case 0x1000 + 75: return "LVM_GETITEMW";
3752 case 0x1000 + 6: return "LVM_SETITEMA";
3753 case 0x1000 + 76: return "LVM_SETITEMW";
3754 case 0x1000 + 7: return "LVM_INSERTITEMA";
3755 case 0x1000 + 77: return "LVM_INSERTITEMW";
3756 case 0x1000 + 8: return "LVM_DELETEITEM";
3757 case 0x1000 + 9: return "LVM_DELETEALLITEMS";
3758 case 0x1000 + 10: return "LVM_GETCALLBACKMASK";
3759 case 0x1000 + 11: return "LVM_SETCALLBACKMASK";
3760 case 0x1000 + 12: return "LVM_GETNEXTITEM";
3761 case 0x1000 + 13: return "LVM_FINDITEMA";
3762 case 0x1000 + 83: return "LVM_FINDITEMW";
3763 case 0x1000 + 14: return "LVM_GETITEMRECT";
3764 case 0x1000 + 15: return "LVM_SETITEMPOSITION";
3765 case 0x1000 + 16: return "LVM_GETITEMPOSITION";
3766 case 0x1000 + 17: return "LVM_GETSTRINGWIDTHA";
3767 case 0x1000 + 87: return "LVM_GETSTRINGWIDTHW";
3768 case 0x1000 + 18: return "LVM_HITTEST";
3769 case 0x1000 + 19: return "LVM_ENSUREVISIBLE";
3770 case 0x1000 + 20: return "LVM_SCROLL";
3771 case 0x1000 + 21: return "LVM_REDRAWITEMS";
3772 case 0x1000 + 22: return "LVM_ARRANGE";
3773 case 0x1000 + 23: return "LVM_EDITLABELA";
3774 case 0x1000 + 118: return "LVM_EDITLABELW";
3775 case 0x1000 + 24: return "LVM_GETEDITCONTROL";
3776 case 0x1000 + 25: return "LVM_GETCOLUMNA";
3777 case 0x1000 + 95: return "LVM_GETCOLUMNW";
3778 case 0x1000 + 26: return "LVM_SETCOLUMNA";
3779 case 0x1000 + 96: return "LVM_SETCOLUMNW";
3780 case 0x1000 + 27: return "LVM_INSERTCOLUMNA";
3781 case 0x1000 + 97: return "LVM_INSERTCOLUMNW";
3782 case 0x1000 + 28: return "LVM_DELETECOLUMN";
3783 case 0x1000 + 29: return "LVM_GETCOLUMNWIDTH";
3784 case 0x1000 + 30: return "LVM_SETCOLUMNWIDTH";
3785 case 0x1000 + 31: return "LVM_GETHEADER";
3786 case 0x1000 + 33: return "LVM_CREATEDRAGIMAGE";
3787 case 0x1000 + 34: return "LVM_GETVIEWRECT";
3788 case 0x1000 + 35: return "LVM_GETTEXTCOLOR";
3789 case 0x1000 + 36: return "LVM_SETTEXTCOLOR";
3790 case 0x1000 + 37: return "LVM_GETTEXTBKCOLOR";
3791 case 0x1000 + 38: return "LVM_SETTEXTBKCOLOR";
3792 case 0x1000 + 39: return "LVM_GETTOPINDEX";
3793 case 0x1000 + 40: return "LVM_GETCOUNTPERPAGE";
3794 case 0x1000 + 41: return "LVM_GETORIGIN";
3795 case 0x1000 + 42: return "LVM_UPDATE";
3796 case 0x1000 + 43: return "LVM_SETITEMSTATE";
3797 case 0x1000 + 44: return "LVM_GETITEMSTATE";
3798 case 0x1000 + 45: return "LVM_GETITEMTEXTA";
3799 case 0x1000 + 115: return "LVM_GETITEMTEXTW";
3800 case 0x1000 + 46: return "LVM_SETITEMTEXTA";
3801 case 0x1000 + 116: return "LVM_SETITEMTEXTW";
3802 case 0x1000 + 47: return "LVM_SETITEMCOUNT";
3803 case 0x1000 + 48: return "LVM_SORTITEMS";
3804 case 0x1000 + 49: return "LVM_SETITEMPOSITION32";
3805 case 0x1000 + 50: return "LVM_GETSELECTEDCOUNT";
3806 case 0x1000 + 51: return "LVM_GETITEMSPACING";
3807 case 0x1000 + 52: return "LVM_GETISEARCHSTRINGA";
3808 case 0x1000 + 117: return "LVM_GETISEARCHSTRINGW";
3809 case 0x1000 + 53: return "LVM_SETICONSPACING";
3810 case 0x1000 + 54: return "LVM_SETEXTENDEDLISTVIEWSTYLE";
3811 case 0x1000 + 55: return "LVM_GETEXTENDEDLISTVIEWSTYLE";
3812 case 0x1000 + 56: return "LVM_GETSUBITEMRECT";
3813 case 0x1000 + 57: return "LVM_SUBITEMHITTEST";
3814 case 0x1000 + 58: return "LVM_SETCOLUMNORDERARRAY";
3815 case 0x1000 + 59: return "LVM_GETCOLUMNORDERARRAY";
3816 case 0x1000 + 60: return "LVM_SETHOTITEM";
3817 case 0x1000 + 61: return "LVM_GETHOTITEM";
3818 case 0x1000 + 62: return "LVM_SETHOTCURSOR";
3819 case 0x1000 + 63: return "LVM_GETHOTCURSOR";
3820 case 0x1000 + 64: return "LVM_APPROXIMATEVIEWRECT";
3821 case 0x1000 + 65: return "LVM_SETWORKAREA";
3824 case 0x1100 + 0: return "TVM_INSERTITEMA";
3825 case 0x1100 + 50: return "TVM_INSERTITEMW";
3826 case 0x1100 + 1: return "TVM_DELETEITEM";
3827 case 0x1100 + 2: return "TVM_EXPAND";
3828 case 0x1100 + 4: return "TVM_GETITEMRECT";
3829 case 0x1100 + 5: return "TVM_GETCOUNT";
3830 case 0x1100 + 6: return "TVM_GETINDENT";
3831 case 0x1100 + 7: return "TVM_SETINDENT";
3832 case 0x1100 + 8: return "TVM_GETIMAGELIST";
3833 case 0x1100 + 9: return "TVM_SETIMAGELIST";
3834 case 0x1100 + 10: return "TVM_GETNEXTITEM";
3835 case 0x1100 + 11: return "TVM_SELECTITEM";
3836 case 0x1100 + 12: return "TVM_GETITEMA";
3837 case 0x1100 + 62: return "TVM_GETITEMW";
3838 case 0x1100 + 13: return "TVM_SETITEMA";
3839 case 0x1100 + 63: return "TVM_SETITEMW";
3840 case 0x1100 + 14: return "TVM_EDITLABELA";
3841 case 0x1100 + 65: return "TVM_EDITLABELW";
3842 case 0x1100 + 15: return "TVM_GETEDITCONTROL";
3843 case 0x1100 + 16: return "TVM_GETVISIBLECOUNT";
3844 case 0x1100 + 17: return "TVM_HITTEST";
3845 case 0x1100 + 18: return "TVM_CREATEDRAGIMAGE";
3846 case 0x1100 + 19: return "TVM_SORTCHILDREN";
3847 case 0x1100 + 20: return "TVM_ENSUREVISIBLE";
3848 case 0x1100 + 21: return "TVM_SORTCHILDRENCB";
3849 case 0x1100 + 22: return "TVM_ENDEDITLABELNOW";
3850 case 0x1100 + 23: return "TVM_GETISEARCHSTRINGA";
3851 case 0x1100 + 64: return "TVM_GETISEARCHSTRINGW";
3852 case 0x1100 + 24: return "TVM_SETTOOLTIPS";
3853 case 0x1100 + 25: return "TVM_GETTOOLTIPS";
3856 case 0x1200 + 0: return "HDM_GETITEMCOUNT";
3857 case 0x1200 + 1: return "HDM_INSERTITEMA";
3858 case 0x1200 + 10: return "HDM_INSERTITEMW";
3859 case 0x1200 + 2: return "HDM_DELETEITEM";
3860 case 0x1200 + 3: return "HDM_GETITEMA";
3861 case 0x1200 + 11: return "HDM_GETITEMW";
3862 case 0x1200 + 4: return "HDM_SETITEMA";
3863 case 0x1200 + 12: return "HDM_SETITEMW";
3864 case 0x1200 + 5: return "HDM_LAYOUT";
3865 case 0x1200 + 6: return "HDM_HITTEST";
3866 case 0x1200 + 7: return "HDM_GETITEMRECT";
3867 case 0x1200 + 8: return "HDM_SETIMAGELIST";
3868 case 0x1200 + 9: return "HDM_GETIMAGELIST";
3869 case 0x1200 + 15: return "HDM_ORDERTOINDEX";
3870 case 0x1200 + 16: return "HDM_CREATEDRAGIMAGE";
3871 case 0x1200 + 17: return "HDM_GETORDERARRAY";
3872 case 0x1200 + 18: return "HDM_SETORDERARRAY";
3873 case 0x1200 + 19: return "HDM_SETHOTDIVIDER";
3876 case 0x1300 + 2: return "TCM_GETIMAGELIST";
3877 case 0x1300 + 3: return "TCM_SETIMAGELIST";
3878 case 0x1300 + 4: return "TCM_GETITEMCOUNT";
3879 case 0x1300 + 5: return "TCM_GETITEMA";
3880 case 0x1300 + 60: return "TCM_GETITEMW";
3881 case 0x1300 + 6: return "TCM_SETITEMA";
3882 case 0x1300 + 61: return "TCM_SETITEMW";
3883 case 0x1300 + 7: return "TCM_INSERTITEMA";
3884 case 0x1300 + 62: return "TCM_INSERTITEMW";
3885 case 0x1300 + 8: return "TCM_DELETEITEM";
3886 case 0x1300 + 9: return "TCM_DELETEALLITEMS";
3887 case 0x1300 + 10: return "TCM_GETITEMRECT";
3888 case 0x1300 + 11: return "TCM_GETCURSEL";
3889 case 0x1300 + 12: return "TCM_SETCURSEL";
3890 case 0x1300 + 13: return "TCM_HITTEST";
3891 case 0x1300 + 14: return "TCM_SETITEMEXTRA";
3892 case 0x1300 + 40: return "TCM_ADJUSTRECT";
3893 case 0x1300 + 41: return "TCM_SETITEMSIZE";
3894 case 0x1300 + 42: return "TCM_REMOVEIMAGE";
3895 case 0x1300 + 43: return "TCM_SETPADDING";
3896 case 0x1300 + 44: return "TCM_GETROWCOUNT";
3897 case 0x1300 + 45: return "TCM_GETTOOLTIPS";
3898 case 0x1300 + 46: return "TCM_SETTOOLTIPS";
3899 case 0x1300 + 47: return "TCM_GETCURFOCUS";
3900 case 0x1300 + 48: return "TCM_SETCURFOCUS";
3901 case 0x1300 + 49: return "TCM_SETMINTABWIDTH";
3902 case 0x1300 + 50: return "TCM_DESELECTALL";
3905 case WM_USER
+1000+1: return "TB_ENABLEBUTTON";
3906 case WM_USER
+1000+2: return "TB_CHECKBUTTON";
3907 case WM_USER
+1000+3: return "TB_PRESSBUTTON";
3908 case WM_USER
+1000+4: return "TB_HIDEBUTTON";
3909 case WM_USER
+1000+5: return "TB_INDETERMINATE";
3910 case WM_USER
+1000+9: return "TB_ISBUTTONENABLED";
3911 case WM_USER
+1000+10: return "TB_ISBUTTONCHECKED";
3912 case WM_USER
+1000+11: return "TB_ISBUTTONPRESSED";
3913 case WM_USER
+1000+12: return "TB_ISBUTTONHIDDEN";
3914 case WM_USER
+1000+13: return "TB_ISBUTTONINDETERMINATE";
3915 case WM_USER
+1000+17: return "TB_SETSTATE";
3916 case WM_USER
+1000+18: return "TB_GETSTATE";
3917 case WM_USER
+1000+19: return "TB_ADDBITMAP";
3918 case WM_USER
+1000+20: return "TB_ADDBUTTONS";
3919 case WM_USER
+1000+21: return "TB_INSERTBUTTON";
3920 case WM_USER
+1000+22: return "TB_DELETEBUTTON";
3921 case WM_USER
+1000+23: return "TB_GETBUTTON";
3922 case WM_USER
+1000+24: return "TB_BUTTONCOUNT";
3923 case WM_USER
+1000+25: return "TB_COMMANDTOINDEX";
3924 case WM_USER
+1000+26: return "TB_SAVERESTOREA";
3925 case WM_USER
+1000+76: return "TB_SAVERESTOREW";
3926 case WM_USER
+1000+27: return "TB_CUSTOMIZE";
3927 case WM_USER
+1000+28: return "TB_ADDSTRINGA";
3928 case WM_USER
+1000+77: return "TB_ADDSTRINGW";
3929 case WM_USER
+1000+29: return "TB_GETITEMRECT";
3930 case WM_USER
+1000+30: return "TB_BUTTONSTRUCTSIZE";
3931 case WM_USER
+1000+31: return "TB_SETBUTTONSIZE";
3932 case WM_USER
+1000+32: return "TB_SETBITMAPSIZE";
3933 case WM_USER
+1000+33: return "TB_AUTOSIZE";
3934 case WM_USER
+1000+35: return "TB_GETTOOLTIPS";
3935 case WM_USER
+1000+36: return "TB_SETTOOLTIPS";
3936 case WM_USER
+1000+37: return "TB_SETPARENT";
3937 case WM_USER
+1000+39: return "TB_SETROWS";
3938 case WM_USER
+1000+40: return "TB_GETROWS";
3939 case WM_USER
+1000+42: return "TB_SETCMDID";
3940 case WM_USER
+1000+43: return "TB_CHANGEBITMAP";
3941 case WM_USER
+1000+44: return "TB_GETBITMAP";
3942 case WM_USER
+1000+45: return "TB_GETBUTTONTEXTA";
3943 case WM_USER
+1000+75: return "TB_GETBUTTONTEXTW";
3944 case WM_USER
+1000+46: return "TB_REPLACEBITMAP";
3945 case WM_USER
+1000+47: return "TB_SETINDENT";
3946 case WM_USER
+1000+48: return "TB_SETIMAGELIST";
3947 case WM_USER
+1000+49: return "TB_GETIMAGELIST";
3948 case WM_USER
+1000+50: return "TB_LOADIMAGES";
3949 case WM_USER
+1000+51: return "TB_GETRECT";
3950 case WM_USER
+1000+52: return "TB_SETHOTIMAGELIST";
3951 case WM_USER
+1000+53: return "TB_GETHOTIMAGELIST";
3952 case WM_USER
+1000+54: return "TB_SETDISABLEDIMAGELIST";
3953 case WM_USER
+1000+55: return "TB_GETDISABLEDIMAGELIST";
3954 case WM_USER
+1000+56: return "TB_SETSTYLE";
3955 case WM_USER
+1000+57: return "TB_GETSTYLE";
3956 case WM_USER
+1000+58: return "TB_GETBUTTONSIZE";
3957 case WM_USER
+1000+59: return "TB_SETBUTTONWIDTH";
3958 case WM_USER
+1000+60: return "TB_SETMAXTEXTROWS";
3959 case WM_USER
+1000+61: return "TB_GETTEXTROWS";
3960 case WM_USER
+1000+41: return "TB_GETBITMAPFLAGS";
3963 static char s_szBuf
[128];
3964 sprintf(s_szBuf
, "<unknown message = %d>", nMessage
);
3968 } // end of wxGetMessageName
3970 #endif // __WXDEBUG__
3972 static void TranslateKbdEventToMouse(
3980 // Construct the key mask
3981 ULONG
& fwKeys
= *pFlags
;
3983 fwKeys
= VK_BUTTON2
;
3984 if ((::WinGetKeyState(HWND_DESKTOP
, VK_CTRL
) & 0x100) != 0)
3986 if ((::WinGetKeyState(HWND_DESKTOP
, VK_SHIFT
) & 0x100) != 0)
3990 // Simulate right mouse button click
3994 ::WinQueryMsgPos(vHabmain
, &vPoint
);
3998 pWin
->ScreenToClient(pX
, pY
);
3999 } // end of TranslateKbdEventToMouse
4001 // Find the wxWindow at the current mouse position, returning the mouse
4003 wxWindow
* wxFindWindowAtPointer(
4007 return wxFindWindowAtPoint(wxGetMousePosition());
4010 wxWindow
* wxFindWindowAtPoint(
4019 HWND hWndHit
= ::WinWindowFromPoint(HWND_DESKTOP
, &vPt2
, FALSE
);
4020 wxWindow
* pWin
= wxFindWinFromHandle((WXHWND
)hWndHit
) ;
4021 HWND hWnd
= hWndHit
;
4024 // Try to find a window with a wxWindow associated with it
4026 while (!pWin
&& (hWnd
!= 0))
4028 hWnd
= ::WinQueryWindow(hWnd
, QW_PARENT
);
4029 pWin
= wxFindWinFromHandle((WXHWND
)hWnd
) ;
4034 // Get the current mouse position.
4035 wxPoint
wxGetMousePosition()
4039 ::WinQueryPointerPos(HWND_DESKTOP
, &vPt
);
4040 return wxPoint(vPt
.x
, vPt
.y
);