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

34
CHANGES
View File

@ -1,3 +1,37 @@
CHANGES SINCE FLTK 1.0.8
- EMail changes - fltk-bugs@easysw.com now officially
fltk-bugs@fltk.org.
- The FLTK DLL project file didn't include fl_compose.cxx
- Dropped the GCC -fno-rtti option since it caused problems
with existing programs.
- Moved the .fl rules back to the test directory.
- Fixed some makefile and spec file problems.
- Fixed hardware overlays. The problem was the new
fl_clipped() code, which tests against the current window
size. The hardware overlay code did not set the current
window when drawing the overlay. I needed hardware overlay
for DD's code, I'm not sure if these fixes are good enough to
enable this in our general release. Hardware overlay still
only works on SGI Irix.
- Some patches to turn off the MSVC++ -Oa (assumme no aliasing)
optimization flag. Suprisingly this only broke a few parts
of fltk, or at least these are the only ones I found.
- Does not unmap child windows when the main window is
iconized. This reduces flashing when the window is
deiconized.
- Fl::key() is set to zero by all events except key down/up.
This will allow you to reliably test if an event or callback
was produced by a keystroke. Fixes the bug posted about
stopping Escape from closing the window.
- User defined cursors on OpenGL windows slowed down NT a
*LOT*. Some attempts to fix this by turning off the cursor
while drawing the window.
- Filename completion in the file chooser works better on NT.
Typing TAB fixes the case of everything you typed to match
the shortest name that can be completed.
CHANGES SINCE FLTK 1.0.7 CHANGES SINCE FLTK 1.0.7
- Many documentation changes/fixes/improvements. - Many documentation changes/fixes/improvements.

View File

@ -1,5 +1,5 @@
// //
// "$Id: Enumerations.H,v 1.18.2.11 2000/04/25 22:15:43 mike Exp $" // "$Id: Enumerations.H,v 1.18.2.12 2000/06/05 21:20:18 mike Exp $"
// //
// Enumerations for the Fast Light Tool Kit (FLTK). // Enumerations for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Enumerations_H #ifndef Fl_Enumerations_H
@ -56,7 +56,7 @@
#define FL_MAJOR_VERSION 1 #define FL_MAJOR_VERSION 1
#define FL_MINOR_VERSION 0 #define FL_MINOR_VERSION 0
#define FL_PATCH_VERSION 8 #define FL_PATCH_VERSION 9
#define FL_VERSION ((double)FL_MAJOR_VERSION + \ #define FL_VERSION ((double)FL_MAJOR_VERSION + \
(double)FL_MINOR_VERSION * 0.01 + \ (double)FL_MINOR_VERSION * 0.01 + \
(double)FL_PATCH_VERSION * 0.0001) (double)FL_PATCH_VERSION * 0.0001)
@ -371,5 +371,5 @@ enum Fl_Damage {
#endif #endif
// //
// End of "$Id: Enumerations.H,v 1.18.2.11 2000/04/25 22:15:43 mike Exp $". // End of "$Id: Enumerations.H,v 1.18.2.12 2000/06/05 21:20:18 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl.H,v 1.8.2.5 2000/05/13 20:03:14 bill Exp $" // "$Id: Fl.H,v 1.8.2.6 2000/06/05 21:20:18 mike Exp $"
// //
// Main header file for the Fast Light Tool Kit (FLTK). // Main header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_H #ifndef Fl_H
@ -211,5 +211,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl.H,v 1.8.2.5 2000/05/13 20:03:14 bill Exp $". // End of "$Id: Fl.H,v 1.8.2.6 2000/06/05 21:20:18 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Adjuster.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $" // "$Id: Fl_Adjuster.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $"
// //
// Adjuster widget header file for the Fast Light Tool Kit (FLTK). // Adjuster widget header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// 3-button "slider", made for Nuke // 3-button "slider", made for Nuke
@ -49,5 +49,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Adjuster.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $". // End of "$Id: Fl_Adjuster.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Bitmap.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $" // "$Id: Fl_Bitmap.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $"
// //
// Bitmap header file for the Fast Light Tool Kit (FLTK). // Bitmap header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Bitmap_H #ifndef Fl_Bitmap_H
@ -47,5 +47,5 @@ struct Fl_Bitmap {
#endif #endif
// //
// End of "$Id: Fl_Bitmap.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $". // End of "$Id: Fl_Bitmap.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Box.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $" // "$Id: Fl_Box.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $"
// //
// Box header file for the Fast Light Tool Kit (FLTK). // Box header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Box_H #ifndef Fl_Box_H
@ -42,5 +42,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Box.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $". // End of "$Id: Fl_Box.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Browser.H,v 1.8.2.4 2000/04/25 22:15:44 mike Exp $" // "$Id: Fl_Browser.H,v 1.8.2.5 2000/06/05 21:20:20 mike Exp $"
// //
// Browser header file for the Fast Light Tool Kit (FLTK). // Browser header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// Forms-compatable browser. Probably useful for other // Forms-compatable browser. Probably useful for other
@ -118,5 +118,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Browser.H,v 1.8.2.4 2000/04/25 22:15:44 mike Exp $". // End of "$Id: Fl_Browser.H,v 1.8.2.5 2000/06/05 21:20:20 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Browser_.H,v 1.6.2.1 2000/04/25 22:15:44 mike Exp $" // "$Id: Fl_Browser_.H,v 1.6.2.2 2000/06/05 21:20:20 mike Exp $"
// //
// Common browser header file for the Fast Light Tool Kit (FLTK). // Common browser header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// This is the base class for browsers. To be useful it must // This is the base class for browsers. To be useful it must
@ -146,5 +146,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Browser_.H,v 1.6.2.1 2000/04/25 22:15:44 mike Exp $". // End of "$Id: Fl_Browser_.H,v 1.6.2.2 2000/06/05 21:20:20 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Button.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $" // "$Id: Fl_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $"
// //
// Button header file for the Fast Light Tool Kit (FLTK). // Button header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Button_H #ifndef Fl_Button_H
@ -71,5 +71,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Button.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $". // End of "$Id: Fl_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Chart.H,v 1.6.2.1 2000/04/25 22:15:45 mike Exp $" // "$Id: Fl_Chart.H,v 1.6.2.2 2000/06/05 21:20:20 mike Exp $"
// //
// Forms chart header file for the Fast Light Tool Kit (FLTK). // Forms chart header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Chart_H #ifndef Fl_Chart_H
@ -84,5 +84,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Chart.H,v 1.6.2.1 2000/04/25 22:15:45 mike Exp $". // End of "$Id: Fl_Chart.H,v 1.6.2.2 2000/06/05 21:20:20 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Check_Button.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $" // "$Id: Fl_Check_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $"
// //
// Check button header file for the Fast Light Tool Kit (FLTK). // Check button header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Check_Button_H #ifndef Fl_Check_Button_H
@ -36,5 +36,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Check_Button.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $". // End of "$Id: Fl_Check_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Choice.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $" // "$Id: Fl_Choice.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $"
// //
// Choice header file for the Fast Light Tool Kit (FLTK). // Choice header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Choice_H #ifndef Fl_Choice_H
@ -41,5 +41,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Choice.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $". // End of "$Id: Fl_Choice.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Clock.H,v 1.6.2.1 2000/04/25 22:15:46 mike Exp $" // "$Id: Fl_Clock.H,v 1.6.2.2 2000/06/05 21:20:21 mike Exp $"
// //
// Clock header file for the Fast Light Tool Kit (FLTK). // Clock header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Clock_H #ifndef Fl_Clock_H
@ -69,5 +69,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Clock.H,v 1.6.2.1 2000/04/25 22:15:46 mike Exp $". // End of "$Id: Fl_Clock.H,v 1.6.2.2 2000/06/05 21:20:21 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Color_Chooser.H,v 1.5.2.1 2000/04/25 22:15:46 mike Exp $" // "$Id: Fl_Color_Chooser.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $"
// //
// Color chooser header file for the Fast Light Tool Kit (FLTK). // Color chooser header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// The color chooser object and the color chooser popup. The popup // The color chooser object and the color chooser popup. The popup
@ -94,5 +94,5 @@ FL_EXPORT int fl_color_chooser(const char* name, uchar& r, uchar& g, uchar& b);
#endif #endif
// //
// End of "$Id: Fl_Color_Chooser.H,v 1.5.2.1 2000/04/25 22:15:46 mike Exp $". // End of "$Id: Fl_Color_Chooser.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Counter.H,v 1.5.2.1 2000/04/25 22:15:46 mike Exp $" // "$Id: Fl_Counter.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $"
// //
// Counter header file for the Fast Light Tool Kit (FLTK). // Counter header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// A numerical value with up/down step buttons. From Forms. // A numerical value with up/down step buttons. From Forms.
@ -69,5 +69,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Counter.H,v 1.5.2.1 2000/04/25 22:15:46 mike Exp $". // End of "$Id: Fl_Counter.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Dial.H,v 1.7.2.1 2000/04/25 22:15:46 mike Exp $" // "$Id: Fl_Dial.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $"
// //
// Dial header file for the Fast Light Tool Kit (FLTK). // Dial header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Dial_H #ifndef Fl_Dial_H
@ -61,5 +61,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Dial.H,v 1.7.2.1 2000/04/25 22:15:46 mike Exp $". // End of "$Id: Fl_Dial.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Double_Window.H,v 1.7.2.1 2000/04/25 22:15:46 mike Exp $" // "$Id: Fl_Double_Window.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $"
// //
// Double-buffered window header file for the Fast Light Tool Kit (FLTK). // Double-buffered window header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Double_Window_H #ifndef Fl_Double_Window_H
@ -46,5 +46,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Double_Window.H,v 1.7.2.1 2000/04/25 22:15:46 mike Exp $". // End of "$Id: Fl_Double_Window.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Fill_Dial.H,v 1.4.2.1 2000/04/25 22:15:46 mike Exp $" // "$Id: Fl_Fill_Dial.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $"
// //
// Filled dial header file for the Fast Light Tool Kit (FLTK). // Filled dial header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Fill_Dial_H #ifndef Fl_Fill_Dial_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Fill_Dial.H,v 1.4.2.1 2000/04/25 22:15:46 mike Exp $". // End of "$Id: Fl_Fill_Dial.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Fill_Slider.H,v 1.4.2.1 2000/04/25 22:15:47 mike Exp $" // "$Id: Fl_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $"
// //
// Filled slider header file for the Fast Light Tool Kit (FLTK). // Filled slider header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Fill_Slider_H #ifndef Fl_Fill_Slider_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Fill_Slider.H,v 1.4.2.1 2000/04/25 22:15:47 mike Exp $". // End of "$Id: Fl_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Float_Input.H,v 1.4.2.1 2000/04/25 22:15:47 mike Exp $" // "$Id: Fl_Float_Input.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $"
// //
// Floating point input header file for the Fast Light Tool Kit (FLTK). // Floating point input header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Float_Input_H #ifndef Fl_Float_Input_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Float_Input.H,v 1.4.2.1 2000/04/25 22:15:47 mike Exp $". // End of "$Id: Fl_Float_Input.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_FormsBitmap.H,v 1.5.2.1 2000/04/25 22:15:47 mike Exp $" // "$Id: Fl_FormsBitmap.H,v 1.5.2.2 2000/06/05 21:20:22 mike Exp $"
// //
// Forms bitmap header file for the Fast Light Tool Kit (FLTK). // Forms bitmap header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_FormsBitmap_H #ifndef Fl_FormsBitmap_H
@ -42,5 +42,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_FormsBitmap.H,v 1.5.2.1 2000/04/25 22:15:47 mike Exp $". // End of "$Id: Fl_FormsBitmap.H,v 1.5.2.2 2000/06/05 21:20:22 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_FormsPixmap.H,v 1.5.2.1 2000/04/25 22:15:47 mike Exp $" // "$Id: Fl_FormsPixmap.H,v 1.5.2.2 2000/06/05 21:20:23 mike Exp $"
// //
// Forms pixmap header file for the Fast Light Tool Kit (FLTK). // Forms pixmap header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_FormsPixmap_H #ifndef Fl_FormsPixmap_H
@ -42,5 +42,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_FormsPixmap.H,v 1.5.2.1 2000/04/25 22:15:47 mike Exp $". // End of "$Id: Fl_FormsPixmap.H,v 1.5.2.2 2000/06/05 21:20:23 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Free.H,v 1.5.2.1 2000/04/25 22:15:47 mike Exp $" // "$Id: Fl_Free.H,v 1.5.2.2 2000/06/05 21:20:23 mike Exp $"
// //
// Forms free header file for the Fast Light Tool Kit (FLTK). // Forms free header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Free_H #ifndef Fl_Free_H
@ -59,5 +59,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Free.H,v 1.5.2.1 2000/04/25 22:15:47 mike Exp $". // End of "$Id: Fl_Free.H,v 1.5.2.2 2000/06/05 21:20:23 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Gl_Window.H,v 1.7.2.1 2000/04/25 22:15:48 mike Exp $" // "$Id: Fl_Gl_Window.H,v 1.7.2.2 2000/06/05 21:20:23 mike Exp $"
// //
// OpenGL header file for the Fast Light Tool Kit (FLTK). // OpenGL header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Gl_Window_H #ifndef Fl_Gl_Window_H
#define Fl_Gl_Window_H #define Fl_Gl_Window_H
@ -84,5 +84,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Gl_Window.H,v 1.7.2.1 2000/04/25 22:15:48 mike Exp $". // End of "$Id: Fl_Gl_Window.H,v 1.7.2.2 2000/06/05 21:20:23 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Group.H,v 1.6.2.1 2000/04/25 22:15:48 mike Exp $" // "$Id: Fl_Group.H,v 1.6.2.2 2000/06/05 21:20:23 mike Exp $"
// //
// Group header file for the Fast Light Tool Kit (FLTK). // Group header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Group_H #ifndef Fl_Group_H
@ -96,5 +96,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Group.H,v 1.6.2.1 2000/04/25 22:15:48 mike Exp $". // End of "$Id: Fl_Group.H,v 1.6.2.2 2000/06/05 21:20:23 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Hold_Browser.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $" // "$Id: Fl_Hold_Browser.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $"
// //
// Hold browser header file for the Fast Light Tool Kit (FLTK). // Hold browser header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Hold_Browser_H #ifndef Fl_Hold_Browser_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Hold_Browser.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $". // End of "$Id: Fl_Hold_Browser.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $" // "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $"
// //
// Horizontal fill slider header file for the Fast Light Tool Kit (FLTK). // Horizontal fill slider header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Hor_Fill_Slider_H #ifndef Fl_Hor_Fill_Slider_H
#define Fl_Hor_Fill_Slider_H #define Fl_Hor_Fill_Slider_H
@ -36,5 +36,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $". // End of "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $" // "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $"
// //
// Horizontal "nice" slider header file for the Fast Light Tool Kit (FLTK). // Horizontal "nice" slider header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Hor_Nice_Slider_H #ifndef Fl_Hor_Nice_Slider_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $". // End of "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Hor_Slider.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $" // "$Id: Fl_Hor_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $"
// //
// Horizontal slider header file for the Fast Light Tool Kit (FLTK). // Horizontal slider header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Hor_Slider_H #ifndef Fl_Hor_Slider_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Hor_Slider.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $". // End of "$Id: Fl_Hor_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $" // "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $"
// //
// Horizontal value slider header file for the Fast Light Tool Kit (FLTK). // Horizontal value slider header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Hor_Value_Slider_H #ifndef Fl_Hor_Value_Slider_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $". // End of "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Image.H,v 1.5.2.1 2000/04/25 22:15:49 mike Exp $" // "$Id: Fl_Image.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $"
// //
// Image header file for the Fast Light Tool Kit (FLTK). // Image header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Image_H #ifndef Fl_Image_H
@ -45,5 +45,5 @@ struct Fl_Image {
#endif #endif
// //
// End of "$Id: Fl_Image.H,v 1.5.2.1 2000/04/25 22:15:49 mike Exp $". // End of "$Id: Fl_Image.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Input.H,v 1.5.2.1 2000/04/25 22:15:49 mike Exp $" // "$Id: Fl_Input.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $"
// //
// Input header file for the Fast Light Tool Kit (FLTK). // Input header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Input_H #ifndef Fl_Input_H
@ -42,5 +42,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Input.H,v 1.5.2.1 2000/04/25 22:15:49 mike Exp $". // End of "$Id: Fl_Input.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Input_.H,v 1.6.2.1 2000/04/25 22:15:49 mike Exp $" // "$Id: Fl_Input_.H,v 1.6.2.2 2000/06/05 21:20:24 mike Exp $"
// //
// Input base class header file for the Fast Light Tool Kit (FLTK). // Input base class header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Input__H #ifndef Fl_Input__H
@ -120,5 +120,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Input_.H,v 1.6.2.1 2000/04/25 22:15:49 mike Exp $". // End of "$Id: Fl_Input_.H,v 1.6.2.2 2000/06/05 21:20:24 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Int_Input.H,v 1.4.2.1 2000/04/25 22:15:49 mike Exp $" // "$Id: Fl_Int_Input.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $"
// //
// Integer input header file for the Fast Light Tool Kit (FLTK). // Integer input header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Int_Input_H #ifndef Fl_Int_Input_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Int_Input.H,v 1.4.2.1 2000/04/25 22:15:49 mike Exp $". // End of "$Id: Fl_Int_Input.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Light_Button.H,v 1.5.2.1 2000/04/25 22:15:49 mike Exp $" // "$Id: Fl_Light_Button.H,v 1.5.2.2 2000/06/05 21:20:25 mike Exp $"
// //
// Lighted button header file for the Fast Light Tool Kit (FLTK). // Lighted button header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Light_Button_H #ifndef Fl_Light_Button_H
@ -39,5 +39,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Light_Button.H,v 1.5.2.1 2000/04/25 22:15:49 mike Exp $". // End of "$Id: Fl_Light_Button.H,v 1.5.2.2 2000/06/05 21:20:25 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Line_Dial.H,v 1.4.2.1 2000/04/25 22:15:49 mike Exp $" // "$Id: Fl_Line_Dial.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $"
// //
// Line dial header file for the Fast Light Tool Kit (FLTK). // Line dial header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Line_Dial_H #ifndef Fl_Line_Dial_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Line_Dial.H,v 1.4.2.1 2000/04/25 22:15:49 mike Exp $". // End of "$Id: Fl_Line_Dial.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Menu.H,v 1.4.2.1 2000/04/25 22:15:49 mike Exp $" // "$Id: Fl_Menu.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $"
// //
// Old menu header file for the Fast Light Tool Kit (FLTK). // Old menu header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,12 +20,12 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// this include file is for back compatability only // this include file is for back compatability only
#include "Fl_Menu_Item.H" #include "Fl_Menu_Item.H"
// //
// End of "$Id: Fl_Menu.H,v 1.4.2.1 2000/04/25 22:15:49 mike Exp $". // End of "$Id: Fl_Menu.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Menu_.H,v 1.7.2.2 2000/04/25 22:15:50 mike Exp $" // "$Id: Fl_Menu_.H,v 1.7.2.3 2000/06/05 21:20:25 mike Exp $"
// //
// Menu base class header file for the Fast Light Tool Kit (FLTK). // Menu base class header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Menu__H #ifndef Fl_Menu__H
@ -93,5 +93,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Menu_.H,v 1.7.2.2 2000/04/25 22:15:50 mike Exp $". // End of "$Id: Fl_Menu_.H,v 1.7.2.3 2000/06/05 21:20:25 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Menu_Bar.H,v 1.5.2.1 2000/04/25 22:15:50 mike Exp $" // "$Id: Fl_Menu_Bar.H,v 1.5.2.2 2000/06/05 21:20:25 mike Exp $"
// //
// Menu bar header file for the Fast Light Tool Kit (FLTK). // Menu bar header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Menu_Bar_H #ifndef Fl_Menu_Bar_H
@ -40,5 +40,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Menu_Bar.H,v 1.5.2.1 2000/04/25 22:15:50 mike Exp $". // End of "$Id: Fl_Menu_Bar.H,v 1.5.2.2 2000/06/05 21:20:25 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Menu_Button.H,v 1.5.2.1 2000/04/25 22:15:50 mike Exp $" // "$Id: Fl_Menu_Button.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $"
// //
// Menu button header file for the Fast Light Tool Kit (FLTK). // Menu button header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Menu_Button_H #ifndef Fl_Menu_Button_H
@ -42,5 +42,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Menu_Button.H,v 1.5.2.1 2000/04/25 22:15:50 mike Exp $". // End of "$Id: Fl_Menu_Button.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Menu_Item.H,v 1.5.2.2 2000/04/25 22:15:50 mike Exp $" // "$Id: Fl_Menu_Item.H,v 1.5.2.3 2000/06/05 21:20:26 mike Exp $"
// //
// Menu item header file for the Fast Light Tool Kit (FLTK). // Menu item header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Menu_Item_H #ifndef Fl_Menu_Item_H
@ -153,5 +153,5 @@ enum { // back-compatability enum:
#endif #endif
// //
// End of "$Id: Fl_Menu_Item.H,v 1.5.2.2 2000/04/25 22:15:50 mike Exp $". // End of "$Id: Fl_Menu_Item.H,v 1.5.2.3 2000/06/05 21:20:26 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Menu_Window.H,v 1.5.2.1 2000/04/25 22:15:50 mike Exp $" // "$Id: Fl_Menu_Window.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $"
// //
// Menu window header file for the Fast Light Tool Kit (FLTK). // Menu window header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Menu_Window_H #ifndef Fl_Menu_Window_H
@ -48,5 +48,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Menu_Window.H,v 1.5.2.1 2000/04/25 22:15:50 mike Exp $". // End of "$Id: Fl_Menu_Window.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Multi_Browser.H,v 1.4.2.1 2000/04/25 22:15:51 mike Exp $" // "$Id: Fl_Multi_Browser.H,v 1.4.2.2 2000/06/05 21:20:26 mike Exp $"
// //
// Multi browser header file for the Fast Light Tool Kit (FLTK). // Multi browser header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Multi_Browser_H #ifndef Fl_Multi_Browser_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Multi_Browser.H,v 1.4.2.1 2000/04/25 22:15:51 mike Exp $". // End of "$Id: Fl_Multi_Browser.H,v 1.4.2.2 2000/06/05 21:20:26 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Multi_Label.H,v 1.5.2.1 2000/04/25 22:15:51 mike Exp $" // "$Id: Fl_Multi_Label.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $"
// //
// Multi-label header file for the Fast Light Tool Kit (FLTK). // Multi-label header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Multi_Label_H #ifndef Fl_Multi_Label_H
@ -41,5 +41,5 @@ struct Fl_Multi_Label {
#endif #endif
// //
// End of "$Id: Fl_Multi_Label.H,v 1.5.2.1 2000/04/25 22:15:51 mike Exp $". // End of "$Id: Fl_Multi_Label.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Multiline_Input.H,v 1.4.2.1 2000/04/25 22:15:51 mike Exp $" // "$Id: Fl_Multiline_Input.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $"
// //
// Multiline input header file for the Fast Light Tool Kit (FLTK). // Multiline input header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Multiline_Input_H #ifndef Fl_Multiline_Input_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Multiline_Input.H,v 1.4.2.1 2000/04/25 22:15:51 mike Exp $". // End of "$Id: Fl_Multiline_Input.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Multiline_Output.H,v 1.4.2.1 2000/04/25 22:15:51 mike Exp $" // "$Id: Fl_Multiline_Output.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $"
// //
// Multi line output header file for the Fast Light Tool Kit (FLTK). // Multi line output header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Multiline_Output_H #ifndef Fl_Multiline_Output_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Multiline_Output.H,v 1.4.2.1 2000/04/25 22:15:51 mike Exp $". // End of "$Id: Fl_Multiline_Output.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Nice_Slider.H,v 1.4.2.1 2000/04/25 22:15:52 mike Exp $" // "$Id: Fl_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $"
// //
// "Nice" slider header file for the Fast Light Tool Kit (FLTK). // "Nice" slider header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Nice_Slider_H #ifndef Fl_Nice_Slider_H
#define Fl_Nice_Slider_H #define Fl_Nice_Slider_H
@ -36,5 +36,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Nice_Slider.H,v 1.4.2.1 2000/04/25 22:15:52 mike Exp $". // End of "$Id: Fl_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Object.H,v 1.4.2.1 2000/04/25 22:15:52 mike Exp $" // "$Id: Fl_Object.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $"
// //
// Old Fl_Object header file for the Fast Light Tool Kit (FLTK). // Old Fl_Object header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// This file is provided for back compatability only. Please use Fl_Widget // This file is provided for back compatability only. Please use Fl_Widget
@ -30,5 +30,5 @@
#include "Fl_Widget.H" #include "Fl_Widget.H"
// //
// End of "$Id: Fl_Object.H,v 1.4.2.1 2000/04/25 22:15:52 mike Exp $". // End of "$Id: Fl_Object.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Output.H,v 1.5.2.1 2000/04/25 22:15:52 mike Exp $" // "$Id: Fl_Output.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $"
// //
// Output header file for the Fast Light Tool Kit (FLTK). // Output header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Output_H #ifndef Fl_Output_H
@ -40,5 +40,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Output.H,v 1.5.2.1 2000/04/25 22:15:52 mike Exp $". // End of "$Id: Fl_Output.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Overlay_Window.H,v 1.5.2.1 2000/04/25 22:15:52 mike Exp $" // "$Id: Fl_Overlay_Window.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $"
// //
// Overlay window header file for the Fast Light Tool Kit (FLTK). // Overlay window header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Overlay_Window_H #ifndef Fl_Overlay_Window_H
@ -50,5 +50,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Overlay_Window.H,v 1.5.2.1 2000/04/25 22:15:52 mike Exp $". // End of "$Id: Fl_Overlay_Window.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Pack.H,v 1.5.2.1 2000/04/25 22:15:52 mike Exp $" // "$Id: Fl_Pack.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $"
// //
// Pack header file for the Fast Light Tool Kit (FLTK). // Pack header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Pack_H #ifndef Fl_Pack_H
@ -45,5 +45,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Pack.H,v 1.5.2.1 2000/04/25 22:15:52 mike Exp $". // End of "$Id: Fl_Pack.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Pixmap.H,v 1.6.2.1 2000/04/25 22:15:52 mike Exp $" // "$Id: Fl_Pixmap.H,v 1.6.2.2 2000/06/05 21:20:28 mike Exp $"
// //
// Pixmap header file for the Fast Light Tool Kit (FLTK). // Pixmap header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Pixmap_H #ifndef Fl_Pixmap_H
@ -46,5 +46,5 @@ struct Fl_Pixmap {
#endif #endif
// //
// End of "$Id: Fl_Pixmap.H,v 1.6.2.1 2000/04/25 22:15:52 mike Exp $". // End of "$Id: Fl_Pixmap.H,v 1.6.2.2 2000/06/05 21:20:28 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Positioner.H,v 1.5.2.1 2000/04/25 22:15:52 mike Exp $" // "$Id: Fl_Positioner.H,v 1.5.2.2 2000/06/05 21:20:28 mike Exp $"
// //
// Positioner header file for the Fast Light Tool Kit (FLTK). // Positioner header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Positioner_H #ifndef Fl_Positioner_H
@ -71,5 +71,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Positioner.H,v 1.5.2.1 2000/04/25 22:15:52 mike Exp $". // End of "$Id: Fl_Positioner.H,v 1.5.2.2 2000/06/05 21:20:28 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Radio_Button.H,v 1.4.2.1 2000/04/25 22:15:53 mike Exp $" // "$Id: Fl_Radio_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $"
// //
// Radio button header file for the Fast Light Tool Kit (FLTK). // Radio button header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Radio_Button_H #ifndef Fl_Radio_Button_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Radio_Button.H,v 1.4.2.1 2000/04/25 22:15:53 mike Exp $". // End of "$Id: Fl_Radio_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Radio_Light_Button.H,v 1.4.2.1 2000/04/25 22:15:53 mike Exp $" // "$Id: Fl_Radio_Light_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $"
// //
// Radio light button header file for the Fast Light Tool Kit (FLTK). // Radio light button header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Radio_Light_Button_H #ifndef Fl_Radio_Light_Button_H
#define Fl_Radio_Light_Button_H #define Fl_Radio_Light_Button_H
@ -36,5 +36,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Radio_Light_Button.H,v 1.4.2.1 2000/04/25 22:15:53 mike Exp $". // End of "$Id: Fl_Radio_Light_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Radio_Round_Button.H,v 1.4.2.1 2000/04/25 22:15:53 mike Exp $" // "$Id: Fl_Radio_Round_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $"
// //
// Radio round button header file for the Fast Light Tool Kit (FLTK). // Radio round button header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Radio_Round_Button_H #ifndef Fl_Radio_Round_Button_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Radio_Round_Button.H,v 1.4.2.1 2000/04/25 22:15:53 mike Exp $". // End of "$Id: Fl_Radio_Round_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Repeat_Button.H,v 1.5.2.3 2000/04/25 22:15:53 mike Exp $" // "$Id: Fl_Repeat_Button.H,v 1.5.2.4 2000/06/05 21:20:28 mike Exp $"
// //
// Repeat button header file for the Fast Light Tool Kit (FLTK). // Repeat button header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Repeat_Button_H #ifndef Fl_Repeat_Button_H
@ -43,5 +43,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Repeat_Button.H,v 1.5.2.3 2000/04/25 22:15:53 mike Exp $". // End of "$Id: Fl_Repeat_Button.H,v 1.5.2.4 2000/06/05 21:20:28 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Return_Button.H,v 1.5.2.1 2000/04/25 22:15:53 mike Exp $" // "$Id: Fl_Return_Button.H,v 1.5.2.2 2000/06/05 21:20:28 mike Exp $"
// //
// Return button header file for the Fast Light Tool Kit (FLTK). // Return button header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Return_Button_H #ifndef Fl_Return_Button_H
@ -39,5 +39,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Return_Button.H,v 1.5.2.1 2000/04/25 22:15:53 mike Exp $". // End of "$Id: Fl_Return_Button.H,v 1.5.2.2 2000/06/05 21:20:28 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Roller.H,v 1.5.2.1 2000/04/25 22:15:54 mike Exp $" // "$Id: Fl_Roller.H,v 1.5.2.2 2000/06/05 21:20:29 mike Exp $"
// //
// Roller header file for the Fast Light Tool Kit (FLTK). // Roller header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Roller_H #ifndef Fl_Roller_H
@ -40,5 +40,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Roller.H,v 1.5.2.1 2000/04/25 22:15:54 mike Exp $". // End of "$Id: Fl_Roller.H,v 1.5.2.2 2000/06/05 21:20:29 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Round_Button.H,v 1.5.2.1 2000/04/25 22:15:54 mike Exp $" // "$Id: Fl_Round_Button.H,v 1.5.2.2 2000/06/05 21:20:29 mike Exp $"
// //
// Round button header file for the Fast Light Tool Kit (FLTK). // Round button header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Round_Button_H #ifndef Fl_Round_Button_H
@ -36,5 +36,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Round_Button.H,v 1.5.2.1 2000/04/25 22:15:54 mike Exp $". // End of "$Id: Fl_Round_Button.H,v 1.5.2.2 2000/06/05 21:20:29 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Round_Clock.H,v 1.4.2.1 2000/04/25 22:15:54 mike Exp $" // "$Id: Fl_Round_Clock.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $"
// //
// Round clock header file for the Fast Light Tool Kit (FLTK). // Round clock header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Round_Clock_H #ifndef Fl_Round_Clock_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Round_Clock.H,v 1.4.2.1 2000/04/25 22:15:54 mike Exp $". // End of "$Id: Fl_Round_Clock.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Scroll.H,v 1.5.2.1 2000/04/25 22:15:54 mike Exp $" // "$Id: Fl_Scroll.H,v 1.5.2.2 2000/06/05 21:20:29 mike Exp $"
// //
// Scroll header file for the Fast Light Tool Kit (FLTK). // Scroll header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Scroll_H #ifndef Fl_Scroll_H
@ -72,5 +72,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Scroll.H,v 1.5.2.1 2000/04/25 22:15:54 mike Exp $". // End of "$Id: Fl_Scroll.H,v 1.5.2.2 2000/06/05 21:20:29 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Scrollbar.H,v 1.5.2.1 2000/04/25 22:15:54 mike Exp $" // "$Id: Fl_Scrollbar.H,v 1.5.2.2 2000/06/05 21:20:29 mike Exp $"
// //
// Scroll bar header file for the Fast Light Tool Kit (FLTK). // Scroll bar header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Scrollbar_H #ifndef Fl_Scrollbar_H
@ -53,5 +53,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Scrollbar.H,v 1.5.2.1 2000/04/25 22:15:54 mike Exp $". // End of "$Id: Fl_Scrollbar.H,v 1.5.2.2 2000/06/05 21:20:29 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Secret_Input.H,v 1.4.2.1 2000/04/25 22:15:54 mike Exp $" // "$Id: Fl_Secret_Input.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $"
// //
// Secret input header file for the Fast Light Tool Kit (FLTK). // Secret input header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Secret_Input_H #ifndef Fl_Secret_Input_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Secret_Input.H,v 1.4.2.1 2000/04/25 22:15:54 mike Exp $". // End of "$Id: Fl_Secret_Input.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Select_Browser.H,v 1.4.2.1 2000/04/25 22:15:55 mike Exp $" // "$Id: Fl_Select_Browser.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $"
// //
// Select browser header file for the Fast Light Tool Kit (FLTK). // Select browser header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Select_Browser_H #ifndef Fl_Select_Browser_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Select_Browser.H,v 1.4.2.1 2000/04/25 22:15:55 mike Exp $". // End of "$Id: Fl_Select_Browser.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Simple_Counter.H,v 1.4.2.1 2000/04/25 22:15:55 mike Exp $" // "$Id: Fl_Simple_Counter.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $"
// //
// Simple counter header file for the Fast Light Tool Kit (FLTK). // Simple counter header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Simple_Counter_H #ifndef Fl_Simple_Counter_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Simple_Counter.H,v 1.4.2.1 2000/04/25 22:15:55 mike Exp $". // End of "$Id: Fl_Simple_Counter.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Single_Window.H,v 1.5.2.1 2000/04/25 22:15:55 mike Exp $" // "$Id: Fl_Single_Window.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $"
// //
// Single-buffered window header file for the Fast Light Tool Kit (FLTK). // Single-buffered window header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Single_Window_H #ifndef Fl_Single_Window_H
@ -43,5 +43,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Single_Window.H,v 1.5.2.1 2000/04/25 22:15:55 mike Exp $". // End of "$Id: Fl_Single_Window.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Slider.H,v 1.5.2.1 2000/04/25 22:15:55 mike Exp $" // "$Id: Fl_Slider.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $"
// //
// Slider header file for the Fast Light Tool Kit (FLTK). // Slider header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Slider_H #ifndef Fl_Slider_H
@ -69,5 +69,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Slider.H,v 1.5.2.1 2000/04/25 22:15:55 mike Exp $". // End of "$Id: Fl_Slider.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Tabs.H,v 1.5.2.1 2000/04/25 22:15:55 mike Exp $" // "$Id: Fl_Tabs.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $"
// //
// Tab header file for the Fast Light Tool Kit (FLTK). // Tab header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Tabs_H #ifndef Fl_Tabs_H
@ -48,5 +48,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Tabs.H,v 1.5.2.1 2000/04/25 22:15:55 mike Exp $". // End of "$Id: Fl_Tabs.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Tile.H,v 1.6.2.1 2000/04/25 22:15:56 mike Exp $" // "$Id: Fl_Tile.H,v 1.6.2.2 2000/06/05 21:20:30 mike Exp $"
// //
// Tile header file for the Fast Light Tool Kit (FLTK). // Tile header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Tile_H #ifndef Fl_Tile_H
@ -39,5 +39,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Tile.H,v 1.6.2.1 2000/04/25 22:15:56 mike Exp $". // End of "$Id: Fl_Tile.H,v 1.6.2.2 2000/06/05 21:20:30 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Timer.H,v 1.5.2.1 2000/04/25 22:15:56 mike Exp $" // "$Id: Fl_Timer.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $"
// //
// Timer header file for the Fast Light Tool Kit (FLTK). // Timer header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Timer_H #ifndef Fl_Timer_H
@ -58,6 +58,6 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Timer.H,v 1.5.2.1 2000/04/25 22:15:56 mike Exp $". // End of "$Id: Fl_Timer.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Toggle_Button.H,v 1.4.2.1 2000/04/25 22:15:56 mike Exp $" // "$Id: Fl_Toggle_Button.H,v 1.4.2.2 2000/06/05 21:20:30 mike Exp $"
// //
// Toggle button header file for the Fast Light Tool Kit (FLTK). // Toggle button header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Toggle_Button_H #ifndef Fl_Toggle_Button_H
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Toggle_Button.H,v 1.4.2.1 2000/04/25 22:15:56 mike Exp $". // End of "$Id: Fl_Toggle_Button.H,v 1.4.2.2 2000/06/05 21:20:30 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Toggle_Light_Button.H,v 1.4.2.1 2000/04/25 22:15:56 mike Exp $" // "$Id: Fl_Toggle_Light_Button.H,v 1.4.2.2 2000/06/05 21:20:30 mike Exp $"
// //
// Toggle light button header file for the Fast Light Tool Kit (FLTK). // Toggle light button header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// provided for back-compatability only // provided for back-compatability only
@ -31,5 +31,5 @@
#endif #endif
// //
// End of "$Id: Fl_Toggle_Light_Button.H,v 1.4.2.1 2000/04/25 22:15:56 mike Exp $". // End of "$Id: Fl_Toggle_Light_Button.H,v 1.4.2.2 2000/06/05 21:20:30 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Toggle_Round_Button.H,v 1.4.2.1 2000/04/25 22:15:56 mike Exp $" // "$Id: Fl_Toggle_Round_Button.H,v 1.4.2.2 2000/06/05 21:20:31 mike Exp $"
// //
// Toggle round button header file for the Fast Light Tool Kit (FLTK). // Toggle round button header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// provided for back-compatability only // provided for back-compatability only
@ -31,5 +31,5 @@
#endif #endif
// //
// End of "$Id: Fl_Toggle_Round_Button.H,v 1.4.2.1 2000/04/25 22:15:56 mike Exp $". // End of "$Id: Fl_Toggle_Round_Button.H,v 1.4.2.2 2000/06/05 21:20:31 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Valuator.H,v 1.5.2.2 2000/04/25 22:15:56 mike Exp $" // "$Id: Fl_Valuator.H,v 1.5.2.3 2000/06/05 21:20:31 mike Exp $"
// //
// Valuator header file for the Fast Light Tool Kit (FLTK). // Valuator header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Valuator_H #ifndef Fl_Valuator_H
@ -80,5 +80,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Valuator.H,v 1.5.2.2 2000/04/25 22:15:56 mike Exp $". // End of "$Id: Fl_Valuator.H,v 1.5.2.3 2000/06/05 21:20:31 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Value_Input.H,v 1.5.2.1 2000/04/25 22:15:56 mike Exp $" // "$Id: Fl_Value_Input.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $"
// //
// Value input header file for the Fast Light Tool Kit (FLTK). // Value input header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Value_Input_H #ifndef Fl_Value_Input_H
@ -59,5 +59,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Value_Input.H,v 1.5.2.1 2000/04/25 22:15:56 mike Exp $". // End of "$Id: Fl_Value_Input.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Value_Output.H,v 1.5.2.1 2000/04/25 22:15:57 mike Exp $" // "$Id: Fl_Value_Output.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $"
// //
// Value output header file for the Fast Light Tool Kit (FLTK). // Value output header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Value_Output_H #ifndef Fl_Value_Output_H
@ -51,5 +51,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Value_Output.H,v 1.5.2.1 2000/04/25 22:15:57 mike Exp $". // End of "$Id: Fl_Value_Output.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Value_Slider.H,v 1.5.2.1 2000/04/25 22:15:57 mike Exp $" // "$Id: Fl_Value_Slider.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $"
// //
// Value slider header file for the Fast Light Tool Kit (FLTK). // Value slider header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Value_Slider_H #ifndef Fl_Value_Slider_H
@ -45,5 +45,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Value_Slider.H,v 1.5.2.1 2000/04/25 22:15:57 mike Exp $". // End of "$Id: Fl_Value_Slider.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Widget.H,v 1.6.2.2 2000/04/25 22:15:57 mike Exp $" // "$Id: Fl_Widget.H,v 1.6.2.3 2000/06/05 21:20:32 mike Exp $"
// //
// Widget header file for the Fast Light Tool Kit (FLTK). // Widget header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Widget_H #ifndef Fl_Widget_H
@ -191,5 +191,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Widget.H,v 1.6.2.2 2000/04/25 22:15:57 mike Exp $". // End of "$Id: Fl_Widget.H,v 1.6.2.3 2000/06/05 21:20:32 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_Window.H,v 1.12.2.3 2000/06/03 08:36:56 bill Exp $" // "$Id: Fl_Window.H,v 1.12.2.4 2000/06/05 21:20:32 mike Exp $"
// //
// Window header file for the Fast Light Tool Kit (FLTK). // Window header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Window_H #ifndef Fl_Window_H
@ -113,5 +113,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Window.H,v 1.12.2.3 2000/06/03 08:36:56 bill Exp $". // End of "$Id: Fl_Window.H,v 1.12.2.4 2000/06/05 21:20:32 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: dirent.h,v 1.5.2.1 2000/04/25 22:15:58 mike Exp $" // "$Id: dirent.h,v 1.5.2.2 2000/06/05 21:20:32 mike Exp $"
// //
// Directory header file for the Fast Light Tool Kit (FLTK). // Directory header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,12 +20,12 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// this file is for back-compatability only // this file is for back-compatability only
#include "filename.H" #include "filename.H"
// //
// End of "$Id: dirent.h,v 1.5.2.1 2000/04/25 22:15:58 mike Exp $". // End of "$Id: dirent.h,v 1.5.2.2 2000/06/05 21:20:32 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: filename.H,v 1.11.2.2 2000/04/25 22:15:58 mike Exp $" // "$Id: filename.H,v 1.11.2.3 2000/06/05 21:20:32 mike Exp $"
// //
// Filename header file for the Fast Light Tool Kit (FLTK). // Filename header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef FL_FILENAME_H #ifndef FL_FILENAME_H
@ -76,5 +76,5 @@ FL_EXPORT int filename_list(const char *d, struct dirent ***list);
#endif #endif
// //
// End of "$Id: filename.H,v 1.11.2.2 2000/04/25 22:15:58 mike Exp $". // End of "$Id: filename.H,v 1.11.2.3 2000/06/05 21:20:32 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: fl_ask.H,v 1.7.2.1 2000/04/25 22:15:58 mike Exp $" // "$Id: fl_ask.H,v 1.7.2.2 2000/06/05 21:20:32 mike Exp $"
// //
// Standard dialog header file for the Fast Light Tool Kit (FLTK). // Standard dialog header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef fl_ask_H #ifndef fl_ask_H
@ -52,5 +52,5 @@ extern FL_EXPORT const char* fl_cancel;
#endif #endif
// //
// End of "$Id: fl_ask.H,v 1.7.2.1 2000/04/25 22:15:58 mike Exp $". // End of "$Id: fl_ask.H,v 1.7.2.2 2000/06/05 21:20:32 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: fl_draw.H,v 1.9.2.3 2000/05/13 20:03:14 bill Exp $" // "$Id: fl_draw.H,v 1.9.2.4 2000/06/05 21:20:33 mike Exp $"
// //
// Portable drawing function header file for the Fast Light Tool Kit (FLTK). // Portable drawing function header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef fl_draw_H #ifndef fl_draw_H
@ -179,5 +179,5 @@ FL_EXPORT int fl_add_symbol(const char* name, void (*drawit)(Fl_Color), int scal
#endif #endif
// //
// End of "$Id: fl_draw.H,v 1.9.2.3 2000/05/13 20:03:14 bill Exp $". // End of "$Id: fl_draw.H,v 1.9.2.4 2000/06/05 21:20:33 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: fl_file_chooser.H,v 1.5.2.1 2000/04/25 22:15:59 mike Exp $" // "$Id: fl_file_chooser.H,v 1.5.2.2 2000/06/05 21:20:33 mike Exp $"
// //
// File chooser header file for the Fast Light Tool Kit (FLTK). // File chooser header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef fl_file_chooser_H #ifndef fl_file_chooser_H
@ -34,5 +34,5 @@ FL_EXPORT void fl_file_chooser_callback(void (*cb)(const char *));
#endif #endif
// //
// End of "$Id: fl_file_chooser.H,v 1.5.2.1 2000/04/25 22:15:59 mike Exp $". // End of "$Id: fl_file_chooser.H,v 1.5.2.2 2000/06/05 21:20:33 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: fl_message.H,v 1.4.2.1 2000/04/25 22:15:59 mike Exp $" // "$Id: fl_message.H,v 1.4.2.2 2000/06/05 21:20:33 mike Exp $"
// //
// Standard message header file for the Fast Light Tool Kit (FLTK). // Standard message header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,11 +20,11 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // 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_ask.H" #include "fl_ask.H"
// //
// End of "$Id: fl_message.H,v 1.4.2.1 2000/04/25 22:15:59 mike Exp $". // End of "$Id: fl_message.H,v 1.4.2.2 2000/06/05 21:20:33 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: fl_show_colormap.H,v 1.5.2.1 2000/04/25 22:15:59 mike Exp $" // "$Id: fl_show_colormap.H,v 1.5.2.2 2000/06/05 21:20:33 mike Exp $"
// //
// Colormap picker header file for the Fast Light Tool Kit (FLTK). // Colormap picker header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef fl_show_colormap_H #ifndef fl_show_colormap_H
@ -31,5 +31,5 @@ FL_EXPORT Fl_Color fl_show_colormap(Fl_Color oldcol);
#endif #endif
// //
// End of "$Id: fl_show_colormap.H,v 1.5.2.1 2000/04/25 22:15:59 mike Exp $". // End of "$Id: fl_show_colormap.H,v 1.5.2.2 2000/06/05 21:20:33 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: fl_show_input.H,v 1.4.2.1 2000/04/25 22:15:59 mike Exp $" // "$Id: fl_show_input.H,v 1.4.2.2 2000/06/05 21:20:33 mike Exp $"
// //
// Standard input dialog header file for the Fast Light Tool Kit (FLTK). // Standard input dialog header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,11 +20,11 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // 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_ask.H" #include "fl_ask.H"
// //
// End of "$Id: fl_show_input.H,v 1.4.2.1 2000/04/25 22:15:59 mike Exp $". // End of "$Id: fl_show_input.H,v 1.4.2.2 2000/06/05 21:20:33 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: forms.H,v 1.7.2.4 2000/04/25 22:15:59 mike Exp $" // "$Id: forms.H,v 1.7.2.5 2000/06/05 21:20:33 mike Exp $"
// //
// Forms emulation header file for the Fast Light Tool Kit (FLTK). // Forms emulation header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef __FORMS_H__ #ifndef __FORMS_H__
@ -838,5 +838,5 @@ inline void fl_draw() {Fl::flush();}
#endif /* define __FORMS_H__ */ #endif /* define __FORMS_H__ */
// //
// End of "$Id: forms.H,v 1.7.2.4 2000/04/25 22:15:59 mike Exp $". // End of "$Id: forms.H,v 1.7.2.5 2000/06/05 21:20:33 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: gl.h,v 1.6.2.1 2000/04/25 22:16:00 mike Exp $" // "$Id: gl.h,v 1.6.2.2 2000/06/05 21:20:34 mike Exp $"
// //
// OpenGL header file for the Fast Light Tool Kit (FLTK). // OpenGL header file for the Fast Light Tool Kit (FLTK).
// //
@ -27,7 +27,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef gl_draw_H #ifndef gl_draw_H
@ -69,5 +69,5 @@ FL_EXPORT void gl_draw_image(const uchar *, int x,int y,int w,int h, int d=3, in
#endif #endif
// //
// End of "$Id: gl.h,v 1.6.2.1 2000/04/25 22:16:00 mike Exp $". // End of "$Id: gl.h,v 1.6.2.2 2000/06/05 21:20:34 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: gl_draw.H,v 1.4.2.1 2000/04/25 22:16:00 mike Exp $" // "$Id: gl_draw.H,v 1.4.2.2 2000/06/05 21:20:34 mike Exp $"
// //
// OpenGL header file for the Fast Light Tool Kit (FLTK). // OpenGL header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,11 +20,11 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#include "gl.h" #include "gl.h"
// //
// End of "$Id: gl_draw.H,v 1.4.2.1 2000/04/25 22:16:00 mike Exp $". // End of "$Id: gl_draw.H,v 1.4.2.2 2000/06/05 21:20:34 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: glut.H,v 1.6.2.1 2000/04/25 22:16:00 mike Exp $" // "$Id: glut.H,v 1.6.2.2 2000/06/05 21:20:34 mike Exp $"
// //
// GLUT emulation header file for the Fast Light Tool Kit (FLTK). // GLUT emulation header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// Emulation of Glut using fltk. // Emulation of Glut using fltk.
@ -467,5 +467,5 @@ extern void glutSolidIcosahedron();
#endif /* __glut_h__ */ #endif /* __glut_h__ */
// //
// End of "$Id: glut.H,v 1.6.2.1 2000/04/25 22:16:00 mike Exp $". // End of "$Id: glut.H,v 1.6.2.2 2000/06/05 21:20:34 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: math.h,v 1.4.2.2 2000/04/25 22:16:00 mike Exp $" // "$Id: math.h,v 1.4.2.3 2000/06/05 21:20:34 mike Exp $"
// //
// Math header file for the Fast Light Tool Kit (FLTK). // Math header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef fl_math_h #ifndef fl_math_h
@ -57,5 +57,5 @@ inline double copysign(double a, double b) {return b<0 ? -a : a;}
#endif #endif
// //
// End of "$Id: math.h,v 1.4.2.2 2000/04/25 22:16:00 mike Exp $". // End of "$Id: math.h,v 1.4.2.3 2000/06/05 21:20:34 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
// //
// "$Id: win32.H,v 1.15.2.1 2000/04/25 22:16:00 mike Exp $" // "$Id: win32.H,v 1.15.2.2 2000/06/05 21:20:34 mike Exp $"
// //
// WIN32 header file for the Fast Light Tool Kit (FLTK). // WIN32 header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// Do not directly include this file, instead use <FL/x.H>. It will // Do not directly include this file, instead use <FL/x.H>. It will
@ -121,5 +121,5 @@ FL_EXPORT void fl_copy_offscreen(int x,int y,int w,int h,HBITMAP pixmap,int srcx
#define fl_delete_offscreen(bitmap) DeleteObject(bitmap); #define fl_delete_offscreen(bitmap) DeleteObject(bitmap);
// //
// End of "$Id: win32.H,v 1.15.2.1 2000/04/25 22:16:00 mike Exp $". // End of "$Id: win32.H,v 1.15.2.2 2000/06/05 21:20:34 mike Exp $".
// //

6
FL/x.H
View File

@ -1,5 +1,5 @@
// //
// "$Id: x.H,v 1.10.2.6 2000/04/25 22:16:00 mike Exp $" // "$Id: x.H,v 1.10.2.7 2000/06/05 21:20:34 mike Exp $"
// //
// X11 header file for the Fast Light Tool Kit (FLTK). // X11 header file for the Fast Light Tool Kit (FLTK).
// //
@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// These are internal fltk symbols that are necessary or useful for // These are internal fltk symbols that are necessary or useful for
@ -125,5 +125,5 @@ extern FL_EXPORT int fl_background_pixel; // hack into Fl_X::make_xid()
#endif #endif
// //
// End of "$Id: x.H,v 1.10.2.6 2000/04/25 22:16:00 mike Exp $". // End of "$Id: x.H,v 1.10.2.7 2000/06/05 21:20:34 mike Exp $".
// //

View File

@ -1,5 +1,5 @@
# #
# "$Id: Makefile,v 1.12.2.2 2000/04/25 22:15:39 mike Exp $" # "$Id: Makefile,v 1.12.2.3 2000/06/05 21:20:16 mike Exp $"
# #
# Top-level makefile for the Fast Light Tool Kit (FLTK). # Top-level makefile for the Fast Light Tool Kit (FLTK).
# #
@ -20,7 +20,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA. # USA.
# #
# Please report all bugs and problems to "fltk-bugs@easysw.com". # Please report all bugs and problems to "fltk-bugs@fltk.org".
# #
SHELL=/bin/sh SHELL=/bin/sh
@ -69,5 +69,5 @@ makeinclude: configure configh.in makeinclude.in
./configure ./configure
# #
# End of "$Id: Makefile,v 1.12.2.2 2000/04/25 22:15:39 mike Exp $". # End of "$Id: Makefile,v 1.12.2.3 2000/06/05 21:20:16 mike Exp $".
# #

2
README
View File

@ -1,4 +1,4 @@
README - Fast Light Tool Kit (FLTK) Version 1.0.8 README - Fast Light Tool Kit (FLTK) Version 1.0.9
------------------------------------------------- -------------------------------------------------
WHAT IS FLTK? WHAT IS FLTK?

View File

@ -1,7 +1,7 @@
dnl -*- sh -*- dnl -*- sh -*-
dnl the "configure" script is made from this by running GNU "autoconf" dnl the "configure" script is made from this by running GNU "autoconf"
dnl dnl
dnl "$Id: configure.in,v 1.33.2.13 2000/06/03 13:21:13 mike Exp $" dnl "$Id: configure.in,v 1.33.2.14 2000/06/05 21:20:16 mike Exp $"
dnl dnl
dnl Configuration script for the Fast Light Tool Kit (FLTK). dnl Configuration script for the Fast Light Tool Kit (FLTK).
dnl dnl
@ -22,7 +22,7 @@ dnl License along with this library; if not, write to the Free Software
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
dnl USA. dnl USA.
dnl dnl
dnl Please report all bugs and problems to "fltk-bugs@easysw.com". dnl Please report all bugs and problems to "fltk-bugs@fltk.org".
dnl dnl
AC_INIT(src/Fl.cxx) AC_INIT(src/Fl.cxx)
@ -256,9 +256,9 @@ else
;; ;;
*) *)
# Running some other operating system; inform the user they # Running some other operating system; inform the user they
# should contribute the necessary options to fltk-bugs@easysw.com... # should contribute the necessary options to fltk-bugs@fltk.org...
echo "Building FLTK with default compiler optimizations; contact" echo "Building FLTK with default compiler optimizations; contact"
echo "fltk-bugs@easysw.com with uname and compiler options needed" echo "fltk-bugs@fltk.org with uname and compiler options needed"
echo "for your platform, or set the CFLAGS and CXXFLAGS options" echo "for your platform, or set the CFLAGS and CXXFLAGS options"
echo "before running configure." echo "before running configure."
;; ;;
@ -277,5 +277,5 @@ AC_CONFIG_HEADER(config.h:configh.in)
AC_OUTPUT(makeinclude) AC_OUTPUT(makeinclude)
dnl dnl
dnl End of "$Id: configure.in,v 1.33.2.13 2000/06/03 13:21:13 mike Exp $". dnl End of "$Id: configure.in,v 1.33.2.14 2000/06/05 21:20:16 mike Exp $".
dnl dnl

View File

@ -1,5 +1,5 @@
# #
# "$Id: Makefile,v 1.9.2.5 2000/04/25 22:16:02 mike Exp $" # "$Id: Makefile,v 1.9.2.6 2000/06/05 21:20:35 mike Exp $"
# #
# Documentation makefile for the Fast Light Tool Kit (FLTK). # Documentation makefile for the Fast Light Tool Kit (FLTK).
# #
@ -20,10 +20,13 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA. # USA.
# #
# Please report all bugs and problems to "fltk-bugs@easysw.com". # Please report all bugs and problems to "fltk-bugs@fltk.org".
# #
# Where to find HTMLDOC (http://www.easysw.com/htmldoc)... # Get configuration stuff...
include ../makeinclude
# Where to find HTMLDOC (http://www.fltk.org/htmldoc)...
HTMLDOC = htmldoc HTMLDOC = htmldoc
# What media size to use: # What media size to use:
@ -146,5 +149,5 @@ fltk.pdf: $(HTMLFILES)
$(HTMLDOC) -f fltk.pdf --jpeg --compression=9 --duplex --verbose --toclevels 2 --titleimage FL.gif $(HTMLFILES) $(HTMLDOC) -f fltk.pdf --jpeg --compression=9 --duplex --verbose --toclevels 2 --titleimage FL.gif $(HTMLFILES)
# #
# End of "$Id: Makefile,v 1.9.2.5 2000/04/25 22:16:02 mike Exp $". # End of "$Id: Makefile,v 1.9.2.6 2000/06/05 21:20:35 mike Exp $".
# #

View File

@ -1,6 +1,6 @@
<HTML> <HTML>
<HEAD><meta name="robots" content="noindex"> <HEAD><meta name="robots" content="noindex">
<TITLE>FLTK 1.0.8 Programming Manual</TITLE> <TITLE>FLTK 1.0.9 Programming Manual</TITLE>
</HEAD> </HEAD>
<BODY> <BODY>
@ -8,8 +8,8 @@
<TR> <TR>
<TD ALIGN=CENTER VALIGN=MIDDLE><IMG SRC=FL.gif ALIGN=ABSMIDDLE></TD> <TD ALIGN=CENTER VALIGN=MIDDLE><IMG SRC=FL.gif ALIGN=ABSMIDDLE></TD>
<TD ALIGN=CENTER VALIGN=MIDDLE> <TD ALIGN=CENTER VALIGN=MIDDLE>
<H1>FLTK 1.0.8 Programming Manual</H1> <H1>FLTK 1.0.9 Programming Manual</H1>
Revision 13 by Michael Sweet, Craig P. Earls, and Bill Spitzak<BR> Revision 14 by Michael Sweet, Craig P. Earls, and Bill Spitzak<BR>
Copyright 1998-2000 by Bill Spitzak and others.<BR> Copyright 1998-2000 by Bill Spitzak and others.<BR>
</TD> </TD>
</TR> </TR>

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