factor/library/ui/presentations.factor

17 lines
507 B
Factor
Raw Normal View History

! Copyright (C) 2005 Slava Pestov.
! See http://factor.sf.net/license.txt for BSD license.
IN: gadgets
2005-06-28 23:50:23 -04:00
USING: hashtables io kernel lists namespaces parser prettyprint
sequences ;
: actions-menu ( -- )
2005-06-28 23:50:23 -04:00
"actions" get [ uncons [ eval ] append cons ] map
<menu> show-menu ;
: init-actions ( gadget -- )
[ "actions" get actions-menu ] button-gestures ;
: <styled-label> ( style text -- label )
<label> "actions" pick assoc [ dup init-actions ] when
swap alist>hash over set-gadget-paint ;