5 |
5 |
6 """ |
6 """ |
7 Module implementing the search bar for the web browser. |
7 Module implementing the search bar for the web browser. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot, Qt |
10 from PyQt6.QtCore import Qt, pyqtSlot |
11 from PyQt6.QtGui import QPalette |
11 from PyQt6.QtGui import QPalette |
12 from PyQt6.QtWidgets import QWidget |
12 from PyQt6.QtWidgets import QWidget |
13 |
13 |
|
14 from eric7.EricGui import EricPixmapCache |
|
15 |
14 from .Ui_SearchWidget import Ui_SearchWidget |
16 from .Ui_SearchWidget import Ui_SearchWidget |
15 |
|
16 from eric7.EricGui import EricPixmapCache |
|
17 |
17 |
18 |
18 |
19 class SearchWidget(QWidget, Ui_SearchWidget): |
19 class SearchWidget(QWidget, Ui_SearchWidget): |
20 """ |
20 """ |
21 Class implementing the search bar for the web browser. |
21 Class implementing the search bar for the web browser. |