]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/mac/carbon/dcscreen.cpp
adding metafile and clipboard support
[wxWidgets.git] / src / mac / carbon / dcscreen.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: dcscreen.cpp
3// Purpose: wxScreenDC class
4// Author: Stefan Csomor
5// Modified by:
6// Created: 1998-01-01
7// RCS-ID: $Id$
8// Copyright: (c) Stefan Csomor
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13#pragma implementation "dcscreen.h"
14#endif
15
16#include "wx/wxprec.h"
17
18#include "wx/dcscreen.h"
19#include "wx/mac/uma.h"
20
21#if !USE_SHARED_LIBRARY
22IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxWindowDC)
23#endif
24
25// Create a DC representing the whole screen
26wxScreenDC::wxScreenDC()
27{
28#if wxMAC_USE_CORE_GRAPHICS
29#else
30 m_macPort = CreateNewPort() ;
31 GrafPtr port ;
32 GetPort( &port ) ;
33 SetPort( (GrafPtr) m_macPort ) ;
34 Point pt = { 0,0 } ;
35 LocalToGlobal( &pt ) ;
36 SetPort( port ) ;
37 m_macLocalOrigin.x = -pt.h ;
38 m_macLocalOrigin.y = -pt.v ;
39
40 m_ok = TRUE ;
41 BitMap screenBits;
42 GetQDGlobalsScreenBits( &screenBits );
43 m_minX = screenBits.bounds.left ;
44
45 SInt16 height ;
46 GetThemeMenuBarHeight( &height ) ;
47 m_minY = screenBits.bounds.top + height ;
48
49 m_maxX = screenBits.bounds.right ;
50 m_maxY = screenBits.bounds.bottom ;
51 MacSetRectRgn( (RgnHandle) m_macBoundaryClipRgn , m_minX , m_minY , m_maxX , m_maxY ) ;
52 OffsetRgn( (RgnHandle) m_macBoundaryClipRgn , m_macLocalOrigin.x , m_macLocalOrigin.y ) ;
53 CopyRgn( (RgnHandle) m_macBoundaryClipRgn , (RgnHandle) m_macCurrentClipRgn ) ;
54#endif
55}
56
57wxScreenDC::~wxScreenDC()
58{
59#if wxMAC_USE_CORE_GRAPHICS
60#else
61 DisposePort( (CGrafPtr) m_macPort ) ;
62#endif
63}
64