104 lines
3.9 KiB
Python
104 lines
3.9 KiB
Python
from datetime import datetime
|
|
|
|
from PySide6.QtCore import QAbstractTableModel, QModelIndex
|
|
from PySide6.QtGui import Qt
|
|
|
|
from model_config import KontorModelConfig
|
|
|
|
|
|
class KontorTableModel(QAbstractTableModel):
|
|
|
|
def __init__(self, model_config: KontorModelConfig):
|
|
super().__init__()
|
|
self._main_window = model_config.main_window
|
|
self._config = model_config
|
|
self._data = []
|
|
|
|
def refresh(self):
|
|
data = self._config.get_data()
|
|
count = 0
|
|
# print(data)
|
|
if data is not None:
|
|
self.beginResetModel()
|
|
self._data.clear()
|
|
self._data = data
|
|
self.endResetModel()
|
|
count = len(data)
|
|
# print(data)
|
|
# print(self._data)
|
|
self.layoutChanged.emit()
|
|
self._main_window.statusBar.showMessage(f"{count} Einträge geladen", 3000)
|
|
|
|
def rowCount(self, parent=QModelIndex()):
|
|
# The length of the outer list.
|
|
if self._data is None:
|
|
return 0
|
|
return len(self._data)
|
|
|
|
def headerData(self, col, orientation, role=Qt.ItemDataRole.DisplayRole):
|
|
if orientation == Qt.Orientation.Horizontal and role == Qt.ItemDataRole.DisplayRole:
|
|
return self._config.header[col]['label']
|
|
if orientation == Qt.Orientation.Vertical and role == Qt.ItemDataRole.DisplayRole:
|
|
return str(col+1)
|
|
|
|
def data(self, index, role=Qt.ItemDataRole.DisplayRole):
|
|
if self._data is None:
|
|
return None
|
|
value = self._data[index.row()][index.column()]
|
|
if role == Qt.ItemDataRole.DisplayRole:
|
|
# print('{}: {}'.format(value, type(value)))
|
|
if isinstance(value, datetime):
|
|
return value.strftime("%Y-%m-%d %M:%M:%S")
|
|
if isinstance(value, str):
|
|
return value
|
|
if isinstance(value, bytes):
|
|
if value == b'\x01':
|
|
return self._main_window.tick
|
|
else:
|
|
return self._main_window.cross
|
|
if isinstance(value, int):
|
|
if value == 1:
|
|
return self._main_window.tick
|
|
else:
|
|
return self._main_window.cross
|
|
if isinstance(value, bool):
|
|
if value:
|
|
return self._main_window.tick
|
|
else:
|
|
return self._main_window.cross
|
|
return str(value)
|
|
if role == Qt.ItemDataRole.DecorationRole:
|
|
if isinstance(value, bytes):
|
|
# print('{}: {}'.format(value, type(value)))
|
|
if value == b'\x01':
|
|
return self._main_window.tick
|
|
else:
|
|
return self._main_window.cross
|
|
if isinstance(value, int):
|
|
if value == 1:
|
|
return self._main_window.tick
|
|
else:
|
|
return self._main_window.cross
|
|
if isinstance(value, bool):
|
|
if value:
|
|
return self._main_window.tick
|
|
else:
|
|
return self._main_window.cross
|
|
|
|
def columnCount(self, index=QModelIndex()):
|
|
# The following takes the first sub-list, and returns
|
|
# the length (only works if all rows are an equal length)
|
|
# print(f"Header count: {len(self._config.get_header())}")
|
|
return len(self._config.header)
|
|
|
|
def setData(self, index, value, role=Qt.ItemDataRole.EditRole):
|
|
if role == Qt.ItemDataRole.EditRole:
|
|
self._data[index.row()][index.column()] = value
|
|
if role == Qt.ItemDataRole.CheckStateRole:
|
|
checked = value == Qt.CheckState.Checked
|
|
self._data[index.row()][index.column()] = checked
|
|
return True
|
|
|
|
def flags(self, index):
|
|
return Qt.ItemFlag.ItemIsSelectable | Qt.ItemFlag.ItemIsEnabled | Qt.ItemFlag.ItemIsEditable | Qt.ItemFlag.ItemIsUserTristate
|