Abstract interface for "auto-start" plugins. More...
#include <pqAutoStartInterface.h>
Public Member Functions | |
virtual | ~pqAutoStartInterface () |
virtual void | startup ()=0 |
Called once after the ParaView starts. More... | |
virtual void | shutdown ()=0 |
Called once before the program shuts down. More... | |
Protected Member Functions | |
pqAutoStartInterface () | |
Abstract interface for "auto-start" plugins.
An auto-start plugin is a plugin that is notified by ParaView when ParaView starts and exits. In practice, no plugin can be loaded until ParaView is up and running, hence the startup()
is called immediately after the plugin is loaded. When the application is about to exit or if the plugin is about to be unloaded, shutdown()
is called on all the registered /// interfaces.
Definition at line 18 of file pqAutoStartInterface.h.
|
virtual |
|
protected |
|
pure virtual |
Called once after the ParaView starts.
If ParaView is already running when the plugin is loaded, this method will be called when the plugin is loaded.
Implemented in pqBivariateManagerImplementation, pqNonOrthogonalAutoStartImplementation, and pqStreamLinesAnimationManagerImplementation.
|
pure virtual |
Called once before the program shuts down.
Implemented in pqBivariateManagerImplementation, pqNonOrthogonalAutoStartImplementation, and pqStreamLinesAnimationManagerImplementation.