Public Member Functions | Static Public Attributes | Private Member Functions | Private Attributes | Static Private Attributes
qt_gui.plugin_handler.PluginHandler Class Reference
Inheritance diagram for qt_gui.plugin_handler.PluginHandler:
Inheritance graph
[legend]

List of all members.

Public Member Functions

def __init__
def argv
def emit_restore_settings_completed
def emit_save_settings_completed
def emit_shutdown_plugin_completed
def instance_id
def load
def remove_toolbar
def remove_widget
def restore_settings
def save_settings
def set_minimized_dock_widgets_toolbar
def set_plugin_descriptor
def shutdown_plugin
def unload

Static Public Attributes

tuple close_signal = Signal(str)
tuple help_signal = Signal(str)
tuple label_updated = Signal(str, str)
tuple reload_signal = Signal(str)

Private Member Functions

def _add_dock_widget
def _add_dock_widget_to_main_window
def _add_toolbar
def _call_method_on_all_dock_widgets
def _check_close
def _create_dock_widget
def _delete_toolbar
def _delete_widget
def _emit_close_plugin
def _emit_help_signal
def _emit_load_completed
def _emit_reload_signal
def _emit_unload_completed
def _garbage_widgets_and_toolbars
def _load
def _on_dock_widget_hide
def _on_dock_widget_show
def _on_dock_widget_title_changed
def _on_widget_icon_changed
def _on_widget_title_changed
def _remove_widget_by_dock_widget
def _restore_settings
def _save_settings
def _set_window_icon
def _shutdown_plugin
def _trigger_configuration
def _unload
def _update_dock_widget_features
def _update_title_bar
def _update_title_bars

Private Attributes

 __callback
 __instance_settings
 _application_context
 _argv
 _container_manager
 _instance_id
 _main_window
 _minimized_dock_widgets_toolbar
 _plugin_descriptor
 _plugin_has_configuration
 _plugin_provider
 _toolbars
 _widgets

Static Private Attributes

tuple _defered_check_close = Signal()

Detailed Description

Base class for the bidirectional exchange between the framework and one `Plugin` instance.
It utilizes a `PluginProvider` to load/unload the plugin and provides callbacks for the `PluginContext`.

Definition at line 42 of file plugin_handler.py.


Constructor & Destructor Documentation

def qt_gui.plugin_handler.PluginHandler.__init__ (   self,
  parent,
  main_window,
  instance_id,
  application_context,
  container_manager,
  argv = None 
)

Definition at line 55 of file plugin_handler.py.


Member Function Documentation

def qt_gui.plugin_handler.PluginHandler._add_dock_widget (   self,
  dock_widget,
  widget 
) [private]

Definition at line 297 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler._add_dock_widget_to_main_window (   self,
  dock_widget 
) [private]

Definition at line 315 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler._add_toolbar (   self,
  toolbar 
) [private]

Definition at line 365 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler._call_method_on_all_dock_widgets (   self,
  method_name,
  instance_settings 
) [private]

Definition at line 199 of file plugin_handler.py.

Definition at line 395 of file plugin_handler.py.

Definition at line 236 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler._delete_toolbar (   self,
  toolbar 
) [private]

Definition at line 149 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler._delete_widget (   self,
  widget 
) [private]

Definition at line 146 of file plugin_handler.py.

Definition at line 400 of file plugin_handler.py.

Definition at line 288 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler._emit_load_completed (   self,
  exception = None 
) [private]

Definition at line 106 of file plugin_handler.py.

Definition at line 291 of file plugin_handler.py.

Definition at line 167 of file plugin_handler.py.

Definition at line 116 of file plugin_handler.py.

Definition at line 103 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler._on_dock_widget_hide (   self,
  dock_widget 
) [private]

Definition at line 331 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler._on_dock_widget_show (   self,
  dock_widget 
) [private]

Definition at line 335 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler._on_dock_widget_title_changed (   self,
  dock_widget 
) [private]

Definition at line 339 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler._on_widget_icon_changed (   self,
  widget 
) [private]

Definition at line 323 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler._on_widget_title_changed (   self,
  widget 
) [private]

Definition at line 327 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler._remove_widget_by_dock_widget (   self,
  dock_widget 
) [private]

Definition at line 284 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler._restore_settings (   self,
  plugin_settings,
  instance_settings 
) [private]

Definition at line 223 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler._save_settings (   self,
  plugin_settings,
  instance_settings 
) [private]

Definition at line 187 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler._set_window_icon (   self,
  widget 
) [private]

Definition at line 270 of file plugin_handler.py.

Definition at line 136 of file plugin_handler.py.

Definition at line 294 of file plugin_handler.py.

Definition at line 164 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler._update_dock_widget_features (   self,
  dock_widget 
) [private]

Definition at line 243 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler._update_title_bar (   self,
  dock_widget,
  hide_help = False,
  hide_reload = False 
) [private]

Definition at line 253 of file plugin_handler.py.

Definition at line 278 of file plugin_handler.py.

Definition at line 82 of file plugin_handler.py.

Definition at line 226 of file plugin_handler.py.

Definition at line 190 of file plugin_handler.py.

Definition at line 139 of file plugin_handler.py.

Definition at line 79 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler.load (   self,
  plugin_provider,
  callback = None 
)
Load plugin.
Completion is signaled asynchronously if a callback is passed.

Definition at line 91 of file plugin_handler.py.

Definition at line 387 of file plugin_handler.py.

Definition at line 344 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler.restore_settings (   self,
  plugin_settings,
  instance_settings,
  callback = None 
)
Restore settings of the plugin (`Plugin.restore_settings()`) and all dock widget title bars.
Completion is signaled asynchronously if a callback is passed.

Definition at line 209 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler.save_settings (   self,
  plugin_settings,
  instance_settings,
  callback = None 
)
Save settings of the plugin (`Plugin.save_settings()`) and all dock widget title bars.
Completion is signaled asynchronously if a callback is passed.

Definition at line 173 of file plugin_handler.py.

Definition at line 85 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler.set_plugin_descriptor (   self,
  plugin_descriptor 
)

Definition at line 88 of file plugin_handler.py.

Shutdown plugin (`Plugin.shutdown_plugin()`) and remove all added widgets.
Completion is signaled asynchronously if a callback is passed.

Definition at line 124 of file plugin_handler.py.

def qt_gui.plugin_handler.PluginHandler.unload (   self,
  callback = None 
)
Unload plugin.
Completion is signaled asynchronously if a callback is passed.

Definition at line 152 of file plugin_handler.py.


Member Data Documentation

Definition at line 55 of file plugin_handler.py.

Definition at line 55 of file plugin_handler.py.

Definition at line 55 of file plugin_handler.py.

Definition at line 55 of file plugin_handler.py.

Definition at line 55 of file plugin_handler.py.

Definition at line 53 of file plugin_handler.py.

Definition at line 55 of file plugin_handler.py.

Definition at line 55 of file plugin_handler.py.

Definition at line 55 of file plugin_handler.py.

Definition at line 55 of file plugin_handler.py.

Definition at line 55 of file plugin_handler.py.

Definition at line 55 of file plugin_handler.py.

Definition at line 55 of file plugin_handler.py.

Definition at line 55 of file plugin_handler.py.

Definition at line 50 of file plugin_handler.py.

Definition at line 52 of file plugin_handler.py.

tuple qt_gui::plugin_handler.PluginHandler::label_updated = Signal(str, str) [static]

Definition at line 49 of file plugin_handler.py.

Definition at line 51 of file plugin_handler.py.


The documentation for this class was generated from the following file:


qt_gui
Author(s): Dirk Thomas
autogenerated on Fri Feb 3 2017 03:42:12