From 7541b9f1ba232dce4aceb41115c17292bd7298f4 Mon Sep 17 00:00:00 2001 From: Thomas O Fredericks Date: Mon, 26 Oct 2009 20:32:27 +0000 Subject: Delocalized param svn path=/trunk/externals/tof/; revision=12679 --- src/paramGui.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'src/paramGui.h') diff --git a/src/paramGui.h b/src/paramGui.h index 0a6e918..ecac8f1 100644 --- a/src/paramGui.h +++ b/src/paramGui.h @@ -31,6 +31,7 @@ typedef struct _paramGui t_symbol* s_symbolatom; t_symbol* s_sym; t_symbol* s_text; + t_symbol* s_cnv; //t_symbol* target; //t_class* empty_s; @@ -49,10 +50,33 @@ static void paramGui_bang(t_paramGui *x) { // Clear the canvas pd_typedmess((t_pd*)x->childcanvas,x->s_clear,0,NULL); + + int pos_x = 0; int pos_y = 0; t_atom atoms[22]; // This should be the maximum number of atoms + // PINK HEADER + SETSYMBOL(&atoms[0],x->s_obj); + SETFLOAT(&atoms[1],pos_x); + SETFLOAT(&atoms[2],pos_y); + SETSYMBOL(&atoms[3],x->s_cnv); + SETFLOAT(&atoms[4],15); + SETFLOAT(&atoms[5],200); + SETFLOAT(&atoms[6],20); + SETSYMBOL(&atoms[7],x->s_empty); + SETSYMBOL(&atoms[8],x->s_empty); + SETSYMBOL(&atoms[9],x->path); + SETFLOAT(&atoms[10],2); + SETFLOAT(&atoms[11],12); + SETFLOAT(&atoms[12],0); + SETFLOAT(&atoms[13],8); + SETFLOAT(&atoms[14],-258401); + SETFLOAT(&atoms[15],-262144); + SETFLOAT(&atoms[16],0); + pd_forwardmess((t_pd*)x->childcanvas, 17, atoms); + pos_y = pos_y + 23; + t_param* p = get_param_list(x->root); int ac; t_atom* av; @@ -71,6 +95,8 @@ static void paramGui_bang(t_paramGui *x) { t_atom* av_got; t_symbol* s_got; + + while (p) { gui_built = 1; if (p->GUI && (strncmp(p->path->s_name,x->path->s_name,x->path_l)==0)) { @@ -103,6 +129,9 @@ static void paramGui_bang(t_paramGui *x) { shortpath = gensym(p->path->s_name + x->path_l); } + + + type = atom_getsymbol(av); if ( type == x->s_nbx ) { SETSYMBOL(&atoms[0],x->s_obj); @@ -302,6 +331,7 @@ static void *paramGui_new(t_symbol *s, int ac, t_atom *av) { x->s_symbolatom = gensym("symbolatom"); x->s_sym = gensym("sym"); x->s_text = gensym("text"); + x->s_cnv = gensym("cnv"); -- cgit v1.2.1