ParaView
|
superclass for all SM properties More...
#include <vtkSMProperty.h>
Public Types | |
typedef vtkSMObject | Superclass |
![]() | |
typedef vtkObject | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
int | IsInDomains () |
Returns true if all values are in all domains, false otherwise. More... | |
int | IsInDomains (vtkSMDomain **domain) |
Overload of IsInDomains() that provides a mechanism to return the first domain that fails the check. More... | |
virtual void | UnRegister (vtkObjectBase *obj) |
Overloaded to break the reference loop caused by the internal domain iterator. More... | |
vtkSMDomainIterator * | NewDomainIterator () |
Creates, initializes and returns a new domain iterator. More... | |
vtkSMDomain * | GetDomain (const char *name) |
Returns a domain give a name. More... | |
vtkSMDomain * | FindDomain (const char *classname) |
Returns the first domain which is of the specified type. More... | |
unsigned int | GetNumberOfDomains () |
Returns the number of domains this property has. More... | |
void | UpdateDependentDomains () |
Calls Update() on all domains contained by the property as well as all dependant domains. More... | |
void | AddDomain (const char *name, vtkSMDomain *dom) |
Properties can have one or more domains. More... | |
virtual void | AddLinkedProperty (vtkSMProperty *targetProperty) |
Add a link to a property whose value should be synchronized with this property value. More... | |
virtual void | RemoveLinkedProperty (vtkSMProperty *targetProperty) |
Remove a link to a property added with AddLinkedProperty() More... | |
virtual void | RemoveFromSourceLink () |
Remove a link from the source property. More... | |
virtual void | Copy (vtkSMProperty *src) |
Copy all property values. More... | |
void | ResetToDefault () |
Simply calls this->ResetToDomainDefaults() and if that returns false, calls this->ResetToXMLDefaults(). More... | |
virtual void | ResetToXMLDefaults () |
For properties that support specifying defaults in XML configuration, this method will reset the property value to the default values specified in the XML. More... | |
virtual bool | ResetToDomainDefaults (bool use_unchecked_values=false) |
Iterates over all domains and call SetDefaultValues() on each domain until the first one returns true i.e. More... | |
vtkSMProxy * | GetParent () |
Get the proxy to which this property belongs. More... | |
virtual bool | IsStateIgnored () |
virtual bool | IsValueDefault () |
Returns true if the property's value is different from the default value. More... | |
bool | HasDomainsWithRequiredProperties () |
Returns true if the property has a domain with required properties. More... | |
virtual void | ClearUncheckedElements () |
Use this method to clear unchecked values set of this property. More... | |
virtual void | SetCommand (const char *) |
The command name used to set the value on the server object. More... | |
virtual char * | GetCommand () |
The command name used to set the value on the server object. More... | |
virtual void | SetImmediateUpdate (int) |
If ImmediateUpdate is true, the value of the property will be pushed to the server as soon as it is modified. More... | |
virtual int | GetImmediateUpdate () |
If ImmediateUpdate is true, the value of the property will be pushed to the server as soon as it is modified. More... | |
virtual int | GetInformationOnly () |
Is InformationOnly is set to true, this property is used to get information from server instead of setting values. More... | |
virtual int | GetIgnoreSynchronization () |
If IgnoreSynchronization is set to true, this property is used to prevent that property from beeing updated when changed remotely by another collaborative client. More... | |
virtual vtkSMProperty * | GetInformationProperty () |
Get the associated information property. More... | |
virtual void | SetAnimateable (int) |
Get/Set if the property is animateable. More... | |
virtual int | GetAnimateable () |
Get/Set if the property is animateable. More... | |
virtual void | SetIsInternal (int) |
Get/Set if the property is internal to server manager. More... | |
virtual int | GetIsInternal () |
Get/Set if the property is internal to server manager. More... | |
virtual void | SetNoCustomDefault (int) |
Sets whether the property should ignore custom default settings. More... | |
virtual int | GetNoCustomDefault () |
Gets whether the property should ignore custom default settings. More... | |
virtual void | SetPanelVisibility (const char *) |
Sets the panel visibility for the property. More... | |
virtual char * | GetPanelVisibility () |
Returns the panel visibility for the property. More... | |
virtual void | SetPanelVisibilityDefaultForRepresentation (const char *) |
Sets the panel visibility to default if the current representation type matches representation . More... | |
virtual char * | GetPanelVisibilityDefaultForRepresentation () |
Returns which representation type the property will be shown by default for. More... | |
virtual void | SetPanelWidget (const char *) |
Sets the name of the custom panel widget to use for the property. More... | |
virtual char * | GetPanelWidget () |
Returns name of the panel widget for the property. More... | |
virtual vtkSMDocumentation * | GetDocumentation () |
Returns the documentation for this proxy. More... | |
virtual char * | GetXMLLabel () |
The label assigned by the xml parser. More... | |
virtual char * | GetXMLName () |
The name assigned by the xml parser. More... | |
virtual int | GetRepeatable () |
If repeatable, a property can have 1 or more values of the same kind. More... | |
virtual vtkPVXMLElement * | GetHints () |
The server manager configuration XML may define <Hints> element for a property. More... | |
void | SetHints (vtkPVXMLElement *hints) |
The server manager configuration XML may define <Hints> element for a property. More... | |
virtual void | Modified () |
Overridden to support blocking of modified events. More... | |
![]() | |
void | PrintSelf (ostream &os, vtkIndent indent) |
Static Public Member Functions | |
static vtkSMProperty * | New () |
static int | IsTypeOf (const char *type) |
static vtkSMProperty * | SafeDownCast (vtkObject *o) |
![]() | |
static vtkSMObject * | New () |
static int | IsTypeOf (const char *type) |
static vtkSMObject * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkSMProperty () | |
~vtkSMProperty () | |
virtual void | WriteTo (vtkSMMessage *msg) |
Let the property write its content into the stream. More... | |
virtual void | ReadFrom (const vtkSMMessage *, int vtkNotUsed(message_offset), vtkSMProxyLocator *) |
Let the property read and set its content from the stream. More... | |
virtual int | ReadXMLAttributes (vtkSMProxy *parent, vtkPVXMLElement *element) |
Set the appropriate ivars from the xml element. More... | |
virtual void | UpdateAllInputs () |
Update all proxies referred by this property (if any). More... | |
vtkSMProperty * | NewProperty (const char *name) |
Internal. More... | |
void | AddDependent (vtkSMDomain *dom) |
Internal. More... | |
void | RemoveAllDependents () |
Removes all dependents. More... | |
void | UpdateDomains () |
Calls Update() on all domains contained by the property as well as all dependant domains. More... | |
virtual void | SaveState (vtkPVXMLElement *parent, const char *property_name, const char *uid, int saveDomains=1) |
Save the property state in XML. More... | |
virtual void | SaveStateValues (vtkPVXMLElement *propertyElement) |
This method must be overiden by concrete class in order to save the real property data. More... | |
virtual void | SaveDomainState (vtkPVXMLElement *propertyElement, const char *uid) |
Save property domain. More... | |
virtual int | LoadState (vtkPVXMLElement *element, vtkSMProxyLocator *loader) |
Updates state from an XML element. More... | |
virtual void | SetXMLLabel (const char *) |
virtual void | SetInformationOnly (int) |
virtual void | SetIgnoreSynchronization (int) |
void | SetInformationProperty (vtkSMProperty *ip) |
void | SetDocumentation (vtkSMDocumentation *) |
void | SetParent (vtkSMProxy *proxy) |
virtual void | SetStateIgnored (bool) |
virtual void | StateIgnoredOn () |
virtual void | StateIgnoredOff () |
virtual void | SetXMLName (const char *) |
The name assigned by the xml parser. More... | |
bool | SetBlockModifiedEvents (bool block) |
Block/unblock modified events, returns the current state of the block flag. More... | |
virtual bool | GetPendingModifiedEvents () |
Returns if any modified evetns are pending. More... | |
![]() | |
vtkSMObject () | |
~vtkSMObject () | |
Protected Attributes | |
vtkPVXMLElement * | Hints |
char * | Command |
vtkSMPropertyInternals * | PInternals |
int | ImmediateUpdate |
int | Animateable |
int | IsInternal |
int | NoCustomDefault |
char * | XMLName |
char * | XMLLabel |
char * | PanelVisibility |
char * | PanelVisibilityDefaultForRepresentation |
char * | PanelWidget |
vtkSMDomainIterator * | DomainIterator |
int | InformationOnly |
int | IgnoreSynchronization |
vtkSMInformationHelper * | InformationHelper |
vtkSMProperty * | InformationProperty |
vtkSMDocumentation * | Documentation |
int | Repeatable |
vtkWeakPointer< vtkSMProxy > | Proxy |
bool | StateIgnored |
vtkSMPropertyLink * | Links |
Friends | |
class | vtkSMSessionProxyManager |
class | vtkSMProxy |
class | vtkSMSubPropertyIterator |
class | vtkSMDomainIterator |
class | vtkSMSourceProxy |
class | vtkSMDomain |
class | vtkSMPropertyModificationUndoElement |
superclass for all SM properties
Each instance of vtkSMProperty or a sub-class represents a method and associated arguments (if any) of a VTK object stored on one or more client manager or server nodes. It may have a state and can push this state to the vtk object it refers to. vtkSMProperty only supports methods with no arguments. Sub-classes support methods with different arguments types and numbers.
Property is typically meant for pushing its values to athe VTK object. However, a property may be marked as an InformationOnly property in which case its values are obtained from the server with the UpdateInformation() call.
Each non-information property can have one or more domains. A domain represents a set of acceptable values the property can have. Domains provide applications mechanisms to extract semantic information from a property.
A property has two kinds of values: regular (or checked) values and unchecked values. Regular values are the ones that are pushed to the VTK object when the property is updated. These are the ones that get saved in state, etc. Unchecked values are provided so that domains can update their conditions without having the change the property's value e.g. if the domain range for the IsoContour property changes based on the value of the ArrayName property which selects the array to contour with, the can set the unchecked value on the ArrayName property to each of the available arrays to determine what the domain would be without having to modify the property and update its VTK object. If a property has no unchecked-values explicitly set, then the "Get" methods that access the unchecked-values should simply return the checked values. If the checked values are changed, the unchecked values are reset to match the checked values.
A property fires the following events:
Properties are typically constructed from ServerManager XML configuration files. Attributes available on a Property XML are as follows:
string:
This is the name for the property. This typically ends up being the name used by the Proxy to refer to this property. It must be unique for all properties on a Proxy.string:This
is the user-friendly label. Ideally, the label should be same as the name, however traditionally that hasn't been the case.string:
This is the name of the method to call on the VTK update for the property.
{0, 1}: This used to indicate that the command can be called repeatedly to update the VTK object. e.g. for multiple inputs, one must call AddInput(..) repeatedly. It also implies that the number of elements/items in the property can change.
{0, 1}: When set, it implies that this property is used to obtain values from the VTK object, rather than the default behavior which is to set values on the VTK object.string:
Value is the name of the property on the proxy to which this property belongs that can is information_only property corresponding to this. This is useful when the variable that this property sets can be changed by other means besides this property e.g. through interaction. Applications can use this information to update the value of this property to reflect the VTK-side state.
{0, 1}: When set, the Proxy will attempt to push the value for this property to the VTK object as soon as the property is changed. It is no longer common and should be avoided. It may be deprecated in near future.
{0, 1}: When set, changes to this property are not captured in undo-redo stacks. Unlike is_internal, the value for this property is saved in state files.
{0, 1}: When set, changes to this property are not synchronized among client-processes in collaborative mode.
{0, 1}: When set, the property is treated as internal which implies that it will not be shown in the UI; it value will not be pushed when the proxy is created, nor saved in state files or undo-redo stacks.
{0, 1}: When set, the property is considered as animatable which the UI can use to build the animation interface.
{default, advanced, never}: Indicates to the UI that the widget corresponding to this property should be shown in the default or advanced mode, or never at all.string:
provides a hint to the UI to determine which what widget to create to edit this property.
{0, 1}: When set, vtkSMSettings will neither change the value of a property upon creation nor save the property value as a default. Definition at line 149 of file vtkSMProperty.h.
typedef vtkSMObject vtkSMProperty::Superclass |
Definition at line 153 of file vtkSMProperty.h.
|
protected |
|
protected |
|
static |
|
virtual |
Reimplemented from vtkSMObject.
Reimplemented in vtkSMProxyProperty, vtkSMStringVectorProperty, vtkSMInputProperty, vtkSMDoubleVectorProperty, vtkSMIdTypeVectorProperty, vtkSMIntVectorProperty, vtkSMDoubleMapProperty, vtkSMVectorProperty, and vtkSMMapProperty.
|
static |
|
virtual |
Reimplemented from vtkSMObject.
Reimplemented in vtkSMProxyProperty, vtkSMStringVectorProperty, vtkSMInputProperty, vtkSMDoubleVectorProperty, vtkSMIdTypeVectorProperty, vtkSMIntVectorProperty, vtkSMDoubleMapProperty, vtkSMVectorProperty, and vtkSMMapProperty.
|
static |
void vtkSMProperty::PrintSelf | ( | ostream & | os, |
vtkIndent | indent | ||
) |
|
virtual |
The command name used to set the value on the server object.
For example: SetThetaResolution
|
virtual |
The command name used to set the value on the server object.
For example: SetThetaResolution
|
virtual |
If ImmediateUpdate is true, the value of the property will be pushed to the server as soon as it is modified.
Properties that do not have values can be pushed by calling Modified().
|
virtual |
If ImmediateUpdate is true, the value of the property will be pushed to the server as soon as it is modified.
Properties that do not have values can be pushed by calling Modified().
int vtkSMProperty::IsInDomains | ( | ) |
Returns true if all values are in all domains, false otherwise.
The domains will check the unchecked values (SetUncheckedXXX()) instead of the actual values.
int vtkSMProperty::IsInDomains | ( | vtkSMDomain ** | domain | ) |
Overload of IsInDomains() that provides a mechanism to return the first domain that fails the check.
domain
is set to NULL when all domain checks pass.
|
virtual |
Overloaded to break the reference loop caused by the internal domain iterator.
vtkSMDomainIterator* vtkSMProperty::NewDomainIterator | ( | ) |
Creates, initializes and returns a new domain iterator.
The user has to delete the iterator.
vtkSMDomain* vtkSMProperty::GetDomain | ( | const char * | name | ) |
Returns a domain give a name.
vtkSMDomain* vtkSMProperty::FindDomain | ( | const char * | classname | ) |
Returns the first domain which is of the specified type.
unsigned int vtkSMProperty::GetNumberOfDomains | ( | ) |
Returns the number of domains this property has.
This can be used to specify a valid index for GetDomain(index).
void vtkSMProperty::UpdateDependentDomains | ( | ) |
Calls Update() on all domains contained by the property as well as all dependant domains.
This is usually called after SetUncheckedXXX() to tell all dependant domains to update themselves according to the new value. Note that when calling Update() on domains contained by this property, a NULL is passed as the argument. This is because the domain does not really "depend" on the property. When calling Update() on dependent domains, the property passes itself as the argument.
|
virtual |
Is InformationOnly is set to true, this property is used to get information from server instead of setting values.
|
virtual |
If IgnoreSynchronization is set to true, this property is used to prevent that property from beeing updated when changed remotely by another collaborative client.
|
virtual |
Get the associated information property.
This allows applications to have access to both the in and out properties. The information property has to be specified in the xml configuration file.
void vtkSMProperty::AddDomain | ( | const char * | name, |
vtkSMDomain * | dom | ||
) |
Properties can have one or more domains.
These are assigned by the proxy manager and can be used to obtain information other than given by the type of the propery and its values.
|
virtual |
Add a link to a property whose value should be synchronized with this property value.
|
virtual |
Remove a link to a property added with AddLinkedProperty()
|
virtual |
Remove a link from the source property.
This is a useful way for target properties to unlink themselves from a source property prior to, for instance, the deletion of the target property instance. This method only does any work if this instance was passed as the argument to AddLinkedProperty() on a different property instance at some point. Otherwise, it is a no-op.
|
virtual |
Get/Set if the property is animateable.
Non-animateable properties are shown in the GUI only in advanced mode.
|
virtual |
Get/Set if the property is animateable.
Non-animateable properties are shown in the GUI only in advanced mode.
|
virtual |
Get/Set if the property is internal to server manager.
Internal properties are not saved in state and should not be displayed in the user interface.
|
virtual |
Get/Set if the property is internal to server manager.
Internal properties are not saved in state and should not be displayed in the user interface.
|
virtual |
Sets whether the property should ignore custom default settings.
|
virtual |
Gets whether the property should ignore custom default settings.
|
virtual |
Sets the panel visibility for the property.
The value can be one of:
By default, all properties have "default" visibility.
|
virtual |
Returns the panel visibility for the property.
|
virtual |
Sets the panel visibility to default if the current representation type matches representation
.
|
virtual |
Returns which representation type the property will be shown by default for.
|
virtual |
Sets the name of the custom panel widget to use for the property.
|
virtual |
Returns name of the panel widget for the property.
|
virtual |
Copy all property values.
This will copy both checked and unchecked values, if applicable.
Reimplemented in vtkSMDoubleVectorProperty, vtkSMProxyProperty, vtkSMStringVectorProperty, vtkSMIntVectorProperty, vtkSMIdTypeVectorProperty, vtkSMVectorProperty, vtkSMDoubleMapProperty, and vtkSMMapProperty.
|
virtual |
Returns the documentation for this proxy.
The return value may be NULL if no documentation is defined in the XML for this property.
void vtkSMProperty::ResetToDefault | ( | ) |
Simply calls this->ResetToDomainDefaults() and if that returns false, calls this->ResetToXMLDefaults().
|
inlinevirtual |
For properties that support specifying defaults in XML configuration, this method will reset the property value to the default values specified in the XML.
Default implementation does nothing.
Reimplemented in vtkSMProxyProperty, vtkSMDoubleVectorProperty, vtkSMStringVectorProperty, vtkSMIntVectorProperty, vtkSMIdTypeVectorProperty, and vtkSMDoubleMapProperty.
Definition at line 397 of file vtkSMProperty.h.
|
virtual |
Iterates over all domains and call SetDefaultValues() on each domain until the first one returns true i.e.
indicate that it can set a default value and did so. Returns true if any domain can setup a default value for this property. Otherwise false. vtkSMVectorProperty overrides this method to add support for settting default values using information_property.
Reimplemented in vtkSMVectorProperty.
|
virtual |
The label assigned by the xml parser.
|
virtual |
The name assigned by the xml parser.
Used to get the property from a proxy. Note that the name used to obtain a property that is on a subproxy may be different from the XMLName of the property, see the note on ExposedProperties for vtkSMProxy.
|
virtual |
If repeatable, a property can have 1 or more values of the same kind.
This ivar is configured when the xml file is read and is mainly useful for information (for example from python).
|
virtual |
The server manager configuration XML may define <Hints> element for a property.
Hints are metadata associated with the property. The Server Manager does not (and should not) interpret the hints. Hints provide a mechanism to add GUI pertinant information to the server manager XML. Returns the XML element for the hints associated with this property, if any, otherwise returns NULL.
void vtkSMProperty::SetHints | ( | vtkPVXMLElement * | hints | ) |
The server manager configuration XML may define <Hints> element for a property.
Hints are metadata associated with the property. The Server Manager does not (and should not) interpret the hints. Hints provide a mechanism to add GUI pertinant information to the server manager XML. Returns the XML element for the hints associated with this property, if any, otherwise returns NULL.
|
inlinevirtual |
Overridden to support blocking of modified events.
Definition at line 452 of file vtkSMProperty.h.
vtkSMProxy* vtkSMProperty::GetParent | ( | ) |
Get the proxy to which this property belongs.
Note that is this property is belong to a sub-proxy of a proxy, the returned value will indeed be that sub-proxy (and not the outer container proxy).
|
inlinevirtual |
Definition at line 475 of file vtkSMProperty.h.
|
inlinevirtual |
Returns true if the property's value is different from the default value.
This is used as a hint by the state saving code to determine if the value should be written to the file or if the defaults are sufficient.
Reimplemented in vtkSMProxyProperty, vtkSMDoubleVectorProperty, vtkSMStringVectorProperty, vtkSMIntVectorProperty, and vtkSMMapProperty.
Definition at line 482 of file vtkSMProperty.h.
bool vtkSMProperty::HasDomainsWithRequiredProperties | ( | ) |
Returns true if the property has a domain with required properties.
This typically indicates that the property has a domain whose values change at runtime based on input dataset or file being processed.
|
inlinevirtual |
Use this method to clear unchecked values set of this property.
Reimplemented in vtkSMDoubleVectorProperty, vtkSMStringVectorProperty, vtkSMIntVectorProperty, vtkSMIdTypeVectorProperty, vtkSMProxyProperty, and vtkSMVectorProperty.
Definition at line 494 of file vtkSMProperty.h.
|
protectedvirtual |
Let the property write its content into the stream.
Reimplemented in vtkSMStringVectorProperty, vtkSMProxyProperty, vtkSMDoubleVectorProperty, vtkSMIntVectorProperty, vtkSMIdTypeVectorProperty, and vtkSMDoubleMapProperty.
|
inlineprotectedvirtual |
Let the property read and set its content from the stream.
Definition at line 516 of file vtkSMProperty.h.
|
protectedvirtual |
Set the appropriate ivars from the xml element.
Should be overwritten by subclass if adding ivars.
Reimplemented in vtkSMProxyProperty, vtkSMDoubleVectorProperty, vtkSMStringVectorProperty, vtkSMIntVectorProperty, vtkSMIdTypeVectorProperty, vtkSMVectorProperty, vtkSMDoubleMapProperty, vtkSMInputProperty, and vtkSMMapProperty.
|
inlineprotectedvirtual |
Update all proxies referred by this property (if any).
Overwritten by vtkSMProxyProperty and sub-classes.
Reimplemented in vtkSMProxyProperty.
Definition at line 528 of file vtkSMProperty.h.
|
protectedvirtual |
The name assigned by the xml parser.
Used to get the property from a proxy. Note that the name used to obtain a property that is on a subproxy may be different from the XMLName of the property, see the note on ExposedProperties for vtkSMProxy.
|
protected |
Internal.
Used during XML parsing to get a property with given name. Used by the domains when setting required properties.
|
protected |
Internal.
Used by the domains that require this property. They add themselves as dependents.
|
protected |
Removes all dependents.
|
protected |
Calls Update() on all domains contained by the property as well as all dependant domains.
This is autimatically called after SetUncheckedXXX() to tell all dependant domains to update themselves according to the new value. Note that when calling Update() on domains contained by this property, a NULL is passed as the argument. This is because the domain does not really "depend" on the property. When calling Update() on dependent domains, the property passes itself as the argument.
|
protectedvirtual |
Save the property state in XML.
This method create the property definition and rely on SaveStateValues to fill this definition with the concrete property values
|
protectedvirtual |
This method must be overiden by concrete class in order to save the real property data.
Reimplemented in vtkSMDoubleVectorProperty, vtkSMProxyProperty, vtkSMStringVectorProperty, vtkSMIntVectorProperty, vtkSMIdTypeVectorProperty, and vtkSMDoubleMapProperty.
|
protectedvirtual |
Save property domain.
|
protectedvirtual |
Updates state from an XML element.
Returns 0 on failure.
Reimplemented in vtkSMProxyProperty, vtkSMDoubleVectorProperty, vtkSMStringVectorProperty, vtkSMIntVectorProperty, vtkSMIdTypeVectorProperty, vtkSMDoubleMapProperty, and vtkSMMapProperty.
|
protectedvirtual |
|
protectedvirtual |
|
protectedvirtual |
|
protected |
|
protected |
|
inlineprotected |
Block/unblock modified events, returns the current state of the block flag.
Definition at line 634 of file vtkSMProperty.h.
|
protectedvirtual |
Returns if any modified evetns are pending.
This gets cleared when Modified() is called.
|
protected |
|
protectedvirtual |
|
protectedvirtual |
|
protectedvirtual |
|
friend |
Definition at line 500 of file vtkSMProperty.h.
|
friend |
Definition at line 501 of file vtkSMProperty.h.
|
friend |
Definition at line 502 of file vtkSMProperty.h.
|
friend |
Definition at line 503 of file vtkSMProperty.h.
|
friend |
Definition at line 504 of file vtkSMProperty.h.
|
friend |
Definition at line 505 of file vtkSMProperty.h.
|
friend |
Definition at line 506 of file vtkSMProperty.h.
|
protected |
Definition at line 593 of file vtkSMProperty.h.
|
protected |
Definition at line 595 of file vtkSMProperty.h.
|
protected |
Definition at line 597 of file vtkSMProperty.h.
|
protected |
Definition at line 599 of file vtkSMProperty.h.
|
protected |
Definition at line 600 of file vtkSMProperty.h.
|
protected |
Definition at line 601 of file vtkSMProperty.h.
|
protected |
Definition at line 602 of file vtkSMProperty.h.
|
protected |
Definition at line 604 of file vtkSMProperty.h.
|
protected |
Definition at line 605 of file vtkSMProperty.h.
|
protected |
Definition at line 606 of file vtkSMProperty.h.
|
protected |
Definition at line 609 of file vtkSMProperty.h.
|
protected |
Definition at line 610 of file vtkSMProperty.h.
|
protected |
Definition at line 612 of file vtkSMProperty.h.
|
protected |
Definition at line 614 of file vtkSMProperty.h.
|
protected |
Definition at line 617 of file vtkSMProperty.h.
|
protected |
Definition at line 620 of file vtkSMProperty.h.
|
protected |
Definition at line 623 of file vtkSMProperty.h.
|
protected |
Definition at line 625 of file vtkSMProperty.h.
|
protected |
Definition at line 628 of file vtkSMProperty.h.
|
protected |
Definition at line 653 of file vtkSMProperty.h.
|
protected |
Definition at line 657 of file vtkSMProperty.h.
|
protected |
Definition at line 659 of file vtkSMProperty.h.