mirror of
https://github.com/fltk/fltk.git
synced 2026-06-06 16:46:52 +08:00
Updated copyright notices for all of the 1.0.x files.
Updated the configure script for *BSD and GCC 2.95 (-fno-exceptions) Added install rule to documentation directory. Dumped old packages directory; added traditional RPM spec file and EPM list file (that replace all of the packages stuff) The FLUID man page is now "fluid.1" for the formatted page and "fluid.man" for the non-formatted page, since only IRIX uses pack'd formatted man pages. Whew! git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1090 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: CubeMain.cxx,v 1.2 1999/03/04 13:39:41 mike Exp $"
|
||||
// "$Id: CubeMain.cxx,v 1.2.2.1 2000/04/25 22:16:48 mike Exp $"
|
||||
//
|
||||
// CubeView class definitions for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -43,5 +43,5 @@ main(int argc, char **argv) {
|
||||
|
||||
|
||||
//
|
||||
// End of "$Id: CubeMain.cxx,v 1.2 1999/03/04 13:39:41 mike Exp $".
|
||||
// End of "$Id: CubeMain.cxx,v 1.2.2.1 2000/04/25 22:16:48 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: CubeView.cxx,v 1.4 1999/03/10 16:40:19 mike Exp $"
|
||||
// "$Id: CubeView.cxx,v 1.4.2.1 2000/04/25 22:16:48 mike Exp $"
|
||||
//
|
||||
// CubeView class implementation for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -165,5 +165,5 @@ void CubeView::draw() {
|
||||
#endif /* HAVE_GL */
|
||||
|
||||
//
|
||||
// End of "$Id: CubeView.cxx,v 1.4 1999/03/10 16:40:19 mike Exp $".
|
||||
// End of "$Id: CubeView.cxx,v 1.4.2.1 2000/04/25 22:16:48 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: CubeView.h,v 1.4 1999/03/10 16:40:19 mike Exp $"
|
||||
// "$Id: CubeView.h,v 1.4.2.1 2000/04/25 22:16:48 mike Exp $"
|
||||
//
|
||||
// CubeView class definitions for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -119,5 +119,5 @@ private:
|
||||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: CubeView.h,v 1.4 1999/03/10 16:40:19 mike Exp $".
|
||||
// End of "$Id: CubeView.h,v 1.4.2.1 2000/04/25 22:16:48 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-18
@@ -1,9 +1,9 @@
|
||||
#
|
||||
# "$Id: Makefile,v 1.19.2.1 1999/03/25 15:26:43 mike Exp $"
|
||||
# "$Id: Makefile,v 1.19.2.2 2000/04/25 22:16:49 mike Exp $"
|
||||
#
|
||||
# Test/example program makefile for the Fast Light Tool Kit (FLTK).
|
||||
#
|
||||
# Copyright 1998-1999 by Bill Spitzak and others.
|
||||
# Copyright 1998-2000 by Bill Spitzak and others.
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Library General Public
|
||||
@@ -50,21 +50,6 @@ include ../makeinclude
|
||||
|
||||
$(ALL): ../lib/$(LIBNAME)
|
||||
|
||||
.SUFFIXES: .cxx .c .o .fl .h
|
||||
|
||||
.cxx:
|
||||
$(CXX) -I.. $(CXXFLAGS) $< -L../lib -lfltk $(LDLIBS) -o $@
|
||||
|
||||
.cxx.o:
|
||||
$(CXX) -I.. $(CXXFLAGS) $< -c
|
||||
|
||||
.fl.cxx .fl.h:
|
||||
../fluid/fluid -c $<
|
||||
|
||||
.fl:
|
||||
../fluid/fluid -c $<
|
||||
$(CXX) -I.. $(CXXFLAGS) $@.cxx -L../lib -lfltk $(LDLIBS) -o $@
|
||||
|
||||
# Other programs needing special "help"...
|
||||
CubeView: CubeMain.o CubeView.o CubeViewUI.o
|
||||
$(CXX) -I.. $(CXXFLAGS) CubeMain.o CubeView.o CubeViewUI.o \
|
||||
@@ -106,5 +91,5 @@ install:
|
||||
@echo Nothing to install in test directory.
|
||||
|
||||
#
|
||||
# End of "$Id: Makefile,v 1.19.2.1 1999/03/25 15:26:43 mike Exp $".
|
||||
# End of "$Id: Makefile,v 1.19.2.2 2000/04/25 22:16:49 mike Exp $".
|
||||
#
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: adjuster.cxx,v 1.4 1999/01/07 19:17:48 mike Exp $"
|
||||
// "$Id: adjuster.cxx,v 1.4.2.1 2000/04/25 22:16:49 mike Exp $"
|
||||
//
|
||||
// Adjuster test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -60,5 +60,5 @@ int main(int, char ** argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: adjuster.cxx,v 1.4 1999/01/07 19:17:48 mike Exp $".
|
||||
// End of "$Id: adjuster.cxx,v 1.4.2.1 2000/04/25 22:16:49 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: arc.cxx,v 1.4 1999/01/07 19:17:48 mike Exp $"
|
||||
// "$Id: arc.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $"
|
||||
//
|
||||
// Arc drawing test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -92,6 +92,6 @@ int main(int argc, char** argv) {
|
||||
|
||||
|
||||
//
|
||||
// End of "$Id: arc.cxx,v 1.4 1999/01/07 19:17:48 mike Exp $".
|
||||
// End of "$Id: arc.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $".
|
||||
//
|
||||
|
||||
|
||||
+3
-3
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: ask.cxx,v 1.4 1999/01/07 19:17:48 mike Exp $"
|
||||
// "$Id: ask.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $"
|
||||
//
|
||||
// Standard dialog test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@@ -10,7 +10,7 @@
|
||||
// This also demonstrates how to trap attempts by the user to
|
||||
// close the last window by overriding Fl::exit
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -110,5 +110,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: ask.cxx,v 1.4 1999/01/07 19:17:48 mike Exp $".
|
||||
// End of "$Id: ask.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: bitmap.cxx,v 1.4 1999/01/07 19:17:49 mike Exp $"
|
||||
// "$Id: bitmap.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $"
|
||||
//
|
||||
// Bitmap label test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -137,5 +137,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: bitmap.cxx,v 1.4 1999/01/07 19:17:49 mike Exp $".
|
||||
// End of "$Id: bitmap.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: boxtype.cxx,v 1.4 1999/01/07 19:17:49 mike Exp $"
|
||||
// "$Id: boxtype.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $"
|
||||
//
|
||||
// Boxtype test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -89,5 +89,5 @@ int main(int argc, char ** argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: boxtype.cxx,v 1.4 1999/01/07 19:17:49 mike Exp $".
|
||||
// End of "$Id: boxtype.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: browser.cxx,v 1.5.2.2 2000/01/20 06:14:34 bill Exp $"
|
||||
// "$Id: browser.cxx,v 1.5.2.3 2000/04/25 22:16:50 mike Exp $"
|
||||
//
|
||||
// Browser test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -96,6 +96,6 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: browser.cxx,v 1.5.2.2 2000/01/20 06:14:34 bill Exp $".
|
||||
// End of "$Id: browser.cxx,v 1.5.2.3 2000/04/25 22:16:50 mike Exp $".
|
||||
//
|
||||
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: browserop.cxx,v 1.4 1999/01/07 19:17:49 mike Exp $"
|
||||
// "$Id: browserop.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $"
|
||||
//
|
||||
// Browser operation test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -104,5 +104,5 @@ main(int argc, char *argv[])
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: browserop.cxx,v 1.4 1999/01/07 19:17:49 mike Exp $".
|
||||
// End of "$Id: browserop.cxx,v 1.4.2.1 2000/04/25 22:16:50 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: button.cxx,v 1.4.2.1 1999/04/17 01:02:30 bill Exp $"
|
||||
// "$Id: button.cxx,v 1.4.2.2 2000/04/25 22:16:51 mike Exp $"
|
||||
//
|
||||
// Button/callback test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -62,5 +62,5 @@ int main(int argc, char ** argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: button.cxx,v 1.4.2.1 1999/04/17 01:02:30 bill Exp $".
|
||||
// End of "$Id: button.cxx,v 1.4.2.2 2000/04/25 22:16:51 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: buttons.cxx,v 1.4 1999/01/07 19:17:50 mike Exp $"
|
||||
// "$Id: buttons.cxx,v 1.4.2.1 2000/04/25 22:16:51 mike Exp $"
|
||||
//
|
||||
// Another button test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -48,5 +48,5 @@ int main(int argc, char ** argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: buttons.cxx,v 1.4 1999/01/07 19:17:50 mike Exp $".
|
||||
// End of "$Id: buttons.cxx,v 1.4.2.1 2000/04/25 22:16:51 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,12 +1,12 @@
|
||||
//
|
||||
// "$Id: checkers.cxx,v 1.9.2.3 1999/08/09 14:38:40 mike Exp $"
|
||||
// "$Id: checkers.cxx,v 1.9.2.4 2000/04/25 22:16:51 mike Exp $"
|
||||
//
|
||||
// Checkers game for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Hours of fun: the FLTK checkers game!
|
||||
// Based on a very old algorithim, but it still works!
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -1365,5 +1365,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: checkers.cxx,v 1.9.2.3 1999/08/09 14:38:40 mike Exp $".
|
||||
// End of "$Id: checkers.cxx,v 1.9.2.4 2000/04/25 22:16:51 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: clock.cxx,v 1.4 1999/01/07 19:17:50 mike Exp $"
|
||||
// "$Id: clock.cxx,v 1.4.2.1 2000/04/25 22:16:51 mike Exp $"
|
||||
//
|
||||
// Clock test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -47,5 +47,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: clock.cxx,v 1.4 1999/01/07 19:17:50 mike Exp $".
|
||||
// End of "$Id: clock.cxx,v 1.4.2.1 2000/04/25 22:16:51 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: colbrowser.cxx,v 1.5 1999/01/07 19:17:51 mike Exp $"
|
||||
// "$Id: colbrowser.cxx,v 1.5.2.1 2000/04/25 22:16:51 mike Exp $"
|
||||
//
|
||||
// Forms test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@@ -8,7 +8,7 @@
|
||||
// using fltk's Forms emulation. Search for "fltk" to find all the
|
||||
// changes
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -340,5 +340,5 @@ create_form_cl(void)
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: colbrowser.cxx,v 1.5 1999/01/07 19:17:51 mike Exp $".
|
||||
// End of "$Id: colbrowser.cxx,v 1.5.2.1 2000/04/25 22:16:51 mike Exp $".
|
||||
//
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: color_chooser.cxx,v 1.6 1999/01/07 19:17:51 mike Exp $"
|
||||
// "$Id: color_chooser.cxx,v 1.6.2.1 2000/04/25 22:16:52 mike Exp $"
|
||||
//
|
||||
// Color chooser test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -146,5 +146,5 @@ int main(int argc, char ** argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: color_chooser.cxx,v 1.6 1999/01/07 19:17:51 mike Exp $".
|
||||
// End of "$Id: color_chooser.cxx,v 1.6.2.1 2000/04/25 22:16:52 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: connect.cxx,v 1.4.2.1 1999/05/11 09:39:31 bill Exp $"
|
||||
// "$Id: connect.cxx,v 1.4.2.2 2000/04/25 22:16:52 mike Exp $"
|
||||
//
|
||||
// PPP example program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@@ -7,7 +7,7 @@
|
||||
// You must chmod +s /usr/sbin/pppd, and put all the options
|
||||
// into /etc/ppp/options.
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -71,5 +71,5 @@ int main(int argc, char ** argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: connect.cxx,v 1.4.2.1 1999/05/11 09:39:31 bill Exp $".
|
||||
// End of "$Id: connect.cxx,v 1.4.2.2 2000/04/25 22:16:52 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
//
|
||||
// "$Id: cube.cxx,v 1.4 1999/01/07 19:17:51 mike Exp $"
|
||||
// "$Id: cube.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $"
|
||||
//
|
||||
// Another forms test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Modified to have 2 cubes to test multiple OpenGL contexts
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -169,5 +169,5 @@ main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: cube.cxx,v 1.4 1999/01/07 19:17:51 mike Exp $".
|
||||
// End of "$Id: cube.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: cursor.cxx,v 1.4 1999/01/07 19:17:52 mike Exp $"
|
||||
// "$Id: cursor.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $"
|
||||
//
|
||||
// Cursor test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -159,5 +159,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: cursor.cxx,v 1.4 1999/01/07 19:17:52 mike Exp $".
|
||||
// End of "$Id: cursor.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: curve.cxx,v 1.4 1999/01/07 19:17:52 mike Exp $"
|
||||
// "$Id: curve.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $"
|
||||
//
|
||||
// Curve test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -109,5 +109,5 @@ int main(int argc, char** argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: curve.cxx,v 1.4 1999/01/07 19:17:52 mike Exp $".
|
||||
// End of "$Id: curve.cxx,v 1.4.2.1 2000/04/25 22:16:52 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: demo.cxx,v 1.8.2.1 2000/04/04 17:57:05 bill Exp $"
|
||||
// "$Id: demo.cxx,v 1.8.2.2 2000/04/25 22:16:52 mike Exp $"
|
||||
//
|
||||
// Main demo program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -332,6 +332,6 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: demo.cxx,v 1.8.2.1 2000/04/04 17:57:05 bill Exp $".
|
||||
// End of "$Id: demo.cxx,v 1.8.2.2 2000/04/25 22:16:52 mike Exp $".
|
||||
//
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: doublebuffer.cxx,v 1.4 1999/01/07 19:17:52 mike Exp $"
|
||||
// "$Id: doublebuffer.cxx,v 1.4.2.1 2000/04/25 22:16:53 mike Exp $"
|
||||
//
|
||||
// Double-buffering test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@@ -13,7 +13,7 @@
|
||||
// This demo should work for both the GL and X versions of Fl,
|
||||
// even though the double buffering mechanism is totally different.
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -122,5 +122,5 @@ int main() {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: doublebuffer.cxx,v 1.4 1999/01/07 19:17:52 mike Exp $".
|
||||
// End of "$Id: doublebuffer.cxx,v 1.4.2.1 2000/04/25 22:16:53 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
//
|
||||
// "$Id: editor.cxx,v 1.2 1999/01/07 19:17:53 mike Exp $"
|
||||
// "$Id: editor.cxx,v 1.2.2.1 2000/04/25 22:16:53 mike Exp $"
|
||||
//
|
||||
// A simple text editor program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// This program is described in Chapter 4 of the FLTK Programmer's Guide.
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -385,5 +385,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: editor.cxx,v 1.2 1999/01/07 19:17:53 mike Exp $".
|
||||
// End of "$Id: editor.cxx,v 1.2.2.1 2000/04/25 22:16:53 mike Exp $".
|
||||
//
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: file_chooser.cxx,v 1.4 1999/01/07 19:17:53 mike Exp $"
|
||||
// "$Id: file_chooser.cxx,v 1.4.2.1 2000/04/25 22:16:53 mike Exp $"
|
||||
//
|
||||
// File chooser test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -59,5 +59,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: file_chooser.cxx,v 1.4 1999/01/07 19:17:53 mike Exp $".
|
||||
// End of "$Id: file_chooser.cxx,v 1.4.2.1 2000/04/25 22:16:53 mike Exp $".
|
||||
//
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: fl_jpeg_image.cxx,v 1.5 1999/01/07 19:17:53 mike Exp $"
|
||||
// "$Id: fl_jpeg_image.cxx,v 1.5.2.1 2000/04/25 22:16:54 mike Exp $"
|
||||
//
|
||||
// fl_draw_image test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@@ -20,7 +20,7 @@
|
||||
// The makefile assummes you decompressed and build these in a directory
|
||||
// called "jpeg-6a" in the same location as the "FL" directory.
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -197,5 +197,5 @@ void readtheimage(const char *name) {
|
||||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: fl_jpeg_image.cxx,v 1.5 1999/01/07 19:17:53 mike Exp $".
|
||||
// End of "$Id: fl_jpeg_image.cxx,v 1.5.2.1 2000/04/25 22:16:54 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: fonts.cxx,v 1.5 1999/01/07 19:17:53 mike Exp $"
|
||||
// "$Id: fonts.cxx,v 1.5.2.1 2000/04/25 22:16:54 mike Exp $"
|
||||
//
|
||||
// Font demo program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -164,5 +164,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: fonts.cxx,v 1.5 1999/01/07 19:17:53 mike Exp $".
|
||||
// End of "$Id: fonts.cxx,v 1.5.2.1 2000/04/25 22:16:54 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: forms.cxx,v 1.4 1999/01/07 19:17:53 mike Exp $"
|
||||
// "$Id: forms.cxx,v 1.4.2.1 2000/04/25 22:16:54 mike Exp $"
|
||||
//
|
||||
// Another forms demo for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@@ -9,7 +9,7 @@
|
||||
// This demo show the different boxtypes. Note that some
|
||||
// boxtypes are not appropriate for some objects
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -229,5 +229,5 @@ main (int argc, char *argv[])
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: forms.cxx,v 1.4 1999/01/07 19:17:53 mike Exp $".
|
||||
// End of "$Id: forms.cxx,v 1.4.2.1 2000/04/25 22:16:54 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: fractals.cxx,v 1.5.2.1 1999/03/25 13:37:00 mike Exp $"
|
||||
// "$Id: fractals.cxx,v 1.5.2.2 2000/04/25 22:16:54 mike Exp $"
|
||||
//
|
||||
// Fractal drawing demo for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@@ -7,7 +7,7 @@
|
||||
// demonstrate how to add fltk controls to a glut program. The glut
|
||||
// code is unchanged except for the end (search for fltk to find changes).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -805,5 +805,5 @@ int main(int argc, char** argv)
|
||||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: fractals.cxx,v 1.5.2.1 1999/03/25 13:37:00 mike Exp $".
|
||||
// End of "$Id: fractals.cxx,v 1.5.2.2 2000/04/25 22:16:54 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: fullscreen.cxx,v 1.4 1999/01/07 19:17:54 mike Exp $"
|
||||
// "$Id: fullscreen.cxx,v 1.4.2.1 2000/04/25 22:16:54 mike Exp $"
|
||||
//
|
||||
// Fullscreen test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@@ -34,7 +34,7 @@
|
||||
// can avoid this by making the Fl_Gl_Window a child of a normal
|
||||
// window.
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -240,5 +240,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: fullscreen.cxx,v 1.4 1999/01/07 19:17:54 mike Exp $".
|
||||
// End of "$Id: fullscreen.cxx,v 1.4.2.1 2000/04/25 22:16:54 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: gl_overlay.cxx,v 1.4 1999/01/07 19:17:54 mike Exp $"
|
||||
// "$Id: gl_overlay.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $"
|
||||
//
|
||||
// OpenGL overlay test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -151,5 +151,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: gl_overlay.cxx,v 1.4 1999/01/07 19:17:54 mike Exp $".
|
||||
// End of "$Id: gl_overlay.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,12 +1,12 @@
|
||||
//
|
||||
// "$Id: glpuzzle.cxx,v 1.8 1999/02/25 20:05:30 bill Exp $"
|
||||
// "$Id: glpuzzle.cxx,v 1.8.2.1 2000/04/25 22:16:55 mike Exp $"
|
||||
//
|
||||
// OpenGL puzzle demo for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// This is a GLUT demo program to demonstrate fltk's GLUT emulation.
|
||||
// Search for "fltk" to find all the changes
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -1479,5 +1479,5 @@ main(int argc, char **argv)
|
||||
#endif // added for fltk's distribution
|
||||
|
||||
//
|
||||
// End of "$Id: glpuzzle.cxx,v 1.8 1999/02/25 20:05:30 bill Exp $".
|
||||
// End of "$Id: glpuzzle.cxx,v 1.8.2.1 2000/04/25 22:16:55 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: hello.cxx,v 1.4 1999/01/07 19:17:55 mike Exp $"
|
||||
// "$Id: hello.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $"
|
||||
//
|
||||
// Hello, World! program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -39,5 +39,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: hello.cxx,v 1.4 1999/01/07 19:17:55 mike Exp $".
|
||||
// End of "$Id: hello.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: iconize.cxx,v 1.4 1999/01/07 19:17:55 mike Exp $"
|
||||
// "$Id: iconize.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $"
|
||||
//
|
||||
// Iconize test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -77,5 +77,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: iconize.cxx,v 1.4 1999/01/07 19:17:55 mike Exp $".
|
||||
// End of "$Id: iconize.cxx,v 1.4.2.1 2000/04/25 22:16:55 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: image.cxx,v 1.6 1999/01/07 19:17:55 mike Exp $"
|
||||
// "$Id: image.cxx,v 1.6.2.1 2000/04/25 22:16:55 mike Exp $"
|
||||
//
|
||||
// Fl_Image test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@@ -7,7 +7,7 @@
|
||||
// as an icon or postage stamp. Use fl_draw_image to go directly
|
||||
// from an buffered image that changes often.
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -133,5 +133,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: image.cxx,v 1.6 1999/01/07 19:17:55 mike Exp $".
|
||||
// End of "$Id: image.cxx,v 1.6.2.1 2000/04/25 22:16:55 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: input.cxx,v 1.5 1999/01/07 19:17:56 mike Exp $"
|
||||
// "$Id: input.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $"
|
||||
//
|
||||
// Input field test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -117,5 +117,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: input.cxx,v 1.5 1999/01/07 19:17:56 mike Exp $".
|
||||
// End of "$Id: input.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: jpeg_image.cxx,v 1.5 1999/01/07 19:17:56 mike Exp $"
|
||||
// "$Id: jpeg_image.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $"
|
||||
//
|
||||
// fl_draw_image test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@@ -20,7 +20,7 @@
|
||||
// The makefile assummes you decompressed and build these in a directory
|
||||
// called "jpeg-6a" in the same location as the "FL" directory.
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -198,5 +198,5 @@ void readtheimage(const char *name) {
|
||||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: jpeg_image.cxx,v 1.5 1999/01/07 19:17:56 mike Exp $".
|
||||
// End of "$Id: jpeg_image.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: keyboard.cxx,v 1.5 1999/01/07 19:17:56 mike Exp $"
|
||||
// "$Id: keyboard.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $"
|
||||
//
|
||||
// Keyboard/event test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@@ -17,7 +17,7 @@
|
||||
//
|
||||
// On IRIX the backslash key does not work. A bug in XKeysymToKeycode?
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -127,5 +127,5 @@ int main(int argc, char** argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: keyboard.cxx,v 1.5 1999/01/07 19:17:56 mike Exp $".
|
||||
// End of "$Id: keyboard.cxx,v 1.5.2.1 2000/04/25 22:16:56 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: label.cxx,v 1.4 1999/01/07 19:17:57 mike Exp $"
|
||||
// "$Id: label.cxx,v 1.4.2.1 2000/04/25 22:16:56 mike Exp $"
|
||||
//
|
||||
// Label test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -156,5 +156,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: label.cxx,v 1.4 1999/01/07 19:17:57 mike Exp $".
|
||||
// End of "$Id: label.cxx,v 1.4.2.1 2000/04/25 22:16:56 mike Exp $".
|
||||
//
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: list_visuals.cxx,v 1.5 1999/01/07 19:17:57 mike Exp $"
|
||||
// "$Id: list_visuals.cxx,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $"
|
||||
//
|
||||
// Visual list utility for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@@ -11,7 +11,7 @@
|
||||
// This file may be #included in another program to make a function to
|
||||
// call to list the visuals. Fl.H must be included first to indicate this.
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -235,5 +235,5 @@ int main(int argc, char **argv) {
|
||||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: list_visuals.cxx,v 1.5 1999/01/07 19:17:57 mike Exp $".
|
||||
// End of "$Id: list_visuals.cxx,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: mandelbrot.cxx,v 1.8 1999/01/13 15:45:50 mike Exp $"
|
||||
// "$Id: mandelbrot.cxx,v 1.8.2.1 2000/04/25 22:16:57 mike Exp $"
|
||||
//
|
||||
// Mandelbrot set demo for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -197,5 +197,5 @@ void Drawing_Area::resize(int X,int Y,int W,int H) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: mandelbrot.cxx,v 1.8 1999/01/13 15:45:50 mike Exp $".
|
||||
// End of "$Id: mandelbrot.cxx,v 1.8.2.1 2000/04/25 22:16:57 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: mandelbrot.h,v 1.5 1999/01/07 19:17:57 mike Exp $"
|
||||
// "$Id: mandelbrot.h,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $"
|
||||
//
|
||||
// Mandelbrot set header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -68,5 +68,5 @@ public:
|
||||
};
|
||||
|
||||
//
|
||||
// End of "$Id: mandelbrot.h,v 1.5 1999/01/07 19:17:57 mike Exp $".
|
||||
// End of "$Id: mandelbrot.h,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: menubar.cxx,v 1.6.2.3 2000/04/11 08:11:56 bill Exp $"
|
||||
// "$Id: menubar.cxx,v 1.6.2.4 2000/04/25 22:16:57 mike Exp $"
|
||||
//
|
||||
// Menubar test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -216,5 +216,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: menubar.cxx,v 1.6.2.3 2000/04/11 08:11:56 bill Exp $".
|
||||
// End of "$Id: menubar.cxx,v 1.6.2.4 2000/04/25 22:16:57 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: message.cxx,v 1.5 1999/01/07 19:17:58 mike Exp $"
|
||||
// "$Id: message.cxx,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $"
|
||||
//
|
||||
// Message test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -54,5 +54,5 @@ int main(int, char **) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: message.cxx,v 1.5 1999/01/07 19:17:58 mike Exp $".
|
||||
// End of "$Id: message.cxx,v 1.5.2.1 2000/04/25 22:16:57 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: minimum.cxx,v 1.4 1999/01/07 19:17:58 mike Exp $"
|
||||
// "$Id: minimum.cxx,v 1.4.2.1 2000/04/25 22:16:57 mike Exp $"
|
||||
//
|
||||
// Minimal update test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@@ -20,7 +20,7 @@
|
||||
// machine is, this is an insane waste of resources, and should be
|
||||
// stopped!
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -74,5 +74,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: minimum.cxx,v 1.4 1999/01/07 19:17:58 mike Exp $".
|
||||
// End of "$Id: minimum.cxx,v 1.4.2.1 2000/04/25 22:16:57 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,12 +1,12 @@
|
||||
//
|
||||
// "$Id: navigation.cxx,v 1.5 1999/01/07 19:17:58 mike Exp $"
|
||||
// "$Id: navigation.cxx,v 1.5.2.1 2000/04/25 22:16:58 mike Exp $"
|
||||
//
|
||||
// Navigation test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Silly test of navigation keys. This is not a recommended method of
|
||||
// laying out your panels!
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -66,5 +66,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: navigation.cxx,v 1.5 1999/01/07 19:17:58 mike Exp $".
|
||||
// End of "$Id: navigation.cxx,v 1.5.2.1 2000/04/25 22:16:58 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: output.cxx,v 1.4 1999/01/07 19:17:59 mike Exp $"
|
||||
// "$Id: output.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $"
|
||||
//
|
||||
// Output test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -97,5 +97,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: output.cxx,v 1.4 1999/01/07 19:17:59 mike Exp $".
|
||||
// End of "$Id: output.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: overlay.cxx,v 1.4 1999/01/07 19:17:59 mike Exp $"
|
||||
// "$Id: overlay.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $"
|
||||
//
|
||||
// Overlay window test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -80,5 +80,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: overlay.cxx,v 1.4 1999/01/07 19:17:59 mike Exp $".
|
||||
// End of "$Id: overlay.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: pack.cxx,v 1.4 1999/01/07 19:17:59 mike Exp $"
|
||||
// "$Id: pack.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $"
|
||||
//
|
||||
// Fl_Pack test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@@ -7,7 +7,7 @@
|
||||
// Changing the type() of an Fl_Pack after it is displayed is not supported
|
||||
// so I have to do a lot of resizing of things before that.
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -114,5 +114,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: pack.cxx,v 1.4 1999/01/07 19:17:59 mike Exp $".
|
||||
// End of "$Id: pack.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $".
|
||||
//
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
//
|
||||
// "$Id: pixmap.cxx,v 1.4 1999/01/07 19:17:59 mike Exp $"
|
||||
// "$Id: pixmap.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $"
|
||||
//
|
||||
// Pixmap label test program for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-1999 by Bill Spitzak and others.
|
||||
// Copyright 1998-2000 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
@@ -87,5 +87,5 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
//
|
||||
// End of "$Id: pixmap.cxx,v 1.4 1999/01/07 19:17:59 mike Exp $".
|
||||
// End of "$Id: pixmap.cxx,v 1.4.2.1 2000/04/25 22:16:58 mike Exp $".
|
||||
//
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user