Vuo 2.4.4
Loading...
Searching...
No Matches
VuoComboBox.cc
Go to the documentation of this file.
1
10#include "VuoComboBox.hh"
11
16 : QComboBox(parent)
17{
18 setFocusPolicy(Qt::StrongFocus);
19}
20
24void VuoComboBox::setItemEnabled(int index, bool enabled)
25{
26 if (enabled)
27 setItemData(index, QVariant(), Qt::UserRole - 1);
28 else
29 setItemData(index, true, Qt::UserRole - 1);
30}