Lines Matching refs:widget
357 QWidget* widget = _customWidgets[controlId]; in setValue() local
359 if (widget) in setValue()
371 QCheckBox* cb = dynamic_cast<QCheckBox*>(widget); in setValue()
393 QWidget* widget = _customWidgets[controlId]; in getValue() local
395 if (widget) in getValue()
407 QCheckBox* cb = dynamic_cast<QCheckBox*>(widget); in getValue()
429 QWidget* widget = _customWidgets[controlId]; in enableControl() local
431 if (widget) in enableControl()
433 widget->setEnabled(enable); in enableControl()
440 QWidget* widget = _customWidgets[controlId]; in setLabel() local
442 if (widget) in setLabel()
454 QCheckBox* cb = dynamic_cast<QCheckBox*>(widget); in setLabel()
474 QWidget* widget = _customWidgets[controlId]; in getLabel() local
477 if (widget) in getLabel()
489 QCheckBox* cb = dynamic_cast<QCheckBox*>(widget); in getLabel()
509 QWidget* widget = 0; in addCustomControl() local
573 widget = new QCheckBox(label, _extraControls); in addCustomControl()
588 if (widget) in addCustomControl()
590 _layout->addWidget(widget); in addCustomControl()
591 _customWidgets.insert(controlId, widget); in addCustomControl()