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