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