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"
22 // ---------------------------------------------------------------------------
23 // forward declarations
24 // ---------------------------------------------------------------------------
26 class WXDLLEXPORT wxButton
;
27 class WXDLLEXPORT wxScrollBar
;
28 class WXDLLEXPORT wxTopLevelWindowMac
;
30 // internal implementation classes
34 // ---------------------------------------------------------------------------
36 // ---------------------------------------------------------------------------
38 class WXDLLEXPORT wxWindowMac
: public wxWindowBase
40 DECLARE_DYNAMIC_CLASS(wxWindowMac
)
43 friend class wxPaintDC
;
49 wxWindowMac(wxWindowMac
*parent
,
51 const wxPoint
& pos
= wxDefaultPosition
,
52 const wxSize
& size
= wxDefaultSize
,
54 const wxString
& name
= wxPanelNameStr
) ;
56 virtual ~wxWindowMac();
58 bool Create(wxWindowMac
*parent
,
60 const wxPoint
& pos
= wxDefaultPosition
,
61 const wxSize
& size
= wxDefaultSize
,
63 const wxString
& name
= wxPanelNameStr
);
66 // implement base class pure virtuals
67 virtual void SetTitle( const wxString
& title
);
68 virtual wxString
GetTitle() const;
73 virtual bool Show( bool show
= TRUE
);
74 virtual bool Enable( bool enable
= TRUE
);
76 virtual void SetFocus();
78 virtual void WarpPointer(int x
, int y
);
80 virtual void Refresh( bool eraseBackground
= TRUE
,
81 const wxRect
*rect
= (const wxRect
*) NULL
);
82 virtual void Freeze() ;
85 virtual void Update() ;
86 virtual void ClearBackground() ;
88 virtual bool SetCursor( const wxCursor
&cursor
);
89 virtual bool SetFont( const wxFont
&font
) ;
90 virtual bool SetBackgroundColour( const wxColour
&colour
);
91 virtual bool SetForegroundColour( const wxColour
&colour
);
93 virtual int GetCharHeight() const;
94 virtual int GetCharWidth() const;
95 virtual void GetTextExtent(const wxString
& string
,
97 int *descent
= (int *) NULL
,
98 int *externalLeading
= (int *) NULL
,
99 const wxFont
*theFont
= (const wxFont
*) NULL
)
102 virtual bool DoPopupMenu( wxMenu
*menu
, int x
, int y
);
104 virtual void SetScrollbar( int orient
, int pos
, int thumbVisible
,
105 int range
, bool refresh
= TRUE
);
106 virtual void SetScrollPos( int orient
, int pos
, bool refresh
= TRUE
);
107 virtual int GetScrollPos( int orient
) const;
108 virtual int GetScrollThumb( int orient
) const;
109 virtual int GetScrollRange( int orient
) const;
110 virtual void ScrollWindow( int dx
, int dy
,
111 const wxRect
* rect
= (wxRect
*) NULL
);
113 #if wxUSE_DRAG_AND_DROP
114 virtual void SetDropTarget( wxDropTarget
*dropTarget
);
115 #endif // wxUSE_DRAG_AND_DROP
117 // Accept files for dragging
118 virtual void DragAcceptFiles(bool accept
);
120 // implementation from now on
121 // --------------------------
123 void MacClientToRootWindow( int *x
, int *y
) const ;
124 void MacRootWindowToClient( int *x
, int *y
) const ;
126 void MacWindowToRootWindow( int *x
, int *y
) const ;
127 void MacWindowToRootWindow( short *x
, short *y
) const ;
129 void MacRootWindowToWindow( int *x
, int *y
) const ;
130 void MacRootWindowToWindow( short *x
, short *y
) const ;
132 virtual wxString
MacGetToolTipString( wxPoint
&where
) ;
137 virtual WXWidget
GetHandle() const ;
139 #if WXWIN_COMPATIBILITY_2_4
140 bool GetTransparentBackground() const { return m_backgroundTransparent
; }
141 void SetTransparent(bool t
= TRUE
) { m_backgroundTransparent
= t
; }
146 void OnSetFocus(wxFocusEvent
& event
) ;
147 void OnPaint(wxPaintEvent
& event
);
148 void OnNcPaint(wxNcPaintEvent
& event
);
149 void OnEraseBackground(wxEraseEvent
& event
);
150 void OnMouseEvent( wxMouseEvent
&event
) ;
152 void MacOnScroll(wxScrollEvent
&event
) ;
154 bool AcceptsFocus() const ;
157 void OnInternalIdle();
159 // For implementation purposes - sometimes decorations make the client area
161 virtual wxPoint
GetClientAreaOrigin() const;
163 wxWindowMac
*FindItem(long id
) const;
164 wxWindowMac
*FindItemByHWND(WXHWND hWnd
, bool controlOnly
= FALSE
) const;
167 virtual void MacHandleControlClick( WXWidget control
, wxInt16 controlpart
, bool mouseStillDown
) ;
168 virtual bool MacDoRedraw( WXHRGN updatergn
, long time
) ;
169 virtual bool MacCanFocus() const ;
171 // this should not be overriden in classes above wxWindowMac because it is called from its destructor via DeleteChildren
172 virtual void RemoveChild( wxWindowBase
*child
);
173 virtual void MacPaintBorders( int left
, int top
) ;
174 WXWindow
MacGetTopLevelWindowRef() const ;
175 wxTopLevelWindowMac
* MacGetTopLevelWindow() const ;
177 virtual long MacGetLeftBorderSize() const ;
178 virtual long MacGetRightBorderSize() const ;
179 virtual long MacGetTopBorderSize() const ;
180 virtual long MacGetBottomBorderSize() const ;
182 static long MacRemoveBordersFromStyle( long style
) ;
184 virtual void MacSuperChangedPosition() ;
185 // the absolute coortinates of this window's root have changed
186 virtual void MacTopLevelWindowChangedPosition() ;
188 virtual void MacChildAdded() ;
189 virtual void MacVisibilityChanged() ;
190 virtual void MacEnabledStateChanged() ;
191 virtual void MacHiliteChanged() ;
192 virtual wxInt32
MacControlHit( WXEVENTHANDLERREF handler
, WXEVENTREF event
) ;
194 bool MacIsReallyShown() ;
195 bool MacIsReallyEnabled() ;
196 bool MacIsReallyHilited() ;
198 bool MacIsUserPane() { return m_macIsUserPane
; }
200 virtual bool MacSetupCursor( const wxPoint
& pt
) ;
202 virtual void MacSetBackgroundBrush( const wxBrush
&brush
) ;
203 const wxBrush
& MacGetBackgroundBrush() const { return m_macBackgroundBrush
; }
205 // returns the visible region of this control in window ie non-client coordinates
207 wxRegion
MacGetVisibleRegion( bool includeOuterStructures
= false ) ;
208 // returns true if children have to clipped to the content area (eg scrolled window)
209 virtual bool MacClipChildren() const { return false ; }
210 // returns true if the grandchildren have to be clipped to the children's content area (eg
212 virtual bool MacClipGrandChildren() const { return false ; }
213 bool MacIsWindowScrollbar( const wxScrollBar
* sb
)
214 { return (m_hScrollBar
== sb
|| m_vScrollBar
== sb
) ; }
216 wxList
& GetSubcontrols() { return m_subControls
; }
217 virtual void MacInstallEventHandler(WXWidget native
) ;
218 WXEVENTHANDLERREF
MacGetControlEventHandler() { return m_macControlEventHandler
; }
219 void MacPostControlCreate(const wxPoint
& pos
, const wxSize
& size
) ;
220 #ifndef __WXMAC_OSX__
221 virtual void MacControlUserPaneDrawProc(wxInt16 part
) ;
222 virtual wxInt16
MacControlUserPaneHitTestProc(wxInt16 x
, wxInt16 y
) ;
223 virtual wxInt16
MacControlUserPaneTrackingProc(wxInt16 x
, wxInt16 y
, void* actionProc
) ;
224 virtual void MacControlUserPaneIdleProc() ;
225 virtual wxInt16
MacControlUserPaneKeyDownProc(wxInt16 keyCode
, wxInt16 charCode
, wxInt16 modifiers
) ;
226 virtual void MacControlUserPaneActivateProc(bool activating
) ;
227 virtual wxInt16
MacControlUserPaneFocusProc(wxInt16 action
) ;
228 virtual void MacControlUserPaneBackgroundProc(void* info
) ;
230 // translate wxWidgets coords into ones suitable to be passed to
231 // the CreateControl calls
233 // returns TRUE if non default coords are returned, FALSE otherwise
234 bool MacGetBoundsForControl(const wxPoint
& pos
,
237 int& w
, int& h
, bool adjustForOrigin
) const ;
238 // calculates the real window position and size from the native control
239 void MacGetPositionAndSizeFromControl(int& x
, int& y
,
240 int& w
, int& h
) const ;
241 // gets the inset from every part
242 virtual void MacGetContentAreaInset( int &left
, int &top
, int &right
, int &bottom
) ;
244 // flash the current invalid area, useful for debugging in OSX double buffered situation
245 void MacFlashInvalidAreas() ;
246 #if wxMAC_USE_CORE_GRAPHICS
247 void * MacGetCGContextRef() { return m_cgContextRef
; }
248 void MacSetCGContextRef(void * cg
) { m_cgContextRef
= cg
; }
251 // For controls like radiobuttons which are really composite
252 wxList m_subControls
;
253 // number of calls to Freeze() minus number of calls to Thaw()
254 unsigned int m_frozenness
;
255 // the peer object, allowing for cleaner API support
256 wxMacControl
* m_peer
;
257 #if wxMAC_USE_CORE_GRAPHICS
258 void * m_cgContextRef
;
260 // true if is is not a native control but a wxWindow control
261 bool m_macIsUserPane
;
262 wxBrush m_macBackgroundBrush
;
263 // topleft inset of the mac control from the wx top left corner
264 wxPoint m_macTopLeftInset
;
265 // bottom right inset of the mac control from the wx bottom right corner
266 wxPoint m_macBottomRightInset
;
268 wxScrollBar
* m_hScrollBar
;
269 wxScrollBar
* m_vScrollBar
;
272 void MacCreateScrollBars( long style
) ;
273 void MacRepositionScrollBars() ;
274 void MacUpdateControlFont() ;
276 void MacPropagateVisibilityChanged() ;
277 void MacPropagateEnabledStateChanged() ;
278 void MacPropagateHiliteChanged() ;
281 #if WXWIN_COMPATIBILITY_2_4
282 bool m_backgroundTransparent
;
285 // implement the base class pure virtuals
286 virtual wxSize
DoGetBestSize() const;
287 virtual wxSize
DoGetSizeFromClientSize( const wxSize
& size
) const;
288 virtual void DoClientToScreen( int *x
, int *y
) const;
289 virtual void DoScreenToClient( int *x
, int *y
) const;
290 virtual void DoGetPosition( int *x
, int *y
) const;
291 virtual void DoGetSize( int *width
, int *height
) const;
292 virtual void DoGetClientSize( int *width
, int *height
) const;
293 virtual void DoSetSize(int x
, int y
,
294 int width
, int height
,
295 int sizeFlags
= wxSIZE_AUTO
);
296 virtual void DoSetClientSize(int width
, int height
);
298 virtual void DoCaptureMouse();
299 virtual void DoReleaseMouse();
301 // move the window to the specified location and resize it: this is called
302 // from both DoSetSize() and DoSetClientSize() and would usually just call
303 // ::MoveWindow() except for composite controls which will want to arrange
304 // themselves inside the given rectangle
305 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
306 virtual void DoSetWindowVariant( wxWindowVariant variant
) ;
310 virtual void DoSetToolTip( wxToolTip
*tip
);
311 #endif // wxUSE_TOOLTIPS
316 // common part of all ctors
319 WXEVENTHANDLERREF m_macControlEventHandler
;
322 DECLARE_NO_COPY_CLASS(wxWindowMac
)
323 DECLARE_EVENT_TABLE()