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