nodeeditor icon indicating copy to clipboard operation
nodeeditor copied to clipboard

Multiple parameters per node

Open johnroper100 opened this issue 8 years ago • 3 comments

Is it possible to have multiple number/text/other parameter fields per-node? If not, can this be added?

johnroper100 avatar Oct 23 '17 13:10 johnroper100

This may be related to #81

russelltg avatar Oct 23 '17 15:10 russelltg

I don't need the values to be connected to inputs, I just need multiple options in each node.

johnroper100 avatar Oct 23 '17 15:10 johnroper100

Just create a widget that contains more than one option...


auto wid = new QWidget;
auto layout = new QVBoxLayout;
wid->setLayout(layout);

auto textbox1 = new QLineEdit;
layout->addWidget(textbox1);

auto textbox2 = new QLineEdit;
layout->addWidget(textbox2);

russelltg avatar Oct 23 '17 15:10 russelltg