]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/glcanvas.tex
Made MSW wxSpinCtrl emit UPDATE event when validating
[wxWidgets.git] / docs / latex / wx / glcanvas.tex
CommitLineData
8b089c5e
JS
1\section{\class{wxGLCanvas}}\label{wxglcanvas}
2
3wxGLCanvas is a class for displaying OpenGL graphics. There are
4wrappers for OpenGL on Windows, and GTK+ and Motif.
5
b7ea712c
RR
6There are two ways to use this class:
7
8For the older (before wx 2.7.x) and simpler method, create a wxGLCanvas window using one of the three
9constructors that implicitly create a rendering context, call \helpref{wxGLCanvas::SetCurrent}{wxglcanvassetcurrent}
8b089c5e
JS
10to direct normal OpenGL commands to the window, and then call \helpref{wxGLCanvas::SwapBuffers}{wxglcanvasswapbuffers}
11to show the OpenGL buffer on the window.
12
b7ea712c
RR
13For the newer (wx 2.7.x+) method, create a wxGLCanvas window using the constructor that does \emph{not} create an implicit rendering context,
14create an explicit instance of a \helpref{wxGLContext}{wxglcontext} that is initialized with the wxGLCanvas yourself,
15then use either \helpref{wxGLCanvas::SetCurrent}{wxglcanvassetcurrent_rc} with the instance of the \helpref{wxGLContext}{wxglcontext}
16or \helpref{wxGLContext::SetCurrent}{wxglcontextsetcurrent} with the instance of the \helpref{wxGLCanvas}{wxglcanvas}
17to bind the OpenGL state that is represented by the rendering context to the canvas, and then call
18\helpref{wxGLCanvas::SwapBuffers}{wxglcanvasswapbuffers} to swap the buffers of the OpenGL canvas and thus show your current output.
19
20To set up the attributes for the canvas (number of bits for the depth buffer,
dd27a3bd
JS
21number of bits for the stencil buffer and so on) you should set up the correct values of
22the {\it attribList} parameter. The values that should be set up and their meanings will be described below.
23
b7ea712c 24To switch on wxGLCanvas support on under Windows, edit setup.h and set
1162d0a2
VZ
25{\tt wxUSE\_GLCANVAS} to $1$. You may also need to have to add
26{\tt opengl32.lib} to the list of libraries your program is linked with. On
27Unix, pass {\tt --with-opengl} to configure to compile using OpenGL or Mesa.
8b089c5e
JS
28
29\wxheading{Derived from}
30
8b089c5e
JS
31\helpref{wxWindow}{wxwindow}\\
32\helpref{wxEvtHandler}{wxevthandler}\\
33\helpref{wxObject}{wxobject}
34
35\wxheading{Include files}
36
37<wx/glcanvas.h>
38
39\wxheading{Window styles}
40
41There are no specific window styles for this class.
42
43See also \helpref{window styles overview}{windowstyles}.
44
dd27a3bd
JS
45\wxheading{Constants}
46
47The generic GL implementation doesn't support many of these options, such as stereo, auxiliary buffers,
48alpha channel, and accum buffer. Other implementations may support them.
49
50\twocolwidtha{5cm}
51\begin{twocollist}\itemsep=0pt
52\twocolitem{\windowstyle{WX\_GL\_RGBA}}{Use true colour}
53\twocolitem{\windowstyle{WX\_GL\_BUFFER\_SIZE}}{Bits for buffer if not WX\_GL\_RGBA}
54\twocolitem{\windowstyle{WX\_GL\_LEVEL}}{0 for main buffer, >0 for overlay, <0 for underlay}
55\twocolitem{\windowstyle{WX\_GL\_DOUBLEBUFFER}}{Use doublebuffer}
56\twocolitem{\windowstyle{WX\_GL\_STEREO}}{Use stereoscopic display}
57\twocolitem{\windowstyle{WX\_GL\_AUX\_BUFFERS}}{Number of auxiliary buffers (not all implementation support this option)}
58\twocolitem{\windowstyle{WX\_GL\_MIN\_RED}}{Use red buffer with most bits (> MIN\_RED bits)}
59\twocolitem{\windowstyle{WX\_GL\_MIN\_GREEN}}{Use green buffer with most bits (> MIN\_GREEN bits) }
60\twocolitem{\windowstyle{WX\_GL\_MIN\_BLUE}}{Use blue buffer with most bits (> MIN\_BLUE bits) }
61\twocolitem{\windowstyle{WX\_GL\_MIN\_ALPHA}}{Use alpha buffer with most bits (> MIN\_ALPHA bits)}
62\twocolitem{\windowstyle{WX\_GL\_DEPTH\_SIZE}}{Bits for Z-buffer (0,16,32)}
63\twocolitem{\windowstyle{WX\_GL\_STENCIL\_SIZE}}{Bits for stencil buffer}
64\twocolitem{\windowstyle{WX\_GL\_MIN\_ACCUM\_RED}}{Use red accum buffer with most bits (> MIN\_ACCUM\_RED bits)}
65\twocolitem{\windowstyle{WX\_GL\_MIN\_ACCUM\_GREEN}}{Use green buffer with most bits (> MIN\_ACCUM\_GREEN bits)}
66\twocolitem{\windowstyle{WX\_GL\_MIN\_ACCUM\_BLUE}}{Use blue buffer with most bits (> MIN\_ACCUM\_BLUE bits)}
67\twocolitem{\windowstyle{WX\_GL\_MIN\_ACCUM\_ALPHA}}{Use blue buffer with most bits (> MIN\_ACCUM\_ALPHA bits)}
68\end{twocollist}
69
f2ac0386 70\wxheading{See also}
38fc80ae
RN
71
72\helpref{wxGLContext}{wxglcontext}
73
8b089c5e
JS
74\latexignore{\rtfignore{\wxheading{Members}}}
75
2d918775 76
8b089c5e
JS
77\membersection{wxGLCanvas::wxGLCanvas}\label{wxglcanvasconstr}
78
b636c599
MR
79\func{void}{wxGLCanvas}{\param{wxWindow* }{parent}, \param{wxWindowID}{ id = -1},
80 \param{const wxPoint\&}{ pos = wxDefaultPosition}, \param{const wxSize\&}{ size = wxDefaultSize},
81 \param{long}{ style=0}, \param{const wxString\& }{name="GLCanvas"},
8b089c5e
JS
82 \param{int*}{ attribList = 0}, \param{const wxPalette\&}{ palette = wxNullPalette}}
83
b636c599
MR
84\func{void}{wxGLCanvas}{\param{wxWindow* }{parent}, \param{wxGLContext* }{sharedContext}, \param{wxWindowID}{ id = -1},
85 \param{const wxPoint\&}{ pos = wxDefaultPosition}, \param{const wxSize\&}{ size = wxDefaultSize},
86 \param{long}{ style=0}, \param{const wxString\& }{name="GLCanvas"},
8b089c5e
JS
87 \param{int*}{ attribList = 0}, \param{const wxPalette\&}{ palette = wxNullPalette}}
88
b636c599
MR
89\func{void}{wxGLCanvas}{\param{wxWindow* }{parent}, \param{wxGLCanvas* }{sharedCanvas}, \param{wxWindowID}{ id = -1},
90 \param{const wxPoint\&}{ pos = wxDefaultPosition}, \param{const wxSize\&}{ size = wxDefaultSize},
91 \param{long}{ style=0}, \param{const wxString\& }{name="GLCanvas"},
8b089c5e
JS
92 \param{int*}{ attribList = 0}, \param{const wxPalette\&}{ palette = wxNullPalette}}
93
b7ea712c
RR
94\func{void}{wxGLCanvas}{\param{wxWindow* }{parent}, \param{wxWindowID}{ id = wxID_ANY},
95 \param{int*}{ attribList = 0},
96 \param{const wxPoint\&}{ pos = wxDefaultPosition}, \param{const wxSize\&}{ size = wxDefaultSize},
97 \param{long}{ style=0}, \param{const wxString\& }{name="GLCanvas"},
98 \param{const wxPalette\&}{ palette = wxNullPalette}}
99
100Constructors.
101The first three constructors implicitly create an instance of \helpref{wxGLContext}{wxglcontext}.
102The fourth constructur is identical to the first, except for the fact that it does \emph{not}
103create such an implicit rendering context, which means that you have to create an explicit instance
104of \helpref{wxGLContext}{wxglcontext} yourself (highly recommended for future compatibility with wxWidgets
105and the flexibility of your own program!).
106
107Note that if you used one of the first three constructors, \helpref{wxGLCanvas::GetContext}{wxglcanvasgetcontext}
108returns the pointer to the implicitly created instance, and the \helpref{wxGLCanvas::SetCurrent}{wxglcanvassetcurrent}
109method \emph{without} the parameter should be used.
110If however you used the fourth constructor, \helpref{wxGLCanvas::GetContext}{wxglcanvasgetcontext} always returns NULL
111and the \helpref{wxGLCanvas::SetCurrent}{wxglcanvassetcurrent_rc} method \emph{with} the parameter must be used!
8b089c5e 112
dd27a3bd
JS
113\docparam{parent}{Pointer to a parent window.}
114
b636c599
MR
115\docparam{sharedContext}{Context to share object resources with.}
116
117%TODO document sharedCanvas meaning
01168e95 118
dd27a3bd
JS
119\docparam{id}{Window identifier. If -1, will automatically create an identifier.}
120
fc2171bd 121\docparam{pos}{Window position. wxDefaultPosition is (-1, -1) which indicates that wxWidgets
dd27a3bd
JS
122should generate a default position for the window.}
123
fc2171bd 124\docparam{size}{Window size. wxDefaultSize is (-1, -1) which indicates that wxWidgets should
dd27a3bd
JS
125generate a default size for the window. If no suitable size can be found, the window will be sized to 20x20 pixels so that the window is visible but obviously not correctly sized.}
126
127\docparam{style}{Window style.}
128
129\docparam{name}{Window name.}
130
131\docparam{attribList}{Array of int. With this parameter you can set the device context attributes associated to this window.
132This array is zero-terminated: it should be set up with constants described in the table above.
133If a constant should be followed by a value, put it in the next array position.
134For example, the WX\_GL\_DEPTH\_SIZE should be followed by the value that indicates the number of
e119d049 135bits for the depth buffer, so:}
dd27a3bd
JS
136
137\begin{verbatim}
138attribList[index]= WX_GL_DEPTH_SIZE;
139attribList[index+1]=32;
140and so on.
141\end{verbatim}
dd27a3bd
JS
142
143\docparam{palette}{If the window has the palette, it should by pass this value.
144Note: palette and WX\_GL\_RGBA are mutually exclusive.}
145
2d918775 146
01168e95
RN
147\membersection{wxGLCanvas::GetContext}\label{wxglcanvasgetcontext}
148
149\func{wxGLContext*}{GetContext}{\void}
150
b7ea712c
RR
151Obtains the context that is associated with this canvas if one was implicitly created (by use of one of the first three constructors).
152Always returns NULL if the canvas was constructed with the fourth constructor.
01168e95 153
2d918775 154
8b089c5e
JS
155\membersection{wxGLCanvas::SetCurrent}\label{wxglcanvassetcurrent}
156
157\func{void}{SetCurrent}{\void}
158
b7ea712c
RR
159If this canvas was created with one of the first three constructors,
160a call to this method makes the implicit rendering context of this canvas current with this canvas,
161so that subsequent OpenGL calls modify the OpenGL state of the implicit rendering context.
162
163If this canvas was created with the fourth constructor, this method should not be called
164(use the SetCurrent method below with the parameter instead)!
8b089c5e 165
b7ea712c
RR
166Note that this function may only be called \emph{after} the window has been shown.
167
168
169\membersection{wxGLCanvas::SetCurrent}\label{wxglcanvassetcurrent_rc}
170
171\func{void}{SetCurrent}{ \param{const wxGLContext&}{ RC} }
172
173If this canvas was created with one of the first three constructors,
174this method should not be called (use the SetCurrent above without the parameter instead)!
175
176If this canvas was created with the fourth constructor, a call to this method
177makes the OpenGL state that is represented by the OpenGL rendering context { \it RC } current with this canvas,
178and if { \it win } is an object of type wxGLCanvas, the statements { \it win.SetCurrent(RC); } and { \it RC.SetCurrent(win); } are equivalent,
179see \helpref{wxGLContext::SetCurrent}{wxglcontextsetcurrent}.
180
181Note that this function may only be called \emph{after} the window has been shown.
2d918775
VZ
182
183
8b089c5e
JS
184\membersection{wxGLCanvas::SetColour}\label{wxglcanvassetcolour}
185
186\func{void}{SetColour}{\param{const char*}{ colour}}
187
fc2171bd 188Sets the current colour for this window, using the wxWidgets colour database to find a named colour.
8b089c5e 189
2d918775 190
8b089c5e
JS
191\membersection{wxGLCanvas::SwapBuffers}\label{wxglcanvasswapbuffers}
192
193\func{void}{SwapBuffers}{\void}
194
b7ea712c
RR
195Swaps the double-buffer of this window, making the back-buffer the front-buffer and vice versa,
196so that the output of the previous OpenGL commands is displayed on the window.