]>
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"
29 #include "wx/osx/dcclient.h"
31 //-----------------------------------------------------------------------------
33 //-----------------------------------------------------------------------------
35 IMPLEMENT_ABSTRACT_CLASS(wxWindowDCImpl
, wxGCDCImpl
)
37 wxWindowDCImpl::wxWindowDCImpl( wxDC
*owner
)
44 wxWindowDCImpl::wxWindowDCImpl( wxDC
*owner
, wxWindow
*window
)
51 m_window
->GetSize( &m_width
, &m_height
);
52 if ( !m_window
->IsShownOnScreen() )
53 m_width
= m_height
= 0;
55 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
100 wxBitmap
wxWindowDCImpl::DoGetAsBitmap(const wxRect
*subrect
) const
102 // wxScreenDC is derived from wxWindowDC, so a screen dc will
103 // call this method when a Blit is performed with it as a source.
107 ControlRef handle
= (ControlRef
) m_window
->GetHandle();
113 CGContextRef context
;
118 HIViewCreateOffscreenImage( handle
, 0, &rect
, &image
);
121 int width
= subrect
!= NULL
? subrect
->width
: (int)rect
.size
.width
;
122 int height
= subrect
!= NULL
? subrect
->height
: (int)rect
.size
.height
;
124 wxBitmap bmp
= wxBitmap(width
, height
, 32);
126 context
= (CGContextRef
)bmp
.GetHBITMAP();
128 CGContextSaveGState(context
);
130 CGContextTranslateCTM( context
, 0, height
);
131 CGContextScaleCTM( context
, 1, -1 );
134 rect
= CGRectOffset( rect
, -subrect
->x
, -subrect
->y
) ;
135 CGContextDrawImage( context
, rect
, image
);
137 CGContextRestoreGState(context
);
147 IMPLEMENT_ABSTRACT_CLASS(wxClientDCImpl
, wxWindowDCImpl
)
149 wxClientDCImpl::wxClientDCImpl( wxDC
*owner
)
150 : wxWindowDCImpl( owner
)
154 wxClientDCImpl::wxClientDCImpl( wxDC
*owner
, wxWindow
*window
) :
155 wxWindowDCImpl( owner
, window
)
157 wxCHECK_RET( window
, _T("invalid window in wxClientDCImpl") );
158 wxPoint origin
= window
->GetClientAreaOrigin() ;
159 m_window
->GetClientSize( &m_width
, &m_height
);
160 if ( !m_window
->IsShownOnScreen() )
161 m_width
= m_height
= 0;
162 SetDeviceOrigin( origin
.x
, origin
.y
);
163 DoSetClippingRegion( 0 , 0 , m_width
, m_height
) ;
166 wxClientDCImpl::~wxClientDCImpl()
174 IMPLEMENT_ABSTRACT_CLASS(wxPaintDCImpl
, wxWindowDCImpl
)
176 wxPaintDCImpl::wxPaintDCImpl( wxDC
*owner
)
177 : wxWindowDCImpl( owner
)
181 wxPaintDCImpl::wxPaintDCImpl( wxDC
*owner
, wxWindow
*window
) :
182 wxWindowDCImpl( owner
, window
)
184 wxPoint origin
= window
->GetClientAreaOrigin() ;
185 m_window
->GetClientSize( &m_width
, &m_height
);
186 SetDeviceOrigin( origin
.x
, origin
.y
);
187 DoSetClippingRegion( 0 , 0 , m_width
, m_height
) ;
190 wxPaintDCImpl::~wxPaintDCImpl()