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

📄 qtreewidgetitemiterator.cpp

📁 qt-x11-opensource-src-4.1.4.tar.gz源码
💻 CPP
字号:
/******************************************************************************** Copyright (C) 1992-2006 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://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#include <private/qtreewidgetitemiterator_p.h>#include "qtreewidget.h"#include "qtreewidget_p.h"#include "qwidgetitemdata_p.h"#ifndef QT_NO_TREEWIDGET/*!  \class QTreeWidgetItemIterator  \ingroup model-view  \brief The QTreeWidgetItemIterator class provides a way to iterate over the   items in a QTreeWidget instance.  The iterator will walk the items in a pre-order traversal order, thus visiting the parent  node \e before it continues to the child nodes.  It is possible to filter out certain types of node by passing certain  \l{IteratorFlag}{flags} to the constructor of QTreeWidgetItemIterator.  \sa QTreeWidget, {Model/View Programming}, QTreeWidgetItem*//*!    Constructs an iterator for the same QTreeWidget as \a it. The    current iterator item is set to point on the current item of \a it.*/QTreeWidgetItemIterator::QTreeWidgetItemIterator(const QTreeWidgetItemIterator &it)    :  d_ptr(new QTreeWidgetItemIteratorPrivate(*(it.d_ptr))),    current(it.current), flags(it.flags){    Q_D(QTreeWidgetItemIterator);    Q_ASSERT(d->m_model);    d->m_model->iterators.append(this);}/*!    Constructs an iterator for the QTreeWidget \a widget.     The iterator is set to point to the first toplevel     item (QTreeWidgetItem) of \a widget or the next matching item if     the toplevel item doesn't match the flags.    \sa QTreeWidgetItemIterator::IteratorFlag*/QTreeWidgetItemIterator::QTreeWidgetItemIterator(QTreeWidget *widget, IteratorFlags flags): current(0), flags(flags){    Q_ASSERT(widget);    QTreeModel *model = qobject_cast<QTreeModel*>(widget->model());    Q_ASSERT(model);    d_ptr = new QTreeWidgetItemIteratorPrivate(this, model);    model->iterators.append(this);    if (!model->tree.isEmpty()) current = model->tree.first();    if (current && !matchesFlags(current))        ++(*this);}/*!    Constructs an iterator for the QTreeWidget that contains the \a item    using the flags \a flags. The iterator is set    to point to \a item or the next matching item if \a item doesn't    match the flags.    \sa QTreeWidgetItemIterator::IteratorFlag*/QTreeWidgetItemIterator::QTreeWidgetItemIterator(QTreeWidgetItem *item, IteratorFlags flags)    : d_ptr(new QTreeWidgetItemIteratorPrivate(this, item->model)), current(item), flags(flags){    Q_D(QTreeWidgetItemIterator);    Q_ASSERT(item);    QTreeModel *model = item->model;    Q_ASSERT(model);    model->iterators.append(this);    // Initialize m_currentIndex and m_parentIndex as it would be if we had traversed from    // the beginning.    QTreeWidgetItem *parent = item;    parent = parent->parent();    QList<QTreeWidgetItem *> children = parent ? parent->children : d->m_model->tree;    d->m_currentIndex = children.indexOf(item);    while (parent) {        QTreeWidgetItem *itm = parent;        parent = parent->parent();        QList<QTreeWidgetItem *> children = parent ? parent->children : d->m_model->tree;        int index = children.indexOf(itm);        d->m_parentIndex.prepend(index);    }    if (current && !matchesFlags(current))        ++(*this);}/*!    Destroys the iterator.*/QTreeWidgetItemIterator::~QTreeWidgetItemIterator(){    d_func()->m_model->iterators.removeAll(this);    delete d_ptr;}/*!    Assignment. Makes a copy of \a it and returns a reference to its    iterator.*/QTreeWidgetItemIterator &QTreeWidgetItemIterator::operator=(const QTreeWidgetItemIterator &it){    Q_D(QTreeWidgetItemIterator);    if (d_func()->m_model != it.d_func()->m_model) {        d_func()->m_model->iterators.removeAll(this);        it.d_func()->m_model->iterators.append(this);    }    current = it.current;    flags = it.flags;    d->operator=(*it.d_func());    return *this;}/*!    The prefix ++ operator (++it) advances the iterator to the next matching item     and returns a reference to the resulting iterator.    Sets the current pointer to 0 if the current item is the last matching item.*/QTreeWidgetItemIterator &QTreeWidgetItemIterator::operator++(){    if (current)        do {            current = d_func()->next(current);        } while (current && !matchesFlags(current));    return *this;}/*!    The prefix -- operator (--it) advances the iterator to the previous matching item     and returns a reference to the resulting iterator.    Sets the current pointer to 0 if the current item is the first matching item.*/QTreeWidgetItemIterator &QTreeWidgetItemIterator::operator--(){    if (current)        do {            current = d_func()->previous(current);        } while (current && !matchesFlags(current));    return *this;}/*!  \internal*/bool QTreeWidgetItemIterator::matchesFlags(const QTreeWidgetItem *item) const{    if (!item)        return false;    if (flags == All)        return true;    {        Qt::ItemFlags itemFlags = item->flags();        if ((flags & Selectable) && !(itemFlags & Qt::ItemIsSelectable))            return false;        if ((flags & NotSelectable) && (itemFlags & Qt::ItemIsSelectable))            return false;        if ((flags & DragEnabled) && !(itemFlags & Qt::ItemIsDragEnabled))            return false;        if ((flags & DragDisabled) && (itemFlags & Qt::ItemIsDragEnabled))            return false;        if ((flags & DropEnabled) && !(itemFlags & Qt::ItemIsDropEnabled))            return false;        if ((flags & DropDisabled) && (itemFlags & Qt::ItemIsDropEnabled))            return false;        if ((flags & Enabled) && !(itemFlags & Qt::ItemIsEnabled))            return false;        if ((flags & Disabled) && (itemFlags & Qt::ItemIsEnabled))            return false;        if ((flags & Editable) && !(itemFlags & Qt::ItemIsEditable))            return false;        if ((flags & NotEditable) && (itemFlags & Qt::ItemIsEditable))            return false;    }    {        // ### We only test the check state for column 0        Qt::CheckState check = item->checkState(0);        // PartiallyChecked matches as Checked.        if ((flags & Checked) && (check == Qt::Unchecked))            return false;        if ((flags & NotChecked) && (check != Qt::Unchecked))            return false;    }    if ((flags & HasChildren) && !item->childCount())        return false;    if ((flags & NoChildren) && item->childCount())        return false;    {        QTreeWidget *widget = item->view;        Q_ASSERT(widget);        bool hidden = widget->isItemHidden(item);        if ((flags & Hidden) && !hidden)            return false;        if ((flags & NotHidden) && hidden)            return false;        bool selected = widget->isItemSelected(item);        if ((flags & Selected) && !selected)            return false;        if ((flags & Unselected) && selected)            return false;    }    return true;}/* * Implementation of QTreeWidgetItemIteratorPrivate */QTreeWidgetItem* QTreeWidgetItemIteratorPrivate::nextSibling(const QTreeWidgetItem* item) const{    Q_ASSERT(item);    QTreeWidgetItem *next = 0;    if (QTreeWidgetItem *par = item->parent()) {        int i = par->indexOfChild(const_cast<QTreeWidgetItem*>(item));        next = par->child(i + 1);    } else {        QTreeWidget *tw = item->treeWidget();        int i = tw->indexOfTopLevelItem(const_cast<QTreeWidgetItem*>(item));        next = tw->topLevelItem(i + 1);    }    return next;}QTreeWidgetItem *QTreeWidgetItemIteratorPrivate::next(const QTreeWidgetItem *current){    if (!current) return 0;    QTreeWidgetItem *next = 0;    if (current->childCount()) {        // walk the child        m_parentIndex.push(m_currentIndex);        m_currentIndex = 0;        next = current->child(0);    } else {        // walk the sibling        QTreeWidgetItem *parent = current->parent();        next = parent ? parent->child(m_currentIndex + 1) : m_model->tree.value(m_currentIndex + 1);        while (!next && parent) {            // if we had no sibling walk up the parent and try the sibling of that            parent = parent->parent();            m_currentIndex = m_parentIndex.pop();            next = parent ? parent->child(m_currentIndex + 1) : m_model->tree.value(m_currentIndex + 1);        }        if (next) ++(m_currentIndex);    }    return next;}QTreeWidgetItem *QTreeWidgetItemIteratorPrivate::previous(const QTreeWidgetItem *current){    if (!current) return 0;    QTreeWidgetItem *prev = 0;    // walk the previous sibling    QTreeWidgetItem *parent = current->parent();    prev = parent ? parent->child(m_currentIndex - 1) : m_model->tree.value(m_currentIndex - 1);    if (prev) {        // Yes, we had a previous sibling but we need go down to the last leafnode.        --m_currentIndex;        while (prev && prev->childCount()) {            m_parentIndex.push(m_currentIndex);            m_currentIndex = prev->childCount() - 1;            prev = prev->child(m_currentIndex);        }    } else if (parent) {        m_currentIndex = m_parentIndex.pop();        prev = parent;    }    return prev;}void QTreeWidgetItemIteratorPrivate::ensureValidIterator(const QTreeWidgetItem *itemToBeRemoved){    Q_Q(QTreeWidgetItemIterator);    Q_ASSERT(itemToBeRemoved);        if (!q->current) return;    QTreeWidgetItem *nextItem = q->current;    // Do not walk to the ancestor to find the other item if they have the same parent.    if (nextItem->parent() != itemToBeRemoved->parent()) {        while (nextItem->parent() && nextItem != itemToBeRemoved) {            nextItem = nextItem->parent();        }    }    // If the item to be removed is an ancestor of the current iterator item,    // we need to adjust the iterator.    if (nextItem == itemToBeRemoved) {        QTreeWidgetItem *parent = nextItem;        nextItem = 0;        while (parent && !nextItem) {            nextItem = nextSibling(parent);            parent = parent->parent();        }        if (nextItem) {            // Ooooh... Set the iterator to the next valid item            *q = QTreeWidgetItemIterator(nextItem, q->flags);            if (!(q->matchesFlags(nextItem))) ++(*q);        } else {            // set it to null.            q->current = 0;            m_parentIndex.clear();            return;        }    }    if (nextItem->parent() == itemToBeRemoved->parent()) {        // They have the same parent, i.e. we have to adjust the m_currentIndex member of the iterator        // if the deleted item is to the left of the nextItem.                QTreeWidgetItem *par = itemToBeRemoved->parent();   // We know they both have the same parent.        QTreeWidget *tw = itemToBeRemoved->treeWidget();    // ..and widget        int indexOfItemToBeRemoved = par ? par->indexOfChild(const_cast<QTreeWidgetItem *>(itemToBeRemoved))             : tw->indexOfTopLevelItem(const_cast<QTreeWidgetItem *>(itemToBeRemoved));        int indexOfNextItem = par ? par->indexOfChild(nextItem) : tw->indexOfTopLevelItem(nextItem);        if (indexOfItemToBeRemoved <= indexOfNextItem) {            // A sibling to the left of us was deleted, adjust the m_currentIndex member of the iterator.            // Note that the m_currentIndex will be wrong until the item is actually removed!            m_currentIndex--;        }    }}/*!  \fn const QTreeWidgetItemIterator QTreeWidgetItemIterator::operator++(int)  The postfix ++ operator (it++) advances the iterator to the next matching item   and returns an iterator to the previously current item.*//*!  \fn QTreeWidgetItemIterator &QTreeWidgetItemIterator::operator+=(int n)  Makes the iterator go forward by n matching items. (If n is negative, the iterator goes backward.)  If the current item is beyond the last item, the current item pointer is  set to 0. Returns the resulting iterator.*//*!  \fn const QTreeWidgetItemIterator QTreeWidgetItemIterator::operator--(int)  The postfix -- operator (it--) makes the preceding matching item current and returns an iterator to the previously current item.*//*!  \fn QTreeWidgetItemIterator &QTreeWidgetItemIterator::operator-=(int n)  Makes the iterator go back by n matching items. (If n is negative, the iterator goes forward.)  If the current item is ahead of the last item, the current item pointer is  set to 0. Returns the resulting iterator.*//*!  \fn QTreeWidgetItem *QTreeWidgetItemIterator::operator*() const  Dereference operator. Returns a pointer to the current item.*//*!    \enum QTreeWidgetItemIterator::IteratorFlag    These flags can be passed to a QTreeWidgetItemIterator constructor    (OR-ed together if more than one is used), so that the iterator    will only iterate over items that match the given flags.    \value All    \value Hidden    \value NotHidden    \value Selected    \value Unselected    \value Selectable    \value NotSelectable    \value DragEnabled    \value DragDisabled    \value DropEnabled    \value DropDisabled    \value HasChildren    \value NoChildren    \value Checked    \value NotChecked    \value Enabled    \value Disabled    \value Editable    \value NotEditable    \value UserFlag*/#endif // QT_NO_TREEWIDGET

⌨️ 快捷键说明

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