-
Notifications
You must be signed in to change notification settings - Fork 948
Expand file tree
/
Copy pathTextModel.cpp
More file actions
66 lines (49 loc) · 1.17 KB
/
TextModel.cpp
File metadata and controls
66 lines (49 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include "TextModel.hpp"
#include <QtWidgets/QTextEdit>
TextModel::TextModel() {}
unsigned int TextModel::nPorts(PortType portType) const
{
unsigned int result = 1;
switch (portType) {
case PortType::In:
result = 1;
break;
case PortType::Out:
result = 1;
default:
break;
}
return result;
}
void TextModel::onTextEdited()
{
Q_EMIT dataUpdated(0);
}
NodeDataType TextModel::dataType(PortType, PortIndex) const
{
return TextData().type();
}
std::shared_ptr<NodeData> TextModel::outData(PortIndex const portIndex)
{
Q_UNUSED(portIndex);
return std::make_shared<TextData>(_textEdit->toPlainText());
}
QWidget *TextModel::embeddedWidget()
{
if (!_textEdit) {
_textEdit = new QTextEdit();
connect(_textEdit, &QTextEdit::textChanged, this, &TextModel::onTextEdited);
}
return _textEdit;
}
void TextModel::setInData(std::shared_ptr<NodeData> data, PortIndex const)
{
auto textData = std::dynamic_pointer_cast<TextData>(data);
QString inputText;
if (textData) {
inputText = textData->text();
} else {
inputText = "";
}
_textEdit->setText(inputText);
}