OSGWidget.hpp 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #pragma once
  2. // Include modules
  3. #include "TrackPointRenderer.hpp"
  4. // Include dependencies
  5. #include <QPoint>
  6. #include <QOpenGLWidget>
  7. #include <osg/ref_ptr>
  8. #include <osgViewer/GraphicsWindow>
  9. #include <osgViewer/CompositeViewer>
  10. namespace osgWidget {
  11. //! The subclass of osgViewer::CompositeViewer we use
  12. /*!
  13. * This subclassing allows us to remove the annoying automatic
  14. * setting of the CPU affinity to core 0 by osgViewer::ViewerBase,
  15. * osgViewer::CompositeViewer's base class.
  16. */
  17. class Viewer: public osgViewer::CompositeViewer {
  18. public:
  19. virtual void setupThreading();
  20. };
  21. }
  22. class PickHandler; // Forward declaration
  23. class OSGWidget : public QOpenGLWidget {
  24. Q_OBJECT
  25. public:
  26. static void fixMaterialState(osg::ref_ptr<osg::Node> node);
  27. OSGWidget(QWidget* parent = nullptr);
  28. virtual ~OSGWidget();
  29. void renderBaseMesh(const osg::ref_ptr<osg::Vec3Array> vertices, const osg::ref_ptr<osg::Vec3Array> normals);
  30. osg::ref_ptr<osg::Geode> getMesh();
  31. PickHandler* getPicker();
  32. protected:
  33. virtual void paintEvent(QPaintEvent* paintEvent);
  34. virtual void paintGL();
  35. virtual void resizeGL(int width, int height);
  36. virtual void keyPressEvent(QKeyEvent* event);
  37. virtual void keyReleaseEvent(QKeyEvent* event);
  38. virtual void mouseMoveEvent(QMouseEvent* event);
  39. virtual void mousePressEvent(QMouseEvent* event);
  40. virtual void mouseReleaseEvent(QMouseEvent* event);
  41. virtual void wheelEvent(QWheelEvent* event);
  42. virtual bool event(QEvent* event);
  43. private:
  44. virtual void onHome();
  45. virtual void onResize(int width, int height);
  46. osgGA::EventQueue* getEventQueue() const;
  47. PickHandler* _picker;
  48. osg::ref_ptr<osgViewer::GraphicsWindowEmbedded> graphicsWindow_;
  49. osg::ref_ptr<osgWidget::Viewer> _viewer;
  50. osgViewer::View* _view;
  51. osg::ref_ptr<osg::Group> _root;
  52. osg::ref_ptr<osg::Geode> _coordinateAxes;
  53. osg::ref_ptr<osg::Geode> _mesh;
  54. QPoint selectionStart_;
  55. QPoint selectionEnd_;
  56. bool selectionActive_;
  57. bool selectionFinished_;
  58. };