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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
# Standard library imports
import copy
import unittest
# Enthought library imports
from traits.api import Any, Tuple
# Enable imports
from enable.api import BasicEvent, Canvas, Component, Container, \
Viewport, AbstractWindow
class EnableUnitTest(unittest.TestCase):
def assert_dims(self, obj, **dims):
"""
checks that each of the named dimensions of the object are a
certain value. e.g. assert_dims(component, x=5.0, y=7.0).
"""
for dim, val in dims.items():
self.assert_( getattr(obj, dim) == val )
return
class TestComponent(Component):
""" A component used for testing event handling. Most notably, it
saves a copy of the last event it received.
"""
# Make some nice default bounds
bounds = [10, 10]
last_event = Any
def _dispatch_stateful_event(self, event, suffix):
super(TestComponent, self)._dispatch_stateful_event(event, suffix)
self.last_event = copy.copy(event)
class TestContainer(Container):
last_event = Any
def _dispatch_stateful_event(self, event, suffix):
super(TestContainer, self)._dispatch_stateful_event(event, suffix)
self.last_event = copy.copy(event)
class TestCanvas(Canvas):
last_event = Any
def _dispatch_stateful_event(self, event, suffix):
super(TestCanvas, self)._dispatch_stateful_event(event, suffix)
self.last_event = copy.copy(event)
class DummyWindow(AbstractWindow):
""" A stubbed-out subclass of AbstractWindow that passes on most virtual
methods instead of raising an exception.
"""
def _capture_mouse(self):
pass
def _release_mouse(self):
pass
def _create_mouse_event(self, event):
return event
def _redraw(self, *args, **kw):
pass
def _get_control_size(self):
return self._size
def _create_gc(self, *args, **kw):
pass
def _window_paint(self, event):
pass
def set_pointer(self, pointer):
pass
def _set_timer_interval(self, component, interval):
pass
def _set_focus(self):
pass
def screen_to_window(self, x, y):
return (x,y)
class EventTransformTestCase(EnableUnitTest):
def test_simple_container(self):
""" Tests event handling of nested containers """
comp = TestComponent(position=[50,50])
inner_container = TestContainer(bounds=[100.0, 100.0],
position=[50,50])
inner_container.add(comp)
outer_container = TestContainer(bounds=[200,200])
outer_container.add(inner_container)
event = BasicEvent(x=105, y=105)
outer_container.dispatch(event, "left_down")
self.assert_(comp.last_event.x == 55)
self.assert_(comp.last_event.y == 55)
self.assert_(inner_container.last_event.x == 105)
self.assert_(inner_container.last_event.y == 105)
return
def test_viewport_container(self):
""" Tests event handling of viewports (scaling and translation) """
comp = TestComponent(position=[20,20])
container = TestContainer(bounds=[100,100], position=[50,50])
container.add(comp)
viewport = Viewport(component=container, bounds=[400,400],
position=[30,30])
# Test unscaled event
event = BasicEvent(x=105, y=105)
viewport.dispatch(event, "left_down")
self.assert_(container.last_event.x == 75)
self.assert_(container.last_event.y == 75)
self.assert_(comp.last_event.x == 25)
self.assert_(comp.last_event.y == 25)
# Translate the viewport's view_position
container.last_event = None
comp.last_event = None
viewport.view_position = [-10,-10]
event = BasicEvent(x=115, y=115)
viewport.dispatch(event, "left_down")
self.assert_(container.last_event.x == 75)
self.assert_(container.last_event.y == 75)
self.assert_(comp.last_event.x == 25)
self.assert_(comp.last_event.y == 25)
# Do a zoom
container.last_event = None
comp.last_event = None
# Zoom in by a factor of 2, so view an area that is 200x200.
viewport.zoom = 2.0
viewport.enable_zoom = True
viewport.view_position = [-50, -50]
viewport.view_bounds = [200, 200]
event = BasicEvent(x=280, y=280)
viewport.dispatch(event, "left_down")
self.assert_(container.last_event.x == 75)
self.assert_(container.last_event.y == 75)
self.assert_(comp.last_event.x == 25)
self.assert_(comp.last_event.y == 25)
return
def test_mouse_capture(self):
""" Tests saving the event's net_transform as well as the dispatch
history when capturing a mouse and dispatching subsequent events.
"""
class MouseCapturingComponent(TestComponent):
captured_event_pos = Tuple
def normal_left_down(self, event):
self.captured_event_pos = (event.x, event.y)
event.window.set_mouse_owner(self, event.net_transform())
comp = MouseCapturingComponent(position=[20,20])
container = TestContainer(bounds=[100,100], position=[50,50])
container.add(comp)
viewport = Viewport(component=container, bounds=[400,400],
position=[30,30],
fit_window=False,
resizable="")
window = DummyWindow(_size=(500,500))
window.component = viewport
# Create the first event (to trigger the mouse capture)
event = BasicEvent(x=105, y=105, window=window)
window._handle_mouse_event("left_down", event)
self.assert_(window.mouse_owner == comp)
# Create the second event
event = BasicEvent(x=107, y=107, window=window)
old_pos = comp.captured_event_pos
window._handle_mouse_event("left_down", event)
new_pos = comp.captured_event_pos
self.assert_(new_pos[0] == old_pos[0] + 2)
self.assert_(new_pos[1] == old_pos[1] + 2)
return
if __name__ == "__main__":
import nose
nose.main()
# EOF
|