91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Qt學習: QTimerEvent定時器事件的處理程序代碼示例

發布時間:2020-08-11 23:41:09 來源:網絡 閱讀:1097 作者:閉上左眼 欄目:編程語言

重要函數: 
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

滦南县| 明星| 安仁县| 开封县| 赣州市| 南丰县| 高要市| 马关县| 嘉义市| 保山市| 周口市| 郑州市| 集安市| 酒泉市| 蓝田县| 凤城市| 宾川县| 新巴尔虎左旗| 黔南| 武城县| 景泰县| 尤溪县| 嘉峪关市| 罗山县| 新田县| 攀枝花市| 延吉市| 屏南县| 田东县| 堆龙德庆县| 彰化县| 乌鲁木齐市| 延边| 平利县| 华亭县| 错那县| 阳东县| 随州市| 临漳县| 玉门市| 牙克石市|