src/eric7/WebBrowser/WebBrowserTabBar.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9413
80c06d472826
child 9653
e67609152c5e
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
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.

eric ide

mercurial