]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/dcclient.cpp
added more icons (for GTK only) (patch 1097684)
[wxWidgets.git] / src / mac / carbon / dcclient.cpp
CommitLineData
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 12#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
e9576ca5
SC
13#pragma implementation "dcclient.h"
14#endif
15
3d1a4878
SC
16#include "wx/wxprec.h"
17
e9576ca5
SC
18#include "wx/dcclient.h"
19#include "wx/dcmemory.h"
20#include "wx/region.h"
03e11df5 21#include "wx/window.h"
456c94e1 22#include "wx/toplevel.h"
5f5f809d 23#include "wx/settings.h"
463c4d71 24#include "wx/math.h"
76a5e5d2 25#include "wx/mac/private.h"
e928c28c 26#include "wx/log.h"
e9576ca5
SC
27
28//-----------------------------------------------------------------------------
29// constants
30//-----------------------------------------------------------------------------
31
32#define RAD2DEG 57.2957795131
33
34//-----------------------------------------------------------------------------
35// wxPaintDC
36//-----------------------------------------------------------------------------
37
2f1ae414 38#if !USE_SHARED_LIBRARY
e9576ca5
SC
39IMPLEMENT_DYNAMIC_CLASS(wxWindowDC, wxDC)
40IMPLEMENT_DYNAMIC_CLASS(wxClientDC, wxWindowDC)
41IMPLEMENT_DYNAMIC_CLASS(wxPaintDC, wxWindowDC)
2f1ae414 42#endif
e9576ca5
SC
43
44/*
45 * wxWindowDC
46 */
47
d497dca4 48#include "wx/mac/uma.h"
be346c26
SC
49#include "wx/notebook.h"
50#include "wx/tabctrl.h"
51
52
53static 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
519cb848 104
2f1ae414 105wxWindowDC::wxWindowDC()
e9576ca5 106{
1be0560e 107 m_window = NULL ;
519cb848 108}
e9576ca5 109
1be0560e 110wxWindowDC::wxWindowDC(wxWindow *window)
519cb848 111{
1be0560e 112 m_window = window ;
9f391ae1
SC
113 wxTopLevelWindowMac* rootwindow = window->MacGetTopLevelWindow() ;
114 if (!rootwindow)
115 return;
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 ) ;
122
20b69855 123#if wxMAC_USE_CORE_GRAPHICS
9f391ae1
SC
124 m_macLocalOriginInPort.x = x ;
125 m_macLocalOriginInPort.y = y ;
126
20b69855
SC
127 if ( window->MacGetCGContextRef() )
128 {
129 m_graphicContext = new wxMacCGContext( (CGContextRef) window->MacGetCGContextRef() ) ;
130 m_graphicContext->SetPen( m_pen ) ;
131 m_graphicContext->SetBrush( m_brush ) ;
e2f92883 132 SetBackground(MacGetBackgroundBrush(window));
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 ) ;
144 SetBackground(MacGetBackgroundBrush(window));
145 }
20b69855
SC
146 // there is no out-of-order drawing on OSX
147#else
e40298d5
JS
148 m_macLocalOrigin.x = x ;
149 m_macLocalOrigin.y = y ;
cf9d0f93 150 CopyRgn( (RgnHandle) window->MacGetVisibleRegion(true).GetWXHRGN() , (RgnHandle) m_macBoundaryClipRgn ) ;
e40298d5
JS
151 OffsetRgn( (RgnHandle) m_macBoundaryClipRgn , m_macLocalOrigin.x , m_macLocalOrigin.y ) ;
152 CopyRgn( (RgnHandle) m_macBoundaryClipRgn , (RgnHandle) m_macCurrentClipRgn ) ;
be346c26 153 SetBackground(MacGetBackgroundBrush(window));
20b69855
SC
154#endif
155 m_ok = TRUE ;
156 SetFont( window->GetFont() ) ;
519cb848 157}
e9576ca5 158
2f1ae414 159wxWindowDC::~wxWindowDC()
e9576ca5 160{
519cb848 161}
e9576ca5 162
1be0560e
SC
163void wxWindowDC::DoGetSize( int* width, int* height ) const
164{
165 wxCHECK_RET( m_window, _T("GetSize() doesn't work without window") );
166
167 m_window->GetSize(width, height);
168}
169
519cb848
SC
170/*
171 * wxClientDC
172 */
e9576ca5 173
2f1ae414 174wxClientDC::wxClientDC()
e9576ca5 175{
1be0560e 176 m_window = NULL ;
e9576ca5
SC
177}
178
519cb848 179wxClientDC::wxClientDC(wxWindow *window)
e9576ca5 180{
1be0560e 181 m_window = window ;
9f391ae1
SC
182 wxTopLevelWindowMac* rootwindow = window->MacGetTopLevelWindow() ;
183 if (!rootwindow)
184 return;
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 ) ;
193
20b69855 194#if wxMAC_USE_CORE_GRAPHICS
9f391ae1
SC
195 m_macLocalOriginInPort.x = x ;
196 m_macLocalOriginInPort.y = y ;
20b69855
SC
197 if ( window->MacGetCGContextRef() )
198 {
199 m_graphicContext = new wxMacCGContext( (CGContextRef) window->MacGetCGContextRef() ) ;
200 m_graphicContext->SetPen( m_pen ) ;
201 m_graphicContext->SetBrush( m_brush ) ;
e2f92883
SC
202 m_ok = TRUE ;
203 SetClippingRegion( 0 , 0 , size.x , size.y ) ;
20b69855
SC
204 SetBackground(MacGetBackgroundBrush(window));
205 }
206 else
207 {
cb4b0966
SC
208 // as out of order redraw is not supported under CQ, we have to create a qd port for these
209 // situations
20b69855
SC
210 m_macLocalOrigin.x = x ;
211 m_macLocalOrigin.y = y ;
9f391ae1 212 m_graphicContext = new wxMacCGContext( (CGrafPtr) m_macPort ) ;
20b69855
SC
213 m_graphicContext->SetPen( m_pen ) ;
214 m_graphicContext->SetBrush( m_brush ) ;
e2f92883 215 m_ok = TRUE ;
cb4b0966 216 }
20b69855 217#else
e40298d5
JS
218 m_macLocalOrigin.x = x ;
219 m_macLocalOrigin.y = y ;
220 SetRectRgn( (RgnHandle) m_macBoundaryClipRgn , origin.x , origin.y , origin.x + size.x , origin.y + size.y ) ;
221 SectRgn( (RgnHandle) m_macBoundaryClipRgn , (RgnHandle) window->MacGetVisibleRegion().GetWXHRGN() , (RgnHandle) m_macBoundaryClipRgn ) ;
222 OffsetRgn( (RgnHandle) m_macBoundaryClipRgn , -origin.x , -origin.y ) ;
223 OffsetRgn( (RgnHandle) m_macBoundaryClipRgn , m_macLocalOrigin.x , m_macLocalOrigin.y ) ;
224 CopyRgn( (RgnHandle) m_macBoundaryClipRgn ,(RgnHandle) m_macCurrentClipRgn ) ;
e40298d5 225 m_ok = TRUE ;
20b69855 226#endif
be346c26 227 SetBackground(MacGetBackgroundBrush(window));
e40298d5 228 SetFont( window->GetFont() ) ;
e9576ca5
SC
229}
230
2f1ae414 231wxClientDC::~wxClientDC()
e9576ca5 232{
e9576ca5
SC
233}
234
1be0560e
SC
235void wxClientDC::DoGetSize(int *width, int *height) const
236{
237 wxCHECK_RET( m_window, _T("GetSize() doesn't work without window") );
238
239 m_window->GetClientSize( width, height );
240}
241
242
519cb848
SC
243/*
244 * wxPaintDC
245 */
e9576ca5 246
2f1ae414 247wxPaintDC::wxPaintDC()
e9576ca5 248{
1be0560e 249 m_window = NULL ;
e9576ca5
SC
250}
251
519cb848 252wxPaintDC::wxPaintDC(wxWindow *window)
e9576ca5 253{
1be0560e 254 m_window = window ;
9f391ae1
SC
255 wxTopLevelWindowMac* rootwindow = window->MacGetTopLevelWindow() ;
256 WindowRef windowref = (WindowRef) rootwindow->MacGetWindowRef() ;
257 wxPoint origin = window->GetClientAreaOrigin() ;
258 wxSize size = window->GetClientSize() ;
259 int x , y ;
260 x = origin.x ;
261 y = origin.y ;
262 window->MacWindowToRootWindow( &x , &y ) ;
263 m_macPort = UMAGetWindowPort( windowref ) ;
20b69855 264#if wxMAC_USE_CORE_GRAPHICS
9f391ae1
SC
265 m_macLocalOriginInPort.x = x ;
266 m_macLocalOriginInPort.y = y ;
20b69855
SC
267 if ( window->MacGetCGContextRef() )
268 {
269 m_graphicContext = new wxMacCGContext( (CGContextRef) window->MacGetCGContextRef() ) ;
270 m_graphicContext->SetPen( m_pen ) ;
271 m_graphicContext->SetBrush( m_brush ) ;
20b69855 272 m_ok = TRUE ;
9f391ae1
SC
273 SetClippingRegion( 0 , 0 , size.x , size.y ) ;
274 SetBackground(MacGetBackgroundBrush(window));
20b69855
SC
275 }
276 else
277 {
278 wxLogDebug(wxT("You cannot create a wxPaintDC outside an OS-draw event") ) ;
279 m_graphicContext = NULL ;
280 m_ok = TRUE ;
281 }
282 // there is no out-of-order drawing on OSX
283#else
e40298d5
JS
284 m_macLocalOrigin.x = x ;
285 m_macLocalOrigin.y = y ;
286 SetRectRgn( (RgnHandle) m_macBoundaryClipRgn , origin.x , origin.y , origin.x + size.x , origin.y + size.y ) ;
287 SectRgn( (RgnHandle) m_macBoundaryClipRgn , (RgnHandle) window->MacGetVisibleRegion().GetWXHRGN() , (RgnHandle) m_macBoundaryClipRgn ) ;
288 OffsetRgn( (RgnHandle) m_macBoundaryClipRgn , -origin.x , -origin.y ) ;
289 SectRgn( (RgnHandle) m_macBoundaryClipRgn , (RgnHandle) window->GetUpdateRegion().GetWXHRGN() , (RgnHandle) m_macBoundaryClipRgn ) ;
290 OffsetRgn( (RgnHandle) m_macBoundaryClipRgn , m_macLocalOrigin.x , m_macLocalOrigin.y ) ;
291 CopyRgn( (RgnHandle) m_macBoundaryClipRgn , (RgnHandle) m_macCurrentClipRgn ) ;
be346c26 292 SetBackground(MacGetBackgroundBrush(window));
20b69855
SC
293 m_ok = TRUE ;
294#endif
e40298d5 295 SetFont( window->GetFont() ) ;
e9576ca5
SC
296}
297
519cb848 298wxPaintDC::~wxPaintDC()
e9576ca5 299{
519cb848 300}
1be0560e
SC
301
302void wxPaintDC::DoGetSize(int *width, int *height) const
303{
304 wxCHECK_RET( m_window, _T("GetSize() doesn't work without window") );
305
306 m_window->GetClientSize( width, height );
307}
308
309