The hildon.Seekbar widget consists of a scale widget and two buttons. What signals does the widget send when the buttons are clicked or how could I find out? Is there a way to monitor all signals/events that a widget sends in PyGTK?
|
feedback
|
|
The documentation you linked to shows this:
So it seems it has (at least) two signals called "value-changed" and "notify::fraction". It also shows an inheritance diagram that tells you that the Seekbar inherits the standard GTK+ Scale widget, which is where the first signal comes from (by further inheritance). Not sure where the "notify::fraction" signal comes from, though. | ||||
feedback
|
|
gobjects have a way of notifying about property changes and it does this with signals. So connecting to notify::property gets you changes to property. | |||
|
feedback
|