]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk/dc.cpp
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "dc.h"
18 //-----------------------------------------------------------------------------
20 //-----------------------------------------------------------------------------
22 #define mm2inches 0.0393700787402
23 #define inches2mm 25.4
24 #define mm2twips 56.6929133859
25 #define twips2mm 0.0176388888889
26 #define mm2pt 2.83464566929
27 #define pt2mm 0.352777777778
29 //-----------------------------------------------------------------------------
31 //-----------------------------------------------------------------------------
33 IMPLEMENT_ABSTRACT_CLASS(wxDC
,wxObject
)
39 m_autoSetting
= FALSE
;
50 m_internalDeviceOriginX
= 0;
51 m_internalDeviceOriginY
= 0;
52 m_externalDeviceOriginX
= 0;
53 m_externalDeviceOriginY
= 0;
55 m_logicalScaleX
= 1.0;
56 m_logicalScaleY
= 1.0;
62 m_mappingMode
= MM_TEXT
;
63 m_needComputeScaleX
= FALSE
;
64 m_needComputeScaleY
= FALSE
;
66 m_signX
= 1; // default x-axis left to right
67 m_signY
= 1; // default y-axis top down
69 m_maxX
= m_maxY
= -100000;
70 m_minY
= m_minY
= 100000;
72 m_logicalFunction
= wxCOPY
;
73 // m_textAlignment = wxALIGN_TOP_LEFT;
74 m_backgroundMode
= wxTRANSPARENT
;
76 m_textForegroundColour
= *wxBLACK
;
77 m_textBackgroundColour
= *wxWHITE
;
79 m_font
= *wxNORMAL_FONT
;
80 m_brush
= *wxTRANSPARENT_BRUSH
;
81 m_backgroundBrush
= *wxWHITE_BRUSH
;
83 // m_palette = wxAPP_COLOURMAP;
90 void wxDC::DrawArc( long WXUNUSED(x1
), long WXUNUSED(y1
), long WXUNUSED(x2
), long WXUNUSED(y2
),
91 double WXUNUSED(xc
), double WXUNUSED(yc
) )
95 void wxDC::DrawIcon( const wxIcon
&WXUNUSED(icon
), long WXUNUSED(x
), long WXUNUSED(y
), bool WXUNUSED(useMask
) )
99 void wxDC::DrawPoint( wxPoint
& point
)
101 DrawPoint( point
.x
, point
.y
);
104 void wxDC::DrawPolygon( wxList
*list
, long xoffset
, long yoffset
, int fillStyle
)
106 int n
= list
->Number();
107 wxPoint
*points
= new wxPoint
[n
];
110 for( wxNode
*node
= list
->First(); node
; node
= node
->Next() )
112 wxPoint
*point
= (wxPoint
*)node
->Data();
113 points
[i
].x
= point
->x
;
114 points
[i
++].y
= point
->y
;
116 DrawPolygon( n
, points
, xoffset
, yoffset
, fillStyle
);
120 void wxDC::DrawLines( wxList
*list
, long xoffset
, long yoffset
)
122 int n
= list
->Number();
123 wxPoint
*points
= new wxPoint
[n
];
126 for( wxNode
*node
= list
->First(); node
; node
= node
->Next() )
128 wxPoint
*point
= (wxPoint
*)node
->Data();
129 points
[i
].x
= point
->x
;
130 points
[i
++].y
= point
->y
;
132 DrawLines( n
, points
, xoffset
, yoffset
);
136 void wxDC::DrawSpline( long x1
, long y1
, long x2
, long y2
, long x3
, long y3
)
139 list
.DeleteContents(TRUE
);
140 list
.Append( new wxPoint(x1
, y1
) );
141 list
.Append( new wxPoint(x2
, y2
) );
142 list
.Append( new wxPoint(x3
, y3
) );
146 void wxDC::DrawSpline( wxList
*points
)
148 DrawOpenSpline( points
);
151 void wxDC::DrawSpline( int n
, wxPoint points
[] )
154 for (int i
= 0; i
< n
; i
++) list
.Append( (wxObject
*)&points
[i
] );
158 void wxDC::SetClippingRegion( long x
, long y
, long width
, long height
)
163 m_clipX2
= x
+ width
;
164 m_clipY2
= y
+ height
;
167 void wxDC::DestroyClippingRegion(void)
172 void wxDC::GetClippingBox( long *x
, long *y
, long *width
, long *height
) const
176 if (x
) *x
= m_clipX1
;
177 if (y
) *y
= m_clipY1
;
178 if (width
) *width
= (m_clipX2
- m_clipX1
);
179 if (height
) *height
= (m_clipY2
- m_clipY1
);
182 *x
= *y
= *width
= *height
= 0;
185 void wxDC::GetSize( int* width
, int* height
) const
187 *width
= m_maxX
-m_minX
;
188 *height
= m_maxY
-m_minY
;
191 void wxDC::GetSizeMM( long* width
, long* height
) const
196 *width
= long( double(w
) / (m_scaleX
*m_mm_to_pix_x
) );
197 *height
= long( double(h
) / (m_scaleY
*m_mm_to_pix_y
) );
200 void wxDC::SetTextForeground( const wxColour
&col
)
203 m_textForegroundColour
= col
;
206 void wxDC::SetTextBackground( const wxColour
&col
)
209 m_textBackgroundColour
= col
;
212 void wxDC::SetMapMode( int mode
)
217 SetLogicalScale( twips2mm
*m_mm_to_pix_x
, twips2mm
*m_mm_to_pix_y
);
220 SetLogicalScale( pt2mm
*m_mm_to_pix_x
, pt2mm
*m_mm_to_pix_y
);
223 SetLogicalScale( m_mm_to_pix_x
, m_mm_to_pix_y
);
226 SetLogicalScale( m_mm_to_pix_x
/10.0, m_mm_to_pix_y
/10.0 );
230 SetLogicalScale( 1.0, 1.0 );
235 m_needComputeScaleX
= TRUE
;
236 m_needComputeScaleY
= TRUE
;
240 void wxDC::SetUserScale( double x
, double y
)
242 // allow negative ? -> no
245 ComputeScaleAndOrigin();
248 void wxDC::GetUserScale( double *x
, double *y
)
250 if (x
) *x
= m_userScaleX
;
251 if (y
) *y
= m_userScaleY
;
254 void wxDC::SetLogicalScale( double x
, double y
)
259 ComputeScaleAndOrigin();
262 void wxDC::GetLogicalScale( double *x
, double *y
)
264 if (x
) *x
= m_logicalScaleX
;
265 if (y
) *y
= m_logicalScaleY
;
268 void wxDC::SetLogicalOrigin( long x
, long y
)
270 m_logicalOriginX
= x
* m_signX
; // is this still correct ?
271 m_logicalOriginY
= y
* m_signY
;
272 ComputeScaleAndOrigin();
275 void wxDC::GetLogicalOrigin( long *x
, long *y
)
277 if (x
) *x
= m_logicalOriginX
;
278 if (y
) *y
= m_logicalOriginY
;
281 void wxDC::SetDeviceOrigin( long x
, long y
)
283 m_externalDeviceOriginX
= x
;
284 m_externalDeviceOriginY
= y
;
285 ComputeScaleAndOrigin();
288 void wxDC::GetDeviceOrigin( long *x
, long *y
)
290 if (x
) *x
= m_externalDeviceOriginX
;
291 if (y
) *y
= m_externalDeviceOriginY
;
294 void wxDC::SetInternalDeviceOrigin( long x
, long y
)
296 m_internalDeviceOriginX
= x
;
297 m_internalDeviceOriginY
= y
;
298 ComputeScaleAndOrigin();
301 void wxDC::GetInternalDeviceOrigin( long *x
, long *y
)
303 if (x
) *x
= m_internalDeviceOriginX
;
304 if (y
) *y
= m_internalDeviceOriginY
;
307 void wxDC::SetAxisOrientation( bool xLeftRight
, bool yBottomUp
)
309 m_signX
= (xLeftRight
? 1 : -1);
310 m_signY
= (yBottomUp
? -1 : 1);
311 ComputeScaleAndOrigin();
314 long wxDC::DeviceToLogicalX(long x
) const
319 long wxDC::DeviceToLogicalY(long y
) const
324 long wxDC::DeviceToLogicalXRel(long x
) const
326 return XDEV2LOGREL(x
);
329 long wxDC::DeviceToLogicalYRel(long y
) const
331 return YDEV2LOGREL(y
);
334 long wxDC::LogicalToDeviceX(long x
) const
339 long wxDC::LogicalToDeviceY(long y
) const
344 long wxDC::LogicalToDeviceXRel(long x
) const
346 return XLOG2DEVREL(x
);
349 long wxDC::LogicalToDeviceYRel(long y
) const
351 return YLOG2DEVREL(y
);
354 void wxDC::CalcBoundingBox( long x
, long y
)
356 if (x
< m_minX
) m_minX
= x
;
357 if (y
< m_minY
) m_minY
= y
;
358 if (x
> m_maxX
) m_maxX
= x
;
359 if (y
> m_maxY
) m_maxY
= y
;
362 void wxDC::ComputeScaleAndOrigin(void)
364 m_scaleX
= m_logicalScaleX
* m_userScaleX
;
365 m_scaleY
= m_logicalScaleY
* m_userScaleY
;
367 m_deviceOriginX
= m_internalDeviceOriginX
+ m_externalDeviceOriginX
;
368 m_deviceOriginY
= m_internalDeviceOriginY
+ m_externalDeviceOriginY
;