Part of kiwi.ui.test.recorder View In Hierarchy
kiwi.ui.objectlist.ObjectList,
eg when the user selects or unselects a row. It is actually tied to the 
signal changed on GtkTreeSelection object.
| Method | __init__ | Create a new SignalEvent object. | 
| Method | _get_rows | Undocumented | 
| Class Method | connect | Calls connect on object for signal signal_name. | 
| Method | get_toplevel | This fetches the toplevel widget for a specific object, | 
| Method | serialize | Serialize the widget, write the code here which is | 
| Parameters | object | |
| name | ||
| args | 
| Parameters | object | object to connect on | 
| signal_name | signal name to listen to | |
| cb | callback | 
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): >>> ... return '%s.clicked' % self.name
| Returns | string to reproduce event Override this in a subclass. | |