kiwi.ui.test.recorder.ObjectListSelectionChanged(SignalEvent)
class documentationkiwi.ui.test.recorder
(View In Hierarchy)
This event represents a selection change on a L{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__ | No summary |
Class Method | connect | Calls connect on I{object} for signal I{signal_name}. |
Method | get_toplevel | 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 |
Method | serialize | 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: |
Method | _get_rows | Undocumented |
Create a new SignalEvent object. @param object: @param name: @param args:
Calls connect on I{object} for signal I{signal_name}. @param object: object to connect on @param signal_name: signal name to listen to @param 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.
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 @returns: string to reproduce event Override this in a subclass.