Package: gtk
Function gtk:events-pending
Lambda Listgtk:events-pending () Return ValueTrue if any events are pending, false otherwise. Details
Checks if any events are pending.
This can be used to update the UI and invoke timeouts, and so on. while doing
some time intensive computation. Examples;; computation going on ... (loop while (gtk:events-pending) do (gtk:main-iteration)) ;; ... computation continued | See also |
#2025-07-11