#ifndef OSGWidget_h__ #define OSGWidget_h__ #include #include #include #include #include namespace osgWidget { //! The subclass of osgViewer::CompositeViewer we use /*! * This subclassing allows us to remove the annoying automatic * setting of the CPU affinity to core 0 by osgViewer::ViewerBase, * osgViewer::CompositeViewer's base class. */ class Viewer : public osgViewer::CompositeViewer { public: virtual void setupThreading(); }; } class OSGWidget : public QOpenGLWidget { Q_OBJECT public: OSGWidget( QWidget* parent = 0, Qt::WindowFlags f = {} ); virtual ~OSGWidget(); protected: virtual void paintEvent( QPaintEvent* paintEvent ); virtual void paintGL(); virtual void resizeGL( int width, int height ); virtual void keyPressEvent( QKeyEvent* event ); virtual void keyReleaseEvent( QKeyEvent* event ); virtual void mouseMoveEvent( QMouseEvent* event ); virtual void mousePressEvent( QMouseEvent* event ); virtual void mouseReleaseEvent( QMouseEvent* event ); virtual void wheelEvent( QWheelEvent* event ); virtual bool event( QEvent* event ); private: virtual void onHome(); virtual void onResize( int width, int height ); osgGA::EventQueue* getEventQueue() const; osg::ref_ptr graphicsWindow_; osg::ref_ptr viewer_; QPoint selectionStart_; QPoint selectionEnd_; bool selectionActive_; bool selectionFinished_; void processSelection(); }; #endif