Part of elisa.plugins.pigment.pigment_frontend View In Hierarchy
Specialised elisa.core.components.frontend.Frontend
for the Pigment toolkit.
| Instance Variables | viewport | the Pigment viewport
(type: pgm.Viewport
) |
| canvas | the Pigment canvas
(type: pgm.Canvas
) | |
| config | data from the configuration file loaded at Elisa startup, or the
default
(type: elisa.core.config.Config
) | |
| controller | the root controller, containing the root of widget hierarchy
(type: elisa.plugins.pigment.pigment_controller.PigmentController
) | |
| gtk_window | Gtk window, optionnally embedding the Pigment viewport
(type: gtk.Window
) |
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 267 | Method | initialize | Initialize the component. |
| 427 | Method | reduce_window | Undocumented |
| 431 | Method | handle_input | Undocumented |
| 449 | Method | set_theme | Set a new theme for the frontend. |
| 489 | Method | get_theme | Get the current theme. |
| 497 | Method | load_from_theme | Loads an icon from the theme into a Pigment image. |
| 522 | Method | clean | Clean the component. |
Inherited from Component (via Frontend):
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 85 | Class | PathDescriptor | Undocumented |
| 97 | Class Method | create | Create and initialize the component. |
Inherited from Loggable (via Frontend, Component):
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 81 | Method | __init__ | Undocumented |
Inherited from PigmentFrontendExtensionMixin:
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 44 | Method | __init__ | Undocumented |
| 54 | Method | _load_controller_mappings | Load the controller mappings from all plugins' metadata. |
| 65 | Method | _load_decorator_mappings | Load the controller mappings from all plugins' metadata. |
| 76 | Method | add_controller | Add a new controller to the frontend. The controller is the one that |
| 89 | Method | create_controller | Create a controller for the given path. |
| 117 | Method | _store_controller | Undocumented |
| 124 | Method | retrieve_controllers | Retrieve the list of controllers for a given path. |
| 141 | Method | add_decorator | Add a decorator function for controllers matching path_pattern. |
| 158 | Method | _set_frontend | Undocumented |
| 163 | Method | _set_path | Undocumented |
| 168 | Method | _decorator_callback | Undocumented |
| 173 | Method | _decorator_errback | Undocumented |
| 179 | Method | _iterate_decorators_callback | Undocumented |
| 182 | Method | _iterate_decorators | Undocumented |
| 208 | Method | _decorate | Undocumented |
Initialize the component.
This method is called byComponent.create to finish the
initialization of a component.
| Returns | a deferred called when a component is fully initialized
(type: twisted.internet.defer.Deferred
) | |
| Parameters | theme | the new theme
(type: elisa.plugins.widgets.Theme
) |
| Parameters | theme | (type: elisa.plugins.widgets.Theme
) |
| Returns | the current theme | |
| Parameters | path | icon path to load (type: str ) |
| image | drawable into which the icon will be loaded
(type: pgm.Image
) |
Clean the component.
This method is called when a component is not needed anymore to clean its state.| Returns | a deferred called when the component has finished cleaning its state
(type: twisted.internet.defer.Deferred
) | |