Part of elisa.plugins.poblesec.configuration.base View In Hierarchy
Known subclasses: elisa.plugins.poblesec.configuration.list.ListScreen
A base option screen that displays a title and a short text to describe its purpose.
This base class should be inherited and enriched to build more complex option screens.Line # | Kind | Name | Docs |
---|---|---|---|
135 | Method | initialize | Initialize the component. |
148 | Method | clean | Clean the component. |
153 | Method | title__get | Undocumented |
156 | Method | title__set | Undocumented |
161 | Method | summary__get | Undocumented |
164 | Method | summary__set | Undocumented |
141 | Method | _create_widget | Undocumented |
Inherited from OptionScreen:
Line # | Kind | Name | Docs |
---|---|---|---|
64 | Method | __init__ | Undocumented |
68 | Method | setup | Set up the screen (i.e. retrieve the current state of the configuration |
78 | Method | close | Close the configuration screen, and optionally save back the new state |
98 | Method | save | Save back the new state of the configuration. |
105 | Method | handle_input_ok | Default handling of the OK event.
|
113 | Method | handle_input_cancel | Default handling of the Return event.
|
121 | Method | go_back | In standalone mode, go up one level in the history of controllers. |
130 | Method | handle_input | Undocumented |
Inherited from PigmentController (via OptionScreen):
Line # | Kind | Name | Docs |
---|---|---|---|
59 | Method | set_frontend | Set the frontend for the controller. |
68 | Method | set_path | Set the path for the controller. |
84 | Method | has_focus | Undocumented |
87 | Method | prepare | Called after widget is
added to the canvas. It is sensible to do
|
94 | Method | removed | Called after widget is
removed from the canvas.
|
Inherited from Component (via OptionScreen, PigmentController, Controller):
Line # | Kind | Name | Docs |
---|---|---|---|
85 | Class | PathDescriptor | Undocumented |
97 | Class Method | create | Create and initialize the component. |
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
) |
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
) |