#include <SpecificProperty.h>
Inheritance diagram for VSpecificProperty:
Public Methods | |
VSpecificProperty () | |
VSpecificProperty (VSpecificProperty< T > *p) | |
virtual VSpecificProperty<T>* | Clone () |
void | SetBase (T BaseValue) |
Set the base value of the property. | |
T | GetBase () const |
Get the base value of the property. | |
void | SetController (VController< T > *pNewCtrl) |
Set the controller of this property. | |
VController<T>* | GetController () |
VGenericProperty | |
virtual string | Identify () const |
Identifies the class. | |
string | IdentifyController () const |
Returns an identifying string for the object that controls the property. | |
bool | IsControlled () const |
Is the property attached to a controller or is it static. | |
virtual bool | MaintainsLinkToShape (void *p) const |
The object requires what's located in this memory for operation. | |
virtual void | UnlinkShape (void *p) |
The object required for operation has been deleted and must be unlinked. | |
VGenericKeyIterator | |
virtual void | Delete (int pos) |
Delete a keyframe at a certain position. | |
virtual int | Count () const |
Number of keyframes. | |
virtual void | SetFrame (int pos, int f) |
Changes the frame where a keyframe resides. | |
virtual int | GetFrame (int pos) |
Returns the frame where a keyframe resides. | |
bool | Exists (int f) const |
Does a keyframe exist at a specific frame? | |
virtual void | CreateBlankKeyFrame (int frame) |
Adds a blank keyframe at the specified frame. | |
virtual void | AddUpdate (int f, T key) |
Adds or Updates a keyframe. | |
virtual void | SetKey (int pos, T key) |
Sets an existing keyframe but does not add. | |
virtual T | GetKey (int pos) |
Returns the value of a keyframe. | |
VController | |
virtual T | Evaluate (int nFrame) |
Evaluate the controller at a specific frame. | |
virtual VAbstractEditor* | CreateEditor () |
Returns an editor that can allow the user to manipulate this object. | |
virtual bool | SupportsDirectManipulation () const |
The object can be manipulated directly by the user. | |
VControllerFactory | |
virtual int | ControllerCount () const |
The number of controllers possible for the class. | |
virtual void | ImplementController (int index) |
Links a controller to the class. | |
virtual string | ControllerInfo (int index) const |
Indentifies a controller. | |
void | UnlinkController () |
Deletes and unlinks the current controller from the class. | |
Protected Attributes | |
VController<T>* | m_pControl |
The controller of the property. | |
T | m_BaseValue |
Base value. | |
int | m_BaseFrame |
Which frame the base value came from. | |
Friends | |
class | CShapePropertiesDialog |