7 Module implementing the history tree model. |
7 Module implementing the history tree model. |
8 """ |
8 """ |
9 |
9 |
10 import bisect |
10 import bisect |
11 |
11 |
12 from PyQt6.QtCore import Qt, QModelIndex, QDate, QAbstractProxyModel |
12 from PyQt6.QtCore import QAbstractProxyModel, QDate, QModelIndex, Qt |
|
13 |
|
14 from eric7.EricGui import EricPixmapCache |
13 |
15 |
14 from .HistoryModel import HistoryModel |
16 from .HistoryModel import HistoryModel |
15 |
|
16 from eric7.EricGui import EricPixmapCache |
|
17 |
17 |
18 |
18 |
19 class HistoryTreeModel(QAbstractProxyModel): |
19 class HistoryTreeModel(QAbstractProxyModel): |
20 """ |
20 """ |
21 Class implementing the history tree model. |
21 Class implementing the history tree model. |