TAMSVIZ
Visualization and annotation tool for ROS
propertygrid.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "guicommon.h"
7 
8 #include "../core/type.h"
9 
10 #include <map>
11 #include <unordered_map>
12 
13 class ActionScope;
14 class Property;
15 class View;
16 
17 class PropertyGridWidget : public QDockWidget {
18  std::shared_ptr<Property> drag_property;
19  QTreeWidgetItem *drag_item = nullptr;
20  TreeWidget *view = nullptr;
21  uint64_t object_id = 0;
22  std::weak_ptr<Object> object_ptr;
23  void sync(QTreeWidgetItem *parent_item, std::vector<Property> properties);
24  void sync();
25  bool isPropertyDraggable(QTreeWidgetItem *item);
26 
27 public:
29 };