diff options
author | am <am@f440f766-f032-0410-8965-dc7d17de2ca0> | 2009-11-08 20:55:40 +0000 |
---|---|---|
committer | am <am@f440f766-f032-0410-8965-dc7d17de2ca0> | 2009-11-08 20:55:40 +0000 |
commit | 7e4fd320c0c74bc45e60de18ac5d2b656aa4d821 (patch) | |
tree | 30ec693bbb2ebfaf9e8576bd4b2d78ce0a817d4c /fileinfomodel.h | |
parent | cb094b007ec5b7c197a7df502a778a2ce919128f (diff) | |
download | SheMov-7e4fd320c0c74bc45e60de18ac5d2b656aa4d821.tar.gz SheMov-7e4fd320c0c74bc45e60de18ac5d2b656aa4d821.tar.bz2 SheMov-7e4fd320c0c74bc45e60de18ac5d2b656aa4d821.zip |
-removed a lot of qDebug() includes
-turned the Fileinformation into a QTreeview, created a model for that
git-svn-id: file:///var/svn/repos2/shemov/trunk@422 f440f766-f032-0410-8965-dc7d17de2ca0
Diffstat (limited to 'fileinfomodel.h')
-rw-r--r-- | fileinfomodel.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/fileinfomodel.h b/fileinfomodel.h new file mode 100644 index 0000000..326a88e --- /dev/null +++ b/fileinfomodel.h @@ -0,0 +1,47 @@ +/* + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version + 2 of the License, or (at your option) any later version. +*/ + +#ifndef FILEINFOMODEL_H +#define FILEINFOMODEL_H + +#include <QAbstractItemModel> +#include <QStringList> + +class FileInfoItem; + +class FileInfoModel : public QAbstractItemModel { + Q_OBJECT + public: + enum Mode { File, Index }; + FileInfoModel(QObject *parent = 0); + virtual ~FileInfoModel(); + QModelIndex index(int row, int column, const QModelIndex &parent) const; + QModelIndex parent(const QModelIndex &index) const; + int rowCount(const QModelIndex &parent) const; + int columnCount(const QModelIndex &parent) const; + QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; + Qt::ItemFlags flags(const QModelIndex &index) const; + QVariant headerData(int section, Qt::Orientation o, int role) const; + void addFiles(const QStringList &files); + void addIndex(const QString &title, const QModelIndex &idx); + void clear(); + + protected: + bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex()); + bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex()); + + private: + FileInfoItem *mRootItem; + QStringList mCurrentFiles; + QModelIndex mCurrentIndex; + QString mTitle; + Mode mMode; + +}; + +#endif + |