我目前正在使用处理点击的功能连接此信号。例如:
QtCore.QObject.connect(self.ui.webView, QtCore.SIGNAL("linkClicked (const QUrl&)"), self.navigate)
def navigate(self, url):
#do something
我想要的是导航功能,以确定鼠标左键或右键是否点击了链接。像
这样的东西def navigate(self, url, event):
if event == Qt.LeftClick:
#do something
if event == Qt.MidClick:
#do something else
这可能吗?
答案 0 :(得分:1)
您应该继承QWebView
,并覆盖mousePressEvent
。您可以使用QMouseEvent
的{{3}}函数将按下的按钮存储在变量中。
在你的插槽中,你可以简单地检查按下的最后一个按钮的值,并按照你想要的方式处理它。
答案 1 :(得分:1)
另一种方法是重新实现mousePressEvent
并在那里过滤鼠标事件:
#!/usr/bin/env python
#-*- coding:utf-8 -*-
from PyQt4 import QtCore, QtGui
class myWindow(QtGui.QWidget):
def __init__(self, parent=None):
super(myWindow, self).__init__(parent)
self.label = QtGui.QLabel(self)
self.label.setText("Click Me")
self.layout = QtGui.QHBoxLayout(self)
self.layout.addWidget(self.label)
def mousePressEvent(self, event):
if event.buttons() == QtCore.Qt.LeftButton:
self.label.setText("Left Mouse Click!")
elif event.buttons() == QtCore.Qt.RightButton:
self.label.setText("Right Mouse Click!")
return super(myWindow, self).mousePressEvent(event)
if __name__ == "__main__":
import sys
app = QtGui.QApplication(sys.argv)
app.setApplicationName('myWindow')
main = myWindow()
main.resize(150, 150)
main.show()
sys.exit(app.exec_())
答案 2 :(得分:0)
如果您查看文档,可以看到有关QMouseEvent中按下了哪些按钮的信息,您可以在事件过滤器中处理它们:QMouseEvent.button docs。