factor/basis/tools/test/ui/ui.factor

17 lines
495 B
Factor
Raw Normal View History

2007-11-16 01:19:13 -05:00
USING: dlists ui.gadgets kernel ui namespaces io.streams.string
2007-11-23 16:24:57 -05:00
io ;
2007-11-16 01:19:13 -05:00
IN: tools.test.ui
! We can't print to output-stream here because that might be a pane
2007-11-16 01:19:13 -05:00
! stream, and our graft-queue rebinding here would be captured
! by code adding children to the pane...
: with-grafted-gadget ( gadget quot -- )
[
<dlist> \ graft-queue [
over
graft notify-queued
2008-05-22 16:45:30 -04:00
dip
2007-11-16 01:19:13 -05:00
ungraft notify-queued
] with-variable
] with-string-writer print ;