Sophie

Sophie

distrib > Fedora > 18 > x86_64 > media > updates > by-pkgid > 92fdf0ccfd77e2407233c23f5e203339 > files > 156

python-pyface-doc-4.3.0-4.fc18.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 ######################################################################