Qt 6.11 is out! See what's new in the release
blog
QComboBox with groups?
-
Is there an easy way to add subcategories to a QComboBox's drop down? Something like this...

@Dan203
Not that I know of. You would have to roll your own code. AQComboBoxuses aQListViewfor the items:QComboBox uses the model/view framework for its popup list and to store its items. By default a QStandardItemModel stores the items and a QListView subclass displays the popuplist.
and that does not support these "categories". You might be able to use
setView()(and maybesetModel()) to introduce your own view, with either your own layout (QStyledItemDelegate) and/or perhaps aQTreeView.