CLIM mail archive
[Prev][Next][Index][Thread]
presenting...
Date: Mon, 23 Nov 1992 10:28 EST
From: Clinton Hyde <chyde@chesapeake.ads.com>
is there a way to 'lock' a window to prevent scrolling while I do a
bunch of drawing? I have some things (one in particular) which takes a
while to draw all of it, and does a bunch of scrolling. I'd like it
not to scroll, as that is likely to be confusing to our customers...
Look up END-OF-PAGE-ACTION and END-OF-LINE-ACTION in the doc. You can
set them dynamically, and also initialize their starting value. My
guess is that you want something like
(define-application-frame blah ()
()
(:panes ((display :application
:display-function 'draw-whatever-i-want
:display-after-commands nil
:end-of-page-action :allow
:end-of-line-action :allow)
...))
...)
0,,
References:
Main Index |
Thread Index