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 class WXDLLEXPORT wxButton
;
32 // ---------------------------------------------------------------------------
34 // ---------------------------------------------------------------------------
36 // FIXME does anybody use those? they're unused by wxWindows...
43 // ---------------------------------------------------------------------------
44 // wxWindow declaration for OS/2 PM
45 // ---------------------------------------------------------------------------
47 class WXDLLEXPORT wxWindowOS2
: public wxWindowBase
55 wxWindowOS2( wxWindow
* pParent
57 ,const wxPoint
& rPos
= wxDefaultPosition
58 ,const wxSize
& rSize
= wxDefaultSize
60 ,const wxString
& rName
= wxPanelNameStr
73 virtual ~wxWindowOS2();
75 bool Create( wxWindow
* pParent
77 ,const wxPoint
& rPos
= wxDefaultPosition
78 ,const wxSize
& rSize
= wxDefaultSize
80 ,const wxString
& rName
= wxPanelNameStr
83 // implement base class pure virtuals
84 virtual void SetTitle(const wxString
& rTitle
);
85 virtual wxString
GetTitle(void) const;
86 virtual void Raise(void);
87 virtual void Lower(void);
88 virtual bool Show(bool bShow
= TRUE
);
89 virtual bool Enable(bool bEnable
= TRUE
);
90 virtual void SetFocus(void);
91 virtual bool Reparent(wxWindow
* pNewParent
);
92 virtual void WarpPointer( int x
95 virtual void CaptureMouse(void);
96 virtual void ReleaseMouse(void);
97 virtual void Refresh( bool bEraseBackground
= TRUE
98 ,const wxRect
* pRect
= (const wxRect
*)NULL
100 virtual void Clear(void);
101 virtual bool SetCursor(const wxCursor
& rCursor
);
102 virtual bool SetFont(const wxFont
& rFont
);
103 virtual int GetCharHeight(void) const;
104 virtual int GetCharWidth(void) const;
105 virtual void GetTextExtent( const wxString
& rString
108 ,int* pDescent
= (int *)NULL
109 ,int* pExternalLeading
= (int *)NULL
110 ,const wxFont
* pTheFont
= (const wxFont
*)NULL
112 virtual bool DoPopupMenu( wxMenu
* pMenu
117 virtual void SetScrollbar( int nOrient
121 ,bool bRefresh
= TRUE
123 virtual void SetScrollPos( int nOrient
125 ,bool bRefresh
= TRUE
127 virtual int GetScrollPos(int nOrient
) const;
128 virtual int GetScrollThumb(int nOrient
) const;
129 virtual int GetScrollRange(int nOrient
) const;
130 virtual void ScrollWindow( int nDx
132 ,const wxRect
* pRect
= (wxRect
*)NULL
135 #if wxUSE_DRAG_AND_DROP
136 virtual void SetDropTarget(wxDropTarget
* pDropTarget
);
137 #endif // wxUSE_DRAG_AND_DROP
139 // Accept files for dragging
140 virtual void DragAcceptFiles(bool bAccept
);
142 #if WXWIN_COMPATIBILITY
143 // Set/get scroll attributes
144 virtual void SetScrollRange( int nOrient
146 ,bool bRefresh
= TRUE
148 virtual void SetScrollPage( int nOrient
150 ,bool bRefresh
= TRUE
152 virtual int OldGetScrollRange(int nOrient
) const;
153 virtual int GetScrollPage(int nOrient
) const;
158 // Handle a control command
159 virtual void OnCommand( wxWindow
& rWin
160 ,wxCommandEvent
& rEvent
163 // Override to define new behaviour for default action (e.g. double
164 // clicking on a listbox)
165 virtual void OnDefaultAction(wxControl
* WXUNUSED(pInitiatingItem
)) { }
166 #endif // WXWIN_COMPATIBILITY
168 #if wxUSE_CARET && WXWIN_COMPATIBILITY
169 void CreateCaret( int nWidth
172 void CreateCaret(const wxBitmap
* pBitmap
);
173 void DestroyCaret(void);
174 void ShowCaret(bool bShow
);
175 void SetCaretPos( int nX
178 void GetCaretPos( int* pX
181 #endif // wxUSE_CARET
183 // Native resource loading (implemented in src/os2/nativdlg.cpp)
184 // FIXME: should they really be all virtual?
185 virtual bool LoadNativeDialog( wxWindow
* pParent
188 virtual bool LoadNativeDialog( wxWindow
* pParent
189 ,const wxString
& rName
191 wxWindow
* GetWindowChild1(wxWindowID vId
);
192 wxWindow
* GetWindowChild(wxWindowID vId
);
194 // implementation from now on
195 // --------------------------
200 WXHWND
GetHWND(void) const { return m_hWnd
; }
201 void SetHWND(WXHWND hWnd
) { m_hWnd
= hWnd
; }
202 virtual WXWidget
GetHandle(void) const { return GetHWND(); }
203 bool GetUseCtl3D(void) const { return m_bUseCtl3D
; }
204 bool GetTransparentBackground(void) const { return m_bBackgroundTransparent
; }
205 void SetTransparent(bool bT
= TRUE
) { m_bBackgroundTransparent
= bT
; }
209 void OnSetFocus(wxFocusEvent
& rEvent
);
210 void OnEraseBackground(wxEraseEvent
& rEvent
);
211 void OnIdle(wxIdleEvent
& rEvent
);
214 // For implementation purposes - sometimes decorations make the client area
216 virtual wxPoint
GetClientAreaOrigin(void) const;
218 // Windows subclassing
219 void SubclassWin(WXHWND hWnd
);
220 void UnsubclassWin(void);
222 WXFARPROC
OS2GetOldWndProc(void) const { return m_fnOldWndProc
; }
223 void OS2SetOldWndProc(WXFARPROC fnProc
) { m_fnOldWndProc
= fnProc
; }
225 wxWindow
* FindItem(long lId
) const;
226 wxWindow
* FindItemByHWND( WXHWND hWnd
227 ,bool bControlOnly
= FALSE
230 // Make a Windows extended style from the given wxWindows window style ?? applicable to OS/2??
231 static WXDWORD
MakeExtendedStyle( long lStyle
232 ,bool bEliminateBorders
= TRUE
234 // Determine whether 3D effects are wanted
235 WXDWORD
Determine3DEffects( WXDWORD dwDefaultBorderStyle
239 // PM only: TRUE if this control is part of the main control
240 virtual bool ContainsHWND(WXHWND
WXUNUSED(hWnd
)) const { return FALSE
; };
242 // returns TRUE if the window has been created
243 bool OS2Create( WXHWND hParent
245 ,const wxChar
* zTitle
254 ,void* pCtlData
= NULL
255 ,void* pPresParams
= NULL
256 ,WXDWORD dwExStyle
= 0L
258 virtual bool OS2Command( WXUINT uParam
262 #if WXWIN_COMPATIBILITY
263 wxObject
* GetChild(int nNumber
) const;
264 virtual void OS2DeviceToLogical( float* pfX
267 #endif // WXWIN_COMPATIBILITY
269 // Create an appropriate wxWindow from a HWND
270 virtual wxWindow
* CreateWindowFromHWND( wxWindow
* pParent
274 // Make sure the window style reflects the HWND style (roughly)
275 virtual void AdoptAttributesFromHWND(void);
277 // Setup background and foreground colours correctly
278 virtual void SetupColours(void);
280 // ------------------------------------------------------------------------
281 // helpers for message handlers: these perform the same function as the
282 // message crackers from <windowsx.h> - they unpack WPARAM and LPARAM into
283 // the correct parameters
284 // ------------------------------------------------------------------------
286 void UnpackCommand( WXWPARAM wParam
292 void UnpackActivate( WXWPARAM wParam
297 void UnpackScroll( WXWPARAM wParam
303 void UnpackMenuSelect( WXWPARAM wParam
310 // ------------------------------------------------------------------------
311 // internal handlers for OS2 messages: all handlers return a boolen value:
312 // TRUE means that the handler processed the event and FALSE that it didn't
313 // ------------------------------------------------------------------------
315 // there are several cases where we have virtual functions for PM
316 // message processing: this is because these messages often require to be
317 // processed in a different manner in the derived classes. For all other
318 // messages, however, we do *not* have corresponding OS2OnXXX() function
319 // and if the derived class wants to process them, it should override
320 // OS2WindowProc() directly.
322 // scroll event (both horizontal and vertical)
323 virtual bool OS2OnScroll( int nOrientation
329 // owner-drawn controls need to process these messages
330 virtual bool OS2OnDrawItem( int nId
331 ,WXDRAWITEMSTRUCT
* pItem
333 virtual bool OS2OnMeasureItem( int nId
334 ,WXMEASUREITEMSTRUCT
* pItem
337 // the rest are not virtual
338 bool HandleCreate( WXLPCREATESTRUCT vCs
341 bool HandleInitDialog(WXHWND hWndFocus
);
342 bool HandleDestroy(void);
343 bool HandlePaint(void);
344 bool HandleEraseBkgnd(WXHDC vDC
);
345 bool HandleMinimize(void);
346 bool HandleMaximize(void);
347 bool HandleSize( int nX
351 bool HandleGetMinMaxInfo(PSWP pMmInfo
);
352 bool HandleShow( bool bShow
355 bool HandleActivate( int nFlag
358 bool HandleCommand( WXWORD nId
362 bool HandleSysCommand( WXWPARAM wParam
365 bool HandleWindowParams( PWNDPARAMS pParams
368 bool HandlePaletteChanged();
369 bool HandlePresParamChanged(WXWPARAM wParam
);
370 bool HandleSysColorChange(void);
371 bool HandleCtlColor(WXHBRUSH
* hBrush
);
372 bool HandleSetFocus(WXHWND hWnd
);
373 bool HandleKillFocus(WXHWND hWnd
);
374 bool HandleEndDrag(WXWPARAM wParam
);
375 bool HandleMouseEvent( WXUINT uMsg
380 bool HandleMouseMove( int nX
384 bool HandleChar( WXWORD wParam
386 ,bool bIsASCII
= FALSE
388 bool HandleKeyDown( WXWORD wParam
391 bool HandleKeyUp( WXWORD wParam
394 bool HandleQueryDragIcon(WXHICON
* phIcon
);
395 bool HandleSetCursor( USHORT vId
400 virtual MRESULT
OS2WindowProc( WXUINT uMsg
405 // Calls an appropriate default window procedure
406 virtual MRESULT
OS2DefWindowProc( WXUINT uMsg
410 virtual bool OS2ProcessMessage(WXMSG
* pMsg
);
411 virtual bool OS2TranslateMessage(WXMSG
* pMsg
);
412 virtual void OS2DestroyWindow(void);
414 // Detach "Window" menu from menu bar so it doesn't get deleted
415 void OS2DetachWindowMenu(void);
417 // this function should return the brush to paint the window background
418 // with or 0 for the default brush
419 virtual WXHBRUSH
OnCtlColor( WXHDC hDC
427 #if WXWIN_COMPATIBILITY
428 void SetShowing(bool bShow
) { (void)Show(show
); }
429 bool IsUserEnabled(void) const { return IsEnabled(); }
430 #endif // WXWIN_COMPATIBILITY
432 // Responds to colour changes: passes event on to children.
433 void OnSysColourChanged(wxSysColourChangedEvent
& rEvent
);
435 // initialize various fields of wxMouseEvent (common part of OS2OnMouseXXX)
436 void InitMouseEvent( wxMouseEvent
& rEvent
443 // PM can't create some MSW styles natively but can perform these after
444 // creation by sending messages
445 typedef enum extra_flags
{ kFrameToolWindow
= 0x0001
446 ,kVertCaption
= 0x0002
447 ,kHorzCaption
= 0x0004
449 // Some internal sizeing id's to make it easy for event handlers
450 typedef enum size_types
{ kSizeNormal
457 // the old window proc (we subclass all windows)
458 WXFARPROC m_fnOldWndProc
;
460 // additional (OS2 specific) flags
461 bool m_bUseCtl3D
:1; // Using CTL3D for this control
462 bool m_bBackgroundTransparent
:1;
463 bool m_bMouseInWindow
:1;
464 bool m_bDoubleClickAllowed
:1;
465 bool m_bWinCaptured
:1;
468 // the size of one page for scrolling
472 #if wxUSE_MOUSEEVENT_HACK
473 // the coordinates of the last mouse event and the type of it
476 int m_nLastMouseEvent
;
477 #endif // wxUSE_MOUSEEVENT_HACK
479 WXHMENU m_hMenu
; // Menu, if any
480 unsigned long m_ulMenubarId
; // it's Id, if any
482 // the return value of WM_GETDLGCODE handler
485 // implement the base class pure virtuals
486 virtual void DoClientToScreen( int* pX
489 virtual void DoScreenToClient( int* pX
492 virtual void DoGetPosition( int* pX
495 virtual void DoGetSize( int* pWidth
498 virtual void DoGetClientSize( int* pWidth
501 virtual void DoSetSize( int nX
505 ,int nSizeFlags
= wxSIZE_AUTO
507 virtual void DoSetClientSize( int nWidth
511 // move the window to the specified location and resize it: this is called
512 // from both DoSetSize() and DoSetClientSize() and would usually just call
513 // ::WinSetWindowPos() except for composite controls which will want to arrange
514 // themselves inside the given rectangle
515 virtual void DoMoveWindow( int nX
522 virtual void DoSetToolTip(wxToolTip
* pTip
);
523 #endif // wxUSE_TOOLTIPS
526 // common part of all ctors
529 // the (non-virtual) handlers for the events
530 bool HandleMove( int nX
533 bool HandleJoystickEvent( WXUINT uMsg
539 bool HandleNotify( int nIdCtrl
543 // the helper functions used by HandleChar/KeyXXX methods
544 wxKeyEvent
CreateKeyEvent(wxEventType evType
, int id
, WXLPARAM lp
) const;
546 DECLARE_DYNAMIC_CLASS(wxWindowOS2
);
547 DECLARE_NO_COPY_CLASS(wxWindowOS2
)
548 DECLARE_EVENT_TABLE()
550 HWND m_hWndScrollBarHorz
;
551 HWND m_hWndScrollBarVert
;
553 // Virtual function hiding supression
554 inline virtual bool Reparent(wxWindowBase
* pNewParent
)
555 { return(wxWindowBase::Reparent(pNewParent
));};
556 }; // end of wxWindow
558 // ---------------------------------------------------------------------------
560 // ---------------------------------------------------------------------------
562 // kbd code translation
563 WXDLLEXPORT
int wxCharCodeOS2ToWX(int nKeySym
);
564 WXDLLEXPORT
int wxCharCodeWXToOS2( int nId