/**************************************************************************** ** ** 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. ** ** Trolltech ASA (c) 2007 ** ** 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 QTREEWIDGETITEMITERATOR_H #define QTREEWIDGETITEMITERATOR_H #include QT_BEGIN_HEADER QT_MODULE(Gui) #ifndef QT_NO_TREEWIDGET class QTreeWidget; class QTreeWidgetItem; class QTreeModel; class QTreeWidgetItemIteratorPrivate; class Q_GUI_EXPORT QTreeWidgetItemIterator { friend class QTreeModel; public: enum IteratorFlag { All = 0x00000000, Hidden = 0x00000001, NotHidden = 0x00000002, Selected = 0x00000004, Unselected = 0x00000008, Selectable = 0x00000010, NotSelectable = 0x00000020, DragEnabled = 0x00000040, DragDisabled = 0x00000080, DropEnabled = 0x00000100, DropDisabled = 0x00000200, HasChildren = 0x00000400, NoChildren = 0x00000800, Checked = 0x00001000, NotChecked = 0x00002000, Enabled = 0x00004000, Disabled = 0x00008000, Editable = 0x00010000, NotEditable = 0x00020000, UserFlag = 0x01000000 // The first flag that can be used by the user. }; Q_DECLARE_FLAGS(IteratorFlags, IteratorFlag) QTreeWidgetItemIterator(const QTreeWidgetItemIterator &it); explicit QTreeWidgetItemIterator(QTreeWidget *widget, IteratorFlags flags = All); explicit QTreeWidgetItemIterator(QTreeWidgetItem *item, IteratorFlags flags = All); ~QTreeWidgetItemIterator(); QTreeWidgetItemIterator &operator=(const QTreeWidgetItemIterator &it); QTreeWidgetItemIterator &operator++(); inline const QTreeWidgetItemIterator operator++(int); inline QTreeWidgetItemIterator &operator+=(int n); QTreeWidgetItemIterator &operator--(); inline const QTreeWidgetItemIterator operator--(int); inline QTreeWidgetItemIterator &operator-=(int n); inline QTreeWidgetItem *operator*() const; private: bool matchesFlags(const QTreeWidgetItem *item) const; QTreeWidgetItemIteratorPrivate *d_ptr; QTreeWidgetItem *current; IteratorFlags flags; Q_DECLARE_PRIVATE(QTreeWidgetItemIterator) }; inline const QTreeWidgetItemIterator QTreeWidgetItemIterator::operator++(int) { QTreeWidgetItemIterator it = *this; ++(*this); return it; } inline const QTreeWidgetItemIterator QTreeWidgetItemIterator::operator--(int) { QTreeWidgetItemIterator it = *this; --(*this); return it; } inline QTreeWidgetItemIterator &QTreeWidgetItemIterator::operator+=(int n) { if (n < 0) return (*this) -= (-n); while (current && n--) ++(*this); return *this; } inline QTreeWidgetItemIterator &QTreeWidgetItemIterator::operator-=(int n) { if (n < 0) return (*this) += (-n); while (current && n--) --(*this); return *this; } inline QTreeWidgetItem *QTreeWidgetItemIterator::operator*() const { return current; } Q_DECLARE_OPERATORS_FOR_FLAGS(QTreeWidgetItemIterator::IteratorFlags) #endif // QT_NO_TREEWIDGET QT_END_HEADER #endif // QTREEWIDGETITEMITERATOR_H