如何遍历使用QStandardItemModel创建的复选框的动态创建列表?

问题描述 投票:0回答:1

我正在创建一个应用程序,在该应用程序中,我需要做一个清单,并列出另一个班级给我的清单。用户将选中所需项目旁边的复选框,然后单击一个按钮。对于已检查的那些行,我要打印“您检查的号码___”。在相邻的QBoxGroup的QLabel中。

((在我的实际应用程序中,我正在遍历类,在类中将在其中调用函数)。我很难遍历列表,因为我必须检查是否选中了该框,并且该名称是否是我要打印的名称(打印的语句与实际名称不同,因为在我的应用程序中我将在我所在的类的类中调用一个函数。

我也不确定如何处理该问题,如果用户使用QLabel选中了多个框,我可以打印多个语句。我可能必须将其设置为用户一次只能选择一行的地方,但这是一个比上面的问题小的问题。

from PyQt5.QtWidgets import (QApplication, QTabWidget, QVBoxLayout, QWidget, QGridLayout, QLabel, QGroupBox,
                             QListView, QPushButton)
from PyQt5.QtGui import QStandardItem, QStandardItemModel
from PyQt5.QtCore import Qt
import sys, os

class MyPage(QWidget):
    def __init__(self):

        super().__init__()
        self.app = QApplication(sys.argv)
        self.screen = self.app.primaryScreen()
        self.size = self.screen.size()
        self.mydata = None

        # These numbers are arbitrary and seemed
        # to have the best balance
        self.textWidth = self.size.width() * 0.64
        self.chooseWidth = self.size.width() * 0.29

        self.createTextGroup()
        self.createStatsGroup()

        self.layout = QGridLayout()
        self.layout.addWidget(self.TextGroup, 0, 0, 0, 1)
        self.layout.addWidget(self.StatsGroup, 0, 1)
        self.setLayout(self.layout)
        self.show()

    # The left side of AnalysisTab containing the textbox
    # where the analysis will be shown
    def createTextGroup(self):
        self.TextGroup = QGroupBox("Analysis")
        self.TextGroup.setFixedWidth(self.textWidth)
        self.setStyleSheet("font: 15pt Tw Cen MT")

        # Here is where the analysis will go
        self.analysis = QLabel()

        self.layout = QGridLayout()
        self.layout.addWidget(self.analysis)
        self.TextGroup.setLayout(self.layout)

    # The right side of AnalysisTab containing a checklist of tests that
    # may be run on the data and a button to press to run the tests
    def createStatsGroup(self):
        self.StatsGroup = QGroupBox("Statistics Tests")
        self.StatsGroup.setFixedWidth(self.chooseWidth)
        self.setStyleSheet("font: 15pt Tw Cen MT")

        # List widgets where users will choose what analysis
        # they would like ran on their data
        self.statsAnalysis = QListView()
        self.model = QStandardItemModel(self.statsAnalysis)

        for member in myList(self):
            item = QStandardItem(member)
            item.setCheckable(True)
            check = Qt.Unchecked
            item.setCheckState(check)
            self.model.appendRow(item)

        self.statsButton = QPushButton("Analyze")
        self.statsButton.clicked.connect(self.statsButtonClicked)

        self.statsAnalysis.setModel(self.model)
        self.layout = QGridLayout()
        self.layout.addWidget(self.statsAnalysis, 0, 0, 0, 1)
        self.layout.addWidget(self.statsButton, 1, 1)
        self.StatsGroup.setLayout(self.layout)

    def statsButtonClicked(self):
        model2 = self.model
        for index in range(model2.rowCount()):
            item = model2.item(index)
            if item.checkState() == Qt.Unchecked and item == "One":
                self.analysis.setText("You checked number 1")
            elif item.checkState() == Qt.Unchecked and item == "One":
                self.analysis.setText("You checked number 2")
            elif item.checkState() == Qt.Unchecked and item == "One":
                self.analysis.setText("You checked number 3")
            elif item.checkState() == Qt.Unchecked and item == "One":
                self.analysis.setText("You checked number 4")
            elif item.checkState() == Qt.Unchecked and item == "One":
                self.analysis.setText("You checked number 5")
            else:
                self.analysis.setText("You didn't check anything")

def myList(self):
    thisList = ["One", "Two", "Three", "Four", "Five"]
    return thisList

def runStatsWiz():
    app = QApplication(sys.argv)
    myPage = MyPage()
    myPage.show()
    app.exec_()


runStatsWiz()

现在,statsButtonClicked()函数返回TypeError: 'QStandardItemModel' object is not callable

我已经尝试了这些StackOverflow页面上的信息,但似乎无法弄清楚如何查看该行的名称以及是否选中该行:

python pyqt pyqt5 qstandarditemmodel
1个回答
1
投票
另一方面,您的逻辑是不正确的,因为例如未定义为row,另一方面,假设该错误不存在,并且已使用逻辑检查了2个选项,则您正在编写“数字X”,然后将其替换为“您检查的数字Y”。

逻辑是将已检查项目的文本保存在列表中,如果该列表不为空,则串联信息,否则指示未检查任何项目。

def statsButtonClicked(self): checked_options = [] for index in range(self.model.rowCount()): item = self.model.item(index) if item is not None and item.checkState() == Qt.Checked: checked_options.append(item.text()) if checked_options: self.analysis.setText( "\n".join(["You checked number {}".format(option) for option in checked_options]) ) else: self.analysis.setText("You didn't check anything")

© www.soinside.com 2019 - 2024. All rights reserved.