Update of /cvsroot/pure-data/externals/unauthorized/scrolllist In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8368
Modified Files: CHANGES.LOG Makefile help-scrolllist.pd scrolllist.c Log Message: fixed coordinates for GOP
Index: CHANGES.LOG =================================================================== RCS file: /cvsroot/pure-data/externals/unauthorized/scrolllist/CHANGES.LOG,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CHANGES.LOG 19 Nov 2005 03:44:29 -0000 1.1 --- CHANGES.LOG 26 Jul 2006 16:56:58 -0000 1.2 *************** *** 1,2 **** --- 1,4 ---- + 0.2 + fixed coordinates for GOP support 0.1 initial version
Index: help-scrolllist.pd =================================================================== RCS file: /cvsroot/pure-data/externals/unauthorized/scrolllist/help-scrolllist.pd,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** help-scrolllist.pd 19 Nov 2005 03:44:29 -0000 1.1 --- help-scrolllist.pd 26 Jul 2006 16:56:58 -0000 1.2 *************** *** 51,59 **** #X obj 527 269 l2s; #X msg 525 236 add $1; ! #X obj 748 216 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 0 1; #X obj 747 237 metro 1000; ! #X obj 35 222 scrolllist 25 400 200 {Helvetica 12 normal} black green ! #904562; #X text 470 343 the mouse in the text area; #X msg 33 57 clear; --- 51,59 ---- #X obj 527 269 l2s; #X msg 525 236 add $1; ! #X obj 748 216 tgl 15 0 empty empty empty 0 -6 0 8 -262144 -1 -1 1 1; #X obj 747 237 metro 1000; ! #X obj 35 222 scrolllist 25 400 200 {Courier 12 bold} black green #904562 ! ; #X text 470 343 the mouse in the text area; #X msg 33 57 clear;
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/externals/unauthorized/scrolllist/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile 19 Nov 2005 03:44:29 -0000 1.1 --- Makefile 26 Jul 2006 16:56:58 -0000 1.2 *************** *** 30,34 **** LINUXCFLAGS = -DPD -DUNIX -O2 -funroll-loops -fomit-frame-pointer \ -Wall -W -Wno-shadow -Wstrict-prototypes \ ! -Wno-unused -Wno-parentheses -Wno-switch -Werror -g
.c.pd_linux: --- 30,34 ---- LINUXCFLAGS = -DPD -DUNIX -O2 -funroll-loops -fomit-frame-pointer \ -Wall -W -Wno-shadow -Wstrict-prototypes \ ! -Wno-unused -Wno-parentheses -Wno-switch -g
.c.pd_linux:
Index: scrolllist.c =================================================================== RCS file: /cvsroot/pure-data/externals/unauthorized/scrolllist/scrolllist.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** scrolllist.c 18 Dec 2005 18:55:09 -0000 1.4 --- scrolllist.c 26 Jul 2006 16:56:58 -0000 1.5 *************** *** 42,48 **** #include "t_tk.h"
! #ifdef _WIN32 #include <io.h> - #include <pthread.h> #else #include <unistd.h> --- 42,47 ---- #include "t_tk.h"
! #ifdef NT #include <io.h> #else #include <unistd.h> *************** *** 56,60 **** static int guidebug=0;
! static char *scrolllist_version = "scrolllist: scrolling list of text items : version 0.1, written by Yves Degoyon (ydegoyon@free.fr)";
#define MIN(a,b) (a>b?b:a) --- 55,59 ---- static int guidebug=0;
! static char *scrolllist_version = "scrolllist: scrolling list of text items : version 0.2, written by Yves Degoyon (ydegoyon@free.fr)";
#define MIN(a,b) (a>b?b:a) *************** *** 281,285 **** // post( "saving scrolllist : %d", x->x_capacity ); binbuf_addv(b, "ssiisiiissss", gensym("#X"), gensym("obj"), ! (t_int)text_xpix(&x->x_obj, x->x_glist), (t_int)text_ypix(&x->x_obj, x->x_glist), gensym("scrolllist"), x->x_capacity, x->x_width, x->x_height, gensym(x->x_font), gensym(x->x_bgcolor), --- 280,284 ---- // post( "saving scrolllist : %d", x->x_capacity ); binbuf_addv(b, "ssiisiiissss", gensym("#X"), gensym("obj"), ! (t_int)x->x_obj.te_xpix, (t_int)x->x_obj.te_ypix, gensym("scrolllist"), x->x_capacity, x->x_width, x->x_height, gensym(x->x_font), gensym(x->x_bgcolor),