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