]>
Commit | Line | Data |
---|---|---|
4bb6408c JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dc.cpp | |
3 | // Purpose: wxDC class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
af0bb3b1 | 9 | // Licence: wxWindows licence |
4bb6408c JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifdef __GNUG__ | |
af0bb3b1 | 13 | #pragma implementation "dc.h" |
4bb6408c JS |
14 | #endif |
15 | ||
16 | #include "wx/dc.h" | |
a367b9b3 | 17 | #include "wx/dcmemory.h" |
7b65ea1a | 18 | #include "wx/defs.h" |
4bb6408c JS |
19 | |
20 | #if !USE_SHARED_LIBRARY | |
af0bb3b1 | 21 | IMPLEMENT_ABSTRACT_CLASS(wxDC, wxObject) |
4bb6408c JS |
22 | #endif |
23 | ||
24 | //----------------------------------------------------------------------------- | |
25 | // constants | |
26 | //----------------------------------------------------------------------------- | |
27 | ||
af0bb3b1 VZ |
28 | #define mm2inches 0.0393700787402 |
29 | #define inches2mm 25.4 | |
30 | #define mm2twips 56.6929133859 | |
31 | #define twips2mm 0.0176388888889 | |
32 | #define mm2pt 2.83464566929 | |
33 | #define pt2mm 0.352777777778 | |
4bb6408c JS |
34 | |
35 | //----------------------------------------------------------------------------- | |
36 | // wxDC | |
37 | //----------------------------------------------------------------------------- | |
38 | ||
af0bb3b1 | 39 | wxDC::wxDC() |
4bb6408c | 40 | { |
2d120f83 | 41 | m_ok = FALSE; |
af0bb3b1 | 42 | |
2d120f83 JS |
43 | m_mm_to_pix_x = 1.0; |
44 | m_mm_to_pix_y = 1.0; | |
af0bb3b1 | 45 | |
2d120f83 | 46 | m_backgroundMode = wxTRANSPARENT; |
af0bb3b1 | 47 | |
2d120f83 | 48 | m_isInteractive = FALSE; |
af0bb3b1 | 49 | } |
4bb6408c | 50 | |
7b65ea1a | 51 | void wxDC::DoDrawIcon( const wxIcon &icon, wxCoord x, wxCoord y) |
4bb6408c | 52 | { |
af0bb3b1 VZ |
53 | wxCHECK_RET( Ok(), "invalid dc" ); |
54 | wxCHECK_RET( icon.Ok(), "invalid icon" ); | |
4bb6408c | 55 | |
af0bb3b1 VZ |
56 | DoDrawBitmap(icon, x, y, TRUE); |
57 | } | |
4bb6408c | 58 | |
7b65ea1a | 59 | void wxDC::DoDrawBitmap( const wxBitmap& bitmap, wxCoord x, wxCoord y, bool useMask ) |
a367b9b3 | 60 | { |
af0bb3b1 VZ |
61 | wxCHECK_RET( bitmap.Ok(), "invalid bitmap" ); |
62 | ||
a367b9b3 JS |
63 | wxMemoryDC memDC; |
64 | memDC.SelectObject(bitmap); | |
af0bb3b1 VZ |
65 | |
66 | #if 0 | |
67 | // Not sure if we need this. The mask should leave the masked areas as per | |
68 | // the original background of this DC. | |
a367b9b3 JS |
69 | if (useMask) |
70 | { | |
af0bb3b1 VZ |
71 | // There might be transparent areas, so make these the same colour as this |
72 | // DC | |
73 | memDC.SetBackground(* GetBackground()); | |
74 | memDC.Clear(); | |
a367b9b3 | 75 | } |
af0bb3b1 | 76 | #endif // 0 |
a367b9b3 | 77 | |
af0bb3b1 | 78 | Blit(x, y, bitmap.GetWidth(), bitmap.GetHeight(), &memDC, 0, 0, wxCOPY, useMask); |
4bb6408c | 79 | |
af0bb3b1 VZ |
80 | memDC.SelectObject(wxNullBitmap); |
81 | } | |
4bb6408c | 82 | |
7b65ea1a | 83 | void wxDC::DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, wxCoord height ) |
4bb6408c | 84 | { |
2d120f83 JS |
85 | m_clipping = TRUE; |
86 | m_clipX1 = x; | |
87 | m_clipY1 = y; | |
88 | m_clipX2 = x + width; | |
89 | m_clipY2 = y + height; | |
af0bb3b1 | 90 | } |
4bb6408c | 91 | |
af0bb3b1 | 92 | void wxDC::DestroyClippingRegion() |
4bb6408c | 93 | { |
2d120f83 | 94 | m_clipping = FALSE; |
af0bb3b1 | 95 | } |
4bb6408c | 96 | |
af0bb3b1 | 97 | void wxDC::DoGetSize( int* width, int* height ) const |
4bb6408c | 98 | { |
af0bb3b1 VZ |
99 | if ( width ) |
100 | *width = m_maxX - m_minX; | |
101 | if ( height ) | |
102 | *height = m_maxY - m_minY; | |
103 | } | |
4bb6408c | 104 | |
af0bb3b1 | 105 | void wxDC::DoGetSizeMM( int* width, int* height ) const |
4bb6408c | 106 | { |
af0bb3b1 | 107 | int w, h; |
2d120f83 | 108 | GetSize( &w, &h ); |
af0bb3b1 VZ |
109 | |
110 | if ( width ) | |
111 | *width = int( double(w) / (m_scaleX*m_mm_to_pix_x) ); | |
112 | if ( height ) | |
113 | *height = int( double(h) / (m_scaleY*m_mm_to_pix_y) ); | |
114 | } | |
4bb6408c | 115 | |
7bcb11d3 | 116 | // Resolution in pixels per logical inch |
af0bb3b1 | 117 | wxSize wxDC::GetPPI() const |
7bcb11d3 JS |
118 | { |
119 | // TODO (should probably be pure virtual) | |
120 | return wxSize(0, 0); | |
121 | } | |
122 | ||
4bb6408c JS |
123 | void wxDC::SetMapMode( int mode ) |
124 | { | |
af0bb3b1 | 125 | switch (mode) |
2d120f83 | 126 | { |
e3065973 | 127 | case wxMM_TWIPS: |
2d120f83 JS |
128 | SetLogicalScale( twips2mm*m_mm_to_pix_x, twips2mm*m_mm_to_pix_y ); |
129 | break; | |
e3065973 | 130 | case wxMM_POINTS: |
2d120f83 JS |
131 | SetLogicalScale( pt2mm*m_mm_to_pix_x, pt2mm*m_mm_to_pix_y ); |
132 | break; | |
e3065973 | 133 | case wxMM_METRIC: |
2d120f83 JS |
134 | SetLogicalScale( m_mm_to_pix_x, m_mm_to_pix_y ); |
135 | break; | |
e3065973 | 136 | case wxMM_LOMETRIC: |
2d120f83 JS |
137 | SetLogicalScale( m_mm_to_pix_x/10.0, m_mm_to_pix_y/10.0 ); |
138 | break; | |
4bb6408c | 139 | default: |
e3065973 | 140 | case wxMM_TEXT: |
2d120f83 JS |
141 | SetLogicalScale( 1.0, 1.0 ); |
142 | break; | |
af0bb3b1 | 143 | } |
e3065973 | 144 | if (mode != wxMM_TEXT) |
2d120f83 JS |
145 | { |
146 | m_needComputeScaleX = TRUE; | |
147 | m_needComputeScaleY = TRUE; | |
af0bb3b1 VZ |
148 | } |
149 | } | |
4bb6408c JS |
150 | |
151 | void wxDC::SetUserScale( double x, double y ) | |
152 | { | |
96f201da RR |
153 | // allow negative ? -> no |
154 | m_userScaleX = x; | |
155 | m_userScaleY = y; | |
2d120f83 | 156 | ComputeScaleAndOrigin(); |
af0bb3b1 | 157 | } |
4bb6408c JS |
158 | |
159 | void wxDC::SetLogicalScale( double x, double y ) | |
160 | { | |
96f201da RR |
161 | // allow negative ? |
162 | m_logicalScaleX = x; | |
163 | m_logicalScaleY = y; | |
2d120f83 | 164 | ComputeScaleAndOrigin(); |
af0bb3b1 | 165 | } |
4bb6408c | 166 | |
7b65ea1a | 167 | void wxDC::SetLogicalOrigin( wxCoord x, wxCoord y ) |
4bb6408c | 168 | { |
2d120f83 JS |
169 | m_logicalOriginX = x * m_signX; // is this still correct ? |
170 | m_logicalOriginY = y * m_signY; | |
171 | ComputeScaleAndOrigin(); | |
af0bb3b1 | 172 | } |
4bb6408c | 173 | |
7b65ea1a | 174 | void wxDC::SetDeviceOrigin( wxCoord x, wxCoord y ) |
4bb6408c | 175 | { |
76db86e7 RR |
176 | // only wxPostScripDC has m_signX = -1, we override SetDeviceOrigin there |
177 | m_deviceOriginX = x; | |
178 | m_deviceOriginY = y; | |
2d120f83 | 179 | ComputeScaleAndOrigin(); |
af0bb3b1 | 180 | } |
4bb6408c | 181 | |
4bb6408c JS |
182 | void wxDC::SetAxisOrientation( bool xLeftRight, bool yBottomUp ) |
183 | { | |
af0bb3b1 VZ |
184 | m_signX = xLeftRight ? 1 : -1; |
185 | m_signY = yBottomUp ? -1 : 1; | |
2d120f83 | 186 | ComputeScaleAndOrigin(); |
af0bb3b1 | 187 | } |
4bb6408c | 188 | |
7b65ea1a | 189 | wxCoord wxDCBase::DeviceToLogicalX(wxCoord x) const |
4bb6408c | 190 | { |
af0bb3b1 VZ |
191 | return ((wxDC *)this)->XDEV2LOG(x); |
192 | } | |
4bb6408c | 193 | |
7b65ea1a | 194 | wxCoord wxDCBase::DeviceToLogicalY(wxCoord y) const |
4bb6408c | 195 | { |
af0bb3b1 VZ |
196 | return ((wxDC *)this)->YDEV2LOG(y); |
197 | } | |
4bb6408c | 198 | |
7b65ea1a | 199 | wxCoord wxDCBase::DeviceToLogicalXRel(wxCoord x) const |
4bb6408c | 200 | { |
af0bb3b1 VZ |
201 | return ((wxDC *)this)->XDEV2LOGREL(x); |
202 | } | |
4bb6408c | 203 | |
7b65ea1a | 204 | wxCoord wxDCBase::DeviceToLogicalYRel(wxCoord y) const |
4bb6408c | 205 | { |
af0bb3b1 VZ |
206 | return ((wxDC *)this)->YDEV2LOGREL(y); |
207 | } | |
4bb6408c | 208 | |
7b65ea1a | 209 | wxCoord wxDCBase::LogicalToDeviceX(wxCoord x) const |
4bb6408c | 210 | { |
af0bb3b1 VZ |
211 | return ((wxDC *)this)->XLOG2DEV(x); |
212 | } | |
4bb6408c | 213 | |
7b65ea1a | 214 | wxCoord wxDCBase::LogicalToDeviceY(wxCoord y) const |
4bb6408c | 215 | { |
af0bb3b1 VZ |
216 | return ((wxDC *)this)->YLOG2DEV(y); |
217 | } | |
4bb6408c | 218 | |
7b65ea1a | 219 | wxCoord wxDCBase::LogicalToDeviceXRel(wxCoord x) const |
4bb6408c | 220 | { |
af0bb3b1 VZ |
221 | return ((wxDC *)this)->XLOG2DEVREL(x); |
222 | } | |
2d120f83 | 223 | |
7b65ea1a | 224 | wxCoord wxDCBase::LogicalToDeviceYRel(wxCoord y) const |
4bb6408c | 225 | { |
af0bb3b1 VZ |
226 | return ((wxDC *)this)->YLOG2DEVREL(y); |
227 | } | |
4bb6408c | 228 | |
af0bb3b1 | 229 | void wxDC::ComputeScaleAndOrigin() |
4bb6408c | 230 | { |
2d120f83 JS |
231 | m_scaleX = m_logicalScaleX * m_userScaleX; |
232 | m_scaleY = m_logicalScaleY * m_userScaleY; | |
af0bb3b1 | 233 | } |
4bb6408c | 234 |