2016-05-02 23:27:28 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QString>
|
2016-05-03 16:49:56 +01:00
|
|
|
#include "multimc_logic_export.h"
|
2016-05-02 23:27:28 +01:00
|
|
|
|
|
|
|
enum IconType : unsigned
|
|
|
|
{
|
|
|
|
Builtin,
|
|
|
|
Transient,
|
|
|
|
FileBased,
|
|
|
|
ICONS_TOTAL,
|
|
|
|
ToBeDeleted
|
|
|
|
};
|
|
|
|
|
2016-05-03 16:49:56 +01:00
|
|
|
class MULTIMC_LOGIC_EXPORT IIconList
|
2016-05-02 23:27:28 +01:00
|
|
|
{
|
|
|
|
public:
|
2016-05-03 16:49:56 +01:00
|
|
|
virtual ~IIconList();
|
2016-05-02 23:27:28 +01:00
|
|
|
virtual bool addIcon(QString key, QString name, QString path, IconType type) = 0;
|
|
|
|
};
|
|
|
|
|