Inviwo 0.9.12-pre
Inviwo documentation
|
#include <democontroller.h>
Public Types | |
enum | Offset { None , First , Previous , Next , Last , Reload } |
Public Types inherited from inviwo::PropertyOwner | |
using | iterator = std::vector<Property*>::iterator |
using | const_iterator = std::vector<Property*>::const_iterator |
Public Member Functions | |
DemoController (InviwoApplication *app=util::getInviwoApplication()) | |
void | onChangeSelection (Offset offset) |
void | setFileOptions () |
void | setFolder (const std::filesystem::path &path) |
virtual InviwoApplication * | getInviwoApplication () override |
Public Member Functions inherited from inviwo::Observable< DemoControllerObserver > | |
Observable (const Observable< DemoControllerObserver > &other) | |
Observable (Observable< DemoControllerObserver > &&other) noexcept | |
Observable< DemoControllerObserver > & | operator= (const Observable< DemoControllerObserver > &other) |
Observable< DemoControllerObserver > & | operator= (Observable< DemoControllerObserver > &&other) noexcept |
void | addObserver (DemoControllerObserver *observer) |
void | removeObserver (DemoControllerObserver *observer) |
virtual void | startBlockingNotifications () override final |
virtual void | stopBlockingNotifications () override final |
Public Member Functions inherited from inviwo::ObservableInterface | |
Public Member Functions inherited from inviwo::PropertyOwner | |
virtual | ~PropertyOwner () |
Removes all properties and notifies its observers of the removal. | |
virtual void | addProperty (Property *property, bool owner=true) |
virtual void | addProperty (Property &property) |
virtual Property * | addProperty (std::unique_ptr< Property > property) |
template<typename... Ts> | |
void | addProperties (Ts &... properties) |
virtual void | insertProperty (size_t index, Property *property, bool owner=true) |
insert property property at position index If index is not valid, the property is appended. | |
virtual void | insertProperty (size_t index, Property &property) |
insert property property at position index If index is not valid, the property is appended. | |
virtual Property * | insertProperty (size_t index, std::unique_ptr< Property > property) |
insert property property at position index If index is not valid, the property is appended. | |
virtual Property * | removeProperty (std::string_view identifier) |
virtual Property * | removeProperty (Property *property) |
virtual Property * | removeProperty (Property &property) |
virtual Property * | removeProperty (size_t index) |
remove property referred to by index | |
virtual bool | move (Property *property, size_t newIndex) |
virtual void | clear () |
Remove all properties; Owned properties will be deleted. | |
virtual const std::string & | getIdentifier () const |
const std::vector< Property * > & | getProperties () const |
const std::vector< CompositeProperty * > & | getCompositeProperties () const |
std::vector< Property * > | getPropertiesRecursive () const |
std::vector< Property * > & | getPropertiesRecursive (std::vector< Property * > &destination) const |
Property * | getPropertyByIdentifier (std::string_view identifier, bool recursiveSearch=false) const |
Property * | getPropertyByPath (std::string_view path) const |
template<class T > | |
std::vector< T * > | getPropertiesByType (bool recursiveSearch=false) const |
bool | empty () const |
size_t | size () const |
Property * | operator[] (size_t) |
const Property * | operator[] (size_t) const |
const_iterator | find (Property *property) const |
iterator | begin () |
iterator | end () |
const_iterator | begin () const |
const_iterator | end () const |
const_iterator | cbegin () const |
const_iterator | cend () const |
virtual bool | isValid () const |
virtual void | setValid () |
InvalidationLevel | getInvalidationLevel () const |
virtual void | invalidate (InvalidationLevel invalidationLevel, Property *modifiedProperty) |
virtual Processor * | getProcessor () |
virtual const Processor * | getProcessor () const |
virtual const PropertyOwner * | getOwner () const |
virtual PropertyOwner * | getOwner () |
virtual void | serialize (Serializer &s) const override |
virtual void | deserialize (Deserializer &d) override |
virtual void | setAllPropertiesCurrentStateAsDefault () |
virtual void | resetAllProperties () |
virtual void | invokeEvent (Event *event) override |
Public Member Functions inherited from inviwo::PropertyOwnerObservable | |
void | notifyObserversWillAddProperty (PropertyOwner *owner, Property *property, size_t index) |
void | notifyObserversDidAddProperty (Property *property, size_t index) |
void | notifyObserversWillRemoveProperty (Property *property, size_t index) |
void | notifyObserversDidRemoveProperty (PropertyOwner *owner, Property *property, size_t index) |
Public Member Functions inherited from inviwo::Observable< PropertyOwnerObserver > | |
Observable (const Observable< PropertyOwnerObserver > &other) | |
Observable (Observable< PropertyOwnerObserver > &&other) noexcept | |
Observable< PropertyOwnerObserver > & | operator= (const Observable< PropertyOwnerObserver > &other) |
Observable< PropertyOwnerObserver > & | operator= (Observable< PropertyOwnerObserver > &&other) noexcept |
void | addObserver (PropertyOwnerObserver *observer) |
void | removeObserver (PropertyOwnerObserver *observer) |
virtual void | startBlockingNotifications () override final |
virtual void | stopBlockingNotifications () override final |
Public Member Functions inherited from inviwo::Serializable | |
Public Member Functions inherited from inviwo::EventListener |
Protected Member Functions | |
void | loadWorkspaceApp (const std::filesystem::path &fileName) |
Protected Member Functions inherited from inviwo::animation::DemoControllerObservable | |
void | notifyStateChanged (DemoController *controller) |
Protected Member Functions inherited from inviwo::Observable< DemoControllerObserver > | |
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::PropertyOwner | |
PropertyOwner (const PropertyOwner &rhs) | |
PropertyOwner & | operator= (const PropertyOwner &that)=delete |
void | forEachProperty (std::function< void(Property &)> callback, bool recursiveSearch=false) const |
Protected Member Functions inherited from inviwo::Observable< PropertyOwnerObserver > | |
void | forEachObserver (C callback) |
Protected Attributes | |
InviwoApplication * | app_ |
FileProperty | demoFolder_ |
OptionPropertyInt | demoFile_ |
bool | updateWorkspace_ = true |
Protected Attributes inherited from inviwo::PropertyOwner | |
std::vector< Property * > | properties_ |
std::vector< EventProperty * > | eventProperties_ |
std::vector< CompositeProperty * > | compositeProperties_ |
std::vector< std::unique_ptr< Property > > | ownedProperties_ |
The AnimationController is responsible for evaluating the demo and keeping track of the demo time and state.
|
overridevirtual |
Implements inviwo::PropertyOwner.