Public Member Functions | |
def | __init__ |
def | discover |
def | load |
def | shutdown |
def | unload |
Interface for discovering, loading and unloading of plugins.
Definition at line 34 of file plugin_provider.py.
def qt_gui.plugin_provider.PluginProvider.__init__ | ( | self | ) |
Definition at line 38 of file plugin_provider.py.
def qt_gui.plugin_provider.PluginProvider.discover | ( | self, | |
discovery_data | |||
) |
Discover the plugins. @param discovery_data: The settings containing any discovery data which is cached between invocations @return: Dictionary of plugin ids to `PluginDescriptor`s
Definition at line 42 of file plugin_provider.py.
def qt_gui.plugin_provider.PluginProvider.load | ( | self, | |
plugin_id, | |||
plugin_context | |||
) |
Load a plugin and pass the `PluginContext`. @return: The created plugin instance @raise PluginLoadError
Definition at line 50 of file plugin_provider.py.
def qt_gui.plugin_provider.PluginProvider.shutdown | ( | self | ) |
Notify of shutdown.
Definition at line 62 of file plugin_provider.py.
def qt_gui.plugin_provider.PluginProvider.unload | ( | self, | |
plugin_instance | |||
) |
Unload a plugin.
Definition at line 58 of file plugin_provider.py.