]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dc.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
6f65e337 | 5 | // RCS-ID: $Id$ |
dbf858b5 | 6 | // Copyright: (c) 1998 Robert Roebling, Markus Holzem |
a23fd0e1 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | ||
11 | #ifdef __GNUG__ | |
a23fd0e1 | 12 | #pragma implementation "dc.h" |
c801d85f KB |
13 | #endif |
14 | ||
15 | #include "wx/dc.h" | |
16 | ||
83624f79 RR |
17 | #include "gdk/gdk.h" |
18 | #include "gtk/gtk.h" | |
19 | ||
c801d85f KB |
20 | //----------------------------------------------------------------------------- |
21 | // constants | |
22 | //----------------------------------------------------------------------------- | |
23 | ||
a23fd0e1 VZ |
24 | #define mm2inches 0.0393700787402 |
25 | #define inches2mm 25.4 | |
26 | #define mm2twips 56.6929133859 | |
27 | #define twips2mm 0.0176388888889 | |
28 | #define mm2pt 2.83464566929 | |
29 | #define pt2mm 0.352777777778 | |
c801d85f KB |
30 | |
31 | //----------------------------------------------------------------------------- | |
32 | // wxDC | |
33 | //----------------------------------------------------------------------------- | |
34 | ||
a23fd0e1 | 35 | IMPLEMENT_ABSTRACT_CLASS(wxDC, wxDCBase) |
c801d85f | 36 | |
4bc67cc5 | 37 | wxDC::wxDC() |
c801d85f | 38 | { |
4bc67cc5 | 39 | m_ok = FALSE; |
a23fd0e1 | 40 | |
4bc67cc5 RR |
41 | m_mm_to_pix_x = 1.0; |
42 | m_mm_to_pix_y = 1.0; | |
a23fd0e1 | 43 | |
ea6f44b5 RR |
44 | m_needComputeScaleX = FALSE; /* not used yet */ |
45 | m_needComputeScaleY = FALSE; /* not used yet */ | |
c801d85f | 46 | |
4bc67cc5 | 47 | m_logicalFunction = wxCOPY; |
a23fd0e1 | 48 | |
4bc67cc5 RR |
49 | m_pen = *wxBLACK_PEN; |
50 | m_font = *wxNORMAL_FONT; | |
51 | m_brush = *wxTRANSPARENT_BRUSH; | |
ff7b1510 | 52 | } |
c801d85f | 53 | |
a23fd0e1 | 54 | void wxDC::DoSetClippingRegion( long x, long y, long width, long height ) |
c801d85f | 55 | { |
4bc67cc5 RR |
56 | m_clipping = TRUE; |
57 | m_clipX1 = x; | |
58 | m_clipY1 = y; | |
59 | m_clipX2 = x + width; | |
60 | m_clipY2 = y + height; | |
ff7b1510 | 61 | } |
c801d85f | 62 | |
4bc67cc5 | 63 | void wxDC::DestroyClippingRegion() |
c801d85f | 64 | { |
4bc67cc5 | 65 | m_clipping = FALSE; |
ff7b1510 | 66 | } |
c801d85f | 67 | |
a23fd0e1 VZ |
68 | // --------------------------------------------------------------------------- |
69 | // get DC capabilities | |
70 | // --------------------------------------------------------------------------- | |
c801d85f | 71 | |
a23fd0e1 | 72 | void wxDC::DoGetSize( int* width, int* height ) const |
c801d85f | 73 | { |
4bc67cc5 RR |
74 | if (width) *width = m_maxX-m_minX; |
75 | if (height) *height = m_maxY-m_minY; | |
ff7b1510 | 76 | } |
c801d85f | 77 | |
a23fd0e1 | 78 | void wxDC::DoGetSizeMM( int* width, int* height ) const |
c801d85f | 79 | { |
4bc67cc5 RR |
80 | int w = 0; |
81 | int h = 0; | |
82 | GetSize( &w, &h ); | |
7bcb11d3 JS |
83 | if (width) *width = int( double(w) / (m_scaleX*m_mm_to_pix_x) ); |
84 | if (height) *height = int( double(h) / (m_scaleY*m_mm_to_pix_y) ); | |
85 | } | |
86 | ||
87 | // Resolution in pixels per logical inch | |
a23fd0e1 | 88 | wxSize wxDC::GetPPI() const |
7bcb11d3 JS |
89 | { |
90 | // TODO (should probably be pure virtual) | |
91 | return wxSize(0, 0); | |
ff7b1510 | 92 | } |
c801d85f | 93 | |
a23fd0e1 VZ |
94 | // --------------------------------------------------------------------------- |
95 | // set various DC parameters | |
96 | // --------------------------------------------------------------------------- | |
c801d85f | 97 | |
a23fd0e1 | 98 | void wxDC::ComputeScaleAndOrigin() |
c801d85f | 99 | { |
a23fd0e1 VZ |
100 | // CMB: copy scale to see if it changes |
101 | double origScaleX = m_scaleX; | |
102 | double origScaleY = m_scaleY; | |
103 | ||
104 | m_scaleX = m_logicalScaleX * m_userScaleX; | |
105 | m_scaleY = m_logicalScaleY * m_userScaleY; | |
106 | ||
107 | // CMB: if scale has changed call SetPen to recalulate the line width | |
108 | if (m_scaleX != origScaleX || m_scaleY != origScaleY) | |
109 | { | |
110 | // this is a bit artificial, but we need to force wxDC to think | |
111 | // the pen has changed | |
112 | // It gives an Assert, Robert Roebling | |
113 | /* | |
114 | wxPen pen = m_pen; | |
115 | m_pen = wxNullPen; | |
116 | SetPen( pen ); | |
117 | */ | |
118 | } | |
ff7b1510 | 119 | } |
c801d85f KB |
120 | |
121 | void wxDC::SetMapMode( int mode ) | |
122 | { | |
a23fd0e1 | 123 | switch (mode) |
4bc67cc5 | 124 | { |
e3065973 | 125 | case wxMM_TWIPS: |
4bc67cc5 RR |
126 | SetLogicalScale( twips2mm*m_mm_to_pix_x, twips2mm*m_mm_to_pix_y ); |
127 | break; | |
e3065973 | 128 | case wxMM_POINTS: |
4bc67cc5 RR |
129 | SetLogicalScale( pt2mm*m_mm_to_pix_x, pt2mm*m_mm_to_pix_y ); |
130 | break; | |
e3065973 | 131 | case wxMM_METRIC: |
4bc67cc5 RR |
132 | SetLogicalScale( m_mm_to_pix_x, m_mm_to_pix_y ); |
133 | break; | |
e3065973 | 134 | case wxMM_LOMETRIC: |
4bc67cc5 RR |
135 | SetLogicalScale( m_mm_to_pix_x/10.0, m_mm_to_pix_y/10.0 ); |
136 | break; | |
137 | default: | |
e3065973 | 138 | case wxMM_TEXT: |
4bc67cc5 RR |
139 | SetLogicalScale( 1.0, 1.0 ); |
140 | break; | |
141 | } | |
142 | /* we don't do this mega optimisation | |
e3065973 | 143 | if (mode != wxMM_TEXT) |
4bc67cc5 RR |
144 | { |
145 | m_needComputeScaleX = TRUE; | |
146 | m_needComputeScaleY = TRUE; | |
147 | } | |
148 | */ | |
ff7b1510 | 149 | } |
c801d85f KB |
150 | |
151 | void wxDC::SetUserScale( double x, double y ) | |
152 | { | |
4bc67cc5 RR |
153 | // allow negative ? -> no |
154 | m_userScaleX = x; | |
155 | m_userScaleY = y; | |
156 | ComputeScaleAndOrigin(); | |
ff7b1510 | 157 | } |
c801d85f | 158 | |
c801d85f KB |
159 | void wxDC::SetLogicalScale( double x, double y ) |
160 | { | |
4bc67cc5 RR |
161 | // allow negative ? |
162 | m_logicalScaleX = x; | |
163 | m_logicalScaleY = y; | |
164 | ComputeScaleAndOrigin(); | |
ff7b1510 | 165 | } |
c801d85f | 166 | |
c801d85f KB |
167 | void wxDC::SetLogicalOrigin( long x, long y ) |
168 | { | |
4bc67cc5 RR |
169 | m_logicalOriginX = x * m_signX; // is this still correct ? |
170 | m_logicalOriginY = y * m_signY; | |
171 | ComputeScaleAndOrigin(); | |
ff7b1510 | 172 | } |
c801d85f | 173 | |
c801d85f KB |
174 | void wxDC::SetDeviceOrigin( long x, long y ) |
175 | { | |
4bc67cc5 | 176 | // only wxPostScripDC has m_signX = -1, we override SetDeviceOrigin there |
a23fd0e1 | 177 | m_deviceOriginX = x; |
4bc67cc5 RR |
178 | m_deviceOriginY = y; |
179 | ComputeScaleAndOrigin(); | |
ff7b1510 | 180 | } |
c801d85f | 181 | |
c801d85f KB |
182 | void wxDC::SetAxisOrientation( bool xLeftRight, bool yBottomUp ) |
183 | { | |
4bc67cc5 RR |
184 | // only wxPostScripDC has m_signX = -1, we override SetAxisOrientation there |
185 | m_signX = (xLeftRight ? 1 : -1); | |
186 | m_signY = (yBottomUp ? -1 : 1); | |
187 | ComputeScaleAndOrigin(); | |
ff7b1510 | 188 | } |
c801d85f | 189 | |
a23fd0e1 VZ |
190 | // --------------------------------------------------------------------------- |
191 | // coordinates transformations | |
192 | // --------------------------------------------------------------------------- | |
193 | ||
194 | long wxDCBase::DeviceToLogicalX(long x) const | |
c801d85f | 195 | { |
b0e0d661 | 196 | return ((wxDC *)this)->XDEV2LOG(x); |
ff7b1510 | 197 | } |
c801d85f | 198 | |
a23fd0e1 | 199 | long wxDCBase::DeviceToLogicalY(long y) const |
c801d85f | 200 | { |
b0e0d661 | 201 | return ((wxDC *)this)->YDEV2LOG(y); |
ff7b1510 | 202 | } |
c801d85f | 203 | |
a23fd0e1 | 204 | long wxDCBase::DeviceToLogicalXRel(long x) const |
c801d85f | 205 | { |
b0e0d661 | 206 | return ((wxDC *)this)->XDEV2LOGREL(x); |
ff7b1510 | 207 | } |
c801d85f | 208 | |
a23fd0e1 | 209 | long wxDCBase::DeviceToLogicalYRel(long y) const |
c801d85f | 210 | { |
b0e0d661 | 211 | return ((wxDC *)this)->YDEV2LOGREL(y); |
ff7b1510 | 212 | } |
c801d85f | 213 | |
a23fd0e1 | 214 | long wxDCBase::LogicalToDeviceX(long x) const |
c801d85f | 215 | { |
b0e0d661 | 216 | return ((wxDC *)this)->XLOG2DEV(x); |
ff7b1510 | 217 | } |
c801d85f | 218 | |
a23fd0e1 | 219 | long wxDCBase::LogicalToDeviceY(long y) const |
c801d85f | 220 | { |
b0e0d661 | 221 | return ((wxDC *)this)->YLOG2DEV(y); |
ff7b1510 | 222 | } |
c801d85f | 223 | |
a23fd0e1 | 224 | long wxDCBase::LogicalToDeviceXRel(long x) const |
c801d85f | 225 | { |
b0e0d661 | 226 | return ((wxDC *)this)->XLOG2DEVREL(x); |
ff7b1510 | 227 | } |
c801d85f | 228 | |
a23fd0e1 | 229 | long wxDCBase::LogicalToDeviceYRel(long y) const |
c801d85f | 230 | { |
b0e0d661 | 231 | return ((wxDC *)this)->YLOG2DEVREL(y); |
ff7b1510 | 232 | } |
c801d85f | 233 |