]>
Commit | Line | Data |
---|---|---|
e9576ca5 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dcmemory.cpp | |
3 | // Purpose: wxMemoryDC class | |
4 | // Author: AUTHOR | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) AUTHOR | |
9 | // Licence: wxWindows licence | |
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 | ||
23 | IMPLEMENT_DYNAMIC_CLASS(wxMemoryDC,wxPaintDC) | |
24 | ||
25 | wxMemoryDC::wxMemoryDC(void) | |
d84afea9 | 26 | : m_selected() |
e9576ca5 | 27 | { |
0a67a93b SC |
28 | m_ok = TRUE; |
29 | SetBackground(*wxWHITE_BRUSH); | |
30 | SetBrush(*wxWHITE_BRUSH); | |
31 | SetPen(*wxBLACK_PEN); | |
e9576ca5 SC |
32 | m_ok = FALSE; |
33 | }; | |
34 | ||
35 | wxMemoryDC::wxMemoryDC( wxDC *WXUNUSED(dc) ) | |
d84afea9 | 36 | : m_selected() |
e9576ca5 | 37 | { |
d84afea9 | 38 | m_ok = TRUE; |
0a67a93b SC |
39 | SetBackground(*wxWHITE_BRUSH); |
40 | SetBrush(*wxWHITE_BRUSH); | |
41 | SetPen(*wxBLACK_PEN); | |
e9576ca5 SC |
42 | m_ok = FALSE; |
43 | }; | |
44 | ||
3dec57ad | 45 | wxMemoryDC::~wxMemoryDC() |
e9576ca5 | 46 | { |
2f1ae414 SC |
47 | if ( m_selected.Ok() ) |
48 | { | |
76a5e5d2 | 49 | UnlockPixels( GetGWorldPixMap(MAC_WXHBITMAP(m_selected.GetHBITMAP())) ); |
2f1ae414 | 50 | } |
e9576ca5 SC |
51 | }; |
52 | ||
53 | void wxMemoryDC::SelectObject( const wxBitmap& bitmap ) | |
54 | { | |
2f1ae414 SC |
55 | if ( m_selected.Ok() ) |
56 | { | |
76a5e5d2 | 57 | UnlockPixels( GetGWorldPixMap(MAC_WXHBITMAP(m_selected.GetHBITMAP())) ); |
2f1ae414 | 58 | } |
3dec57ad SC |
59 | m_selected = bitmap; |
60 | if (m_selected.Ok()) | |
61 | { | |
62 | if ( m_selected.GetHBITMAP() ) | |
519cb848 | 63 | { |
3dec57ad | 64 | m_macPort = (GrafPtr) m_selected.GetHBITMAP() ; |
2f1ae414 | 65 | LockPixels( GetGWorldPixMap( (CGrafPtr) m_macPort ) ) ; |
8208e181 SC |
66 | wxMask * mask = bitmap.GetMask() ; |
67 | if ( mask ) | |
68 | { | |
69 | m_macMask = mask->GetMaskBitmap() ; | |
70 | } | |
66a09d47 SC |
71 | SetRectRgn( (RgnHandle) m_macBoundaryClipRgn , 0 , 0 , m_selected.GetWidth() , m_selected.GetHeight() ) ; |
72 | CopyRgn( (RgnHandle) m_macBoundaryClipRgn ,(RgnHandle) m_macCurrentClipRgn ) ; | |
519cb848 | 73 | m_ok = TRUE ; |
519cb848 SC |
74 | } |
75 | else | |
76 | { | |
3dec57ad | 77 | m_ok = FALSE; |
519cb848 | 78 | } |
e9576ca5 SC |
79 | } |
80 | else | |
81 | { | |
82 | m_ok = FALSE; | |
3dec57ad SC |
83 | } |
84 | } | |
e9576ca5 | 85 | |
0a67a93b | 86 | void wxMemoryDC::DoGetSize( int *width, int *height ) const |
e9576ca5 SC |
87 | { |
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; | |
3dec57ad SC |
97 | } |
98 | } | |
e9576ca5 SC |
99 | |
100 |