TAMSVIZ
Visualization and annotation tool for ROS
plotwindow.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "../render/opengl.h"
7 
8 #include "renderwindow.h"
9 
10 #include "../core/topic.h"
11 #include "../displays/plot.h"
12 #include "../render/renderer.h"
13 #include "../render/texture.h"
14 
15 class QOpenGLPaintDevice;
16 
17 class PlotWindow : public RenderWindowBase {
18  std::shared_ptr<QOpenGLContext> _offscreen_context;
19  std::shared_ptr<QOffscreenSurface> _offscreen_surface;
20  std::shared_ptr<PlotRenderer> _renderer, _renderer_async;
21  std::shared_ptr<QOpenGLPaintDevice> _paint_device;
22  std::shared_ptr<QOpenGLFramebufferObject> _fbo_render;
23  std::mutex _fbo_mutex;
24  Framebuffer _fbo_composite;
25  Framebuffer _fbo_present;
26  Renderbuffer _fbo_buffer;
27  bool _fbo_initialized = false;
28 
29 public:
30  PlotWindow();
31  PROPERTY(Handle<PlotDisplay>, plot);
32  virtual void
33  renderWindowSync(const RenderWindowSyncContext &context) override;
34  virtual void
35  renderWindowAsync(const RenderWindowAsyncContext &context) override;
36  virtual void paintHUD(QPainter *painter) override;
37  virtual void composite(int target) override;
38  virtual void handleEvent(QEvent *event) override;
39 };
40 DECLARE_TYPE(PlotWindow, RenderWindowBase);
Definition: type.h:117