From 04cbc2cee362fda043c41713b352ed971059d6fd Mon Sep 17 00:00:00 2001 From: Eduardo Cavazos Date: Mon, 14 Jul 2008 16:48:02 -0500 Subject: [PATCH] ui.tools.profiler: rewrite --- extra/ui/tools/profiler/profiler.factor | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/extra/ui/tools/profiler/profiler.factor b/extra/ui/tools/profiler/profiler.factor index eca93cd8e1..9d25361e5e 100755 --- a/extra/ui/tools/profiler/profiler.factor +++ b/extra/ui/tools/profiler/profiler.factor @@ -2,19 +2,17 @@ ! See http://factorcode.org/license.txt for BSD license. USING: ui.tools.workspace kernel quotations tools.profiler ui.commands ui.gadgets ui.gadgets.panes ui.gadgets.scrollers -ui.gadgets.tracks ui.gestures ui.gadgets.buttons ; +ui.gadgets.tracks ui.gestures ui.gadgets.buttons accessors ; IN: ui.tools.profiler TUPLE: profiler-gadget < track pane ; : ( -- gadget ) - { 0 1 } profiler-gadget new-track - [ - toolbar, - g-> set-profiler-gadget-pane - 1 track, - ] make-gadget ; - + { 0 1 } profiler-gadget new-track + dup f track-add* + >>pane + dup pane>> 1 track-add* ; + : with-profiler-pane ( gadget quot -- ) >r profiler-gadget-pane r> with-pane ;