欢迎来到入门教程网!

C语言

当前位置:主页 > 软件编程 > C语言 >

QTimer与QTime实现电子时钟

来源:本站原创|时间:2020-01-10|栏目:C语言|点击:

本文实例为大家分享了QTimer与QTime实现电子时钟的具体代码,供大家参考,具体内容如下

使用QLCDNumber控件进行显示

QLCDNumber控件默认只显示5个字符,可以使用setDigitCount(int size)进行设置显示个数

使用Display(QString str) 设置显示内容

该函数拥有多个重载,字符 整型 浮点型都可以作为参数 

效果图:

 

代码:头文件

#include <QLCDNumber>
 
class NumClock : public QLCDNumber
{
  Q_OBJECT
public:
  explicit NumClock(QWidget *parent = nullptr);
  void mousePressEvent(QMouseEvent *event);
  void mouseMoveEvent(QMouseEvent *event);
 
signals:
 
public slots:
  void updateTime();
 
private:
  QTimer * timer;
  QPoint mouseOfPonit; // 鼠标坐标跟窗口左上角坐标的偏移值
  bool showColon;       //是否显示:
};

cpp文件:

#include "numclock.h"
#include <QTimer>
#include <QTime>
#include <QMouseEvent>
#include <QDebug>
 
NumClock::NumClock(QWidget *parent) : QLCDNumber(parent)
{
  timer = new QTimer(this);
  timer->setTimerType(Qt::PreciseTimer); // 设置精度为较高精度,差距在毫秒内
  timer->start(1000);
  connect(timer, SIGNAL(timeout()), this, SLOT(updateTime()),Qt::QueuedConnection);
 
  setWindowFlag(Qt::FramelessWindowHint); //没有面板边框标题栏的窗体
  setWindowOpacity(0.5); //设置窗口的透明度
 
  showColon = true;
 
  this->setDigitCount(8);
  resize(150, 100);
 
  updateTime();
 
 
  setAttribute(Qt::WA_DeleteOnClose);
}
 
void NumClock::mousePressEvent(QMouseEvent *event)
{
  if(event->button() == Qt::LeftButton){
    mouseOfPonit = event->globalPos() - this->pos();
    event->accept();
  }else{
    close();
  }
}
 
void NumClock::mouseMoveEvent(QMouseEvent *event)
{
  if(event->buttons() & Qt::LeftButton){
    move(event->globalPos() - mouseOfPonit);
    event->accept();
  }
}
 
void NumClock::updateTime()
{
  QString timeStr = QTime::currentTime().toString("hh:mm:ss");
  if(showColon){
    timeStr = timeStr.replace(QString(":"), QString(" "));
    qDebug() << timeStr;
    showColon = false;
  }else{
    timeStr = timeStr.replace(QString(" "), QString(":"));
    showColon = true;
    qDebug() << timeStr;
  }
  display(timeStr);
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

上一篇:C++执行Linux Bash命令的方法

栏    目:C语言

下一篇:谈谈vector的特殊性之为什么它不是STL容器

本文标题:QTimer与QTime实现电子时钟

本文地址:https://www.xiuzhanwang.com/a1/Cyuyan/228.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有