]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk/dc.cpp
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Markus Holzem
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "dc.h"
17 //-----------------------------------------------------------------------------
19 //-----------------------------------------------------------------------------
21 #define mm2inches 0.0393700787402
22 #define inches2mm 25.4
23 #define mm2twips 56.6929133859
24 #define twips2mm 0.0176388888889
25 #define mm2pt 2.83464566929
26 #define pt2mm 0.352777777778
28 //-----------------------------------------------------------------------------
30 //-----------------------------------------------------------------------------
32 IMPLEMENT_ABSTRACT_CLASS(wxDC
,wxObject
)
38 m_autoSetting
= FALSE
;
50 m_logicalScaleX
= 1.0;
51 m_logicalScaleY
= 1.0;
57 m_mappingMode
= MM_TEXT
;
58 m_needComputeScaleX
= FALSE
;
59 m_needComputeScaleY
= FALSE
;
61 m_signX
= 1; // default x-axis left to right
62 m_signY
= 1; // default y-axis top down
64 m_maxX
= m_maxY
= -100000;
65 m_minY
= m_minY
= 100000;
67 m_logicalFunction
= wxCOPY
;
68 // m_textAlignment = wxALIGN_TOP_LEFT;
69 m_backgroundMode
= wxTRANSPARENT
;
71 m_textForegroundColour
= *wxBLACK
;
72 m_textBackgroundColour
= *wxWHITE
;
74 m_font
= *wxNORMAL_FONT
;
75 m_brush
= *wxTRANSPARENT_BRUSH
;
76 m_backgroundBrush
= *wxWHITE_BRUSH
;
78 // m_palette = wxAPP_COLOURMAP;
85 bool wxDC::Ok(void) const
87 wxASSERT_MSG( m_ok
, "invalid display context" );
91 void wxDC::DrawArc( long WXUNUSED(x1
), long WXUNUSED(y1
), long WXUNUSED(x2
), long WXUNUSED(y2
),
92 double WXUNUSED(xc
), double WXUNUSED(yc
) )
96 void wxDC::DrawIcon( const wxIcon
&WXUNUSED(icon
), long WXUNUSED(x
), long WXUNUSED(y
), bool WXUNUSED(useMask
) )
100 void wxDC::DrawPoint( wxPoint
& point
)
102 DrawPoint( point
.x
, point
.y
);
105 void wxDC::DrawPolygon( wxList
*list
, long xoffset
, long yoffset
, int fillStyle
)
107 int n
= list
->Number();
108 wxPoint
*points
= new wxPoint
[n
];
111 for( wxNode
*node
= list
->First(); node
; node
= node
->Next() )
113 wxPoint
*point
= (wxPoint
*)node
->Data();
114 points
[i
].x
= point
->x
;
115 points
[i
++].y
= point
->y
;
117 DrawPolygon( n
, points
, xoffset
, yoffset
, fillStyle
);
121 void wxDC::DrawLines( wxList
*list
, long xoffset
, long yoffset
)
123 int n
= list
->Number();
124 wxPoint
*points
= new wxPoint
[n
];
127 for( wxNode
*node
= list
->First(); node
; node
= node
->Next() )
129 wxPoint
*point
= (wxPoint
*)node
->Data();
130 points
[i
].x
= point
->x
;
131 points
[i
++].y
= point
->y
;
133 DrawLines( n
, points
, xoffset
, yoffset
);
137 void wxDC::DrawSpline( long x1
, long y1
, long x2
, long y2
, long x3
, long y3
)
140 list
.Append( (wxObject
*)new wxPoint(x1
, y1
) );
141 list
.Append( (wxObject
*)new wxPoint(x2
, y2
) );
142 list
.Append( (wxObject
*)new wxPoint(x3
, y3
) );
144 wxNode
*node
= list
.First();
147 wxPoint
*p
= (wxPoint
*)node
->Data();
153 void wxDC::DrawSpline( int n
, wxPoint points
[] )
156 for (int i
= 0; i
< n
; i
++) list
.Append( (wxObject
*)&points
[i
] );
160 void wxDC::SetClippingRegion( long x
, long y
, long width
, long height
)
165 m_clipX2
= x
+ width
;
166 m_clipY2
= y
+ height
;
169 void wxDC::DestroyClippingRegion(void)
174 void wxDC::GetClippingBox( long *x
, long *y
, long *width
, long *height
) const
178 if (x
) *x
= m_clipX1
;
179 if (y
) *y
= m_clipY1
;
180 if (width
) *width
= (m_clipX2
- m_clipX1
);
181 if (height
) *height
= (m_clipY2
- m_clipY1
);
184 *x
= *y
= *width
= *height
= 0;
187 void wxDC::GetSize( int* width
, int* height
) const
189 *width
= m_maxX
-m_minX
;
190 *height
= m_maxY
-m_minY
;
193 void wxDC::GetSizeMM( long* width
, long* height
) const
198 *width
= long( double(w
) / (m_scaleX
*m_mm_to_pix_x
) );
199 *height
= long( double(h
) / (m_scaleY
*m_mm_to_pix_y
) );
202 void wxDC::SetTextForeground( const wxColour
&col
)
205 m_textForegroundColour
= col
;
208 void wxDC::SetTextBackground( const wxColour
&col
)
211 m_textBackgroundColour
= col
;
214 void wxDC::SetMapMode( int mode
)
219 SetLogicalScale( twips2mm
*m_mm_to_pix_x
, twips2mm
*m_mm_to_pix_y
);
222 SetLogicalScale( pt2mm
*m_mm_to_pix_x
, pt2mm
*m_mm_to_pix_y
);
225 SetLogicalScale( m_mm_to_pix_x
, m_mm_to_pix_y
);
228 SetLogicalScale( m_mm_to_pix_x
/10.0, m_mm_to_pix_y
/10.0 );
232 SetLogicalScale( 1.0, 1.0 );
237 m_needComputeScaleX
= TRUE
;
238 m_needComputeScaleY
= TRUE
;
242 void wxDC::SetUserScale( double x
, double y
)
244 // allow negative ? -> no
247 ComputeScaleAndOrigin();
250 void wxDC::GetUserScale( double *x
, double *y
)
252 if (x
) *x
= m_userScaleX
;
253 if (y
) *y
= m_userScaleY
;
256 void wxDC::SetLogicalScale( double x
, double y
)
261 ComputeScaleAndOrigin();
264 void wxDC::GetLogicalScale( double *x
, double *y
)
266 if (x
) *x
= m_logicalScaleX
;
267 if (y
) *y
= m_logicalScaleY
;
270 void wxDC::SetLogicalOrigin( long x
, long y
)
272 m_logicalOriginX
= x
* m_signX
; // is this still correct ?
273 m_logicalOriginY
= y
* m_signY
;
274 ComputeScaleAndOrigin();
277 void wxDC::GetLogicalOrigin( long *x
, long *y
)
279 if (x
) *x
= m_logicalOriginX
;
280 if (y
) *y
= m_logicalOriginY
;
283 void wxDC::SetDeviceOrigin( long x
, long y
)
287 ComputeScaleAndOrigin();
290 void wxDC::GetDeviceOrigin( long *x
, long *y
)
292 if (x
) *x
= m_deviceOriginX
;
293 if (y
) *y
= m_deviceOriginY
;
296 void wxDC::SetAxisOrientation( bool xLeftRight
, bool yBottomUp
)
298 m_signX
= (xLeftRight
? 1 : -1);
299 m_signY
= (yBottomUp
? -1 : 1);
300 ComputeScaleAndOrigin();
303 long wxDC::DeviceToLogicalX(long x
) const
308 long wxDC::DeviceToLogicalY(long y
) const
313 long wxDC::DeviceToLogicalXRel(long x
) const
315 return XDEV2LOGREL(x
);
318 long wxDC::DeviceToLogicalYRel(long y
) const
320 return YDEV2LOGREL(y
);
323 long wxDC::LogicalToDeviceX(long x
) const
328 long wxDC::LogicalToDeviceY(long y
) const
333 long wxDC::LogicalToDeviceXRel(long x
) const
335 return XLOG2DEVREL(x
);
338 long wxDC::LogicalToDeviceYRel(long y
) const
340 return YLOG2DEVREL(y
);
343 void wxDC::CalcBoundingBox( long x
, long y
)
345 if (x
< m_minX
) m_minX
= x
;
346 if (y
< m_minY
) m_minY
= y
;
347 if (x
> m_maxX
) m_maxX
= x
;
348 if (y
> m_maxY
) m_maxY
= y
;
351 void wxDC::ComputeScaleAndOrigin(void)
353 // CMB: copy scale to see if it changes
354 double origScaleX
= m_scaleX
;
355 double origScaleY
= m_scaleY
;
357 m_scaleX
= m_logicalScaleX
* m_userScaleX
;
358 m_scaleY
= m_logicalScaleY
* m_userScaleY
;
360 // CMB: if scale has changed call SetPen to recalulate the line width
361 if (m_scaleX
!= origScaleX
|| m_scaleY
!= origScaleY
)
363 // this is a bit artificial, but we need to force wxDC to think
364 // the pen has changed
365 // Using this code, wxDC will ignore the new settings
366 // so it's complete non-sense, Robert Roebling TODO!!
367 wxPen
* pen
= GetPen();