]>
Commit | Line | Data |
---|---|---|
e9576ca5 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dcclient.cpp | |
3 | // Purpose: wxClientDC class | |
a31a5f85 | 4 | // Author: Stefan Csomor |
e9576ca5 SC |
5 | // Modified by: |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
a31a5f85 | 8 | // Copyright: (c) Stefan Csomor |
65571936 | 9 | // Licence: wxWindows licence |
e9576ca5 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
3d1a4878 SC |
12 | #include "wx/wxprec.h" |
13 | ||
e9576ca5 SC |
14 | #include "wx/dcclient.h" |
15 | #include "wx/dcmemory.h" | |
16 | #include "wx/region.h" | |
03e11df5 | 17 | #include "wx/window.h" |
456c94e1 | 18 | #include "wx/toplevel.h" |
5f5f809d | 19 | #include "wx/settings.h" |
463c4d71 | 20 | #include "wx/math.h" |
76a5e5d2 | 21 | #include "wx/mac/private.h" |
e928c28c | 22 | #include "wx/log.h" |
e9576ca5 SC |
23 | |
24 | //----------------------------------------------------------------------------- | |
25 | // constants | |
26 | //----------------------------------------------------------------------------- | |
27 | ||
28 | #define RAD2DEG 57.2957795131 | |
29 | ||
30 | //----------------------------------------------------------------------------- | |
31 | // wxPaintDC | |
32 | //----------------------------------------------------------------------------- | |
33 | ||
e9576ca5 SC |
34 | IMPLEMENT_DYNAMIC_CLASS(wxWindowDC, wxDC) |
35 | IMPLEMENT_DYNAMIC_CLASS(wxClientDC, wxWindowDC) | |
36 | IMPLEMENT_DYNAMIC_CLASS(wxPaintDC, wxWindowDC) | |
e9576ca5 SC |
37 | |
38 | /* | |
39 | * wxWindowDC | |
40 | */ | |
41 | ||
d497dca4 | 42 | #include "wx/mac/uma.h" |
be346c26 SC |
43 | #include "wx/notebook.h" |
44 | #include "wx/tabctrl.h" | |
45 | ||
46 | ||
47 | static wxBrush MacGetBackgroundBrush( wxWindow* window ) | |
48 | { | |
49 | wxBrush bkdBrush = window->MacGetBackgroundBrush() ; | |
9b2eab52 | 50 | |
be346c26 SC |
51 | #if !TARGET_API_MAC_OSX |
52 | // transparency cannot be handled by the OS when not using composited windows | |
53 | wxWindow* parent = window->GetParent() ; | |
9b2eab52 | 54 | |
be346c26 SC |
55 | // if we have some 'pseudo' transparency |
56 | if ( ! bkdBrush.Ok() || bkdBrush.GetStyle() == wxTRANSPARENT || window->GetBackgroundColour() == wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE ) ) | |
57 | { | |
58 | // walk up until we find something | |
9b2eab52 | 59 | while ( parent != NULL ) |
be346c26 SC |
60 | { |
61 | if ( parent->GetBackgroundColour() != wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE ) ) | |
62 | { | |
63 | // if we have any other colours in the hierarchy | |
64 | bkdBrush.SetColour( parent->GetBackgroundColour() ) ; | |
65 | break ; | |
66 | } | |
9b2eab52 | 67 | |
be346c26 SC |
68 | if ( parent->IsKindOf( CLASSINFO(wxTopLevelWindow) ) ) |
69 | { | |
70 | bkdBrush = parent->MacGetBackgroundBrush() ; | |
71 | break ; | |
72 | } | |
9b2eab52 | 73 | |
be346c26 SC |
74 | if ( parent->IsKindOf( CLASSINFO( wxNotebook ) ) || parent->IsKindOf( CLASSINFO( wxTabCtrl ) ) ) |
75 | { | |
76 | Rect extent = { 0 , 0 , 0 , 0 } ; | |
77 | int x , y ; | |
78 | x = y = 0 ; | |
79 | wxSize size = parent->GetSize() ; | |
80 | parent->MacClientToRootWindow( &x , &y ) ; | |
81 | extent.left = x ; | |
82 | extent.top = y ; | |
83 | extent.top-- ; | |
84 | extent.right = x + size.x ; | |
85 | extent.bottom = y + size.y ; | |
86 | bkdBrush.MacSetThemeBackground( kThemeBackgroundTabPane , (WXRECTPTR) &extent ) ; | |
87 | break ; | |
88 | } | |
89 | ||
90 | parent = parent->GetParent() ; | |
91 | } | |
92 | } | |
9b2eab52 | 93 | |
be346c26 SC |
94 | if ( !bkdBrush.Ok() || bkdBrush.GetStyle() == wxTRANSPARENT ) |
95 | { | |
96 | // if we did not find something, use a default | |
97 | bkdBrush.MacSetTheme( kThemeBrushDialogBackgroundActive ) ; | |
98 | } | |
9b2eab52 DS |
99 | #endif |
100 | ||
be346c26 SC |
101 | return bkdBrush ; |
102 | } | |
103 | ||
2f1ae414 | 104 | wxWindowDC::wxWindowDC() |
e9576ca5 | 105 | { |
1be0560e | 106 | m_window = NULL ; |
519cb848 | 107 | } |
e9576ca5 | 108 | |
1be0560e | 109 | wxWindowDC::wxWindowDC(wxWindow *window) |
519cb848 | 110 | { |
1be0560e | 111 | m_window = window ; |
9f391ae1 SC |
112 | wxTopLevelWindowMac* rootwindow = window->MacGetTopLevelWindow() ; |
113 | if (!rootwindow) | |
114 | return; | |
9b2eab52 | 115 | |
9f391ae1 SC |
116 | WindowRef windowref = (WindowRef) rootwindow->MacGetWindowRef() ; |
117 | int x , y ; | |
118 | x = y = 0 ; | |
119 | wxSize size = window->GetSize() ; | |
120 | window->MacWindowToRootWindow( &x , &y ) ; | |
121 | m_macPort = UMAGetWindowPort( windowref ) ; | |
eb1a7cf9 DS |
122 | m_ok = true ; |
123 | ||
20b69855 | 124 | #if wxMAC_USE_CORE_GRAPHICS |
9f391ae1 SC |
125 | m_macLocalOriginInPort.x = x ; |
126 | m_macLocalOriginInPort.y = y ; | |
127 | ||
20b69855 SC |
128 | if ( window->MacGetCGContextRef() ) |
129 | { | |
130 | m_graphicContext = new wxMacCGContext( (CGContextRef) window->MacGetCGContextRef() ) ; | |
131 | m_graphicContext->SetPen( m_pen ) ; | |
132 | m_graphicContext->SetBrush( m_brush ) ; | |
20b69855 SC |
133 | } |
134 | else | |
cb4b0966 SC |
135 | { |
136 | // as out of order redraw is not supported under CQ, we have to create a qd port for these | |
137 | // situations | |
cb4b0966 SC |
138 | m_macLocalOrigin.x = x ; |
139 | m_macLocalOrigin.y = y ; | |
cb4b0966 | 140 | |
9f391ae1 | 141 | m_graphicContext = new wxMacCGContext( (CGrafPtr) m_macPort ) ; |
cb4b0966 SC |
142 | m_graphicContext->SetPen( m_pen ) ; |
143 | m_graphicContext->SetBrush( m_brush ) ; | |
cb4b0966 | 144 | } |
20b69855 SC |
145 | // there is no out-of-order drawing on OSX |
146 | #else | |
e40298d5 JS |
147 | m_macLocalOrigin.x = x ; |
148 | m_macLocalOrigin.y = y ; | |
cf9d0f93 | 149 | CopyRgn( (RgnHandle) window->MacGetVisibleRegion(true).GetWXHRGN() , (RgnHandle) m_macBoundaryClipRgn ) ; |
e40298d5 JS |
150 | OffsetRgn( (RgnHandle) m_macBoundaryClipRgn , m_macLocalOrigin.x , m_macLocalOrigin.y ) ; |
151 | CopyRgn( (RgnHandle) m_macBoundaryClipRgn , (RgnHandle) m_macCurrentClipRgn ) ; | |
20b69855 | 152 | #endif |
489d2dd3 | 153 | SetBackground(MacGetBackgroundBrush(window)); |
9b2eab52 | 154 | |
20b69855 | 155 | SetFont( window->GetFont() ) ; |
519cb848 | 156 | } |
e9576ca5 | 157 | |
2f1ae414 | 158 | wxWindowDC::~wxWindowDC() |
e9576ca5 | 159 | { |
519cb848 | 160 | } |
e9576ca5 | 161 | |
1be0560e SC |
162 | void wxWindowDC::DoGetSize( int* width, int* height ) const |
163 | { | |
164 | wxCHECK_RET( m_window, _T("GetSize() doesn't work without window") ); | |
165 | ||
166 | m_window->GetSize(width, height); | |
167 | } | |
168 | ||
519cb848 SC |
169 | /* |
170 | * wxClientDC | |
171 | */ | |
e9576ca5 | 172 | |
2f1ae414 | 173 | wxClientDC::wxClientDC() |
e9576ca5 | 174 | { |
1be0560e | 175 | m_window = NULL ; |
e9576ca5 SC |
176 | } |
177 | ||
519cb848 | 178 | wxClientDC::wxClientDC(wxWindow *window) |
e9576ca5 | 179 | { |
1be0560e | 180 | m_window = window ; |
9f391ae1 SC |
181 | wxTopLevelWindowMac* rootwindow = window->MacGetTopLevelWindow() ; |
182 | if (!rootwindow) | |
183 | return; | |
9b2eab52 | 184 | |
9f391ae1 SC |
185 | WindowRef windowref = (WindowRef) rootwindow->MacGetWindowRef() ; |
186 | wxPoint origin = window->GetClientAreaOrigin() ; | |
187 | wxSize size = window->GetClientSize() ; | |
188 | int x , y ; | |
189 | x = origin.x ; | |
190 | y = origin.y ; | |
191 | window->MacWindowToRootWindow( &x , &y ) ; | |
192 | m_macPort = UMAGetWindowPort( windowref ) ; | |
eb1a7cf9 DS |
193 | m_ok = true ; |
194 | ||
20b69855 | 195 | #if wxMAC_USE_CORE_GRAPHICS |
9f391ae1 SC |
196 | m_macLocalOriginInPort.x = x ; |
197 | m_macLocalOriginInPort.y = y ; | |
20b69855 SC |
198 | if ( window->MacGetCGContextRef() ) |
199 | { | |
200 | m_graphicContext = new wxMacCGContext( (CGContextRef) window->MacGetCGContextRef() ) ; | |
201 | m_graphicContext->SetPen( m_pen ) ; | |
202 | m_graphicContext->SetBrush( m_brush ) ; | |
e2f92883 | 203 | SetClippingRegion( 0 , 0 , size.x , size.y ) ; |
20b69855 SC |
204 | } |
205 | else | |
206 | { | |
eb1a7cf9 DS |
207 | // as out of order redraw is not supported under CQ, |
208 | // we have to create a QD port for these situations | |
20b69855 SC |
209 | m_macLocalOrigin.x = x ; |
210 | m_macLocalOrigin.y = y ; | |
9f391ae1 | 211 | m_graphicContext = new wxMacCGContext( (CGrafPtr) m_macPort ) ; |
20b69855 SC |
212 | m_graphicContext->SetPen( m_pen ) ; |
213 | m_graphicContext->SetBrush( m_brush ) ; | |
cb4b0966 | 214 | } |
20b69855 | 215 | #else |
e40298d5 JS |
216 | m_macLocalOrigin.x = x ; |
217 | m_macLocalOrigin.y = y ; | |
218 | SetRectRgn( (RgnHandle) m_macBoundaryClipRgn , origin.x , origin.y , origin.x + size.x , origin.y + size.y ) ; | |
219 | SectRgn( (RgnHandle) m_macBoundaryClipRgn , (RgnHandle) window->MacGetVisibleRegion().GetWXHRGN() , (RgnHandle) m_macBoundaryClipRgn ) ; | |
220 | OffsetRgn( (RgnHandle) m_macBoundaryClipRgn , -origin.x , -origin.y ) ; | |
221 | OffsetRgn( (RgnHandle) m_macBoundaryClipRgn , m_macLocalOrigin.x , m_macLocalOrigin.y ) ; | |
222 | CopyRgn( (RgnHandle) m_macBoundaryClipRgn ,(RgnHandle) m_macCurrentClipRgn ) ; | |
20b69855 | 223 | #endif |
9b2eab52 | 224 | |
be346c26 | 225 | SetBackground(MacGetBackgroundBrush(window)); |
e40298d5 | 226 | SetFont( window->GetFont() ) ; |
e9576ca5 SC |
227 | } |
228 | ||
2f1ae414 | 229 | wxClientDC::~wxClientDC() |
e9576ca5 | 230 | { |
68654a82 SC |
231 | #if wxMAC_USE_CORE_GRAPHICS |
232 | /* | |
233 | if ( m_window->MacGetCGContextRef() == 0) | |
234 | { | |
bc8f7aee | 235 | CGContextRef cgContext = (wxMacCGContext*)(m_graphicContext)->GetNativeContext() ; |
68654a82 SC |
236 | CGContextFlush( cgContext ) ; |
237 | } | |
238 | */ | |
239 | #endif | |
e9576ca5 SC |
240 | } |
241 | ||
1be0560e SC |
242 | void wxClientDC::DoGetSize(int *width, int *height) const |
243 | { | |
244 | wxCHECK_RET( m_window, _T("GetSize() doesn't work without window") ); | |
245 | ||
246 | m_window->GetClientSize( width, height ); | |
247 | } | |
248 | ||
519cb848 SC |
249 | /* |
250 | * wxPaintDC | |
251 | */ | |
e9576ca5 | 252 | |
2f1ae414 | 253 | wxPaintDC::wxPaintDC() |
e9576ca5 | 254 | { |
1be0560e | 255 | m_window = NULL ; |
e9576ca5 SC |
256 | } |
257 | ||
519cb848 | 258 | wxPaintDC::wxPaintDC(wxWindow *window) |
e9576ca5 | 259 | { |
1be0560e | 260 | m_window = window ; |
9f391ae1 SC |
261 | wxTopLevelWindowMac* rootwindow = window->MacGetTopLevelWindow() ; |
262 | WindowRef windowref = (WindowRef) rootwindow->MacGetWindowRef() ; | |
263 | wxPoint origin = window->GetClientAreaOrigin() ; | |
264 | wxSize size = window->GetClientSize() ; | |
265 | int x , y ; | |
266 | x = origin.x ; | |
267 | y = origin.y ; | |
268 | window->MacWindowToRootWindow( &x , &y ) ; | |
269 | m_macPort = UMAGetWindowPort( windowref ) ; | |
eb1a7cf9 | 270 | m_ok = true ; |
9b2eab52 | 271 | |
20b69855 | 272 | #if wxMAC_USE_CORE_GRAPHICS |
9f391ae1 SC |
273 | m_macLocalOriginInPort.x = x ; |
274 | m_macLocalOriginInPort.y = y ; | |
20b69855 SC |
275 | if ( window->MacGetCGContextRef() ) |
276 | { | |
277 | m_graphicContext = new wxMacCGContext( (CGContextRef) window->MacGetCGContextRef() ) ; | |
278 | m_graphicContext->SetPen( m_pen ) ; | |
279 | m_graphicContext->SetBrush( m_brush ) ; | |
9f391ae1 SC |
280 | SetClippingRegion( 0 , 0 , size.x , size.y ) ; |
281 | SetBackground(MacGetBackgroundBrush(window)); | |
20b69855 SC |
282 | } |
283 | else | |
284 | { | |
285 | wxLogDebug(wxT("You cannot create a wxPaintDC outside an OS-draw event") ) ; | |
286 | m_graphicContext = NULL ; | |
20b69855 SC |
287 | } |
288 | // there is no out-of-order drawing on OSX | |
289 | #else | |
e40298d5 JS |
290 | m_macLocalOrigin.x = x ; |
291 | m_macLocalOrigin.y = y ; | |
292 | SetRectRgn( (RgnHandle) m_macBoundaryClipRgn , origin.x , origin.y , origin.x + size.x , origin.y + size.y ) ; | |
293 | SectRgn( (RgnHandle) m_macBoundaryClipRgn , (RgnHandle) window->MacGetVisibleRegion().GetWXHRGN() , (RgnHandle) m_macBoundaryClipRgn ) ; | |
294 | OffsetRgn( (RgnHandle) m_macBoundaryClipRgn , -origin.x , -origin.y ) ; | |
295 | SectRgn( (RgnHandle) m_macBoundaryClipRgn , (RgnHandle) window->GetUpdateRegion().GetWXHRGN() , (RgnHandle) m_macBoundaryClipRgn ) ; | |
296 | OffsetRgn( (RgnHandle) m_macBoundaryClipRgn , m_macLocalOrigin.x , m_macLocalOrigin.y ) ; | |
297 | CopyRgn( (RgnHandle) m_macBoundaryClipRgn , (RgnHandle) m_macCurrentClipRgn ) ; | |
be346c26 | 298 | SetBackground(MacGetBackgroundBrush(window)); |
20b69855 | 299 | #endif |
9b2eab52 | 300 | |
e40298d5 | 301 | SetFont( window->GetFont() ) ; |
e9576ca5 SC |
302 | } |
303 | ||
519cb848 | 304 | wxPaintDC::~wxPaintDC() |
e9576ca5 | 305 | { |
519cb848 | 306 | } |
1be0560e SC |
307 | |
308 | void wxPaintDC::DoGetSize(int *width, int *height) const | |
309 | { | |
310 | wxCHECK_RET( m_window, _T("GetSize() doesn't work without window") ); | |
311 | ||
312 | m_window->GetClientSize( width, height ); | |
313 | } |