factor/library/ui/labels.factor

20 lines
544 B
Factor
Raw Normal View History

2005-02-01 22:48:04 -05:00
! Copyright (C) 2005 Slava Pestov.
! See http://factor.sf.net/license.txt for BSD license.
IN: gadgets
USING: generic kernel lists math namespaces sdl io sequences ;
2005-02-01 22:48:04 -05:00
2005-03-01 22:11:08 -05:00
! A label gadget draws a string.
TUPLE: label text ;
2005-02-01 22:48:04 -05:00
C: label ( text -- label )
<empty-gadget> over set-delegate [ set-label-text ] keep ;
2005-02-02 19:50:13 -05:00
2005-05-05 23:58:45 -04:00
: label-size ( gadget text -- w h )
>r font paint-prop r> size-string ;
M: label pref-size ( label -- w h )
dup label-text label-size ;
2005-02-01 22:48:04 -05:00
M: label draw-shape ( label -- )
2005-05-05 23:58:45 -04:00
[ label-text ] keep [ draw-string ] with-trans ;