5 |
5 |
6 """ |
6 """ |
7 Module implementing the watch expression viewer widget. |
7 Module implementing the watch expression viewer widget. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import Qt, QModelIndex, QItemSelectionModel, QSortFilterProxyModel |
10 from PyQt6.QtCore import QItemSelectionModel, QModelIndex, QSortFilterProxyModel, Qt |
11 from PyQt6.QtWidgets import QTreeView, QAbstractItemView, QMenu, QHeaderView, QDialog |
11 from PyQt6.QtWidgets import QAbstractItemView, QDialog, QHeaderView, QMenu, QTreeView |
12 |
12 |
|
13 from eric7 import Utilities |
|
14 from eric7.EricWidgets import EricMessageBox |
13 from eric7.EricWidgets.EricApplication import ericApp |
15 from eric7.EricWidgets.EricApplication import ericApp |
14 from eric7.EricWidgets import EricMessageBox |
|
15 |
|
16 from eric7 import Utilities |
|
17 |
16 |
18 |
17 |
19 class WatchPointViewer(QTreeView): |
18 class WatchPointViewer(QTreeView): |
20 """ |
19 """ |
21 Class implementing the watch expression viewer widget. |
20 Class implementing the watch expression viewer widget. |