OK, now version 1.0.9

Updated email addresses to point to fltk.org domain...

Updated README and CHANGES files accordingly.

Updated makeinclude and Makefile files to put -L../lib before the
LDFLAGS/GLDFLAGS to avoid problem reported by Alexander.

documentation/Makefile wasn't including makeinclude.

Updated FLUID about window to show version 1.0.9.


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1168 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet
2000-06-05 21:21:24 +00:00
parent a6abbc5462
commit f87393aaa1
313 changed files with 989 additions and 952 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: CubeMain.cxx,v 1.2.2.1 2000/04/25 22:16:48 mike Exp $"
// "$Id: CubeMain.cxx,v 1.2.2.2 2000/06/05 21:21:14 mike Exp $"
//
// CubeView class definitions for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <config.h>
@@ -43,5 +43,5 @@ main(int argc, char **argv) {
//
// End of "$Id: CubeMain.cxx,v 1.2.2.1 2000/04/25 22:16:48 mike Exp $".
// End of "$Id: CubeMain.cxx,v 1.2.2.2 2000/06/05 21:21:14 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: CubeView.cxx,v 1.4.2.1 2000/04/25 22:16:48 mike Exp $"
// "$Id: CubeView.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $"
//
// CubeView class implementation for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include "CubeView.h"
@@ -165,5 +165,5 @@ void CubeView::draw() {
#endif /* HAVE_GL */
//
// End of "$Id: CubeView.cxx,v 1.4.2.1 2000/04/25 22:16:48 mike Exp $".
// End of "$Id: CubeView.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: CubeView.h,v 1.4.2.1 2000/04/25 22:16:48 mike Exp $"
// "$Id: CubeView.h,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $"
//
// CubeView class definitions for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#ifndef CUBEVIEW_H
@@ -119,5 +119,5 @@ private:
#endif
//
// End of "$Id: CubeView.h,v 1.4.2.1 2000/04/25 22:16:48 mike Exp $".
// End of "$Id: CubeView.h,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $".
//
+16 -16
View File
@@ -1,5 +1,5 @@
#
# "$Id: Makefile,v 1.19.2.5 2000/06/03 12:04:12 mike Exp $"
# "$Id: Makefile,v 1.19.2.6 2000/06/05 21:21:15 mike Exp $"
#
# Test/example program makefile for the Fast Light Tool Kit (FLTK).
#
@@ -20,7 +20,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
#
# Please report all bugs and problems to "fltk-bugs@easysw.com".
# Please report all bugs and problems to "fltk-bugs@fltk.org".
#
CPPFILES =\
@@ -56,7 +56,7 @@ include ../makeinclude
.fl:
echo Generating, compiling, and linking $@...
../fluid/fluid -c $<
$(CXX) -I.. $(CXXFLAGS) $@.cxx -L../lib -lfltk $(LDLIBS) -o $@
$(CXX) -I.. -L../lib $(CXXFLAGS) $@.cxx -lfltk $(LDLIBS) -o $@
$(ALL): ../lib/$(LIBNAME)
@@ -64,44 +64,44 @@ $(ALL): ../lib/$(LIBNAME)
# Other programs needing special "help"...
CubeView: CubeMain.o CubeView.o CubeViewUI.o
echo Compiling and linking $@...
$(CXX) -I.. $(CXXFLAGS) CubeMain.o CubeView.o CubeViewUI.o \
-L../lib -lfltk $(GLDLIBS) -o $@
$(CXX) -I.. -L../lib $(CXXFLAGS) CubeMain.o CubeView.o CubeViewUI.o \
-lfltk $(GLDLIBS) -o $@
CubeMain.o: CubeViewUI.h CubeView.h
CubeView.o: CubeView.h
cube: cube.cxx
echo Compiling and linking $@...
$(CXX) -I.. $(CXXFLAGS) cube.cxx -L../lib -lfltk $(GLDLIBS) -o $@
$(CXX) -I.. -L../lib $(CXXFLAGS) cube.cxx -lfltk $(GLDLIBS) -o $@
fractals: fractals.cxx
echo Compiling and linking $@...
$(CXX) -I.. $(CXXFLAGS) fractals.cxx -L../lib -lfltk $(GLDLIBS) -o $@
$(CXX) -I.. -L../lib $(CXXFLAGS) fractals.cxx -lfltk $(GLDLIBS) -o $@
fullscreen: fullscreen.cxx
echo Compiling and linking $@...
$(CXX) -I.. $(CXXFLAGS) fullscreen.cxx -L../lib -lfltk $(GLDLIBS) -o $@
$(CXX) -I.. -L../lib $(CXXFLAGS) fullscreen.cxx -lfltk $(GLDLIBS) -o $@
glpuzzle: glpuzzle.cxx
echo Compiling and linking $@...
$(CXX) -I.. $(CXXFLAGS) glpuzzle.cxx -L../lib -lfltk $(GLDLIBS) -o $@
$(CXX) -I.. -L../lib $(CXXFLAGS) glpuzzle.cxx -lfltk $(GLDLIBS) -o $@
gl_overlay: gl_overlay.cxx
echo Compiling and linking $@...
$(CXX) -I.. $(CXXFLAGS) gl_overlay.cxx -L../lib -lfltk $(GLDLIBS) -o $@
$(CXX) -I.. -L../lib $(CXXFLAGS) gl_overlay.cxx -lfltk $(GLDLIBS) -o $@
shiny: shiny.cxx shiny_panel.cxx
echo Compiling and linking $@...
$(CXX) -I.. $(CXXFLAGS) shiny.cxx -L../lib -lfltk $(GLDLIBS) -o $@
$(CXX) -I.. -L../lib $(CXXFLAGS) shiny.cxx -lfltk $(GLDLIBS) -o $@
keyboard: keyboard.cxx keyboard_ui.cxx
echo Compiling and linking $@...
$(CXX) -I.. $(CXXFLAGS) keyboard.cxx -L../lib -lfltk $(LDLIBS) -o $@
$(CXX) -I.. -L../lib $(CXXFLAGS) keyboard.cxx -lfltk $(LDLIBS) -o $@
mandelbrot: mandelbrot.cxx mandelbrot_ui.cxx
echo Compiling and linking $@...
$(CXX) -I.. $(CXXFLAGS) mandelbrot.cxx -L../lib -lfltk $(LDLIBS) -o $@
$(CXX) -I.. -L../lib $(CXXFLAGS) mandelbrot.cxx -lfltk $(LDLIBS) -o $@
shape: shape.cxx
echo Compiling and linking $@...
$(CXX) -I.. $(CXXFLAGS) shape.cxx -L../lib -lfltk $(GLDLIBS) -o $@
$(CXX) -I.. -L../lib $(CXXFLAGS) shape.cxx -lfltk $(GLDLIBS) -o $@
# If you have libjpeg installed, you might want to try this test program:
jpeg_image: jpeg_image.cxx
echo Compiling and linking $@...
$(CXX) -I.. $(CXXFLAGS) -I../../../local/jpeg-6b -L../../../local/jpeg-6b jpeg_image.cxx -L../lib -lfltk $(LDLIBS) -ljpeg -lXext -o $@
$(CXX) -I.. -L../lib $(CXXFLAGS) -I../../../local/jpeg-6b -L../../../local/jpeg-6b jpeg_image.cxx -lfltk $(LDLIBS) -ljpeg -lXext -o $@
depend:
$(MAKEDEPEND) -I.. $(CXXFLAGS) $(CPPFILES) > makedepend
@@ -113,5 +113,5 @@ install:
@echo Nothing to install in test directory.
#
# End of "$Id: Makefile,v 1.19.2.5 2000/06/03 12:04:12 mike Exp $".
# End of "$Id: Makefile,v 1.19.2.6 2000/06/05 21:21:15 mike Exp $".
#
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: adjuster.cxx,v 1.4.2.1 2000/04/25 22:16:49 mike Exp $"
// "$Id: adjuster.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $"
//
// Adjuster test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <stdlib.h>
@@ -60,5 +60,5 @@ int main(int, char ** argv) {
}
//
// End of "$Id: adjuster.cxx,v 1.4.2.1 2000/04/25 22:16:49 mike Exp $".
// End of "$Id: adjuster.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: arc.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $"
// "$Id: arc.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $"
//
// Arc drawing test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -92,6 +92,6 @@ int main(int argc, char** argv) {
//
// End of "$Id: arc.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $".
// End of "$Id: arc.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: ask.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $"
// "$Id: ask.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $"
//
// Standard dialog test program for the Fast Light Tool Kit (FLTK).
//
@@ -27,7 +27,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <stdio.h>
@@ -110,5 +110,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: ask.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $".
// End of "$Id: ask.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: bitmap.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $"
// "$Id: bitmap.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $"
//
// Bitmap label test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -137,5 +137,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: bitmap.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $".
// End of "$Id: bitmap.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: boxtype.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $"
// "$Id: boxtype.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $"
//
// Boxtype test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <stdlib.h>
@@ -89,5 +89,5 @@ int main(int argc, char ** argv) {
}
//
// End of "$Id: boxtype.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $".
// End of "$Id: boxtype.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: browser.cxx,v 1.5.2.3 2000/04/25 22:16:50 mike Exp $"
// "$Id: browser.cxx,v 1.5.2.4 2000/06/05 21:21:16 mike Exp $"
//
// Browser test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
/*
@@ -96,6 +96,6 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: browser.cxx,v 1.5.2.3 2000/04/25 22:16:50 mike Exp $".
// End of "$Id: browser.cxx,v 1.5.2.4 2000/06/05 21:21:16 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: browserop.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $"
// "$Id: browserop.cxx,v 1.4.2.2 2000/06/05 21:21:16 mike Exp $"
//
// Browser operation test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include "forms.h"
@@ -104,5 +104,5 @@ main(int argc, char *argv[])
}
//
// End of "$Id: browserop.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $".
// End of "$Id: browserop.cxx,v 1.4.2.2 2000/06/05 21:21:16 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: button.cxx,v 1.4.2.2 2000/04/25 22:16:51 mike Exp $"
// "$Id: button.cxx,v 1.4.2.3 2000/06/05 21:21:16 mike Exp $"
//
// Button/callback test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <stdlib.h>
@@ -62,5 +62,5 @@ int main(int argc, char ** argv) {
}
//
// End of "$Id: button.cxx,v 1.4.2.2 2000/04/25 22:16:51 mike Exp $".
// End of "$Id: button.cxx,v 1.4.2.3 2000/06/05 21:21:16 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: buttons.cxx,v 1.4.2.1 2000/04/25 22:16:51 mike Exp $"
// "$Id: buttons.cxx,v 1.4.2.2 2000/06/05 21:21:16 mike Exp $"
//
// Another button test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <stdlib.h>
@@ -48,5 +48,5 @@ int main(int argc, char ** argv) {
}
//
// End of "$Id: buttons.cxx,v 1.4.2.1 2000/04/25 22:16:51 mike Exp $".
// End of "$Id: buttons.cxx,v 1.4.2.2 2000/06/05 21:21:16 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: checkers.cxx,v 1.9.2.4 2000/04/25 22:16:51 mike Exp $"
// "$Id: checkers.cxx,v 1.9.2.5 2000/06/05 21:21:16 mike Exp $"
//
// Checkers game for the Fast Light Tool Kit (FLTK).
//
@@ -23,7 +23,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
const char* copyright =
@@ -1365,5 +1365,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: checkers.cxx,v 1.9.2.4 2000/04/25 22:16:51 mike Exp $".
// End of "$Id: checkers.cxx,v 1.9.2.5 2000/06/05 21:21:16 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: clock.cxx,v 1.4.2.1 2000/04/25 22:16:51 mike Exp $"
// "$Id: clock.cxx,v 1.4.2.2 2000/06/05 21:21:17 mike Exp $"
//
// Clock test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -47,5 +47,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: clock.cxx,v 1.4.2.1 2000/04/25 22:16:51 mike Exp $".
// End of "$Id: clock.cxx,v 1.4.2.2 2000/06/05 21:21:17 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: colbrowser.cxx,v 1.5.2.1 2000/04/25 22:16:51 mike Exp $"
// "$Id: colbrowser.cxx,v 1.5.2.2 2000/06/05 21:21:17 mike Exp $"
//
// Forms test program for the Fast Light Tool Kit (FLTK).
//
@@ -25,7 +25,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/forms.H> // changed for fltk
@@ -340,5 +340,5 @@ create_form_cl(void)
}
//
// End of "$Id: colbrowser.cxx,v 1.5.2.1 2000/04/25 22:16:51 mike Exp $".
// End of "$Id: colbrowser.cxx,v 1.5.2.2 2000/06/05 21:21:17 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: color_chooser.cxx,v 1.6.2.1 2000/04/25 22:16:52 mike Exp $"
// "$Id: color_chooser.cxx,v 1.6.2.2 2000/06/05 21:21:17 mike Exp $"
//
// Color chooser test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -146,5 +146,5 @@ int main(int argc, char ** argv) {
}
//
// End of "$Id: color_chooser.cxx,v 1.6.2.1 2000/04/25 22:16:52 mike Exp $".
// End of "$Id: color_chooser.cxx,v 1.6.2.2 2000/06/05 21:21:17 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: connect.cxx,v 1.4.2.2 2000/04/25 22:16:52 mike Exp $"
// "$Id: connect.cxx,v 1.4.2.3 2000/06/05 21:21:17 mike Exp $"
//
// PPP example program for the Fast Light Tool Kit (FLTK).
//
@@ -24,7 +24,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <stdlib.h>
@@ -71,5 +71,5 @@ int main(int argc, char ** argv) {
}
//
// End of "$Id: connect.cxx,v 1.4.2.2 2000/04/25 22:16:52 mike Exp $".
// End of "$Id: connect.cxx,v 1.4.2.3 2000/06/05 21:21:17 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: cube.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $"
// "$Id: cube.cxx,v 1.4.2.2 2000/06/05 21:21:17 mike Exp $"
//
// Another forms test program for the Fast Light Tool Kit (FLTK).
//
@@ -22,7 +22,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <config.h>
@@ -169,5 +169,5 @@ main(int argc, char **argv) {
}
//
// End of "$Id: cube.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $".
// End of "$Id: cube.cxx,v 1.4.2.2 2000/06/05 21:21:17 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: cursor.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $"
// "$Id: cursor.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $"
//
// Cursor test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -159,5 +159,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: cursor.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $".
// End of "$Id: cursor.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: curve.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $"
// "$Id: curve.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $"
//
// Curve test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -109,5 +109,5 @@ int main(int argc, char** argv) {
}
//
// End of "$Id: curve.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $".
// End of "$Id: curve.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: demo.cxx,v 1.8.2.2 2000/04/25 22:16:52 mike Exp $"
// "$Id: demo.cxx,v 1.8.2.3 2000/06/05 21:21:18 mike Exp $"
//
// Main demo program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <stdio.h>
@@ -332,6 +332,6 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: demo.cxx,v 1.8.2.2 2000/04/25 22:16:52 mike Exp $".
// End of "$Id: demo.cxx,v 1.8.2.3 2000/06/05 21:21:18 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: doublebuffer.cxx,v 1.4.2.1 2000/04/25 22:16:53 mike Exp $"
// "$Id: doublebuffer.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $"
//
// Double-buffering test program for the Fast Light Tool Kit (FLTK).
//
@@ -30,7 +30,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -122,5 +122,5 @@ int main() {
}
//
// End of "$Id: doublebuffer.cxx,v 1.4.2.1 2000/04/25 22:16:53 mike Exp $".
// End of "$Id: doublebuffer.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: editor.cxx,v 1.2.2.1 2000/04/25 22:16:53 mike Exp $"
// "$Id: editor.cxx,v 1.2.2.2 2000/06/05 21:21:18 mike Exp $"
//
// A simple text editor program for the Fast Light Tool Kit (FLTK).
//
@@ -22,7 +22,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
//
@@ -385,5 +385,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: editor.cxx,v 1.2.2.1 2000/04/25 22:16:53 mike Exp $".
// End of "$Id: editor.cxx,v 1.2.2.2 2000/06/05 21:21:18 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: file_chooser.cxx,v 1.4.2.1 2000/04/25 22:16:53 mike Exp $"
// "$Id: file_chooser.cxx,v 1.4.2.2 2000/06/05 21:21:19 mike Exp $"
//
// File chooser test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -59,5 +59,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: file_chooser.cxx,v 1.4.2.1 2000/04/25 22:16:53 mike Exp $".
// End of "$Id: file_chooser.cxx,v 1.4.2.2 2000/06/05 21:21:19 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: fl_jpeg_image.cxx,v 1.5.2.1 2000/04/25 22:16:54 mike Exp $"
// "$Id: fl_jpeg_image.cxx,v 1.5.2.2 2000/06/05 21:21:19 mike Exp $"
//
// fl_draw_image test program for the Fast Light Tool Kit (FLTK).
//
@@ -37,7 +37,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -197,5 +197,5 @@ void readtheimage(const char *name) {
#endif
//
// End of "$Id: fl_jpeg_image.cxx,v 1.5.2.1 2000/04/25 22:16:54 mike Exp $".
// End of "$Id: fl_jpeg_image.cxx,v 1.5.2.2 2000/06/05 21:21:19 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: fonts.cxx,v 1.5.2.1 2000/04/25 22:16:54 mike Exp $"
// "$Id: fonts.cxx,v 1.5.2.2 2000/06/05 21:21:19 mike Exp $"
//
// Font demo program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -164,5 +164,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: fonts.cxx,v 1.5.2.1 2000/04/25 22:16:54 mike Exp $".
// End of "$Id: fonts.cxx,v 1.5.2.2 2000/06/05 21:21:19 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: forms.cxx,v 1.4.2.1 2000/04/25 22:16:54 mike Exp $"
// "$Id: forms.cxx,v 1.4.2.2 2000/06/05 21:21:19 mike Exp $"
//
// Another forms demo for the Fast Light Tool Kit (FLTK).
//
@@ -26,7 +26,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/forms.H> // changed for fltk
@@ -229,5 +229,5 @@ main (int argc, char *argv[])
}
//
// End of "$Id: forms.cxx,v 1.4.2.1 2000/04/25 22:16:54 mike Exp $".
// End of "$Id: forms.cxx,v 1.4.2.2 2000/06/05 21:21:19 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: fractals.cxx,v 1.5.2.2 2000/04/25 22:16:54 mike Exp $"
// "$Id: fractals.cxx,v 1.5.2.3 2000/06/05 21:21:19 mike Exp $"
//
// Fractal drawing demo for the Fast Light Tool Kit (FLTK).
//
@@ -24,7 +24,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <config.h>
@@ -805,5 +805,5 @@ int main(int argc, char** argv)
#endif
//
// End of "$Id: fractals.cxx,v 1.5.2.2 2000/04/25 22:16:54 mike Exp $".
// End of "$Id: fractals.cxx,v 1.5.2.3 2000/06/05 21:21:19 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: fullscreen.cxx,v 1.4.2.1 2000/04/25 22:16:54 mike Exp $"
// "$Id: fullscreen.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $"
//
// Fullscreen test program for the Fast Light Tool Kit (FLTK).
//
@@ -51,7 +51,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <config.h>
@@ -240,5 +240,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: fullscreen.cxx,v 1.4.2.1 2000/04/25 22:16:54 mike Exp $".
// End of "$Id: fullscreen.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: gl_overlay.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $"
// "$Id: gl_overlay.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $"
//
// OpenGL overlay test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <config.h>
@@ -151,5 +151,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: gl_overlay.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $".
// End of "$Id: gl_overlay.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: glpuzzle.cxx,v 1.8.2.1 2000/04/25 22:16:55 mike Exp $"
// "$Id: glpuzzle.cxx,v 1.8.2.2 2000/06/05 21:21:20 mike Exp $"
//
// OpenGL puzzle demo for the Fast Light Tool Kit (FLTK).
//
@@ -23,7 +23,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
// this block added for fltk's distribtion so it will compile w/o OpenGL:
@@ -1479,5 +1479,5 @@ main(int argc, char **argv)
#endif // added for fltk's distribution
//
// End of "$Id: glpuzzle.cxx,v 1.8.2.1 2000/04/25 22:16:55 mike Exp $".
// End of "$Id: glpuzzle.cxx,v 1.8.2.2 2000/06/05 21:21:20 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: hello.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $"
// "$Id: hello.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $"
//
// Hello, World! program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -39,5 +39,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: hello.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $".
// End of "$Id: hello.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: iconize.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $"
// "$Id: iconize.cxx,v 1.4.2.2 2000/06/05 21:21:21 mike Exp $"
//
// Iconize test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -77,5 +77,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: iconize.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $".
// End of "$Id: iconize.cxx,v 1.4.2.2 2000/06/05 21:21:21 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: image.cxx,v 1.6.2.1 2000/04/25 22:16:55 mike Exp $"
// "$Id: image.cxx,v 1.6.2.2 2000/06/05 21:21:21 mike Exp $"
//
// Fl_Image test program for the Fast Light Tool Kit (FLTK).
//
@@ -24,7 +24,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -133,5 +133,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: image.cxx,v 1.6.2.1 2000/04/25 22:16:55 mike Exp $".
// End of "$Id: image.cxx,v 1.6.2.2 2000/06/05 21:21:21 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: input.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $"
// "$Id: input.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $"
//
// Input field test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <stdio.h>
@@ -117,5 +117,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: input.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $".
// End of "$Id: input.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: jpeg_image.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $"
// "$Id: jpeg_image.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $"
//
// fl_draw_image test program for the Fast Light Tool Kit (FLTK).
//
@@ -37,7 +37,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -198,5 +198,5 @@ void readtheimage(const char *name) {
#endif
//
// End of "$Id: jpeg_image.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $".
// End of "$Id: jpeg_image.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: keyboard.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $"
// "$Id: keyboard.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $"
//
// Keyboard/event test program for the Fast Light Tool Kit (FLTK).
//
@@ -34,7 +34,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include "keyboard_ui.cxx"
@@ -127,5 +127,5 @@ int main(int argc, char** argv) {
}
//
// End of "$Id: keyboard.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $".
// End of "$Id: keyboard.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: label.cxx,v 1.4.2.1 2000/04/25 22:16:56 mike Exp $"
// "$Id: label.cxx,v 1.4.2.2 2000/06/05 21:21:21 mike Exp $"
//
// Label test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -156,5 +156,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: label.cxx,v 1.4.2.1 2000/04/25 22:16:56 mike Exp $".
// End of "$Id: label.cxx,v 1.4.2.2 2000/06/05 21:21:21 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: list_visuals.cxx,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $"
// "$Id: list_visuals.cxx,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $"
//
// Visual list utility for the Fast Light Tool Kit (FLTK).
//
@@ -28,7 +28,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#ifdef WIN32
@@ -235,5 +235,5 @@ int main(int argc, char **argv) {
#endif
//
// End of "$Id: list_visuals.cxx,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $".
// End of "$Id: list_visuals.cxx,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: mandelbrot.cxx,v 1.8.2.1 2000/04/25 22:16:57 mike Exp $"
// "$Id: mandelbrot.cxx,v 1.8.2.2 2000/06/05 21:21:22 mike Exp $"
//
// Mandelbrot set demo for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include "mandelbrot_ui.cxx"
@@ -197,5 +197,5 @@ void Drawing_Area::resize(int X,int Y,int W,int H) {
}
//
// End of "$Id: mandelbrot.cxx,v 1.8.2.1 2000/04/25 22:16:57 mike Exp $".
// End of "$Id: mandelbrot.cxx,v 1.8.2.2 2000/06/05 21:21:22 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: mandelbrot.h,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $"
// "$Id: mandelbrot.h,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $"
//
// Mandelbrot set header file for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -68,5 +68,5 @@ public:
};
//
// End of "$Id: mandelbrot.h,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $".
// End of "$Id: mandelbrot.h,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: menubar.cxx,v 1.6.2.4 2000/04/25 22:16:57 mike Exp $"
// "$Id: menubar.cxx,v 1.6.2.5 2000/06/05 21:21:22 mike Exp $"
//
// Menubar test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -216,5 +216,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: menubar.cxx,v 1.6.2.4 2000/04/25 22:16:57 mike Exp $".
// End of "$Id: menubar.cxx,v 1.6.2.5 2000/06/05 21:21:22 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: message.cxx,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $"
// "$Id: message.cxx,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $"
//
// Message test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -54,5 +54,5 @@ int main(int, char **) {
}
//
// End of "$Id: message.cxx,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $".
// End of "$Id: message.cxx,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: minimum.cxx,v 1.4.2.1 2000/04/25 22:16:57 mike Exp $"
// "$Id: minimum.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $"
//
// Minimal update test program for the Fast Light Tool Kit (FLTK).
//
@@ -37,7 +37,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <stdlib.h>
@@ -74,5 +74,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: minimum.cxx,v 1.4.2.1 2000/04/25 22:16:57 mike Exp $".
// End of "$Id: minimum.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: navigation.cxx,v 1.5.2.1 2000/04/25 22:16:58 mike Exp $"
// "$Id: navigation.cxx,v 1.5.2.2 2000/06/05 21:21:23 mike Exp $"
//
// Navigation test program for the Fast Light Tool Kit (FLTK).
//
@@ -23,7 +23,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <stdio.h>
@@ -66,5 +66,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: navigation.cxx,v 1.5.2.1 2000/04/25 22:16:58 mike Exp $".
// End of "$Id: navigation.cxx,v 1.5.2.2 2000/06/05 21:21:23 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: output.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $"
// "$Id: output.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $"
//
// Output test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -97,5 +97,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: output.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $".
// End of "$Id: output.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: overlay.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $"
// "$Id: overlay.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $"
//
// Overlay window test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <stdlib.h>
@@ -80,5 +80,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: overlay.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $".
// End of "$Id: overlay.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: pack.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $"
// "$Id: pack.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $"
//
// Fl_Pack test program for the Fast Light Tool Kit (FLTK).
//
@@ -24,7 +24,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -114,5 +114,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: pack.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $".
// End of "$Id: pack.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $".
//
+3 -3
View File
@@ -1,5 +1,5 @@
//
// "$Id: pixmap.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $"
// "$Id: pixmap.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $"
//
// Pixmap label test program for the Fast Light Tool Kit (FLTK).
//
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <FL/Fl.H>
@@ -87,5 +87,5 @@ int main(int argc, char **argv) {
}
//
// End of "$Id: pixmap.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $".
// End of "$Id: pixmap.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $".
//

Some files were not shown because too many files have changed in this diff Show More