-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathFabricSplicePortDialog.cpp
196 lines (170 loc) · 5.44 KB
/
FabricSplicePortDialog.cpp
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
#include <QtGui/QLabel>
#include <QtCore/QRegExp>
#include <QtGui/QRegExpValidator>
#include "FabricSplicePortDialog.h"
FabricSplicePortDialog::FabricSplicePortDialog(QWidget * parent)
: FabricSpliceBaseDialog(parent)
{
setWindowTitle("New Port");
QLabel * label = new QLabel("Name", this);
layout()->addWidget(label);
mName = new QLineEdit(this);
layout()->addWidget(mName);
QRegExp rx("[_a-zA-Z].[_a-zA-Z0-9]*");
QValidator *validator = new QRegExpValidator(rx, mName);
mName->setValidator(validator);
label = new QLabel("DataType", this);
layout()->addWidget(label);
mDataType = new FabricSpliceComboWidget(this);
mDataType->addItem("Custom");
mDataType->addItem("CompoundParam");
mDataType->addItem("Boolean");
mDataType->addItem("Integer");
mDataType->addItem("Scalar");
mDataType->addItem("String");
mDataType->addItem("Color");
mDataType->addItem("Vec3");
mDataType->addItem("Euler");
mDataType->addItem("Mat44");
mDataType->addItem("KeyframeTrack");
mDataType->addItem("Points");
mDataType->addItem("Lines");
mDataType->addItem("PolygonMesh");
mDataType->addItem("GeometryLocation");
layout()->addWidget(mDataType);
mDataType->setCurrentIndex(2);
mDataType->setCallback(onDataTypeChanged, this);
mCustomRTLabel = new QLabel("Custom", this);
layout()->addWidget(mCustomRTLabel);
mCustomRT = new QLineEdit(this);
layout()->addWidget(mCustomRT);
mExtensionLabel = new QLabel("Extension", this);
layout()->addWidget(mExtensionLabel);
mExtension = new QLineEdit(this);
layout()->addWidget(mExtension);
mCustomRTLabel->hide();
mCustomRT->hide();
mExtensionLabel->hide();
mExtension->hide();
label = new QLabel("Structure", this);
layout()->addWidget(label);
mArrayType = new FabricSpliceComboWidget(this);
layout()->addWidget(mArrayType);
label = new QLabel("Mode", this);
layout()->addWidget(label);
mMode = new FabricSpliceComboWidget(this);
mMode->addItem("Input");
mMode->addItem("Output");
mMode->addItem("I / O");
mMode->setCurrentIndex(0);
layout()->addWidget(mMode);
mAttrCheckBox = new FabricSpliceCheckBoxWidget("Add Maya Attribute", this);
layout()->addWidget(mAttrCheckBox);
mAttrCheckBoxChecked = false;
mAttrSpliceMayaDataCheckBox = new FabricSpliceCheckBoxWidget("Use SpliceMayaData Attribute", this);
layout()->addWidget(mAttrSpliceMayaDataCheckBox);
onDataTypeChanged(this);
setupButtons();
}
FabricCore::Variant FabricSplicePortDialog::getValue(const std::string & name)
{
FabricCore::Variant result;
if(name == "name")
{
std::string value = getStdStringFromQString(mName->text());
if(value.length() > 0)
result = FabricCore::Variant::CreateString(value.c_str());
}
else if(name == "mode")
{
int value = mMode->currentIndex();
result = FabricCore::Variant::CreateSInt32(value);
}
else if(name == "dataType")
{
std::string value = mDataType->getStdText();
if(value == "Custom")
value = getStdStringFromQString(mCustomRT->text());
if(value.length() > 0)
result = FabricCore::Variant::CreateString(value.c_str());
}
else if(name == "extension")
{
std::string value = getStdStringFromQString(mExtension->text());
if(value.length() > 0)
result = FabricCore::Variant::CreateString(value.c_str());
}
else if(name == "arrayType")
{
std::string value = mArrayType->getStdText();
if(value.length() > 0)
result = FabricCore::Variant::CreateString(value.c_str());
}
else if(name == "addAttribute")
{
bool value = mAttrCheckBox->checkState() == Qt::Checked;
result = FabricCore::Variant::CreateBoolean(value);
}
else if(name == "useSpliceMayaData"){
bool value = mAttrSpliceMayaDataCheckBox->checkState() == Qt::Checked;
result = FabricCore::Variant::CreateBoolean(value);
}
return result;
}
void FabricSplicePortDialog::onDataTypeChanged(void * userData)
{
FabricSplicePortDialog * dialog = (FabricSplicePortDialog*)userData;
dialog->mArrayType->clear();
dialog->mArrayType->addItem("Single Value");
std::string dataType = dialog->mDataType->getStdText();
if(dataType != "String" &&
dataType != "Euler" &&
dataType != "CompoundParam" &&
dataType != "CompoundArrayParam")
dialog->mArrayType->addItem("Array (Multi)");
if(dataType == "Scalar" || dataType == "Integer" || dataType == "Vec3")
dialog->mArrayType->addItem("Array (Native)");
// standard types which can be communicated with maya
if(dataType == "Boolean" ||
dataType == "Integer" ||
dataType == "Scalar" ||
dataType == "String" ||
dataType == "Color" ||
dataType == "Vec3" ||
dataType == "Euler" ||
dataType == "Mat44" ||
dataType == "KeyframeTrack" ||
dataType == "PolygonMesh" ||
dataType == "Lines")
{
if(!dialog->mAttrCheckBoxChecked)
{
dialog->mAttrCheckBox->setCheckState(Qt::Checked);
dialog->mAttrCheckBox->setEnabled(true);
dialog->mAttrCheckBoxChecked = true;
}
}
else
{
if(dialog->mAttrCheckBoxChecked)
{
dialog->mAttrCheckBox->setCheckState(Qt::Unchecked);
dialog->mAttrCheckBox->setDisabled(true);
dialog->mAttrCheckBoxChecked = false;
}
}
if(dataType == "Custom")
{
dialog->mCustomRTLabel->show();
dialog->mCustomRT->show();
dialog->mExtensionLabel->show();
dialog->mExtension->show();
}
else
{
dialog->mCustomRTLabel->hide();
dialog->mCustomRT->hide();
dialog->mExtensionLabel->hide();
dialog->mExtension->hide();
}
}