Open Inventor Release 2025.1.0
 
Loading...
Searching...
No Matches
SoXtRenderArea.h
1/*=======================================================================
2 * Copyright 1991-1996, Silicon Graphics, Inc.
3 * ALL RIGHTS RESERVED
4 *
5 * UNPUBLISHED -- Rights reserved under the copyright laws of the United
6 * States. Use of a copyright notice is precautionary only and does not
7 * imply publication or disclosure.
8 *
9 * U.S. GOVERNMENT RESTRICTED RIGHTS LEGEND:
10 * Use, duplication or disclosure by the Government is subject to restrictions
11 * as set forth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights
12 * in Technical Data and Computer Software clause at DFARS 252.227-7013 and/or
13 * in similar or successor clauses in the FAR, or the DOD or NASA FAR
14 * Supplement. Contractor/manufacturer is Silicon Graphics, Inc.,
15 * 2011 N. Shoreline Blvd. Mountain View, CA 94039-7311.
16 *
17 * THE CONTENT OF THIS WORK CONTAINS CONFIDENTIAL AND PROPRIETARY
18 * INFORMATION OF SILICON GRAPHICS, INC. ANY DUPLICATION, MODIFICATION,
19 * DISTRIBUTION, OR DISCLOSURE IN ANY FORM, IN WHOLE, OR IN PART, IS STRICTLY
20 * PROHIBITED WITHOUT THE PRIOR EXPRESS WRITTEN PERMISSION OF SILICON
21 * GRAPHICS, INC.
22**=======================================================================*/
23/*=======================================================================
24** Author : Author(s) (MMM yyyy)
25** Modified by : David Mott (MMM yyyy)
26** Modified by : Alain Dumesny (MMM yyyy)
27**=======================================================================*/
28/*=======================================================================
29 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), ***
30 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. ***
31 *** ***
32 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS ***
33 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR ***
34 *** WRITTEN AUTHORIZATION OF FEI S.A.S. ***
35 *** ***
36 *** RESTRICTED RIGHTS LEGEND ***
37 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS ***
38 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN ***
39 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT ***
40 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN ***
41 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. ***
42 *** ***
43 *** COPYRIGHT (C) 1996-2024 BY FEI S.A.S, ***
44 *** BORDEAUX, FRANCE ***
45 *** ALL RIGHTS RESERVED ***
46**=======================================================================*/
47/*=======================================================================
48** Modified by : VSG (MMM YYYY)
49**=======================================================================*/
50
51#ifdef SOQT
52# include <Inventor/Qt/SoQtRenderArea.h>
53#elif defined _WIN32
54# include <Inventor/Win/SoWinRenderArea.h>
55#else
56
57#ifndef _SO_XT_RENDER_AREA_H_
58#define _SO_XT_RENDER_AREA_H_
59
60#include <climits>
61
62#include <Inventor/SbColor.h>
63#include <Inventor/sensors/SoNodeSensor.h>
64#include <Inventor/SoSceneManager.h>
65#include <Inventor/Xt/SoXtGLWidget.h>
66#include <Inventor/actions/SoGLRenderAction.h>
67
68#include <Inventor/nodes/SoCamera.h> // stereo settings
69#include <Inventor/nodes/SoFullSceneAntialiasing.h>
70#include <Inventor/SbElapsedTime.h>
71
72#include <Inventor/Gui/SoGuiRenderArea.h>
73
75class SoXtDevice;
76class SoNode;
77class SoXtMouse;
78class SoXtKeyboard;
79class SoSelection;
80class SbConfig;
81class SoXtRenderArea;
82class ScTracking;
85
86// callback function prototypes
88typedef SbBool SoXtRenderAreaEventCB( void* userData, XAnyEvent* anyevent );
90typedef SbBool SoXtRenderAreaRenderCB( void* userData, SoXtRenderArea* rendArea );
91
93//
94// Class: SoXtRenderArea
95//
96// Class to do Inventor rendering in a GLX Motif widget.
97//
99
139class SoXtRenderArea : public SoXtGLWidget
140{
141 public:
142
147 SoXtRenderArea( SoWidget parent = NULL,
148 const char* name = NULL,
149 SbBool buildInsideParent = TRUE,
150 SbBool getMouseInput = TRUE,
151 SbBool getKeyboardInput = TRUE );
156
160 virtual void setSceneGraph( SoNode* newScene );
161
166
172 void registerDevice( SoXtDevice* d );
173
179 void unregisterDevice( SoXtDevice* d );
180
187 void setBackgroundColor( const SbColor& c );
188
192 SbColor getBackgroundColor() const { return m_guiRenderArea->getBackgroundColor(); }
193
198 void setBackgroundIndex( int index ) { m_guiRenderArea->setBackgroundIndex( index ); }
199
203 int getBackgroundIndex() const { return m_guiRenderArea->getBackgroundIndex(); }
204
209 void setColorMap( int startIndex, int num, const SbColor* colors );
210
214 void setViewportRegion( const SbViewportRegion& newRegion )
215 { m_guiRenderArea->setViewportRegion( newRegion ); }
216
221 { return m_guiRenderArea->getViewportRegion(); }
222
233
239 { return m_guiRenderArea->getTransparencyType(); }
240
250 SbBool fastEditDelayedObjects = FALSE);
251
256 { return m_guiRenderArea->getFastEditSavePolicy(); }
257
274
279
287 void setClearBeforeRender( SbBool trueOrFalse, SbBool zbTrueOrFalse = TRUE )
288 { m_guiRenderArea->setClearBeforeRender( trueOrFalse, zbTrueOrFalse ); }
289
293 SbBool isClearBeforeRender() const { return m_guiRenderArea->isClearBeforeRender(); }
294
299 SbBool isClearZBufferBeforeRender() const { return m_guiRenderArea->isClearZBufferBeforeRender(); }
300
305 void setAutoRedraw( SbBool trueOrFalse );
306
311 SbBool isAutoRedraw() const { return m_guiRenderArea->isAutoRedraw(); }
312
316 void setRedrawPriority( uint32_t priority ) { m_guiRenderArea->setRedrawPriority(priority); }
317
321 uint32_t getRedrawPriority() const { return m_guiRenderArea->getRedrawPriority(); }
322
327
332 void render() { redraw(); }
333
339
351
363 void setEventCallback( SoXtRenderAreaEventCB* fcn, void* userData = NULL );
364
372
379 SoSceneManager* getSceneManager() const { return m_guiRenderArea->getSceneManager(); }
380
391
395 SoGLRenderAction* getGLRenderAction() const { return m_guiRenderArea->getGLRenderAction(); }
396
402
418 void setPostRenderCallback( SoXtRenderAreaRenderCB* fcn, void* userData = NULL )
419 { appPostRenderCB = fcn; appPostRenderData = userData; }
420
425 SoXtRenderAreaRenderCB* getPostRenderCallback( const void* &userData ) const
426 { userData = appPostRenderData; return appPostRenderCB; }
427
431 void sendEvent( XAnyEvent* anEvent );
432
438 virtual void setMPEGRecorder( SoMPEGRenderer* recorder )
439 { m_guiRenderArea->setMPEGRecorder( recorder ); }
440
445 { return m_guiRenderArea->getMPEGRecorder(); }
446
447#if 1
448SoDEPRECATED
465 void setAntialiasing( SbBool smoothing, int numPasses );
467SoDEPRECATED
472 void getAntialiasing( SbBool& smoothing, int& numPasses ) const;
473
474#endif
475
476private:
477
478 SoXtRenderArea( SoWidget parent,
479 const char* name,
480 SbBool buildInsideParent,
481 SbBool getMouseInput,
482 SbBool getKeyboardInput,
483 SoGuiAlgoViewers* guiAlgos );
484
485 SoXtRenderArea( SoWidget parent,
486 const char* name,
487 SbBool buildInsideParent,
488 SbBool getMouseInput,
489 SbBool getKeyboardInput,
490 SbBool buildNow,
491 SbBool sync,
492 SoGuiAlgoViewers* guiAlgos );
493
494 SoXtRenderArea( SoWidget parent,
495 const char* name,
496 SbBool buildInsideParent,
497 SbBool getMouseInput,
498 SbBool getKeyboardInput,
499 SbBool buildNow,
500 SoGuiAlgoViewers* guiAlgos );
504 SoGuiAlgoViewers* getGuiAlgoViewers() const { return (SoGuiAlgoViewers*)m_guiRenderArea; }
505
506 private:
507 void setStereoMode( SoCamera::StereoMode stMode );
508 void setStereoElement();
509
510 SoGuiRenderArea* getGuiRenderArea() const;
511
512 virtual SbBool isInteractive() const;
513
514 SoXtRenderArea();
515
516 SoXtRenderArea( SoWidget parent,
517 const char* name,
518 SbBool buildInsideParent,
519 SbBool getMouseInput,
520 SbBool getKeyboardInput,
521 SbBool buildNow,
522 SbBool sync );
523
524 // Retro compatibility only.
525 // These members shouldn't be used directly, instead call their accessors
526 float stereoBalance, stereoOffset;
527 SbBool stereoAbsoluteAdjustments;
528 SoCamera::StereoMode stereoMode;
529 SbBool stereoReversed;
530
531 private:
532
533 //
534 // This constructor takes a boolean whether to build the widget now.
535 // Subclasses can pass FALSE, then call SoXtRenderArea::buildWidget()
536 // when they are ready for it to be built.
537
538 SoXtRenderArea( SoWidget parent,
539 const char* name,
540 SbBool buildInsideParent,
541 SbBool getMouseInput,
542 SbBool getKeyboardInput,
543 SbBool buildNow );
544
545 //Constructors provided to avoid multiple instance of implementation objects
546 //Equivalent to the public constructor
547 SoXtRenderArea( SoWidget parent,
548 const char* name,
549 SbBool buildInsideParent,
550 SbBool getMouseInput,
551 SbBool getKeyboardInput,
552 SoGuiRenderArea* guiRenderArea );
553
554 SoXtRenderArea( SoWidget parent,
555 const char* name,
556 SbBool buildInsideParent,
557 SbBool getMouseInput,
558 SbBool getKeyboardInput,
559 SbBool buildNow,
560 SbBool sync,
561 SoGuiRenderArea* guiRenderArea );
562
563 SoXtRenderArea( SoWidget parent,
564 const char* name,
565 SbBool buildInsideParent,
566 SbBool getMouseInput,
567 SbBool getKeyboardInput,
568 SbBool buildNow,
569 SoGuiRenderArea* guiRenderArea );
570
571 //
572 // redraw() calls actualRedraw(), followed by swapbuffers if necessary.
573 // actualRedraw will have the scene manager render the scene. Rendering
574 // is broken up into two routines like this so that subclasses can
575 // redefine or simply add to rendering (in actualRedraw) without having
576 // to worry about being visible, seting up the window or
577 // single/double buffer swapping.
578 //
579 virtual void redraw();
580 virtual void actualRedraw();
581
582 //
583 // Redefine these to do Inventor-specific things
584 //
585 virtual void processEvent( XAnyEvent* anyevent );
586 virtual void initGraphic();
587 virtual void sizeChanged( const SbVec2s& );
588 virtual void posChanged( const SbVec2i32&, const SbVec2i32& );
589 virtual void widgetChanged( SoWidget w );
590
591 SoWidget buildWidget( SoWidget parent );
592
593 // redefine these
594 virtual SbString getDefaultWidgetName() const;
595 virtual SbString getDefaultTitle() const;
596 virtual SbString getDefaultIconTitle() const;
597
598 // subclasses have access to the device list for event processing
599 SbPList* m_deviceList; // list of devices
600
601 // application event callbacks variables
602 SoXtRenderAreaEventCB* defaultAppEventHandler;
603 void* defaultAppEventHandlerData;
604 SoXtRenderAreaEventCB* appEventHandler;
605 void* appEventHandlerData;
606
607 // invoke the application event callback - returns what the app cb returns
608 SbBool invokeAppCB( XAnyEvent* anyevent );
609 SbBool processInventorEvent( XAnyEvent* anyevent );
610 const SoEvent* translateAnyEvent( XAnyEvent* anyevent );
611
612 // application pre/post render callback variables
613 SoXtRenderAreaRenderCB* appPostRenderCB;
614 void* appPostRenderData;
615
616private:
617 // these make rendering/redrawing happen
618 XColor* m_mapColors; // saved colors
619 int m_mapColorNum; // number of saved colors
620
621 SoXtMouse* m_mouseDevice;
622 SoXtKeyboard* m_keybdDevice;
623 void reinstallDevices( SoWidget newWidget );
624
625 static void selectionChangeCB( void* p, SoSelection* s );
626 SoWidget m_deviceWidget;
627
628 // static callbacks
629 SbBool m_firstEvent; // used to init the action SoWindowElement
630 static void windowEventCB( SoWidget w, SoXtRenderArea* p, XAnyEvent* xe, Boolean* b );
631 static void renderCB( void* v, SoSceneManager* sm );
632
633 static void visibilityChangeCB( void* pt, SbBool visible );
634 void activate(); // connects the sensor
635 void deactivate(); // disconnects the sensor
636
637 // this is called by both constructors
638 void constructorCommon( SbBool getMouseInput, SbBool getKeyboardInput, SbBool buildNow );
639
640 // this is called by constructorCommon
641 void constructorCommon2( SbBool getMouseInput,
642 SbBool getKeyboardInput,
643 SbBool buildNow );
644
645 SbVec2i32 getWindowPosition() { return SbVec2i32( INT_MAX, INT_MAX ); }
646
647 SbConfig* m_vrConfig;
648 SbBool m_forceRedraw;
649 SbBool m_forceSyncRedraw;
650
651 ScTracking* m_tracking;
652
653 SoGuiRenderArea* m_guiRenderArea; // Implementation class for SoXxRendeArea
654
655 // this is the default implementation of the hasRenderAbortCallback passed to the scenemanager
656 // at construction. Implementation is common to all created renderArea.
657 // If an event is received to one renderArea, all renderArea of the process will consider it as
658 // a candidate for abortion (only implemented on Windows)
659 static SbBool s_abortRenderCallback(SoAction*,void*);
660
661 SoAntialiasingParameters* m_accumulationParameters;
662
663 bool m_firstStdRedraw;
664 bool m_firstConnectedRedraw;
665 SoTimerSensor* m_viewerUpdaterSensor;
666 static void viewerUpdaterCB( void*, SoSensor* );
667 void updateFirstFrame();
668};
669
670
671#endif /* _SO_XT_RENDER_AREA_H_ */
672
673#endif
674
Color vector class.
Definition SbColor.h:82
Class encapsulating information about an OpenGL context: a handle on an OpenGL context and its id.
List of generic (void *) pointers.
Definition SbPList.h:77
Class for smart character strings.
Definition SbString.h:202
2D vector class.
Definition SbVec.h:517
2D vector class.
Definition SbVec.h:700
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
Base class for all events.
Definition SoEvent.h:116
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...
Allows nodes in a graph to receive input events.
<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
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.
void setAntialiasing(const float quality, const SoSceneManager::AntialiasingMode mode=SoSceneManager::AUTO)
Enable (or disable) antialiasing with specified quality and mode.
SbColor getBackgroundColor() const
Gets the background color for this window.
SoDEPRECATED void getAntialiasing(SbBool &smoothing, int &numPasses) const
Gets the antialiasing used for rendering.
virtual void setSceneGraph(SoNode *newScene)
Sets the scene graph to be rendered in this component's window.
SoGLRenderAction::InvalidateCacheMode getInvalidateCacheMode()
Returns the current cache invalidation mode.
SbBool isClearBeforeRender() const
Queries whether the window will be cleared before rendering starts.
void setClearBeforeRender(SbBool trueOrFalse, SbBool zbTrueOrFalse=TRUE)
Enables/prevents window clearing from happening before a rendering starts (default is clear TRUE).
virtual void setMPEGRecorder(SoMPEGRenderer *recorder)
Sets the recorder used for MPEG encoding.
void render()
Calling this forces the render area to be redrawn now.
uint32_t getRedrawPriority() const
Gets the priority of the redraw sensor.
void sendEvent(XAnyEvent *anEvent)
Sends the event to be processed by the renderArea.
SoSceneManager * getSceneManager() const
Gets the normal scene manager.
void registerDevice(SoXtDevice *d)
Registers interest in devices.
const SbGLShareContext getShareContext()
Returns the information needed to make OpenGL render contexts share OpenGL objects,...
SbBool isClearZBufferBeforeRender() const
Queries whether the depth buffer (sometimes called the Z buffer) will be cleared before rendering sta...
SoGLRenderAction::TransparencyType getTransparencyType() const
Gets the algorithm for rendering transparent objects.
void setFastEditSavePolicy(SoGLRenderAction::FastEditSavePolicy policy, SbBool fastEditDelayedObjects=FALSE)
Sets fast editing save policy to use when rendering.
~SoXtRenderArea()
Destructor.
void setInvalidateCacheMode(SoGLRenderAction::InvalidateCacheMode icm)
Enables or disables the invalidation of render caches.
const SbViewportRegion & getViewportRegion() const
Gets current viewport region to use for rendering.
void setBackgroundIndex(int index)
Sets the window background color when in color index mode.
virtual SoNode * getSceneGraph()
Gets the scene graph to be rendered in this component's window.
SoDEPRECATED void setAntialiasing(SbBool smoothing, int numPasses)
Enables smoothing and/or multi-pass antialiasing for rendering.
virtual SoMPEGRenderer * getMPEGRecorder() const
Returns the recorder used for the MPEG encoding.
void setAutoRedraw(SbBool trueOrFalse)
The render area will automatically redraw whenever something in the scene graph changes.
void setRedrawPriority(uint32_t priority)
Sets the priority of the redraw sensor.
void unregisterDevice(SoXtDevice *d)
Unregisters interest in devices.
SoXtRenderArea(SoWidget 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 setBackgroundColor(const SbColor &c)
Sets the background color for this window.
SoXtRenderAreaRenderCB * getPostRenderCallback(const void *&userData) const
Gets the post-render callback function and data.
SoGLRenderAction::FastEditSavePolicy getFastEditSavePolicy() const
Returns fast editing save policy used when rendering.
SoGLRenderAction * getGLRenderAction() const
Gets the current GL render action.
void setSceneManager(SoSceneManager *sm)
Sets the normal scene manager.
void setTransparencyType(SoGLRenderAction::TransparencyType type)
Sets the algorithm for rendering transparent objects.
static uint32_t getDefaultRedrawPriority()
Gets the default priority number of the redraw sensor.
void setPostRenderCallback(SoXtRenderAreaRenderCB *fcn, void *userData=NULL)
Specifies a function to be called after the Open Inventor render traversal and immediately before the...
void setColorMap(int startIndex, int num, const SbColor *colors)
Sets the colors to use when displaying in color index mode.
void setGLRenderAction(SoGLRenderAction *ra)
Sets the GL render action to use.
SbBool SoXtRenderAreaRenderCB(void *userData, SoXtRenderArea *rendArea)
void setEventCallback(SoXtRenderAreaEventCB *fcn, void *userData=NULL)
X events which occur in the render area window are either directly handled by the viewer (when this i...
int getBackgroundIndex() const
Gets the window background color when in color index mode.
SbBool SoXtRenderAreaEventCB(void *userData, XAnyEvent *anyevent)
SbBool isAutoRedraw() const
Queries whether the render area will automatically redraw whenever something in the scene graph chang...
void setViewportRegion(const SbViewportRegion &newRegion)
Sets viewport region to use for rendering.
void redrawOnSelectionChange(SoSelection *s)
Call this convenience method to have this render area redraw whenever the selection list changes in t...
void scheduleRedraw()
Schedules a redraw to happen sometime soon (as opposed to immediately).
int SbBool
Boolean type.
Definition SbBase.h:87