我正在尝试在树视图中加载子项目
+top
parent1
parent2
parent3
首先,我只使用父节点信息填充模型并将其附加到树视图,树看起来像上面。
self.mytreeview=QtGui.Qtreeview()
self.model=QtGui.QStandardItemModel(self.mytreeview)
def initialise_model(self):
'''Populate the model with parent nodes only'''
#open file and process each line, each file line has the parent node info
....
for file_name_entry in fileobject:
parent_item=QtGui.QStandardItem(str(file_name_entry).strip())
parent_item.setData("this is a parent",QtCore.Qt.TooltipRole)
self.model.appendRow(parent_item)
self.mytreeview.setModel(self.model)
此时,没有父母有任何子女信息。 我接下来要做的是在用户点击父节点时更新父节点(只是及时或延迟加载父节点子信息)。
因此,当单击父节点时,会发出信号
QtCore.QObject.connect(self.ui.treeView, QtCore.SIGNAL('clicked(QModelIndex)'), self.update_model)
update_model 代码应该获取该父项的子项,更新模型,刷新树并展开父节点。
def update_model(self,index):
'''Update the model by adding children to selected/clicked parent node only'''
parent_node=QtGui.QStandardItem(self.model.itemFromIndex(index))
parent_item_index=index.row()
#open the file called parent_node.txt and get all the child entries from the file...
child_index=0
for child_name_entry in parent_text_fileobject:
child_item=QtGui.QStandardItem(str(child_name_entry).strip())
child_item.setData("this is a child",QtCore.Qt.TooltipRole)
parent_item.setChild(child_index,child_item)
child_index=child_index+1
#Once all the children have been added update the model, by inserting a new row where the parent was
self.model.removeRow(parent_item_index)#remove old parent
self.model.insertRow(parent_item_index,parent_item)#insert new parent with its children
当我尝试删除选定的父节点(没有子节点的节点)并尝试插入新的父项(带子节点)时,它最终会在父节点上方添加新父节点(带子节点)而没有子节点,所以我最终得到重复的父节点
+top
parent1
parent2
+parent2
child_a
child_b
child_c
parent3
只需回顾,删除和插入,即
#Once all the children have been added update the model, by inserting a new row where the parent was
self.model.removeRow(parent_item_index)#remove old parent
self.model.insertRow(parent_item_index,parent_item)#insert new parent with its children
是一个坏主意。看看评论,有人认为AppendRow()可能就是答案,但我不太确定 我相信
self.model.appendRow(parent_item)#new parent with its children
只需将父项添加到模型的底部,因此树仍然会有重复的父节点,即
+top
parent1
**parent2**
parent3
**+parent2**
child_a
child_b
child_c
我认为我正在寻找的是一种更新模型中现有节点的方法,以便可以使用其子节点更新所选(父节点)。例如
...
self.model.UpdateExisitingNode(node_index)
...
有关如何更新模型中节点的任何建议? 注意我使用的是Windows和PyQt
此致
答案 0 :(得分:3)
为了使其正常工作,父项应在之前显示扩展箭头,并使用子项填充它们。当通过任何方式(通过鼠标,键盘,以及编程方式)扩展时填充顶级项目也是很好的,同时确保只在需要时才会这样做(即仅当父母当前为空时)。
通过在相关项目上设置“可扩展”标志,然后重新实现hasChildren
的{{1}}方法,可以非常简单地实现这一切。有了这些,就可以很容易地编写方法来按需填充顶级项目。
这是一个基于您的示例代码的简单演示,它实现了所有这些:
QStandardItemModel
答案 1 :(得分:1)
您正在复制项目,因为您正在创建另一个父项目,您应该只创建新的子项目。例如:
from PyQt4 import QtGui
class Widget(QtGui.QWidget):
def __init__(self, parent=None):
QtGui.QWidget.__init__(self, parent)
self.mytreeview = QtGui.QTreeView(self)
self.setLayout(QtGui.QVBoxLayout())
self.layout().addWidget(self.mytreeview)
self.model = QtGui.QStandardItemModel(self.mytreeview)
self.mytreeview.setModel(self.model)
self.mytreeview.clicked.connect(self.update_model)
self.initialise_model()
def initialise_model(self):
for text in ["parent1", "parent2", "parent3"]:
item = QtGui.QStandardItem(text)
self.model.appendRow(item)
def update_model(self, index):
parent = self.model.itemFromIndex(index)
for text in ["children1", "children2", "children3"]:
children = QtGui.QStandardItem("{}_{}".format(parent.text(), text))
parent.appendRow(children)
self.mytreeview.expand(index)
if __name__ == '__main__':
import sys
app = QtGui.QApplication(sys.argv)
w = Widget()
w.show()
sys.exit(app.exec_())