Alvin wrote: > Hello all, > > Is it possible to update a window without checking for user generated > events (mouse, keyboard, wm)?
Yes. Fl::flush(). According to the docs: Fl::flush() Causes all the windows that need it to be redrawn and graphics forced out through the pipes. This is what wait() does before looking for events. Whereas Fl::check() is Fl::wait() which also calls Fl::flush() to update the screen as well as checking for events (and some other stuff). -- Alvin _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

