k.u.t.r.Event(object) : class documentation

Part of kiwi.ui.test.recorder View In Hierarchy

Known subclasses: kiwi.ui.test.recorder.SignalEvent, kiwi.ui.test.recorder.WindowDeleteEvent

Event is a base class for all events. An event represent a user change of an interactive widget.
Class Variablesobject_typesubclass for type, Recorder uses this to automatically attach events to objects when they appear
Method __init__ Create a new Event object.
Method get_toplevel This fetches the toplevel widget for a specific object,
Method serialize Serialize the widget, write the code here which is
def __init__(self, object, name=None):
Create a new Event object.
Parametersobjecta gobject subclass
namename of the object, if None, the method get_name() will be called
def get_toplevel(self, widget):
This fetches the toplevel widget for a specific object, by default it assumes it's a wiget subclass and calls get_toplevel() for the widget

Override this in a subclass.

def serialize(self):

Serialize the widget, write the code here which is used to reproduce the event, for a button which is clicked the implementation looks like this:

>>> def serialize(self):
>>> ... return '%s.clicked' % self.name
Returnsstring to reproduce event Override this in a subclass.
API Documentation for Kiwi, generated by pydoctor at 2010-05-20 02:10:57.