QTfrontend/model/themesmodel.h
author nemo
Mon, 27 Feb 2012 19:01:44 -0500
changeset 6749 6bb0cea803bd
parent 6616 f77bb02b669f
permissions -rw-r--r--
Clamp name/team name textures to avoid long team / hog name abuse. Limit width in px instead of chars to avoid unicode issues.

#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