概述
widget.h
#ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
#include <QDebug>
namespace Ui {
class Widget;
}
class Widget : public QWidget
{
Q_OBJECT
public:
int number = 0;
explicit Widget(QWidget *parent = 0);
~Widget();
bool eventFilter(QObject *obj, QEvent *e);
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->textEdit->setAttribute(Qt::WA_Hover,true);//开启悬停事件
ui->textEdit->installEventFilter(this);
}
Widget::~Widget()
{
delete ui;
}
bool Widget::eventFilter(QObject *obj, QEvent *e)
{
if(obj == ui->textEdit)
{
//if(e->type() == QEvent::Wheel)
if(e->type() == QEvent::HoverEnter)
{
qDebug() << "helloworld!";
qDebug() << number++;
}
}
}
最后
以上就是负责外套为你收集整理的QT 给控件添加事件过滤的全部内容,希望文章能够帮你解决QT 给控件添加事件过滤所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复