diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2009-06-23 17:38:51 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2009-06-23 17:38:51 +0000 |
commit | e417ac92fd0dce5b539edd22768c0a56dfa0e5d3 (patch) | |
tree | f02fcb03e4bf953fcd5560071ab139b31e64fbed /src | |
parent | b024c0a1197b973f3b0b50e4945d75e8f81332f7 (diff) |
more and fixed docs
svn path=/trunk/externals/iem/iemguts/; revision=11814
Diffstat (limited to 'src')
-rw-r--r-- | src/receivecanvas.c | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/src/receivecanvas.c b/src/receivecanvas.c index 26ed5a6..b545e78 100644 --- a/src/receivecanvas.c +++ b/src/receivecanvas.c @@ -3,9 +3,9 @@ * * receivecanvas - implementation file * - * copyleft (c) IOhannes m zmölnig + * copyleft (c) 2009, IOhannes m zmölnig * - * 2007:forum::für::umläute:2007 + * forum::für::umläute * * institute of electronic music and acoustics (iem) * @@ -17,10 +17,17 @@ /* - * this object provides a way to send messages to upstream canvases - * by default it sends messages to the containing canvas, but you can give the - * "depth" as argument; - * e.g. [receivecanvas 1] will send messages to the parent of the containing canvas + * this object provides a way to receive messages to upstream canvases + * by default it receives messages to the containing canvas, but you can give the "depth" as argument; + * e.g. [receivecanvas 1] will receive messages to the parent of the containing canvas + */ + +/* NOTES: + * it would be _really_ nice to get all the messages that are somehow "sent" to a (parent) object, + * no matter whether using typedmess() or using sendcanvas() + * this would require (however) to overwrite and proxy the classmethods for canvas which is a chore + * + * currently this objects only gets the messages from typedmess()... */ #include "m_pd.h" @@ -28,9 +35,6 @@ #include <stdio.h> - -int glist_getindex(t_glist *x, t_gobj *y); - /* ------------------------- receivecanvas ---------------------------- */ static t_class *receivecanvas_class; |