1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/carbon/dcscreen.cpp
3 // Purpose: wxScreenDC class
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
14 #include "wx/dcscreen.h"
16 #include "wx/mac/uma.h"
18 IMPLEMENT_DYNAMIC_CLASS(wxScreenDC
, wxWindowDC
)
20 // Create a DC representing the whole screen
21 wxScreenDC::wxScreenDC()
23 #if wxMAC_USE_CORE_GRAPHICS
24 CGDirectDisplayID display
= CGMainDisplayID();
25 m_displayId
= (UInt32
) display
;
26 CGError err
= CGDisplayCaptureWithOptions(display
,kCGCaptureNoFill
);
27 wxASSERT( err
== kCGErrorSuccess
);
28 CGContextRef cg
= CGDisplayGetDrawingContext(display
);
30 bounds
= CGDisplayBounds(display
);
32 m_macLocalOrigin.x = 0;
33 m_macLocalOrigin.y = 0;
36 GetThemeMenuBarHeight( &height
);
39 m_maxX
= bounds
.size
.width
;
40 m_maxY
= bounds
.size
.height
- height
;
41 SetGraphicsContext( wxGraphicsContext::CreateFromNative( cg
) );
42 m_width
= bounds
.size
.width
;
43 m_height
= bounds
.size
.height
- height
;
45 m_macPort
= CreateNewPort() ;
48 SetPort( (GrafPtr
) m_macPort
) ;
50 LocalToGlobal( &pt
) ;
52 m_macLocalOrigin
.x
= -pt
.h
;
53 m_macLocalOrigin
.y
= -pt
.v
;
56 GetQDGlobalsScreenBits( &screenBits
);
57 m_minX
= screenBits
.bounds
.left
;
60 GetThemeMenuBarHeight( &height
) ;
61 m_minY
= screenBits
.bounds
.top
+ height
;
63 m_maxX
= screenBits
.bounds
.right
;
64 m_maxY
= screenBits
.bounds
.bottom
;
66 MacSetRectRgn( (RgnHandle
) m_macBoundaryClipRgn
, m_minX
, m_minY
, m_maxX
, m_maxY
) ;
67 OffsetRgn( (RgnHandle
) m_macBoundaryClipRgn
, m_macLocalOrigin
.x
, m_macLocalOrigin
.y
) ;
68 CopyRgn( (RgnHandle
) m_macBoundaryClipRgn
, (RgnHandle
) m_macCurrentClipRgn
) ;
73 wxScreenDC::~wxScreenDC()
75 #if wxMAC_USE_CORE_GRAPHICS
76 delete m_graphicContext
;
77 m_graphicContext
= NULL
;
78 CGDirectDisplayID display
= (CGDirectDisplayID
) m_displayId
;
79 CGDisplayRelease( display
);
82 DisposePort( (CGrafPtr
) m_macPort
) ;