5 |
5 |
6 """ |
6 """ |
7 Module implementing the log viewer widget and the log widget. |
7 Module implementing the log viewer widget and the log widget. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt5.QtCore import pyqtSignal, Qt, QRegularExpression |
10 from PyQt6.QtCore import pyqtSignal, Qt, QRegularExpression |
11 from PyQt5.QtGui import QBrush, QTextCursor, QTextDocument |
11 from PyQt6.QtGui import QBrush, QTextCursor, QTextDocument |
12 from PyQt5.QtWidgets import ( |
12 from PyQt6.QtWidgets import ( |
13 QTextEdit, QApplication, QMenu, QWidget, QHBoxLayout, QSizePolicy |
13 QTextEdit, QApplication, QMenu, QWidget, QHBoxLayout, QSizePolicy |
14 ) |
14 ) |
15 |
15 |
16 from E5Gui.E5Application import e5App |
16 from E5Gui.E5Application import e5App |
17 |
17 |