Open Inventor Release 2025.1.0
 
Loading...
Searching...
No Matches
SoGuiGLWidget.h
1/*=======================================================================
2 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), ***
3 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. ***
4 *** ***
5 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS ***
6 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR ***
7 *** WRITTEN AUTHORIZATION OF FEI S.A.S. ***
8 *** ***
9 *** RESTRICTED RIGHTS LEGEND ***
10 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS ***
11 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN ***
12 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT ***
13 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN ***
14 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. ***
15 *** ***
16 *** COPYRIGHT (C) 1996-2024 BY FEI S.A.S, ***
17 *** BORDEAUX, FRANCE ***
18 *** ALL RIGHTS RESERVED ***
19**=======================================================================*/
20/*=======================================================================
21** Author : T.MEHAMLI (Jun 2007)
22**=======================================================================*/
23
24#ifndef SO_GUI_GL_WIDGET_H
25#define SO_GUI_GL_WIDGET_H
26
28//
29// Class: SoGuiGLWidget
30//
31// SoXXGLWidgets implementation class
32//
33//
35
36#include <Inventor/antialiasing/SiAntialiasingEventListener.h>
37#include <Inventor/Gui/SoGuiComponent.h>
38#include <Inventor/fields/SoSFInt32.h>
39#include <Inventor/fields/SoSFFloat.h>
40#include <Inventor/devices/SoGLFormat.h>
41#include <Inventor/nodes/SoFullSceneAntialiasing.h>
42#include <Inventor/image/SbRasterImage.h>
43
45
46#ifndef HIDDEN_FROM_DOC
47typedef SbBool (*soGUIDependentCB)(void* data);
48typedef void* (*soGUIWindowDependentCB)(void* data);
49#endif
50
51
52class SoGuiGLWidget : public SoGuiComponent
53{
54#ifndef HIDDEN_FROM_DOC
55 SO_FIELDCONTAINER_HEADER( SoGuiGLWidget );
56#endif
57
58private:
59
60 SoSFFieldContainer gcTemplate;
61 SoSFBool focus;
62
63 enum FloatColorBufferSize
64 {
68 FLOAT_16_COLOR_BUFFER = 0,
72 FLOAT_32_COLOR_BUFFER = 1
73 };
74
78 SoGuiGLWidget();
79
83 void setAntialiasing(const float quality, const SoSceneManager::AntialiasingMode mode = SoSceneManager::AUTO);
84
88 void setAntialiasing(SoAntialiasingParameters* advancedParameters);
89
93 float getAntialiasingQuality() const;
94
98 SoSceneManager::AntialiasingMode getAntialiasingMode() const;
99
103 SoAntialiasingParameters* getAntialiasingParameters() const;
104
108 void setColorMapSize( int size );
109
113 int getColorMapSize();
114
118 SbBool isDoubleBuffer();
119
124 void setBorder( int newValue );
125
129 int getBorderSize();
130
134 SbBool isBorder() const;
135
140 void setDrawToFrontBufferEnable( SbBool enableFlag );
141
145 SbBool isDrawToFrontBufferEnable() const;
146
158 void setFloatingColorBuffer( SbBool enable, FloatColorBufferSize size = FLOAT_16_COLOR_BUFFER );
159
163 void getFloatingColorBuffer( SbBool& enable, FloatColorBufferSize& size );
164
168 static SbBool isFloatingColorBufferSupported();
169
175 void setGLModes( int mode );
176
180 int getGLModes() const;
181
189 SbBool setGLFormat( const SoGLFormat& format );
190
194 const SoGLFormat& getGLFormat() const;
195
201 typedef SbBool (*FormatChangeCallback)( SoGLFormat&, void* userData );
202
207 void setOnFormatChangeCalback( FormatChangeCallback callback, void* userData = NULL );
208
216 virtual SbBool setDoubleBuffer( SbBool enable );
217
221 void setRemoteRendering( bool enable );
222
226 bool isRemoteRendering() const;
227
232 SbBool setStereoEnabled( SbBool enable );
233
237 SbBool isStereoEnabled() const;
238
241 // Note: It would make more sense to copydoc *from* this class, but
242 // Doxygen won't do that because this class is not currently documented... :-(
243 bool saveSnapshot( const SbString& filename, bool override = true );
244
245 // Accessor and mutator for the member m_drawToFrontBuffer
246 void setDrawToFrontBuffer( SbBool enable );
247 SbBool getDrawToFrontBuffer() const;
248
249 // Accessor and mutator for the member m_colorMap
250 void setColorMap( unsigned long colorMap );
251 unsigned long getColorMap() const;
252
253 // ----------------------- Extension usage -----------------------------------
254
255 // sets/gets the size of the glx widget(s) - Note this size could be
256 // different from the SoXtComponent::getSize() method which return
257 // the size of the component, not necessary the same as the glx widget
258 // window (because of extra stuff like the decoration in the viewers).
259 void setGlxSize( SbVec2s newSize );
260 const SbVec2s& getGlxSize() const;
261
262 SbBool isStereoBuffer();
263
264 // returns TRUE if main window is in rgb mode (FALSE if color index)
265 SbBool isRGBMode();
266
267 // return the graphic config template from field gcTemplate.
268 void setGraphicConfigTemplate( SoGLGraphicConfigTemplate* gc );
269 SoGLGraphicConfigTemplate* getGraphicConfigTemplate();
270
271 // setup system dependent GLWidget handles.
272 void setGLWidgetHandle( const void* glWidgetHandle,
273 soGUIDependentCB swapBufferCB,
274 soGUIDependentCB bindCurrentCB,
275 soGUIDependentCB unbindCurrentCB,
276 soGUIWindowDependentCB getNormalCB,
277 soGUIWindowDependentCB getDisplayCB = NULL);
278
279 // These call are internal public to let IvTune to access them.
280 // handle on GLWidget handle/function comming from system independent GUI
281 // initialized through setGLWidgetHandle;
282 static soGUIDependentCB swapNormalBuffersCB;
283 static soGUIDependentCB bindNormalCurrentCB;
284 static soGUIDependentCB unbindNormalCurrentCB;
285 static soGUIWindowDependentCB getNormalWindowCB;
286 static soGUIWindowDependentCB getCurrentDisplayCB;
287 void * m_glWidgetHandle;
288
289 virtual void* getNormalWindow() { return getNormalWindowCB(m_glWidgetHandle); }
290 virtual void* getDisplay() { return getCurrentDisplayCB(m_glWidgetHandle); }
291
292 virtual SbBool bindNormalContext();
293 virtual SbBool unbindNormalContext();
294
295 bool onAntialiasingSwitch(const SoSceneManager::AntialiasingMode& mode, const float& quality, const SoAntialiasingParameters* parameters);
296
297
298
299private:
300
304 virtual ~SoGuiGLWidget();
305
306 SiAntialiasingEventListener* getAntialiasingListener() const;
307
308// ----------------------- Private usage -------------------------------------
309
310private:
311
312 // Used by deprecated Antialiasing API
313 SoAntialiasingParameters* m_fsaaParameters;
314
315 // local vars
316 SbVec2s m_glxSize; // size of glx widgets which is always up to date
317 int m_glModes;
318 int m_borderSize;
319
320 SoGLFormat m_format;
321 FormatChangeCallback m_formatChangeCallback;
322 void* m_formatChangeCallbackUserData;
323
324 unsigned long m_colorMap; // set when color index is used
325 int m_colorMapSize;
326
327 SbBool m_drawToFrontBuffer; // used by RA to draw new scenes to front buffer
328 SbBool m_enableDrawToFrontBuffer;
329
330 unsigned long m_transparentPixel;
331
332 bool m_isRemoteRendering;
333
334 int m_snapshotFBOId;
335
336 SoGLGraphicConfigTemplate* m_gcTemplate;
337
338 SiAntialiasingEventListener* m_antialiasingListener;
339};
340
341
342#endif // SO_GUI_GL_WIDGET_H
343
344
Class for smart character strings.
Definition SbString.h:202
2D vector class.
Definition SbVec.h:700
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Antialiasing cha...
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Antialiasing par...
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> OpenGL pixel for...
Definition SoGLFormat.h:55
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Defines an OpenG...
Field containing a single Boolean value.
Definition SoSFBool.h:79
AntialiasingMode
Enum which indicates the desired antialiasing algorithm.
@ AUTO
This is the default mode for antialiasing.
int SbBool
Boolean type.
Definition SbBase.h:87