|
| PropertyTrack (Prop *property) |
|
virtual | ~PropertyTrack () |
|
virtual std::string | getClassIdentifier () const override |
|
virtual AnimationTimeState | operator() (Seconds from, Seconds to, AnimationState state) const override |
|
virtual const Prop * | getProperty () const override |
|
virtual Prop * | getProperty () override |
|
virtual void | setProperty (Property *property) override |
|
virtual const std::string & | getIdentifier () const override |
|
virtual void | serialize (Serializer &s) const override |
|
virtual void | deserialize (Deserializer &d) override |
|
virtual void | addKeyFrameUsingPropertyValue (const Property *property, Seconds time, std::unique_ptr< Interpolation > interpolation) override |
|
virtual void | addKeyFrameUsingPropertyValue (Seconds time, std::unique_ptr< Interpolation > interpolation) override |
|
virtual void | addSequenceUsingPropertyValue (Seconds time, std::unique_ptr< Interpolation > interpolation) override |
|
virtual Track * | toTrack () override |
|
void | setOtherProperty (Property *dstProperty, Keyframe *keyframe) override |
| Helper function to set a property (other than the property owned by the track) from a keyframe. More...
|
|
void | updateKeyframeFromProperty (Property *srcProperty, Keyframe *keyframe) override |
| Helper function to update the value if a keyframe from a property (other than the property owned by the track) More...
|
|
| BaseTrack (const std::string &identifier, const std::string &name, size_t priority=0) |
|
virtual bool | isEnabled () const override |
|
virtual void | setEnabled (bool enabled) override |
|
virtual void | setIdentifier (const std::string &identifier) override |
|
virtual const std::string & | getName () const override |
|
virtual void | setName (const std::string &name) override |
|
virtual size_t | getPriority () const override |
|
virtual void | setPriority (size_t priority) override |
|
virtual Seconds | getFirstTime () const override |
|
virtual Seconds | getLastTime () const override |
|
virtual std::vector< Seconds > | getAllTimes () const override |
|
virtual size_t | size () const override |
|
virtual bool | empty () const override |
|
virtual KeyframeSequenceTyped< Key > & | operator[] (size_t i) override |
|
virtual const KeyframeSequenceTyped< Key > & | operator[] (size_t i) const override |
|
virtual const KeyframeSequenceTyped< Key > & | getFirst () const override |
|
virtual KeyframeSequenceTyped< Key > & | getFirst () override |
|
virtual const KeyframeSequenceTyped< Key > & | getLast () const override |
|
virtual KeyframeSequenceTyped< Key > & | getLast () override |
|
iterator | begin () |
|
const_iterator | begin () const |
|
iterator | end () |
|
const_iterator | end () const |
|
virtual void | add (Seconds time, bool asNewSequence) override |
|
virtual void | add (std::unique_ptr< KeyframeSequence > sequence) override |
|
virtual void | add (std::unique_ptr< KeyframeSequenceTyped< Key > > sequence) |
|
virtual std::unique_ptr< KeyframeSequence > | remove (size_t i) override |
|
virtual std::unique_ptr< Keyframe > | remove (Keyframe *key) override |
|
virtual std::unique_ptr< KeyframeSequence > | remove (KeyframeSequence *seq) override |
|
virtual | ~Track ()=default |
|
| Track (const Track &)=delete |
|
Track & | operator= (const Track &)=delete |
|
| Observable (const Observable< TrackObserver > &other) |
|
| Observable (Observable< TrackObserver > &&other) |
|
Observable< TrackObserver > & | operator= (const Observable< TrackObserver > &other) |
|
Observable< TrackObserver > & | operator= (Observable< TrackObserver > &&other) |
|
void | addObserver (TrackObserver *observer) |
|
void | removeObserver (TrackObserver *observer) |
|
virtual void | startBlockingNotifications () override final |
|
virtual void | stopBlockingNotifications () override final |
|
virtual void | onKeyframeAdded (Keyframe *, KeyframeSequence *) |
|
virtual void | onKeyframeRemoved (Keyframe *, KeyframeSequence *) |
|
virtual void | onKeyframeSequenceSelectionChanged (KeyframeSequence *) |
|
| Observer (const Observer &other) |
|
| Observer (Observer &&other) |
|
Observer & | operator= (Observer &&other) |
|
Observer & | operator= (const Observer &other) |
|
virtual | ~Observer () |
|
void | removeObservation (ObservableInterface *observable) |
|
void | removeObservations () |
|
template<typename Prop, typename Key>
class inviwo::animation::PropertyTrack< Prop, Key >
Implementation of BasePropertyTrack and TrackTyped based on templates parameter types for Property and KeyFrame. Exposes functions for adding a KeyFrame and KeyFrameSequence using the current values of the Property.
- See also
- Track
-
PropertyTrack
-
Property