]> git.saurik.com Git - wxWidgets.git/blame - src/mac/dcmemory.cpp
target_carbon added
[wxWidgets.git] / src / mac / dcmemory.cpp
CommitLineData
e9576ca5
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: dcmemory.cpp
3// Purpose: wxMemoryDC class
a31a5f85 4// Author: Stefan Csomor
e9576ca5
SC
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
a31a5f85 8// Copyright: (c) Stefan Csomor
e40298d5 9// Licence: wxWindows licence
e9576ca5
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "dcmemory.h"
14#endif
15
16#include "wx/dcmemory.h"
76a5e5d2 17#include "wx/mac/private.h"
e9576ca5
SC
18
19//-----------------------------------------------------------------------------
20// wxMemoryDC
21//-----------------------------------------------------------------------------
22
23IMPLEMENT_DYNAMIC_CLASS(wxMemoryDC,wxPaintDC)
24
25wxMemoryDC::wxMemoryDC(void)
e40298d5 26: m_selected()
e9576ca5 27{
e40298d5 28 m_ok = TRUE;
0a67a93b
SC
29 SetBackground(*wxWHITE_BRUSH);
30 SetBrush(*wxWHITE_BRUSH);
31 SetPen(*wxBLACK_PEN);
e40298d5 32 m_ok = FALSE;
e9576ca5
SC
33};
34
35wxMemoryDC::wxMemoryDC( wxDC *WXUNUSED(dc) )
e40298d5 36: m_selected()
e9576ca5 37{
e40298d5 38 m_ok = TRUE;
0a67a93b
SC
39 SetBackground(*wxWHITE_BRUSH);
40 SetBrush(*wxWHITE_BRUSH);
41 SetPen(*wxBLACK_PEN);
e40298d5 42 m_ok = FALSE;
e9576ca5
SC
43};
44
3dec57ad 45wxMemoryDC::~wxMemoryDC()
e9576ca5 46{
e40298d5
JS
47 if ( m_selected.Ok() )
48 {
49 UnlockPixels( GetGWorldPixMap(MAC_WXHBITMAP(m_selected.GetHBITMAP())) );
50 }
e9576ca5
SC
51};
52
53void wxMemoryDC::SelectObject( const wxBitmap& bitmap )
54{
e40298d5
JS
55 if ( m_selected.Ok() )
56 {
57 UnlockPixels( GetGWorldPixMap(MAC_WXHBITMAP(m_selected.GetHBITMAP())) );
58 }
3dec57ad
SC
59 m_selected = bitmap;
60 if (m_selected.Ok())
61 {
e40298d5
JS
62 if ( m_selected.GetHBITMAP() )
63 {
64 m_macPort = (GrafPtr) m_selected.GetHBITMAP() ;
65 LockPixels( GetGWorldPixMap( (CGrafPtr) m_macPort ) ) ;
66 wxMask * mask = bitmap.GetMask() ;
67 if ( mask )
68 {
69 m_macMask = mask->GetMaskBitmap() ;
70 }
71 SetRectRgn( (RgnHandle) m_macBoundaryClipRgn , 0 , 0 , m_selected.GetWidth() , m_selected.GetHeight() ) ;
72 CopyRgn( (RgnHandle) m_macBoundaryClipRgn ,(RgnHandle) m_macCurrentClipRgn ) ;
73 m_ok = TRUE ;
74 }
75 else
76 {
77 m_ok = FALSE;
78 }
79 }
80 else
81 {
82 m_ok = FALSE;
83 }
3dec57ad 84}
e9576ca5 85
0a67a93b 86void wxMemoryDC::DoGetSize( int *width, int *height ) const
e9576ca5 87{
e40298d5
JS
88 if (m_selected.Ok())
89 {
90 if (width) (*width) = m_selected.GetWidth();
91 if (height) (*height) = m_selected.GetHeight();
92 }
93 else
94 {
95 if (width) (*width) = 0;
96 if (height) (*height) = 0;
97 }
3dec57ad 98}
e9576ca5
SC
99
100