dolphin/Source/Core/DolphinQt/Resources.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

127 lines
2.9 KiB
C++
Raw Normal View History

2015-11-27 09:33:07 +01:00
// Copyright 2015 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2015-11-27 09:33:07 +01:00
2021-12-10 03:22:16 +01:00
#include "DolphinQt/Resources.h"
2017-05-30 22:42:21 +02:00
#include <QGuiApplication>
#include <QIcon>
#include <QPixmap>
#include <QScreen>
2015-11-27 09:33:07 +01:00
#include "Common/FileUtil.h"
2018-05-28 03:48:04 +02:00
#include "Core/Config/MainSettings.h"
2018-05-28 03:48:04 +02:00
2018-07-07 00:40:15 +02:00
#include "DolphinQt/Settings.h"
2015-11-27 09:33:07 +01:00
2018-03-26 08:13:15 +02:00
#ifdef _WIN32
2018-07-07 00:40:15 +02:00
#include "DolphinQt/QtUtils/WinIconHelper.h"
2018-03-26 08:13:15 +02:00
#endif
2015-11-27 09:33:07 +01:00
QList<QPixmap> Resources::m_platforms;
QList<QPixmap> Resources::m_countries;
QList<QPixmap> Resources::m_misc;
QIcon Resources::GetIcon(std::string_view name, const QString& dir)
2017-05-30 22:42:21 +02:00
{
QString name_owned = QString::fromLatin1(name.data(), static_cast<int>(name.size()));
QString base_path = dir + QLatin1Char{'/'} + name_owned;
2017-05-30 22:42:21 +02:00
const auto dpr = QGuiApplication::primaryScreen()->devicePixelRatio();
QIcon icon(base_path.append(QStringLiteral(".png")));
if (dpr > 2)
{
QPixmap pixmap(base_path.append(QStringLiteral("@4x.png")));
if (!pixmap.isNull())
{
pixmap.setDevicePixelRatio(4.0);
icon.addPixmap(pixmap);
}
}
return icon;
}
QPixmap Resources::GetPixmap(std::string_view name, const QString& dir)
2017-05-30 22:42:21 +02:00
{
const auto icon = GetIcon(name, dir);
return icon.pixmap(icon.availableSizes()[0]);
}
static QString GetCurrentThemeDir()
{
return QString::fromStdString(File::GetThemeDir(Config::Get(Config::MAIN_THEME_NAME)));
}
static QString GetResourcesDir()
{
return QString::fromStdString(File::GetSysDirectory() + "Resources");
}
QIcon Resources::GetScaledIcon(std::string_view name)
2017-05-30 22:42:21 +02:00
{
return GetIcon(name, GetResourcesDir());
2017-05-30 22:42:21 +02:00
}
QIcon Resources::GetScaledThemeIcon(std::string_view name)
2017-05-30 22:42:21 +02:00
{
return GetIcon(name, GetCurrentThemeDir());
2017-05-30 22:42:21 +02:00
}
QPixmap Resources::GetScaledPixmap(std::string_view name)
2017-05-30 22:42:21 +02:00
{
return GetPixmap(name, GetResourcesDir());
2017-05-30 22:42:21 +02:00
}
2015-11-27 09:33:07 +01:00
void Resources::Init()
{
for (std::string_view platform :
2017-05-30 22:42:21 +02:00
{"Platform_Gamecube", "Platform_Wii", "Platform_Wad", "Platform_File"})
{
m_platforms.append(GetScaledPixmap(platform));
}
for (std::string_view country :
2017-05-30 22:42:21 +02:00
{"Flag_Europe", "Flag_Japan", "Flag_USA", "Flag_Australia", "Flag_France", "Flag_Germany",
"Flag_Italy", "Flag_Korea", "Flag_Netherlands", "Flag_Russia", "Flag_Spain", "Flag_Taiwan",
"Flag_International", "Flag_Unknown"})
{
m_countries.append(GetScaledPixmap(country));
}
m_misc.append(GetScaledPixmap("nobanner"));
m_misc.append(GetScaledPixmap("dolphin_logo"));
m_misc.append(GetScaledPixmap("Dolphin"));
2015-11-27 09:33:07 +01:00
}
QPixmap Resources::GetPlatform(DiscIO::Platform platform)
2015-11-27 09:33:07 +01:00
{
return m_platforms[static_cast<int>(platform)];
2015-11-27 09:33:07 +01:00
}
QPixmap Resources::GetCountry(DiscIO::Country country)
2015-11-27 09:33:07 +01:00
{
return m_countries[static_cast<int>(country)];
2015-11-27 09:33:07 +01:00
}
QPixmap Resources::GetMisc(MiscID id)
2015-11-27 09:33:07 +01:00
{
return m_misc[static_cast<int>(id)];
2015-11-27 09:33:07 +01:00
}
2018-03-26 08:13:15 +02:00
QIcon Resources::GetAppIcon()
{
QIcon icon;
#ifdef _WIN32
icon = WinIconHelper::GetNativeIcon();
#else
icon.addPixmap(GetScaledPixmap("dolphin_logo"));
icon.addPixmap(GetScaledPixmap("Dolphin"));
#endif
return icon;
}