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
|
""" The event passed to an action's 'perform' method. """
# Standard library imports.
import time
# Enthought library imports.
from traits.api import Float, HasTraits, Int
class ActionEvent(HasTraits):
""" The event passed to an action's 'perform' method. """
#### 'ActionEvent' interface ##############################################
#: When the action was performed (time.time()).
when = Float
###########################################################################
# 'object' interface.
###########################################################################
def __init__(self, **traits):
""" Creates a new action event.
Note: Every keyword argument becoames a public attribute of the event.
"""
# Base-class constructor.
super(ActionEvent, self).__init__(**traits)
# When the action was performed.
self.when = time.time()
|