13

I was searching for a good Qt + Lisp implementation on the internet and couldn't find any. Most projects were closed down or so.

Does anybody know of a good Common Lisp + Qt integration?

Thanks in advance.

Daniel Higueras
  • 2,404
  • 22
  • 34

2 Answers2

13

CommonQT

http://common-lisp.net/project/commonqt/

is a binding that may be able to help you.

Brandon Frohbieter
  • 17,563
  • 3
  • 40
  • 62
  • Take a look at Shinmera's Qtools which builds builds on top of CommonQT - https://github.com/Shinmera/qtools (or docs https://shinmera.github.io/qtools/). It provides very useful abstractions, allows you to build self-contained executables easily and still lets you use the bare CommonQT/Smoke stack if you want, so it's a win-win situation. – Alberto Nov 03 '21 at 08:18
10

In addition to CommonQt, http://password-taxi.at/EQL is the page for Embedded Qt Lisp, a project that uses ECL to drive CL. I haven't tried it, but it seems interesting.

Xach
  • 11,774
  • 37
  • 38
  • 3
    IMHO this si by far the nicest Qt for any lisp. Too bad it is ECL specific and thus not portable to other CL implementations – Marko Mar 04 '11 at 10:47