Open Inventor Release 2025.1.0
 
Loading...
Searching...
No Matches
SoWinGLWidget.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 : VSG (MMM YYYY)
22**=======================================================================*/
23
24
25
26#ifndef _SO_WIN_GL_WIDGET_H_
27#define _SO_WIN_GL_WIDGET_H_
28
29
30#include <Inventor/Win/SoWinBeginStrict.h>
31
32#include <Inventor/Win/SoWinComponent.h>
33#include <Inventor/components/SoGLGraphicConfigTemplate.h>
34#include <Inventor/components/SoGLGraphicDevice.h>
35#include <Inventor/components/SoGLGraphicConfig.h>
36
37#include <Inventor/devices/SoGLContext.h>
38
39#include <Inventor/nodes/SoFullSceneAntialiasing.h>
40
41#include <Inventor/Gui/SoGuiGLWidget.h>
42
43#ifdef _WIN32
44#pragma warning(push)
45#pragma warning(disable:4251)
46#endif
47
49
51//
52// Class: SoWinGLWidget
53//
54//
56
79class SoWinGLWidget : public SoWinComponent
80{
81 public:
82
85 {
89 FLOAT_16_COLOR_BUFFER = SoGuiGLWidget::FLOAT_16_COLOR_BUFFER,
93 FLOAT_32_COLOR_BUFFER = SoGuiGLWidget::FLOAT_32_COLOR_BUFFER
94 };
95
104 virtual Window getNormalWindow();
105
114 GLXContext getNormalContext() { return m_contextNormal->getGLContext(); }
115
116 virtual SoGLContext* getNormalSoContext() { return m_contextNormal.ptr(); }
117
121 Hdc getNormalDC() const;
122
123#ifndef HIDDEN_FROM_DOC
124 // Jim's thing for now, not really public
125 Hdc copyWindowBits() ;
126#endif // HIDDEN_FROM_DOC
127
135 void setStealFocus( SbBool onOrOff ) { stealFocus = onOrOff; };
136
145 SoWidget getNormalWidget() const;
146
155 virtual void setNormalVisual( XVisualInfo* vis );
156
160 XVisualInfo* getNormalVisual();
161
174 virtual void setPixelFormat( int format );
175
182
187
191 void setAntialiasing(SoAntialiasingParameters* advancedParameters);
192
197
202
207
213 void setDoubleBuffer( SbBool onOrOff );
214
218 SbBool isDoubleBuffer() { return m_guiGLWidget->isDoubleBuffer(); }
219
223 void setBorder( SbBool onOrOff );
224
228 int getBorderSize() { return m_guiGLWidget->getBorderSize(); }
229
233 SbBool isBorder() const { return m_guiGLWidget->isBorder(); }
234
240
244 SbBool isDrawToFrontBufferEnable() const { return m_guiGLWidget->isDrawToFrontBufferEnable(); }
245
254 void setCursor( Cursor newCursor );
255
260 Cursor getCursor();
261
267
272
273
278
283
288
300 virtual void setFloatingColorBuffer( SbBool enable,
302
306 virtual void getFloatingColorBuffer( SbBool& enable, FloatColorBufferSize& size );
307
312
338 bool saveSnapshot( const SbString& filename, bool overwrite = true );
339
340private:
341
342 // Starting with version 3.0, subclasses should no longer make direct
343 // calls to glXMakeCurrent, glXSwapBuffers and glFlush.
344 // For RemoteRendering we need to know when MakeCurrent is called
345 // (marking the beginning of a frame) and when SwapBuffers or glFlush
346 // is called (marking the end of a frame).
347 // Subclasses should always use these generic methods.
348 void flush();
349
350private:
351
352 SoGuiGLWidget* getGuiGLWidget() const;
353
354 // Synchronise current properties from this object with the current configuration.
355 void syncFromCurrentConfig();
356 // Synchronise the current template with current properties from this object.
357 void syncToCurrentConfigTemplate( PIXELFORMATDESCRIPTOR* newPFD );
358
359 SbBool currentGraphicConfigTemplateIsUsed;
360 SoGLGraphicConfigTemplate currentGraphicConfigTemplate;
361
362 // Gets the current graphic device.
363 SoGLGraphicDevice* getGraphicDevice();
364
365 // Gets the current graphic configuration.
366 SoGLGraphicConfig* getGraphicConfig();
367
368 virtual void posChanged( const SbVec2i32&, const SbVec2i32& );
369
370 // These variables are public for retro compatibility purposes only.
371 // Do not use them directly but call their accessors instead;
372 SbBool drawToFrontBuffer;
373
374 // These two function are used by SoGui, to call the system dependent version of
375 // these functions. data is a SoWinGLWidget handle.
376 static SbBool swapNormalBuffersCB(void *data);
377 static SbBool bindNormalCurrentCB(void *data);
378 static SbBool unbindNormalCurrentCB(void *data);
379 static void* getNormalWindowCB(void *data);
380
381private:
382
383 // Update the current device and disable the current configuration.
384 // If the given hdc is the same than the current device, the current
385 // device is kept and the current configuration is updated with the
386 // current template.
387 // If the given hdc is NULL, the current device and configuration are
388 // freed and set to NULL.
389 void updateCurrentDeviceAndConfig( HDC hdc );
390
391 SbBool currentGraphicConfigIsUsed;
392 SoGLGraphicConfig* currentGraphicConfig;
393 SbBool currentGraphicDeviceIsUsed;
394 SoGLGraphicDevice* currentGraphicDevice;
395
396 // Subclasses can pass in a bitwise OR specifying the GL modes
397 // (e.g. SO_GLX_RGB | SO_GLX_DOUBLE | SO_GLX_ZBUFFER)
398 // If buildNow is FALSE, this will not build its widget tree until
399 // buildWidget() is explicity called; else, buildWidget() is called here.
400 SoWinGLWidget( SoWidget parent = NULL,
401 const char* name = NULL,
402 SbBool buildInsideParent = TRUE,
403 int glModes = SO_GLX_RGB,
404 SbBool buildNow = TRUE,
405 SbBool sync = TRUE );
406
407 SoWinGLWidget( SoWidget parent,
408 const char* name,
409 SbBool buildInsideParent,
410 int glModes,
411 SbBool buildNow,
412 SbBool sync,
413 SoGuiGLWidget* guiGLWidget );
414
415 virtual ~SoWinGLWidget();
416
417 // subclasses MUST redefine redraw() to draw in the normal bit planes.
418 virtual void redraw() = 0;
419 virtual void processEvent( XAnyEvent* anyevent );
420
421 // subclasses can redefine these to do something useful.
422 // initGraphic() is called whenever a GLX window gets created
423 // sizeChanged() is called whenever the window changes size
424 // widgetChanged() is called whenever the widget is changed (i.e. at
425 // initialization or after switching from single->double buffer)
426 virtual void initGraphic();
427 virtual void sizeChanged( const SbVec2s& newSize );
428 virtual void widgetChanged( SoWidget newWidget );
429
430 // sets/gets the size of the glx widget(s) - Note this size could be
431 // different from the SoWinComponent::getSize() method which return
432 // the size of the component, not necessary the same as the glx widget
433 // window (because of extra stuff like the decoration in the viewers).
434 void setGlxSize( SbVec2s newSize );
435 const SbVec2s& getGlxSize() const { return m_guiGLWidget->getGlxSize(); }
436
437 // subclasses can use this routine as the event handler for any
438 // devices they wish to get input from.
439 static void eventHandler( SoWidget w, SoWinGLWidget* p, XAnyEvent* e, Boolean* b );
440
441 // set/get stereo buffering visual. This routine (like setDoubleBuffer)
442 // can be called interactively, althought slower since a new window
443 // with the needed visual is always created on the fly.
444 void setStereoBuffer( SbBool flag );
445 SbBool isStereoBuffer() const;
446
447 // returns TRUE if main window is in rgb mode, else FALSE for color index mode
448 SbBool isRGBMode() const;
449
450 // returns the display lists share group for given context:
451 int getDisplayListShareGroup( SoGLContext* ctx );
452
453 // set when color index is used
454 Colormap getColorMap() const
455 { return m_guiGLWidget->getColorMap(); }
456
457
458 SbBool waitForExpose; // prevent redraws until an expose is received
459
460 // make those methods protected so enable the SoWinRenderArea to use them
461 // directly when it needs to build the widget and get its resources.
462 SoWidget buildWidget( SoWidget parent );
463 SoWidget getGlxMgrWidget() { return mgrWidget; }
464
465 // _WIN32
466 // Add some convenience functions that reduce the number of ifdef's in
467 // viewers by hiding these platform dependent operations.
468 // We should add these to the UNIX version too.
469 void changeCursor( Cursor newCursor );
470
471 // Set/get thread this context belongs to
472 DWORD getThreadId() { return dwThreadId; };
473 void setThreadId( DWORD id ) { dwThreadId=id; };
474
476
477 virtual void onExpose();
478
479 void destroyNormalWindows(SbBool normalCall=TRUE);
480
481 private:
482
483 void constructorCommon( int glModes, SbBool buildNow, SoWidget parent );
484
485 static SbBool onGLFormatChangeCallback( SoGLFormat& format, void* userData );
486
487 HWND createWindow( SoGLFormat* format );
488
489 void destroyWindow( HWND handle );
490
491 void initGLXWidget( SoWidget glx, SoGLFormat* format );
492
493 // local vars
494 SoWidget mgrWidget;
495 SoWidget m_widgetNormal;
496
497 SoRef<SoGLContext> m_contextNormal;
498
499 SoGuiGLWidget* m_guiGLWidget; //Implementation class for SoXxGLWidget
500
501 // Note for _WIN32:
502 // 1) All the "SoWidget" values above are actually type "HWND".
503 // 2) The "GLXContext" values above are actually type "HGLRC".
504
505 // For _WIN32 we need a GL context *and* a device context for each
506 // GL drawing window (we don't need one for the mgr because we don't
507 // plan to ever draw in it). These correspond to the "ctx..." vars.
508 // Note: This plan depends on use of the CS_OWNDC style.
509 Hdc m_hdcNormal;
510
511 // For _WIN32 we also need a logical color palette for each drawing
512 // area if we happen to running on an 8bit device...
513 HPALETTE palNormal;
514
515 // For _WIN32 we also need to remember our parent and our
516 // "ancestor" (the toplevel window that we're descended from).
517 SoWidget parent;
518 SoWidget ancestor;
519
520 // For _WIN32 we have to simulate the "focus follows pointer" behavior
521 // that X provides for free. Otherwise the app would have to be
522 // responsible for giving focus to the GL window and/or the user
523 // would have to keep clicking to get focus in the GL window. Focus
524 // is required for the 1-button mouse viewer behaviors like Ctrl-Left
525 // Button and so on. This variable tracks whether we have focus
526 // based on the WM_SETFOCUS/WM_KILLFOCUS messages (see glxWindowProc).
527 int haveFocus;
528
529 // This flag tracks whether "focus follows pointer" is enabled.
530 int stealFocus;
531
532 // For _WIN32 we have to simulate the behavior of X where getting a
533 // mouse button down event guarantees you will also get the
534 // corresponding button up event. Otherwise examiner viewer windows
535 // get out of sync if a mouse button is released outside the window.
536 UINT mouseCaptured;
537
538 // For _WIN32 we have to know the handle of the cursor that's supposed
539 // to be displayed currently in the drawing window. The explanation
540 // is too long to fit here... :-) OK, actually it's because the
541 // viewers want to change the cursor periodically but we can't change
542 // the cursor in the class defn or it will change for *all* the GL
543 // windows (yuck). So we have to process the WM_SETCURSOR message in
544 // the glxWindowProc.
545 HCURSOR currentCursor;
546
547 // We also need (globally for the class) the default cursor to use.
548 static HCURSOR defaultCursor;
549
550 DWORD dwThreadId; // thread to which this context belongs -- mmh Apr-99
551
552 int* attribList;
553
554 // specify if sizeChanged() should be called when an expose event
555 // is received (as opposed to when a resize event is received, where
556 // the window hasn't yet been maped to the new size).
557 // ??? a GlxDraw bug ?
558 SbBool windowResized;
559
560 bool m_isMouseTracking;
561
562 // creates a GLX widget of the correct current type and get the current
563 // set of windows, color maps, etc...
564 void buildNormalGLXWidget( SoGLFormat* format = NULL );
565 void destroyGLXWidget( SoWidget& w, SoRef<SoGLContext>& ctx, SbBool normalWindow );
566
567 // callbacks from glx widget
568 static void ginitCB( SoWidget w, SoWinGLWidget* p, XtPointer );
569 static void exposeCB( SoWidget w, SoWinGLWidget* p, XtPointer ptr );
570 static void resizeCB( SoWidget w, SoWinGLWidget* p, XtPointer ptr );
571 static void mgrStructureNotifyCB( SoWidget w, SoWinGLWidget* p, XAnyEvent* e, Boolean* b );
572
573 // Window proc for SoWinGL "manager widget" windows
574 static LRESULT CALLBACK mgrWindowProc( Hwnd hwnd, UINT message,
575 WPARAM wParam, LPARAM lParam );
576
577 // Window proc for SoWinGL drawing windows
578 static LRESULT CALLBACK glxWindowProc( Hwnd hwnd, UINT message,
579 WPARAM wParam, LPARAM lParam );
580};
581
582inline void
583SoWinGLWidget::posChanged( const SbVec2i32&, const SbVec2i32& )
584{};
585
586
587#include <Inventor/Win/SoWinEndStrict.h>
588
589#ifdef _WIN32
590#pragma warning(pop)
591#endif
592
593#endif // _SO_WIN_GL_WIDGET_H_
594
595
Class for smart character strings.
Definition SbString.h:202
2D vector class.
Definition SbVec.h:517
2D vector class.
Definition SbVec.h:700
<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> Defines an OpenG...
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Defines an OpenG...
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Represents an Op...
AntialiasingMode
Enum which indicates the desired antialiasing algorithm.
@ AUTO
This is the default mode for antialiasing.
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Component for Op...
virtual void setNormalVisual(XVisualInfo *vis)
Specifies the exact pixel format descriptor for the normal window.
int getPixelFormat()
Returns the current pixel format.
virtual void setPixelFormat(int format)
Sets the current pixel format.
SoGLGraphicConfigTemplate * getGraphicConfigTemplate()
Gets the current graphics configuration template.
Cursor getCursor()
Returns the current cursor.
void setAntialiasing(SoAntialiasingParameters *advancedParameters)
Enable (or disable) antialiasing with specific parameters.
XVisualInfo * getNormalVisual()
Returns the pixel format descriptor for the normal window.
void setGraphicConfigTemplate(SoGLGraphicConfigTemplate *gTemplate)
Sets a new graphics configuration template.
FloatColorBufferSize
FloatColorBufferSize.
@ FLOAT_32_COLOR_BUFFER
32-bit rendering per component.
@ FLOAT_16_COLOR_BUFFER
16-bit rendering per component.
SoSceneManager::AntialiasingMode getAntialiasingMode() const
Returns the antialiasing mode set using the setAntialiasing(float,AntialiasingMode) method.
SbBool isDoubleBuffer()
Returns whether double buffering is on or off.
static SbBool isFloatingColorBufferSupported()
Returns TRUE if floating point rendering is available.
virtual Window getNormalWindow()
Gets the normal GL window, which is needed as an argument to SbGlContextHelper::makeCurrent() when dr...
float getAntialiasingQuality() const
Returns the antialiasing quality set using the setAntialiasing(float,AntialiasingMode) method.
SoWidget getNormalWidget() const
Gets the normal window handle, which is needed as an argument to SbGlContextHelper::makeCurrent() whe...
void setCursor(Cursor newCursor)
Sets the current cursor.
void setDrawToFrontBufferEnable(SbBool enableFlag)
Sets drawing to the front buffer.
virtual SbBool unbindNormalContext()
unbind the current context (previously bind with bindNormalContext );
virtual SbBool swapNormalBuffers()
Swaps the normal front and back buffers.
int getBorderSize()
Included for portability only.
Hdc getNormalDC() const
Returns the device context (which is needed for SbGlContextHelper::makeCurrent).
SbBool isDrawToFrontBufferEnable() const
Returns whether drawing to the front buffer is enabled.
void setStealFocus(SbBool onOrOff)
By default the GLWidget "steals" focus whenever the cursor moves over it.
virtual void getFloatingColorBuffer(SbBool &enable, FloatColorBufferSize &size)
Returns TRUE if floating point rendering is used and its precision.
virtual void setFloatingColorBuffer(SbBool enable, FloatColorBufferSize size=FLOAT_16_COLOR_BUFFER)
Enables/disables floating point rendering using 16- or 32-bit components.
virtual SbBool bindNormalContext()
Makes the normal rendering context the current context.
void setBorder(SbBool onOrOff)
Included for portability only.
SoAntialiasingParameters * getAntialiasingParameters() const
Returns the antialiasing parameters set using the setAntialiasing(SoAntialiasingParameters*) method.
virtual SoGLContext * getNormalSoContext()
void setAntialiasing(const float quality, const SoSceneManager::AntialiasingMode mode=SoSceneManager::AUTO)
Enable (or disable) antialiasing with specified quality and mode.
GLXContext getNormalContext()
Gets the normal context, which is needed as an argument to SbGlContextHelper::makeCurrent() when draw...
void setDoubleBuffer(SbBool onOrOff)
Routine that dynamically changes between single and double buffering.
bool saveSnapshot(const SbString &filename, bool overwrite=true)
Save a snapshot of the current image displayed in the viewer.
SbBool isBorder() const
Included for portability only.
int SbBool
Boolean type.
Definition SbBase.h:87