<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'><span dir="ltr">Hi,<br><br>with-ltk plus :serve-event t is good for when you have a program that you want to be able to run at the same time as the repl, or other ltk programs. But you should generally have at least the widgets for the initial frame prepared and debugged. The with-ltk starts a new Tk process, and anything in the body can "see" that main window -- any event callbacks will also see the Tcl/Tk process, as well.<br><br>If you're at an even earlier stage in development, which it sounds like you are, you can just install a serve-event ltk directly into your repl:<br><br>* (start-wish)<br>* (mainloop :serve-event t)<br><br>Now anything you type in the repl will "see" your running Tk gui. So you can do stuff like:<br><br>* (make-instance 'label :text "hello, tk")<br>* (setf >>label *)<br>* (pack >>label)<br><br>-Thomas <br><br>(Apologies if anyone sees this twice. I sent it with the wrong From line the first time, and it bounced from the list)<br></span><br> <BR><div><div id="SkyDrivePlaceholder"></div>> Date: Mon, 19 Nov 2012 18:10:40 +0100<br>> From: jw@raven.inka.de<br>> To: ltk-user@common-lisp.net<br>> Subject: [ltk-user] Increamentally build the GUI?<br>> <br>> Hello everybody,<br>> <br>> I am trying to build my tk GUI incrementally. The SERVE-EVENT parameter seems<br>> to suggest that something like the following should be possible:<br>> <br>>   (defvar *frame*)<br>>   (defvar *label-widget*)<br>>   <br>>   (with-ltk (:serve-event t)<br>>     (setf *frame* (make-instance 'frame))<br>>     (pack *frame*))<br>>   <br>>   (with-ltk (:serve-event t)<br>>     (setf *label-widget* (make-instance<br>>                           'label<br>>                           :master *frame*<br>>                           :text "initial text"))<br>>     (pack *label-widget* :side :left))<br>>   <br>>   (with-ltk ()<br>>      ;; All initializations are already done, we just need to enter MAINLOOP<br>>      )<br>> <br>> But instead of a single toplevel containing both, the frame and the label, I<br>> get two separate toplevels. And none of those toplevels seem to contain the<br>> label widget. The output of the ps command shows, that two separate WISH<br>> processes are started, which obviously is not going to work.<br>> <br>> Does anybody have an example of how to properly use the SERVE-EVENT parameter?<br>> <br>> _______________________________________________<br>> ltk-user site list<br>> ltk-user@common-lisp.net<br>> http://common-lisp.net/mailman/listinfo/ltk-user<br></div>                                          </div></body>
</html>