vote up 14 vote down star
1

Are there any good, cross platform (SBCL and CLISP at the very least) easy to install GUI libraries?

flag

4 Answers

vote up 8 vote down check

Ltk is quite popular, very portable, and reasonably well documented through the Tk docs. Installation on SBCL is as easy as saying:

(require :asdf-install)
(asdf-install:install :ltk)

There's also Cells-Gtk, which is reported to be quite usable but may have a slightly steeper learning curve because of its reliance on Cells.

EDIT: Note that ASDF-INSTALL is integrated this well with SBCL only. Installing libraries from within other Lisp implementations may prove harder. (Personally, I always install my libraries from within SBCL and then use them from all implementations.) Sorry about any confusion this may have caused.

link|flag
It turned out to not really be a problem, just had to manually compile and load LTK, and then made me a new image, from then onwards its all gone smoothly. Thanks for the pointer. – dsm Sep 21 '08 at 12:19
vote up 4 vote down

clg is a binding of GTK for Common Lisp. Both complete and lispish.

If you want to design graphical interfaces in CL, you might want to take a look at CLIM, too, which some kind of standard API for GUIs. Allegro and Lispworks have their own implementation of it, and there's a free software one, McCLIM.

link|flag
vote up 2 vote down

Also, just found a Smoke library QT bindings, called CommonQt for CL

link|flag
vote up 1 vote down

There's also wxCL, providing CFFI bindings for wxWidgets.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.