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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
""" Defines a Traits editor for displaying an Enable component.
"""
#-------------------------------------------------------------------------------
# Written by: David C. Morrill
# Date: 01/26/2007
# (c) Copyright 2007 by Enthought, Inc.
#----------------------------------------------------------------------------
from enthought.enable.colors import ColorTrait
from enthought.etsconfig.api import ETSConfig
from enthought.traits.api import Property, Tuple
from enthought.traits.ui.api import BasicEditorFactory
if ETSConfig.toolkit == 'wx':
from enthought.traits.ui.wx.editor import Editor
from enthought.enable.wx_backend.api import Window
elif ETSConfig.toolkit == 'qt4':
from enthought.traits.ui.qt4.editor import Editor
from enthought.enable.qt4_backend.api import Window
else:
Editor = object
Window = None
class _ComponentEditor( Editor ):
#---------------------------------------------------------------------------
# Trait definitions:
#---------------------------------------------------------------------------
# The plot editor is scrollable (overrides Traits UI Editor).
scrollable = True
#---------------------------------------------------------------------------
# Finishes initializing the editor by creating the underlying toolkit
# widget:
#---------------------------------------------------------------------------
def init( self, parent ):
""" Finishes initializing the editor by creating the underlying toolkit
widget.
"""
self._window = Window( parent, size=self.factory.size, component=self.value )
self.control = self._window.control
self._window.bgcolor = self.factory.bgcolor
self._parent = parent
#---------------------------------------------------------------------------
# Updates the editor when the object trait changes externally to the editor:
#---------------------------------------------------------------------------
def update_editor( self ):
""" Updates the editor when the object trait changes externally to the
editor.
"""
self._window.component = self.value
return
class ComponentEditor( BasicEditorFactory ):
""" wxPython editor factory for Enable components.
"""
#---------------------------------------------------------------------------
# Trait definitions:
#---------------------------------------------------------------------------
# The class used to create all editor styles (overrides BasicEditorFactory).
klass = _ComponentEditor
# The background color for the window
bgcolor = ColorTrait('sys_window')
# The default size of the Window wrapping this Enable component
size = Tuple((400,400))
# Convenience function for accessing the width
width = Property
# Convenience function for accessing the width
height = Property
def _get_width(self):
return self.size[0]
def _set_width(self, width):
self.size = (width, self.size[1])
def _get_height(self):
return self.size[1]
def _set_height(self, height):
self.size = (self.size[0], height)
|