PrismLauncher/logic/resources/IconResourceHandler.h
2015-09-05 18:46:57 +02:00

28 lines
740 B
C++

#pragma once
#include <memory>
#include "ResourceHandler.h"
#include "multimc_logic_export.h"
class MULTIMC_LOGIC_EXPORT IconResourceHandler : public ResourceHandler
{
public:
explicit IconResourceHandler(const QString &key);
/// Sets the current theme and notifies all IconResourceHandlers of the change
static void setTheme(const QString &theme);
private:
// we need to keep track of all IconResourceHandlers so that we can update them if the theme changes
void init(std::shared_ptr<ResourceHandler> &ptr) override;
static QList<std::weak_ptr<IconResourceHandler>> m_iconHandlers;
QString m_key;
static QString m_theme;
// the workhorse, returns QVariantMap (filename => size) for m_key/m_theme
QVariant get() const;
};