<div dir="ltr">Hi Daniel (and Lucien, who replied privately):<div><br></div><div>(1) thanks for the "not dumb" comment.</div><div><br></div><div>Sorry additionally for not being clear.  The app is intended for the buttons (will eventually be checkboxes, but buttons were simpler for purposes of isolating the behavior) to be dynamic (unknown at layout time as things to be checked will come and go during program execution).</div><div><br></div><div>So while I did have some joy with making :list-panes with :items in the definition of the application frame (and it was prettier than what I sent), I had less joy changing those items programmatically.</div><div><br></div><div>When I put a "terpri" in as in the slightly revised test program as the other alternative, I get a blank line between the gadgets, which (given I am going to have a lot of items) would cause the user excess scrolling due to the whitespace between boxes.</div><div><br></div><div>-jm</div><div><br></div><div><br></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Nov 11, 2017 at 3:24 PM, Daniel Kochmański <span dir="ltr"><<a href="mailto:daniel@turtleware.eu" target="_blank">daniel@turtleware.eu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello John,<br>
<br>
question is obviously not dumb. Some cognitive problem arises from the disparity, that McCLIM provides both sheets and gadgets. If you want to lay out buttons vertically, you may either put terpri after each make-pane, or put each button in your layout (the latter is more elegant imho):<br>
<br>
-- cut --<br>
<br>
(in-package :clim-user)<br>
<br>
(defun make-gadget (item)<br>
  (make-pane 'push-button<br>
             :label item<br>
             :activate-callback<br>
             (lambda (&rest args)<br>
               (declare (ignore args))<br>
               (notify-user *application-frame* "You clicked a button"))))<br>
<br>
(define-application-frame test-gadgets ()<br>
  ()<br>
  (:panes)<br>
  (:layouts<br>
   (default (vertically ()<br>
              (make-gadget "one")<br>
              (make-gadget "two")<br>
              (make-gadget "three")<br>
              (make-gadget "four")))))<br>
<br>
<br>
(run-frame-top-level (make-application-frame 'test-gadgets))<br>
<br>
-- cut --<br>
<br>
Best regards,<br>
<br>
Daniel<div class="HOEnZb"><div class="h5"><br>
<br>
<br>
On 11.11.2017 21:07, John Morrison wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi;<br>
<br>
In another app I am writing, I BELIEVE gadgets used to come out stacked vertically.  After an upgrade (to current git), I think they come out "diagonally," in that the x & y of successive gadgets increase (presumbly by the dimensions of its preceding gadget).  Please find attached the simplest test program I could cons up that displays the behavior, along with a screenshot that shows the behavior.<br>
<br>
What is the idiomatic/best way to get them to stack vertically?  I messed about (again, mostly unsuccessfully, or I wouldn't be pestering you all) with various approaches, but every time I find myself with a complex solution, it turns out there is indeed a Better, Simpler Way.<br>
<br>
Thanks,<br>
<br>
-jm<br>
<br>
</blockquote>
<br>
</div></div></blockquote></div><br></div>