blob: bb039b05aed6aa7b1ab4490afdce33a6e255c9aa (
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
|
#include "genericicondelegate.h"
#include "pluginlist.h"
#include <QList>
#include <QPixmapCache>
GenericIconDelegate::GenericIconDelegate(QTreeView* parent, int role, int logicalIndex, int compactSize)
: IconDelegate(parent, logicalIndex, compactSize)
, m_Role(role)
{
}
QList<QString> GenericIconDelegate::getIcons(const QModelIndex &index) const
{
QList<QString> result;
if (index.isValid()) {
for (const QVariant &var : index.data(m_Role).toList()) {
if (!compact() || !var.toString().isEmpty()) {
result.append(var.toString());
}
}
}
return result;
}
size_t GenericIconDelegate::getNumIcons(const QModelIndex &index) const
{
return index.data(m_Role).toList().count();
}
|