Package: gtk
Function gtk-main
Lambda Listgtk-main () Details Runs the main loop until the function gtk-main-quit is called. You can nest calls to the function gtk-main. In that case the function gtk-main-quit will make the innermost invocation of the main loop
return. Lisp ImplementationExample(defun main-idle-cb () (format t "~&Execute main-idle-cb in level ~A.~%" (gtk-main-level)) ;; Quit the main loop. (gtk-main-quit) ;; Remove the idle source. +g-source-remove+) | See also |
2020-8-22