[SOLVED] Qml Combobox delegate?
-
Hey guys,
I'm wondering if it is possible to use a list of custom classes as model for a qml combobox? I don't see any option to assign a delegate.
What I want:
- I have list of configurations (class config).
- Each config has a name and a bunch of properties.
- I want to fill a combobox with all available configs (model: QList<config*>).
- If I select an item from the combobox I want to display some components to edit properties of the selected item.
Any suggestions how I should implement it?
Thanks!
CU
mts -
@themts AFAIK you can use all derivatives of
QAbstractItemModel
likeQAbstractListModel
orQStringListModel
and also object list models usingQList<QObject*>
.
Have a look at these examples. IMO, they should work withComboBox
too.