2017-09-18 14:33:44 +08:00
|
|
|
|
/*
|
2018-02-07 11:52:47 +08:00
|
|
|
|
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
2017-09-18 14:33:44 +08:00
|
|
|
|
*
|
|
|
|
|
* Author: sbw <sbw@sbw.so>
|
|
|
|
|
*
|
|
|
|
|
* Maintainer: sbw <sbw@sbw.so>
|
|
|
|
|
*
|
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-06-14 16:01:01 +08:00
|
|
|
|
#include "themeappicon.h"
|
2021-04-22 09:56:28 +08:00
|
|
|
|
#include "imageutil.h"
|
2016-06-14 16:01:01 +08:00
|
|
|
|
|
2017-02-15 17:10:32 +08:00
|
|
|
|
#include <QIcon>
|
2017-02-20 17:41:28 +08:00
|
|
|
|
#include <QFile>
|
|
|
|
|
#include <QDebug>
|
2017-09-15 10:17:15 +08:00
|
|
|
|
#include <QApplication>
|
2018-07-03 12:33:31 +08:00
|
|
|
|
#include <QPixmapCache>
|
2018-09-07 12:07:41 +08:00
|
|
|
|
#include <QCryptographicHash>
|
2020-05-22 13:10:14 +08:00
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
|
#include <QLabel>
|
|
|
|
|
#include <QDate>
|
|
|
|
|
|
2021-04-22 09:56:28 +08:00
|
|
|
|
#include <private/qguiapplication_p.h>
|
|
|
|
|
#include <private/qiconloader_p.h>
|
|
|
|
|
#include <qpa/qplatformtheme.h>
|
2016-06-14 16:01:01 +08:00
|
|
|
|
|
|
|
|
|
ThemeAppIcon::ThemeAppIcon(QObject *parent) : QObject(parent)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-15 17:10:32 +08:00
|
|
|
|
ThemeAppIcon::~ThemeAppIcon()
|
2016-06-14 16:01:01 +08:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-22 09:56:28 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief ThemeAppIcon::getIcon 根据传入的\a name 参数重新从系统主题中获取一次图标
|
|
|
|
|
* @param name 图标名
|
|
|
|
|
* @return 获取到的图标
|
|
|
|
|
* @note 之所以不使用QIcon::fromTheme是因为这个函数中有缓存机制,获取系统主题中的图标的时候,第一次获取不到,下一次也是获取不到
|
|
|
|
|
*/
|
|
|
|
|
QIcon ThemeAppIcon::getIcon(const QString &name)
|
|
|
|
|
{
|
|
|
|
|
QIcon icon;
|
|
|
|
|
|
|
|
|
|
QPlatformTheme * const platformTheme = QGuiApplicationPrivate::platformTheme();
|
|
|
|
|
bool hasUserTheme = QIconLoader::instance()->hasUserTheme();
|
|
|
|
|
|
|
|
|
|
if (!platformTheme || hasUserTheme)
|
|
|
|
|
return QIcon::fromTheme(name);
|
|
|
|
|
|
|
|
|
|
QIconEngine * const engine = platformTheme->createIconEngine(name);
|
|
|
|
|
QIcon *cachedIcon = new QIcon(engine);
|
|
|
|
|
icon = *cachedIcon;
|
|
|
|
|
return icon;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ThemeAppIcon::getIcon(QPixmap &pix, const QString iconName, const int size, const qreal ratio, bool reObtain)
|
2016-06-14 16:01:01 +08:00
|
|
|
|
{
|
2018-07-04 15:54:12 +08:00
|
|
|
|
QString key;
|
2020-04-13 16:58:24 +08:00
|
|
|
|
QIcon icon;
|
2021-04-22 09:56:28 +08:00
|
|
|
|
bool ret = true;
|
2018-10-30 10:31:08 +08:00
|
|
|
|
// 把size改为小于size的最大偶数 :)
|
2018-07-03 12:33:31 +08:00
|
|
|
|
const int s = int(size * ratio) & ~1;
|
2020-05-22 13:10:52 +08:00
|
|
|
|
const float iconZoom = size / 64.0 * 0.8;
|
2020-05-22 13:10:14 +08:00
|
|
|
|
|
2020-05-22 13:10:52 +08:00
|
|
|
|
if (iconName == "dde-calendar") {
|
2020-05-22 13:10:14 +08:00
|
|
|
|
QDate const date(QDate::currentDate());
|
|
|
|
|
|
|
|
|
|
auto calendar = new QWidget() ;
|
2020-05-22 13:10:52 +08:00
|
|
|
|
calendar->setFixedSize(s, s);
|
2020-05-22 13:10:14 +08:00
|
|
|
|
|
|
|
|
|
calendar->setAutoFillBackground(true);
|
2020-05-22 13:10:52 +08:00
|
|
|
|
QPalette palette = calendar->palette();
|
|
|
|
|
palette.setBrush(QPalette::Window,
|
|
|
|
|
QBrush(QPixmap(":/indicator/resources/calendar_bg.svg").scaled(
|
|
|
|
|
calendar->size(),
|
|
|
|
|
Qt::IgnoreAspectRatio,
|
|
|
|
|
Qt::SmoothTransformation)));
|
|
|
|
|
calendar->setPalette(palette);
|
2020-05-22 13:10:14 +08:00
|
|
|
|
|
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout;
|
|
|
|
|
layout->setSpacing(0);
|
|
|
|
|
auto month = new QLabel();
|
2020-06-04 18:52:00 +08:00
|
|
|
|
auto monthPix = ImageUtil::loadSvg(QString(":/icons/resources/month%1.svg").arg(date.month()), QSize(36, 16)*iconZoom, ratio);
|
|
|
|
|
month->setPixmap(monthPix.scaled(monthPix.width()*ratio,monthPix.height()*ratio, Qt::KeepAspectRatio, Qt::SmoothTransformation));
|
2020-05-22 13:10:14 +08:00
|
|
|
|
month->setFixedHeight(month->pixmap()->height());
|
|
|
|
|
month->setAlignment(Qt::AlignCenter);
|
2020-05-22 13:10:52 +08:00
|
|
|
|
month->setFixedWidth(s - 5 * iconZoom);
|
|
|
|
|
layout->addWidget(month, Qt::AlignVCenter);
|
2020-05-22 13:10:14 +08:00
|
|
|
|
|
|
|
|
|
auto day = new QLabel();
|
2020-06-04 18:52:00 +08:00
|
|
|
|
auto dayPix =ImageUtil::loadSvg(QString(":/icons/resources/day%1.svg").arg(date.day()), QSize(32, 30)*iconZoom, ratio);
|
|
|
|
|
day->setPixmap(dayPix.scaled(dayPix.width()*ratio,dayPix.height()*ratio, Qt::KeepAspectRatio, Qt::SmoothTransformation));
|
2020-05-22 13:10:14 +08:00
|
|
|
|
day->setAlignment(Qt::AlignCenter);
|
2020-06-04 18:52:00 +08:00
|
|
|
|
day->setFixedHeight(day->pixmap()->height()/ratio);
|
2020-05-22 13:10:14 +08:00
|
|
|
|
day->raise();
|
2020-05-22 13:10:52 +08:00
|
|
|
|
layout->addWidget(day, Qt::AlignVCenter);
|
2020-05-22 13:10:14 +08:00
|
|
|
|
|
|
|
|
|
auto week = new QLabel();
|
2020-06-04 18:52:00 +08:00
|
|
|
|
auto weekPix = ImageUtil::loadSvg(QString(":/icons/resources/week%1.svg").arg(date.dayOfWeek()), QSize(26, 13)*iconZoom, ratio);
|
|
|
|
|
week->setPixmap(weekPix.scaled(weekPix.width()*ratio,weekPix.height()*ratio, Qt::KeepAspectRatio, Qt::SmoothTransformation));
|
2020-05-22 13:10:14 +08:00
|
|
|
|
week->setFixedHeight(week->pixmap()->height());
|
|
|
|
|
week->setAlignment(Qt::AlignCenter);
|
2020-05-22 13:10:52 +08:00
|
|
|
|
week->setFixedWidth(s + 5 * iconZoom);
|
|
|
|
|
layout->addWidget(week, Qt::AlignVCenter);
|
2020-05-22 13:10:14 +08:00
|
|
|
|
layout->setSpacing(0);
|
2020-05-22 13:10:52 +08:00
|
|
|
|
layout->setContentsMargins(0, 10 * iconZoom, 0, 10 * iconZoom);
|
2020-05-22 13:10:14 +08:00
|
|
|
|
calendar->setLayout(layout);
|
2021-04-22 09:56:28 +08:00
|
|
|
|
pix = calendar->grab(calendar->rect());
|
2021-03-24 19:38:00 +08:00
|
|
|
|
|
|
|
|
|
delete calendar;
|
|
|
|
|
calendar = nullptr;
|
|
|
|
|
|
2021-04-22 09:56:28 +08:00
|
|
|
|
if (pix.size().width() != s) {
|
|
|
|
|
pix = pix.scaled(s, s, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
2020-06-04 18:52:00 +08:00
|
|
|
|
}
|
2021-04-22 09:56:28 +08:00
|
|
|
|
return ret;
|
2020-05-22 13:10:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-21 11:40:16 +08:00
|
|
|
|
do {
|
2018-11-19 09:38:05 +08:00
|
|
|
|
// load pixmap from our Cache
|
|
|
|
|
if (iconName.startsWith("data:image/")) {
|
|
|
|
|
key = QCryptographicHash::hash(iconName.toUtf8(), QCryptographicHash::Md5).toHex();
|
|
|
|
|
|
|
|
|
|
// FIXME(hualet): The cache can reduce memory usage,
|
|
|
|
|
// that is ~2M on HiDPI enabled machine with 9 icons loaded,
|
|
|
|
|
// but I don't know why since QIcon has its own cache and all of the
|
|
|
|
|
// icons loaded are loaded by QIcon::fromTheme, really strange here.
|
2021-04-22 09:56:28 +08:00
|
|
|
|
if (QPixmapCache::find(key, &pix))
|
2018-11-19 09:38:05 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// load pixmap from Byte-Data
|
2020-05-22 13:10:52 +08:00
|
|
|
|
if (iconName.startsWith("data:image/")) {
|
2017-02-21 11:40:16 +08:00
|
|
|
|
const QStringList strs = iconName.split("base64,");
|
|
|
|
|
if (strs.size() == 2)
|
2021-04-22 09:56:28 +08:00
|
|
|
|
pix.loadFromData(QByteArray::fromBase64(strs.at(1).toLatin1()));
|
2017-02-21 11:40:16 +08:00
|
|
|
|
|
2021-04-22 09:56:28 +08:00
|
|
|
|
if (!pix.isNull())
|
2017-02-21 11:40:16 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-19 09:38:05 +08:00
|
|
|
|
// load pixmap from File
|
2020-05-22 13:10:52 +08:00
|
|
|
|
if (QFile::exists(iconName)) {
|
2021-04-22 09:56:28 +08:00
|
|
|
|
pix = QPixmap(iconName);
|
|
|
|
|
if (!pix.isNull())
|
2017-02-21 11:40:16 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
2017-02-20 17:41:28 +08:00
|
|
|
|
|
2021-04-22 09:56:28 +08:00
|
|
|
|
// 重新从主题中获取一次
|
|
|
|
|
if (reObtain)
|
|
|
|
|
icon = getIcon(iconName);
|
|
|
|
|
else
|
2020-10-27 17:47:54 +08:00
|
|
|
|
icon = QIcon::fromTheme(iconName);
|
|
|
|
|
|
|
|
|
|
if(icon.isNull()) {
|
|
|
|
|
icon = QIcon::fromTheme("application-x-desktop");
|
2021-04-22 09:56:28 +08:00
|
|
|
|
ret = false;
|
2020-04-13 16:58:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-19 09:38:05 +08:00
|
|
|
|
// load pixmap from Icon-Theme
|
2018-11-09 17:11:30 +08:00
|
|
|
|
const int fakeSize = std::max(48, s); // cannot use 16x16, cause 16x16 is label icon
|
2021-04-22 09:56:28 +08:00
|
|
|
|
pix = icon.pixmap(QSize(fakeSize, fakeSize));
|
|
|
|
|
if (!pix.isNull())
|
2017-02-21 11:40:16 +08:00
|
|
|
|
break;
|
2016-06-14 16:01:01 +08:00
|
|
|
|
|
2018-11-19 09:38:05 +08:00
|
|
|
|
// fallback to a Default pixmap
|
2021-04-22 09:56:28 +08:00
|
|
|
|
pix = QPixmap(":/icons/resources/application-x-desktop.svg");
|
|
|
|
|
if (!pix.isNull())
|
2017-02-21 11:40:16 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
Q_UNREACHABLE();
|
|
|
|
|
|
|
|
|
|
} while (false);
|
2017-02-20 17:41:28 +08:00
|
|
|
|
|
2018-09-07 12:07:41 +08:00
|
|
|
|
if (!key.isEmpty()) {
|
2021-04-22 09:56:28 +08:00
|
|
|
|
QPixmapCache::insert(key, pix);
|
2018-09-07 12:07:41 +08:00
|
|
|
|
}
|
2018-07-03 12:33:31 +08:00
|
|
|
|
|
2021-04-22 09:56:28 +08:00
|
|
|
|
if (pix.size().width() != s) {
|
|
|
|
|
pix = pix.scaled(s, s, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
2018-11-19 09:38:05 +08:00
|
|
|
|
}
|
2021-04-22 09:56:28 +08:00
|
|
|
|
pix.setDevicePixelRatio(ratio);
|
|
|
|
|
|
|
|
|
|
return ret;
|
2016-06-14 16:01:01 +08:00
|
|
|
|
}
|