Open Inventor Release 2025.1.0
 
Loading...
Searching...
No Matches
SoQtGLWidget.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 : Alain Dumesny (MMM yyyy)
22** Modified by : David Mott (MMM yyyy)
23**=======================================================================*/
24
25
26#ifndef _SO_QT_GLWIDGET_
27#define _SO_QT_GLWIDGET_
28
29#include <Inventor/Qt/SoQtComponent.h>
30
31#include <Inventor/Qt/OivQtCompat.h>
32#include <Inventor/devices/SoGLFormat.h>
33
34#include <Inventor/Gui/SoGuiGLWidget.h>
35#include <Inventor/nodes/SoFullSceneAntialiasing.h>
36
37#include <Qt>
38
39// FSAA
40typedef std::set<int, std::less<int> > SoSamplesList;
41
42#if !defined(_WIN32)
43class SoQtRemoteRenderInfo;
44#endif // _WIN32
45
46#include <QPointer>
47#include <QSurfaceFormat>
48
49/*
50 * Defines used when specifying the glModes flag to the constructor.
51 * (used instead of the glx.h defines which do overlap)
52 */
53#define SO_GLX_RGB (1<<0)
54#define SO_GLX_DOUBLE (1<<1)
55#define SO_GLX_ZBUFFER (1<<2)
56#define SO_GLX_STEREO (1<<4)
57#define SO_GLX_STENCIL (1<<5)
58
59class QVBoxLayout;
60class QCursor;
61class SoGLContext;
62
63class SoQGLContextProxy;
64class SoQGLWidgetProxy;
65class QGLFormat;
66class QGLContext;
67class QOpenGLWindow;
68
90class SoQtGLWidget : public SoQtComponent
91{
92 Q_OBJECT
93
94public:
95
98 {
102 FLOAT_16_COLOR_BUFFER = SoGuiGLWidget::FLOAT_16_COLOR_BUFFER,
106 FLOAT_32_COLOR_BUFFER = SoGuiGLWidget::FLOAT_32_COLOR_BUFFER
107 };
108
113
117 void setColorMapSize( int size );
118
128 virtual WindowQt getNormalWindow();
129
138 QOpenGLContext* getQOpenGLContext();
139
149
158 QWidget* getNormalWidget();
159
163 QSurfaceFormat getQSurfaceFormat();
164
176 virtual void setNormalVisual( QSurfaceFormat vis );
177
189 virtual void setNormalVisual( const SoGLFormat& format );
190
194 virtual void show();
195
199 virtual void hide();
200
206 virtual void setDoubleBuffer( SbBool onOrOff );
207
211 SbBool isDoubleBuffer() { return m_guiGLWidget->isDoubleBuffer(); }
212
216 void setBorder( SbBool onOrOff );
217
221 int getBorderSize() { return m_guiGLWidget->getBorderSize(); }
222
226 SbBool isBorder() const { return m_guiGLWidget->isBorder(); }
227
233
237 SbBool isDrawToFrontBufferEnable() const { return m_guiGLWidget->isDrawToFrontBufferEnable(); }
238
244
249
254
262 virtual void setCursor( const QCursor& newCursor );
263
267 QCursor getCursor() const;
268
273
277 void setAntialiasing(SoAntialiasingParameters* advancedParameters);
278
283
288
293
307
312
317
320 bool saveSnapshot( const SbString& filename, bool overwrite = true );
321
322private:
323#if !defined(_WIN32) && !defined(__APPLE__) //UNIX
324 // WARNING : Workaround only available for Amira/Avizo
325 // These methods should be removed when the GraphicConfigs will be implemented for Qt.
326 void setAttribList( const int* newAttribList );
327 int* getAttribList() const;
328#endif // UNIX
329
330 SoGuiGLWidget* getGuiGLWidget() const;
331
332 // Return the internal QWindow used to do the OpenGL rendering
333 QWindow* getInternalQWindow();
334
335 // These variables are public for retro compatibility purposes only.
336 // Do not use them directly but call their accessors instead;
337 SbBool drawToFrontBuffer;
338
339 // These two function are used by SoGui, to call the system dependent version of
340 // these functions. data is a SoWinGLWidget handle.
341 static SbBool swapNormalBuffersCB( void *data );
342 static SbBool bindNormalCurrentCB( void *data );
343 static SbBool unbindNormalCurrentCB( void *data );
344 static void* getNormalWindowCB( void *data );
345 static void* getCurrentDisplayCB(void *data);
346
352 float getPixelRatio();
353
358 void updateInternalOpenGLWindow( bool immediatUpdate );
359
360 private:
361
362 // Starting with version 3.0, subclasses should no longer make direct
363 // calls to glXMakeCurrent, glXSwapBuffers and glFlush.
364 // For RemoteRendering we need to know when MakeCurrent is called
365 // (marking the beginning of a frame) and when SwapBuffers or glFlush
366 // is called (marking the end of a frame).
367 // Subclasses should always use these generic methods.
368 void flush();
369
370#if !defined(__APPLE__) && !defined(_WIN32) //UNIX
371 // Pbuffers are a limited resource. By default use of Pbuffers for
372 // remote rendering is enabled, but it might make sense to disable
373 // it for less important windows (like UI components drawn with OpenGL).
374 // Must be called after creating the widget but before it is realized.
375 void setRemoteRenderPbufferEnable( SbBool enable )
376 { m_remoteRenderPbufferEnable = enable; }
377
378 SbBool isRemoteRenderPbufferEnable() const
379 { return m_remoteRenderPbufferEnable; }
380
381 float getLowResPercent() {return m_lowResPercent;}
382#endif
383
384private:
385
386 SoQtGLWidget( QWidget* parent = NULL,
387 const char* name = NULL,
388 SbBool buildInsideParent = TRUE,
389 int glModes = SO_GLX_RGB,
390 SbBool buildNow = TRUE,
391 SbBool sync = TRUE );
392
393 SoQtGLWidget( QWidget* parent,
394 const char* name,
395 SbBool buildInsideParent,
396 int glModes,
397 SbBool buildNow,
398 SbBool sync,
399 SoGuiGLWidget* guiGLWidget );
400
401#if defined(__linux__)
402 SoQtGLWidget( QWidget* parent,
403 const char* name,
404 SbBool buildInsideParent,
405 int glModes,
406 SbBool buildNow,
407 SbBool sync,
408 SbBool connectionType );
409
410 SoQtGLWidget( QWidget* parent,
411 const char* name,
412 SbBool buildInsideParent,
413 int glModes,
414 SbBool buildNow,
415 SbBool sync,
416 SbBool connectionType,
417 SoGuiGLWidget* guiGLWidget );
418#endif
419
420 virtual ~SoQtGLWidget();
421
423 // EVENTS
424
425 virtual void resize( int w, int h );
426
427 virtual void closeEvent( QCloseEvent* );
428
429 virtual void focusInEvent( QFocusEvent* );
430
431 virtual void focusOutEvent( QFocusEvent* );
432
433 virtual void showEvent( QShowEvent* );
434
435 virtual void hideEvent( QHideEvent* );
436
437 virtual void moveEvent( QMoveEvent* );
438
439 virtual void keyPressEvent( QKeyEvent* );
440
441 virtual void keyReleaseEvent( QKeyEvent* );
442
443 virtual void mouseMoveEvent( QMouseEvent* );
444
445 virtual void mousePressEvent( QMouseEvent* );
446
447 virtual void mouseReleaseEvent( QMouseEvent* );
448
449 virtual void mouseDoubleClickEvent( QMouseEvent* );
450
451 virtual void wheelEvent( QWheelEvent* );
452
453 bool eventFilter( QObject* object, QEvent* event );
454
455 // subclasses can use this routine as the event handler for any
456 // devices they wish to get input from.
457 static void eventHandler( QWidget* w, SoQtGLWidget* glw, QEvent* qe, bool* b );
458
459 // This function is overloaded by the render area to set the window element
460 virtual void onFocusEvent(SbBool hasFocus);
461
463
464
465 // subclasses MUST redefine redraw() to draw in the normal bit planes.
466 // processEvent() should be defined if X events are being
467 // received (see eventMask).
468 virtual void redraw() = 0;
469
470 virtual void processEvent( QEvent* anyevent );
471
472 void performPaint();
473
474 // subclasses can redefine these to do something useful.
475 // initGraphic() is called whenever a GLX window gets created
476 // sizeChanged() is called whenever the window changes size
477 // widgetChanged() is called whenever the widget is changed (i.e. at
478 // initialization or after switching from single->double buffer)
479 virtual void initGraphic();
480 virtual void sizeChanged( const SbVec2s& size );
481 virtual void posChanged( const SbVec2i32&, const SbVec2i32& ) {};
482 virtual void widgetChanged( QWidget* w );
483
484 // sets/gets the size of the glx widget(s) in pixels - Note this size could be
485 // different from the SoWinComponent::getSize() method which return
486 // the size of the component, not necessary the same as the glx widget
487 // window (because of extra stuff like the decoration in the viewers or pixel ratio).
488 void setGlxSize( SbVec2s newSize );
489 const SbVec2s& getGlxSize() const { return m_guiGLWidget->getGlxSize(); }
490
491 // set/get stereo buffering visual. This routine (like setDoubleBuffer)
492 // can be called interactively, althought slower since a new window
493 // with the needed visual is always created on the fly.
494 void setStereoBuffer( SbBool flag );
495 SbBool isStereoBuffer() { return (m_guiGLWidget->getGLModes() & SO_GLX_STEREO); }
496
497 // returns TRUE if main window is in rgb mode (FALSE if color index)
498 SbBool isRGBMode() { return (m_guiGLWidget->getGLModes() & SO_GLX_RGB); }
499
500#if defined(__linux__)
501 void allocCell( Display* display, Colormap cmap, XColorPointer colorcells,
502 int ncolors, int colorMapSize );
503#endif
504
505 SbBool waitForExpose;
506
507 QWidget* buildWidget( QWidget* parent );
508 void changeCursor( QCursor newCursor );
509 QWidget* getGlxMgrWidget() { return m_containerWidget; }
510
511 virtual void onExpose();
512
513 // ----- RemoteRender additions (v3.0) -----
514 // FSAA
515 SbBool m_initialFsaaValueChanged;
516
517#if !defined(_WIN32) && !defined(__APPLE__)
518 enum RemoteRenderEnabled // Possible values for remote rendering
519 {
520 OFF, // Never use remote rendering
521 ON, // Always try to use remote rendering
522 AUTO // Use if remote does not support GLX (default)
523 };
524 RemoteRenderEnabled m_remoteRenderMode; // See possible values above
525 SoQtRemoteRenderInfo* m_remoteRenderInfo; // Opaque type for internal state
526 SbBool m_remoteRenderPbufferEnable; // Can we use a Pbuffer?
527 SbBool m_lowResRender; //Is Low Resolution Render Mode in use?
528 float m_lowResLowPercent; //lowest value of m_lowResPercent
529 float m_lowResHighPercent; //highest value of m_lowResPercent
530 float m_lowResPercent; //percent of the window sent thru the network
531
532 void remoteRenderInit(); // Init member vars
533 void remoteRenderCleanup(); // Free allocated resources
534 void remoteRenderGinitCB( QWidget* ); // Create pixmap and other stuff
535 GLXContext remoteRenderLowResRenderGinitCB( QWidget* ); //Same for LowResRender configuration : return Remote Context
536 void remoteRenderResizeCB(); // Resize pixmap
537 void remoteRenderSendImage(); // Send rendered image to remote display
538 void remoteRenderSendLowResRender(); // send low Resolution image to remote display
539 SbGlContextHelper::VisualInfo remoteRenderChooseVisual(); // Find visual for remote window
540 void remoteRenderFatalError( const char* methodName, const char* message );
541
542 void setLowResLowPercent( float percent ) { m_lowResLowPercent = percent; }
543 void setLowResHighPercent( float percent ) { m_lowResHighPercent = percent; }
544 float getLowResLowPercent() const { return m_lowResLowPercent; }
545 float getLowResHighPercent() const { return m_lowResHighPercent;}
546
547 virtual void setLowResPercent( float newLowres ) { m_lowResPercent = newLowres; }
548#endif
549
550private:
551
552 void constructorCommon( SbBool buildNow, SbBool connectionType );
553 SoGuiGLWidget* m_guiGLWidget; //Implementation class for SoXxGLWidget
554
555 QPointer<QWidget> m_containerWidget;
556 QPointer<QVBoxLayout> m_containerLayout;
557 QPointer<QWidget> m_internalWidget;
558 QPointer<QWindow> m_internalWindow;
559
560 SoQGLContextProxy* m_context;
561
562 // Flags used when the stereo is set from environment variables.
563 bool m_stereoActiveDelayed;
564 bool m_stereoBufferFlag;
565
566#if defined(__linux__)
567 SbBool directConnection;
568#endif
569
570 QCursor currentCursor;
571 int* attribList;
572
573 SbBool windowResized;
574
575 // set of windows, color maps, etc...
576 void buildNormalGLXWidget( SoGLFormat* format = NULL );
577
578 virtual void initializeGL();
579
580 void destroyNormalWindows();
581 void destroyGLXWidget( SbBool normalCall );
582
583 void destroyNormalWidget( SbBool normalCall );
584
585 void notifyProxyDestruction( QWindow* window );
586
587 friend class SoQGLWidgetProxy;
588
589 // callbacks from glx widget
590 static void ginitCB( QWidget* w, SoQtGLWidget* glw, void* v );
591 static void exposeCB( QWidget* w, SoQtGLWidget* glw, void* v );
592 static void resizeCB( QWidget* w, SoQtGLWidget* glw, void* v );
593
594 static SbBool onGLFormatChangeCallback( SoGLFormat& format, void* userData );
595
596 SbBool remoteRenderGinitCB_pbuffer( QWidget* );
597
598 // Members used to synchronize first rendering (in case of OIV_SYNC_QTWIDGET_FIRSTRENDER == TRUE)
599 bool m_firstRenderSync;
600 static std::map<SoQtGLWidget*, bool> s_blackRendering;
601 static std::map<SoQtGLWidget*, bool> s_widgetRendered;
602
603private Q_SLOTS:
604 void destroyedQtContext();
605};
606
607#endif // _SO_QT_GLWIDGET_
608
Class for smart character strings.
Definition SbString.h:202
<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 context m...
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> OpenGL pixel for...
Definition SoGLFormat.h:55
virtual void setCursor(const QCursor &newCursor)
Sets the current cursor.
virtual void setNormalVisual(const SoGLFormat &format)
Sets the visual/pixel format for the normal window.
SbBool isDrawToFrontBufferEnable() const
Queries drawing to the front buffer.
QSurfaceFormat getQSurfaceFormat()
Returns the QSurfaceFormat currently used.
virtual SbBool bindNormalContext()
Makes the normal rendering context the current context.
float getAntialiasingQuality() const
Returns the antialiasing quality set using the setAntialiasing(float,AntialiasingMode) method.
void setBorder(SbBool onOrOff)
Included for portability only.
static SbBool isFloatingColorBufferSupported()
Returns TRUE if floating point rendering is available.
SoGLContext * getNormalSoContext()
Gets the current context, which is needed as an argument to glXMakeCurrent() (on Xt) or SbGlContextHe...
virtual SbBool unbindNormalContext()
unbind the current context (previously bind with bindNormalContext );
int getBorderSize()
Included for portability only.
virtual void setNormalVisual(QSurfaceFormat vis)
Sets the visual/pixel format for the normal window.
SbBool isBorder() const
Included for portability only.
QWidget * getNormalWidget()
Gets the current normal widget.
bool saveSnapshot(const SbString &filename, bool overwrite=true)
Save a snapshot of the current image displayed in the viewer.
void setColorMapSize(int size)
Sets the color map size.
void setAntialiasing(SoAntialiasingParameters *advancedParameters)
Enable (or disable) antialiasing with specific parameters.
void getFloatingColorBuffer(SbBool &enable, FloatColorBufferSize &size)
Returns TRUE if floating point rendering is used and its precision.
QOpenGLContext * getQOpenGLContext()
Gets the current context, which is needed as an argument to glXMakeCurrent() (on Xt) or SbGlContextHe...
int getColorMapSize()
Returns the color map size.
void setFloatingColorBuffer(SbBool enable, FloatColorBufferSize size=FLOAT_16_COLOR_BUFFER)
Enables/disables floating point rendering using 16- or 32-bit components.
SoAntialiasingParameters * getAntialiasingParameters() const
Returns the antialiasing parameters set using the setAntialiasing(SoAntialiasingParameters*) method.
SoSceneManager::AntialiasingMode getAntialiasingMode() const
Returns the antialiasing mode set using the setAntialiasing(float,AntialiasingMode) method.
virtual SbBool swapNormalBuffers()
Swaps the normal front and back buffers.
QCursor getCursor() const
Returns the current cursor.
friend class SoQGLWidgetProxy
virtual void setDoubleBuffer(SbBool onOrOff)
Routine that dynamically changes between single and double buffering.
virtual void show()
This shows the component.
SbBool isDoubleBuffer()
Returns whether double buffering is on or off.
virtual void hide()
This hides the component.
void setDrawToFrontBufferEnable(SbBool enableFlag)
Sets drawing to the front buffer.
virtual WindowQt getNormalWindow()
Gets the normal GL window (window system identifier of the widget), which is needed as an argument to...
void setAntialiasing(const float quality, const SoSceneManager::AntialiasingMode mode=SoSceneManager::AUTO)
Enable (or disable) antialiasing with specified quality and mode.
FloatColorBufferSize
FloatColorBufferSize.
@ FLOAT_16_COLOR_BUFFER
16-bit rendering per component.
@ FLOAT_32_COLOR_BUFFER
32-bit rendering per component.
AntialiasingMode
Enum which indicates the desired antialiasing algorithm.
@ AUTO
This is the default mode for antialiasing.
int SbBool
Boolean type.
Definition SbBase.h:87
void * XColorPointer
Definition SoQtDef.h:135