factor/basis/ui/pens/image/image.factor

20 lines
532 B
Factor
Raw Permalink Normal View History

2009-02-12 04:58:42 -05:00
! Copyright (C) 2009 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
2015-07-28 22:14:14 -04:00
USING: accessors fry kernel math opengl sequences ui.images
ui.pens ;
2009-02-12 04:58:42 -05:00
IN: ui.pens.image
! Image pen
TUPLE: image-pen image fill? ;
: <image-pen> ( image-name -- pen ) f image-pen boa ;
2009-02-12 04:58:42 -05:00
M: image-pen draw-interior
[ dim>> ] [ [ image>> ] [ fill?>> ] bi ] bi*
[ draw-scaled-image ] [
2009-02-15 03:15:51 -05:00
[ image-dim [ - 2 /i ] 2map ] keep
2009-02-12 04:58:42 -05:00
'[ _ draw-image ] with-translation
] if ;
2009-02-14 20:50:22 -05:00
M: image-pen pen-pref-dim nip image>> image-dim ;