Sophie

Sophie

distrib > Fedora > 18 > x86_64 > media > updates > by-pkgid > c66175b08690d24bca431460aac64d89 > files > 134

python-envisage-doc-4.3.0-3.fc18.noarch.rpm

""" An example perspective. """


# Enthought library imports.
from 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 ######################################################################