Qt 4.8
|
The QScriptClassPropertyIterator class provides an iterator interface for custom Qt Script objects. More...
#include <qscriptclasspropertyiterator.h>
Public Functions | |
virtual QScriptValue::PropertyFlags | flags () const |
Returns the flags of the last property that was jumped over using next() or previous(). More... | |
virtual bool | hasNext () const =0 |
Returns true if there is at least one item ahead of the iterator (i. More... | |
virtual bool | hasPrevious () const =0 |
Returns true if there is at least one item behind the iterator (i. More... | |
virtual uint | id () const |
Returns the id of the last property that was jumped over using next() or previous(). More... | |
virtual QScriptString | name () const =0 |
Returns the name of the last property that was jumped over using next() or previous(). More... | |
virtual void | next ()=0 |
Advances the iterator by one position. More... | |
QScriptValue | object () const |
Returns the Qt Script object this iterator is traversing. More... | |
virtual void | previous ()=0 |
Moves the iterator back by one position. More... | |
virtual void | toBack ()=0 |
Moves the iterator to the back of the QScriptValue (after the last property). More... | |
virtual void | toFront ()=0 |
Moves the iterator to the front of the QScriptValue (before the first property). More... | |
virtual | ~QScriptClassPropertyIterator () |
Destroys the iterator. More... | |
Protected Functions | |
QScriptClassPropertyIterator (const QScriptValue &object) | |
Constructs an iterator for traversing object. More... | |
QScriptClassPropertyIterator (const QScriptValue &object, QScriptClassPropertyIteratorPrivate &dd) | |
Protected Variables | |
QScopedPointer< QScriptClassPropertyIteratorPrivate > | d_ptr |
The QScriptClassPropertyIterator class provides an iterator interface for custom Qt Script objects.
This class is only relevant if you have subclassed QScriptClass and want to provide enumeration of your custom properties (e.g. when objects of your class are used with QScriptValueIterator, or with the for-in statement in scripts).
The object() function returns the Qt Script object the iterator is traversing.
toFront(), hasNext() and next() provide forward iteration.
toBack(), hasPrevious() and previous() provide backward iteration.
name(), id() and flags() return information about the last property that was jumped over using next() or previous().
Definition at line 39 of file qscriptclasspropertyiterator.h.
|
protected |
Constructs an iterator for traversing object.
Subclasses should ensure that the iterator is set to the front of the sequence of properties (before the first property).
Definition at line 77 of file qscriptclasspropertyiterator.cpp.
|
virtual |
|
protected |
Definition at line 87 of file qscriptclasspropertyiterator.cpp.
|
virtual |
Returns the flags of the last property that was jumped over using next() or previous().
The default implementation calls the propertyFlags() function of object() with argument name().
Definition at line 226 of file qscriptclasspropertyiterator.cpp.
|
pure virtual |
Returns true if there is at least one item ahead of the iterator (i.
e. the iterator is not at the back of the property sequence); otherwise returns false.
Referenced by QScript::ClassObjectDelegate::getOwnPropertyNames().
|
pure virtual |
Returns true if there is at least one item behind the iterator (i.
e. the iterator is not at the front of the property sequence); otherwise returns false.
|
virtual |
Returns the id of the last property that was jumped over using next() or previous().
The default implementation returns 0.
Definition at line 214 of file qscriptclasspropertyiterator.cpp.
|
pure virtual |
Returns the name of the last property that was jumped over using next() or previous().
Referenced by flags(), and QScript::ClassObjectDelegate::getOwnPropertyNames().
|
pure virtual |
Advances the iterator by one position.
Calling this function on an iterator located at the back of the container leads to undefined results.
Referenced by QScript::ClassObjectDelegate::getOwnPropertyNames().
QScriptValue QScriptClassPropertyIterator::object | ( | ) | const |
Returns the Qt Script object this iterator is traversing.
Definition at line 105 of file qscriptclasspropertyiterator.cpp.
Referenced by flags(), and QScriptClassPropertyIterator().
|
pure virtual |
Moves the iterator back by one position.
Calling this function on an iterator located at the front of the container leads to undefined results.
|
pure virtual |
Moves the iterator to the back of the QScriptValue (after the last property).
|
pure virtual |
Moves the iterator to the front of the QScriptValue (before the first property).
|
protected |
Definition at line 64 of file qscriptclasspropertyiterator.h.
Referenced by QScriptClassPropertyIterator().