Next Prev Up Top Contents Index

9.5 Running a CLIM Application

You can run a CLIM application using the functions make-application-frame and run-frame-top-level . Here is a code fragment that illustrates this technique:

(clim:run-frame-top-level 
 (clim:make-application-frame 
  'frame-name))  

run-frame-top-level will not return until the application exits.

Note that *application-frame* is not bound until run-frame-top-level is invoked.

For more information, see F.2, Functions for Operating on Windows Directly


CommonLisp Interface Manager 2.0 User's Guide - 8 Aug 2003

Next Prev Up Top Contents Index