⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qtreewidget_p.h

📁 奇趣公司比较新的qt/emd版本
💻 H
字号:
/******************************************************************************** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.**** This file is part of the QtGui module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file.  Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://trolltech.com/products/qt/licenses/licensing/opensource/**** If you are unsure which license is appropriate for your use, please** review the following information:** http://trolltech.com/products/qt/licenses/licensing/licensingoverview** or contact the sales department at sales@trolltech.com.**** In addition, as a special exception, Trolltech gives you certain** additional rights. These rights are described in the Trolltech GPL** Exception version 1.0, which can be found at** http://www.trolltech.com/products/qt/gplexception/ and in the file** GPL_EXCEPTION.txt in this package.**** In addition, as a special exception, Trolltech, as the sole copyright** holder for Qt Designer, grants users of the Qt/Eclipse Integration** plug-in the right for the Qt/Eclipse Integration to link to** functionality provided by Qt Designer and its related libraries.**** Trolltech reserves all rights not expressly granted herein.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#ifndef QTREEWIDGET_P_H#define QTREEWIDGET_P_H////  W A R N I N G//  -------------//// This file is not part of the Qt API. This header file may change// from version to version without notice, or even be removed.//// We mean it.//#include <QtCore/qabstractitemmodel.h>#include <QtCore/qpair.h>#include <QtGui/qtreewidget.h>#ifndef QT_NO_TREEWIDGETclass QTreeWidgetItem;class QTreeWidgetItemIterator;class QTreeModelPrivate;class QTreeModel : public QAbstractItemModel{    Q_OBJECT    friend class QTreeWidget;    friend class QTreeWidgetPrivate;    friend class QTreeWidgetItem;    friend class QTreeWidgetItemIterator;    friend class QTreeWidgetItemIteratorPrivate;public:    QTreeModel(int columns = 0, QTreeWidget *parent = 0);    ~QTreeModel();    inline QTreeWidget *view() const        { return qobject_cast<QTreeWidget*>(QObject::parent()); }    void clear();    void setColumnCount(int columns);    QTreeWidgetItem *item(const QModelIndex &index) const;    void itemChanged(QTreeWidgetItem *item);    QModelIndex index(const QTreeWidgetItem *item, int column) const;    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 = QModelIndex()) const;    bool hasChildren(const QModelIndex &parent) const;    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;    bool setData(const QModelIndex &index, const QVariant &value, int role);    QMap<int, QVariant> itemData(const QModelIndex &index) const;    QVariant headerData(int section, Qt::Orientation orientation, int role) const;    bool setHeaderData(int section, Qt::Orientation orientation, const QVariant &value,                       int role);    Qt::ItemFlags flags(const QModelIndex &index) const;    void sort(int column, Qt::SortOrder order);    void ensureSorted(int column, Qt::SortOrder order,                      int start, int end, const QModelIndex &parent);    static bool itemLessThan(const QPair<QTreeWidgetItem*,int> &left,                             const QPair<QTreeWidgetItem*,int> &right);    static bool itemGreaterThan(const QPair<QTreeWidgetItem*,int> &left,                                const QPair<QTreeWidgetItem*,int> &right);    static QList<QTreeWidgetItem*>::iterator sortedInsertionIterator(        const QList<QTreeWidgetItem*>::iterator &begin,        const QList<QTreeWidgetItem*>::iterator &end,        Qt::SortOrder order, QTreeWidgetItem *item);    bool insertRows(int row, int count, const QModelIndex &);    bool insertColumns(int column, int count, const QModelIndex &);    bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex());    // dnd    QStringList mimeTypes() const;    QMimeData *mimeData(const QModelIndexList &indexes) const;    bool dropMimeData(const QMimeData *data, Qt::DropAction action,                      int row, int column, const QModelIndex &parent);    Qt::DropActions supportedDropActions() const;    QMimeData *internalMimeData() const;    inline QModelIndex createIndexFromItem(int row, int col, QTreeWidgetItem *item) const    { return createIndex(row, col, item); }Q_SIGNALS:    void itemsSorted();protected:    QTreeModel(QTreeModelPrivate &, QTreeWidget *parent = 0);    void emitDataChanged(QTreeWidgetItem *item, int column);    void beginInsertItems(QTreeWidgetItem *parent, int row, int count);    void endInsertItems();    void beginRemoveItems(QTreeWidgetItem *parent, int row, int count);    void endRemoveItems();    void sortItems(QList<QTreeWidgetItem*> *items, int column, Qt::SortOrder order);private:    QTreeWidgetItem *rootItem;    QTreeWidgetItem *headerItem;    mutable QModelIndexList cachedIndexes;    QList<QTreeWidgetItemIterator*> iterators;    mutable bool sortPending;    bool executePendingSort() const;    Q_DECLARE_PRIVATE(QTreeModel)};#include "private/qabstractitemmodel_p.h"class QTreeModelPrivate : public QAbstractItemModelPrivate{    Q_DECLARE_PUBLIC(QTreeModel)};class QTreeWidgetItemPrivate{public:    QTreeWidgetItemPrivate(QTreeWidgetItem *item)        : q(item), disabled(false), policy(QTreeWidgetItem::DontShowIndicatorWhenChildless) {}    void propagateDisabled(QTreeWidgetItem *item);    QTreeWidgetItem *q;    QVariantList display;    uint disabled : 1;    QTreeWidgetItem::ChildIndicatorPolicy policy;};#endif // QT_NO_TREEWIDGET#endif // QTREEWIDGET_P_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -