Open Inventor Release 2025.1.0
 
Loading...
Searching...
No Matches
SoQtRenderArea.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 : Author(s) (MMM yyyy)
22** Modified by : David Mott (MMM yyyy)
23** Modified by : Alain Dumesny (MMM yyyy)
24**=======================================================================*/
25
26
27#ifndef _SO_QT_RENDERAREA_
28#define _SO_QT_RENDERAREA_
29
30#include <Inventor/Qt/OivQtCompat.h>
31#include <Inventor/Qt/SoQtGLWidget.h>
32
33#include <Inventor/SbColor.h>
34#include <Inventor/SoSceneManager.h>
35#include <Inventor/actions/SoGLRenderAction.h>
36#include <Inventor/nodes/SoCamera.h> // stereo settings
37#include <Inventor/SbElapsedTime.h>
38
39#include <Inventor/Gui/SoGuiRenderArea.h>
40
41class SoSelection;
42class SoQtDevice;
43class SoNode;
44class SoQtMouse;
45class SoQtKeyboard;
46class SoQtRenderArea;
48class SoTimerSensor;
50
56typedef SbBool SoQtRenderAreaEventCB( void* userData, QEvent* anyevent );
57
63typedef SbBool SoQtRenderAreaRenderCB( void* userData, SoQtRenderArea* rendArea );
64
103class SoQtRenderArea : public SoQtGLWidget
104{
105 Q_OBJECT
106
107public:
112 SoQtRenderArea( QWidget* parent = NULL,
113 const char* name = NULL,
114 SbBool buildInsideParent = TRUE,
115 SbBool getMouseInput = TRUE,
116 SbBool getKeyboardInput = TRUE );
121
125 virtual void setSceneGraph( SoNode* newScene );
126
131
138
145
153 void setBackgroundColor( const SbColor& c );
154
158 SbColor getBackgroundColor() const { return m_guiRenderArea->getBackgroundColor(); }
159
164 void setBackgroundIndex( int index ) { m_guiRenderArea->setBackgroundIndex( index ); }
165
169 int getBackgroundIndex() const { return m_guiRenderArea->getBackgroundIndex(); }
170
174 void setViewportRegion( const SbViewportRegion& newRegion )
175 { m_guiRenderArea->setViewportRegion( newRegion ); }
176
181 { return m_guiRenderArea->getViewportRegion(); }
182
193
199 { return m_guiRenderArea->getTransparencyType(); }
200
210 SbBool fastEditDelayedObjects = FALSE);
211
216 { return m_guiRenderArea->getFastEditSavePolicy(); }
217
234
239
247 void setClearBeforeRender( SbBool trueOrFalse, SbBool zbTrueOrFalse = TRUE )
248 { m_guiRenderArea->setClearBeforeRender( trueOrFalse, zbTrueOrFalse ); }
249
253 SbBool isClearBeforeRender() const { return m_guiRenderArea->isClearBeforeRender(); }
254
259 SbBool isClearZBufferBeforeRender() const { return m_guiRenderArea->isClearZBufferBeforeRender(); }
260
268 void setAutoRedraw( SbBool trueOrFalse );
269
274 SbBool isAutoRedraw() const { return m_guiRenderArea->isAutoRedraw(); }
275
279 void setRedrawPriority( uint32_t priority ) { m_guiRenderArea->setRedrawPriority( priority ); }
280
284 uint32_t getRedrawPriority() const { return m_guiRenderArea->getRedrawPriority(); }
285
290
295 void render() { redraw(); }
296
302
314
326 void setEventCallback( SoQtRenderAreaEventCB *fcn, void* userData = NULL );
327
335
342 SoSceneManager* getSceneManager() const { return m_guiRenderArea->getSceneManager(); }
343
354
358 SoGLRenderAction* getGLRenderAction() const { return m_guiRenderArea->getGLRenderAction(); }
359
365
381 void setPostRenderCallback( SoQtRenderAreaRenderCB *fcn, void* userData = NULL )
382 { appPostRenderCB = fcn; appPostRenderData = userData; }
383
388 SoQtRenderAreaRenderCB *getPostRenderCallback( const void* &userData ) const
389 { userData = appPostRenderData; return appPostRenderCB; }
390
394 void sendEvent( QEvent* anEvent );
395
401 virtual void setMPEGRecorder( SoMPEGRenderer* recorder )
402 { m_guiRenderArea->setMPEGRecorder( recorder ); }
403
408 { return m_guiRenderArea->getMPEGRecorder(); }
409
410private:
411 SoQtRenderArea( QWidget* parent,
412 const char* name,
413 SbBool buildInsideParent,
414 SbBool getMouseInput,
415 SbBool getKeyboardInput,
416 SoGuiAlgoViewers* guiAlgos );
417
418 SoQtRenderArea( QWidget* parent,
419 const char* name,
420 SbBool buildInsideParent,
421 SbBool getMouseInput,
422 SbBool getKeyboardInput,
423 SbBool buildNow,
424 SbBool sync,
425 SoGuiAlgoViewers* guiAlgos );
426
427 SoQtRenderArea( QWidget* parent,
428 const char* name,
429 SbBool buildInsideParent,
430 SbBool getMouseInput,
431 SbBool getKeyboardInput,
432 SbBool buildNow,
433 SoGuiAlgoViewers* guiAlgos );
434
438 SoGuiAlgoViewers* getGuiAlgoViewers() const { return (SoGuiAlgoViewers*)m_guiRenderArea; }
439
440private:
441 SoGuiRenderArea* getGuiRenderArea() const;
442
443 void setStereoMode( SoCamera::StereoMode stMode );
444 void setStereoElement();
445 virtual SbBool isInteractive() const;
446 void redrawCleanUp(); //replace some goto in the previous function
447
448 SoQtRenderArea( QWidget* parent,
449 const char* name,
450 SbBool buildInsideParent,
451 SbBool getMouseInput,
452 SbBool getKeyboardInput,
453 SbBool buildNow,
454 SbBool sync );
455
456 //These members shouldn't be used directly, instead call their accessors
457 float stereoBalance, stereoOffset;
458 SbBool stereoAbsoluteAdjustments;
459 SoCamera::StereoMode stereoMode;
460 SbBool stereoReversed;
461
462 private:
463
464 //
465 // This constructor takes a boolean whether to build the widget now.
466 // Subclasses can pass FALSE, then call SoQtRenderArea::buildWidget()
467 // when they are ready for it to be built.
468
469 SoQtRenderArea( QWidget* parent,
470 const char* name,
471 SbBool buildInsideParent,
472 SbBool getMouseInput,
473 SbBool getKeyboardInput,
474 SbBool buildNow );
475
476 //Constructors provided to avoid multiple instance of implementation objects
477 //Equivalent to the public constructor
478 SoQtRenderArea( QWidget* parent,
479 const char* name,
480 SbBool buildInsideParent,
481 SbBool getMouseInput,
482 SbBool getKeyboardInput,
483 SoGuiRenderArea* guiRenderArea );
484
485 SoQtRenderArea( QWidget* parent,
486 const char* name,
487 SbBool buildInsideParent,
488 SbBool getMouseInput,
489 SbBool getKeyboardInput,
490 SbBool buildNow,
491 SbBool sync,
492 SoGuiRenderArea* guiRenderArea );
493
494 SoQtRenderArea( QWidget* parent,
495 const char* name,
496 SbBool buildInsideParent,
497 SbBool getMouseInput,
498 SbBool getKeyboardInput,
499 SbBool buildNow,
500 SoGuiRenderArea* guiRenderArea );
501
502 // redraw() calls actualRedraw(), followed by swapbuffers if necessary.
503 // actualRedraw will have the scene manager render the scene. Rendering
504 // is broken up into two routines like this so that subclasses can
505 // redefine or simply add to rendering (in actualRedraw) without having
506 // to worry about being visible, seting up the window or
507 // single/double buffer swapping.
508 //
509 virtual void redraw();
510 virtual void actualRedraw();
511
512 //
513 // Redefine these to do Inventor-specific things
514 //
515 virtual void processEvent( QEvent* anyevent );
516 virtual void initGraphic();
517 virtual void sizeChanged( const SbVec2s& );
518 virtual void posChanged( const SbVec2i32&, const SbVec2i32& );
519 virtual void widgetChanged( QWidget* w );
520
521 QWidget* buildWidget(QWidget* parent);
522
523 // redefine these
524 virtual SbString getDefaultWidgetName() const;
525 virtual SbString getDefaultTitle() const;
526 virtual SbString getDefaultIconTitle() const;
527
528 // subclasses have access to the device list for event processing
529 SbPList* m_deviceList; // list of devices
530
531 // static callbacks
532 static void renderCB( void* v, SoSceneManager* sm );
533
534 // application event callbacks variables
535 SoQtRenderAreaEventCB *defaultAppEventHandler;
536 void *defaultAppEventHandlerData;
537 SoQtRenderAreaEventCB *appEventHandler;
538 void *appEventHandlerData;
539
540 // invoke the application event callback - returns what the app cb returns
541 SbBool invokeAppCB( QEvent* anyevent );
542 SbBool processInventorEvent( QEvent* anyevent );
543 const SoEvent* translateAnyEvent( QEvent* anyevent );
544
545 // application pre/post render callback variables
546 SoQtRenderAreaRenderCB *appPostRenderCB;
547 void *appPostRenderData;
548
549 // This function is overloaded to set the window element
550 void onFocusEvent(SbBool hasFocus);
551
552private:
553
554 // these make rendering/redrawing happen
555#if defined(__linux__)
556 XColorPointer m_mapColors; // saved colors
557 int m_mapColorNum; // number of saved colors
558#endif
559
560 SoQtMouse* m_mouseDevice;
561 SoQtKeyboard* m_keybdDevice;
562 void reinstallDevices( QWidget* newWidget );
563
564 static void selectionChangeCB( void* userData, SoSelection* s );
565 QWidget* m_deviceWidget;
566
567 SbBool m_firstEvent;
568
569 void activate(); // connects the sensor
570 void deactivate(); // disconnects the sensor
571
572 // this is called by constructors
573 void constructorCommon( SbBool getMouseInput,
574 SbBool getKeyboardInput,
575 SbBool buildNow );
576 // this is called by constructorCommon
577 void constructorCommon2( SbBool getMouseInput,
578 SbBool getKeyboardInput,
579 SbBool buildNow );
580
581 SbVec2i32 getWindowPosition();
582
583 QPoint m_oldPos;
584 QSize m_oldSize;
585 QSize m_minimumSize;
586 QSize m_maximumSize;
587
588 SoGuiRenderArea* m_guiRenderArea; // Implementation class for SoXxRendeArea
589
590 // this is the default implementation of the hasRenderAbortCallback passed to the scenemanager
591 // at construction. Implementation is common to all created renderArea.
592 // If an event is received to one renderArea, all renderArea of the process will consider it as
593 // a candidate for abortion (only implemented on Windows)
594 static SbBool s_abortRenderCallback(SoAction*,void*);
595
596 bool m_firstStdRedraw;
597 bool m_firstConnectedRedraw;
598 SoTimerSensor* m_viewerUpdaterSensor;
599 static void viewerUpdaterCB( void*, SoSensor* );
600 void updateFirstFrame();
601
602 SoAntialiasingParameters* m_accumulationParameters;
603
604 private Q_SLOTS:
605 void visibilityChangeCB( SbBool visible );
606
607};
608
609
610#endif // _SO_QT_RENDERAREA_
611
612
Color vector class.
Definition SbColor.h:82
Class encapsulating information about an OpenGL context: a handle on an OpenGL context and its id.
Class for representing a viewport.
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Antialiasing par...
StereoMode
Stereo mode.
Definition SoCamera.h:607
Renders a scene graph using Open Inventor's Render Engine.
FastEditSavePolicy
Fast edit traversal types.
InvalidateCacheMode
Invalidate cache mode.
TransparencyType
Transparency rendering algorithm.
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Common algorithm...
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Base class for g...
Abstract base class for all database nodes.
Definition SoNode.h:145
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Abstract base cl...
Definition SoQtDevice.h:102
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Translates and r...
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Translates and r...
Definition SoQtMouse.h:58
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Component for re...
SbBool isClearZBufferBeforeRender() const
Queries whether the depth buffer (sometimes called the Z buffer) will be cleared before rendering sta...
void setClearBeforeRender(SbBool trueOrFalse, SbBool zbTrueOrFalse=TRUE)
Enables/prevents window clearing from happening before a rendering starts (default is clear TRUE).
void setRedrawPriority(uint32_t priority)
Sets the priority of the redraw sensor.
void setGLRenderAction(SoGLRenderAction *ra)
Sets the GL render action to use.
void scheduleRedraw()
Schedules a redraw to happen sometime soon (as opposed to immediately).
void setBackgroundColor(const SbColor &c)
Sets the background color for this window.
void setViewportRegion(const SbViewportRegion &newRegion)
Sets viewport region to use for rendering.
SoGLRenderAction::FastEditSavePolicy getFastEditSavePolicy() const
Returns fast editing save policy used when rendering.
void setPostRenderCallback(SoQtRenderAreaRenderCB *fcn, void *userData=NULL)
Specifies a function to be called after the Open Inventor render traversal and immediately before the...
void sendEvent(QEvent *anEvent)
Sends the event to be processed by the renderArea.
SoSceneManager * getSceneManager() const
Gets the normal scene manager.
virtual SoMPEGRenderer * getMPEGRecorder() const
Returns the recorder used for MPEG encoding.
void setTransparencyType(SoGLRenderAction::TransparencyType type)
Sets the algorithm for rendering transparent objects.
void setBackgroundIndex(int index)
Sets the window background color when in color index mode.
int getBackgroundIndex() const
Gets the window background color when in color index mode.
SoQtRenderArea(QWidget *parent=NULL, const char *name=NULL, SbBool buildInsideParent=TRUE, SbBool getMouseInput=TRUE, SbBool getKeyboardInput=TRUE)
Constructor which is passed arguments which tell it whether to register the mouse and keyboard device...
void setSceneManager(SoSceneManager *sm)
Sets the normal scene manager.
SbBool isAutoRedraw() const
Queries whether the render area will automatically redraw whenever something in the scene graph chang...
void registerDevice(SoQtDevice *d)
Registers interest in devices.
virtual void setMPEGRecorder(SoMPEGRenderer *recorder)
Sets the recorder used for MPEG encoding.
SoGLRenderAction::TransparencyType getTransparencyType() const
Gets the algorithm for rendering transparent objects.
void redrawOnSelectionChange(SoSelection *s)
Call this convenience method to have this render area redraw whenever the selection list changes in t...
virtual SoNode * getSceneGraph()
Gets the scene graph to be rendered in this component's window.
const SbViewportRegion & getViewportRegion() const
Gets current viewport region to use for rendering.
void unregisterDevice(SoQtDevice *d)
Unregisters interest in devices.
void setFastEditSavePolicy(SoGLRenderAction::FastEditSavePolicy policy, SbBool fastEditDelayedObjects=FALSE)
Sets fast editing save policy to use when rendering.
void setInvalidateCacheMode(SoGLRenderAction::InvalidateCacheMode icm)
Enables or disables the invalidation of render caches.
SoGLRenderAction * getGLRenderAction() const
Gets the current GL render action.
SoGLRenderAction::InvalidateCacheMode getInvalidateCacheMode()
Returns the current cache invalidation mode.
~SoQtRenderArea()
Destructor.
SoQtRenderAreaRenderCB * getPostRenderCallback(const void *&userData) const
Gets the post-render callback function and data.
const SbGLShareContext getShareContext()
Returns the information needed to make OpenGL render contexts share OpenGL objects,...
SbBool SoQtRenderAreaEventCB(void *userData, QEvent *anyevent)
External event callback functions registered with the render area should be of this type.
void render()
Calling this forces the render area to be redrawn now.
SbBool isClearBeforeRender() const
Queries whether the window will be cleared before rendering starts.
virtual void setSceneGraph(SoNode *newScene)
Sets the scene graph to be rendered in this component's window.
SbBool SoQtRenderAreaRenderCB(void *userData, SoQtRenderArea *rendArea)
External post rendering callback functions registered with the render area should be of this type.
static uint32_t getDefaultRedrawPriority()
Gets the default priority number of the redraw sensor.
void setAutoRedraw(SbBool trueOrFalse)
The render area will automatically redraw whenever something in the scene graph changes.
uint32_t getRedrawPriority() const
Gets the priority of the redraw sensor.
SbColor getBackgroundColor() const
Gets the background color for this window.
void setEventCallback(SoQtRenderAreaEventCB *fcn, void *userData=NULL)
Windows messages which occur in the render area window are either directly handled by the viewer (whe...
Manages scene graph rendering and event handling.
static uint32_t getDefaultRedrawPriority()
Gets the default priority of the redraw sensor.
Manages a list of selected objects.
Sensor that triggers repeatedly at regular intervals.
int SbBool
Boolean type.
Definition SbBase.h:87
void * XColorPointer
Definition SoQtDef.h:135