File: red_view.py

package info (click to toggle)
python-pyface 8.0.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,944 kB
  • sloc: python: 54,107; makefile: 82
file content (17 lines) | stat: -rw-r--r-- 392 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
""" A view containing a red panel! """


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"