I need to port a tool from nuke (to blender). The nuke tool uses pyqt comboboxes and listwidgets. The widgets are populated with info from an external database. The widgets are displayed vertically.
production [combobox] <- list of productions
sequence [combobox] <- list of sequences in a selected production
shot [combobox] <- list of shots in a selected sequence
assets [listwiget] <- list of assets in a selected shot
When a selection is made in one of the comboboxes, the subsequent widgets are updated. Ultimately, I extract the list of selected assets from the listwidget at the bottom.
Is it possible to make multiple selections with an UIList?