From 2a26670099d5f191e39d2939ae77ec6e4b6937a5 Mon Sep 17 00:00:00 2001 From: Sam Anklesaria Date: Sun, 21 Jun 2009 21:08:50 -0500 Subject: [PATCH] image buttons built in --- extra/recipes/recipes.factor | 1 - extra/ui/frp/gadgets/gadgets.factor | 14 +++++++++----- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/extra/recipes/recipes.factor b/extra/recipes/recipes.factor index 125f187e7f..89c0eab393 100644 --- a/extra/recipes/recipes.factor +++ b/extra/recipes/recipes.factor @@ -11,7 +11,6 @@ STORED-TUPLE: recipe { title { VARCHAR 100 } } { votes INTEGER } { txt TEXT } { : top-recipes ( offset search -- recipes ) T{ recipe } rot >>title >>tuple "votes" >>order 30 >>limit swap >>offset get-tuples ; : top-genres ( -- genres ) f f top-recipes [ genre>> ] map prune 4 (head-slice) ; -: ( str -- button ) "vocab:recipes/icons/" ".tiff" surround ; : interface ( -- book ) [ [ diff --git a/extra/ui/frp/gadgets/gadgets.factor b/extra/ui/frp/gadgets/gadgets.factor index 15b1aa4c30..b865170193 100644 --- a/extra/ui/frp/gadgets/gadgets.factor +++ b/extra/ui/frp/gadgets/gadgets.factor @@ -1,9 +1,9 @@ -USING: accessors arrays kernel models monads ui.frp.signals ui.gadgets -ui.gadgets.buttons ui.gadgets.buttons.private ui.gadgets.editors -ui.gadgets.tables sequences splitting ui.gadgets.labels -ui.gadgets.scrollers ui.gadgets.borders ; +USING: accessors arrays kernel models monads +sequences ui.frp.signals ui.gadgets ui.gadgets.borders +ui.gadgets.buttons ui.gadgets.buttons.private +ui.gadgets.editors ui.gadgets.labels ui.gadgets.scrollers +ui.gadgets.tables ui.images vocabs.parser ; IN: ui.frp.gadgets - TUPLE: frp-button < button hook value ; : ( gadget -- button ) [ [ dup hook>> [ call( button -- ) ] [ drop ] if* ] @@ -54,6 +54,10 @@ M: frp-field model-changed 2dup frp-model>> = : ( -- field ) f dup [ set-control-value ] curry >>quot f >>model ; +: image-button ( filename path -- button ) ".tiff" surround ; +SYNTAX: current-vocab name>> "vocab:" "/icons/" surround + [ image-button ] curry over push-all ; + GENERIC: output-model ( gadget -- model ) M: gadget output-model model>> ; M: table output-model dup multiple-selection?>>