Re: [pygtk] Event ordering

2009-01-27 Thread Yang Zhang
Walter Leibbrandt wrote: > Hi, > > Yang Zhang wrote: >> Yang Zhang wrote: >> >>> Hi, I'm trying to position a pop-up Window to always be directly >>> under an Entry box, but I'm not sure what signal(s) to react to. >>> >>> For instance, I tried entry.connect_after('focus-in-event', ...) to >>>

Re: [pygtk] Event ordering

2009-01-27 Thread Walter Leibbrandt
Hi, Yang Zhang wrote: > Yang Zhang wrote: > >> Hi, I'm trying to position a pop-up Window to always be directly under >> an Entry box, but I'm not sure what signal(s) to react to. >> >> For instance, I tried entry.connect_after('focus-in-event', ...) to >> handle the initial positioning (I al

Re: [pygtk] Event ordering

2009-01-24 Thread Yang Zhang
Yang Zhang wrote: > Hi, I'm trying to position a pop-up Window to always be directly under > an Entry box, but I'm not sure what signal(s) to react to. > > For instance, I tried entry.connect_after('focus-in-event', ...) to > handle the initial positioning (I also hide the window on > 'focus-ou

[pygtk] Event ordering

2009-01-24 Thread Yang Zhang
Hi, I'm trying to position a pop-up Window to always be directly under an Entry box, but I'm not sure what signal(s) to react to. For instance, I tried entry.connect_after('focus-in-event', ...) to handle the initial positioning (I also hide the window on 'focus-out-event'), and that mostly see