/usr/include/Inventor/Qt/SoQtGLWidget.h is in libsoqt-dev-common 1.6.0~e8310f-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 | #ifndef SOQT_GLWIDGET_H
#define SOQT_GLWIDGET_H
// src/Inventor/Qt/SoQtGLWidget.h. Generated from SoGuiGLWidget.h.in by configure.
/**************************************************************************\
* Copyright (c) Kongsberg Oil & Gas Technologies AS
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\**************************************************************************/
#include <Inventor/SbBasic.h>
#include <Inventor/Qt/SoQtBasic.h>
#include <Inventor/Qt/SoQtComponent.h>
#ifdef __COIN_SOQT__
class QEvent;
#endif // __COIN_SOQT__
#ifdef __COIN_SOXT__
/*
* GL/glx.h includes X11/Xmd.h which contains typedefs for BOOL and
* INT32 that conflict with the definitions in windef.h (which is
* included from windows.h, which may be included from
* Inventor/system/gl.h). To avoid this conflict, we rename the
* typedefs done in X11/Xmd.h to use other names (tempbool and
* tempint32), and try to clean up the hack after the header has been
* parsed. 2003-06-25 larsa
*/
#ifndef BOOL
#define BOOL tempbool
#define COIN_DEFINED_BOOL
#endif /* !BOOL */
#ifndef INT32
#define INT32 tempint32
#define COIN_DEFINED_INT32
#endif /* !INT32 */
#include <GL/glx.h>
/*
* This is the cleanup part of the X11/Xmd.h conflict fix hack set up
* above. 2003-06-25 larsa
*/
#ifdef COIN_DEFINED_BOOL
#undef BOOL
#undef COIN_DEFINED_BOOL
#endif /* COIN_DEFINED_BOOL */
#ifdef COIN_DEFINED_INT32
#undef INT32
#undef COIN_DEFINED_INT32
#endif /* COIN_DEFINED_INT32 */
#endif // __COIN_SOXT__
#ifdef __COIN_SOGTK__
#include <gtk/gtk.h>
#endif // __COIN_SOGTK__
// *************************************************************************
enum GLModes {
SO_GL_RGB = 0x01, SO_GLX_RGB = SO_GL_RGB,
SO_GL_DOUBLE = 0x02, SO_GLX_DOUBLE = SO_GL_DOUBLE,
SO_GL_ZBUFFER = 0x04, SO_GLX_ZBUFFER = SO_GL_ZBUFFER,
SO_GL_OVERLAY = 0x08, SO_GLX_OVERLAY = SO_GL_OVERLAY,
SO_GL_STEREO = 0x10, SO_GLX_STEREO = SO_GL_STEREO
};
// *************************************************************************
class SOQT_DLL_API SoQtGLWidget : public SoQtComponent {
SOQT_OBJECT_ABSTRACT_HEADER(SoQtGLWidget, SoQtComponent);
public:
void setBorder(const SbBool enable);
SbBool isBorder(void) const;
virtual void setDoubleBuffer(const SbBool enable);
SbBool isDoubleBuffer(void) const;
void setDrawToFrontBufferEnable(const SbBool enable);
SbBool isDrawToFrontBufferEnable(void) const;
void setQuadBufferStereo(const SbBool enable);
SbBool isQuadBufferStereo(void) const;
void setAccumulationBuffer(const SbBool enable);
SbBool getAccumulationBuffer(void) const;
void setStencilBuffer(const SbBool enable);
SbBool getStencilBuffer(void) const;
void setAlphaChannel(const SbBool enable);
SbBool getAlphaChannel(void) const;
void setOverlayRender(const SbBool onoff);
SbBool isOverlayRender(void) const;
void setSampleBuffers(const int numsamples);
int getSampleBuffers(void) const;
void setStealFocus(SbBool enable);
SbBool isStealFocus(void) const;
QWidget * getGLWidget(void) const;
QWidget * getNormalWidget(void) const;
QWidget * getOverlayWidget(void) const;
SbBool hasOverlayGLArea(void) const;
SbBool hasNormalGLArea(void) const;
unsigned long getOverlayTransparentPixel(void);
// OpenGL query functions.
void getPointSizeLimits(SbVec2f & range, float & granularity);
void getLineWidthLimits(SbVec2f & range, float & granularity);
protected:
SoQtGLWidget(QWidget * const parent = NULL,
const char * const name = NULL,
const SbBool embed = TRUE,
const int glmodes = SO_GL_RGB,
const SbBool build = TRUE);
~SoQtGLWidget();
virtual void processEvent(QEvent * event);
QWidget * buildWidget(QWidget * parent);
virtual void redraw(void) = 0;
virtual void redrawOverlay(void);
virtual void initGraphic(void);
virtual void initOverlayGraphic(void);
virtual void sizeChanged(const SbVec2s & size);
virtual void widgetChanged(QWidget * w);
void setGLSize(const SbVec2s size);
SbVec2s getGLSize(void) const;
float getGLAspectRatio(void) const;
// old aliases
void setGlxSize(const SbVec2s size) { this->setGLSize(size); }
SbVec2s getGlxSize(void) const { return this->getGLSize(); }
float getGlxAspectRatio(void) const { return this->getGLAspectRatio(); }
void setStereoBuffer(SbBool flag);
SbBool isStereoBuffer(void) const;
SbBool isRGBMode(void);
SbBool waitForExpose;
SbBool drawToFrontBuffer;
void glLockNormal(void);
void glUnlockNormal(void);
void glLockOverlay(void);
void glUnlockOverlay(void);
void glSwapBuffers(void);
void glFlushBuffer(void);
virtual SbBool glScheduleRedraw(void);
private:
class SoQtGLWidgetP * pimpl;
friend class SoGuiGLWidgetP;
friend class SoQtGLWidgetP;
// FIXME: get rid of toolkit-specific stuff below. 20020613 mortene.
#ifdef __COIN_SOXT__
public:
GLXContext getNormalContext(void);
GLXContext getOverlayContext(void);
Window getNormalWindow(void);
Window getOverlayWindow(void);
int getOverlayColorMapSize(void);
int getColorMapSize(void);
virtual void setNormalVisual(XVisualInfo * visual);
XVisualInfo * getNormalVisual(void);
virtual void setOverlayVisual(XVisualInfo * visual);
XVisualInfo * getOverlayVisual(void);
protected:
static void eventHandler(Widget, SoXtGLWidget *, XAnyEvent *, Boolean *);
int getDisplayListShareGroup(GLXContext context);
Widget getGlxMgrWidget(void);
#endif // __COIN_SOXT__
#ifdef __COIN_SOGTK__
protected:
virtual SbBool eventFilter(GtkWidget * object, GdkEvent * event);
#endif // __COIN_SOGTK__
};
// *************************************************************************
#endif // ! SOQT_GLWIDGET_H
|