OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
PropertyGridView.h
Go to the documentation of this file.
1
4// ###########################################################################################################################################################################################################################################################################################################################
5
6#pragma once
7
8// OpenTwin header
10
11namespace ot {
12
13 class PropertyGrid;
14
17 public:
18 PropertyGridView(PropertyGrid* _propertyGrid = (PropertyGrid*)nullptr);
19 virtual ~PropertyGridView();
20
21 // ###########################################################################################################################################################################################################################################################################################################################
22
23 virtual QWidget* getViewWidget(void) override;
24
25 // ###########################################################################################################################################################################################################################################################################################################################
26
27 PropertyGrid* getPropertyGrid(void) const { return m_propertyGrid; };
28
29 private:
30 PropertyGrid* m_propertyGrid;
31 };
32
33}
#define OT_DECL_NOCOPY(___class)
Removes the default copy constructor and assignment operator.
Definition OTClassHelper.h:14
#define OT_WIDGETS_API_EXPORT
Definition OTWidgetsAPIExport.h:12
Definition PropertyGrid.h:29
Definition PropertyGridView.h:15
PropertyGrid * getPropertyGrid(void) const
Definition PropertyGridView.h:27
The WidgetView class is used to integrate the Qt-ADS functionallity into open twin.
Definition WidgetView.h:33
Definition Connector.h:8