[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
frustration: dialog-tables, views
- To: info-macl@cambridge.apple.com
- Subject: frustration: dialog-tables, views
- From: "Tom McDougal" <mcdougal@gargoyle.uchicago.edu>
- Date: Wed, 25 Jul 90 09:55:11 199
Is there a known bug w/ dialog-tables in MACL 1.3.1? I can't
seem to get them the right size. They are usually too small,
sometimes so small as to be nonexistent. I have also been
unable to get horizontal tables. If someone has any small
chunks of sample code he can send me...
I have also been frustrated by views. I would have thought
that graphics commands would be defined directly for views,
such as
(ask my-view
(move-to #@(50 50))
(line #@(10 0)) ...)
Instead I get "undefined function move-to". My kludge looks
something like this:
(ask view
(let ((pos (view-position)))
(ask (window)
(move-to (add-points pos #@(50 50)))
...)))
Ugly, isn't it?