![]() |
Inviwo 0.9.12-pre
Inviwo documentation
|
Inheritance diagram for inviwo::animation::TrackFactory:Public Member Functions | |
| std::unique_ptr< Track > | create (Property *property) const |
| virtual std::unique_ptr< Track > | create (std::string_view key) const override |
| std::unique_ptr< Keyframe > | createKeyframe (std::string_view key) const |
| std::unique_ptr< KeyframeSequence > | createSequence (std::string_view key) const |
| virtual bool | hasKey (std::string_view key) const override |
| void | registerPropertyTrackConnection (std::string_view propertyClassID, std::string_view trackClassID) |
| TrackFactory (ProcessorNetwork *network) | |
Public Member Functions inherited from inviwo::Factory< Track > | |
| virtual std::unique_ptr< Track > | create (std::string_view key, Args... args) const=0 |
| virtual std::shared_ptr< Track > | createShared (std::string_view key, Args... args) const |
| Factory (const Factory &)=delete | |
| Factory (Factory &&)=default | |
| Factory & | operator= (const Factory &)=delete |
| Factory & | operator= (Factory &&)=default |
Public Member Functions inherited from inviwo::StandardFactory< Track, TrackFactoryObject, std::string_view, ProcessorNetwork * > | |
| virtual std::unique_ptr< Track > | create (std::string_view key, Args... args) const override |
Public Member Functions inherited from inviwo::Factory< T, K, Args > | |
| virtual std::unique_ptr< T > | create (K key, Args... args) const =0 |
| virtual std::shared_ptr< T > | createShared (K key, Args... args) const |
| Factory (const Factory &)=delete | |
| Factory (Factory &&)=default | |
| Factory & | operator= (const Factory &)=delete |
| Factory & | operator= (Factory &&)=default |
Public Member Functions inherited from inviwo::FactoryRegister< FactoryObject, Key, LookUpKey > | |
| FactoryObject * | getFactoryObject (LookUpKey key) const |
| std::vector< Key > | getKeys () const |
| auto | getKeyView () const |
| auto | getValueView () const |
| bool | hasKey (LookUpKey key) const |
| virtual bool | registerObject (FactoryObject *obj) |
| virtual bool | unRegisterObject (FactoryObject *obj) |
Public Member Functions inherited from inviwo::Observable< T > | |
| void | addObserver (T *observer) |
| bool | isObservedBy (T *observer) const |
| Observable (const Observable< T > &other) | |
| Observable (Observable< T > &&other) noexcept | |
| Observable< T > & | operator= (const Observable< T > &other) |
| Observable< T > & | operator= (Observable< T > &&other) noexcept |
| void | removeObserver (T *observer) |
| virtual void | startBlockingNotifications () override final |
| virtual void | stopBlockingNotifications () override final |
Public Attributes | |
| KeyframeFactory | keyframeFactory |
| KeyframeSequenceFactory | keyframeSequenceFactory |
| ProcessorNetwork * | network_ |
Protected Attributes | |
| std::map< std::string, std::string, std::less<> > | propertyToTrackMap_ |
Protected Attributes inherited from inviwo::FactoryRegister< FactoryObject, Key, LookUpKey > | |
| std::map< Key, FactoryObject *, std::less<> > | map_ |
Additional Inherited Members | |
Protected Member Functions inherited from inviwo::FactoryObservable< FactoryObject > | |
| void | notifyObserversOnRegister (FactoryObject *p) |
| void | notifyObserversOnUnRegister (FactoryObject *p) |
Protected Member Functions inherited from inviwo::Observable< T > | |
| template<typename C > | |
| void | forEachObserver (C callback) |
Protected Member Functions inherited from inviwo::ObservableInterface | |
| void | addObservationHelper (Observer *observer) |
| void | removeObservationHelper (Observer *observer) |
|
overridevirtual |
Implements inviwo::Factory< Track >.
| void inviwo::animation::TrackFactory::registerPropertyTrackConnection | ( | std::string_view | propertyClassID, |
| std::string_view | trackClassID ) |
Register connection between a property and a track. Used to create typed tracks for a property.
| propertyClassID | Property::getClassIdentifier |
| trackClassID | PropertyTrack::getIdentifier() |