1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-11-30 02:58:37 -05:00
|
|
|
// Name: wx/gtk/dc.h
|
1998-05-20 10:01:55 -04:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 05:56:58 -05:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTKDCH__
|
|
|
|
#define __GTKDCH__
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// constants
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2004-10-07 12:42:11 -04:00
|
|
|
#ifndef MM_TEXT
|
1999-05-13 17:21:04 -04:00
|
|
|
#define MM_TEXT 0
|
1998-12-09 12:30:17 -05:00
|
|
|
#define MM_ISOTROPIC 1
|
1999-05-13 17:21:04 -04:00
|
|
|
#define MM_ANISOTROPIC 2
|
|
|
|
#define MM_LOMETRIC 3
|
|
|
|
#define MM_HIMETRIC 4
|
|
|
|
#define MM_TWIPS 5
|
|
|
|
#define MM_POINTS 6
|
|
|
|
#define MM_METRIC 7
|
2004-10-07 12:42:11 -04:00
|
|
|
#endif
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2006-08-19 17:30:06 -04:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// coordinates transformations
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
inline wxCoord wxDCBase::DeviceToLogicalX(wxCoord x) const
|
|
|
|
{
|
|
|
|
return wxRound((x - m_deviceOriginX) / m_scaleX) * m_signX + m_logicalOriginX;
|
|
|
|
}
|
|
|
|
inline wxCoord wxDCBase::DeviceToLogicalY(wxCoord y) const
|
|
|
|
{
|
|
|
|
return wxRound((y - m_deviceOriginY) / m_scaleY) * m_signY + m_logicalOriginY;
|
|
|
|
}
|
|
|
|
inline wxCoord wxDCBase::DeviceToLogicalXRel(wxCoord x) const
|
|
|
|
{
|
|
|
|
return wxRound(x / m_scaleX);
|
|
|
|
}
|
|
|
|
inline wxCoord wxDCBase::DeviceToLogicalYRel(wxCoord y) const
|
|
|
|
{
|
|
|
|
return wxRound(y / m_scaleY);
|
|
|
|
}
|
|
|
|
inline wxCoord wxDCBase::LogicalToDeviceX(wxCoord x) const
|
|
|
|
{
|
|
|
|
return wxRound((x - m_logicalOriginX) * m_scaleX) * m_signX + m_deviceOriginX;
|
|
|
|
}
|
|
|
|
inline wxCoord wxDCBase::LogicalToDeviceY(wxCoord y) const
|
|
|
|
{
|
|
|
|
return wxRound((y - m_logicalOriginY) * m_scaleY) * m_signY + m_deviceOriginY;
|
|
|
|
}
|
|
|
|
inline wxCoord wxDCBase::LogicalToDeviceXRel(wxCoord x) const
|
|
|
|
{
|
|
|
|
return wxRound(x * m_scaleX);
|
|
|
|
}
|
|
|
|
inline wxCoord wxDCBase::LogicalToDeviceYRel(wxCoord y) const
|
|
|
|
{
|
|
|
|
return wxRound(y * m_scaleY);
|
|
|
|
}
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxDC
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2005-08-02 18:58:06 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxDC : public wxDCBase
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
1998-12-03 10:14:45 -05:00
|
|
|
public:
|
1999-05-13 17:21:04 -04:00
|
|
|
wxDC();
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxDC() { }
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2005-11-30 02:58:37 -05:00
|
|
|
#if wxUSE_PALETTE
|
1999-05-13 17:21:04 -04:00
|
|
|
void SetColourMap( const wxPalette& palette ) { SetPalette(palette); };
|
2005-11-30 02:58:37 -05:00
|
|
|
#endif // wxUSE_PALETTE
|
1998-12-09 12:30:17 -05:00
|
|
|
|
1999-05-13 17:21:04 -04:00
|
|
|
// Resolution in pixels per logical inch
|
|
|
|
virtual wxSize GetPPI() const;
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2004-12-16 16:24:45 -05:00
|
|
|
virtual bool StartDoc( const wxString& WXUNUSED(message) ) { return true; }
|
1999-05-13 17:21:04 -04:00
|
|
|
virtual void EndDoc() { }
|
|
|
|
virtual void StartPage() { }
|
|
|
|
virtual void EndPage() { }
|
1998-12-09 12:30:17 -05:00
|
|
|
|
1999-05-13 17:21:04 -04:00
|
|
|
virtual void SetMapMode( int mode );
|
|
|
|
virtual void SetUserScale( double x, double y );
|
|
|
|
virtual void SetLogicalScale( double x, double y );
|
1999-10-18 11:14:52 -04:00
|
|
|
virtual void SetLogicalOrigin( wxCoord x, wxCoord y );
|
|
|
|
virtual void SetDeviceOrigin( wxCoord x, wxCoord y );
|
1998-12-09 12:30:17 -05:00
|
|
|
|
1999-05-13 17:21:04 -04:00
|
|
|
virtual void SetAxisOrientation( bool xLeftRight, bool yBottomUp );
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2006-08-24 00:41:29 -04:00
|
|
|
virtual void ComputeScaleAndOrigin();
|
|
|
|
|
2006-10-09 12:39:34 -04:00
|
|
|
virtual GdkWindow* GetGDKWindow() const { return NULL; }
|
2006-10-12 02:23:52 -04:00
|
|
|
virtual wxBitmap GetSelectedBitmap() const { return wxNullBitmap; }
|
2006-10-09 12:39:34 -04:00
|
|
|
|
2006-08-19 17:30:06 -04:00
|
|
|
protected:
|
1999-05-13 17:21:04 -04:00
|
|
|
// implementation
|
|
|
|
// --------------
|
1998-12-09 12:30:17 -05:00
|
|
|
|
1999-10-18 11:14:52 -04:00
|
|
|
wxCoord XDEV2LOG(wxCoord x) const
|
1999-05-13 17:21:04 -04:00
|
|
|
{
|
2006-08-19 17:30:06 -04:00
|
|
|
return DeviceToLogicalX(x);
|
1999-05-13 17:21:04 -04:00
|
|
|
}
|
1999-10-18 11:14:52 -04:00
|
|
|
wxCoord XDEV2LOGREL(wxCoord x) const
|
1999-05-13 17:21:04 -04:00
|
|
|
{
|
2006-08-19 17:30:06 -04:00
|
|
|
return DeviceToLogicalXRel(x);
|
1999-05-13 17:21:04 -04:00
|
|
|
}
|
1999-10-18 11:14:52 -04:00
|
|
|
wxCoord YDEV2LOG(wxCoord y) const
|
1999-05-13 17:21:04 -04:00
|
|
|
{
|
2006-08-19 17:30:06 -04:00
|
|
|
return DeviceToLogicalY(y);
|
1999-05-13 17:21:04 -04:00
|
|
|
}
|
1999-10-18 11:14:52 -04:00
|
|
|
wxCoord YDEV2LOGREL(wxCoord y) const
|
1999-05-13 17:21:04 -04:00
|
|
|
{
|
2006-08-19 17:30:06 -04:00
|
|
|
return DeviceToLogicalYRel(y);
|
1999-05-13 17:21:04 -04:00
|
|
|
}
|
1999-10-18 11:14:52 -04:00
|
|
|
wxCoord XLOG2DEV(wxCoord x) const
|
1999-05-13 17:21:04 -04:00
|
|
|
{
|
2006-08-19 17:30:06 -04:00
|
|
|
return LogicalToDeviceX(x);
|
1999-05-13 17:21:04 -04:00
|
|
|
}
|
1999-10-18 11:14:52 -04:00
|
|
|
wxCoord XLOG2DEVREL(wxCoord x) const
|
1999-05-13 17:21:04 -04:00
|
|
|
{
|
2006-08-19 17:30:06 -04:00
|
|
|
return LogicalToDeviceXRel(x);
|
1999-05-13 17:21:04 -04:00
|
|
|
}
|
1999-10-18 11:14:52 -04:00
|
|
|
wxCoord YLOG2DEV(wxCoord y) const
|
1999-05-13 17:21:04 -04:00
|
|
|
{
|
2006-08-19 17:30:06 -04:00
|
|
|
return LogicalToDeviceY(y);
|
1999-05-13 17:21:04 -04:00
|
|
|
}
|
1999-10-18 11:14:52 -04:00
|
|
|
wxCoord YLOG2DEVREL(wxCoord y) const
|
1999-05-13 17:21:04 -04:00
|
|
|
{
|
2006-08-19 17:30:06 -04:00
|
|
|
return LogicalToDeviceYRel(y);
|
1999-05-13 17:21:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// base class pure virtuals implemented here
|
1999-10-18 11:14:52 -04:00
|
|
|
virtual void DoSetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
|
1999-05-13 17:21:04 -04:00
|
|
|
virtual void DoGetSizeMM(int* width, int* height) const;
|
1998-12-09 12:30:17 -05:00
|
|
|
|
1999-05-13 17:21:04 -04:00
|
|
|
public:
|
|
|
|
// GTK-specific member variables
|
1998-12-09 12:30:17 -05:00
|
|
|
|
1999-05-13 17:21:04 -04:00
|
|
|
// not sure what for, but what is a mm on a screen you don't know the size
|
|
|
|
// of?
|
|
|
|
double m_mm_to_pix_x,
|
|
|
|
m_mm_to_pix_y;
|
1998-12-09 12:30:17 -05:00
|
|
|
|
1999-05-13 17:21:04 -04:00
|
|
|
bool m_needComputeScaleX,
|
|
|
|
m_needComputeScaleY; // not yet used
|
1998-12-09 12:30:17 -05:00
|
|
|
|
2002-02-10 11:09:49 -05:00
|
|
|
|
1999-11-22 14:44:25 -05:00
|
|
|
private:
|
|
|
|
DECLARE_ABSTRACT_CLASS(wxDC)
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
2002-02-10 11:09:49 -05:00
|
|
|
// this must be defined when wxDC::Blit() honours the DC origian and needed to
|
|
|
|
// allow wxUniv code in univ/winuniv.cpp to work with versions of wxGTK
|
|
|
|
// 2.3.[23]
|
|
|
|
#ifndef wxHAS_WORKING_GTK_DC_BLIT
|
|
|
|
#define wxHAS_WORKING_GTK_DC_BLIT
|
|
|
|
#endif
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif // __GTKDCH__
|