From 7df6e58f7e461917d57ebf54b114bb69f6677c08 Mon Sep 17 00:00:00 2001 From: Eduardo Cavazos Date: Mon, 14 Jul 2008 20:03:02 -0500 Subject: [PATCH] ui.gadgets.packs: remove make-pile --- extra/ui/gadgets/packs/packs-docs.factor | 6 ------ extra/ui/gadgets/packs/packs.factor | 3 --- 2 files changed, 9 deletions(-) diff --git a/extra/ui/gadgets/packs/packs-docs.factor b/extra/ui/gadgets/packs/packs-docs.factor index 7b87e8c441..b3dcf736e0 100755 --- a/extra/ui/gadgets/packs/packs-docs.factor +++ b/extra/ui/gadgets/packs/packs-docs.factor @@ -10,7 +10,6 @@ ARTICLE: "ui-pack-layout" "Pack layouts" { $subsection } { $subsection } "Creating packs using a combinator:" -{ $subsection make-pile } { $subsection make-filled-pile } { $subsection make-shelf } @@ -24,7 +23,6 @@ HELP: pack { $link } { $link } { $link } - { $link make-pile } { $link make-filled-pile } { $link make-shelf } } @@ -64,10 +62,6 @@ HELP: pack-pref-dim "This word is useful if you are writing your own layout gadget which inherits from " { $link pack } ". This allows you to reuse layout logic while computing gadget sizes using a custom procedure." } ; -HELP: make-pile -{ $values { "quot" quotation } { "pack" "a new " { $link pack } } } -{ $description "Creates a new " { $link pack } " which lays out a sequence of gadgets vertically. The quotation can add children by calling the gadget, word." } ; - HELP: make-filled-pile { $values { "quot" quotation } { "pack" "a new " { $link pack } } } { $description "Creates a new " { $link pack } " which lays out a sequence of gadgets vertically, such that all gadgets have the same width. The quotation can add children by calling the gadget, word." } ; diff --git a/extra/ui/gadgets/packs/packs.factor b/extra/ui/gadgets/packs/packs.factor index 7ae222c279..bc07deb55d 100755 --- a/extra/ui/gadgets/packs/packs.factor +++ b/extra/ui/gadgets/packs/packs.factor @@ -61,9 +61,6 @@ M: pack children-on ( rect gadget -- seq ) dup gadget-orientation swap gadget-children [ fast-children-on ] keep ; -: make-pile ( quot -- pack ) - swap make-gadget ; inline - : make-filled-pile ( quot -- pack ) swap make-gadget ; inline