9 |
9 |
10 from PyQt6.QtCore import pyqtSlot, Qt, QItemSelectionModel |
10 from PyQt6.QtCore import pyqtSlot, Qt, QItemSelectionModel |
11 from PyQt6.QtGui import QBrush, QTextCursor |
11 from PyQt6.QtGui import QBrush, QTextCursor |
12 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QListWidgetItem, QAbstractButton |
12 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QListWidgetItem, QAbstractButton |
13 |
13 |
14 from EricWidgets.EricApplication import ericApp |
14 from eric7 import Globals, Preferences, Utilities |
15 from EricWidgets import EricMessageBox |
15 from eric7.EricWidgets.EricApplication import ericApp |
|
16 from eric7.EricWidgets import EricMessageBox |
16 |
17 |
17 from .Ui_HistoryDialog import Ui_HistoryDialog |
18 from .Ui_HistoryDialog import Ui_HistoryDialog |
18 |
|
19 import Globals |
|
20 import Utilities |
|
21 import Preferences |
|
22 |
19 |
23 |
20 |
24 class HistoryDialog(QDialog, Ui_HistoryDialog): |
21 class HistoryDialog(QDialog, Ui_HistoryDialog): |
25 """ |
22 """ |
26 Class implementing the History dialog. |
23 Class implementing the History dialog. |