~ubuntu-branches/ubuntu/trusty/python-traitsui/trusty

« back to all changes in this revision

Viewing changes to traitsui/editors/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2011-07-09 13:57:39 UTC
  • Revision ID: james.westby@ubuntu.com-20110709135739-x5u20q86huissmn1
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#------------------------------------------------------------------------------
 
2
#
 
3
#  Copyright (c) 2005, Enthought, Inc.
 
4
#  All rights reserved.
 
5
#
 
6
#  This software is provided without warranty under the terms of the BSD
 
7
#  license included in enthought/LICENSE.txt and may be redistributed only
 
8
#  under the conditions described in the aforementioned license.  The license
 
9
#  is also available online at http://www.enthought.com/licenses/BSD.txt
 
10
#
 
11
#  Thanks for using Enthought open source!
 
12
#
 
13
#  Author: David C. Morrill
 
14
#  Date:   10/07/2004
 
15
#
 
16
#------------------------------------------------------------------------------
 
17
# Adding this statement for backwards compatibility (since editors.py was a
 
18
# file prior to version 3.0.3).
 
19
 
 
20
from __future__ import absolute_import
 
21
 
 
22
from .api import (toolkit, ArrayEditor, BooleanEditor, ButtonEditor,
 
23
    CheckListEditor, CodeEditor, ColorEditor, CompoundEditor, CustomEditor,
 
24
    DateEditor, DefaultOverride, DirectoryEditor, DNDEditor, DropEditor,
 
25
    EnumEditor, FileEditor, FontEditor, KeyBindingEditor, ImageEditor,
 
26
    ImageEnumEditor, InstanceEditor, ListEditor, ListStrEditor, NullEditor,
 
27
    RangeEditor, RGBColorEditor, SetEditor, TextEditor, TableEditor,
 
28
    TimeEditor, TitleEditor, TreeEditor, TupleEditor, HistoryEditor,
 
29
    HTMLEditor, PopupEditor, ValueEditor, ShellEditor, ScrubberEditor,
 
30
    TabularEditor, ProgressEditor, SearchEditor)
 
31