Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can't find a standard way to disable an individual item in a Qt combo box. Is there a facility to do this in Qt that I am missing?

share|improve this question

1 Answer

up vote 6 down vote accepted

Taken from here:

// Get the index of the value to disable
QModelIndex index = ui.comboBox->model()->index(1, 0); 

// This is the effective 'disable' flag
QVariant v(0);

// the magic
ui.comboBox->model()->setData(index, v, Qt::UserRole - 1);

To enable again use:

QVariant v(1 | 32);

The model used maps the flags word to Qt::UserRole - 1 -- that's what makes this code work. It's not a generic solution that would work with an arbitrary model.

share|improve this answer
It is invalid. Much better to make own list model (or proxy model), that will return flags properly. – Lol4t0 Apr 1 at 11:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.