Update of /cvsroot/pure-data/externals/miXed/toxy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11709/toxy
Modified Files: Makefile build_counter widget.c widgettype.c Log Message: toxy alpha8
Index: widgettype.c =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/toxy/widgettype.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** widgettype.c 10 Mar 2004 10:55:57 -0000 1.5 --- widgettype.c 16 Mar 2004 12:13:54 -0000 1.6 *************** *** 3,8 **** * WARRANTIES, see the file, "LICENSE.txt," in this distribution. */
- /* FIXME .#iprops crash */ - #include <stdio.h> #include <string.h> --- 3,6 ----
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/toxy/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Makefile 10 Mar 2004 10:55:56 -0000 1.4 --- Makefile 16 Mar 2004 12:13:54 -0000 1.5 *************** *** 1,4 **** ROOT_DIR = .. ! WIQFILE = setup.wiq redefault: checkwiq $(WIQFILE) default checkwiq: --- 1,5 ---- ROOT_DIR = .. ! WIDPATH = $(ROOT_DIR)/test/toxy/setup.wid ! WIQFILE = $(notdir $(WIDPATH:.wid=.wiq)) redefault: checkwiq $(WIQFILE) default checkwiq: *************** *** 6,12 **** echo ERROR: empty file $(WIQFILE)... removed ; \ rm -f $(WIQFILE) ; fi ! $(WIQFILE): $(ROOT_DIR)/test/toxy/$(WIQFILE:.wiq=.wid) ! $(ROOT_DIR)/quoteinitializer $< \ ! '"puts stderr [concat loading built-in widget definitions]\n"' > $@ @if [ -f $(WIQFILE) ] && ! [ -s $(WIQFILE) ] ; then \ echo ERROR: quoteinitializer failed... $(WIQFILE) removed ; \ --- 7,18 ---- echo ERROR: empty file $(WIQFILE)... removed ; \ rm -f $(WIQFILE) ; fi ! $(WIQFILE): $(WIDPATH) ! @echo transferring widget definitions from "$<" to "$@" ! @cat $< | sed \ ! -e '1i// Do not edit this file (edit "$<", and run "make").' \ ! -e '1i//' \ ! -e '1i"puts stderr [concat loading built-in widget definitions]\n"' \ ! -e 's/([\"])/\\1/g' \ ! -e 's/^.*$$/"&\n"/' > $@ @if [ -f $(WIQFILE) ] && ! [ -s $(WIQFILE) ] ; then \ echo ERROR: quoteinitializer failed... $(WIQFILE) removed ; \
Index: build_counter =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/toxy/build_counter,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** build_counter 10 Mar 2004 10:55:57 -0000 1.6 --- build_counter 16 Mar 2004 12:13:54 -0000 1.7 *************** *** 1,3 **** #define TOXY_VERSION "0.1" #define TOXY_RELEASE "alpha" ! #define TOXY_BUILD 7 --- 1,3 ---- #define TOXY_VERSION "0.1" #define TOXY_RELEASE "alpha" ! #define TOXY_BUILD 8
Index: widget.c =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/toxy/widget.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** widget.c 10 Mar 2004 10:55:57 -0000 1.7 --- widget.c 16 Mar 2004 12:13:54 -0000 1.8 *************** *** 240,243 **** --- 240,244 ---- }
+ /* LATER handle subitems */ static void widget_select(t_gobj *z, t_glist *glist, int flag) { *************** *** 314,318 **** static void widget_getconfig(t_widget *x) { ! sys_vgui("::toxy::itemgetconfig %s %s\n", widget_getmypathname(x, x->x_glist)->s_name, x->x_cbtarget->s_name); --- 315,319 ---- static void widget_getconfig(t_widget *x) { ! sys_vgui("::toxy::item_getconfig %s %s\n", widget_getmypathname(x, x->x_glist)->s_name, x->x_cbtarget->s_name); *************** *** 335,339 **** widget_pushoptions(x, 0); widget_pushinits(x); ! sys_vgui("::toxy::itemvis %s %s %s %s %s %s %g %g\n", x->x_tkclass->s_name, mypathname, x->x_cbtarget->s_name, x->x_name->s_name, --- 336,340 ---- widget_pushoptions(x, 0); widget_pushinits(x); ! sys_vgui("::toxy::item_vis %s %s %s %s %s %s %g %g\n", x->x_tkclass->s_name, mypathname, x->x_cbtarget->s_name, x->x_name->s_name, *************** *** 432,436 **** static void widget_novis(t_widget *x) { ! sys_vgui("::toxy::itemdestroy %s %s\n", widget_getmypathname(x, x->x_glist)->s_name, x->x_varname->s_name); } --- 433,437 ---- static void widget_novis(t_widget *x) { ! sys_vgui("::toxy::item_destroy %s %s\n", widget_getmypathname(x, x->x_glist)->s_name, x->x_varname->s_name); } *************** *** 707,710 **** --- 708,712 ---- }
+ /* LATER handle subitems */ static void widget__config(t_widget *x, t_symbol *target, t_symbol *bg, t_floatarg fw, t_floatarg fh, t_floatarg fst) *************** *** 752,755 **** --- 754,758 ----
/* see also widget_select() */ + /* LATER handle subitems */ static void widget__inout(t_widget *x, t_floatarg f) {