5 |
5 |
6 """ |
6 """ |
7 Module implementing a web search widget for the web browser. |
7 Module implementing a web search widget for the web browser. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt5.QtCore import pyqtSignal, QUrl, QModelIndex, QTimer, Qt |
10 from PyQt6.QtCore import pyqtSignal, QUrl, QModelIndex, QTimer, Qt |
11 from PyQt5.QtGui import ( |
11 from PyQt6.QtGui import ( |
12 QStandardItem, QStandardItemModel, QFont, QIcon, QPixmap |
12 QStandardItem, QStandardItemModel, QFont, QIcon, QPixmap |
13 ) |
13 ) |
14 from PyQt5.QtWidgets import QMenu, QCompleter |
14 from PyQt6.QtWidgets import QMenu, QCompleter |
15 from PyQt5.QtWebEngineWidgets import QWebEnginePage |
15 from PyQt6.QtWebEngineWidgets import QWebEnginePage |
16 |
16 |
17 import UI.PixmapCache |
17 import UI.PixmapCache |
18 |
18 |
19 import Preferences |
19 import Preferences |
20 |
20 |