]>
git.saurik.com Git - wxWidgets.git/blob - interface/dcgraph.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxGCDC
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 wxGCDC is a device context that draws on a wxGraphicsContext.
18 @see wxDC, wxGraphicsContext
21 class wxGCDC
: public wxDC
25 Constructs a wxGCDC from a wxWindowDC.
27 wxGCDC( const wxWindowDC
& dc
);
30 Constructs a wxGCDC from a wxMemoryDC.
32 wxGCDC( const wxMemoryDC
& dc
);
35 Constructs a wxGCDC from a wxPrinterDC.
37 wxGCDC( const wxPrinterDC
& dc
);
40 Retrieves associated wxGraphicsContext
42 wxGraphicsContext
* GetGraphicsContext();