Sophie

Sophie

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

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

""" A view containing a yellow panel! """


# Local imports.
from color_view import ColorView


class YellowView(ColorView):
    """ A view containing a yellow panel! """

    #### 'IView' interface ####################################################

    # The view's name.
    name = 'Yellow'

    # The default position of the view relative to the item specified in the
    # 'relative_to' trait.
    position = 'bottom'

#### EOF ######################################################################