Qlistview Selectionchanged event not found in Qt What is the equivalent of selection changed event in Qlistview in Qt?
The selectionChanged
signal is generated by the QItemSelectionModel
attached to the view, not the view widget itself.
You can get that model by calling selectionModel()
on the view object, or by adding your own with setSelectionModel()
.
This applies both to QListView
and QListWidget
, since this behavior is handled by the QAbstractItemView
which both inherit.
(Class hierarchy is QAbstractItemView < QListView < QListWidget
.)
See Handling selections in item view for more information.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With