dolphin/Source/Core/DolphinQt/Resources.h

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

48 lines
1.0 KiB
C
Raw Normal View History

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