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 etc. while doing some
time intensive computation. Examples;; computation going on ... (loop while (gtk:events-pending) do (gtk:main-iteration)) ;; ... computation continued | See also |
#2023-3-5