52class SoGuiGLWidget :
public SoGuiComponent
54#ifndef HIDDEN_FROM_DOC
55 SO_FIELDCONTAINER_HEADER( SoGuiGLWidget );
63 enum FloatColorBufferSize
68 FLOAT_16_COLOR_BUFFER = 0,
72 FLOAT_32_COLOR_BUFFER = 1
93 float getAntialiasingQuality()
const;
108 void setColorMapSize(
int size );
113 int getColorMapSize();
124 void setBorder(
int newValue );
140 void setDrawToFrontBufferEnable(
SbBool enableFlag );
145 SbBool isDrawToFrontBufferEnable()
const;
158 void setFloatingColorBuffer(
SbBool enable, FloatColorBufferSize size = FLOAT_16_COLOR_BUFFER );
163 void getFloatingColorBuffer(
SbBool& enable, FloatColorBufferSize& size );
168 static SbBool isFloatingColorBufferSupported();
175 void setGLModes(
int mode );
180 int getGLModes()
const;
207 void setOnFormatChangeCalback( FormatChangeCallback callback,
void* userData = NULL );
221 void setRemoteRendering(
bool enable );
226 bool isRemoteRendering()
const;
237 SbBool isStereoEnabled()
const;
243 bool saveSnapshot(
const SbString& filename,
bool override =
true );
246 void setDrawToFrontBuffer(
SbBool enable );
247 SbBool getDrawToFrontBuffer()
const;
250 void setColorMap(
unsigned long colorMap );
251 unsigned long getColorMap()
const;
259 void setGlxSize(
SbVec2s newSize );
260 const SbVec2s& getGlxSize()
const;
272 void setGLWidgetHandle(
const void* glWidgetHandle,
273 soGUIDependentCB swapBufferCB,
274 soGUIDependentCB bindCurrentCB,
275 soGUIDependentCB unbindCurrentCB,
276 soGUIWindowDependentCB getNormalCB,
277 soGUIWindowDependentCB getDisplayCB = NULL);
282 static soGUIDependentCB swapNormalBuffersCB;
283 static soGUIDependentCB bindNormalCurrentCB;
284 static soGUIDependentCB unbindNormalCurrentCB;
285 static soGUIWindowDependentCB getNormalWindowCB;
286 static soGUIWindowDependentCB getCurrentDisplayCB;
287 void * m_glWidgetHandle;
289 virtual void* getNormalWindow() {
return getNormalWindowCB(m_glWidgetHandle); }
290 virtual void* getDisplay() {
return getCurrentDisplayCB(m_glWidgetHandle); }
292 virtual SbBool bindNormalContext();
293 virtual SbBool unbindNormalContext();
304 virtual ~SoGuiGLWidget();
321 FormatChangeCallback m_formatChangeCallback;
322 void* m_formatChangeCallbackUserData;
324 unsigned long m_colorMap;
327 SbBool m_drawToFrontBuffer;
328 SbBool m_enableDrawToFrontBuffer;
330 unsigned long m_transparentPixel;
332 bool m_isRemoteRendering;