0

I need to list all available connectable events which can be connected with Python gi.repository.Notify object eg. obj.connect("event", callback_fun). How do I print list of "connectable" events of gi.repository.Notify object? I have tried with dir(obj) and obj.props but couldn't find.

Aran-Fey
  • 39,665
  • 11
  • 104
  • 149
Yogesh
  • 453
  • 1
  • 4
  • 12

1 Answers1

0

It's not clear, what you want. A "notify" signal will be emitted, when any of GObject's properties changes. You can get a list of all properties with GObject.list_properties().

If you need a list of signals, you can use GObject.signal_list_names(). But AFAIK you can not get signal handler prototypes from this list. Reading the docs is a much better approach.

Alexander Dmitriev
  • 2,483
  • 1
  • 15
  • 20