copying all the width and heights

This commit is contained in:
Danny Yoo 2012-06-24 19:41:39 -04:00
parent fa36b9c3c5
commit 3fe5288dd1
2 changed files with 18 additions and 4 deletions

View File

@ -18,7 +18,7 @@
;; add-fresh-box: world view -> world
;; Given a world, creates a new world within the boundaries of the playground.
(define (add-fresh-box w v)
(define-values (max-width max-height) (width-and-height "playground"))
(define-values (max-width max-height) (width-and-height v "playground"))
(define new-world (cons (make-box (fresh-id)
(random max-width)
(random max-height))
@ -29,8 +29,11 @@
;; FIXME: do some javascript stuff here to get at this.
;;
(define (width-and-height element-id)
(values 500 500))
(define (width-and-height v element-id)
(define focused (view-focus v element-id))
(printf "width is: ~s\n" (view-width focused))
(values (view-width focused)
(view-height focused)))
(define (draw w v)

View File

@ -75,10 +75,21 @@
var theClone = $(dom).clone(true).get(0);
var sourceSelects = $(dom).find("select");
var destSelects = $(theClone).find("select");
var i;
var i, w;
for (i = 0; i < sourceSelects.length; ++i) {
$(destSelects[i]).val($(sourceSelects[i]).val());
}
var allSrcElts = $(dom).find("*");
var allDestElts = $(theClone).find("*");
for (i = 0; i < allSrcElts.length; i++) {
w = $(allSrcElts[i]).width();
if (w) {
$(allDestElts[i]).width(w);
$(allDestElts[i]).height($(allSrcElts[i]).height());
}
}
return theClone;
};