qdirmodel.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:5k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QDIRMODEL_H
  38. #define QDIRMODEL_H
  39. #include <QtCore/qabstractitemmodel.h>
  40. #include <QtCore/qdir.h>
  41. #include <QtGui/qfileiconprovider.h>
  42. QT_BEGIN_HEADER
  43. QT_BEGIN_NAMESPACE
  44. QT_MODULE(Gui)
  45. #ifndef QT_NO_DIRMODEL
  46. class QDirModelPrivate;
  47. class Q_GUI_EXPORT QDirModel : public QAbstractItemModel
  48. {
  49.     Q_OBJECT
  50.     Q_PROPERTY(bool resolveSymlinks READ resolveSymlinks WRITE setResolveSymlinks)
  51.     Q_PROPERTY(bool readOnly READ isReadOnly WRITE setReadOnly)
  52.     Q_PROPERTY(bool lazyChildCount READ lazyChildCount WRITE setLazyChildCount)
  53. public:
  54.     enum Roles {
  55.         FileIconRole = Qt::DecorationRole,
  56.         FilePathRole = Qt::UserRole + 1,
  57.         FileNameRole
  58.     };
  59.     QDirModel(const QStringList &nameFilters, QDir::Filters filters,
  60.               QDir::SortFlags sort, QObject *parent = 0);
  61.     explicit QDirModel(QObject *parent = 0);
  62.     ~QDirModel();
  63.     QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const;
  64.     QModelIndex parent(const QModelIndex &child) const;
  65.     int rowCount(const QModelIndex &parent = QModelIndex()) const;
  66.     int columnCount(const QModelIndex &parent = QModelIndex()) const;
  67.     QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
  68.     bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
  69.     QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
  70.     bool hasChildren(const QModelIndex &index = QModelIndex()) const;
  71.     Qt::ItemFlags flags(const QModelIndex &index) const;
  72.     void sort(int column, Qt::SortOrder order = Qt::AscendingOrder);
  73.     QStringList mimeTypes() const;
  74.     QMimeData *mimeData(const QModelIndexList &indexes) const;
  75.     bool dropMimeData(const QMimeData *data, Qt::DropAction action,
  76.                       int row, int column, const QModelIndex &parent);
  77.     Qt::DropActions supportedDropActions() const;
  78.     // QDirModel specific API
  79.     void setIconProvider(QFileIconProvider *provider);
  80.     QFileIconProvider *iconProvider() const;
  81.     void setNameFilters(const QStringList &filters);
  82.     QStringList nameFilters() const;
  83.     void setFilter(QDir::Filters filters);
  84.     QDir::Filters filter() const;
  85.     void setSorting(QDir::SortFlags sort);
  86.     QDir::SortFlags sorting() const;
  87.     void setResolveSymlinks(bool enable);
  88.     bool resolveSymlinks() const;
  89.     void setReadOnly(bool enable);
  90.     bool isReadOnly() const;
  91.     void setLazyChildCount(bool enable);
  92.     bool lazyChildCount() const;
  93.     QModelIndex index(const QString &path, int column = 0) const;
  94.     bool isDir(const QModelIndex &index) const;
  95.     QModelIndex mkdir(const QModelIndex &parent, const QString &name);
  96.     bool rmdir(const QModelIndex &index);
  97.     bool remove(const QModelIndex &index);
  98.     QString filePath(const QModelIndex &index) const;
  99.     QString fileName(const QModelIndex &index) const;
  100.     QIcon fileIcon(const QModelIndex &index) const;
  101.     QFileInfo fileInfo(const QModelIndex &index) const;
  102. #ifdef Q_NO_USING_KEYWORD
  103.     inline QObject *parent() const { return QObject::parent(); }
  104. #else
  105.     using QObject::parent;
  106. #endif
  107. public Q_SLOTS:
  108.     void refresh(const QModelIndex &parent = QModelIndex());
  109. protected:
  110.     QDirModel(QDirModelPrivate &, QObject *parent = 0);
  111.     friend class QFileDialogPrivate;
  112. private:
  113.     Q_DECLARE_PRIVATE(QDirModel)
  114.     Q_DISABLE_COPY(QDirModel)
  115.     Q_PRIVATE_SLOT(d_func(), void _q_refresh())
  116. };
  117. #endif // QT_NO_DIRMODEL
  118. QT_END_NAMESPACE
  119. QT_END_HEADER
  120. #endif // QDIRMODEL_H