2023-11-01 10:56:16 +08:00
|
|
|
/*
|
|
|
|
* 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 of the License, 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 <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Authors: iaom <zhangpengfei@kylinos.cn>
|
|
|
|
*
|
|
|
|
*/
|
2023-09-01 17:30:21 +08:00
|
|
|
|
|
|
|
#include "icon-loader.h"
|
|
|
|
#include <QMutex>
|
|
|
|
#include <QMutexLocker>
|
|
|
|
#include <XdgIcon>
|
2024-02-23 15:17:56 +08:00
|
|
|
#include <QFile>
|
2023-09-01 17:30:21 +08:00
|
|
|
namespace UkuiSearch {
|
|
|
|
static QMutex qtIconMutex;
|
|
|
|
static QMutex xdgIconMutex;
|
|
|
|
QIcon IconLoader::loadIconQt(const QString &name, const QIcon &fallback)
|
|
|
|
{
|
|
|
|
QMutexLocker locker(&qtIconMutex);
|
2024-02-23 15:17:56 +08:00
|
|
|
if(QFile::exists(name)) {
|
|
|
|
QIcon icon(name);
|
|
|
|
if(!QIcon(name).isNull()) {
|
|
|
|
return icon;
|
|
|
|
} else {
|
|
|
|
return fallback;
|
|
|
|
}
|
|
|
|
}
|
2023-09-01 17:30:21 +08:00
|
|
|
return QIcon::fromTheme(name,fallback);
|
|
|
|
}
|
|
|
|
|
|
|
|
QIcon IconLoader::loadIconXdg(const QString &name, const QIcon &fallback)
|
|
|
|
{
|
|
|
|
QMutexLocker locker(&xdgIconMutex);
|
2023-11-06 16:50:56 +08:00
|
|
|
return XdgIcon::fromTheme(name,fallback);
|
2023-09-01 17:30:21 +08:00
|
|
|
}
|
|
|
|
} // UkuiSearch
|