QTfrontend/themesmodel.h
author unc0rr
Fri, 02 Sep 2011 12:06:24 +0400
changeset 5734 d710db47a1ef
parent 5289 9d18b61bd3eb
permissions -rw-r--r--
Implement save button on game statistics page. I'm surprised I did it. Closes issue #264

#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