~ubuntu-branches/ubuntu/trusty/connectomeviewer/trusty

« back to all changes in this revision

Viewing changes to cviewer/plugins/cff2/ui/cff_view.py

  • Committer: Package Import Robot
  • Author(s): Stephan Gerhard
  • Date: 2011-10-02 21:30:57 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20111002213057-fnwa7jok9fo2upe1
Tags: 2.1.0-1
* Namespace transition for Enthought Packages
  - added python-traits (>= 4) into Build-Depends to not build
    for older platforms
* Flexible direct data loading for various neuroimaging data types
* Adjusted debian/copyright to match DEP-5 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
import os, os.path
9
9
 
10
10
# Enthought library imports
11
 
from enthought.traits.api import Instance, HasTraits, Any, Delegate, List, Either, Property
12
 
from enthought.pyface.image_cache import ImageCache
13
 
from enthought.traits.ui.api import (Item, TreeEditor, TreeNode, View, Handler, UIInfo)
14
 
from enthought.pyface.image_resource import ImageResource
15
 
from enthought.pyface.api import FileDialog, OK
16
 
from enthought.pyface.action.api import Action
 
11
from traits.api import Instance, HasTraits, Any, Delegate, List, Either, Property
 
12
from pyface.image_cache import ImageCache
 
13
from traitsui.api import (Item, TreeEditor, TreeNode, View, Handler, UIInfo)
 
14
from pyface.image_resource import ImageResource
 
15
from pyface.api import FileDialog, OK
 
16
from pyface.action.api import Action
17
17
 
18
18
# ConnectomeViewer imports
19
19
from cviewer.plugins.cff2.cnetwork import CNetwork
97
97
    def __init__(self, **traits):
98
98
        super(CFFView, self).__init__(**traits)
99
99
 
 
100
 
100
101
    ###########################################################################
101
102
    # `HasTraits` interface.
102
103
    ###########################################################################