filesystemmodel.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #ifndef FILESYSTEMMODEL_H
  2. #define FILESYSTEMMODEL_H
  3. #include <QDirModel>
  4. #include <QFileSystemModel>
  5. class FileSystemModel : public QFileSystemModel
  6. {
  7. Q_OBJECT
  8. Q_PROPERTY(QModelIndex pathIndex READ pathIndex WRITE setPathIndex NOTIFY pathIndexChanged)
  9. public:
  10. enum CustomRole{SizeRole = Qt::UserRole + 3, LastModifiedRole};
  11. explicit FileSystemModel(QObject *parent = 0);
  12. QVariant data(const QModelIndex &index, int role) const;
  13. void setPathIndex(const QModelIndex& index){mPathIndex = index;}
  14. const QModelIndex& pathIndex(){return mPathIndex;}
  15. signals:
  16. void pathIndexChanged();
  17. public slots:
  18. bool isDir(const QModelIndex &index = QModelIndex()) const;
  19. QString filePath(const QModelIndex &index = QModelIndex() ) const;
  20. void setDir(const QString& dir);
  21. void actionRename(const QModelIndex & index, const QString& name);
  22. void actionRemove(const QModelIndex & index);
  23. void actionMkdir(const QModelIndex & index, const QString& name);
  24. private:
  25. QModelIndex mPathIndex;
  26. };
  27. #endif // FILESYSTEMMODEL_H