QT对Label控件实现鼠标的单击和右击事件处理

简简单单一个小例子,学会使用事件过滤器实现鼠标的单击和右击操作

程序的目录结构
QT对Label控件实现鼠标的单击和右击事件处理UI的设计结构
QT对Label控件实现鼠标的单击和右击事件处理
拖放进去label之后,会发现运行时label的位置不明显,不方便测试,好解决,给label加边框线,具体操作是右键->控件->改变样式表
然后输入下面代码

border-width:2px;
border-style:solid;
border-color:rgb(0,127,127);

此时,label的边框就有颜色了
下面直接上代码
首先是widget.h

#ifndef WIDGET_H
#define WIDGET_H

#include <QWidget>
#include <QDebug>
#include <QEvent>
#include <QMouseEvent>
#include <QLabel>




namespace Ui {
class Widget;
}

class Widget : public QWidget
{
    Q_OBJECT

public:
    explicit Widget(QWidget *parent = 0);
    ~Widget();
signals:
    void sendObject(QObject *t);
private slots:
    bool eventFilter(QObject *watched, QEvent *event);
private:
    Ui::Widget *ui;
};

#endif // WIDGET_H

然后是widget.cpp

#include "widget.h"
#include "ui_widget.h"

Widget::Widget(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::Widget)
{
    ui->setupUi(this);

    ui->label->installEventFilter(this);

}

Widget::~Widget()
{
    delete ui;
}

bool Widget::eventFilter(QObject *watched, QEvent *event)
{
    if(watched == ui->label)
    {
        if(event->type() == QEvent::MouseButtonPress)
        {
            QMouseEvent *e = static_cast<QMouseEvent *>(event);
            if(e->button() == Qt::LeftButton)
            {
                qDebug()<<"单击";
            }
            if(e->button()==Qt::RightButton)
            {
                qDebug()<<"右击";
            }
            emit sendObject(ui->label);
        }
    }
}



最后是main.cpp

#include "widget.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    Widget w;
    w.show();

    return a.exec();
}

程序运行效果如下
QT对Label控件实现鼠标的单击和右击事件处理

同样,如果觉得复制代码后项目运行不成功,那么链接直达去下载本项目
https://download.csdn.net/download/weixin_43552197/35104185

上一篇:Qt+MPlayer音乐播放器开发笔记(一):ubuntu上编译MPlayer以及Demo演示


下一篇:Qt右键菜单