10 import pathlib |
10 import pathlib |
11 |
11 |
12 from PyQt6.QtCore import pyqtSignal, Qt, QItemSelectionModel, QSortFilterProxyModel |
12 from PyQt6.QtCore import pyqtSignal, Qt, QItemSelectionModel, QSortFilterProxyModel |
13 from PyQt6.QtWidgets import QTreeView, QAbstractItemView, QHeaderView, QMenu, QDialog |
13 from PyQt6.QtWidgets import QTreeView, QAbstractItemView, QHeaderView, QMenu, QDialog |
14 |
14 |
15 from EricWidgets.EricApplication import ericApp |
15 from eric7.EricWidgets.EricApplication import ericApp |
16 |
16 |
17 from Globals import recentNameBreakpointFiles, recentNameBreakpointConditions |
17 from eric7.Globals import recentNameBreakpointFiles, recentNameBreakpointConditions |
18 |
18 |
19 import Preferences |
19 from eric7 import Preferences |
20 |
20 |
21 |
21 |
22 class BreakPointViewer(QTreeView): |
22 class BreakPointViewer(QTreeView): |
23 """ |
23 """ |
24 Class implementing the Breakpoint viewer widget. |
24 Class implementing the Breakpoint viewer widget. |