Re: EuGTK, routine_id
- Posted by irv Oct 14, 2010
- 964 views
Jerry_Story said...
I don't know whether this is a EuGTK problem or a routine_id problem.
function onMenu_Reqs(atom ctl, integer r) -- I would like to put r here. (ok ----^ there it is :) -- some code -- r is needed return(0) end function for r = 1 to length(MenuReqs) do connect(MenuReqs[r],"activate",call_back(routine_id("onMenu_Reqs"),r) -- all connect calls can pass one additional data item:--------------^ end for -- MenuReqs is a sequence of GtkCheckMenuItems. -- The length of MenuReqs is unknown, because it depends on the number of *.req files.
In the Euphoria documentation, there is no such thing as
routine_id("onMenu_Reqs", r)
So how do you do it?