]>
git.saurik.com Git - apple/javascriptcore.git/blob - qt/api/qscriptvalueiterator.cpp
f1caa61d1731b503b2d1d2a791ece9afb3d88748
2 Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
22 #include "qscriptvalueiterator.h"
24 #include "qscriptvalue_p.h"
25 #include "qscriptvalueiterator_p.h"
28 \class QScriptValueIterator
30 \brief The QScriptValueIterator class provides a Java-style iterator for QScriptValue.
35 The QScriptValueIterator constructor takes a QScriptValue as
36 argument. After construction, the iterator is located at the very
37 beginning of the sequence of properties. Here's how to iterate over
38 all the properties of a QScriptValue:
40 \snippet doc/src/snippets/code/src_script_qscriptvalueiterator.cpp 0
42 The next() advances the iterator. The name(), value() and flags()
43 functions return the name, value and flags of the last item that was
46 If you want to remove properties as you iterate over the
47 QScriptValue, use remove(). If you want to modify the value of a
48 property, use setValue().
50 Note that QScriptValueIterator only iterates over the QScriptValue's
51 own properties; i.e. it does not follow the prototype chain. You can
52 use a loop like this to follow the prototype chain:
54 \snippet doc/src/snippets/code/src_script_qscriptvalueiterator.cpp 1
56 Note that QScriptValueIterator will not automatically skip over
57 properties that have the QScriptValue::SkipInEnumeration flag set;
58 that flag only affects iteration in script code. If you want, you
59 can skip over such properties with code like the following:
61 \snippet doc/src/snippets/code/src_script_qscriptvalueiterator.cpp 2
63 \sa QScriptValue::property()
67 Constructs an iterator for traversing \a object. The iterator is
68 set to be at the front of the sequence of properties (before the
71 QScriptValueIterator::QScriptValueIterator(const QScriptValue
& object
)
72 : d_ptr(new QScriptValueIteratorPrivate(QScriptValuePrivate::get(object
)))
76 Destroys the iterator.
78 QScriptValueIterator::~QScriptValueIterator()
82 Returns true if there is at least one item ahead of the iterator
83 (i.e. the iterator is \e not at the back of the property sequence);
84 otherwise returns false.
86 \sa next(), hasPrevious()
88 bool QScriptValueIterator::hasNext() const
90 return d_ptr
->hasNext();
94 Advances the iterator by one position.
96 Calling this function on an iterator located at the back of the
97 container leads to undefined results.
99 \sa hasNext(), previous(), name()
101 void QScriptValueIterator::next()
107 Returns true if there is at least one item behind the iterator
108 (i.e. the iterator is \e not at the front of the property sequence);
109 otherwise returns false.
111 \sa previous(), hasNext()
113 bool QScriptValueIterator::hasPrevious() const
115 return d_ptr
->hasPrevious();
119 Moves the iterator back by one position.
121 Calling this function on an iterator located at the front of the
122 container leads to undefined results.
124 \sa hasPrevious(), next(), name()
126 void QScriptValueIterator::previous()
132 Moves the iterator to the front of the QScriptValue (before the
137 void QScriptValueIterator::toFront()
143 Moves the iterator to the back of the QScriptValue (after the
146 \sa toFront(), previous()
148 void QScriptValueIterator::toBack()
154 Returns the name of the last property that was jumped over using
155 next() or previous().
159 QString
QScriptValueIterator::name() const
161 return d_ptr
->name();
165 Returns the name of the last property that was jumped over using
166 next() or previous().
168 QScriptString
QScriptValueIterator::scriptName() const
170 return QScriptStringPrivate::get(d_ptr
->scriptName());
174 Returns the value of the last property that was jumped over using
175 next() or previous().
177 \sa setValue(), name()
179 QScriptValue
QScriptValueIterator::value() const
181 return QScriptValuePrivate::get(d_ptr
->value());
185 Sets the \a value of the last property that was jumped over using
186 next() or previous().
190 void QScriptValueIterator::setValue(const QScriptValue
& value
)
192 d_ptr
->setValue(QScriptValuePrivate::get(value
));
196 Removes the last property that was jumped over using next()
201 void QScriptValueIterator::remove()
207 Returns the flags of the last property that was jumped over using
208 next() or previous().
212 QScriptValue::PropertyFlags
QScriptValueIterator::flags() const
214 return d_ptr
->flags();
218 Makes the iterator operate on \a object. The iterator is set to be
219 at the front of the sequence of properties (before the first
222 QScriptValueIterator
& QScriptValueIterator::operator=(QScriptValue
& object
)
224 d_ptr
= new QScriptValueIteratorPrivate(QScriptValuePrivate::get(object
));