QTfrontend/model/themesmodel.h
author unc0rr
Sun, 22 Apr 2012 21:23:32 +0400
changeset 6912 831416764d2d
parent 6616 f77bb02b669f
permissions -rw-r--r--
Allow LIST command while in room to not annoy old frontends (0.9.17 or less) with warnings

#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