]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk1/dc.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk1/dc.cpp
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"
13 #include "wx/gtk1/dc.h"
18 //-----------------------------------------------------------------------------
20 //-----------------------------------------------------------------------------
22 IMPLEMENT_ABSTRACT_CLASS(wxGTKDCImpl
, wxDCImpl
)
24 wxGTKDCImpl::wxGTKDCImpl(wxDC
*owner
)
29 m_logicalFunction
= wxCOPY
;
32 m_font
= *wxNORMAL_FONT
;
33 m_brush
= *wxWHITE_BRUSH
;
36 void wxGTKDCImpl::DoSetClippingRegion( wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
42 m_clipY2
= y
+ height
;
45 // ---------------------------------------------------------------------------
46 // get DC capabilities
47 // ---------------------------------------------------------------------------
49 void wxGTKDCImpl::DoGetSizeMM( int* width
, int* height
) const
54 if (width
) *width
= int( double(w
) / (m_userScaleX
*m_mm_to_pix_x
) );
55 if (height
) *height
= int( double(h
) / (m_userScaleY
*m_mm_to_pix_y
) );
58 // Resolution in pixels per logical inch
59 wxSize
wxGTKDCImpl::GetPPI() const
61 // TODO (should probably be pure virtual)