1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
/*
* Copyright (C) 2023, KylinSoft Co., Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*
**/
#include "timelabel.h"
#include "QApplication"
#include <QDebug>
#include <QDateTime>
TimeLabel::TimeLabel(QWidget *parent) :
FixLabel(parent)
{
QFont font = QApplication::font();
if (QLocale::system().amText() == "སྔ་དྲོ་") {
font.setPixelSize(font.pointSize() * 20 / 11);
} else {
font.setPixelSize(font.pointSize() * 28 / 11);
}
font.setWeight(QFont::Medium);
font.setBold(true);
this->setFont(font);
this->setAlignment(Qt::AlignVCenter);
this->setContentsMargins(0, 0, 0, 0);
this->setObjectName("timeClockLable");
timerID = startTimer(1000);
areaInterface = new QDBusInterface("org.ukui.ukcc.session",
"/Area",
"org.ukui.ukcc.session.Area",
QDBusConnection::sessionBus(),
this);
if (areaInterface) {
timeFormat = areaInterface->property("timeFormat").toString();
} else {
if (!areaInterface->isValid()) {
qCritical() << "org.ukui.ukcc.session.Area DBus error:" << areaInterface->lastError();
}
}
setTimeText();
}
TimeLabel::~TimeLabel()
{
killTimer(timerID);
}
void TimeLabel::timerEvent(QTimerEvent *e)
{
if (e->timerId() == timerID) {
setTimeText();
}
}
void TimeLabel::setTimeText()
{
QString currentsecStr;
QDateTime datetime = QDateTime::currentDateTime();
if (areaInterface->property("timeFormat").toString() == "24") {
currentsecStr = datetime.toString("hh : mm : ss");
} else {
if (QLocale::system().amText() == QString("上午") || QLocale::system().amText() == QString("སྔ་དྲོ་")) {
currentsecStr = datetime.toString("AP hh: mm : ss");
} else {
currentsecStr = datetime.toString("hh: mm : ss AP");
}
}
QString dateString;
if ("cn" == areaInterface->property("dateFormat").toString()) {
dateString = datetime.toString("yyyy/MM/dd ddd").replace("周", "星期");
} else {
dateString = datetime.toString("yyyy-MM-dd ddd").replace("周", "星期");
}
if (dateString != date) {
date = dateString;
Q_EMIT dateChanged();
}
setText(currentsecStr);
}
QString TimeLabel::dateText()
{
return date;
}
|