Vuo  2.4.0
VuoInputEditorKey.cc
Go to the documentation of this file.
1
10#include "VuoInputEditorKey.hh"
11
16{
17 return new VuoInputEditorKey();
18}
19
23void VuoInputEditorKey::setUpDialog(QDialog &dialog, json_object *originalValue, json_object *details)
24{
25 comboBox = new VuoKeyComboBox(&dialog);
26 comboBox->adjustSize();
27
28 comboBox->setCurrentKey( VuoKey_makeFromJson(originalValue) );
29}
30
35{
36 return VuoKey_getJson( comboBox->getCurrentKey() );
37}