Is it possible to create a signal for when a QTreeWidgetItem checkbox is toggled?
Connect to the signal itemClicked(QTreeWidgetItem* item, int column)
of the tree. When handling the signal, just verify item->checkState(column)
.
You have to grab the signal itemChanged ( QTreeWidgetItem * item, int column )
coming from QTreeWidget.