$Id: gtkmmtips.html,v 1.9 1999/08/12 09:06:39
christof Exp $
Some assorted Gtk-- experiences
Tips and Tricks
- Refreshing your windows takes place within idle time. To
accomplish this while you do computive work it requires a resync.
The following code does the latter:
while (Gtk::Main::events_pending()) Gtk::Main::iteration();