]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/dc.h
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
13 //-----------------------------------------------------------------------------
15 //-----------------------------------------------------------------------------
17 class WXDLLIMPEXP_CORE wxDC
;
19 //-----------------------------------------------------------------------------
21 //-----------------------------------------------------------------------------
25 #define MM_ISOTROPIC 1
26 #define MM_ANISOTROPIC 2
34 //-----------------------------------------------------------------------------
36 //-----------------------------------------------------------------------------
38 class WXDLLIMPEXP_CORE wxDC
: public wxDCBase
45 void SetColourMap( const wxPalette
& palette
) { SetPalette(palette
); };
46 #endif // wxUSE_PALETTE
48 // Resolution in pixels per logical inch
49 virtual wxSize
GetPPI() const;
51 virtual bool StartDoc( const wxString
& WXUNUSED(message
) ) { return true; }
52 virtual void EndDoc() { }
53 virtual void StartPage() { }
54 virtual void EndPage() { }
56 virtual void SetMapMode( int mode
);
57 virtual void SetUserScale( double x
, double y
);
58 virtual void SetLogicalScale( double x
, double y
);
59 virtual void SetLogicalOrigin( wxCoord x
, wxCoord y
);
60 virtual void SetDeviceOrigin( wxCoord x
, wxCoord y
);
62 virtual void SetAxisOrientation( bool xLeftRight
, bool yBottomUp
);
67 virtual void ComputeScaleAndOrigin();
69 virtual GdkWindow
* GetGDKWindow() const { return NULL
; }
71 wxCoord
XDEV2LOG(wxCoord x
) const
73 return wxRound((double)(x
- m_deviceOriginX
) / m_scaleX
) * m_signX
+ m_logicalOriginX
;
75 wxCoord
XDEV2LOGREL(wxCoord x
) const
77 return wxRound((double)(x
) / m_scaleX
);
79 wxCoord
YDEV2LOG(wxCoord y
) const
81 return wxRound((double)(y
- m_deviceOriginY
) / m_scaleY
) * m_signY
+ m_logicalOriginY
;
83 wxCoord
YDEV2LOGREL(wxCoord y
) const
85 return wxRound((double)(y
) / m_scaleY
);
87 wxCoord
XLOG2DEV(wxCoord x
) const
89 return wxRound((double)(x
- m_logicalOriginX
) * m_scaleX
) * m_signX
+ m_deviceOriginX
;
91 wxCoord
XLOG2DEVREL(wxCoord x
) const
93 return wxRound((double)(x
) * m_scaleX
);
95 wxCoord
YLOG2DEV(wxCoord y
) const
97 return wxRound((double)(y
- m_logicalOriginY
) * m_scaleY
) * m_signY
+ m_deviceOriginY
;
99 wxCoord
YLOG2DEVREL(wxCoord y
) const
101 return wxRound((double)(y
) * m_scaleY
);
105 // base class pure virtuals implemented here
106 virtual void DoSetClippingRegion(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
);
107 virtual void DoGetSizeMM(int* width
, int* height
) const;
110 // GTK-specific member variables
112 // not sure what for, but what is a mm on a screen you don't know the size
114 double m_mm_to_pix_x
,
117 bool m_needComputeScaleX
,
118 m_needComputeScaleY
; // not yet used
122 DECLARE_ABSTRACT_CLASS(wxDC
)
125 // this must be defined when wxDC::Blit() honours the DC origian and needed to
126 // allow wxUniv code in univ/winuniv.cpp to work with versions of wxGTK
128 #ifndef wxHAS_WORKING_GTK_DC_BLIT
129 #define wxHAS_WORKING_GTK_DC_BLIT