QTfrontend/themesmodel.h
author sheepluva
Thu, 15 Sep 2011 00:47:05 +0200
changeset 5907 64ccc6be0ec5
parent 5289 9d18b61bd3eb
permissions -rw-r--r--
team edit: restore default hedgehog name if name is empty- since empty names are not supported and will lead to errors; also lupdate

#ifndef THEMESMODEL_H
#define THEMESMODEL_H

#include <QAbstractListModel>
#include <QStringList>
#include <QHash>

class ThemesModel : public QAbstractListModel
{
    Q_OBJECT
public:
    explicit ThemesModel(QStringList themes, QObject *parent = 0);

    int rowCount(const QModelIndex &parent = QModelIndex()) const;
    QVariant data(const QModelIndex &index, int role) const;
    bool setData(const QModelIndex &index, const QVariant &value,
                 int role = Qt::EditRole);

signals:

public slots:

private:

    QList<QHash<int, QVariant> > m_data;
};

#endif // THEMESMODEL_H