Apr-16-2017, 11:57 AM
i want get the all existing signals of any widgets. i did not understand why is small process very hard. is there a method for printing all signals of widget ?
example
example
mybtn = gtk.Button("example")
all_signals_of_mybtn = mybtn.get_all_signal_list()
for i in all_signals_of_mybtn:
print(i)
# program output #
# clicked
# released
# destroyed
# active
# ....
# ..
# .
