qproxymodel.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 QPROXYMODEL_H
  38. #define QPROXYMODEL_H
  39. #include <QtCore/qabstractitemmodel.h>
  40. QT_BEGIN_HEADER
  41. QT_BEGIN_NAMESPACE
  42. QT_MODULE(Gui)
  43. #ifndef QT_NO_PROXYMODEL
  44. class QProxyModelPrivate;
  45. class Q_GUI_EXPORT QProxyModel : public QAbstractItemModel
  46. {
  47.     Q_OBJECT
  48. public:
  49.     explicit QProxyModel(QObject *parent = 0);
  50.     ~QProxyModel();
  51.     virtual void setModel(QAbstractItemModel *model);
  52.     QAbstractItemModel *model() const;
  53.     // implementing model interface
  54.     QModelIndex index(int row, int column, const QModelIndex &parent) const;
  55.     QModelIndex parent(const QModelIndex &child) const;
  56.     int rowCount(const QModelIndex &parent) const;
  57.     int columnCount(const QModelIndex &parent) const;
  58.     bool hasChildren(const QModelIndex &parent) const;
  59.     QVariant data(const QModelIndex &index, int role) const;
  60.     bool setData(const QModelIndex &index, const QVariant &value, int role);
  61.     QVariant headerData(int section, Qt::Orientation orientation, int role) const;
  62.     bool setHeaderData(int section, Qt::Orientation orientation, const QVariant &value,
  63.                        int role);
  64.     QStringList mimeTypes() const;
  65.     QMimeData *mimeData(const QModelIndexList &indexes) const;
  66.     bool dropMimeData(const QMimeData *data, Qt::DropAction action,
  67.                       int row, int column, const QModelIndex &parent);
  68.     Qt::DropActions supportedDropActions() const;
  69.     bool insertRows(int row, int count, const QModelIndex &parent);
  70.     bool insertColumns(int column, int count, const QModelIndex &parent);
  71.     void fetchMore(const QModelIndex &parent);
  72.     Qt::ItemFlags flags(const QModelIndex &index) const;
  73.     void sort(int column, Qt::SortOrder order);
  74.     QModelIndexList match(const QModelIndex &start, int role, const QVariant &value,
  75.                           int hits, Qt::MatchFlags flags) const;
  76.     QSize span(const QModelIndex &index) const;
  77.     bool submit();
  78.     void revert();
  79. #ifdef Q_NO_USING_KEYWORD
  80.     inline QObject *parent() const { return QObject::parent(); }
  81. #else
  82.     using QObject::parent;
  83. #endif
  84. protected:
  85.     QProxyModel(QProxyModelPrivate &, QObject *parent = 0);
  86.     QModelIndex setProxyModel(const QModelIndex &source_index) const;
  87.     QModelIndex setSourceModel(const QModelIndex &proxy_index) const;
  88.     void connectToModel(const QAbstractItemModel *model) const;
  89.     void disconnectFromModel(const QAbstractItemModel *model) const;
  90. private:    
  91.     Q_DECLARE_PRIVATE(QProxyModel)
  92.     Q_DISABLE_COPY(QProxyModel)
  93.     Q_PRIVATE_SLOT(d_func(), void _q_sourceDataChanged(const QModelIndex&,const QModelIndex&))
  94.     Q_PRIVATE_SLOT(d_func(), void _q_sourceRowsAboutToBeInserted(const QModelIndex&,int,int))
  95.     Q_PRIVATE_SLOT(d_func(), void _q_sourceRowsInserted(const QModelIndex&,int,int))
  96.     Q_PRIVATE_SLOT(d_func(), void _q_sourceRowsAboutToBeRemoved(const QModelIndex&,int,int))
  97.     Q_PRIVATE_SLOT(d_func(), void _q_sourceRowsRemoved(const QModelIndex&,int,int))
  98.     Q_PRIVATE_SLOT(d_func(), void _q_sourceColumnsAboutToBeInserted(const QModelIndex&,int,int))
  99.     Q_PRIVATE_SLOT(d_func(), void _q_sourceColumnsInserted(const QModelIndex&,int,int))
  100.     Q_PRIVATE_SLOT(d_func(), void _q_sourceColumnsAboutToBeRemoved(const QModelIndex&,int,int))
  101.     Q_PRIVATE_SLOT(d_func(), void _q_sourceColumnsRemoved(const QModelIndex&,int,int))
  102. };
  103. #endif // QT_NO_PROXYMODEL
  104. QT_END_NAMESPACE
  105. QT_END_HEADER
  106. #endif // QPROXYMODEL_H