5 |
5 |
6 """ |
6 """ |
7 Module implementing a tool bar showing bookmarks. |
7 Module implementing a tool bar showing bookmarks. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSignal, Qt, QUrl, QCoreApplication |
10 from PyQt6.QtCore import QCoreApplication, Qt, QUrl, pyqtSignal |
11 from PyQt6.QtGui import QCursor |
11 from PyQt6.QtGui import QCursor |
|
12 from PyQt6.QtWebEngineCore import QWebEnginePage |
12 from PyQt6.QtWidgets import QMenu |
13 from PyQt6.QtWidgets import QMenu |
13 from PyQt6.QtWebEngineCore import QWebEnginePage |
|
14 |
14 |
15 from eric7.EricWidgets.EricModelToolBar import EricModelToolBar |
15 from eric7.EricWidgets.EricModelToolBar import EricModelToolBar |
16 |
16 |
17 from .BookmarksModel import BookmarksModel |
17 from .BookmarksModel import BookmarksModel |
18 |
18 |