2006-06-27 03:26:52 -04:00
|
|
|
! Copyright (C) 2006 Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2006-10-03 18:17:21 -04:00
|
|
|
IN: gadgets
|
|
|
|
USING: kernel models ;
|
2006-06-27 03:26:52 -04:00
|
|
|
|
2006-09-16 17:11:55 -04:00
|
|
|
TUPLE: control self model quot ;
|
2006-06-27 03:26:52 -04:00
|
|
|
|
|
|
|
C: control ( model gadget quot -- gadget )
|
2006-07-21 18:07:26 -04:00
|
|
|
dup dup set-control-self
|
2006-06-27 03:26:52 -04:00
|
|
|
[ set-control-quot ] keep
|
|
|
|
[ set-gadget-delegate ] keep
|
2006-07-21 18:07:26 -04:00
|
|
|
[ set-control-model ] keep ;
|
2006-06-27 03:26:52 -04:00
|
|
|
|
2006-10-03 18:17:21 -04:00
|
|
|
: control-value ( control -- value ) control-model model-value ;
|
|
|
|
|
2006-06-29 04:07:10 -04:00
|
|
|
M: control graft*
|
2006-10-03 18:17:21 -04:00
|
|
|
control-self dup dup control-model add-connection
|
2006-07-21 18:07:26 -04:00
|
|
|
model-changed ;
|
2006-06-27 03:26:52 -04:00
|
|
|
|
2006-06-29 04:07:10 -04:00
|
|
|
M: control ungraft*
|
2006-10-03 18:17:21 -04:00
|
|
|
control-self dup control-model remove-connection ;
|
2006-06-27 03:26:52 -04:00
|
|
|
|
2006-08-15 03:01:24 -04:00
|
|
|
M: control model-changed
|
2006-10-03 18:17:21 -04:00
|
|
|
control-self
|
|
|
|
[ control-value ] keep
|
|
|
|
[ dup control-quot call ] keep
|
|
|
|
relayout ;
|
2006-07-21 18:07:26 -04:00
|
|
|
|
2006-10-03 18:17:21 -04:00
|
|
|
: delegate>control ( gadget model underlying -- )
|
|
|
|
[ 2drop ] <control> over set-gadget-delegate
|
|
|
|
dup set-control-self ;
|