1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWindowMac class
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "window.h"
21 // ---------------------------------------------------------------------------
22 // forward declarations
23 // ---------------------------------------------------------------------------
25 class WXDLLEXPORT wxButton
;
26 class WXDLLEXPORT wxScrollBar
;
27 class WXDLLEXPORT wxTopLevelWindowMac
;
29 // internal implementation classes
33 // ---------------------------------------------------------------------------
35 // ---------------------------------------------------------------------------
37 class WXDLLEXPORT wxWindowMac
: public wxWindowBase
39 DECLARE_DYNAMIC_CLASS(wxWindowMac
)
42 friend class wxPaintDC
;
48 wxWindowMac(wxWindowMac
*parent
,
50 const wxPoint
& pos
= wxDefaultPosition
,
51 const wxSize
& size
= wxDefaultSize
,
53 const wxString
& name
= wxPanelNameStr
) ;
55 virtual ~wxWindowMac();
57 bool Create(wxWindowMac
*parent
,
59 const wxPoint
& pos
= wxDefaultPosition
,
60 const wxSize
& size
= wxDefaultSize
,
62 const wxString
& name
= wxPanelNameStr
);
65 // implement base class pure virtuals
66 virtual void SetTitle( const wxString
& title
);
67 virtual wxString
GetTitle() const;
72 virtual bool Show( bool show
= TRUE
);
73 virtual bool Enable( bool enable
= TRUE
);
75 virtual void SetFocus();
77 virtual void WarpPointer(int x
, int y
);
79 virtual void Refresh( bool eraseBackground
= TRUE
,
80 const wxRect
*rect
= (const wxRect
*) NULL
);
81 virtual void Freeze() ;
84 virtual bool SetCursor( const wxCursor
&cursor
);
85 virtual bool SetFont( const wxFont
&font
) ;
86 virtual bool SetBackgroundColour( const wxColour
&colour
);
87 virtual bool SetForegroundColour( const wxColour
&colour
);
89 virtual int GetCharHeight() const;
90 virtual int GetCharWidth() const;
91 virtual void GetTextExtent(const wxString
& string
,
93 int *descent
= (int *) NULL
,
94 int *externalLeading
= (int *) NULL
,
95 const wxFont
*theFont
= (const wxFont
*) NULL
)
98 virtual bool DoPopupMenu( wxMenu
*menu
, int x
, int y
);
100 virtual void SetScrollbar( int orient
, int pos
, int thumbVisible
,
101 int range
, bool refresh
= TRUE
);
102 virtual void SetScrollPos( int orient
, int pos
, bool refresh
= TRUE
);
103 virtual int GetScrollPos( int orient
) const;
104 virtual int GetScrollThumb( int orient
) const;
105 virtual int GetScrollRange( int orient
) const;
106 virtual void ScrollWindow( int dx
, int dy
,
107 const wxRect
* rect
= (wxRect
*) NULL
);
109 #if wxUSE_DRAG_AND_DROP
110 virtual void SetDropTarget( wxDropTarget
*dropTarget
);
111 #endif // wxUSE_DRAG_AND_DROP
113 // Accept files for dragging
114 virtual void DragAcceptFiles(bool accept
);
116 // implementation from now on
117 // --------------------------
119 void MacClientToRootWindow( int *x
, int *y
) const ;
120 void MacRootWindowToClient( int *x
, int *y
) const ;
122 void MacWindowToRootWindow( int *x
, int *y
) const ;
123 void MacWindowToRootWindow( short *x
, short *y
) const ;
125 void MacRootWindowToWindow( int *x
, int *y
) const ;
126 void MacRootWindowToWindow( short *x
, short *y
) const ;
128 virtual wxString
MacGetToolTipString( wxPoint
&where
) ;
133 virtual WXWidget
GetHandle() const ;
135 #if WXWIN_COMPATIBILITY_2_4
136 bool GetTransparentBackground() const { return m_backgroundTransparent
; }
137 void SetTransparent(bool t
= TRUE
) { m_backgroundTransparent
= t
; }
142 void OnSetFocus(wxFocusEvent
& event
) ;
143 void OnNcPaint(wxNcPaintEvent
& event
);
144 void OnEraseBackground(wxEraseEvent
& event
);
145 void OnMouseEvent( wxMouseEvent
&event
) ;
147 void MacOnScroll(wxScrollEvent
&event
) ;
149 bool AcceptsFocus() const ;
152 void OnInternalIdle();
154 // For implementation purposes - sometimes decorations make the client area
156 virtual wxPoint
GetClientAreaOrigin() const;
158 wxWindowMac
*FindItem(long id
) const;
159 wxWindowMac
*FindItemByHWND(WXHWND hWnd
, bool controlOnly
= FALSE
) const;
162 virtual void MacHandleControlClick( WXWidget control
, wxInt16 controlpart
, bool mouseStillDown
) ;
163 virtual bool MacDoRedraw( WXHRGN updatergn
, long time
) ;
164 virtual void MacRedraw( WXHRGN updatergn
, long time
, bool erase
) ;
165 virtual bool MacCanFocus() const ;
167 // this should not be overriden in classes above wxWindowMac because it is called from its destructor via DeleteChildren
168 virtual void RemoveChild( wxWindowBase
*child
);
169 virtual void MacPaintBorders( int left
, int top
) ;
170 WXWindow
MacGetTopLevelWindowRef() const ;
171 wxTopLevelWindowMac
* MacGetTopLevelWindow() const ;
173 virtual long MacGetLeftBorderSize() const ;
174 virtual long MacGetRightBorderSize() const ;
175 virtual long MacGetTopBorderSize() const ;
176 virtual long MacGetBottomBorderSize() const ;
178 static long MacRemoveBordersFromStyle( long style
) ;
180 virtual void MacSuperChangedPosition() ;
181 // the absolute coortinates of this window's root have changed
182 virtual void MacTopLevelWindowChangedPosition() ;
184 virtual void MacVisibilityChanged() ;
185 virtual void MacEnabledStateChanged() ;
186 virtual void MacHiliteChanged() ;
187 virtual wxInt32
MacControlHit( WXEVENTHANDLERREF handler
, WXEVENTREF event
) ;
189 bool MacIsReallyShown() ;
190 bool MacIsReallyEnabled() ;
191 bool MacIsReallyHilited() ;
193 bool MacIsUserPane() { return m_macIsUserPane
; }
195 virtual void Update() ;
196 virtual bool MacSetupCursor( const wxPoint
& pt
) ;
198 virtual void MacSetBackgroundBrush( const wxBrush
&brush
) ;
199 const wxBrush
& MacGetBackgroundBrush() const { return m_macBackgroundBrush
; }
201 // returns the visible region of this control in window ie non-client coordinates
203 wxRegion
MacGetVisibleRegion( bool includeOuterStructures
= false ) ;
204 // returns true if children have to clipped to the content area (eg scrolled window)
205 virtual bool MacClipChildren() const { return false ; }
206 // returns true if the grandchildren have to be clipped to the children's content area (eg
208 virtual bool MacClipGrandChildren() const { return false ; }
209 bool MacIsWindowScrollbar( const wxScrollBar
* sb
)
210 { return (m_hScrollBar
== sb
|| m_vScrollBar
== sb
) ; }
212 wxList
& GetSubcontrols() { return m_subControls
; }
213 virtual void MacInstallEventHandler(WXWidget native
) ;
214 virtual void MacRedrawControl();
215 WXEVENTHANDLERREF
MacGetControlEventHandler() { return m_macControlEventHandler
; }
216 void MacPostControlCreate(const wxPoint
& pos
, const wxSize
& size
) ;
218 virtual void MacControlUserPaneDrawProc(wxInt16 part
) ;
219 virtual wxInt16
MacControlUserPaneHitTestProc(wxInt16 x
, wxInt16 y
) ;
220 virtual wxInt16
MacControlUserPaneTrackingProc(wxInt16 x
, wxInt16 y
, void* actionProc
) ;
221 virtual void MacControlUserPaneIdleProc() ;
222 virtual wxInt16
MacControlUserPaneKeyDownProc(wxInt16 keyCode
, wxInt16 charCode
, wxInt16 modifiers
) ;
223 virtual void MacControlUserPaneActivateProc(bool activating
) ;
224 virtual wxInt16
MacControlUserPaneFocusProc(wxInt16 action
) ;
225 virtual void MacControlUserPaneBackgroundProc(void* info
) ;
227 // translate wxWidgets coords into ones suitable to be passed to
228 // the CreateControl calls
230 // returns TRUE if non default coords are returned, FALSE otherwise
231 bool MacGetBoundsForControl(const wxPoint
& pos
,
234 int& w
, int& h
, bool adjustForOrigin
) const ;
235 // calculates the real window position and size from the native control
236 void MacGetPositionAndSizeFromControl(int& x
, int& y
,
237 int& w
, int& h
) const ;
238 // gets the inset from every part
239 virtual void MacGetContentAreaInset( int &left
, int &top
, int &right
, int &bottom
) ;
241 // flash the current invalid area, useful for debugging in OSX double buffered situation
242 void MacFlashInvalidAreas() ;
245 // For controls like radiobuttons which are really composite
246 wxList m_subControls
;
247 // number of calls to Freeze() minus number of calls to Thaw()
248 unsigned int m_frozenness
;
249 // the peer object, allowing for cleaner API support
250 wxMacControl
* m_peer
;
251 // true if is is not a native control but a wxWindow control
252 bool m_macIsUserPane
;
253 wxBrush m_macBackgroundBrush
;
254 // topleft inset of the mac control from the wx top left corner
255 wxPoint m_macTopLeftInset
;
256 // bottom right inset of the mac control from the wx bottom right corner
257 wxPoint m_macBottomRightInset
;
259 wxScrollBar
* m_hScrollBar
;
260 wxScrollBar
* m_vScrollBar
;
263 void MacCreateScrollBars( long style
) ;
264 void MacRepositionScrollBars() ;
265 void MacUpdateControlFont() ;
267 void MacPropagateVisibilityChanged() ;
268 void MacPropagateEnabledStateChanged() ;
269 void MacPropagateHiliteChanged() ;
272 #if WXWIN_COMPATIBILITY_2_4
273 bool m_backgroundTransparent
;
276 // implement the base class pure virtuals
277 virtual wxSize
DoGetBestSize() const;
278 virtual wxSize
DoGetSizeFromClientSize( const wxSize
& size
) const;
279 virtual void DoClientToScreen( int *x
, int *y
) const;
280 virtual void DoScreenToClient( int *x
, int *y
) const;
281 virtual void DoGetPosition( int *x
, int *y
) const;
282 virtual void DoGetSize( int *width
, int *height
) const;
283 virtual void DoGetClientSize( int *width
, int *height
) const;
284 virtual void DoSetSize(int x
, int y
,
285 int width
, int height
,
286 int sizeFlags
= wxSIZE_AUTO
);
287 virtual void DoSetClientSize(int width
, int height
);
289 virtual void DoCaptureMouse();
290 virtual void DoReleaseMouse();
292 // move the window to the specified location and resize it: this is called
293 // from both DoSetSize() and DoSetClientSize() and would usually just call
294 // ::MoveWindow() except for composite controls which will want to arrange
295 // themselves inside the given rectangle
296 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
297 virtual void DoSetWindowVariant( wxWindowVariant variant
) ;
301 virtual void DoSetToolTip( wxToolTip
*tip
);
302 #endif // wxUSE_TOOLTIPS
307 // common part of all ctors
310 WXEVENTHANDLERREF m_macControlEventHandler
;
313 DECLARE_NO_COPY_CLASS(wxWindowMac
)
314 DECLARE_EVENT_TABLE()