Я определил свой пользовательский QAbstrtactTableModel
в python и реализовал columnCount()
, rowCount()
, data()
и headerData()
, а также добавил функцию к add()
новым записям:
import sys
from PySide2.QtUiTools import QUiLoader
from PySide2.QtWidgets import QApplication, QMainWindow
from PySide2.QtCore import QFile, QProcess, Signal,\
Slot, QObject, QThread, Qt, QAbstractTableModel, QModelIndex,\
QTimer
import random
class TableModel(QAbstractTableModel):
def __init__(self, values):
QAbstractTableModel.__init__(self)
self.values = values
def columnCount(self, parent=QModelIndex()):
return 2
def rowCount(self, parent=QModelIndex()):
return len(self.values)
def data(self, index, role=Qt.DisplayRole):
print("called")
if 0 <= index.row() < self.rowCount() and 0 <= index.column() < self.columnCount():
if role == Qt.DisplayRole:
print(index.row())
if index.column() == 0:
return list(self.values.keys())[index.row()]
else:
return self.values[list(self.values.keys())[index.row()]]
def add(self, data):
self.values[data[0]] = data[1]
def headerData(self, section, orientation, role=Qt.DisplayRole):
if role == Qt.DisplayRole:
if orientation == Qt.Horizontal:
if section == 0:
return "Parking,Meter"
elif section == 1:
return "Revenue"
class Monitor(QObject):
data_batch_ready = Signal(list)
def __init__(self, parent=None):
super(Monitor, self).__init__(parent)
@Slot(list)
def fill_batch(self):
my_data = []
for parking in range(4):
for index in range(10):
my_data.append([str(parking)+","+str(index), random.randint(1,101)])
self.data_batch_ready.emit(my_data)
class Gui(QMainWindow):
system_process = QProcess()
parking_model = TableModel(values={"0,0": "0"})
def __init__(self, parent=None):
super(Gui, self).__init__(parent)
file = QFile("minimal.ui")
file.open(QFile.ReadOnly)
loader = QUiLoader()
ui = loader.load(file)
self.setCentralWidget(ui)
self.centralWidget().parking_table.setModel(self.parking_model)
@Slot(list)
def update_gui_revenue(self, data):
print("fire")
for row in data:
self.parking_model.add(row)
def main():
app = QApplication(sys.argv)
gui = Gui()
gui.show()
thread = QThread()
moni = Monitor()
timer = QTimer(moni)
timer.setInterval(1)
moni.moveToThread(thread)
moni.data_batch_ready.connect(gui.update_gui_revenue, Qt.QueuedConnection)
timer.timeout.connect(moni.fill_batch, Qt.QueuedConnection)
thread.started.connect(timer.start)
thread.started.connect(lambda: print("time started"))
thread.start()
sys.exit(app.exec_())
if __name__ == "__main__":
main()
Данные представляют собой словарь Python, который изменяется путем вызова случайной функции, которая заполняет словарь 1 записью каждую 1 секунду следующим образом:
"0,0": [случайное значение]
"0, 1 ": [случайное значение]
" 0,2 ": [случайное значение]
" 1,0 ": [случайное значение]
" 1,1 ": [случайное значение]
«1,2»: [случайное значение]
rowCount()
правильно отражает количество строк в данных values
, но tableView
отображает только 1 строку все время, а data()
только запрос index.row() == 0
РЕДАКТИРОВАТЬ: добавлено timer.setInterval(1)