TAMSVIZ
Visualization and annotation tool for ROS
renderwindow.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "renderthread.h"
7 #include "splitwindow.h"
8 
9 #include "../render/rendertarget.h"
10 
11 class UniformBufferBase;
12 class RenderList;
13 class Renderer;
14 class CameraBlock;
15 class Framebuffer;
16 class Texture;
17 
19 
21  RenderList *render_list = nullptr;
22  Renderer *renderer = nullptr;
23 };
24 
26 
27 protected:
28  int _width = 1, _height = 1;
29 
30 protected:
33 
34 public:
35  virtual void composite(int target) {}
36  virtual void renderWindowSync(const RenderWindowSyncContext &context);
37  virtual void renderWindowAsync(const RenderWindowAsyncContext &context);
38  virtual void handleEvent(QEvent *event) {}
39  int renderWidth() const { return _width; }
40  int renderHeight() const { return _height; }
41  void present();
42  virtual void paintHUD(QPainter *painter) {}
43 };
44 DECLARE_TYPE(RenderWindowBase, ContentWindowBase);