]>
git.saurik.com Git - wxWidgets.git/blob - src/osx/carbon/dcclient.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/carbon/dcclient.cpp
3 // Purpose: wxClientDCImpl 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"
18 #include "wx/window.h"
19 #include "wx/dcmemory.h"
20 #include "wx/settings.h"
21 #include "wx/toplevel.h"
23 #include "wx/region.h"
26 #include "wx/graphics.h"
27 #include "wx/rawbmp.h"
28 #include "wx/osx/private.h"
30 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 IMPLEMENT_ABSTRACT_CLASS(wxWindowDCImpl
, wxGCDCImpl
)
36 wxWindowDCImpl::wxWindowDCImpl( wxDC
*owner
)
42 wxWindowDCImpl::wxWindowDCImpl( wxDC
*owner
, wxWindow
*window
)
47 WindowRef rootwindow
= (WindowRef
) window
->MacGetTopLevelWindowRef() ;
53 m_window
->GetSize( &m_width
, &m_height
);
54 if ( !m_window
->IsShownOnScreen() )
55 m_width
= m_height
= 0;
56 CGContextRef cg
= (CGContextRef
) window
->MacGetCGContextRef();
60 SetGraphicsContext( wxGraphicsContext::Create( window
) ) ;
64 CGContextSaveGState( cg
);
66 // make sure the context is having its origin at the wx-window coordinates of the
67 // view (read at the top of window.cpp about the differences)
68 if ( window
->MacGetLeftBorderSize() != 0 || window
->MacGetTopBorderSize() != 0 )
69 CGContextTranslateCTM( cg
, -window
->MacGetLeftBorderSize() , -window
->MacGetTopBorderSize() );
71 SetGraphicsContext( wxGraphicsContext::CreateFromNative( cg
) );
73 DoSetClippingRegion( 0 , 0 , m_width
, m_height
) ;
75 SetBackground(wxBrush(window
->GetBackgroundColour(),wxSOLID
));
77 SetFont( window
->GetFont() ) ;
80 wxWindowDCImpl::~wxWindowDCImpl()
84 // this must not necessarily be the current context, we must restore the state of the
85 // cg we started with above (before the CGContextTranslateCTM call)
86 CGContextRef cg
= (CGContextRef
) m_window
->MacGetCGContextRef();
87 CGContextRestoreGState(cg
);
91 void wxWindowDCImpl::DoGetSize( int* width
, int* height
) const
99 wxBitmap
wxWindowDCImpl::DoGetAsBitmap(const wxRect
*subrect
) const
101 // wxScreenDC is derived from wxWindowDC, so a screen dc will
102 // call this method when a Blit is performed with it as a source.
109 ControlRef handle
= (ControlRef
) m_window
->GetHandle();
115 CGContextRef context
;
120 HIViewCreateOffscreenImage( handle
, 0, &rect
, &image
);
123 int width
= subrect
!= NULL
? subrect
->width
: (int)rect
.size
.width
;
124 int height
= subrect
!= NULL
? subrect
->height
: (int)rect
.size
.height
;
126 wxBitmap bmp
= wxBitmap(width
, height
, 32);
128 context
= (CGContextRef
)bmp
.GetHBITMAP();
130 CGContextSaveGState(context
);
132 CGContextTranslateCTM( context
, 0, height
);
133 CGContextScaleCTM( context
, 1, -1 );
136 rect
= CGRectOffset( rect
, -subrect
->x
, -subrect
->y
) ;
137 CGContextDrawImage( context
, rect
, image
);
139 CGContextRestoreGState(context
);
149 IMPLEMENT_ABSTRACT_CLASS(wxClientDCImpl
, wxWindowDCImpl
)
151 wxClientDCImpl::wxClientDCImpl( wxDC
*owner
)
152 : wxWindowDCImpl( owner
)
156 wxClientDCImpl::wxClientDCImpl( wxDC
*owner
, wxWindow
*window
) :
157 wxWindowDCImpl( owner
, window
)
159 wxCHECK_RET( window
, _T("invalid window in wxClientDCImpl") );
160 wxPoint origin
= window
->GetClientAreaOrigin() ;
161 m_window
->GetClientSize( &m_width
, &m_height
);
162 if ( !m_window
->IsShownOnScreen() )
163 m_width
= m_height
= 0;
164 SetDeviceOrigin( origin
.x
, origin
.y
);
165 DoSetClippingRegion( 0 , 0 , m_width
, m_height
) ;
168 wxClientDCImpl::~wxClientDCImpl()
176 IMPLEMENT_ABSTRACT_CLASS(wxPaintDCImpl
, wxWindowDCImpl
)
178 wxPaintDCImpl::wxPaintDCImpl( wxDC
*owner
)
179 : wxWindowDCImpl( owner
)
183 wxPaintDCImpl::wxPaintDCImpl( wxDC
*owner
, wxWindow
*window
) :
184 wxWindowDCImpl( owner
, window
)
186 wxPoint origin
= window
->GetClientAreaOrigin() ;
187 m_window
->GetClientSize( &m_width
, &m_height
);
188 SetDeviceOrigin( origin
.x
, origin
.y
);
189 DoSetClippingRegion( 0 , 0 , m_width
, m_height
) ;
192 wxPaintDCImpl::~wxPaintDCImpl()