Sophie

Sophie

distrib > Mandriva > 2009.1 > x86_64 > media > contrib-backports > by-pkgid > 0e68739bd7db79b5e2d4b5e296323652 > files > 627

python-enthought-traitsgui-3.1.0-2mdv2009.1.noarch.rpm

""" A view containing a red panel! """


# Local imports.
from color_view import ColorView


class RedView(ColorView):
    """ A view containing a red panel! """

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

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

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

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