19 |
19 |
20 class BookmarksMenu(E5ModelMenu): |
20 class BookmarksMenu(E5ModelMenu): |
21 """ |
21 """ |
22 Class implementing the bookmarks menu base class. |
22 Class implementing the bookmarks menu base class. |
23 |
23 |
24 @signal openUrl(const QUrl&, const QString&) emitted to open a URL in the current |
24 @signal openUrl(QUrl, str) emitted to open a URL in the current tab |
25 tab |
25 @signal newUrl(QUrl, str) emitted to open a URL in a new tab |
26 @signal newUrl(const QUrl&, const QString&) emitted to open a URL in a new tab |
|
27 """ |
26 """ |
28 openUrl = pyqtSignal(QUrl, str) |
27 openUrl = pyqtSignal(QUrl, str) |
29 newUrl = pyqtSignal(QUrl, str) |
28 newUrl = pyqtSignal(QUrl, str) |
30 |
29 |
31 def __init__(self, parent = None): |
30 def __init__(self, parent = None): |