File: api.py

package info (click to toggle)
enthought-traits-ui 2.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 15,204 kB
  • ctags: 9,623
  • sloc: python: 45,547; sh: 32; makefile: 19
file content (33 lines) | stat: -rw-r--r-- 992 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#-------------------------------------------------------------------------------
#  
#  enthought.pyface.dock.features Core API
#  
#  Written by: David C. Morrill
#  
#  Date: 07/18/2006
#  
#  (c) Copyright 2006 by David C. Morrill
#  
#-------------------------------------------------------------------------------

""" Copyright 2006 by David C. Morrill """

#-------------------------------------------------------------------------------
#  Imports:
#-------------------------------------------------------------------------------
    
from enthought.pyface.dock.features.custom_feature \
    import CustomFeature
    
from enthought.pyface.dock.features.drag_drop_feature \
    import MultiDragDrop
    
from enthought.pyface.dock.features.feature_metadata \
    import is_not_none, DropFile
    
from enthought.pyface.dock.features.tool_feature \
    import ToolDescription, Tool
    
from enthought.pyface.dock.features.add_standard_features \
    import add_standard_features