File: blue_view.py

package info (click to toggle)
python-traitsgui 3.6.0-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,276 kB
  • sloc: python: 12,190; makefile: 85; sh: 5
file content (20 lines) | stat: -rwxr-xr-x 498 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
""" 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 ######################################################################