From 1aca6455dea231cb1cc0ef8f0395a70584e210b0 Mon Sep 17 00:00:00 2001 From: Sam Anklesaria Date: Sun, 7 Jun 2009 18:42:20 -0500 Subject: [PATCH] frp templating sizes bug fixed --- extra/persistency/persistency.factor | 3 ++- extra/ui/frp/layout/layout.factor | 7 ++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/extra/persistency/persistency.factor b/extra/persistency/persistency.factor index 683318f98b..d8bf0e9806 100644 --- a/extra/persistency/persistency.factor +++ b/extra/persistency/persistency.factor @@ -28,7 +28,8 @@ SYNTAX: STORED-TUPLE: parse-tuple-definition [ drop persistent ] dip [ define-tu : define-db ( database class -- ) swap [ [ recreate-table ] with-db ] [ "database" set-word-prop ] 2bi ; -: w/db ( query quot -- ) [ dup class "database" word-prop ] dip with-db ; inline +: query>tuple ( tuple/query -- tuple ) dup query? [ tuple>> ] when ; +: w/db ( query quot -- ) [ dup query>tuple class "database" word-prop ] dip with-db ; inline : get-tuples ( query -- tuples ) [ select-tuples ] w/db ; : get-tuple ( query -- tuple ) [ select-tuple ] w/db ; : store-tuple ( tuple -- ) [ insert-tuple ] w/db ; diff --git a/extra/ui/frp/layout/layout.factor b/extra/ui/frp/layout/layout.factor index a4f0b09409..b5893c7aa3 100644 --- a/extra/ui/frp/layout/layout.factor +++ b/extra/ui/frp/layout/layout.factor @@ -34,16 +34,19 @@ SYMBOL: wordnames : ( quot: ( -- model ) -- book ) f make-layout roll dup activate-model handle-words swap [ no-models ] unless-empty ; inline +: ( quot -- book ) f make-layout f handle-words + swap [ no-models ] unless-empty ; inline SYNTAX: $ CREATE-WORD dup [ , ] curry (( -- )) define-declared "$" expect word [ [ building get length swap wordnames get set-at ] [ , ] bi ] curry over push-all ; : insert-gadget ( number parent gadget -- ) -rot [ but-last insert-nth ] change-children drop ; +: insert-size ( number parent size -- ) -rot [ but-last insert-nth ] change-sizes drop ; GENERIC# insert-item 1 ( item location -- ) M: gadget insert-item dup first book? [ first2 spin [ add-gadget ] keep insert-gadget ] [ [ f ] dip insert-item ] if ; -M: layout insert-item first2 spin [ insert-layout ] keep gadget>> insert-gadget ; +M: layout insert-item first2 spin [ insert-layout ] keep [ gadget>> insert-gadget ] [ size>> insert-size ] 3bi ; M: model insert-item dup first book? [ no-models ] [ first model>> swap add-connection ] if ; @@ -54,3 +57,5 @@ M: model insert-item dup first book? [ no-models ] : with-interface ( quot: ( -- gadget ) -- gadget ) H{ } clone wordnames [ { } make insert-items ] with-variable ; inline + +! while children are changed, sizes aren't \ No newline at end of file