In my form I have a QListWidget which contains checkable QListWidgetItems. I\'m looking for a way to capture the event of a QListWidgetItem>
QListWidget
QListWidgetItems
QListWidgetItem>
Apparently no such signal is provided, your best bet is to use QListWidget::itemChanged(QListWidgetItem* item) , and scan the resulting item->checkState(). This should be a slight improvement over using itemClicked
itemClicked