]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk/dc.cpp
8264117512b56f1f0ced133f5831efc25d297fb9
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
15 //-----------------------------------------------------------------------------
17 //-----------------------------------------------------------------------------
19 IMPLEMENT_ABSTRACT_CLASS(wxDC
, wxDCBase
)
25 m_mm_to_pix_x
= (double)wxGetDisplaySize().GetWidth() /
26 (double)wxGetDisplaySizeMM().GetWidth();
27 m_mm_to_pix_y
= (double)wxGetDisplaySize().GetHeight() /
28 (double)wxGetDisplaySizeMM().GetHeight();
30 m_needComputeScaleX
= FALSE
; /* not used yet */
31 m_needComputeScaleY
= FALSE
; /* not used yet */
33 m_logicalFunction
= wxCOPY
;
36 m_font
= *wxNORMAL_FONT
;
37 m_brush
= *wxWHITE_BRUSH
;
40 void wxDC::DoSetClippingRegion( wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
46 m_clipY2
= y
+ height
;
49 // ---------------------------------------------------------------------------
50 // get DC capabilities
51 // ---------------------------------------------------------------------------
53 void wxDC::DoGetSizeMM( int* width
, int* height
) const
58 if (width
) *width
= int( double(w
) / (m_userScaleX
*m_mm_to_pix_x
) );
59 if (height
) *height
= int( double(h
) / (m_userScaleY
*m_mm_to_pix_y
) );
62 // Resolution in pixels per logical inch
63 wxSize
wxDC::GetPPI() const
65 // TODO (should probably be pure virtual)
69 // ---------------------------------------------------------------------------
70 // set various DC parameters
71 // ---------------------------------------------------------------------------
73 wxCoord
wxDC::DeviceToLogicalX(wxCoord x
) const
75 return wxRound((x
- m_deviceOriginX
) / m_scaleX
) * m_signX
+ m_logicalOriginX
;
78 wxCoord
wxDC::DeviceToLogicalY(wxCoord y
) const
80 return wxRound((y
- m_deviceOriginY
) / m_scaleY
) * m_signY
+ m_logicalOriginY
;
83 wxCoord
wxDC::DeviceToLogicalXRel(wxCoord x
) const
85 return wxRound(x
/ m_scaleX
);
88 wxCoord
wxDC::DeviceToLogicalYRel(wxCoord y
) const
90 return wxRound(y
/ m_scaleY
);
93 wxCoord
wxDC::LogicalToDeviceX(wxCoord x
) const
95 return wxRound((x
- m_logicalOriginX
) * m_scaleX
) * m_signX
+ m_deviceOriginX
;
98 wxCoord
wxDC::LogicalToDeviceY(wxCoord y
) const
100 return wxRound((y
- m_logicalOriginY
) * m_scaleY
) * m_signY
+ m_deviceOriginY
;
103 wxCoord
wxDC::LogicalToDeviceXRel(wxCoord x
) const
105 return wxRound(x
* m_scaleX
);
108 wxCoord
wxDC::LogicalToDeviceYRel(wxCoord y
) const
110 return wxRound(y
* m_scaleY
);
113 void wxDC::ComputeScaleAndOrigin()
115 m_scaleX
= m_logicalScaleX
* m_userScaleX
;
116 m_scaleY
= m_logicalScaleY
* m_userScaleY
;
119 void wxDC::SetMapMode( int mode
)
124 SetLogicalScale( twips2mm
*m_mm_to_pix_x
, twips2mm
*m_mm_to_pix_y
);
127 SetLogicalScale( pt2mm
*m_mm_to_pix_x
, pt2mm
*m_mm_to_pix_y
);
130 SetLogicalScale( m_mm_to_pix_x
, m_mm_to_pix_y
);
133 SetLogicalScale( m_mm_to_pix_x
/10.0, m_mm_to_pix_y
/10.0 );
137 SetLogicalScale( 1.0, 1.0 );
140 m_mappingMode
= mode
;
142 /* we don't do this mega optimisation
143 if (mode != wxMM_TEXT)
145 m_needComputeScaleX = TRUE;
146 m_needComputeScaleY = TRUE;
151 void wxDC::SetUserScale( double x
, double y
)
153 // allow negative ? -> no
156 ComputeScaleAndOrigin();
159 void wxDC::SetLogicalScale( double x
, double y
)
164 ComputeScaleAndOrigin();
167 void wxDC::SetLogicalOrigin( wxCoord x
, wxCoord y
)
169 m_logicalOriginX
= x
* m_signX
; // is this still correct ?
170 m_logicalOriginY
= y
* m_signY
;
171 ComputeScaleAndOrigin();
174 void wxDC::SetDeviceOrigin( wxCoord x
, wxCoord y
)
176 // only wxPostScripDC has m_signX = -1, we override SetDeviceOrigin there
179 ComputeScaleAndOrigin();
182 void wxDC::SetAxisOrientation( bool xLeftRight
, bool yBottomUp
)
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();