I want to get all not selected items from QTreeWidget.

I have worked on getting selected items, but i want to use not selected items as well.

Any help is appreciated!

有帮助吗?

解决方案

Use QTreeWidgetItemIterator for iterate over the items. Details and example of using: http://qt-project.org/doc/qt-4.8/qtreewidgetitemiterator.html

Inside the loop, you can choose your actions, depending on the property isSelected

(*it)->isSelected()
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top