kiwi.ui.test.recorder.ObjectListDoubleClick(SignalEvent) class documentationkiwi.ui.test.recorder
(View In Hierarchy)
This event represents a double click on a row in objectlist
| Method | __init__ | No summary |
| Class Method | connect | Calls connect on object for signal signal_name. |
| 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: |
Inherited from Event (via SignalEvent):
| Class Variable | object_type | subclass for type, Recorder uses
this to automatically attach events to objects when they appear |
| 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 |
Inherited from Event (via SignalEvent):
| Class Variable | object_type | subclass for type, Recorder uses
this to automatically attach events to objects when they appear |
| 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 |
Create a new SignalEvent object.
| Parameters | object | |
| name | ||
| args |
Calls connect on object for signal signal_name.
| Parameters | object | object to connect on |
| signal_name | signal name to listen to | |
| cb | callback |
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. | |