#include <MIteratorType.h>
The MIteratorType class is used on iterators where more than one type of filters can be specified. It also provides functionalities to set and get the filter list or individual types of filter. This class should be used in conjunction with DAG/DG/DependencyNodes iterators for using filter list (list of MFn::Type objects) on them, thus enabling faster traversal thro' iterators.
Also, the class has functionalities for specifying the type of object the iterator will be reset to. This could be an MObject, an MPlug or an MDagPath.
Public Types | |
enum | objFilterType { kMObject, kMDagPathObject, kMPlugObject } |
Type of object the iterator deals with. More... | |
Public Member Functions | |
MIteratorType (MStatus *ReturnStatus=NULL) | |
MIteratorType (const MIteratorType &, MStatus *ReturnStatus=NULL) | |
~MIteratorType () | |
void | setFilterType (MFn::Type type, MStatus *ReturnStatus=NULL) |
void | setFilterList (MIntArray &listOfFilters, MStatus *ReturnStatus=NULL) |
void | setObjectType (objFilterType objType, MStatus *ReturnStatus=NULL) |
MFn::Type | getFilterType (MStatus *ReturnStatus=NULL) |
MStatus | getFilterList (MIntArray &listOfFilters) |
MIteratorType::objFilterType | getObjectType (MStatus *ReturnStatus=NULL) |
bool | filterListEnabled () |
Type of object the iterator deals with.
kMObject | This is to indicate that the root of the iterator has to be reset to an MObject. |
kMDagPathObject | This is to indicate that the root of the iterator has to be reset to an MDagPath object. |
kMPlugObject | This is to indicate that the root of the iterator has to be reset to an MPlug object. |
MIteratorType::MIteratorType | ( | MStatus * | ReturnStatus = NULL |
) |
Class Constructor
Initializes the filter type and object type.
[out] | ReturnStatus | Status Code (see below) |
MIteratorType::MIteratorType | ( | const MIteratorType & | src, | |
MStatus * | ReturnStatus = NULL | |||
) |
Copy Constructor
Constructs the object from an object of the same type.
[in] | src | Source object. |
[out] | ReturnStatus | Status Code (see below) |
MIteratorType::~MIteratorType | ( | ) |
Destructor.
Sets the filter type to be used in the iterator. See MFn::Type for the list of filter types that can be set.
[in] | type | An object of type MFn::Type. |
[out] | ReturnStatus | Status Code (see below) |
Sets the filter list. The types of filters to be traversed in the iterator is added to an array and then passed in to this function. This also enables filter list usage on iterators, as opposed to single filter.
[in] | listOfFilters | List of MFn::Type filters. |
[out] | ReturnStatus | Status Code (see below) |
void MIteratorType::setObjectType | ( | objFilterType | objFilterType, | |
MStatus * | ReturnStatus = NULL | |||
) |
Sets the object type. This function should be used only when we want to reset the iterator root. Iterator root can be reset to either an MObject, an MDagPath or to an MPlug. For each of this, there is a corresponding enum value, which has to be used as an argument to this function.
During creation of the iterator, this function has no effect.
[in] | objFilterType | Type specifying the type of object. |
[out] | ReturnStatus | Status Code (see below) |
Returns the type of filter.
[out] | ReturnStatus | Status Code (see below) |
Gets the list of filters.
[out] | listOfFilters | Array of filters. |
MIteratorType::objFilterType MIteratorType::getObjectType | ( | MStatus * | ReturnStatus = NULL |
) |
Returns the object type.
[out] | ReturnStatus | Status Code (see below) |
bool MIteratorType::filterListEnabled | ( | ) |
Returns whether the we are using a single filter on the iterator or a filter list.
Autodesk® Maya® 2009 © 1997-2008 Autodesk, Inc. All rights reserved. | Generated with 1.5.6 |