2018-02-27 18:06:05 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
2021-03-20 21:14:47 +01:00
|
|
|
* Copyright 2013, 2017-2021, Jonas Kvinge <jonas@jkvinge.net>
|
2018-02-27 18:06:05 +01:00
|
|
|
*
|
|
|
|
* Strawberry 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
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
2018-08-09 18:39:44 +02:00
|
|
|
*
|
2018-02-27 18:06:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2019-03-13 00:43:46 +01:00
|
|
|
#include <QDir>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <QFile>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QList>
|
|
|
|
#include <QString>
|
|
|
|
#include <QIcon>
|
|
|
|
#include <QSize>
|
2019-03-13 00:43:46 +01:00
|
|
|
#include <QStandardPaths>
|
|
|
|
#include <QSettings>
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
#include "core/logging.h"
|
2019-10-20 00:17:28 +02:00
|
|
|
#include "iconmapper.h"
|
2019-03-13 00:43:46 +01:00
|
|
|
#include "settings/appearancesettingspage.h"
|
2018-05-01 00:41:33 +02:00
|
|
|
#include "iconloader.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2019-03-13 00:43:46 +01:00
|
|
|
bool IconLoader::system_icons_ = false;
|
|
|
|
bool IconLoader::custom_icons_ = false;
|
|
|
|
|
|
|
|
void IconLoader::Init() {
|
|
|
|
|
2020-09-04 20:51:43 +02:00
|
|
|
#if !defined(Q_OS_MACOS) && !defined(Q_OS_WIN)
|
2019-10-20 00:17:28 +02:00
|
|
|
QSettings s;
|
|
|
|
s.beginGroup(AppearanceSettingsPage::kSettingsGroup);
|
|
|
|
system_icons_ = s.value("system_icons", false).toBool();
|
|
|
|
s.endGroup();
|
2020-09-04 20:51:43 +02:00
|
|
|
#endif
|
2019-03-13 00:43:46 +01:00
|
|
|
|
|
|
|
QDir dir;
|
|
|
|
if (dir.exists(QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation) + "/icons")) {
|
|
|
|
custom_icons_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-04-27 21:36:08 +02:00
|
|
|
QIcon IconLoader::Load(const QString &name, const int fixed_size, const int min_size, const int max_size) {
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
QIcon ret;
|
|
|
|
|
2019-03-13 00:43:46 +01:00
|
|
|
if (name.isEmpty()) {
|
|
|
|
qLog(Error) << "Icon name is empty!";
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-08-29 21:42:24 +02:00
|
|
|
QList<int> sizes;
|
2021-07-11 09:49:38 +02:00
|
|
|
if (fixed_size == 0) {
|
2022-05-19 22:02:35 +02:00
|
|
|
sizes << 22 << 32 << 48 << 64 << 128;
|
2021-07-11 09:49:38 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
sizes << fixed_size;
|
|
|
|
}
|
2018-08-29 21:42:24 +02:00
|
|
|
|
2019-03-13 00:43:46 +01:00
|
|
|
if (system_icons_) {
|
2019-10-20 00:17:28 +02:00
|
|
|
IconMapper::IconProperties icon_prop;
|
|
|
|
if (IconMapper::iconmapper_.contains(name)) {
|
|
|
|
icon_prop = IconMapper::iconmapper_[name];
|
|
|
|
}
|
2020-04-27 21:36:08 +02:00
|
|
|
if (min_size != 0) icon_prop.min_size = min_size;
|
|
|
|
if (max_size != 0) icon_prop.max_size = max_size;
|
2020-04-27 00:24:49 +02:00
|
|
|
if (icon_prop.allow_system_icon) {
|
|
|
|
ret = QIcon::fromTheme(name);
|
|
|
|
if (ret.isNull()) {
|
2021-03-21 04:47:11 +01:00
|
|
|
for (const QString &alt_name : icon_prop.names) {
|
2020-04-27 00:24:49 +02:00
|
|
|
ret = QIcon::fromTheme(alt_name);
|
|
|
|
if (!ret.isNull()) break;
|
|
|
|
}
|
2020-04-27 21:36:08 +02:00
|
|
|
if (ret.isNull()) {
|
|
|
|
qLog(Warning) << "Couldn't load icon" << name << "from system theme icons.";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!ret.isNull()) {
|
|
|
|
if (fixed_size != 0 && !ret.availableSizes().contains(QSize(fixed_size, fixed_size))) {
|
|
|
|
qLog(Warning) << "Can't use system icon for" << name << "icon does not have fixed size." << fixed_size;
|
|
|
|
ret = QIcon();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int size_smallest = 0;
|
|
|
|
int size_largest = 0;
|
|
|
|
for (const QSize &s : ret.availableSizes()) {
|
|
|
|
if (s.width() != s.height()) {
|
|
|
|
qLog(Warning) << "Can't use system icon for" << name << "icon is not proportional.";
|
|
|
|
ret = QIcon();
|
|
|
|
}
|
|
|
|
if (size_smallest == 0 || s.width() < size_smallest) size_smallest = s.width();
|
|
|
|
if (s.width() > size_largest) size_largest = s.width();
|
|
|
|
}
|
|
|
|
if (size_smallest != 0 && icon_prop.min_size != 0 && size_smallest < icon_prop.min_size) {
|
|
|
|
qLog(Warning) << "Can't use system icon for" << name << "icon too small." << size_smallest;
|
|
|
|
ret = QIcon();
|
|
|
|
}
|
|
|
|
else if (size_largest != 0 && icon_prop.max_size != 0 && size_largest > icon_prop.max_size) {
|
|
|
|
qLog(Warning) << "Can't use system icon for" << name << "icon too large." << size_largest;
|
|
|
|
ret = QIcon();
|
|
|
|
}
|
|
|
|
}
|
2019-10-20 00:17:28 +02:00
|
|
|
}
|
|
|
|
}
|
2019-03-13 00:43:46 +01:00
|
|
|
if (!ret.isNull()) return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (custom_icons_) {
|
|
|
|
QString custom_icon_path = QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation) + "/icons/%1x%2/%3.png";
|
|
|
|
for (int s : sizes) {
|
|
|
|
QString filename(custom_icon_path.arg(s).arg(s).arg(name));
|
|
|
|
if (QFile::exists(filename)) ret.addFile(filename, QSize(s, s));
|
|
|
|
}
|
|
|
|
if (!ret.isNull()) return ret;
|
|
|
|
qLog(Warning) << "Couldn't load icon" << name << "from custom icons.";
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2018-08-29 22:17:23 +02:00
|
|
|
const QString path(":/icons/%1x%2/%3.png");
|
2018-08-29 21:42:24 +02:00
|
|
|
for (int s : sizes) {
|
|
|
|
QString filename(path.arg(s).arg(s).arg(name));
|
|
|
|
if (QFile::exists(filename)) ret.addFile(filename, QSize(s, s));
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2021-10-30 03:34:52 +02:00
|
|
|
if (ret.isNull() && !system_icons_ && !custom_icons_) {
|
|
|
|
qLog(Error) << "Couldn't load icon" << name;
|
|
|
|
}
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
return ret;
|
|
|
|
|
|
|
|
}
|