2009-01-06 21:55:23 -05:00
|
|
|
! Copyright (C) 2009 Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2009-01-08 19:35:34 -05:00
|
|
|
USING: accessors assocs classes classes.mixin kernel namespaces
|
2009-01-08 19:56:39 -05:00
|
|
|
parser ui.gadgets ui.gadgets.scrollers ui.gadgets.tracks ;
|
2009-01-06 21:55:23 -05:00
|
|
|
IN: ui.tools.common
|
|
|
|
|
2009-01-08 19:35:34 -05:00
|
|
|
SYMBOL: tool-dims
|
|
|
|
|
|
|
|
tool-dims global [ H{ } clone or ] change-at
|
|
|
|
|
2009-01-08 19:56:39 -05:00
|
|
|
TUPLE: tool < track ;
|
2009-01-08 19:35:34 -05:00
|
|
|
|
|
|
|
M: tool pref-dim*
|
|
|
|
class tool-dims get at ;
|
|
|
|
|
|
|
|
M: tool layout*
|
|
|
|
[ call-next-method ]
|
|
|
|
[ [ dim>> ] [ class ] bi tool-dims get set-at ]
|
|
|
|
bi ;
|
|
|
|
|
2009-01-08 19:56:39 -05:00
|
|
|
: set-tool-dim ( dim class -- ) tool-dims get set-at ;
|
2009-01-08 19:35:34 -05:00
|
|
|
|
2009-01-07 16:21:51 -05:00
|
|
|
SLOT: scroller
|
|
|
|
|
2009-01-06 21:55:23 -05:00
|
|
|
: com-page-up ( tool -- )
|
|
|
|
scroller>> scroll-up-page ;
|
|
|
|
|
|
|
|
: com-page-down ( tool -- )
|
|
|
|
scroller>> scroll-down-page ;
|
|
|
|
|
|
|
|
: com-scroll-up ( tool -- )
|
|
|
|
scroller>> scroll-up-line ;
|
|
|
|
|
|
|
|
: com-scroll-down ( tool -- )
|
|
|
|
scroller>> scroll-down-line ;
|