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