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?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

The documentation you linked to shows this:

seekbar.connect("value-changed", control_changed, label)
seekbar.connect("notify::fraction", fraction_changed, label)

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.

link|improve this answer
Not sure about the differences between the two signals but in any case it seems that these signals are triggered when clicking the buttons. I misunderstood the meaning of the buttons to be "next"/"previous" song buttons but instead they're just seek buttons for the bar. – Mikko Rantanen Jul 15 '09 at 18:47
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.