# Table.py -- Pamhyr # Copyright (C) 2023-2026 INRAE # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # -*- coding: utf-8 -*- import logging import traceback from tools import trace, timer from PyQt5.QtCore import ( Qt, QVariant, QAbstractTableModel, QCoreApplication, QModelIndex, pyqtSlot, QRect, ) from PyQt5.QtWidgets import ( QDialogButtonBox, QPushButton, QLineEdit, QFileDialog, QTableView, QAbstractItemView, QUndoStack, QShortcut, QAction, QItemDelegate, QComboBox, ) from View.Ensembles.UndoCommand import ( SetNameCommand, SetTypeCommand, SetDataCommand, SetFunctionCommand, AddCommand, DelCommand, ) from View.Tools.PamhyrTable import PamhyrTableModel from View.Ensembles.Translate import * logger = logging.getLogger() _translate = QCoreApplication.translate class ComboBoxDelegate(QItemDelegate): def __init__(self, data=None, study=None, mode="stricklers", trad=None, parent=None): super(ComboBoxDelegate, self).__init__(parent) self._data = data self._study = study self._trad = trad self._mode = mode def createEditor(self, parent, option, index): self.editor = QComboBox(parent) if self._mode == "data_type": self.editor.addItems( [ self._trad["not_defined"], self._trad["strickler_minor"], self._trad["strickler_medium"], ] ) elif self._mode == "stricklers": self.editor.addItems( [self._trad["not_defined"]] + list( map( lambda s: str(s), self._study.river.stricklers.stricklers ) ) ) elif self._mode == "function": self.editor.addItems( [self._trad["not_defined"]] + list( map( lambda f: f.name, self._study._ens_functions.lst ) ) ) self.editor.setCurrentText(index.data(Qt.DisplayRole)) return self.editor def setEditorData(self, editor, index): value = index.data(Qt.DisplayRole) self.editor.currentTextChanged.connect(self.currentItemChanged) def setModelData(self, editor, model, index): text = str(editor.currentText()) if self._mode == "data_type": value = next( filter( lambda x: self._trad[x] == text, ["strickler_minor", "strickler_medium"], ), "" ) elif self._mode == "stricklers": value = next( filter( lambda s: str(s) == text, self._study.river.stricklers.stricklers ), None ) elif self._mode == "function": value = next( filter( lambda f: f.name == text, self._study._ens_functions.lst ), None ) else: value = text model.setData(index, value) editor.close() editor.deleteLater() def updateEditorGeometry(self, editor, option, index): r = QRect(option.rect) if self.editor.windowFlags() & Qt.Popup: if editor.parent() is not None: r.setTopLeft(self.editor.parent().mapToGlobal(r.topLeft())) editor.setGeometry(r) @pyqtSlot() def currentItemChanged(self): self.commitData.emit(self.sender()) class EnsembleTableModel(PamhyrTableModel): def _setup_lst(self): self._lst = self._data self._study = self._opt_data def data(self, index, role): if role != Qt.ItemDataRole.DisplayRole: return QVariant() row = index.row() column = index.column() if self._headers[column] == "name": return self._lst.get(row).name elif self._headers[column] == "type": return self._trad[self._lst.get(row).data_type] elif self._headers[column] == "target_data": value = self._lst.get(row).target_data if value is None: return self._trad["not_defined"] return str(value) elif self._headers[column] == "function": value = self._lst.get(row).function if value is None: return self._trad["not_defined"] return value.name elif self._headers[column] == "parameters": value = self._lst.get(row).params return str(value) return QVariant() def setData(self, index, value, role=Qt.EditRole): if not index.isValid() or role != Qt.EditRole: return False if self.is_same_data(index, value): return False row = index.row() column = index.column() try: if self._headers[column] == "name": self._undo.push( SetNameCommand( self._lst, row, value ) ) elif self._headers[column] == "type": self._undo.push( SetTypeCommand( self._lst, row, value ) ) elif self._headers[column] == "target_data": self._undo.push( SetDataCommand( self._lst, row, value ) ) elif self._headers[column] == "function": self._undo.push( SetFunctionCommand( self._lst, row, value ) ) except Exception as e: logger.info(e) logger.debug(traceback.format_exc()) self.dataChanged.emit(index, index) return True def add(self, row, parent=QModelIndex()): self.beginInsertRows(parent, row, row - 1) self._undo.push( AddCommand( self._lst, row, ) ) self.endInsertRows() self.layoutChanged.emit() def delete(self, rows, parent=QModelIndex()): self.beginRemoveRows(parent, rows[0], rows[-1]) self._undo.push( DelCommand( self._lst, rows ) ) self.endRemoveRows() self.layoutChanged.emit() def undo(self): self._undo.undo() self.layoutChanged.emit() def redo(self): self._undo.redo() self.layoutChanged.emit()