fixed many things and added search
This commit is contained in:
parent
c6220b1dc1
commit
cbc6755791
10 changed files with 128 additions and 75 deletions
|
@ -44,6 +44,10 @@ class WebViewCreator(QtWebKit.QWebView):
|
|||
self.actions = []
|
||||
QtWebKit.QWebSettings.globalSettings().setAttribute(QtWebKit.QWebSettings.DeveloperExtrasEnabled, True)
|
||||
|
||||
def copy_link():
|
||||
self.page().triggerAction(QtWebKit.QWebPage.CopyLinkToClipboard)
|
||||
self.action_copy_link = QtGui.QAction('Copy Lin&k', self, triggered=copy_link)
|
||||
|
||||
def context_menu_requested(self, point):
|
||||
context_menu = QtGui.QMenu()
|
||||
|
||||
|
|
Reference in a new issue