我有一些由我自己的类表示的数据,为了解决这些问题,我给出了一个例子。
class MyOwnModel():
def __init__(self, name="", number=0):
self.name = name
self.number = number然后,我有了这样一个实例的列表,我想在QTableView中表示这些实例。
li = [MyOwnModel("a", 1), MyOwnModel("b", 2)]然后,我看到了两种策略,通过这两种策略来制作QTableView:
MyOwnModel,使其子类为QAbstractTableModelQAbstractTableModel,它以其属性为两个QString的方式模仿MyOwnModel,并将dataChanged信号连接到一个更新MyOwnModel实例的函数我对所有这些都不完全满意,但我暂时没有其他的想法。
哪一个最适合我的问题?(我在实践中有一个更复杂的类,但我想使用相同的框架)
发布于 2015-06-11 09:03:23
正如注释中所述,您的模型是您的对象列表。您应该用子类QAbstractTableModel来使用这个列表。
下面是我的代码片段:
import sys
import signal
import PyQt4.QtCore as PCore
import PyQt4.QtGui as PGui
class OneRow(PCore.QObject):
def __init__(self):
self.column0="text in column 0"
self.column1="text in column 1"
class TableModel(PCore.QAbstractTableModel):
def __init__(self):
super(TableModel,self).__init__()
self.myList=[]
def addRow(self,rowObject):
row=len(self.myList)
self.beginInsertRows(PCore.QModelIndex(),row,row)
self.myList.append(rowObject)
self.endInsertRows()
#number of row
def rowCount(self,QModelIndex):
return len(self.myList)
#number of columns
def columnCount(self,QModelIndex):
return 2
#Define what do you print in the cells
def data(self,index,role):
row=index.row()
col=index.column()
if role==PCore.Qt.DisplayRole:
if col==0:
return str( self.myList[row].column0)
if col==1:
return str( self.myList[row].column1)
#Rename the columns
def headerData(self,section,orientation,role):
if role==PCore.Qt.DisplayRole:
if orientation==PCore.Qt.Horizontal:
if section==0:
return str("Column 1")
elif section==1:
return str("Column 2")
if __name__=='__main__':
PGui.QApplication.setStyle("plastique")
app=PGui.QApplication(sys.argv)
#Model
model=TableModel()
model.addRow(OneRow())
model.addRow(OneRow())
#View
win=PGui.QTableView()
win.setModel(model)
#to be able to close wth ctrl+c
signal.signal(signal.SIGINT, signal.SIG_DFL)
#to avoid warning when closing
win.setAttribute(PCore.Qt.WA_DeleteOnClose)
win.show()
sys.exit(app.exec_())myList的每个元素都是表中的一行。
https://stackoverflow.com/questions/30761249
复制相似问题