TAMSVIZ
Visualization and annotation tool for ROS
splitwindow.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "guicommon.h"
7 
8 #include "../core/document.h"
9 #include "../core/tracks.h"
10 
11 #include <atomic>
12 #include <typeindex>
13 
14 class WindowBase : public Window, public QFrame {
15 
16 protected:
17  WindowBase();
18  ~WindowBase();
19 
20 protected:
21  void changeEvent(QEvent *event);
22 };
23 DECLARE_TYPE(WindowBase, Window);
24 
25 class ContentWindowBase : public WindowBase {
26  QHBoxLayout *bar = nullptr;
27  QVBoxLayout *layout = nullptr;
28  QWidget *spacer = nullptr;
29  QWidget *content_window = nullptr;
30  // QStaticText _annotation_hud_text;
31  std::string _annotation_hud_string;
32 
33 protected:
35  void setContentWidget(QWidget *widget);
36  void addToolWidget(QWidget *widget);
37  void addToolWidgetRight(QWidget *widget);
38  void replace(const std::shared_ptr<Window> &new_window);
39  QWidget *contentWidget() { return content_window; }
40  void paintAnnotationHUD(QPainter *painter,
41  const std::shared_ptr<const Type> &type);
42 };
43 DECLARE_TYPE(ContentWindowBase, WindowBase);
44 
46 public:
47  EmptyWindow();
48 };
49 DECLARE_TYPE(EmptyWindow, ContentWindowBase);
50 
51 class SplitWindowBase : public WindowBase {
52  Qt::Orientation orientation;
53  QWidget *splitter = nullptr;
54 
55 protected:
56  SplitWindowBase(Qt::Orientation orientation);
57  ~SplitWindowBase();
58  void sync();
59 
60 public:
61  PROPERTY(double, position, 0.5);
62  PROPERTY(std::shared_ptr<Window>, a, nullptr);
63  PROPERTY(std::shared_ptr<Window>, b, nullptr);
64 };
65 DECLARE_TYPE(SplitWindowBase, WindowBase);
66 
68 public:
69  SplitWindowHorizontal() : SplitWindowBase(Qt::Horizontal) {}
70 };
72 
74 public:
75  SplitWindowVertical() : SplitWindowBase(Qt::Vertical) {}
76 };