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