Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > ccd2f5c08185f7721754f86a114862fe > files > 403

python-enthought-envisageplugins-3.1.1-2mdv2010.0.noarch.rpm

""" An example perspective. """


# Enthought library imports.
from enthought.pyface.workbench.api import Perspective, PerspectiveItem


class FooPerspective(Perspective):
    """ An example perspective. """

    # The perspective's name.
    name = 'Foo'

    # Should the editor area be shown in this perspective?
    show_editor_area = True

    # The contents of the perspective.
    contents = [
        PerspectiveItem(id='Blue',  position='left'),
        PerspectiveItem(id='Red',   position='with', relative_to='Blue'),
        PerspectiveItem(id='Green', position='top')
    ]
    
#### EOF ######################################################################