Sophie

Sophie

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

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 BarPerspective(Perspective):
    """ An example perspective. """

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

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

    # The contents of the perspective.
    contents = [
        PerspectiveItem(id='Green'),
        PerspectiveItem(id='Black', position='bottom', relative_to='Green')
    ]
    
#### EOF ######################################################################