python之pyqt专栏9-鼠标事件

目录

需求

UI界面

代码实现

代码解析:

Label初始化设置

重写鼠标按下事件

重写鼠标释放事件

重写鼠标移动事件

运行结果


需求

当鼠标进入窗口时,点击鼠标左键,出现一个label并在显示光标在窗口的坐标;按住左键不释放拖动鼠标,label的坐标信息跟着光标位置变化,当左键被释放时,label消失不见。

UI界面

创建一个QWidget窗口

代码实现

python 复制代码
# 导入sys模块
import sys

from PyQt6.QtCore import Qt
# PyQt6.QtWidgets模块中导入QApplication, QWidget
from PyQt6.QtWidgets import QApplication, QWidget,QLabel

# untitled模块中导入Ui_Form类
from untitled import Ui_Form


class MyMainForm(QWidget, Ui_Form):
    def __init__(self, parent=None):
        # 调用父类的构造函数
        super(MyMainForm, self).__init__(parent)
        # 调用继承Ui_Form过来的setupUi函数
        self.setupUi(self)

        self.label = QLabel(self)
        self.label.setText("x = 0, y = 0            ")
        self.label.hide()



    def mouseMoveEvent(self, a0):
        self.label.move(a0.pos())
        self.label.setText(f"x = {a0.pos().x()} , y = {a0.pos().y()}")

    def mousePressEvent(self, a0):
        if(a0.button() == Qt.MouseButton.LeftButton):
            self.label.show()
            self.label.move(a0.pos())
            self.label.setText(f"x = {a0.pos().x()} , y = {a0.pos().y()}")


    def mouseReleaseEvent(self, a0):
        if (a0.button() == Qt.MouseButton.LeftButton):
            self.label.hide()



# Press the green button in the gutter to run the script.
if __name__ == '__main__':
    # 实例化应用
    app = QApplication(sys.argv)
    # 实例化MyMainForm
    myw = MyMainForm()
    myw.show()
    # 启动应用程序的事件循环并等待用户交互,直到应用程序关闭。
    sys.exit(app.exec())

如果要在自己的部件上实现鼠标事件,可以根据需要在部件类对下面几种方法进行重写:

mousePressEvent(),鼠标按下事件

mouseReleaseEvent(),鼠标释放事件

mouseDoubleClickEvent(),鼠标双击事件

mouseMoveEvent(),鼠标移动事件

在个需求中,需要用到**mousePressEvent(),mouseReleaseEvent(),mouseMoveEvent()事件,**因此对他们进行重写。

此外,可以在QWidget的方法中找到它们

代码解析:

Label初始化设置
python 复制代码
self.label = QLabel(self)
self.label.setText("x = 0, y = 0            ")
self.label.hide()

1:在类的构造函数,添加一个label标签,并设置它的父对象是当前窗口

python 复制代码
self.label = QLabel(self)

2:设置Label文本内容,"y =0 "后面有很多空格,目的是为了占位,不然当坐标值变大会显示不全

python 复制代码
self.label.setText("x = 0, y = 0            ")

3.隐藏标签,根据需求点击的时候才能出现。

python 复制代码
self.label.hide()
重写鼠标按下事件
python 复制代码
    def mousePressEvent(self, a0):
        if(a0.button() == Qt.MouseButton.LeftButton):
            self.label.show()
            self.label.move(a0.pos())
            self.label.setText(f"x = {a0.pos().x()} , y = {a0.pos().y()}")

1.a0是事件对象,通过button()可以获取被按下的按键,而Qt.MouseButton是枚举,里面定义了鼠标按键编号

python 复制代码
if(a0.button() == Qt.MouseButton.LeftButton):

注:如果是鼠标多个按键同时被按下,可以调用通过buttons(),button只是返回一个按键

2.a0事件对象,通过调用pos获取,相对于当前窗口的位置。移动label到当前鼠标的位置

python 复制代码
 self.label.move(a0.pos())

3.将坐标信息设置为label的文本信息

python 复制代码
self.label.setText(f"x = {a0.pos().x()} , y = {a0.pos().y()}")
重写鼠标释放事件

当鼠标左键被释放时,隐藏label

python 复制代码
    def mouseReleaseEvent(self, a0):
        if (a0.button() == Qt.MouseButton.LeftButton):
            self.label.hide()
重写鼠标移动事件

获取鼠标位置,移动label到当前鼠标的位置;坐标信息设置为label的文本信息

python 复制代码
    def mouseMoveEvent(self, a0):
        self.label.move(a0.pos())
        self.label.setText(f"x = {a0.pos().x()} , y = {a0.pos().y()}")

运行结果

鼠标事件

相关推荐
懷淰メ32 分钟前
PyQt飞机大战游戏(附下载地址)
开发语言·python·qt·游戏·pyqt·游戏开发·pyqt5
小狮子安度因4 小时前
PyQt的安装和再PyCharm中的配置
ide·pycharm·pyqt
GIS 数据栈7 天前
博客摘录「 pyqt 为新建子线程传参以及子线程返回数据到主线程」2023年12月7日
笔记·python·pyqt·多线程·多线程通信
西木九10 天前
解决:WSL2可视化opencv和pyqt冲突:QObject::moveToThread
python·opencv·pyqt
充值内卷11 天前
PyQt入门指南五十一 文档与注释规范
开发语言·python·pyqt
王哈哈^_^14 天前
【数据集】【YOLO】【目标检测】树木倒塌识别数据集 9957 张,YOLO道路树木断裂识别算法实战训练教程!
人工智能·深度学习·算法·yolo·目标检测·计算机视觉·pyqt
王哈哈^_^14 天前
【数据集】【YOLO】【目标检测】航拍船只识别数据集 3550 张,YOLO航拍水面船只识别算法实战训练教程!
人工智能·深度学习·算法·yolo·目标检测·计算机视觉·pyqt
王哈哈^_^14 天前
【数据集】【YOLO】【目标检测】摔跤识别数据集 5097 张,YOLO行人摔倒识别算法实战训练教程!
人工智能·深度学习·算法·yolo·目标检测·计算机视觉·pyqt
充值内卷14 天前
PyQt入门指南四十四 打印与预览功能的实现
开发语言·python·pyqt
王哈哈^_^15 天前
【数据集】【YOLO】【目标检测】交通事故识别数据集 8939 张,YOLO道路事故目标检测实战训练教程!
前端·人工智能·深度学习·yolo·目标检测·计算机视觉·pyqt