Package: gtk
Function gtk:main
Lambda Listgtk:main () Details Runs the main loop until the gtk:main-quit function is called. You can nest calls to the gtk:main function. In that case the gtk:main-quit function will make the innermost invocation of the main
loop return. Lisp ImplementationExamples(defun idle-cb () (format t "~&Execute IDLE-CB level ~a~%" (gtk:main-level)) ;; Quit the main loop (gtk:main-quit) ;; Remove the idle source glib:+source-remove+) | See also |
2024-6-29