Sophie

Sophie

distrib > Fedora > 13 > x86_64 > by-pkgid > 581a2dffc64bef35e96957a65359cde2 > files > 900

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

""" A view containing a black panel! """


# Local imports.
from color_view import ColorView


class BlackView(ColorView):
    """ A view containing a black panel! """

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

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

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

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