• 大小: 6KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-06
  • 语言: 其他
  • 标签: 时钟  

资源简介

显示当前时间,也可以自己设置时间,用QT开发的,直接打开.pro文件运行即可

资源截图

代码片段和文件信息

#include
#include
#include
#include
#include
#include
#include
#include

#include “clock.h“

clock::clock(QWidget *parent)
    : QWidget(parent)
{
//  The QTimer class provides a high-level programming interface for timers.
//  To use it create a QTimer connect its timeout() signal to the appropriate slots and call start().
//  From then on it will emit the timeout() signal at constant intervals.

    timer1=new QTimer(this);
    connect(timer1SIGNAL(timeout())thisSLOT(newtime()));
    timer1->start(1000);
  timer=new QTimer(this);
   connect(timerSIGNAL(timeout())thisSLOT(update()));
   timer->start(1000);

   setWindowtitle(tr(“clock“));
   state=0;
   hour=0;
   minute=0;
   second=0;

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1020  2017-07-24 19:20  thirdtask-F\aaaaaaaaaaaa.pro

     文件      23883  2017-07-25 17:02  thirdtask-F\aaaaaaaaaaaa.pro.user

     文件       4671  2017-07-25 10:34  thirdtask-F\clock.cpp

     文件        468  2017-07-25 08:47  thirdtask-F\clock.h

     文件        173  2017-07-24 19:20  thirdtask-F\main.cpp

     文件       2163  2017-07-25 10:44  thirdtask-F\three.cpp

     文件        489  2017-07-24 19:21  thirdtask-F\three.h

     目录          0  2017-07-25 17:02  thirdtask-F

----------- ---------  ---------- -----  ----

                32867                    8


评论

共有 条评论