diff --git a/TermTk/TTkAbstract/__init__.py b/TermTk/TTkAbstract/__init__.py index 9ed30ad1..480cdc90 100644 --- a/TermTk/TTkAbstract/__init__.py +++ b/TermTk/TTkAbstract/__init__.py @@ -1,3 +1,4 @@ from .abstractscrollview import * from .abstractscrollarea import * from .abstractitemmodel import * +from .abstracttablemodel import * diff --git a/TermTk/TTkAbstract/abstracttablemodel.py b/TermTk/TTkAbstract/abstracttablemodel.py new file mode 100644 index 00000000..2b969229 --- /dev/null +++ b/TermTk/TTkAbstract/abstracttablemodel.py @@ -0,0 +1,47 @@ +# MIT License +# +# Copyright (c) 2024 Eugenio Parodi +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + +__all__ = ['TTkAbstractTableModel'] + +from TermTk.TTkCore.constant import TTkK +from TermTk.TTkCore.string import TTkString +from TermTk.TTkCore.signal import pyTTkSignal, pyTTkSlot + +class TTkAbstractTableModel(): + '''TTkAbstractTableModel''' + __slots__ = ( + # Signals + 'dataChanged' + ) + def __init__(self): + self.dataChanged = pyTTkSignal() + + def rowCount(self) -> int: + raise NotImplementedError() + def columnCount(self) -> int: + raise NotImplementedError() + def data(self, row:int, col:int) -> TTkString: + return TTkString() + def headerData(self, col:int, orientation:TTkK.Direction) -> TTkString: + return TTkString() + def sort(self, col:int, order) -> None: + pass