Common Lisp bindings for the Tk GUI toolkit

Dmitri Goutnik 433a145f3d - take first column title from :column-labels in setup-columns; add support for :anchors пре 2 година
src 433a145f3d - take first column title from :column-labels in setup-columns; add support for :anchors пре 2 година
Changelog 477b42dfc6 - removed email from changelog. пре 5 година
NEWS.org 1e2f1d2697 - added NEWS.org пре 4 година
README.org b3754aae79 - added function to eval an external TCL script for a file. пре 4 година
README.txt 87a67a8af2 - removed note from README. пре 3 година
TODO.org aa667f0286 - updated changelog and TODO. пре 5 година
nodgui.asd bc305c1e49 - added :class and :title args to 'with-nodgui'. пре 3 година

README.org

NODGUI

"No Drama GUI"

Common Lisp bindings for the Tk GUI toolkit.

Dependency

Programs

  • TCL/TK interpreter (version >= 8.6)
  • https://www.tcl.tk

Lisp libraries

  • alexandria;
  • cl-ppcre-unicode;
  • cl-lex;
  • cl-yacc;
  • clunit2;
  • cl-colors2;
  • named-readtables.

All of the above libraries are available on quicklisp.

TCL/TK libraries (optional)

  • TKlib
  • https://core.tcl-lang.org/tklib/home

Installing

  1. install the tk interpreter (example on a Debian system follows)
  2. #+BEGIN_SRC sh # apt-get install tk #+END_SRC
  1. optionally install tklib
  2. #+BEGIN_SRC sh # apt-get install tklib #+END_SRC
  1. open a REPL and type
  2. #+BEGIN_SRC lisp (ql:quickload "nodgui") #+END_SRC
  1. try it!
  2. #+BEGIN_SRC lisp (nodgui.demo::demo) #+END_SRC

Documentation

please follow this link for documentation and news.

License

This software is Copyright (c) 2003-2010 Peter Herth Portions Copyright (c) 2005-2010 Thomas F. Burdick Portions Copyright (c) 2006-2010 Cadence Design Systems Portions Copyright (c) 2010 Daniel Herring Portions Copyright (c) 2018,2019,2020 cage

The authors grant you the rights to distribute and use this software as governed by the terms of the Lisp Lesser GNU Public License (http://opensource.franz.com/preamble.html), known as the LLGPL.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.