Sophie

Sophie

distrib > Mandriva > 2010.2 > i586 > by-pkgid > a2cf9b7ce24f3e64e4a116303d43643e > files > 455

python-enthought-envisageplugins-3.2.0-1mdv2010.2.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 ######################################################################