~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/base/plugins.py

Added overlay system and console overlay. Note that the console overlay
is no longer special cased, allowing multiple overlays per page.

This commit breaks the original console tab.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
    as keyword arguments to the constructor of the view object.
33
33
    """
34
34
    pass
 
35
    
 
36
class OverlayPlugin(BasePlugin):
 
37
    """
 
38
    Marker class for plugins which provide overlays.
 
39
    
 
40
    Overlay plugins provide mini-views which can be displayed on top of other
 
41
    views. The canonical example of a plugin of this type is the Console plugin.
 
42
    """
 
43
    pass