[EMAIL PROTECTED] wrote: > Hi, > > I'm using GtkTestEmbed as a base for an embedded browser. It is my > understanding that the net_stop signal gets generated when the "network > load" is done, but not always before the browser window has been painted > (everything that is going to be displayed is displayed). Is there a way > (callback) to figure out that the painting of screen is done? > > Thanks, > > Andreas.
That's going to be kind of hard since that's dependent on all of the invalidation being completely drawn _and_ rendered to the string. I'm not sure it's 100% possible because the X server is async and you're not notified when your drawing is complete. I mean, you could do something hacky like stuff a timer after the load is done and do what you need to do then. :) --Chris -- ------------ Christopher Blizzard http://people.redhat.com/blizzard/ "Hell froze over in the geek community yesterday as Mozilla 1.0 was finally released." ------------
