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

20 lines
532 B
Factor

! Copyright (C) 2009 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
USING: accessors fry kernel math opengl sequences ui.images
ui.pens ;
IN: ui.pens.image
! Image pen
TUPLE: image-pen image fill? ;
: <image-pen> ( image-name -- pen ) f image-pen boa ;
M: image-pen draw-interior
[ dim>> ] [ [ image>> ] [ fill?>> ] bi ] bi*
[ draw-scaled-image ] [
[ image-dim [ - 2 /i ] 2map ] keep
'[ _ draw-image ] with-translation
] if ;
M: image-pen pen-pref-dim nip image>> image-dim ;