91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 40KB
    文件類型: .gz
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2021-06-05
  • 語(yǔ)言: 其他
  • 標(biāo)簽: qt??電子時(shí)鐘??

資源簡(jiǎn)介

qt改進(jìn)的電子時(shí)鐘,并加上類似photoshop啟動(dòng)時(shí)的歡迎界面 感興趣的可以參考

資源截圖

代碼片段和文件信息

#include?“digiclock.h“
#include?

DigiClock::DigiClock(QWidget?*parent)
:?QLCDNumber(parent)
{
????QTest::qWait(2000);
????QPalette?p?=?palette();
????p.setColor(QPalette::WindowQt::darkGreen);
????setPalette(p);

????setWindowFlags(Qt::framelessWindowHint);
????setframestyle(Qframe::Panel?|?Qframe::Raised);
????this->setNumDigits(19);

????setGeometry(QApplication::desktop()->width()?/?2?-?200?QApplication::desktop()->height()?/?2?-?25?400?50);

????QTimer?*timer?=?new?QTimer(this);
????connect(timer?SIGNAL(timeout())?this?SLOT(showTime()));

????timer->start(500);
????showTime();
showColon=true;
}

void?DigiClock::showTime()
{
?????QDateTime?time?=?QDateTime::currentDateTime();
?????QString?text?=?time.toString(“yyyy-MM-dd?hh:MM:ss“);

?????if(showColon)?{
????????text[16]?=?‘:‘;
????? showColon?=?false;
?????}
?????else?{
????????text[16]?=?‘?‘;
????? showColon?=?true;?????
?????}
?????display(text);
}
?
void?DigiClock::mousePressEvent(QMouseEvent?*?e)
{
????if?(e->button()?==?Qt::LeftButton)?{
???? dragPosition?=?e->globalPos()?-?frameGeometry().topLeft();
???? e->accept();
????}
????if?(e->button()?==?Qt::RightButton)?{
???? close();
????}????
}

void?DigiClock::mouseMoveEvent(QMouseEvent?*?e)
{
????if?(e->buttons()?&?Qt::LeftButton)?{
???? move(e->globalPos()?-?dragPosition);
???? e->accept();
????}
}

評(píng)論

共有 條評(píng)論