/* * Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd. * * Author: sbw * * Maintainer: sbw * * 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 of the License, or * 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 . */ #include "datetimeplugin.h" #include #include #include #define PLUGIN_STATE_KEY "enable" #define TIME_FORMAT_KEY "24HourFormat" DatetimePlugin::DatetimePlugin(QObject *parent) : QObject(parent), m_dateTipsLabel(new TipsWidget), m_refershTimer(new QTimer(this)) { m_dateTipsLabel->setObjectName("datetime"); m_refershTimer->setInterval(1000); m_refershTimer->start(); m_centralWidget = new DatetimeWidget; connect(m_centralWidget, &DatetimeWidget::requestUpdateGeometry, [this] { m_proxyInter->itemUpdate(this, pluginName()); }); connect(m_refershTimer, &QTimer::timeout, this, &DatetimePlugin::updateCurrentTimeString); } const QString DatetimePlugin::pluginName() const { return "datetime"; } const QString DatetimePlugin::pluginDisplayName() const { return tr("Datetime"); } void DatetimePlugin::init(PluginProxyInterface *proxyInter) { m_proxyInter = proxyInter; m_centralWidget->set24HourFormat(m_proxyInter->getValue(this, TIME_FORMAT_KEY, true).toBool()); // transfer config QSettings settings("deepin", "dde-dock-datetime"); if (QFile::exists(settings.fileName())) { Dock::DisplayMode mode = displayMode(); const QString key = QString("pos_%1").arg(mode); proxyInter->saveValue(this, key, settings.value(key, mode == Dock::DisplayMode::Fashion ? 5 : -1)); QFile::remove(settings.fileName()); } if (!pluginIsDisable()) m_proxyInter->itemAdded(this, pluginName()); } void DatetimePlugin::pluginStateSwitched() { m_proxyInter->saveValue(this, PLUGIN_STATE_KEY, pluginIsDisable()); if (!pluginIsDisable()) m_proxyInter->itemAdded(this, pluginName()); else m_proxyInter->itemRemoved(this, pluginName()); } bool DatetimePlugin::pluginIsDisable() { return !(m_proxyInter->getValue(this, PLUGIN_STATE_KEY, true).toBool()); } int DatetimePlugin::itemSortKey(const QString &itemKey) { Q_UNUSED(itemKey); Dock::DisplayMode mode = displayMode(); const QString key = QString("pos_%1").arg(mode); if (mode == Dock::DisplayMode::Fashion) { return m_proxyInter->getValue(this, key, 3).toInt(); } else { return m_proxyInter->getValue(this, key, -1).toInt(); } } void DatetimePlugin::setSortKey(const QString &itemKey, const int order) { Q_UNUSED(itemKey); const QString key = QString("pos_%1").arg(displayMode()); m_proxyInter->saveValue(this, key, order); } QWidget *DatetimePlugin::itemWidget(const QString &itemKey) { Q_UNUSED(itemKey); return m_centralWidget; } QWidget *DatetimePlugin::itemTipsWidget(const QString &itemKey) { Q_UNUSED(itemKey); return m_dateTipsLabel; } const QString DatetimePlugin::itemCommand(const QString &itemKey) { Q_UNUSED(itemKey); return "dbus-send --print-reply --dest=com.deepin.Calendar /com/deepin/Calendar com.deepin.Calendar.RaiseWindow"; } const QString DatetimePlugin::itemContextMenu(const QString &itemKey) { Q_UNUSED(itemKey); QList items; items.reserve(1); QMap settings; settings["itemId"] = "settings"; if (m_centralWidget->is24HourFormat()) settings["itemText"] = tr("12 Hour Time"); else settings["itemText"] = tr("24 Hour Time"); settings["isActive"] = true; items.push_back(settings); QMap open; open["itemId"] = "open"; open["itemText"] = tr("Time Settings"); open["isActive"] = true; items.push_back(open); QMap menu; menu["items"] = items; menu["checkableMenu"] = false; menu["singleCheck"] = false; return QJsonDocument::fromVariant(menu).toJson(); } void DatetimePlugin::invokedMenuItem(const QString &itemKey, const QString &menuId, const bool checked) { Q_UNUSED(itemKey) Q_UNUSED(checked) if (menuId == "open") { DDBusSender() .service("com.deepin.dde.ControlCenter") .interface("com.deepin.dde.ControlCenter") .path("/com/deepin/dde/ControlCenter") .method(QString("ShowModule")) .arg(QString("datetime")) .call(); } else { const bool value = m_proxyInter->getValue(this, TIME_FORMAT_KEY, true).toBool(); m_proxyInter->saveValue(this, TIME_FORMAT_KEY, !value); m_centralWidget->set24HourFormat(!value); } } void DatetimePlugin::updateCurrentTimeString() { const QDateTime currentDateTime = QDateTime::currentDateTime(); if (m_centralWidget->is24HourFormat()) m_dateTipsLabel->setText(currentDateTime.date().toString(Qt::SystemLocaleLongDate) + currentDateTime.toString(" HH:mm:ss")); else m_dateTipsLabel->setText(currentDateTime.date().toString(Qt::SystemLocaleLongDate) + currentDateTime.toString(" hh:mm:ss A")); const QString currentString = currentDateTime.toString("mm"); if (currentString == m_currentTimeString) return; m_currentTimeString = currentString; m_centralWidget->update(); }