如何用PyQT区分左键双击与单击事件?

2026-05-24 23:381阅读0评论SEO教程
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计774个文字,预计阅读时间需要4分钟。

如何用PyQT区分左键双击与单击事件?

在PyQt中,没有直接提供左键双击的判断方法,需要自己实现。主要思路如下:

1. 创建一个定时器。

2.判断在指定时间内点击次数是否超过2次。

3.如果超过,则视为双击。

如何用PyQT区分左键双击与单击事件?

示例代码:

python

from PyQt5.QtCore import QTimer, Qtfrom PyQt5.QtWidgets import QApplication, QPushButton, QWidget

class DoubleClickWidget(QWidget): def __init__(self): super().__init__() self.initUI()

def initUI(self): self.button=QPushButton(Click me, self) self.button.setGeometry(50, 50, 100, 50) self.button.clicked.connect(self.on_button_clicked) self.click_count=0 self.timer=QTimer(self) self.timer.setInterval(500) # 设置定时器间隔为500毫秒 self.timer.timeout.connect(self.check_double_click)

def on_button_clicked(self): self.click_count +=1 self.timer.start()

def check_double_click(self): if self.click_count > 2: self.click_count=0 self.timer.stop() print(Double click detected) else: self.click_count=0 self.timer.stop()

if __name__==__main__: app=QApplication([]) widget=DoubleClickWidget() widget.show() app.exec_()

在PyQt中没有直接提供左键双击的判断方法,需要自己实现,其思路主要如下所示:

1、起动一个定时器,判断在指定的时间之内,点击次数超过2次,则视为双击(其主要思路判断两次点击的时间差在预测的条件以内)

2、 起动一个定时器,判断在指定的时间之内,点击次数超过2次,另外再获取鼠标点击的坐标,如果前后两次点击的坐标位置,属于同一个位置,满足这两个条件则判断为双击(其主要思路判断两次点击的时间差在预测的条件以内,且点击的坐标在预设的坐标之内,允许存在一定的偏差)

from PyQt5.QtCore import QTimer from PyQt5 import QtCore, QtGui, QtWidgets class myWidgets(QtWidgets.QTableWidget): def __init__(self, parent=None): super(myWidgets, self).__init__(parent) self.isDoubleClick = False self.mouse = "" def mousePressEvent(self, e): # 左键按下 if e.buttons() == QtCore.Qt.LeftButton: QTimer.singleShot(0, lambda: self.judgeClick(e)) # 右键按下 elif e.buttons() == QtCore.Qt.RightButton: self.mouse = "右" # 中键按下 elif e.buttons() == QtCore.Qt.MidButton: self.mouse = '中' # 左右键同时按下 elif e.buttons() == QtCore.Qt.LeftButton | QtCore.Qt.RightButton: self.mouse = '左右' # 左中键同时按下 elif e.buttons() == QtCore.Qt.LeftButton | QtCore.Qt.MidButton: self.mouse = '左中' # 右中键同时按下 elif e.buttons() == QtCore.Qt.MidButton | QtCore.Qt.RightButton: self.mouse = '右中' # 左中右键同时按下 elif e.buttons() == QtCore.Qt.LeftButton | QtCore.Qt.MidButton | QtCore.Qt.RightButton: self.mouse = '左中右' def mouseDoubleClickEvent(self,e): # 双击 self.mouse = "双击" self.isDoubleClick=True def judgeClick(self,e): if self.isDoubleClick== False: self.mouse="左" else: self.isDoubleClick=False self.mouse = "双击"

from PyQt5.QtCore import QTimer from PyQt5 import QtCore, QtGui, QtWidgets class myWidgets(QtWidgets.QTableWidget): def __init__(self, parent=None): super(myWidgets, self).__init__(parent) self.mouse = "" self.timer=QTimer(self) self.timer.timeout.connect(self.singleClicked) def singleClicked(self): if self.timer.isActive(): self.timer.stop() self.mouse="左" def mouseDoubleClickEvent(self,e): if self.timer.isActive() and e.buttons() ==QtCore.Qt.LeftButton: self.timer.stop() self.mouse="双击" super(myWidgets,self).mouseDoubleClickEvent(e) def mousePressEvent(self,e): if e.buttons()== QtCore.Qt.LeftButton: self.timer.start(1000) elif e.buttons()== QtCore.Qt.RightButton: self.mouse="右" super(myWidgets,self).mousePressEvent(e)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持易盾网络。

本文共计774个文字,预计阅读时间需要4分钟。

如何用PyQT区分左键双击与单击事件?

在PyQt中,没有直接提供左键双击的判断方法,需要自己实现。主要思路如下:

1. 创建一个定时器。

2.判断在指定时间内点击次数是否超过2次。

3.如果超过,则视为双击。

如何用PyQT区分左键双击与单击事件?

示例代码:

python

from PyQt5.QtCore import QTimer, Qtfrom PyQt5.QtWidgets import QApplication, QPushButton, QWidget

class DoubleClickWidget(QWidget): def __init__(self): super().__init__() self.initUI()

def initUI(self): self.button=QPushButton(Click me, self) self.button.setGeometry(50, 50, 100, 50) self.button.clicked.connect(self.on_button_clicked) self.click_count=0 self.timer=QTimer(self) self.timer.setInterval(500) # 设置定时器间隔为500毫秒 self.timer.timeout.connect(self.check_double_click)

def on_button_clicked(self): self.click_count +=1 self.timer.start()

def check_double_click(self): if self.click_count > 2: self.click_count=0 self.timer.stop() print(Double click detected) else: self.click_count=0 self.timer.stop()

if __name__==__main__: app=QApplication([]) widget=DoubleClickWidget() widget.show() app.exec_()

在PyQt中没有直接提供左键双击的判断方法,需要自己实现,其思路主要如下所示:

1、起动一个定时器,判断在指定的时间之内,点击次数超过2次,则视为双击(其主要思路判断两次点击的时间差在预测的条件以内)

2、 起动一个定时器,判断在指定的时间之内,点击次数超过2次,另外再获取鼠标点击的坐标,如果前后两次点击的坐标位置,属于同一个位置,满足这两个条件则判断为双击(其主要思路判断两次点击的时间差在预测的条件以内,且点击的坐标在预设的坐标之内,允许存在一定的偏差)

from PyQt5.QtCore import QTimer from PyQt5 import QtCore, QtGui, QtWidgets class myWidgets(QtWidgets.QTableWidget): def __init__(self, parent=None): super(myWidgets, self).__init__(parent) self.isDoubleClick = False self.mouse = "" def mousePressEvent(self, e): # 左键按下 if e.buttons() == QtCore.Qt.LeftButton: QTimer.singleShot(0, lambda: self.judgeClick(e)) # 右键按下 elif e.buttons() == QtCore.Qt.RightButton: self.mouse = "右" # 中键按下 elif e.buttons() == QtCore.Qt.MidButton: self.mouse = '中' # 左右键同时按下 elif e.buttons() == QtCore.Qt.LeftButton | QtCore.Qt.RightButton: self.mouse = '左右' # 左中键同时按下 elif e.buttons() == QtCore.Qt.LeftButton | QtCore.Qt.MidButton: self.mouse = '左中' # 右中键同时按下 elif e.buttons() == QtCore.Qt.MidButton | QtCore.Qt.RightButton: self.mouse = '右中' # 左中右键同时按下 elif e.buttons() == QtCore.Qt.LeftButton | QtCore.Qt.MidButton | QtCore.Qt.RightButton: self.mouse = '左中右' def mouseDoubleClickEvent(self,e): # 双击 self.mouse = "双击" self.isDoubleClick=True def judgeClick(self,e): if self.isDoubleClick== False: self.mouse="左" else: self.isDoubleClick=False self.mouse = "双击"

from PyQt5.QtCore import QTimer from PyQt5 import QtCore, QtGui, QtWidgets class myWidgets(QtWidgets.QTableWidget): def __init__(self, parent=None): super(myWidgets, self).__init__(parent) self.mouse = "" self.timer=QTimer(self) self.timer.timeout.connect(self.singleClicked) def singleClicked(self): if self.timer.isActive(): self.timer.stop() self.mouse="左" def mouseDoubleClickEvent(self,e): if self.timer.isActive() and e.buttons() ==QtCore.Qt.LeftButton: self.timer.stop() self.mouse="双击" super(myWidgets,self).mouseDoubleClickEvent(e) def mousePressEvent(self,e): if e.buttons()== QtCore.Qt.LeftButton: self.timer.start(1000) elif e.buttons()== QtCore.Qt.RightButton: self.mouse="右" super(myWidgets,self).mousePressEvent(e)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持易盾网络。