OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
IVisualisationText.h
Go to the documentation of this file.
1#pragma once
2#include <string>
5
6class __declspec(dllexport) IVisualisationText
7{
8public:
9 virtual ~IVisualisationText() {}
10 virtual std::string getText() = 0;
11 virtual void setText(const std::string& _text) = 0;
12 virtual bool visualiseText() = 0;
13 virtual ot::TextEditorCfg createConfig() = 0;
14 virtual ot::ContentChangedHandling getTextContentChangedHandling() = 0;
15};
Definition TextEditorCfg.h:19
ContentChangedHandling
Defines how the model service shall deal with a content changed notification from the ui....
Definition ContentChangedHandling.h:8