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 wxNonOwnedWindow
;
22 class WXDLLIMPEXP_FWD_CORE wxMacControl
;
23 class WXDLLIMPEXP_FWD_CORE wxWidgetImpl
;
25 class WXDLLIMPEXP_CORE wxWindowMac
: public wxWindowBase
27 DECLARE_DYNAMIC_CLASS(wxWindowMac
)
30 friend class wxPaintDC
;
35 wxWindowMac( wxWindowMac
*parent
,
37 const wxPoint
& pos
= wxDefaultPosition
,
38 const wxSize
& size
= wxDefaultSize
,
40 const wxString
& name
= wxPanelNameStr
);
42 virtual ~wxWindowMac();
44 bool Create( wxWindowMac
*parent
,
46 const wxPoint
& pos
= wxDefaultPosition
,
47 const wxSize
& size
= wxDefaultSize
,
49 const wxString
& name
= wxPanelNameStr
);
51 // implement base class pure virtuals
52 virtual void SetLabel( const wxString
& label
);
53 virtual wxString
GetLabel() const;
58 virtual bool Show( bool show
= true );
60 virtual bool IsShownOnScreen() const;
62 virtual void SetFocus();
64 virtual void WarpPointer( int x
, int y
);
66 virtual void Refresh( bool eraseBackground
= true,
67 const wxRect
*rect
= NULL
);
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
);
89 virtual void DoFreeze();
90 virtual void DoThaw();
93 virtual void SetScrollbar( int orient
, int pos
, int thumbVisible
,
94 int range
, bool refresh
= true );
95 virtual void SetScrollPos( int orient
, int pos
, bool refresh
= true );
96 virtual int GetScrollPos( int orient
) const;
97 virtual int GetScrollThumb( int orient
) const;
98 virtual int GetScrollRange( int orient
) const;
99 virtual void ScrollWindow( int dx
, int dy
,
100 const wxRect
* rect
= (wxRect
*) NULL
);
101 virtual void AlwaysShowScrollbars(bool horz
= true, bool vert
= true);
102 virtual bool IsScrollbarAlwaysShown(int orient
) const
104 return orient
== wxHORIZONTAL
? m_hScrollBarAlwaysShown
105 : m_vScrollBarAlwaysShown
;
108 virtual bool Reparent( wxWindowBase
*newParent
);
110 #if wxUSE_DRAG_AND_DROP
111 virtual void SetDropTarget( wxDropTarget
*dropTarget
);
114 // Accept files for dragging
115 virtual void DragAcceptFiles( bool accept
);
117 // implementation from now on
118 // --------------------------
120 void MacClientToRootWindow( int *x
, int *y
) const;
122 void MacWindowToRootWindow( int *x
, int *y
) const;
124 void MacRootWindowToWindow( int *x
, int *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 OnPaint( wxPaintEvent
& event
);
140 void OnNcPaint( wxNcPaintEvent
& event
);
141 void OnEraseBackground(wxEraseEvent
& event
);
142 void OnMouseEvent( wxMouseEvent
&event
);
144 void MacOnScroll( wxScrollEvent
&event
);
146 virtual bool AcceptsFocus() const;
148 virtual bool IsDoubleBuffered() const { return true; }
151 static long MacRemoveBordersFromStyle( long style
) ;
154 void OnInternalIdle();
156 // For implementation purposes:
157 // sometimes decorations make the client area smaller
158 virtual wxPoint
GetClientAreaOrigin() const;
160 wxWindowMac
*FindItem(long id
) const;
161 wxWindowMac
*FindItemByHWND(WXHWND hWnd
, bool controlOnly
= false) const;
163 virtual void MacHandleControlClick( WXWidget control
, wxInt16 controlpart
, bool mouseStillDown
) ;
164 virtual bool MacDoRedraw( void* updatergn
, long time
) ;
166 // this should not be overriden in classes above wxWindowMac
167 // because it is called from its destructor via DeleteChildren
168 virtual void RemoveChild( wxWindowBase
*child
);
169 virtual void MacPaintBorders( int left
, int top
) ;
170 void MacPaintGrowBox();
172 // invalidates the borders and focus area around the control;
173 // must not be virtual as it will be called during destruction
174 void MacInvalidateBorders() ;
176 WXWindow
MacGetTopLevelWindowRef() const ;
177 wxNonOwnedWindow
* MacGetTopLevelWindow() const ;
179 virtual long MacGetLeftBorderSize() const ;
180 virtual long MacGetRightBorderSize() const ;
181 virtual long MacGetTopBorderSize() const ;
182 virtual long MacGetBottomBorderSize() const ;
184 virtual void MacSuperChangedPosition() ;
186 // absolute coordinates of this window's root have changed
187 virtual void MacTopLevelWindowChangedPosition() ;
189 virtual void MacChildAdded() ;
190 virtual void MacVisibilityChanged() ;
191 virtual void MacEnabledStateChanged() ;
192 virtual void MacHiliteChanged() ;
193 virtual wxInt32
MacControlHit( WXEVENTHANDLERREF handler
, WXEVENTREF event
) ;
195 bool MacIsReallyEnabled() ;
196 bool MacIsReallyHilited() ;
198 bool MacIsUserPane() { return m_macIsUserPane
; }
200 virtual bool MacSetupCursor( const wxPoint
& pt
) ;
202 // return the rectangle that would be visible of this control,
203 // regardless whether controls are hidden
204 // only taking into account clipping by parent windows
205 const wxRect
& MacGetClippedClientRect() const ;
206 const wxRect
& MacGetClippedRect() const ;
207 const wxRect
& MacGetClippedRectWithOuterStructure() const ;
209 // returns the visible region of this control in window ie non-client coordinates
210 const wxRegion
& MacGetVisibleRegion( bool includeOuterStructures
= false ) ;
212 // returns true if children have to clipped to the content area
213 // (e.g., scrolled windows)
214 bool MacClipChildren() const { return m_clipChildren
; }
215 void MacSetClipChildren( bool clip
) { m_clipChildren
= clip
; }
217 // returns true if the grandchildren need to be clipped to the children's content area
218 // (e.g., splitter windows)
219 virtual bool MacClipGrandChildren() const { return false ; }
220 bool MacIsWindowScrollbar( const wxWindow
* sb
) const
221 { return ((wxWindow
*)m_hScrollBar
== sb
|| (wxWindow
*)m_vScrollBar
== sb
) ; }
222 virtual bool IsClientAreaChild(const wxWindow
*child
) const
224 return !MacIsWindowScrollbar(child
) &&
225 wxWindowBase::IsClientAreaChild(child
);
228 void MacPostControlCreate(const wxPoint
& pos
, const wxSize
& size
) ;
229 wxList
& GetSubcontrols() { return m_subControls
; }
231 // translate wxWidgets coords into ones suitable
232 // to be passed to CreateControl calls
234 // returns true if non-default coords are returned, false otherwise
235 bool MacGetBoundsForControl(const wxPoint
& pos
,
238 int& w
, int& h
, bool adjustForOrigin
) const ;
240 // the 'true' OS level control for this wxWindow
242 wxMacControl
* GetPeer() const { return m_peer
; }
244 wxWidgetImpl
* GetPeer() const { return m_peer
; }
247 void * MacGetCGContextRef() { return m_cgContextRef
; }
248 void MacSetCGContextRef(void * cg
) { m_cgContextRef
= cg
; }
251 // For controls like radio buttons which are genuinely composite
252 wxList m_subControls
;
255 // the peer object, allowing for cleaner API support
256 wxMacControl
* m_peer
;
258 wxWidgetImpl
* m_peer
;
260 void * m_cgContextRef
;
262 // cache the clipped rectangles within the window hierarchy
263 void MacUpdateClippedRects() const ;
265 mutable bool m_cachedClippedRectValid
;
266 mutable wxRect m_cachedClippedRectWithOuterStructure
;
267 mutable wxRect m_cachedClippedRect
;
268 mutable wxRect m_cachedClippedClientRect
;
269 mutable wxRegion m_cachedClippedRegionWithOuterStructure
;
270 mutable wxRegion m_cachedClippedRegion
;
271 mutable wxRegion m_cachedClippedClientRegion
;
273 // true if is is not a native control but a wxWindow control
274 bool m_macIsUserPane
;
276 // insets of the mac control from the wx top left corner
277 wxPoint m_macTopLeftInset
;
278 wxPoint m_macBottomRightInset
;
281 wxScrollBar
* m_hScrollBar
;
282 wxScrollBar
* m_vScrollBar
;
283 bool m_hScrollBarAlwaysShown
;
284 bool m_vScrollBarAlwaysShown
;
287 // set to true if we do a sharp clip at the content area of this window
288 // must be dynamic as eg a panel normally is not clipping precisely, but if
289 // it becomes the target window of a scrolled window it has to...
290 bool m_clipChildren
;
292 virtual bool MacIsChildOfClientArea( const wxWindow
* child
) const ;
294 bool MacHasScrollBarCorner() const;
295 void MacCreateScrollBars( long style
) ;
296 void MacRepositionScrollBars() ;
297 void MacUpdateControlFont() ;
299 // implement the base class pure virtuals
300 virtual wxSize
DoGetBestSize() const;
301 virtual wxSize
DoGetSizeFromClientSize( const wxSize
& size
) const;
302 virtual void DoClientToScreen( int *x
, int *y
) const;
303 virtual void DoScreenToClient( int *x
, int *y
) const;
304 virtual void DoGetPosition( int *x
, int *y
) const;
305 virtual void DoGetSize( int *width
, int *height
) const;
306 virtual void DoGetClientSize( int *width
, int *height
) const;
307 virtual void DoSetSize(int x
, int y
,
308 int width
, int height
,
309 int sizeFlags
= wxSIZE_AUTO
);
310 virtual void DoSetClientSize(int width
, int height
);
312 virtual void DoCaptureMouse();
313 virtual void DoReleaseMouse();
315 // move the window to the specified location and resize it: this is called
316 // from both DoSetSize() and DoSetClientSize() and would usually just call
317 // ::MoveWindow() except for composite controls which will want to arrange
318 // themselves inside the given rectangle
319 virtual void DoMoveWindow( int x
, int y
, int width
, int height
);
320 virtual void DoSetWindowVariant( wxWindowVariant variant
);
323 virtual void DoSetToolTip( wxToolTip
*tip
);
327 // common part of all ctors
330 // show/hide scrollbars as needed, common part of SetScrollbar() and
331 // AlwaysShowScrollbars()
332 void DoUpdateScrollbarVisibility();
335 DECLARE_NO_COPY_CLASS(wxWindowMac
)
336 DECLARE_EVENT_TABLE()
339 #endif // _WX_WINDOW_H_