]>
Commit | Line | Data |
---|---|---|
f43af7fe SC |
1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
2 | %% Name: graphicsobject.tex | |
3 | %% Purpose: wxGraphicsObject class documentation | |
4 | %% Author: Stefan Csomor | |
5 | %% Modified by: | |
6 | %% Created: 08.06.2004 | |
7 | %% RCS-ID: $Id$ | |
8 | %% Copyright: (c) Stefan Csomor | |
9 | %% License: wxWindows license | |
10 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
11 | ||
12 | \section{\class{wxGraphicsObject}}\label{wxgraphicsobject} | |
13 | ||
14 | This class is the superclass of native graphics objects like pens etc. It allows reference counting. Not instantiated by user code. | |
15 | ||
16 | \wxheading{Derived from} | |
17 | ||
18 | \helpref{wxObject}{wxobject} | |
19 | ||
20 | \wxheading{Include files} | |
21 | ||
22 | <wx/graphics.h> | |
23 | ||
a7af285d VZ |
24 | \wxheading{Library} |
25 | ||
26 | \helpref{wxCore}{librarieslist} | |
27 | ||
f43af7fe SC |
28 | \wxheading{See also} |
29 | ||
a352e39f | 30 | \helpref{wxGraphicsBrush}{wxgraphicsbrush}, \helpref{wxGraphicsPen}{wxgraphicspen}, \helpref{wxGraphicsMatrix}{wxgraphicsmatrix}, \helpref{wxGraphicsPath}{wxgraphicspath} |
f43af7fe SC |
31 | |
32 | \latexignore{\rtfignore{\wxheading{Members}}} | |
33 | ||
34 | \membersection{wxGraphicsObject::GetRenderer}\label{wxgraphicsobjectgetrenderer} | |
35 | ||
36 | \constfunc{wxGraphicsRenderer*}{GetRenderer}{\void} | |
37 | ||
38 | Returns the renderer that was used to create this instance, or NULL if it has not been initialized yet | |
39 | ||
40 | \membersection{wxGraphicsObject::IsNull}\label{wxgraphicsobjectisnull} | |
41 | ||
42 | \constfunc{bool}{IsNull}{\void} | |
43 | ||
44 | Is this object valid (false) or still empty (true)? | |
45 |