From: Peter Herth
Subject: Ltk 0.8786 released
Date: 
Message-ID: <dctptl$uus$02$1@news.t-online.com>
Hi,

I just uploaded the newest release of Ltk. Besides many fixes,
it brings a convenience macro with-widgets, which can be used like:

  (with-ltk ()
     (with-widgets
	(toplevel top-frame :title "with-widgets-test"
		  (label lb1 :text "Test, Test!" :pack '(:side :top))
		  (entry en1 :pack '(:side :top))
		  (frame fr1 :pack '(:side :bottom)
			 (button bt1 :text "OK" :pack '(:side :right)
				 :command (lambda ()
                                            (format t "Pressed OK~%")))
			 (button bt2 :text "CANCEL" :pack '(:side :left)
				 :command (lambda ()
                                            (withdraw top-frame)))))))

Peter

-- 
pet project: http://dawn.netcologne.de
homepage:    http://www.peter-herth.de
lisp stuff:  http://www.peter-herth.de/lisp.html
get Ltk here: http://www.peter-herth.de/ltk/