OSGWidget.hpp 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #ifndef OSGWidget_h__
  2. #define OSGWidget_h__
  3. #include <QPoint>
  4. #include <QOpenGLWidget>
  5. #include <osg/ref_ptr>
  6. #include <osgViewer/GraphicsWindow>
  7. #include <osgViewer/CompositeViewer>
  8. namespace osgWidget
  9. {
  10. //! The subclass of osgViewer::CompositeViewer we use
  11. /*!
  12. * This subclassing allows us to remove the annoying automatic
  13. * setting of the CPU affinity to core 0 by osgViewer::ViewerBase,
  14. * osgViewer::CompositeViewer's base class.
  15. */
  16. class Viewer : public osgViewer::CompositeViewer
  17. {
  18. public:
  19. virtual void setupThreading();
  20. };
  21. }
  22. class OSGWidget : public QOpenGLWidget
  23. {
  24. Q_OBJECT
  25. public:
  26. OSGWidget( QWidget* parent = 0,
  27. Qt::WindowFlags f = {} );
  28. virtual ~OSGWidget();
  29. protected:
  30. virtual void paintEvent( QPaintEvent* paintEvent );
  31. virtual void paintGL();
  32. virtual void resizeGL( int width, int height );
  33. virtual void keyPressEvent( QKeyEvent* event );
  34. virtual void keyReleaseEvent( QKeyEvent* event );
  35. virtual void mouseMoveEvent( QMouseEvent* event );
  36. virtual void mousePressEvent( QMouseEvent* event );
  37. virtual void mouseReleaseEvent( QMouseEvent* event );
  38. virtual void wheelEvent( QWheelEvent* event );
  39. virtual bool event( QEvent* event );
  40. private:
  41. virtual void onHome();
  42. virtual void onResize( int width, int height );
  43. osgGA::EventQueue* getEventQueue() const;
  44. osg::ref_ptr<osgViewer::GraphicsWindowEmbedded> graphicsWindow_;
  45. osg::ref_ptr<osgWidget::Viewer> viewer_;
  46. QPoint selectionStart_;
  47. QPoint selectionEnd_;
  48. bool selectionActive_;
  49. bool selectionFinished_;
  50. void processSelection();
  51. };
  52. #endif