wxWindowDC compiles (wxGTK doesn't link yet because of dcpsg.cpp problems...)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2457 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -395,10 +395,10 @@ public:
|
||||
if ( x ) *x = m_userScaleX;
|
||||
if ( y ) *y = m_userScaleY;
|
||||
}
|
||||
void SetSystemScale(double x, double y)
|
||||
{ SetUserScale(x, y); }
|
||||
virtual void SetUserScale(double x, double y) = 0;
|
||||
|
||||
virtual void SetSystemScale(double x, double y) = 0;
|
||||
|
||||
virtual void GetLogicalScale(double *x, double *y)
|
||||
{
|
||||
if ( x ) *x = m_logicalScaleX;
|
||||
@@ -509,8 +509,11 @@ protected:
|
||||
virtual void DoSetClippingRegionAsRegion(const wxRegion& region) = 0;
|
||||
virtual void DoSetClippingRegion(long x, long y,
|
||||
long width, long height) = 0;
|
||||
|
||||
// FIXME are these functions really different?
|
||||
virtual void DoGetClippingRegion(long *x, long *y,
|
||||
long *width, long *height) = 0;
|
||||
long *w, long *h)
|
||||
{ DoGetClippingBox(x, y, w, h); }
|
||||
virtual void DoGetClippingBox(long *x, long *y,
|
||||
long *w, long *h) const
|
||||
{
|
||||
|
Reference in New Issue
Block a user