2129 """ |
2129 """ |
2130 Private slot to show the bookmarks dialog. |
2130 Private slot to show the bookmarks dialog. |
2131 """ |
2131 """ |
2132 from .Bookmarks.BookmarksDialog import BookmarksDialog |
2132 from .Bookmarks.BookmarksDialog import BookmarksDialog |
2133 self.__bookmarksDialog = BookmarksDialog(self) |
2133 self.__bookmarksDialog = BookmarksDialog(self) |
2134 self.__bookmarksDialog.setAttribute(Qt.WA_DeleteOnClose) |
|
2135 self.__bookmarksDialog.openUrl.connect(self.openUrl) |
2134 self.__bookmarksDialog.openUrl.connect(self.openUrl) |
2136 self.__bookmarksDialog.newUrl.connect(self.openUrlNewTab) |
2135 self.__bookmarksDialog.newUrl.connect(self.openUrlNewTab) |
2137 self.__bookmarksDialog.show() |
2136 self.__bookmarksDialog.show() |
2138 |
2137 |
2139 def bookmarkAll(self): |
2138 def bookmarkAll(self): |
3457 """ |
3456 """ |
3458 Private slot to show the site info dialog. |
3457 Private slot to show the site info dialog. |
3459 """ |
3458 """ |
3460 from .SiteInfo.SiteInfoDialog import SiteInfoDialog |
3459 from .SiteInfo.SiteInfoDialog import SiteInfoDialog |
3461 self.__siteinfoDialog = SiteInfoDialog(self.currentBrowser(), self) |
3460 self.__siteinfoDialog = SiteInfoDialog(self.currentBrowser(), self) |
3462 self.__siteinfoDialog.setAttribute(Qt.WA_DeleteOnClose) |
|
3463 self.__siteinfoDialog.show() |
3461 self.__siteinfoDialog.show() |
3464 |
3462 |
3465 @classmethod |
3463 @classmethod |
3466 def userAgentsManager(cls): |
3464 def userAgentsManager(cls): |
3467 """ |
3465 """ |