]>
git.saurik.com Git - wxWidgets.git/blob - src/mac/carbon/dcclient.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxClientDC class
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "dcclient.h"
16 #include "wx/dcclient.h"
17 #include "wx/dcmemory.h"
18 #include "wx/region.h"
19 #include "wx/window.h"
22 //-----------------------------------------------------------------------------
24 //-----------------------------------------------------------------------------
26 #define RAD2DEG 57.2957795131
28 //-----------------------------------------------------------------------------
30 //-----------------------------------------------------------------------------
32 #if !USE_SHARED_LIBRARY
33 IMPLEMENT_DYNAMIC_CLASS(wxWindowDC
, wxDC
)
34 IMPLEMENT_DYNAMIC_CLASS(wxClientDC
, wxWindowDC
)
35 IMPLEMENT_DYNAMIC_CLASS(wxPaintDC
, wxWindowDC
)
42 #include "wx/mac/uma.h"
44 wxWindowDC::wxWindowDC()
48 wxWindowDC::wxWindowDC(wxWindow
*the_canvas
)
51 wxWindowMac
* rootwindow
;
53 // this time it is really the full window
55 the_canvas
->MacGetPortParams(&m_macLocalOrigin
, &clipRect
, &windowref
, &rootwindow
);
56 SetRectRgn( m_macBoundaryClipRgn
, clipRect
.left
, clipRect
.top
, clipRect
.right
, clipRect
.bottom
) ;
57 m_macPort
= UMAGetWindowPort( windowref
) ;
59 wxSize size
= the_canvas
->GetSize() ;
64 SetBackground(wxBrush(the_canvas
->GetBackgroundColour(), wxSOLID
));
67 wxWindowDC::~wxWindowDC()
75 wxClientDC::wxClientDC()
79 wxClientDC::wxClientDC(wxWindow
*window
)
82 wxWindowMac
* rootwindow
;
85 window
->MacGetPortClientParams(&m_macLocalOrigin
, &clipRect
, &windowref
, &rootwindow
);
86 SetRectRgn( m_macBoundaryClipRgn
, clipRect
.left
, clipRect
.top
, clipRect
.right
, clipRect
.bottom
) ;
87 m_macPort
= UMAGetWindowPort( windowref
) ;
89 wxSize size
= window
->GetSize() ;
93 SetBackground(wxBrush(window
->GetBackgroundColour(), wxSOLID
));
94 SetFont( window
->GetFont() ) ;
97 wxClientDC::~wxClientDC()
105 wxPaintDC::wxPaintDC()
109 wxPaintDC::wxPaintDC(wxWindow
*window
)
111 WindowRef windowref
;
112 wxWindowMac
* rootwindow
;
115 window
->MacGetPortClientParams(&m_macLocalOrigin
, &clipRect
, &windowref
, &rootwindow
);
116 CopyRgn( window
->GetUpdateRegion().GetWXHRGN() , m_macBoundaryClipRgn
) ;
117 m_macPort
= UMAGetWindowPort( windowref
) ;
120 wxCoord x , y ,w , h ;
121 window->GetUpdateRegion().GetBox( x , y , w , h ) ;
123 wxSize size = window->GetSize() ;
126 SetClippingRegion( x , y , w , h ) ;
128 SetBackground(wxBrush(window
->GetBackgroundColour(), wxSOLID
));
129 SetFont(window
->GetFont() ) ;
132 wxPaintDC::~wxPaintDC()