Inviwo 0.9.12-pre
Inviwo documentation
|
#include <controltrack.h>
Public Member Functions | |
virtual ControlTrack * | clone () const override |
virtual std::string | getClassIdentifier () const override |
virtual AnimationTimeState | operator() (Seconds from, Seconds to, AnimationState state) const override |
Public Member Functions inherited from inviwo::animation::BaseTrack< ControlKeyframeSequence > | |
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 ControlKeyframeSequence & | operator[] (size_t i) override |
virtual const ControlKeyframeSequence & | operator[] (size_t i) const override |
virtual const ControlKeyframeSequence & | getFirst () const override |
virtual ControlKeyframeSequence & | getFirst () override |
virtual const ControlKeyframeSequence & | getLast () const override |
virtual ControlKeyframeSequence & | getLast () override |
iterator | begin () |
const_iterator | begin () const |
iterator | end () |
const_iterator | end () const |
virtual key_type * | add (Seconds time, bool asNewSequence) override |
virtual ControlKeyframeSequence * | add (std::unique_ptr< KeyframeSequence > sequence) override |
virtual ControlKeyframeSequence * | add (std::unique_ptr< ControlKeyframeSequence > 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 |
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 () |
Static Public Member Functions | |
static std::string | classIdentifier () |
Additional Inherited Members | |
Public Types inherited from inviwo::animation::BaseTrack< ControlKeyframeSequence > | |
using | seq_type |
using | key_type |
using | value_type |
using | iterator |
using | const_iterator |
Protected Member Functions inherited from inviwo::animation::BaseTrack< ControlKeyframeSequence > | |
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) |
Protected Attributes inherited from inviwo::Observer | |
std::unordered_set< ObservableInterface * > | observables_ |
A special track for manipulating the playback. Exposes functions for adding a ControlKeyFrame and ControlKeyFrameSequence
|
overridevirtual |
Create a deep copy of the Track including references to its possibly underlying Property.
Implements inviwo::animation::Track.
|
overridevirtual |
Implements inviwo::animation::Track.
|
overridevirtual |
Animate track between times from and to
Implements inviwo::animation::Track.