Aaron McKellar
Aaron McKellar

Reputation: 667

Qt - How to use rich text in a QComboBox?

I am trying to use rich text in a QComboBox but it does not support it. Perhaps I should write a subclass? But I am unsure on what I would need to override as I have never done anything like this before. Please help. Thanks!

Upvotes: 5

Views: 2287

Answers (1)

Mike Hordecki
Mike Hordecki

Reputation: 97091

I think custom delegate class is the answer. The solution is to simply replace standard drawing routine with your own (using i.e. QLabel). There was a similar question here: QListView/QListWidget with custom items and custom item widgets

Upvotes: 2

Related Questions