gpt4 book ai didi

python - 如何将子行添加到由特定列值找到的 QTreeView 行?

转载 作者:行者123 更新时间:2023-12-01 08:37:06 24 4
gpt4 key购买 nike

以下示例应用程序旨在显示 QTreeView,用 4 行填充它,并添加另外 12 行,将它们作为子项随机分布在最初添加的 4 行之间。必须根据 UUID 列的值选择父级(不能是一行中的第一列)。所有 UUID 都是唯一的。

我正在尝试使用 self.findItems(parent_uuid, Qt.MatchExactly, 1) (其中 parent_uuid: str 是所选的父 ID 值,1 是索引存储 ids 的列)来查找所需的父行,但返回的结果似乎只是包含 UUID 的 QStandardItem 的 1 元素列表。

如何更改代码以实现所需的行为?

我使用 Python 3.7 和 Qt 5.11。 UI 代码是使用 pyuic5 从 QtDesigner 生成的 Qt UI XML 文件生成的。

完整的应用程序源代码:

#!/usr/bin/env python


import random
import sys
import uuid

from PyQt5 import QtCore, QtWidgets
from PyQt5.QtCore import Qt
from PyQt5.QtGui import QStandardItemModel, QStandardItem
from PyQt5.QtWidgets import QApplication, QMainWindow

LETTERS = 'abcdefghijklm'


def main():
application = QApplication(sys.argv)
main_window = MainWindow()
main_window.show()
sys.exit(application.exec_())


class TreeViewModel(QStandardItemModel):
def __init__(self, *args, **kwargs):
super(TreeViewModel, self).__init__(*args, **kwargs)

def populate(self): # This is where the work is done
self.clear()
self.setHorizontalHeaderLabels(['Name', 'UUID', 'Attr1'])

parents_uuids = []

for i in range(16):
name = random.choice(LETTERS) \
+ random.choice(LETTERS) \
+ random.choice(LETTERS)
uuid_ = str(uuid.uuid4())
attr1 = str(random.random())

row = [QStandardItem(name),
QStandardItem(uuid_),
QStandardItem(attr1)]

if len(parents_uuids) < 4:
self.appendRow(row)
parents_uuids.append(uuid_)
else:
# TODO: Fix this else clause so it'd make the new row a child
# The parent row must be found by its UUID column str value
parent_uuid = random.choice(parents_uuids)
parent = self.findItems(parent_uuid, Qt.MatchExactly, 1)
parent.appendRow(row) # Error


class MainWindow(QMainWindow):
def __init__(self):
super().__init__()
self.ui = Ui_MainWindow()
self.ui.setupUi(self)
self.ui.actionPopulateTree.triggered \
.connect(self.on_action_populate_tree)
self.ui.treeView.setModel(TreeViewModel(self))

def on_action_populate_tree(self):
self.ui.treeView.model().populate()


class Ui_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName("MainWindow")
MainWindow.resize(320, 240)
self.centralwidget = QtWidgets.QWidget(MainWindow)
self.centralwidget.setObjectName("centralwidget")
self.gridLayout = QtWidgets.QGridLayout(self.centralwidget)
self.gridLayout.setObjectName("gridLayout")
self.treeView = QtWidgets.QTreeView(self.centralwidget)
self.treeView.setObjectName("treeView")
self.gridLayout.addWidget(self.treeView, 0, 0, 1, 1)
MainWindow.setCentralWidget(self.centralwidget)
self.toolBar = QtWidgets.QToolBar(MainWindow)
self.toolBar.setObjectName("toolBar")
MainWindow.addToolBar(QtCore.Qt.TopToolBarArea, self.toolBar)
self.actionPopulateTree = QtWidgets.QAction(MainWindow)
self.actionPopulateTree.setObjectName("actionPopulateTree")
self.toolBar.addAction(self.actionPopulateTree)

self.retranslateUi(MainWindow)
QtCore.QMetaObject.connectSlotsByName(MainWindow)

def retranslateUi(self, MainWindow):
_translate = QtCore.QCoreApplication.translate
MainWindow.setWindowTitle(_translate("MainWindow", "MainWindow"))
self.toolBar.setWindowTitle(_translate("MainWindow", "toolBar"))
self.actionPopulateTree.setText(_translate("MainWindow", "PopulateTree"))


if __name__ == "__main__":
main()

最佳答案

findItems 返回与搜索匹配的项目列表,因此在您的情况下,您只需要获取第一个项目,但仍然无法添加项目,因为您必须将第 0 列中的项目作为父项,但您已经获得了第 1 列中的项目,因此其他逻辑部分将获取该项目:

parent_uuid = random.choice(parents_uuids)
items = self.findItems(parent_uuid, Qt.MatchExactly, 1)
if items:
ix = self.indexFromItem(items[0])
ix_col_0 = self.sibling(ix.row(), 0, ix)
it_col_0 = self.itemFromIndex(ix_col_0)
it_col_0.appendRow(row)

enter image description here

关于python - 如何将子行添加到由特定列值找到的 QTreeView 行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53660898/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com