2012-05-09 04:46:22 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Felix Geyer <debfx@fobos.de>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 2 or (at your option)
|
|
|
|
* version 3 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KEEPASSX_ICONMODELS_H
|
|
|
|
#define KEEPASSX_ICONMODELS_H
|
|
|
|
|
|
|
|
#include <QtCore/QAbstractListModel>
|
|
|
|
#include <QtGui/QImage>
|
|
|
|
|
|
|
|
#include "core/Uuid.h"
|
|
|
|
|
|
|
|
class DefaultIconModel : public QAbstractListModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2012-05-10 07:59:36 -04:00
|
|
|
|
2012-05-09 04:46:22 -04:00
|
|
|
public:
|
|
|
|
explicit DefaultIconModel(QObject* parent = 0);
|
|
|
|
|
|
|
|
int rowCount(const QModelIndex& parent = QModelIndex()) const;
|
|
|
|
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class CustomIconModel : public QAbstractListModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2012-05-10 07:59:36 -04:00
|
|
|
|
2012-05-09 04:46:22 -04:00
|
|
|
public:
|
|
|
|
explicit CustomIconModel(QObject* parent = 0);
|
|
|
|
|
|
|
|
virtual int rowCount(const QModelIndex& parent = QModelIndex()) const;
|
|
|
|
virtual QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const;
|
|
|
|
void setIcons(QHash<Uuid, QImage> icons);
|
|
|
|
Uuid uuidFromIndex(const QModelIndex& index) const;
|
|
|
|
QModelIndex indexFromUuid(const Uuid& uuid) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
QHash<Uuid, QImage> m_icons;
|
|
|
|
QHash<int, Uuid> m_uuids;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // KEEPASSX_ICONMODELS_H
|