温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Qt学习: QTimerEvent定时器事件的处理程序代码示例

发布时间:2020-08-11 23:41:09 来源:网络 阅读:1086 作者:闭上左眼 栏目:编程语言

重要函数: 
1.int startTimer(int); //设置定时器,返回一个ld. 
2.int event->timerld(); //返回当前的ld. 
3.void killTimer(int); //停止定时器.


首先从Qt设计师中拖拽出三个按钮,由于只是演示定时器事件的使用,所以就没有布局的需要了. 
 Qt学习: QTimerEvent定时器事件的处理程序代码示例


以下是”c.cpp”的代码:

#include "c.h"c::c(QWidget *parent)
    : QMainWindow(parent)
{
    ui.setupUi(this);    //连接信号与槽.
    connect(ui.startButton, SIGNAL(clicked()), this, SLOT(startTimerSlot()));
    connect(ui.stopButton, SIGNAL(clicked()), this, SLOT(stopTimerSlot()));
}

c::~c()
{

}void c::timerEvent(QTimerEvent*event)
{    //判断当前定时器对应的是哪个ld.
    if (event->timerId() == this->m_lamp)
    {        if (this->m_lampStatus == false)
        {            //设置按钮的图标.
            ui.toolButton->setIcon(QIcon("Icons/lamp.png"));            this->m_lampStatus = true;
        }        else
        {
            ui.toolButton->setIcon(QIcon("Icons/space.png")); 
            this->m_lampStatus = false;
        }
    }
}void c::startTimerSlot()
{    //设置定时器,返回一个timerld.注意单位为毫秒,1000毫秒等于1秒.
    this->m_lamp = this->startTimer(1000);
}void c::stopTimerSlot()
{    //停止定时器.
    this->killTimer(this->m_lamp);
}12345678910111213141516171819202122232425262728293031323334353637383940414243444546

以下是”c.h”的代码:

#ifndef C_H#define C_H#include <QtWidgets/QMainWindow>#include "ui_c.h"#include <QLabel>#include <QTimerEvent>class c : public QMainWindow
{
    Q_OBJECTpublic:    c(QWidget *parent = 0);
    ~c();protected:
    //这是一个虚函数,从QEvent继承而来.    void timerEvent(QTimerEvent*event);private slots:    void startTimerSlot();    void stopTimerSlot();private:
    Ui::cClass ui;    int m_lamp;    bool m_lampStatus = false;
};#endif // C_H12345678910111213141516171819202122232425262728293031

最后是”main.cpp”的代码:

#include "c.h"#include <QtWidgets/QApplication>int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    c w;
    w.show();    return a.exec();
}


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI