QTfrontend/model/themesmodel.h
author sheepluva
Sat, 29 Oct 2011 15:31:45 +0200
changeset 6229 4c834af76c3b
parent 6061 15b4b485a1c5
child 6616 f77bb02b669f
permissions -rw-r--r--
* fix highlighting (i just broke it by not negating a boolean expression) * fix issues with first display: none; being ignored + allow css to hide hours / seconds of timestamp

#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