动态按钮 - 打开文件,读取文本并将其插入相应的列

时间:2017-07-07 22:42:37

标签: python pyqt python-3.5 pyqt5

我的代码动态创建了一些用户从标记为self.numberLine的QlineEdit框输入的按钮。每个按钮将打开文件对话框,允许用户指定一个文件,它搜索文件然后将文本插入相应的QlineEdit。我遇到的问题是我无法识别哪个按钮被按下,所以我无法填写相应的列QLineEdit字段。

我有点工作,但当我点击第二个按钮时,它只是添加到第一列而不是第二列

清除按钮不执行任何操作

实施例: 如果用户在numberLine小部件中输入'3'并单击'ok',它将创建3列小部件,其中顶部小部件将是为用户打开文件对话框的按钮。下面的其他小部件是QlineEdit条目

在旁注中,当用户更改其编号时,它会创建正确数量的列,但在选择要搜索的文件时,它不会插入任何内容。

任何线索我错过了什么?

图像

    spacer1 = QtWidgets.QSpacerItem(0, 0, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
    spacer2 = QtWidgets.QSpacerItem(0, 0, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)

    self.hbutton.addItem(spacer1)
    self.hbutton.addItem(spacer2)
    self.hboxlayout = QtWidgets.QHBoxLayout()
    self.hboxlayout0 = QtWidgets.QHBoxLayout()
    self.hboxlayout1 = QtWidgets.QHBoxLayout()
    self.hboxlayout2 = QtWidgets.QHBoxLayout()
    self.hboxlayout3 = QtWidgets.QHBoxLayout()
    self.hboxlayout4 = QtWidgets.QHBoxLayout()
    self.hboxlayout5 = QtWidgets.QHBoxLayout()

    self.gridLayout_12.addLayout(self.hbutton, 1, 1, 1, 1)
    self.gridLayout_12.addLayout(self.hboxlayout, 0, 1, 1, 1)
    self.gridLayout_12.addLayout(self.hboxlayout0, 1, 1, 1, 1)
    self.gridLayout_12.addLayout(self.hboxlayout1, 2, 1, 1, 1)
    self.gridLayout_12.addLayout(self.hboxlayout2, 3, 1, 1, 1)
    self.gridLayout_12.addLayout(self.hboxlayout3, 4, 1, 1, 1)
    self.gridLayout_12.addLayout(self.hboxlayout4, 6, 1, 1, 1)
    self.gridLayout_12.addLayout(self.hboxlayout5, 7, 1, 1, 1)
    self.pushButton_9.clicked.connect(self.addLineEdit)

    self.numberLine = QtWidgets.QLineEdit()
    self.numberLine.setMaximumSize(QtCore.QSize(60, 16777215))
    self.numberLine.setObjectName("self.numberLine")
    self.horizontalLayout_7.addWidget(self.numberLine)
    self.Array = []
    self.PDiffEntryList = []

def clearLayout(self):
    # del self.Array[:]
    while  self.hboxlayout0.count():
        child =  self.hboxlayout.takeAt(0)
        child1 = self.hboxlayout0.takeAt(0)
        child2 = self.hboxlayout1.takeAt(0)
        child3 = self.hboxlayout2.takeAt(0)
        child4 = self.hboxlayout3.takeAt(0)
        child5 = self.hboxlayout4.takeAt(0)
        child6 = self.hboxlayout5.takeAt(0)
        if child.widget():
            child.widget().deleteLater()
        if child1.widget():
            child1.widget().deleteLater()
        if child2.widget():
            child2.widget().deleteLater()
        if child3.widget():
            child3.widget().deleteLater()
        if child4.widget():
            child4.widget().deleteLater()
        if child5.widget():
            child5.widget().deleteLater()
        if child6.widget():
            child6.widget().deleteLater()

def addLineEdit(self):
    try:
        self.clearLayout()
        self.FileButton = {}
        for i in range(int(self.numberLine.text())):
            self.FileButton[i] = QtWidgets.QPushButton(self.centralwidget)
            self.FileButton[i].setText('File')
            self.FileButton[i].setMaximumSize(QtCore.QSize(50, 16777215))
            self.hboxlayout.addWidget(self.FileButton[i])
            self.FileButton[i].clicked.connect(lambda i=i: self.openfile(i))

            self.le = QtWidgets.QLineEdit()
            self.le.setMaximumSize(QtCore.QSize(50, 16777215))
            self.hboxlayout0.addWidget(self.le)

            self.le1 = QtWidgets.QLineEdit()
            self.le1.setMaximumSize(QtCore.QSize(50, 16777215))
            self.hboxlayout1.addWidget(self.le1)

            self.le2 = QtWidgets.QLineEdit()
            self.le2.setMaximumSize(QtCore.QSize(50, 16777215))
            self.hboxlayout2.addWidget(self.le2)

            self.le3 = QtWidgets.QLineEdit()
            self.le3.setMaximumSize(QtCore.QSize(50, 16777215))
            self.hboxlayout3.addWidget(self.le3)

            self.le4 = QtWidgets.QLineEdit()
            self.le4.setMaximumSize(QtCore.QSize(50, 16777215))
            self.hboxlayout4.addWidget(self.le4)

            self.le5 = QtWidgets.QLineEdit()
            self.le5.setMaximumSize(QtCore.QSize(50, 16777215))
            self.hboxlayout5.addWidget(self.le5)
            self.PDiffEntryList.append(self.le)
    except:
        print('')
def searchfile(self,dir):
    try:
        with open(dir) as f:
            content = f.readlines()

            # # Main Info - Ps, Pd, Ts
            MainList = content[44].split()
            RPM = str(round(float(MainList[0]), 2))
            Ps = str(round(float(MainList[1]), 2))
            Ts = str(round(float(MainList[2]), 2))
            Pd = str(round(float(MainList[3]), 2))
            Ratio = str(round(Pd / Ps, 2))
            DiffP = str(round(Pd - Ps, 2))
            self.input(i)
    except:
        print('Only out files')
def input(self,i):
    if i == 0:
        print('0')
    elif i == 1:
        print('1')
def openfile(self,i):
    filename = QtWidgets.QFileDialog.getOpenFileName(self, 'Choose file')
    dir = filename[0]
    directory = os.path.split(dir)[0]
    self.searchfile(dir,i)

1 个答案:

答案 0 :(得分:1)

你正在做很多奇怪的事情。例如,不确定为什么要声明“i”全局或您选择的变量名称。但是,要解决您的主要问题,您将遍历for循环,在该循环中您反复创建具有相同名称的对象。

 try:
        self.clearLayout()
        self.file_buttons = {}
        for i in range(int(self.numberLine.text())):
            self.file_buttons[i] = QtWidgets.QPushButton(self.centralwidget)

现在您可以参考self.file_buttons [i]以获取要对按钮进行的​​任何更改,但实际上每次都将其存储为单独的对象。这同样适用于您创建的所有行编辑变量。

一般情况下,您似乎一遍又一遍地创建相同的对象,只写出不同的名称(object1,object2等)。这是一个使用数组或字典迭代并创建所有这些的好机会。它可以更容易地跟踪正在发生的事情并且更加灵活。