日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Qt工作笔记-时QLabel具有点击事件(使用EventFilter)

發(fā)布時間:2025/3/15 编程问答 11 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Qt工作笔记-时QLabel具有点击事件(使用EventFilter) 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

運行截圖如下:

代碼如下:

widget.h

#ifndef WIDGET_H #define WIDGET_H#include <QWidget>namespace Ui { class Widget; }class Widget : public QWidget {Q_OBJECTpublic:explicit Widget(QWidget *parent = 0);bool eventFilter(QObject *watched, QEvent *event);~Widget();private:Ui::Widget *ui; };#endif // WIDGET_H

widget.cpp

#include "widget.h" #include "ui_widget.h" #include <QMouseEvent> #include <QDebug>Widget::Widget(QWidget *parent) :QWidget(parent),ui(new Ui::Widget) {ui->setupUi(this);ui->blueLabel->installEventFilter(this);ui->redLabel->installEventFilter(this);ui->greenLabel->installEventFilter(this);this->setWindowTitle("CSDN IT1995"); }bool Widget::eventFilter(QObject *watched, QEvent *event){if(watched==ui->blueLabel){QMouseEvent *mouseEvent=static_cast<QMouseEvent*>(event);if(mouseEvent->button()==Qt::RightButton){ui->blueLabel->setStyleSheet("color:blue");}if(mouseEvent->button()==Qt::LeftButton){ui->blueLabel->setStyleSheet("color:black");}}if(watched==ui->redLabel){QMouseEvent *mouseEvent=static_cast<QMouseEvent*>(event);if(mouseEvent->button()==Qt::RightButton){ui->redLabel->setStyleSheet("color:red");}if(mouseEvent->button()==Qt::LeftButton){ui->redLabel->setStyleSheet("color:black");}}if(watched==ui->greenLabel){QMouseEvent *mouseEvent=static_cast<QMouseEvent*>(event);if(mouseEvent->button()==Qt::RightButton){ui->greenLabel->setStyleSheet("color:green");}if(mouseEvent->button()==Qt::LeftButton){ui->greenLabel->setStyleSheet("color:black");}}return false; }Widget::~Widget() {delete ui; }


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工作笔记-时QLabel具有点击事件(使用EventFilter)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。