2018-02-27 18:06:05 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
2019-03-13 00:51:51 +01:00
|
|
|
* Copyright 2013, 2017-2019, 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-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() {
|
|
|
|
|
2019-10-04 17:08:12 +02:00
|
|
|
// TODO: Fix use system icons option properly.
|
|
|
|
|
|
|
|
//QSettings s;
|
|
|
|
//s.beginGroup(AppearanceSettingsPage::kSettingsGroup);
|
|
|
|
//system_icons_ = s.value("system_icons", false).toBool();
|
|
|
|
//s.endGroup();
|
2019-03-13 00:43:46 +01:00
|
|
|
|
|
|
|
QDir dir;
|
|
|
|
if (dir.exists(QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation) + "/icons")) {
|
|
|
|
custom_icons_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-08-29 21:42:24 +02:00
|
|
|
QIcon IconLoader::Load(const QString &name, const int 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;
|
|
|
|
sizes.clear();
|
|
|
|
if (size == 0) { sizes << 22 << 32 << 48 << 64; }
|
|
|
|
else sizes << size;
|
|
|
|
|
2019-03-13 00:43:46 +01:00
|
|
|
if (system_icons_) {
|
|
|
|
ret = QIcon::fromTheme(name);
|
|
|
|
if (!ret.isNull()) return ret;
|
|
|
|
qLog(Warning) << "Couldn't load icon" << name << "from system theme icons.";
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
}
|