dolphin/Source/Core/DolphinQt2/Resources.h

43 lines
943 B
C
Raw Normal View History

2015-11-27 09:33:07 +01:00
// Copyright 2015 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <QList>
#include <QPixmap>
2015-11-27 09:33:07 +01:00
// Store for various QPixmaps that will be used repeatedly.
class Resources final
{
public:
static void Init();
2015-11-27 09:33:07 +01:00
static QPixmap GetPlatform(int platform);
static QPixmap GetCountry(int country);
2015-11-27 09:33:07 +01:00
static QPixmap GetMisc(int id);
2015-11-27 09:33:07 +01:00
enum
{
BANNER_MISSING,
LOGO_LARGE,
LOGO_SMALL
};
2015-11-27 09:33:07 +01:00
2017-05-30 22:42:21 +02:00
static QIcon GetScaledIcon(const std::string& name);
static QIcon GetScaledThemeIcon(const std::string& name);
2018-03-26 08:13:15 +02:00
static QIcon GetAppIcon();
2017-05-30 22:42:21 +02:00
static QPixmap GetScaledPixmap(const std::string& name);
2015-11-27 09:33:07 +01:00
private:
Resources() {}
2017-05-30 22:42:21 +02:00
static QIcon GetIcon(const QString& name, const QString& dir);
static QPixmap GetPixmap(const QString& name, const QString& dir);
static QList<QPixmap> m_platforms;
static QList<QPixmap> m_countries;
static QList<QPixmap> m_misc;
2015-11-27 09:33:07 +01:00
};