As extension to my previous question我添加了一个copy_button。当用户向单元格输入输入时,用户希望选择一行,然后单击copy_button复制内容,并在所选行下方添加具有相同内容的新行。下面的代码假设要完成它的工作,它会根据用户的需要添加一个新行,是否期望其内容不会被复制?我尝试打印以查看问题。我将Qtablewidget项目添加到空列表中,然后在循环之前打印该列表,并看到其中添加了内容。可以,但是在setItem
方法之后打印项目将返回空。这与序列化表的过程相同。我还想序列化整个表并将其粘贴回去。
在for循环之前和之后列出打印内容。
我的代码:
import sys
from PyQt5 import QtCore, QtGui, QtWidgets, Qt
class loadtable(QtWidgets.QTableWidget):
def __init__(self, parent=None):
super(loadtable, self).__init__(1, 5,parent)
self.setColumnCount(5)
self.setRowCount(1)
self.setFont(QtGui.QFont("Helvetica", 10, QtGui.QFont.Normal, italic=False))
headertitle = ("A","B","C","D","E")
QtWidgets.QTableWidgetItem(headertitle[i]))
self.setHorizontalHeaderLabels(headertitle)
self.verticalHeader().setVisible(False)
self.horizontalHeader().setHighlightSections(False)
self.horizontalHeader().setSectionResizeMode(QtWidgets.QHeaderView.Fixed)
self.setSelectionMode(QtWidgets.QAbstractItemView.NoSelection)
self.setColumnWidth(0, 130)
combox_lay = QtWidgets.QComboBox(self)
combox_lay.addItems(["I","II"])
self.setCellWidget(0, 4, combox_lay)
self.cellChanged.connect(self._cellclicked)
def _cellclicked(self):
self.value = self.currentItem()
self.value.setTextAlignment(Qt.AlignCenter)
@QtCore.pyqtSlot()
def _addrow(self):
rowcount = self.rowCount()
print(rowcount)
self.setRowCount(rowcount+1)
combox_add = QtWidgets.QComboBox(self)
combox_add.addItems(["I","II"])
self.setCellWidget(rowcount, 4, combox_add)
@QtCore.pyqtSlot()
def _removerow(self):
if self.rowCount() > 0:
self.removeRow(self.rowCount()-1)
@QtCore.pyqtSlot()
def _cellselected(self):
r = self.currentRow()
c = self.columnCount()
cell = []
for i in range(c):
if i == c-1:
it = self.cellWidget(r , i)
else:
it = self.item(r , i)
cell.append(it)
self.setcopy(cell,r,c)
def setcopy(self,cell,r,c):
self.insertRow(r+1)
print(cell)
for j in range(c):
if j < c-1:
it = self.setItem(r+1, j,cell[j])
else:
it = self.setCellWidget(r+1, j, cell[j])
print(it)
return it
class thirdtabloads(QtWidgets.QWidget):
def __init__(self, parent=None):
super(thirdtabloads, self).__init__(parent)
table = loadtable()
button_layout = QtWidgets.QVBoxLayout()
add_button = QtWidgets.QPushButton("Add")
add_button.clicked.connect(table._addrow)
delete_button = QtWidgets.QPushButton("Delete")
delete_button.clicked.connect(table._removerow)
copy_button = QtWidgets.QPushButton("Copy")
copy_button.clicked.connect(table._cellselected)
button_layout = QtWidgets.QVBoxLayout()
button_layout.addWidget(add_button, alignment=QtCore.Qt.AlignBottom)
button_layout.addWidget(delete_button, alignment=QtCore.Qt.AlignTop)
button_layout.addWidget(copy_button, alignment=QtCore.Qt.AlignTop)
tablehbox = QtWidgets.QHBoxLayout()
tablehbox.setContentsMargins(10,10,10,10)
tablehbox.addWidget(table)
grid = QtWidgets.QGridLayout(self)
grid.addLayout(button_layout, 0, 1)
grid.addLayout(tablehbox, 0, 0)
if __name__ == '__main__':
app = QtWidgets.QApplication(sys.argv)
w = thirdtabloads()
w.show()
sys.exit(app.exec_())
答案 0 :(得分:0)
首先,setItem()
方法不会返回任何内容,因为它是 setter ,因此,如果要查找项目是否存在,必须使用{{1 }}方法,是 getter 。
要解决此问题,您已经注意到必须复制2个元素:item()
和用QTableWidgetItem
设置的小部件。如果要复制setCellWidget()
,则必须使用其QTableWidgetItem
方法,对于小部件,没有方法可以执行此操作,因此必须创建一个方法来复制必要的内容,例如我的解决方案展示了如何从clone()
复制项目,如果您有其他小部件,则必须实现更多代码。最后总是检查一下,例如QComboBox
可以为-1,而什么都没有选择。
currentRow