2008-04-30 05:34:15 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: dcgraph.h
|
|
|
|
// Purpose: interface of wxGCDC
|
|
|
|
// Author: wxWidgets team
|
2009-01-11 07:05:05 -05:00
|
|
|
// RCS-ID: $Id$
|
2010-07-13 09:29:13 -04:00
|
|
|
// Licence: wxWindows licence
|
2008-04-30 05:34:15 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
|
|
|
@class wxGCDC
|
|
|
|
|
|
|
|
wxGCDC is a device context that draws on a wxGraphicsContext.
|
|
|
|
|
|
|
|
@library{wxcore}
|
|
|
|
@category{dc}
|
|
|
|
|
|
|
|
@see wxDC, wxGraphicsContext
|
|
|
|
*/
|
|
|
|
|
|
|
|
class wxGCDC: public wxDC
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
Constructs a wxGCDC from a wxWindowDC.
|
|
|
|
*/
|
|
|
|
wxGCDC( const wxWindowDC& dc );
|
2009-01-11 07:05:05 -05:00
|
|
|
|
2008-04-30 05:34:15 -04:00
|
|
|
/**
|
|
|
|
Constructs a wxGCDC from a wxMemoryDC.
|
|
|
|
*/
|
|
|
|
wxGCDC( const wxMemoryDC& dc );
|
2009-01-11 07:05:05 -05:00
|
|
|
|
2008-04-30 05:34:15 -04:00
|
|
|
/**
|
|
|
|
Constructs a wxGCDC from a wxPrinterDC.
|
|
|
|
*/
|
|
|
|
wxGCDC( const wxPrinterDC& dc );
|
2009-01-11 07:05:05 -05:00
|
|
|
|
2008-04-30 05:34:15 -04:00
|
|
|
/**
|
|
|
|
Retrieves associated wxGraphicsContext
|
|
|
|
*/
|
|
|
|
wxGraphicsContext* GetGraphicsContext();
|
|
|
|
};
|
|
|
|
|