|
ParaView
|
iterates over the properties of a proxy More...
#include <vtkSMOrderedPropertyIterator.h>


Public Member Functions | |
| virtual const char * | GetClassName () |
| virtual int | IsA (const char *type) |
| void | PrintSelf (ostream &os, vtkIndent indent) |
| void | SetProxy (vtkSMProxy *proxy) |
| void | Begin () |
| int | IsAtEnd () |
| void | Next () |
| const char * | GetKey () |
| vtkSMProperty * | GetProperty () |
| virtual vtkSMProxy * | GetProxy () |
Static Public Member Functions | |
| static vtkSMOrderedPropertyIterator * | New () |
| static int | IsTypeOf (const char *type) |
| static vtkSMOrderedPropertyIterator * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
| vtkSMOrderedPropertyIterator () | |
| ~vtkSMOrderedPropertyIterator () | |
Protected Attributes | |
| vtkSMProxy * | Proxy |
| unsigned int | Index |
iterates over the properties of a proxy
vtkSMOrderedPropertyIterator is used to iterate over the properties of a proxy. The properties of the root proxies as well as sub-proxies are included in the iteration. For sub-proxies, only exposed properties are iterated over. vtkSMOrderedPropertyIterator iterates over properties in the order they appear in the xml or in the order they were added. This is possible because vtkSMProxy keeps track of the order in which properties were added or exposed in a PropertyNamesInOrder vector.
Definition at line 35 of file vtkSMOrderedPropertyIterator.h.
| vtkSMOrderedPropertyIterator::vtkSMOrderedPropertyIterator | ( | ) | [protected] |
| vtkSMOrderedPropertyIterator::~vtkSMOrderedPropertyIterator | ( | ) | [protected] |
| static vtkSMOrderedPropertyIterator* vtkSMOrderedPropertyIterator::New | ( | ) | [static] |
Reimplemented from vtkSMObject.
| virtual const char* vtkSMOrderedPropertyIterator::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkSMObject.
| static int vtkSMOrderedPropertyIterator::IsTypeOf | ( | const char * | type | ) | [static] |
Reimplemented from vtkSMObject.
| virtual int vtkSMOrderedPropertyIterator::IsA | ( | const char * | type | ) | [virtual] |
Reimplemented from vtkSMObject.
| static vtkSMOrderedPropertyIterator* vtkSMOrderedPropertyIterator::SafeDownCast | ( | vtkObject * | o | ) | [static] |
Reimplemented from vtkSMObject.
| void vtkSMOrderedPropertyIterator::PrintSelf | ( | ostream & | os, |
| vtkIndent | indent | ||
| ) | [virtual] |
Reimplemented from vtkSMObject.
| void vtkSMOrderedPropertyIterator::SetProxy | ( | vtkSMProxy * | proxy | ) |
Set the proxy to be used.
| virtual vtkSMProxy* vtkSMOrderedPropertyIterator::GetProxy | ( | ) | [virtual] |
Return the proxy.
| void vtkSMOrderedPropertyIterator::Begin | ( | ) |
Go to the first property.
| int vtkSMOrderedPropertyIterator::IsAtEnd | ( | ) |
Returns true if iterator points past the end of the collection.
| void vtkSMOrderedPropertyIterator::Next | ( | ) |
Move to the next property.
| const char* vtkSMOrderedPropertyIterator::GetKey | ( | ) |
Returns the key (name) at the current iterator position.
| vtkSMProperty* vtkSMOrderedPropertyIterator::GetProperty | ( | ) |
Returns the property at the current iterator position.
vtkSMProxy* vtkSMOrderedPropertyIterator::Proxy [protected] |
Definition at line 69 of file vtkSMOrderedPropertyIterator.h.
unsigned int vtkSMOrderedPropertyIterator::Index [protected] |
Definition at line 70 of file vtkSMOrderedPropertyIterator.h.
1.7.5.1