Vuo  2.4.0
VuoTitleEditor.cc
Go to the documentation of this file.
1
10#include "VuoTitleEditor.hh"
11
12
19json_object * VuoTitleEditor::show(QPoint portLeftCenter, json_object *originalValue, json_object *details)
20{
21 map<QString, json_object *> portNamesAndValues;
22 json_object_object_add(details, "showArrow", json_object_new_boolean(false));
23 return VuoInputEditorWithLineEdit::show(portLeftCenter, originalValue, details, portNamesAndValues);
24}
25
30{
31 return json_object_get_string(value);
32}
33
38{
39 return json_object_new_string( lineEdit->text().toUtf8().constData() );
40}