![]() |
Inviwo 0.9.12-pre
Inviwo documentation
|
#include <controlkeyframesequence.h>
Public Member Functions | |
| ControlKeyframeSequence (std::vector< std::unique_ptr< ControlKeyframe > > keyframes) | |
| ControlKeyframeSequence (const ControlKeyframeSequence &rhs)=default | |
| ControlKeyframeSequence & | operator= (const ControlKeyframeSequence &that)=default |
| ControlKeyframeSequence & | operator= (ControlKeyframeSequence &&that)=default |
| virtual ControlKeyframeSequence * | clone () const override |
| virtual AnimationTimeState | operator() (Seconds from, Seconds to, AnimationState state) const |
| Public Member Functions inherited from inviwo::animation::BaseKeyframeSequence< ControlKeyframe > | |
| virtual | ~BaseKeyframeSequence () |
| virtual size_t | size () const override |
| virtual const ControlKeyframe & | operator[] (size_t i) const override |
| virtual const ControlKeyframe & | getFirst () const override |
| virtual const ControlKeyframe & | getLast () const override |
| virtual std::optional< Seconds > | getPrevTime (Seconds at) const final |
| virtual std::optional< Seconds > | getNextTime (Seconds at) const final |
| iterator | begin () |
| iterator | end () |
| virtual ControlKeyframe * | add (std::unique_ptr< Keyframe > key) override |
| virtual std::unique_ptr< Keyframe > | remove (size_t i) override |
| virtual bool | isSelected () const override |
| virtual void | setSelected (bool selected) override |
| virtual void | serialize (Serializer &s) const override |
| virtual void | deserialize (Deserializer &d) override |
| Public Member Functions inherited from inviwo::animation::KeyframeSequence | |
| virtual Keyframe & | operator[] (size_t i)=0 |
| virtual Keyframe & | getFirst ()=0 |
| virtual Keyframe & | getLast ()=0 |
| Seconds | getFirstTime () const |
| Seconds | getLastTime () const |
| std::pair< Seconds, Seconds > | getTimeSpan () const |
| virtual std::unique_ptr< Keyframe > | remove (Keyframe *key)=0 |
| bool | isAnyKeyframeSelected () const |
| Public Member Functions inherited from inviwo::Observable< KeyframeSequenceObserver > | |
| Observable< KeyframeSequenceObserver > & | operator= (const Observable< KeyframeSequenceObserver > &other) |
| void | addObserver (KeyframeSequenceObserver *observer) |
| void | removeObserver (KeyframeSequenceObserver *observer) |
| bool | isObservedBy (KeyframeSequenceObserver *observer) const |
| virtual void | startBlockingNotifications () override final |
| virtual void | stopBlockingNotifications () override final |
| Public Member Functions inherited from inviwo::animation::KeyframeObserver | |
| virtual void | onKeyframeSelectionChanged (Keyframe *) |
| Public Member Functions inherited from inviwo::Observer | |
| Observer (const Observer &other) | |
| Observer (Observer &&other) | |
| Observer & | operator= (Observer &&other) |
| Observer & | operator= (const Observer &other) |
| virtual | ~Observer () |
| void | removeObservation (ObservableInterface *observable) |
| void | removeObservations () |
Additional Inherited Members | |
| Public Types inherited from inviwo::animation::BaseKeyframeSequence< ControlKeyframe > | |
| using | key_type |
| using | value_type |
| using | iterator |
| using | const_iterator |
| Protected Member Functions inherited from inviwo::animation::BaseKeyframeSequence< ControlKeyframe > | |
| BaseKeyframeSequence & | operator= (const BaseKeyframeSequence &that) |
| virtual void | onKeyframeTimeChanged (Keyframe *key, Seconds oldTime) override |
| Protected Member Functions inherited from inviwo::animation::KeyframeSequenceObserverble | |
| void | notifyKeyframeAdded (Keyframe *key, KeyframeSequence *seq) |
| void | notifyKeyframeRemoved (Keyframe *key, KeyframeSequence *seq) |
| void | notifyKeyframeSequenceMoved (KeyframeSequence *seq) |
| void | notifyKeyframeSequenceSelectionChanged (KeyframeSequence *seq) |
| Protected Member Functions inherited from inviwo::Observable< KeyframeSequenceObserver > | |
| void | forEachObserver (C callback) |
| Protected Member Functions inherited from inviwo::ObservableInterface | |
| virtual void | addObserver (Observer *observer)=0 |
| virtual void | removeObserver (Observer *observer)=0 |
| void | addObservationHelper (Observer *observer) |
| void | removeObservationHelper (Observer *observer) |
| Protected Member Functions inherited from inviwo::Observer | |
| void | addObservation (ObservableInterface *observable) |
| Protected Attributes inherited from inviwo::animation::BaseKeyframeSequence< ControlKeyframe > | |
| std::vector< std::unique_ptr< ControlKeyframe > > | keyframes_ |
| bool | isSelected_ |
| Protected Attributes inherited from inviwo::Observer | |
| std::unordered_set< ObservableInterface * > | observables_ |
KeyframeSequence for Control Keyframes.
|
overridevirtual |
Implements inviwo::animation::KeyframeSequence.