OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
PlainTextEditView.h
Go to the documentation of this file.
1
4// ###########################################################################################################################################################################################################################################################################################################################
5
6#pragma once
7
8// OpenTwin header
10
11namespace ot {
12
13 class PlainTextEdit;
14
17 public:
18 PlainTextEditView(PlainTextEdit* _textEdit = (PlainTextEdit*)nullptr);
19 virtual ~PlainTextEditView();
20
21 // ###########################################################################################################################################################################################################################################################################################################################
22
23 virtual QWidget* getViewWidget(void) override;
24
25 // ###########################################################################################################################################################################################################################################################################################################################
26
27 PlainTextEdit* getPlainTextEdit(void) const { return m_textEdit; };
28
29 private:
30 PlainTextEdit* m_textEdit;
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 PlainTextEdit.h:17
Definition PlainTextEditView.h:15
PlainTextEdit * getPlainTextEdit(void) const
Definition PlainTextEditView.h:27
The WidgetView class is used to integrate the Qt-ADS functionallity into open twin.
Definition WidgetView.h:33
Definition Connector.h:8