[comp.windows.x] Moving windows in CLX??

whaley@june.cs.washington.edu (Ken Whaley) (01/24/89)

What is the syntax in CLX for changing the drawable-x and drawable-y
of a window in the same server request?  I want to move a window diagonally,
without "staircasing."  It seems that (with-state) might do what I want
(i.e., put all changes into one request buffer) but I can't figure out exactly
what it wants in terms of arguments.

Also, what is the status of documentation for CLX?  Will there be any soon?

		Thanks,

		Ken


-- 
whaley@june.cs.washington.edu

rws@EXPO.LCS.MIT.EDU (Bob Scheifler) (01/28/89)

    What is the syntax in CLX for changing the drawable-x and drawable-y
    of a window in the same server request?

(with-state (win)
    (setf (drawable-x win) new-x
	  (drawable-y win) new-y))