]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/dcgraph.h
Fix typo in wxStack<T> documentation.
[wxWidgets.git] / interface / wx / dcgraph.h
CommitLineData
6d99a337
RR
1/////////////////////////////////////////////////////////////////////////////
2// Name: dcgraph.h
3// Purpose: interface of wxGCDC
4// Author: wxWidgets team
d0bbcd06 5// RCS-ID: $Id$
526954c5 6// Licence: wxWindows licence
6d99a337
RR
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10 @class wxGCDC
6d99a337
RR
11
12 wxGCDC is a device context that draws on a wxGraphicsContext.
13
14 @library{wxcore}
15 @category{dc}
16
17 @see wxDC, wxGraphicsContext
18*/
19
20class wxGCDC: public wxDC
21{
22public:
23 /**
24 Constructs a wxGCDC from a wxWindowDC.
25 */
26 wxGCDC( const wxWindowDC& dc );
d0bbcd06 27
6d99a337
RR
28 /**
29 Constructs a wxGCDC from a wxMemoryDC.
30 */
31 wxGCDC( const wxMemoryDC& dc );
d0bbcd06 32
6d99a337
RR
33 /**
34 Constructs a wxGCDC from a wxPrinterDC.
35 */
36 wxGCDC( const wxPrinterDC& dc );
d0bbcd06 37
6d99a337
RR
38 /**
39 Retrieves associated wxGraphicsContext
40 */
41 wxGraphicsContext* GetGraphicsContext();
42};
43