我现在有一个名为'treeWidget'的QTreeWidget,但就我而言,无法弄清楚如何获取索引值或所选treeWidget分支的文本。
self.treeWidget看起来像:
用户
-inbox
-Sent
-Drafts
-Trash
我需要知道选择了哪个分支,这样我才能在分支的相应文件夹中显示文件夹。我一直在努力理解Qt文档,但我完全被C ++困扰了。并且PyQt文档没有任何示例。我到处搜索了三天,试图修补并找出答案,但不断出现错误。
我认为我最接近的是这样的:
self.connect(self.treeWidget,SIGNAL("itemSelectionChanged()"), self.loadAllMessages) def loadAllMessages(self, folder): item = self.treeWidget.currentItem()
我需要先设置setSelectionMode吗?非常感谢所有帮助!
答案 0 :(得分:3)
试试这个
#remove the old way of connecting
#self.connect(self.treeWidget,SIGNAL("itemSelectionChanged()"), self.loadAllMessages)
self.treeWidget.itemSelectionChanged.connect(self.loadAllMessages)
def loadAllMessages(self, folder):
getSelected = self.treeWidget.selectedItems()
if getSelected:
baseNode = getSelected[0]
getChildNode = baseNode.text(0)
print getChildNode