1.

How Do I Specify User Data To A Signal?

Answer»

 widget.connect("my_signal", HANDLER, userdata [, ...])

As you can SEE, you can pass as MANY ITEMS as userdata; the function will receive the same number of user data arguments.

 widget.connect("my_signal", handler, userdata [, ...])

As you can see, you can pass as many items as userdata; the function will receive the same number of user data arguments.



Discussion

No Comment Found