1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWindow class
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #define wxUSE_MOUSEEVENT_HACK 0
17 // ---------------------------------------------------------------------------
19 // ---------------------------------------------------------------------------
26 // ---------------------------------------------------------------------------
27 // forward declarations
28 // ---------------------------------------------------------------------------
30 # define CW_USEDEFAULT ((int)0x80000000)
33 // ---------------------------------------------------------------------------
34 // forward declarations
35 // ---------------------------------------------------------------------------
37 class WXDLLEXPORT wxButton
;
39 // ---------------------------------------------------------------------------
41 // ---------------------------------------------------------------------------
43 // FIXME does anybody use those? they're unused by wxWindows...
50 // ---------------------------------------------------------------------------
51 // wxWindow declaration for OS/2 PM
52 // ---------------------------------------------------------------------------
54 class WXDLLEXPORT wxWindowOS2
: public wxWindowBase
62 wxWindowOS2( wxWindow
* pParent
64 ,const wxPoint
& rPos
= wxDefaultPosition
65 ,const wxSize
& rSize
= wxDefaultSize
67 ,const wxString
& rName
= wxPanelNameStr
80 virtual ~wxWindowOS2();
82 bool Create( wxWindow
* pParent
84 ,const wxPoint
& rPos
= wxDefaultPosition
85 ,const wxSize
& rSize
= wxDefaultSize
87 ,const wxString
& rName
= wxPanelNameStr
90 // implement base class pure virtuals
91 virtual void SetTitle(const wxString
& rTitle
);
92 virtual wxString
GetTitle(void) const;
93 virtual void Raise(void);
94 virtual void Lower(void);
95 virtual bool Show(bool bShow
= TRUE
);
96 virtual bool Enable(bool bEnable
= TRUE
);
97 virtual void SetFocus(void);
98 virtual void SetFocusFromKbd(void);
99 virtual bool Reparent(wxWindow
* pNewParent
);
100 virtual void WarpPointer( int x
103 virtual void Refresh( bool bEraseBackground
= TRUE
104 ,const wxRect
* pRect
= (const wxRect
*)NULL
106 virtual void Clear(void);
107 virtual void Freeze(void);
108 virtual void Update(void);
109 virtual void Thaw(void);
110 virtual void SetWindowStyleFlag(long lStyle
);
111 virtual bool SetCursor(const wxCursor
& rCursor
);
112 virtual bool SetFont(const wxFont
& rFont
);
113 virtual int GetCharHeight(void) const;
114 virtual int GetCharWidth(void) const;
115 virtual void GetTextExtent( const wxString
& rString
118 ,int* pDescent
= (int *)NULL
119 ,int* pExternalLeading
= (int *)NULL
120 ,const wxFont
* pTheFont
= (const wxFont
*)NULL
122 #if wxUSE_MENUS_NATIVE
123 virtual bool DoPopupMenu( wxMenu
* pMenu
127 #endif // wxUSE_MENUS_NATIVE
129 virtual void SetScrollbar( int nOrient
133 ,bool bRefresh
= TRUE
135 virtual void SetScrollPos( int nOrient
137 ,bool bRefresh
= TRUE
139 virtual int GetScrollPos(int nOrient
) const;
140 virtual int GetScrollThumb(int nOrient
) const;
141 virtual int GetScrollRange(int nOrient
) const;
142 virtual void ScrollWindow( int nDx
144 ,const wxRect
* pRect
= (wxRect
*)NULL
147 inline HWND
GetScrollBarHorz(void) const {return m_hWndScrollBarHorz
;}
148 inline HWND
GetScrollBarVert(void) const {return m_hWndScrollBarVert
;};
149 #if wxUSE_DRAG_AND_DROP
150 virtual void SetDropTarget(wxDropTarget
* pDropTarget
);
151 #endif // wxUSE_DRAG_AND_DROP
153 // Accept files for dragging
154 virtual void DragAcceptFiles(bool bAccept
);
156 #if WXWIN_COMPATIBILITY
157 // Set/get scroll attributes
158 virtual void SetScrollRange( int nOrient
160 ,bool bRefresh
= TRUE
162 virtual void SetScrollPage( int nOrient
164 ,bool bRefresh
= TRUE
166 virtual int OldGetScrollRange(int nOrient
) const;
167 virtual int GetScrollPage(int nOrient
) const;
172 // Handle a control command
173 virtual void OnCommand( wxWindow
& rWin
174 ,wxCommandEvent
& rEvent
177 // Override to define new behaviour for default action (e.g. double
178 // clicking on a listbox)
179 virtual void OnDefaultAction(wxControl
* WXUNUSED(pInitiatingItem
)) { }
180 #endif // WXWIN_COMPATIBILITY
182 #if wxUSE_CARET && WXWIN_COMPATIBILITY
183 void CreateCaret( int nWidth
186 void CreateCaret(const wxBitmap
* pBitmap
);
187 void DestroyCaret(void);
188 void ShowCaret(bool bShow
);
189 void SetCaretPos( int nX
192 void GetCaretPos( int* pX
195 #endif // wxUSE_CARET
197 #ifndef __WXUNIVERSAL__
198 // Native resource loading (implemented in src/os2/nativdlg.cpp)
199 // FIXME: should they really be all virtual?
200 virtual bool LoadNativeDialog( wxWindow
* pParent
203 virtual bool LoadNativeDialog( wxWindow
* pParent
204 ,const wxString
& rName
206 wxWindow
* GetWindowChild1(wxWindowID vId
);
207 wxWindow
* GetWindowChild(wxWindowID vId
);
208 #endif //__WXUNIVERSAL__
210 // implementation from now on
211 // --------------------------
216 WXHWND
GetHWND(void) const { return m_hWnd
; }
217 void SetHWND(WXHWND hWnd
) { m_hWnd
= hWnd
; }
218 virtual WXWidget
GetHandle(void) const { return GetHWND(); }
219 bool GetUseCtl3D(void) const { return m_bUseCtl3D
; }
220 bool GetTransparentBackground(void) const { return m_bBackgroundTransparent
; }
221 void SetTransparent(bool bT
= TRUE
) { m_bBackgroundTransparent
= bT
; }
225 void OnSetFocus(wxFocusEvent
& rEvent
);
226 void OnEraseBackground(wxEraseEvent
& rEvent
);
227 void OnIdle(wxIdleEvent
& rEvent
);
230 // For implementation purposes - sometimes decorations make the client area
232 virtual wxPoint
GetClientAreaOrigin(void) const;
234 // Windows subclassing
235 void SubclassWin(WXHWND hWnd
);
236 void UnsubclassWin(void);
238 WXFARPROC
OS2GetOldWndProc(void) const { return m_fnOldWndProc
; }
239 void OS2SetOldWndProc(WXFARPROC fnProc
) { m_fnOldWndProc
= fnProc
; }
241 wxWindow
* FindItem(long lId
) const;
242 wxWindow
* FindItemByHWND( WXHWND hWnd
243 ,bool bControlOnly
= FALSE
246 // Make a Windows extended style from the given wxWindows window style ?? applicable to OS/2??
247 static WXDWORD
MakeExtendedStyle( long lStyle
248 ,bool bEliminateBorders
= TRUE
250 // Determine whether 3D effects are wanted
251 WXDWORD
Determine3DEffects( WXDWORD dwDefaultBorderStyle
255 // PM only: TRUE if this control is part of the main control
256 virtual bool ContainsHWND(WXHWND
WXUNUSED(hWnd
)) const { return FALSE
; };
258 // translate wxWindows style flags for this control into the PM style
259 // and optional extended style for the corresponding native control
261 // this is the function that should be overridden in the derived classes,
262 // but you will mostly use OS2GetCreateWindowFlags() below
263 virtual WXDWORD
OS2GetStyle( long lFlags
264 ,WXDWORD
* pdwExstyle
= NULL
267 // get the MSW window flags corresponding to wxWindows ones
269 // the functions returns the flags (WS_XXX) directly and puts the ext
270 // (WS_EX_XXX) flags into the provided pointer if not NULL
271 WXDWORD
OS2GetCreateWindowFlags(WXDWORD
* pdwExflags
= NULL
) const
272 { return OS2GetStyle(GetWindowStyle(), pdwExflags
); }
275 // returns TRUE if the window has been created
276 bool OS2Create( PSZ zClass
285 virtual bool OS2Command( WXUINT uParam
289 #if WXWIN_COMPATIBILITY
290 wxObject
* GetChild(int nNumber
) const;
291 virtual void OS2DeviceToLogical( float* pfX
294 #endif // WXWIN_COMPATIBILITY
296 #ifndef __WXUNIVERSAL__
297 // Create an appropriate wxWindow from a HWND
298 virtual wxWindow
* CreateWindowFromHWND( wxWindow
* pParent
302 // Make sure the window style reflects the HWND style (roughly)
303 virtual void AdoptAttributesFromHWND(void);
306 // Setup background and foreground colours correctly
307 virtual void SetupColours(void);
309 // ------------------------------------------------------------------------
310 // helpers for message handlers: these perform the same function as the
311 // message crackers from <windowsx.h> - they unpack WPARAM and LPARAM into
312 // the correct parameters
313 // ------------------------------------------------------------------------
315 void UnpackCommand( WXWPARAM wParam
321 void UnpackActivate( WXWPARAM wParam
326 void UnpackScroll( WXWPARAM wParam
332 void UnpackMenuSelect( WXWPARAM wParam
339 // ------------------------------------------------------------------------
340 // internal handlers for OS2 messages: all handlers return a boolen value:
341 // TRUE means that the handler processed the event and FALSE that it didn't
342 // ------------------------------------------------------------------------
344 // there are several cases where we have virtual functions for PM
345 // message processing: this is because these messages often require to be
346 // processed in a different manner in the derived classes. For all other
347 // messages, however, we do *not* have corresponding OS2OnXXX() function
348 // and if the derived class wants to process them, it should override
349 // OS2WindowProc() directly.
351 // scroll event (both horizontal and vertical)
352 virtual bool OS2OnScroll( int nOrientation
358 // owner-drawn controls need to process these messages
359 virtual bool OS2OnDrawItem( int nId
360 ,WXDRAWITEMSTRUCT
* pItem
362 virtual bool OS2OnMeasureItem( int nId
363 ,WXMEASUREITEMSTRUCT
* pItem
366 // the rest are not virtual
367 bool HandleCreate( WXLPCREATESTRUCT vCs
370 bool HandleInitDialog(WXHWND hWndFocus
);
371 bool HandleDestroy(void);
372 bool HandlePaint(void);
373 bool HandleEraseBkgnd(WXHDC vDC
);
374 bool HandleMinimize(void);
375 bool HandleMaximize(void);
376 bool HandleSize( int nX
380 bool HandleGetMinMaxInfo(PSWP pMmInfo
);
381 bool HandleShow( bool bShow
384 bool HandleActivate( int nFlag
387 bool HandleCommand( WXWORD nId
391 bool HandleSysCommand( WXWPARAM wParam
394 bool HandlePaletteChanged(void);
395 bool HandleQueryNewPalette(void);
396 bool HandleSysColorChange(void);
397 bool HandleDisplayChange(void);
398 bool HandleCaptureChanged(WXHWND hBainedCapture
);
400 bool HandleCtlColor(WXHBRUSH
* hBrush
);
401 bool HandleSetFocus(WXHWND hWnd
);
402 bool HandleKillFocus(WXHWND hWnd
);
403 bool HandleEndDrag(WXWPARAM wParam
);
404 bool HandleMouseEvent( WXUINT uMsg
409 bool HandleMouseMove( int nX
413 bool HandleChar( WXWPARAM wParam
415 ,bool bIsASCII
= FALSE
417 bool HandleKeyDown( WXWPARAM wParam
420 bool HandleKeyUp( WXWPARAM wParam
423 bool HandleQueryDragIcon(WXHICON
* phIcon
);
424 bool HandleSetCursor( USHORT vId
428 bool IsMouseInWindow(void) const;
429 bool OS2GetCreateWindowCoords( const wxPoint
& rPos
438 virtual MRESULT
OS2WindowProc( WXUINT uMsg
443 // Calls an appropriate default window procedure
444 virtual MRESULT
OS2DefWindowProc( WXUINT uMsg
448 virtual bool OS2ProcessMessage(WXMSG
* pMsg
);
449 virtual bool OS2ShouldPreProcessMessage(WXMSG
* pMsg
);
450 virtual bool OS2TranslateMessage(WXMSG
* pMsg
);
451 virtual void OS2DestroyWindow(void);
453 // this function should return the brush to paint the window background
454 // with or 0 for the default brush
455 virtual WXHBRUSH
OnCtlColor( WXHDC hDC
463 #if WXWIN_COMPATIBILITY
464 void SetShowing(bool bShow
) { (void)Show(show
); }
465 bool IsUserEnabled(void) const { return IsEnabled(); }
466 #endif // WXWIN_COMPATIBILITY
468 // Responds to colour changes: passes event on to children.
469 void OnSysColourChanged(wxSysColourChangedEvent
& rEvent
);
471 // initialize various fields of wxMouseEvent (common part of OS2OnMouseXXX)
472 void InitMouseEvent( wxMouseEvent
& rEvent
478 void MoveChildren(int nDiff
);
479 PSWP
GetSwp(void) {return &m_vWinSwp
;}
482 // PM can't create some MSW styles natively but can perform these after
483 // creation by sending messages
484 typedef enum extra_flags
{ kFrameToolWindow
= 0x0001
485 ,kVertCaption
= 0x0002
486 ,kHorzCaption
= 0x0004
488 // Some internal sizeing id's to make it easy for event handlers
489 typedef enum size_types
{ kSizeNormal
496 // the old window proc (we subclass all windows)
497 WXFARPROC m_fnOldWndProc
;
499 // additional (OS2 specific) flags
500 bool m_bUseCtl3D
:1; // Using CTL3D for this control
501 bool m_bBackgroundTransparent
:1;
502 bool m_bMouseInWindow
:1;
503 bool m_bDoubleClickAllowed
:1;
504 bool m_bLastKeydownProcessed
:1;
505 bool m_bWinCaptured
:1;
508 // the size of one page for scrolling
512 #if wxUSE_MOUSEEVENT_HACK
513 // the coordinates of the last mouse event and the type of it
516 int m_nLastMouseEvent
;
517 #endif // wxUSE_MOUSEEVENT_HACK
519 WXHMENU m_hMenu
; // Menu, if any
520 unsigned long m_ulMenubarId
; // it's Id, if any
522 // the return value of WM_GETDLGCODE handler
525 // implement the base class pure virtuals
526 virtual void DoClientToScreen( int* pX
529 virtual void DoScreenToClient( int* pX
532 virtual void DoGetPosition( int* pX
535 virtual void DoGetSize( int* pWidth
538 virtual void DoGetClientSize( int* pWidth
541 virtual void DoSetSize( int nX
545 ,int nSizeFlags
= wxSIZE_AUTO
547 virtual void DoSetClientSize( int nWidth
551 virtual void DoCaptureMouse(void);
552 virtual void DoReleaseMouse(void);
554 // move the window to the specified location and resize it: this is called
555 // from both DoSetSize() and DoSetClientSize() and would usually just call
556 // ::WinSetWindowPos() except for composite controls which will want to arrange
557 // themselves inside the given rectangle
558 virtual void DoMoveWindow( int nX
565 virtual void DoSetToolTip(wxToolTip
* pTip
);
566 #endif // wxUSE_TOOLTIPS
568 int GetOS2ParentHeight(wxWindowOS2
* pParent
);
571 // common part of all ctors
574 // the (non-virtual) handlers for the events
575 bool HandleMove( int nX
578 bool HandleJoystickEvent( WXUINT uMsg
584 bool HandleNotify( int nIdCtrl
588 // the helper functions used by HandleChar/KeyXXX methods
589 wxKeyEvent
CreateKeyEvent( wxEventType evType
596 DECLARE_DYNAMIC_CLASS(wxWindowOS2
);
597 DECLARE_NO_COPY_CLASS(wxWindowOS2
)
598 DECLARE_EVENT_TABLE()
601 HWND m_hWndScrollBarHorz
;
602 HWND m_hWndScrollBarVert
;
605 // Virtual function hiding supression
606 inline virtual bool Reparent(wxWindowBase
* pNewParent
)
607 { return(wxWindowBase::Reparent(pNewParent
));};
608 }; // end of wxWindow
610 class wxWindowCreationHook
613 wxWindowCreationHook(wxWindow
* pWinBeingCreated
);
614 ~wxWindowCreationHook();
615 }; // end of CLASS wxWindowCreationHook
617 // ---------------------------------------------------------------------------
619 // ---------------------------------------------------------------------------
621 // kbd code translation
622 WXDLLEXPORT
int wxCharCodeOS2ToWX(int nKeySym
);
623 WXDLLEXPORT
int wxCharCodeWXToOS2( int nId