Update of /cvsroot/pure-data/externals/bbogart/popup In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26615/popup
Modified Files: README.build.txt README.txt makefile popup-help.pd popup.c Log Message: Made minor documentation changes to popup. Added entry external.
Index: popup.c =================================================================== RCS file: /cvsroot/pure-data/externals/bbogart/popup/popup.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** popup.c 10 Mar 2004 21:40:13 -0000 1.3 --- popup.c 20 Mar 2004 23:52:48 -0000 1.4 *************** *** 1,5 **** ! /* Popup menu widget for PD */ ! /* Based on button from GGEE by Guenter Geiger */ ! /* Copyright Ben Bogart 2004 ben@ekran.org */
--- 1,19 ---- ! /* Popup menu widget for PD * ! * Based on button from GGEE by Guenter Geiger * ! * Copyright Ben Bogart 2004 ben@ekran.org * ! ! * This program is distributed under the terms of the GNU General Public * ! * License * ! ! * popup is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! ! * popup is distributed in the hope that it will be useful, * ! * but WITHOUT ANY WARRANTY; without even the implied warranty of * ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * ! * GNU General Public License for more details. */ !
*************** *** 432,436 **** #endif
! post("Popup v0 Ben Bogart."); }
--- 446,450 ---- #endif
! post("Popup v0.1 Ben Bogart."); }
Index: popup-help.pd =================================================================== RCS file: /cvsroot/pure-data/externals/bbogart/popup/popup-help.pd,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** popup-help.pd 10 Mar 2004 21:40:13 -0000 1.2 --- popup-help.pd 20 Mar 2004 23:52:48 -0000 1.3 *************** *** 1,14 **** #N canvas 154 131 631 317 10; ! #X obj 78 188 popup 124 white duh! one two three four five six seven eight nine ten eleven twelve thirteen i14 i15 i16 i17 i18 i19 i20 i21 i22 i23 i24 i25 i26 i26 i27 i28 i29 i30; ! #X obj 79 233 print index; ! #X msg 91 68 name popup; ! #X obj 181 234 print symbol; ! #X floatatom 33 32 5 0 0 0 - - -; ! #X msg 138 124 options one two three four five six seven eight nine ten eleven twelve thirteen i14 i15 i16 i17 i18 i19 i20 i21 i22 i23 i24 i25 i26 i26 i27 i28 i29 i30; ! #X msg 121 98 bgcolour black; #X connect 0 0 1 0; #X connect 0 1 3 0; --- 1,16 ---- #N canvas 154 131 631 317 10; ! #X obj 66 220 popup 124 white duh! one two three four five six seven eight nine ten eleven twelve thirteen i14 i15 i16 i17 i18 i19 i20 i21 i22 i23 i24 i25 i26 i26 i27 i28 i29 i30; ! #X obj 67 265 print index; ! #X msg 79 100 name popup; ! #X obj 169 266 print symbol; ! #X floatatom 44 78 5 0 0 0 - - -; ! #X msg 126 156 options one two three four five six seven eight nine ten eleven twelve thirteen i14 i15 i16 i17 i18 i19 i20 i21 i22 i23 i24 i25 i26 i26 i27 i28 i29 i30; ! #X msg 109 130 bgcolour black; ! #X text 13 11 popup , a popup menu for PD. Copyright Ben Bogart 2004 ! Released under the GPL.; #X connect 0 0 1 0; #X connect 0 1 3 0;
Index: makefile =================================================================== RCS file: /cvsroot/pure-data/externals/bbogart/popup/makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** makefile 20 Feb 2004 20:25:32 -0000 1.1 --- makefile 20 Mar 2004 23:52:48 -0000 1.2 *************** *** 2,6 **** echo make pd_linux, pd_nt, pd_irix5, or pd_irix6
! clean: ; rm -f *.pd_linux *.o
# ----------------------- NT ----------------------- --- 2,6 ---- echo make pd_linux, pd_nt, pd_irix5, or pd_irix6
! clean: ; rm -f popup.pd_{linux,nt,irix?,darwin} *.o
# ----------------------- NT -----------------------
Index: README.txt =================================================================== RCS file: /cvsroot/pure-data/externals/bbogart/popup/README.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** README.txt 10 Mar 2004 21:40:13 -0000 1.1 --- README.txt 20 Mar 2004 23:52:48 -0000 1.2 *************** *** 8,17 **** License
! PSO is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
! PSO is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- 8,17 ---- License
! popup is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
! popup is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *************** *** 19,28 ****
You should have received a copy of the GNU General Public License ! along with PSO; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
USAGE:
! PD: Put it in your extra folder.
Arguments: [pixel width] [background colour] [name] [opt1] [opt2] [...] --- 19,29 ----
You should have received a copy of the GNU General Public License ! along with popup; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
USAGE:
! Put the binary in your extra folder. ! Put the helpfile in your 5.reference folder.
Arguments: [pixel width] [background colour] [name] [opt1] [opt2] [...]
Index: README.build.txt =================================================================== RCS file: /cvsroot/pure-data/externals/bbogart/popup/README.build.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** README.build.txt 10 Mar 2004 21:40:13 -0000 1.1 --- README.build.txt 20 Mar 2004 23:52:48 -0000 1.2 *************** *** 1,4 **** These objects where developed under OSX and have been tested ! under OSX and Linux.
To build (under linux): --- 1,4 ---- These objects where developed under OSX and have been tested ! under OSX and Linux. They should also work on any other PD platforms.
To build (under linux):