summaryrefslogtreecommitdiffstats
path: root/logic/IconListModel.h
blob: 31b05e64bc6a6385a912f58287ebc43dbfec62d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#pragma once

#include <QMutex>
#include <QAbstractListModel>
#include <QtGui/QIcon>

class Private;

class IconList : public QAbstractListModel
{
public:
	static IconList* instance();
	static void drop();
	QIcon getIcon ( QString key );
	int getIconIndex ( QString key );
	
	virtual QVariant data ( const QModelIndex& index, int role = Qt::DisplayRole ) const;
	virtual int rowCount ( const QModelIndex& parent = QModelIndex() ) const;
	
	bool addIcon(QString key, QString name, QString path, bool is_builtin = false);
	
	
private:
	virtual ~IconList();
	IconList();
	// hide copy constructor
	IconList ( const IconList & ) = delete;
	// hide assign op
	IconList& operator= ( const IconList & ) = delete;
	static IconList* m_Instance;
	static QMutex mutex;
	Private* d;
};