1 /////////////////////////////////////////////////////////////////////////////
2 // Name: include/wx/mac/carbon/window.h
3 // Purpose: wxWindowMac class
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
18 class WXDLLIMPEXP_FWD_CORE wxButton
;
19 class WXDLLIMPEXP_FWD_CORE wxScrollBar
;
20 class WXDLLIMPEXP_FWD_CORE wxTopLevelWindowMac
;
24 class WXDLLEXPORT wxWindowMac
: public wxWindowBase
26 DECLARE_DYNAMIC_CLASS(wxWindowMac
)
29 friend class wxPaintDC
;
34 wxWindowMac( wxWindowMac
*parent
,
36 const wxPoint
& pos
= wxDefaultPosition
,
37 const wxSize
& size
= wxDefaultSize
,
39 const wxString
& name
= wxPanelNameStr
);
41 virtual ~wxWindowMac();
43 bool Create( wxWindowMac
*parent
,
45 const wxPoint
& pos
= wxDefaultPosition
,
46 const wxSize
& size
= wxDefaultSize
,
48 const wxString
& name
= wxPanelNameStr
);
50 // implement base class pure virtuals
51 virtual void SetLabel( const wxString
& label
);
52 virtual wxString
GetLabel() const;
57 virtual bool Show( bool show
= true );
59 virtual void SetFocus();
61 virtual void WarpPointer( int x
, int y
);
63 virtual void Refresh( bool eraseBackground
= true,
64 const wxRect
*rect
= NULL
);
65 virtual void Freeze();
67 virtual bool IsFrozen() const;
69 virtual void Update() ;
70 virtual void ClearBackground();
72 virtual bool SetCursor( const wxCursor
&cursor
);
73 virtual bool SetFont( const wxFont
&font
);
74 virtual bool SetBackgroundColour( const wxColour
&colour
);
75 virtual bool SetForegroundColour( const wxColour
&colour
);
77 virtual int GetCharHeight() const;
78 virtual int GetCharWidth() const;
79 virtual void GetTextExtent( const wxString
& string
,
82 int *externalLeading
= NULL
,
83 const wxFont
*theFont
= NULL
)
86 virtual void DoEnable( bool enable
);
87 virtual bool DoPopupMenu( wxMenu
*menu
, int x
, int y
);
90 virtual void SetScrollbar( int orient
, int pos
, int thumbVisible
,
91 int range
, bool refresh
= true );
92 virtual void SetScrollPos( int orient
, int pos
, bool refresh
= true );
93 virtual int GetScrollPos( int orient
) const;
94 virtual int GetScrollThumb( int orient
) const;
95 virtual int GetScrollRange( int orient
) const;
96 virtual void ScrollWindow( int dx
, int dy
,
97 const wxRect
* rect
= (wxRect
*) NULL
);
98 virtual void AlwaysShowScrollbars(bool horz
= true, bool vert
= true);
99 virtual bool IsScrollbarAlwaysShown(int orient
) const
101 return orient
== wxHORIZONTAL
? m_hScrollBarAlwaysShown
102 : m_vScrollBarAlwaysShown
;
105 virtual bool Reparent( wxWindowBase
*newParent
);
107 #if wxUSE_DRAG_AND_DROP
108 virtual void SetDropTarget( wxDropTarget
*dropTarget
);
111 // Accept files for dragging
112 virtual void DragAcceptFiles( bool accept
);
114 // implementation from now on
115 // --------------------------
117 void MacClientToRootWindow( int *x
, int *y
) const;
118 void MacRootWindowToClient( int *x
, int *y
) const;
120 void MacWindowToRootWindow( int *x
, int *y
) const;
121 void MacWindowToRootWindow( short *x
, short *y
) const;
123 void MacRootWindowToWindow( int *x
, int *y
) const;
124 void MacRootWindowToWindow( short *x
, short *y
) const;
126 virtual wxString
MacGetToolTipString( wxPoint
&where
);
131 virtual WXWidget
GetHandle() const;
133 virtual bool SetTransparent(wxByte alpha
);
134 virtual bool CanSetTransparent();
135 virtual wxByte
GetTransparent() const ;
139 void OnSetFocus( wxFocusEvent
& event
);
140 void OnPaint( wxPaintEvent
& event
);
141 void OnNcPaint( wxNcPaintEvent
& event
);
142 void OnEraseBackground(wxEraseEvent
& event
);
143 void OnMouseEvent( wxMouseEvent
&event
);
145 void MacOnScroll( wxScrollEvent
&event
);
147 virtual bool AcceptsFocus() const;
149 virtual bool IsDoubleBuffered() const { return true; }
152 static long MacRemoveBordersFromStyle( long style
) ;
155 void OnInternalIdle();
157 // For implementation purposes:
158 // sometimes decorations make the client area smaller
159 virtual wxPoint
GetClientAreaOrigin() const;
161 wxWindowMac
*FindItem(long id
) const;
162 wxWindowMac
*FindItemByHWND(WXHWND hWnd
, bool controlOnly
= false) const;
164 virtual void MacHandleControlClick( WXWidget control
, wxInt16 controlpart
, bool mouseStillDown
) ;
165 virtual bool MacDoRedraw( void* updatergn
, long time
) ;
166 virtual bool MacCanFocus() const ;
168 // this should not be overriden in classes above wxWindowMac
169 // because it is called from its destructor via DeleteChildren
170 virtual void RemoveChild( wxWindowBase
*child
);
171 virtual void MacPaintBorders( int left
, int top
) ;
172 void MacPaintGrowBox();
174 // invalidates the borders and focus area around the control;
175 // must not be virtual as it will be called during destruction
176 void MacInvalidateBorders() ;
178 WXWindow
MacGetTopLevelWindowRef() const ;
179 wxTopLevelWindowMac
* MacGetTopLevelWindow() const ;
181 virtual long MacGetLeftBorderSize() const ;
182 virtual long MacGetRightBorderSize() const ;
183 virtual long MacGetTopBorderSize() const ;
184 virtual long MacGetBottomBorderSize() const ;
186 virtual void MacSuperChangedPosition() ;
188 // absolute coordinates of this window's root have changed
189 virtual void MacTopLevelWindowChangedPosition() ;
191 virtual void MacChildAdded() ;
192 virtual void MacVisibilityChanged() ;
193 virtual void MacEnabledStateChanged() ;
194 virtual void MacHiliteChanged() ;
195 virtual wxInt32
MacControlHit( WXEVENTHANDLERREF handler
, WXEVENTREF event
) ;
197 bool MacIsReallyShown() ;
198 bool MacIsReallyEnabled() ;
199 bool MacIsReallyHilited() ;
201 bool MacIsUserPane() { return m_macIsUserPane
; }
203 virtual bool MacSetupCursor( const wxPoint
& pt
) ;
205 // return the rectangle that would be visible of this control,
206 // regardless whether controls are hidden
207 // only taking into account clipping by parent windows
208 const wxRect
& MacGetClippedClientRect() const ;
209 const wxRect
& MacGetClippedRect() const ;
210 const wxRect
& MacGetClippedRectWithOuterStructure() const ;
212 // returns the visible region of this control in window ie non-client coordinates
213 const wxRegion
& MacGetVisibleRegion( bool includeOuterStructures
= false ) ;
215 // returns true if children have to clipped to the content area
216 // (e.g., scrolled windows)
217 bool MacClipChildren() const { return m_clipChildren
; }
218 void MacSetClipChildren( bool clip
) { m_clipChildren
= clip
; }
220 // returns true if the grandchildren need to be clipped to the children's content area
221 // (e.g., splitter windows)
222 virtual bool MacClipGrandChildren() const { return false ; }
223 bool MacIsWindowScrollbar( const wxWindow
* sb
) const
224 { return ((wxWindow
*)m_hScrollBar
== sb
|| (wxWindow
*)m_vScrollBar
== sb
) ; }
225 virtual bool IsClientAreaChild(const wxWindow
*child
) const
227 return !MacIsWindowScrollbar(child
) &&
228 wxWindowBase::IsClientAreaChild(child
);
231 virtual void MacInstallEventHandler(WXWidget native
) ;
232 void MacPostControlCreate(const wxPoint
& pos
, const wxSize
& size
) ;
233 wxList
& GetSubcontrols() { return m_subControls
; }
234 WXEVENTHANDLERREF
MacGetControlEventHandler() { return m_macControlEventHandler
; }
236 // translate wxWidgets coords into ones suitable
237 // to be passed to CreateControl calls
239 // returns true if non-default coords are returned, false otherwise
240 bool MacGetBoundsForControl(const wxPoint
& pos
,
243 int& w
, int& h
, bool adjustForOrigin
) const ;
245 // calculates the real window position and size from the native control
246 void MacGetPositionAndSizeFromControl(int& x
, int& y
,
247 int& w
, int& h
) const ;
249 // gets the inset from every part
250 virtual void MacGetContentAreaInset( int &left
, int &top
, int &right
, int &bottom
) ;
252 // visibly flash the current invalid area:
253 // useful for debugging in OSX composited (double-buffered) situation
254 void MacFlashInvalidAreas() ;
256 // the 'true' OS level control for this wxWindow
257 wxMacControl
* GetPeer() const { return m_peer
; }
259 void * MacGetCGContextRef() { return m_cgContextRef
; }
260 void MacSetCGContextRef(void * cg
) { m_cgContextRef
= cg
; }
263 // For controls like radio buttons which are genuinely composite
264 wxList m_subControls
;
266 // number of calls to Freeze() minus number of calls to Thaw()
267 unsigned int m_frozenness
;
269 // the peer object, allowing for cleaner API support
270 wxMacControl
* m_peer
;
272 void * m_cgContextRef
;
274 // cache the clipped rectangles within the window hierarchy
275 void MacUpdateClippedRects() const ;
277 mutable bool m_cachedClippedRectValid
;
278 mutable wxRect m_cachedClippedRectWithOuterStructure
;
279 mutable wxRect m_cachedClippedRect
;
280 mutable wxRect m_cachedClippedClientRect
;
281 mutable wxRegion m_cachedClippedRegionWithOuterStructure
;
282 mutable wxRegion m_cachedClippedRegion
;
283 mutable wxRegion m_cachedClippedClientRegion
;
285 // true if is is not a native control but a wxWindow control
286 bool m_macIsUserPane
;
288 // insets of the mac control from the wx top left corner
289 wxPoint m_macTopLeftInset
;
290 wxPoint m_macBottomRightInset
;
293 wxScrollBar
* m_hScrollBar
;
294 wxScrollBar
* m_vScrollBar
;
295 bool m_hScrollBarAlwaysShown
;
296 bool m_vScrollBarAlwaysShown
;
299 // set to true if we do a sharp clip at the content area of this window
300 // must be dynamic as eg a panel normally is not clipping precisely, but if
301 // it becomes the target window of a scrolled window it has to...
302 bool m_clipChildren
;
304 virtual bool MacIsChildOfClientArea( const wxWindow
* child
) const ;
306 bool MacHasScrollBarCorner() const;
307 void MacCreateScrollBars( long style
) ;
308 void MacRepositionScrollBars() ;
309 void MacUpdateControlFont() ;
311 // implement the base class pure virtuals
312 virtual wxSize
DoGetBestSize() const;
313 virtual wxSize
DoGetSizeFromClientSize( const wxSize
& size
) const;
314 virtual void DoClientToScreen( int *x
, int *y
) const;
315 virtual void DoScreenToClient( int *x
, int *y
) const;
316 virtual void DoGetPosition( int *x
, int *y
) const;
317 virtual void DoGetSize( int *width
, int *height
) const;
318 virtual void DoGetClientSize( int *width
, int *height
) const;
319 virtual void DoSetSize(int x
, int y
,
320 int width
, int height
,
321 int sizeFlags
= wxSIZE_AUTO
);
322 virtual void DoSetClientSize(int width
, int height
);
324 virtual void DoCaptureMouse();
325 virtual void DoReleaseMouse();
327 // move the window to the specified location and resize it: this is called
328 // from both DoSetSize() and DoSetClientSize() and would usually just call
329 // ::MoveWindow() except for composite controls which will want to arrange
330 // themselves inside the given rectangle
331 virtual void DoMoveWindow( int x
, int y
, int width
, int height
);
332 virtual void DoSetWindowVariant( wxWindowVariant variant
);
335 virtual void DoSetToolTip( wxToolTip
*tip
);
339 // common part of all ctors
342 // show/hide scrollbars as needed, common part of SetScrollbar() and
343 // AlwaysShowScrollbars()
344 void DoUpdateScrollbarVisibility();
347 WXEVENTHANDLERREF m_macControlEventHandler
;
349 DECLARE_NO_COPY_CLASS(wxWindowMac
)
350 DECLARE_EVENT_TABLE()
353 #endif // _WX_WINDOW_H_