7 Module implementing the Breakpoint viewer widget. |
7 Module implementing the Breakpoint viewer widget. |
8 """ |
8 """ |
9 |
9 |
10 from __future__ import unicode_literals |
10 from __future__ import unicode_literals |
11 |
11 |
12 from PyQt4.QtCore import pyqtSignal, Qt, qVersion |
12 from PyQt5.QtCore import pyqtSignal, Qt, qVersion, QItemSelectionModel, \ |
13 from PyQt4.QtGui import QTreeView, QAbstractItemView, QSortFilterProxyModel, \ |
13 QSortFilterProxyModel |
14 QHeaderView, QItemSelectionModel, QMenu, QDialog |
14 from PyQt5.QtWidgets import QTreeView, QAbstractItemView, QHeaderView, QMenu, \ |
|
15 QDialog |
15 |
16 |
16 from E5Gui.E5Application import e5App |
17 from E5Gui.E5Application import e5App |
17 |
18 |
18 |
19 |
19 class BreakPointViewer(QTreeView): |
20 class BreakPointViewer(QTreeView): |