5 |
5 |
6 """ |
6 """ |
7 Module implementing a specialized tab bar for the web browser. |
7 Module implementing a specialized tab bar for the web browser. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import Qt, QPoint, QTimer, QEvent |
10 from PyQt6.QtCore import QEvent, QPoint, Qt, QTimer |
11 from PyQt6.QtWidgets import QLabel |
11 from PyQt6.QtWidgets import QLabel |
12 |
12 |
|
13 from eric7 import Preferences |
|
14 from eric7.EricWidgets.EricPassivePopup import EricPassivePopup, EricPassivePopupStyle |
13 from eric7.EricWidgets.EricTabWidget import EricWheelTabBar |
15 from eric7.EricWidgets.EricTabWidget import EricWheelTabBar |
14 from eric7.EricWidgets.EricPassivePopup import EricPassivePopup, EricPassivePopupStyle |
|
15 |
|
16 from eric7 import Preferences |
|
17 |
16 |
18 |
17 |
19 class WebBrowserTabBar(EricWheelTabBar): |
18 class WebBrowserTabBar(EricWheelTabBar): |
20 """ |
19 """ |
21 Class implementing the tab bar of the web browser. |
20 Class implementing the tab bar of the web browser. |