Inviwo 0.9.12-pre
Inviwo documentation
|
Public Types | |
using | seq_type = Seq |
using | key_type = typename Seq::key_type |
using | value_type = typename Seq::value_type |
using | iterator = util::IndirectIterator<typename std::vector<std::unique_ptr<Seq>>::iterator> |
using | const_iterator |
Public Member Functions | |
BaseTrack (const std::string &name, size_t priority=0) | |
virtual bool | isEnabled () const override |
virtual void | setEnabled (bool enabled) 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 Seq & | operator[] (size_t i) override |
virtual const Seq & | operator[] (size_t i) const override |
virtual const Seq & | getFirst () const override |
virtual Seq & | getFirst () override |
virtual const Seq & | getLast () const override |
virtual Seq & | getLast () override |
iterator | begin () |
const_iterator | begin () const |
iterator | end () |
const_iterator | end () const |
virtual key_type * | add (Seconds time, bool asNewSequence) override |
virtual Seq * | add (std::unique_ptr< KeyframeSequence > sequence) override |
virtual Seq * | add (std::unique_ptr< Seq > 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 void | serialize (Serializer &s) const override |
virtual void | deserialize (Deserializer &d) override |
virtual std::unique_ptr< key_type > | createKeyframe (Seconds time) const |
Public Member Functions inherited from inviwo::animation::Track | |
virtual | ~Track ()=default |
virtual Track * | clone () const =0 |
virtual std::string | getClassIdentifier () const =0 |
virtual AnimationTimeState | operator() (Seconds from, Seconds to, AnimationState state) const =0 |
Public Member Functions inherited from inviwo::Serializable | |
Public Member Functions inherited from inviwo::Observable< TrackObserver > | |
Observable (const Observable< TrackObserver > &other) | |
Observable (Observable< TrackObserver > &&other) noexcept | |
Observable< TrackObserver > & | operator= (const Observable< TrackObserver > &other) |
Observable< TrackObserver > & | operator= (Observable< TrackObserver > &&other) noexcept |
void | addObserver (TrackObserver *observer) |
void | removeObserver (TrackObserver *observer) |
virtual void | startBlockingNotifications () override final |
virtual void | stopBlockingNotifications () override final |
Public Member Functions inherited from inviwo::ObservableInterface | |
Public Member Functions inherited from inviwo::animation::KeyframeSequenceObserver | |
virtual void | onKeyframeAdded (Keyframe *, KeyframeSequence *) |
virtual void | onKeyframeRemoved (Keyframe *, KeyframeSequence *) |
virtual void | onKeyframeSequenceSelectionChanged (KeyframeSequence *) |
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 () |
Protected Member Functions | |
BaseTrack (const BaseTrack &other) | |
BaseTrack (BaseTrack &&other)=default | |
BaseTrack & | operator= (const BaseTrack &) |
BaseTrack & | operator= (BaseTrack &&other)=default |
virtual void | onKeyframeSequenceMoved (KeyframeSequence *seq) override |
key_type * | addToClosestSequence (std::unique_ptr< key_type > key) |
Protected Member Functions inherited from inviwo::animation::TrackObservable | |
void | notifyKeyframeSequenceAdded (Track *t, KeyframeSequence *s) |
void | notifyKeyframeSequenceRemoved (Track *t, KeyframeSequence *s) |
void | notifyFirstMoved (Track *t) |
void | notifyLastMoved (Track *t) |
void | notifyEnabledChanged (Track *t) |
void | notifyNameChanged (Track *t) |
void | notifyPriorityChanged (Track *t) |
Protected Member Functions inherited from inviwo::Observable< TrackObserver > | |
void | forEachObserver (C callback) |
Protected Member Functions inherited from inviwo::ObservableInterface | |
void | addObservationHelper (Observer *observer) |
void | removeObservationHelper (Observer *observer) |
Protected Member Functions inherited from inviwo::Observer | |
void | addObservation (ObservableInterface *observable) |
Additional Inherited Members | |
Protected Attributes inherited from inviwo::Observer | |
std::unordered_set< ObservableInterface * > | observables_ |
using inviwo::animation::BaseTrack< Seq >::const_iterator |
|
overridevirtual |
Add a Keyframe at time using default values and return the added keyframe. The Keyframe is added to a new KeyframeSequence if asNewSequence is true, otherwise it is added to the KeyframeSequence at, or before, time. A KeyframeSequence is added to the Track if none exists.
Tracks should override createKeyframe(Seconds time) to customize Keyframe creation.
Implements inviwo::animation::Track.
|
overridevirtual |
Add KeyframeSequence and call KeyframeSequenceObserverble::notifyKeyframeSequenceAdded
Exception | if KeyframeSequence is not compatible with BaseTrack<Seq> |
Exception | if KeyframeSequence overlaps existing sequences |
Implements inviwo::animation::Track.
|
virtual |
Add KeyframeSequence and call KeyframeSequenceObserverble::notifyKeyframeSequenceAdded
Exception | if KeyframeSequence overlaps existing sequences |
|
overridevirtual |
Implements inviwo::animation::Track.
|
overridevirtual |
Implements inviwo::animation::Track.
|
overridevirtual |
Implements inviwo::animation::Track.
|
overridevirtual |
Implements inviwo::animation::Track.
|
overridevirtual |
Implements inviwo::animation::Track.
|
overridevirtual |
Implements inviwo::animation::Track.
|
overridevirtual |
Implements inviwo::animation::Track.
|
overridevirtual |
Implements inviwo::animation::Track.
|
overridevirtual |
Implements inviwo::animation::Track.
|
overridevirtual |
Implements inviwo::animation::Track.
|
overridevirtual |
Return Track priority (0 is highest)
Implements inviwo::animation::Track.
|
overridevirtual |
Implements inviwo::animation::Track.
|
overrideprotectedvirtual |
Reimplemented from inviwo::animation::KeyframeSequenceObserver.
|
overridevirtual |
Implements inviwo::animation::Track.
|
overridevirtual |
Implements inviwo::animation::Track.
|
overridevirtual |
Implements inviwo::animation::Track.
|
overridevirtual |
Implements inviwo::animation::Track.
|
overridevirtual |
Remove KeyframeSequence at index i and call TrackObserver::notifyKeyframeSequenceRemoved
Implements inviwo::animation::Track.
|
overridevirtual |
Implements inviwo::animation::Track.
|
overridevirtual |
Implements inviwo::animation::Track.
|
overridevirtual |
Set Track name. Used when displaying the track.
Implements inviwo::animation::Track.
|
overridevirtual |
Set priority (0 is highest). The Track with highest priority is evaluated first at a given time by Animation.
Implements inviwo::animation::Track.
|
overridevirtual |
Return the number of KeyframeSequences in the track.
Implements inviwo::animation::Track.