溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

qt事件過濾器如何使用

發(fā)布時間:2021-12-15 14:06:47 來源:億速云 閱讀:156 作者:iii 欄目:互聯(lián)網(wǎng)科技

這篇文章主要介紹“qt事件過濾器如何使用”,在日常操作中,相信很多人在qt事件過濾器如何使用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”qt事件過濾器如何使用”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

在嵌入式qt項目中,有時并不需求屏幕一直亮著,需要一段時間不操作時,將屏幕背光關(guān)掉,以達到節(jié)能的目的;

在qt項目中,可以通過重寫事件過濾器來實現(xiàn)屏幕操作的檢測,加上定時器的時間控制,可以實現(xiàn)指定時間內(nèi)沒有屏幕操作,給應用程序發(fā)送一個信號;

下面是我寫的一個測試代碼:

首先是事件過濾器的重寫代碼:

這里我把這個類做成單實例的了,這樣可以在應用程序中全局使用,(所有界面的類中都可以連接其超時信號)

ceventfilter.cpp

   
     
   
   
   #include "ceventfilter.h"#include <QDebug>#include <QEvent> CEventFilter::CEventFilter(QObject *parent) :    QObject(parent){    m_timeOutMSec = 30000;    m_eventTimer = new QTimer;    m_eventTimer->setInterval(m_timeOutMSec);    connect(m_eventTimer, SIGNAL(timeout()), this, SLOT(onTimerTimeOut()));     m_eventTimer->start(m_timeOutMSec); } CEventFilter::~CEventFilter(){    delete m_eventTimer;}  bool CEventFilter::eventFilter(QObject *ob, QEvent *e){    if( e->type()==QEvent::MouseMove||e->type()==QEvent::MouseButtonPress            ||e->type()==QEvent::MouseButtonRelease)//  判斷如果是鼠標移動事件    {        if(m_eventTimer->isActive())//have_dosthtimer很顯然是個定時器,在這判斷是否已經(jīng)開啟.        {            m_eventTimer->stop();            m_eventTimer->start();//如果已經(jīng)開啟,并且有鼠標移動事件就需要計時器重新計算(這里是30s)            //qDebug()<<"detect touch event,  restart timer, Event type: "<<e->type();        }    }     return QObject::eventFilter(ob,e);//這里是把事件發(fā)送出去,} //超時發(fā)送信號void CEventFilter::onTimerTimeOut(){    qDebug()<<m_timeOutMSec<<" ms not operation ...";    emit noOperationDetect();}//設(shè)置超時時間void CEventFilter::setTimeOutSecond(int sec){    m_timeOutMSec = sec*1000;    m_eventTimer->stop();    m_eventTimer->setInterval(m_timeOutMSec);    m_eventTimer->start(); } CEventFilter *CEventFilter::m_instance = NULL;CEventFilter *CEventFilter::getInstance(){    if ( m_instance == NULL )    {        m_instance = new CEventFilter;    }     return m_instance;}

頭文件:

ceventfilter.h

   
     
   
   
   #ifndef CEVENTFILTER_H#define CEVENTFILTER_H #include <QObject>#include <QTimer> #define TIME_OUT_TIME  30000 class CEventFilter : public QObject{    Q_OBJECTprotected:    explicit CEventFilter(QObject *parent = 0);    ~CEventFilter();    static CEventFilter *m_instance;    virtual bool eventFilter(QObject *ob, QEvent *e); //重寫事件過濾器 public:    static CEventFilter *getInstance();     void setTimeOutSecond(int sec);    //設(shè)置超時時間 signals:    void noOperationDetect();  //時間超時時發(fā)送信號 public slots:    void onTimerTimeOut(); private:    int m_timeOutMSec;         QTimer *m_eventTimer;}; #endif // CEVENTFILTER_H

調(diào)用代碼:

//獲取實例,連接槽函數(shù)    m_pEventFilter = CEventFilter::getInstance();    connect(m_pEventFilter, SIGNAL(noOperationDetect()), this, SLOT(onNoOperationDetect()));

這里做了一個按鈕,是交替斷開與連接事件過濾器超時信號的,為了測試信號的:

   
     
   
   
   void MainWindow::on_pushButton_clicked(){    m_pEventFilter->setTimeOutSecond(3);     if(m_connectFlag)    {        m_connectFlag = false;        qDebug()<<"diconnect signal slots";        ui->msg->setText("diconnect signal slots");        m_pEventFilter->disconnect();    }    else    {        m_connectFlag = true;        qDebug()<<"connect signal slots";        ui->msg->setText("connect signal slots");        connect(m_pEventFilter, SIGNAL(noOperationDetect()), this, SLOT(onNoOperationDetect()));    }}

槽函數(shù):

在界面上拉了一個label控件,用于顯示提示信息:

   
     
   
   
   void MainWindow::onNoOperationDetect(){    ui->msg->setText(QDateTime::currentDateTime().toString("yyyy-MM-dd hh:mm:ss")+": non operate detect");    qDebug()<<"non operate detect";}

這樣在超時時,會在label上顯示出來時間和信息:

這里我設(shè)置的是3s超時,如果鼠標不操作界面,3s會在label上更新顯示信息,如果一直點界面,就不會超時;

這個如果放在嵌入式設(shè)備上運行,用手觸摸屏幕也是一樣的效果,和用鼠標操作是一樣的

到此,關(guān)于“qt事件過濾器如何使用”的學習就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

qt
AI