OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
TableView.h
Go to the documentation of this file.
1
4// ###########################################################################################################################################################################################################################################################################################################################
5
6#pragma once
7
8// OpenTwin header
10
11namespace ot {
12
13 class Table;
14
16 Q_OBJECT
18 public:
19 TableView(Table* _table = (Table*)nullptr);
20 virtual ~TableView();
21
22 // ###########################################################################################################################################################################################################################################################################################################################
23
24 // Base class functions
25
26 virtual QWidget* getViewWidget(void) override;
27
28 // ###########################################################################################################################################################################################################################################################################################################################
29
30 Table* getTable(void) const { return m_table; };
31
32 private Q_SLOTS:
33 void slotModifiedChanged(bool _isModified);
34
35 private:
36 Table* m_table;
37 };
38
39}
#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 Table.h:22
Definition TableView.h:15
Table * getTable(void) const
Definition TableView.h:30
The WidgetView class is used to integrate the Qt-ADS functionallity into open twin.
Definition WidgetView.h:33
Definition Connector.h:8