2005-06-27 16:50:21 -04:00
|
|
|
! 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 ;
|
2005-06-27 16:50:21 -04:00
|
|
|
|
2005-06-29 19:40:44 -04:00
|
|
|
DEFER: pane-eval
|
|
|
|
|
2005-06-29 00:33:07 -04:00
|
|
|
: actions-menu ( pane actions -- menu )
|
|
|
|
[ uncons rot [ pane-eval ] cons cons cons ] map-with <menu> ;
|
2005-06-27 16:50:21 -04:00
|
|
|
|
2005-06-29 00:33:07 -04:00
|
|
|
: init-actions ( gadget pane -- )
|
|
|
|
over "actions" paint-prop dup [
|
|
|
|
actions-menu [ show-menu ] cons button-gestures
|
|
|
|
] [
|
|
|
|
3drop
|
|
|
|
] ifte ;
|
2005-06-27 16:50:21 -04:00
|
|
|
|
|
|
|
: <styled-label> ( style text -- label )
|
2005-06-29 00:33:07 -04:00
|
|
|
<label> swap alist>hash over set-gadget-paint ;
|
|
|
|
|
|
|
|
: <presentation> ( style text pane -- presentation )
|
|
|
|
>r <styled-label> dup r> init-actions ;
|