Files
one-tomato/toptime.cpp
T
2020-08-14 20:27:22 +08:00

19 lines
440 B
C++

#include "toptime.h"
#include <QDateTime>
topTime::topTime(QObject *parent) : QObject(parent)
{
current_time = QDateTime::currentDateTime();
str=current_time.toString("hh:mm");
timer=new QTimer(this);
connect(timer,&QTimer::timeout,this,&topTime::refresh);
timer->start(1000);
}
void topTime::refresh()
{
current_time = QDateTime::currentDateTime();
str=current_time.toString("hh:mm");
emit refreshed();
}