object.disconnect("signal") says

"TypeError: an integer is required"

In the GTK+ manual, gtk_signal_disconnect seems to need (GtkObject
*object, guint handler_id).  Quite frankly, I don't know what a
"handler_id" is, or how to get one.

object.emit_stop_by_name("signal") doesn't seem to do anything.

I'm trying to make an auto-completing GtkEntry, and it is considerably
more difficult than I had imagined.  I have it call a function when the
"changed" signal is emitted, but adding the auto-completed text causes
it to emit a "changed" signal for each character.  Bad bad bad.  I've
tried using flag states, but it just gets confusing.

How do I make a GtkEntry stop emitting the "changed" signal while I
append_text()?

Thank you!

 -lf


_______________________________________________
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk

Reply via email to