From 7a183cfa367db01413c001306741d06e1826d077 Mon Sep 17 00:00:00 2001 From: Treeki Date: Fri, 3 Aug 2012 05:16:52 +0200 Subject: might as well push all this. a massive amount of changes --- lspackagemodel.h | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 lspackagemodel.h (limited to 'lspackagemodel.h') diff --git a/lspackagemodel.h b/lspackagemodel.h new file mode 100644 index 0000000..18911de --- /dev/null +++ b/lspackagemodel.h @@ -0,0 +1,42 @@ +#ifndef LSPACKAGEMODEL_H +#define LSPACKAGEMODEL_H + +#include +#include "lyt/packagebase.h" + +class LSPackageModel : public QAbstractItemModel { + Q_OBJECT +public: + explicit LSPackageModel(LYTPackageBase *pkg, QObject *parent = 0); + ~LSPackageModel(); + + LYTPackageBase *package() const { return m_package; } + + QModelIndex index(int row, int column, const QModelIndex &parent) const; + QModelIndex parent(const QModelIndex &child) const; + int rowCount(const QModelIndex &parent) const; + int columnCount(const QModelIndex &parent) const; + QVariant data(const QModelIndex &index, int role) const; + +signals: + +private slots: + //void handleAboutToAddFile(LYTPackageBase::ItemType type, QString name); + //void handleAboutToRemoveFile(LYTPackageBase::ItemType type, QString name); + //void handleAboutToRenameFile(LYTPackageBase::ItemType type, QString from, QString to); + //void handleAboutToModifyFile(LYTPackageBase::ItemType type, QString name); + + void handleFileWasAdded(LYTPackageBase::ItemType type, QString name); + void handleFileWasRemoved(LYTPackageBase::ItemType type, QString name); + void handleFileWasRenamed(LYTPackageBase::ItemType type, QString from, QString to); + //void handleFileWasModified(LYTPackageBase::ItemType type, QString name); + +public slots: + +protected: + LYTPackageBase *m_package; + + QStringList *m_caches; +}; + +#endif // LSPACKAGEMODEL_H -- cgit v1.2.3