OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
GraphicsViewView.h
Go to the documentation of this file.
1
4// ###########################################################################################################################################################################################################################################################################################################################
5
6#pragma once
7
8// OpenTwin header
10
11namespace ot {
12
13 class GraphicsView;
14
16 public:
17 GraphicsViewView(GraphicsView* _graphicsView = (GraphicsView*)nullptr);
18 virtual ~GraphicsViewView();
19
20 // ###########################################################################################################################################################################################################################################################################################################################
21
22 // Base class functions
23
24 virtual QWidget* getViewWidget(void) override;
25
26 // ###########################################################################################################################################################################################################################################################################################################################
27
28 GraphicsView* getGraphicsView(void) const { return m_graphicsView; };
29
30 private:
31 GraphicsView* m_graphicsView;
32 };
33
34}
#define OT_WIDGETS_API_EXPORT
Definition OTWidgetsAPIExport.h:12
View widget used to display GraphicsItems Note that the View creates its own scene.
Definition GraphicsView.h:37
Definition GraphicsViewView.h:15
GraphicsView * getGraphicsView(void) const
Definition GraphicsViewView.h:28
The WidgetView class is used to integrate the Qt-ADS functionallity into open twin.
Definition WidgetView.h:33
Definition Connector.h:8