Sophie

Sophie

distrib > Fedora > 13 > i386 > media > updates > by-pkgid > 581a2dffc64bef35e96957a65359cde2 > files > 901

python-TraitsGUI-3.4.0-2.fc13.noarch.rpm

""" A view containing a blue panel! """


# Local imports.
from color_view import ColorView


class BlueView(ColorView):
    """ A view containing a blue panel! """

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

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

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

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