1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxClientDC class
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
14 #include "wx/dcclient.h"
15 #include "wx/dcmemory.h"
16 #include "wx/region.h"
17 #include "wx/window.h"
18 #include "wx/toplevel.h"
19 #include "wx/settings.h"
21 #include "wx/mac/private.h"
24 //-----------------------------------------------------------------------------
26 //-----------------------------------------------------------------------------
28 #define RAD2DEG 57.2957795131
30 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 IMPLEMENT_DYNAMIC_CLASS(wxWindowDC
, wxDC
)
35 IMPLEMENT_DYNAMIC_CLASS(wxClientDC
, wxWindowDC
)
36 IMPLEMENT_DYNAMIC_CLASS(wxPaintDC
, wxWindowDC
)
42 #include "wx/mac/uma.h"
43 #include "wx/notebook.h"
44 #include "wx/tabctrl.h"
47 static wxBrush
MacGetBackgroundBrush( wxWindow
* window
)
49 wxBrush bkdBrush
= window
->MacGetBackgroundBrush() ;
51 #if !TARGET_API_MAC_OSX
52 // transparency cannot be handled by the OS when not using composited windows
53 wxWindow
* parent
= window
->GetParent() ;
55 // if we have some 'pseudo' transparency
56 if ( ! bkdBrush
.Ok() || bkdBrush
.GetStyle() == wxTRANSPARENT
|| window
->GetBackgroundColour() == wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
) )
58 // walk up until we find something
59 while ( parent
!= NULL
)
61 if ( parent
->GetBackgroundColour() != wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
) )
63 // if we have any other colours in the hierarchy
64 bkdBrush
.SetColour( parent
->GetBackgroundColour() ) ;
68 if ( parent
->IsKindOf( CLASSINFO(wxTopLevelWindow
) ) )
70 bkdBrush
= parent
->MacGetBackgroundBrush() ;
74 if ( parent
->IsKindOf( CLASSINFO( wxNotebook
) ) || parent
->IsKindOf( CLASSINFO( wxTabCtrl
) ) )
76 Rect extent
= { 0 , 0 , 0 , 0 } ;
79 wxSize size
= parent
->GetSize() ;
80 parent
->MacClientToRootWindow( &x
, &y
) ;
84 extent
.right
= x
+ size
.x
;
85 extent
.bottom
= y
+ size
.y
;
86 bkdBrush
.MacSetThemeBackground( kThemeBackgroundTabPane
, (WXRECTPTR
) &extent
) ;
90 parent
= parent
->GetParent() ;
94 if ( !bkdBrush
.Ok() || bkdBrush
.GetStyle() == wxTRANSPARENT
)
96 // if we did not find something, use a default
97 bkdBrush
.MacSetTheme( kThemeBrushDialogBackgroundActive
) ;
104 wxWindowDC::wxWindowDC()
109 wxWindowDC::wxWindowDC(wxWindow
*window
)
112 wxTopLevelWindowMac
* rootwindow
= window
->MacGetTopLevelWindow() ;
116 WindowRef windowref
= (WindowRef
) rootwindow
->MacGetWindowRef() ;
119 wxSize size
= window
->GetSize() ;
120 window
->MacWindowToRootWindow( &x
, &y
) ;
121 m_macPort
= UMAGetWindowPort( windowref
) ;
124 #if wxMAC_USE_CORE_GRAPHICS
125 m_macLocalOriginInPort
.x
= x
;
126 m_macLocalOriginInPort
.y
= y
;
128 if ( window
->MacGetCGContextRef() )
130 m_graphicContext
= new wxMacCGContext( (CGContextRef
) window
->MacGetCGContextRef() ) ;
131 m_graphicContext
->SetPen( m_pen
) ;
132 m_graphicContext
->SetBrush( m_brush
) ;
133 SetBackground(MacGetBackgroundBrush(window
));
137 // as out of order redraw is not supported under CQ, we have to create a qd port for these
139 m_macLocalOrigin
.x
= x
;
140 m_macLocalOrigin
.y
= y
;
142 m_graphicContext
= new wxMacCGContext( (CGrafPtr
) m_macPort
) ;
143 m_graphicContext
->SetPen( m_pen
) ;
144 m_graphicContext
->SetBrush( m_brush
) ;
145 SetBackground(MacGetBackgroundBrush(window
));
147 // there is no out-of-order drawing on OSX
149 m_macLocalOrigin
.x
= x
;
150 m_macLocalOrigin
.y
= y
;
151 CopyRgn( (RgnHandle
) window
->MacGetVisibleRegion(true).GetWXHRGN() , (RgnHandle
) m_macBoundaryClipRgn
) ;
152 OffsetRgn( (RgnHandle
) m_macBoundaryClipRgn
, m_macLocalOrigin
.x
, m_macLocalOrigin
.y
) ;
153 CopyRgn( (RgnHandle
) m_macBoundaryClipRgn
, (RgnHandle
) m_macCurrentClipRgn
) ;
154 SetBackground(MacGetBackgroundBrush(window
));
157 SetFont( window
->GetFont() ) ;
160 wxWindowDC::~wxWindowDC()
164 void wxWindowDC::DoGetSize( int* width
, int* height
) const
166 wxCHECK_RET( m_window
, _T("GetSize() doesn't work without window") );
168 m_window
->GetSize(width
, height
);
175 wxClientDC::wxClientDC()
180 wxClientDC::wxClientDC(wxWindow
*window
)
183 wxTopLevelWindowMac
* rootwindow
= window
->MacGetTopLevelWindow() ;
187 WindowRef windowref
= (WindowRef
) rootwindow
->MacGetWindowRef() ;
188 wxPoint origin
= window
->GetClientAreaOrigin() ;
189 wxSize size
= window
->GetClientSize() ;
193 window
->MacWindowToRootWindow( &x
, &y
) ;
194 m_macPort
= UMAGetWindowPort( windowref
) ;
197 #if wxMAC_USE_CORE_GRAPHICS
198 m_macLocalOriginInPort
.x
= x
;
199 m_macLocalOriginInPort
.y
= y
;
200 if ( window
->MacGetCGContextRef() )
202 m_graphicContext
= new wxMacCGContext( (CGContextRef
) window
->MacGetCGContextRef() ) ;
203 m_graphicContext
->SetPen( m_pen
) ;
204 m_graphicContext
->SetBrush( m_brush
) ;
205 SetClippingRegion( 0 , 0 , size
.x
, size
.y
) ;
206 SetBackground(MacGetBackgroundBrush(window
));
210 // as out of order redraw is not supported under CQ,
211 // we have to create a QD port for these situations
212 m_macLocalOrigin
.x
= x
;
213 m_macLocalOrigin
.y
= y
;
214 m_graphicContext
= new wxMacCGContext( (CGrafPtr
) m_macPort
) ;
215 m_graphicContext
->SetPen( m_pen
) ;
216 m_graphicContext
->SetBrush( m_brush
) ;
219 m_macLocalOrigin
.x
= x
;
220 m_macLocalOrigin
.y
= y
;
221 SetRectRgn( (RgnHandle
) m_macBoundaryClipRgn
, origin
.x
, origin
.y
, origin
.x
+ size
.x
, origin
.y
+ size
.y
) ;
222 SectRgn( (RgnHandle
) m_macBoundaryClipRgn
, (RgnHandle
) window
->MacGetVisibleRegion().GetWXHRGN() , (RgnHandle
) m_macBoundaryClipRgn
) ;
223 OffsetRgn( (RgnHandle
) m_macBoundaryClipRgn
, -origin
.x
, -origin
.y
) ;
224 OffsetRgn( (RgnHandle
) m_macBoundaryClipRgn
, m_macLocalOrigin
.x
, m_macLocalOrigin
.y
) ;
225 CopyRgn( (RgnHandle
) m_macBoundaryClipRgn
,(RgnHandle
) m_macCurrentClipRgn
) ;
228 SetBackground(MacGetBackgroundBrush(window
));
229 SetFont( window
->GetFont() ) ;
232 wxClientDC::~wxClientDC()
234 #if wxMAC_USE_CORE_GRAPHICS
236 if ( m_window->MacGetCGContextRef() == 0)
238 CGContextRef cgContext = (wxMacCGContext*)(m_graphicContext)->GetNativeContext() ;
239 CGContextFlush( cgContext ) ;
245 void wxClientDC::DoGetSize(int *width
, int *height
) const
247 wxCHECK_RET( m_window
, _T("GetSize() doesn't work without window") );
249 m_window
->GetClientSize( width
, height
);
256 wxPaintDC::wxPaintDC()
261 wxPaintDC::wxPaintDC(wxWindow
*window
)
264 wxTopLevelWindowMac
* rootwindow
= window
->MacGetTopLevelWindow() ;
265 WindowRef windowref
= (WindowRef
) rootwindow
->MacGetWindowRef() ;
266 wxPoint origin
= window
->GetClientAreaOrigin() ;
267 wxSize size
= window
->GetClientSize() ;
271 window
->MacWindowToRootWindow( &x
, &y
) ;
272 m_macPort
= UMAGetWindowPort( windowref
) ;
275 #if wxMAC_USE_CORE_GRAPHICS
276 m_macLocalOriginInPort
.x
= x
;
277 m_macLocalOriginInPort
.y
= y
;
278 if ( window
->MacGetCGContextRef() )
280 m_graphicContext
= new wxMacCGContext( (CGContextRef
) window
->MacGetCGContextRef() ) ;
281 m_graphicContext
->SetPen( m_pen
) ;
282 m_graphicContext
->SetBrush( m_brush
) ;
283 SetClippingRegion( 0 , 0 , size
.x
, size
.y
) ;
284 SetBackground(MacGetBackgroundBrush(window
));
288 wxLogDebug(wxT("You cannot create a wxPaintDC outside an OS-draw event") ) ;
289 m_graphicContext
= NULL
;
291 // there is no out-of-order drawing on OSX
293 m_macLocalOrigin
.x
= x
;
294 m_macLocalOrigin
.y
= y
;
295 SetRectRgn( (RgnHandle
) m_macBoundaryClipRgn
, origin
.x
, origin
.y
, origin
.x
+ size
.x
, origin
.y
+ size
.y
) ;
296 SectRgn( (RgnHandle
) m_macBoundaryClipRgn
, (RgnHandle
) window
->MacGetVisibleRegion().GetWXHRGN() , (RgnHandle
) m_macBoundaryClipRgn
) ;
297 OffsetRgn( (RgnHandle
) m_macBoundaryClipRgn
, -origin
.x
, -origin
.y
) ;
298 SectRgn( (RgnHandle
) m_macBoundaryClipRgn
, (RgnHandle
) window
->GetUpdateRegion().GetWXHRGN() , (RgnHandle
) m_macBoundaryClipRgn
) ;
299 OffsetRgn( (RgnHandle
) m_macBoundaryClipRgn
, m_macLocalOrigin
.x
, m_macLocalOrigin
.y
) ;
300 CopyRgn( (RgnHandle
) m_macBoundaryClipRgn
, (RgnHandle
) m_macCurrentClipRgn
) ;
301 SetBackground(MacGetBackgroundBrush(window
));
304 SetFont( window
->GetFont() ) ;
307 wxPaintDC::~wxPaintDC()
311 void wxPaintDC::DoGetSize(int *width
, int *height
) const
313 wxCHECK_RET( m_window
, _T("GetSize() doesn't work without window") );
315 m_window
->GetClientSize( width
, height
);