2015-11-27 09:33:07 +01:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2015-11-27 09:33:07 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-04-23 12:43:49 +02:00
|
|
|
#include <QIcon>
|
2015-11-27 09:33:07 +01:00
|
|
|
#include <QList>
|
2021-05-17 21:00:13 +02:00
|
|
|
#include <string_view>
|
2015-11-27 09:33:07 +01:00
|
|
|
|
2018-07-10 21:10:03 +02:00
|
|
|
namespace DiscIO
|
|
|
|
{
|
|
|
|
enum class Country;
|
|
|
|
enum class Platform;
|
2019-05-06 01:48:12 +02:00
|
|
|
} // namespace DiscIO
|
2018-07-10 21:10:03 +02:00
|
|
|
|
2015-11-27 09:33:07 +01:00
|
|
|
// Store for various QPixmaps that will be used repeatedly.
|
|
|
|
class Resources final
|
|
|
|
{
|
|
|
|
public:
|
2018-07-10 21:10:03 +02:00
|
|
|
enum class MiscID
|
|
|
|
{
|
|
|
|
BannerMissing,
|
2023-04-23 12:43:49 +02:00
|
|
|
Logo,
|
2018-07-10 21:10:03 +02:00
|
|
|
};
|
2015-11-27 09:33:07 +01:00
|
|
|
|
2018-07-10 21:10:03 +02:00
|
|
|
static void Init();
|
2015-11-27 09:33:07 +01:00
|
|
|
|
2023-04-23 12:43:49 +02:00
|
|
|
static QIcon GetPlatform(DiscIO::Platform platform);
|
|
|
|
static QIcon GetCountry(DiscIO::Country country);
|
2015-11-27 09:33:07 +01:00
|
|
|
|
2023-04-23 12:43:49 +02:00
|
|
|
static QIcon GetMisc(MiscID id);
|
2015-11-27 09:33:07 +01:00
|
|
|
|
2023-04-23 12:43:49 +02:00
|
|
|
static QIcon GetResourceIcon(std::string_view name);
|
|
|
|
static QIcon GetThemeIcon(std::string_view name);
|
2018-03-26 08:13:15 +02:00
|
|
|
static QIcon GetAppIcon();
|
2017-05-30 22:42:21 +02:00
|
|
|
|
2015-11-27 09:33:07 +01:00
|
|
|
private:
|
|
|
|
Resources() {}
|
2023-04-23 12:43:49 +02:00
|
|
|
static QIcon LoadNamedIcon(std::string_view name, const QString& dir);
|
2017-05-30 22:42:21 +02:00
|
|
|
|
2023-04-23 12:43:49 +02:00
|
|
|
static bool m_svg_supported;
|
|
|
|
static QList<QIcon> m_platforms;
|
|
|
|
static QList<QIcon> m_countries;
|
|
|
|
static QList<QIcon> m_misc;
|
2015-11-27 09:33:07 +01:00
|
|
|
};
|