基于PyQT实现区分左键双击和单击

作者:Surpassme 时间:2022-10-30 01:58:47 

 在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)

来源:https://www.cnblogs.com/surpassme/p/12812346.html

标签:Py,QT,左键,双击,单击
0
投稿

猜你喜欢

  • Python 批量合并多个txt文件的实例讲解

    2022-09-18 07:39:47
  • Pandas中两个dataframe的交集和差集的示例代码

    2022-05-24 14:52:37
  • pytorch交叉熵损失函数的weight参数的使用

    2021-02-27 15:52:31
  • python中的try except与R语言中的tryCatch异常解决

    2021-10-22 02:24:48
  • Python第三方库xlrd/xlwt的安装与读写Excel表格

    2023-12-16 22:52:34
  • Python正则表达式使用经典实例

    2022-04-29 01:22:03
  • Python如何使用ConfigParser读取配置文件

    2023-11-03 03:05:30
  • Python 提取dict转换为xml/json/table并输出的实现代码

    2021-01-26 17:56:17
  • 基于python实现自动化办公学习笔记(CSV、word、Excel、PPT)

    2022-09-21 05:14:57
  • Python画图常用命令大全(详解)

    2023-04-17 15:20:16
  • Python正则表达式中的'r'用法总结

    2021-08-22 23:16:34
  • HTML5 离线存储之Web SQL

    2011-06-19 14:13:19
  • 提升你设计水平的CSS3新技术[译]

    2009-08-02 20:51:00
  • tensorflow 使用flags定义命令行参数的方法

    2021-03-20 10:43:23
  • 详解TensorFlow在windows上安装与简单示例

    2021-06-01 23:54:31
  • go和python变量赋值遇到的一个问题

    2023-11-15 01:54:40
  • Python list与NumPy array 区分详解

    2021-08-25 04:12:37
  • Python Pandas学习之基本数据操作详解

    2021-11-07 17:46:56
  • Python 迭代器Iterator详情

    2021-10-12 07:01:42
  • python 爬取知乎回答下的微信8.0状态视频

    2022-09-11 15:17:57
  • asp之家 网络编程 m.aspxhome.com