Copyright 2001.

FLTK 1.0.11.


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1356 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet 2001-01-22 15:13:41 +00:00
parent b88f1b2609
commit 94788c4628
328 changed files with 1012 additions and 986 deletions

25
CHANGES
View File

@ -1,3 +1,28 @@
CHANGES SINCE FLTK 1.0.10
- Fl_Gl_Window does not set drawbuffer(BACKBUFFER) for
single-buffered windows.
- Fl_Input::replace(...) correctly updates the display
if the replaced region does not include the mark,
point, or selected region.
- Added Fl::add_check(...), Fl::remove_check, and
Fl::has_check. These are similar to idle callbacks but
are only called just before it waits for new events.
They can be used to watch for changes in global state
and respond to them.
- "accu-timer": some changes to repeat_timeout that seem
to make it accurate on Unix and Win32 at speeds up to
500000 timeouts/second (and 700000 on Linux), and
within about .001% as accurate as the system clock.
- Fix to Fl_Valuator::step() by Guillermo Andrade.
- Fixed the write-menu bug introduced in 1.0.10
CHANGES SINCE FLTK 1.0.9 CHANGES SINCE FLTK 1.0.9
- Added a strcasecmp() function to FLUID; AIX doesn't - Added a strcasecmp() function to FLUID; AIX doesn't

View File

@ -1,9 +1,9 @@
// //
// "$Id: Enumerations.H,v 1.18.2.13 2000/11/20 14:53:52 easysw Exp $" // "$Id: Enumerations.H,v 1.18.2.14 2001/01/22 15:13:37 easysw Exp $"
// //
// Enumerations for the Fast Light Tool Kit (FLTK). // Enumerations for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -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 10 #define FL_PATCH_VERSION 11
#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.13 2000/11/20 14:53:52 easysw Exp $". // End of "$Id: Enumerations.H,v 1.18.2.14 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl.H,v 1.8.2.10 2000/12/12 08:57:29 spitzak Exp $" // "$Id: Fl.H,v 1.8.2.11 2001/01/22 15:13:37 easysw Exp $"
// //
// Main header file for the Fast Light Tool Kit (FLTK). // Main header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -217,5 +217,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl.H,v 1.8.2.10 2000/12/12 08:57:29 spitzak Exp $". // End of "$Id: Fl.H,v 1.8.2.11 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Adjuster.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $" // "$Id: Fl_Adjuster.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Adjuster widget header file for the Fast Light Tool Kit (FLTK). // Adjuster widget header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -49,5 +49,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Adjuster.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $". // End of "$Id: Fl_Adjuster.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Bitmap.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $" // "$Id: Fl_Bitmap.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Bitmap header file for the Fast Light Tool Kit (FLTK). // Bitmap header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -47,5 +47,5 @@ struct Fl_Bitmap {
#endif #endif
// //
// End of "$Id: Fl_Bitmap.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $". // End of "$Id: Fl_Bitmap.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Box.H,v 1.5.2.3 2000/06/10 19:29:58 carl Exp $" // "$Id: Fl_Box.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $"
// //
// Box header file for the Fast Light Tool Kit (FLTK). // Box header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -43,5 +43,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Box.H,v 1.5.2.3 2000/06/10 19:29:58 carl Exp $". // End of "$Id: Fl_Box.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Browser.H,v 1.8.2.6 2000/08/19 17:10:47 spitzak Exp $" // "$Id: Fl_Browser.H,v 1.8.2.7 2001/01/22 15:13:37 easysw Exp $"
// //
// Browser header file for the Fast Light Tool Kit (FLTK). // Browser header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -119,5 +119,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Browser.H,v 1.8.2.6 2000/08/19 17:10:47 spitzak Exp $". // End of "$Id: Fl_Browser.H,v 1.8.2.7 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Browser_.H,v 1.6.2.3 2000/06/10 19:29:59 carl Exp $" // "$Id: Fl_Browser_.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $"
// //
// Common browser header file for the Fast Light Tool Kit (FLTK). // Common browser header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -146,5 +146,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Browser_.H,v 1.6.2.3 2000/06/10 19:29:59 carl Exp $". // End of "$Id: Fl_Browser_.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $" // "$Id: Fl_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Button header file for the Fast Light Tool Kit (FLTK). // Button header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -71,5 +71,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $". // End of "$Id: Fl_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Chart.H,v 1.6.2.2 2000/06/05 21:20:20 mike Exp $" // "$Id: Fl_Chart.H,v 1.6.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Forms chart header file for the Fast Light Tool Kit (FLTK). // Forms chart header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -84,5 +84,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Chart.H,v 1.6.2.2 2000/06/05 21:20:20 mike Exp $". // End of "$Id: Fl_Chart.H,v 1.6.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Check_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $" // "$Id: Fl_Check_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Check button header file for the Fast Light Tool Kit (FLTK). // Check button header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -36,5 +36,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Check_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $". // End of "$Id: Fl_Check_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Choice.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $" // "$Id: Fl_Choice.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Choice header file for the Fast Light Tool Kit (FLTK). // Choice header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -41,5 +41,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Choice.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $". // End of "$Id: Fl_Choice.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Clock.H,v 1.6.2.3 2000/06/10 19:29:59 carl Exp $" // "$Id: Fl_Clock.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $"
// //
// Clock header file for the Fast Light Tool Kit (FLTK). // Clock header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -69,5 +69,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Clock.H,v 1.6.2.3 2000/06/10 19:29:59 carl Exp $". // End of "$Id: Fl_Clock.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Color_Chooser.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $" // "$Id: Fl_Color_Chooser.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $"
// //
// Color chooser header file for the Fast Light Tool Kit (FLTK). // Color chooser header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -96,5 +96,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.3 2000/06/10 19:29:59 carl Exp $". // End of "$Id: Fl_Color_Chooser.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Counter.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $" // "$Id: Fl_Counter.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Counter header file for the Fast Light Tool Kit (FLTK). // Counter header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -69,5 +69,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Counter.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $". // End of "$Id: Fl_Counter.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Dial.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $" // "$Id: Fl_Dial.H,v 1.7.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Dial header file for the Fast Light Tool Kit (FLTK). // Dial header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -61,5 +61,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Dial.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $". // End of "$Id: Fl_Dial.H,v 1.7.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Double_Window.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $" // "$Id: Fl_Double_Window.H,v 1.7.2.3 2001/01/22 15:13:37 easysw 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).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -46,5 +46,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Double_Window.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $". // End of "$Id: Fl_Double_Window.H,v 1.7.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Fill_Dial.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $" // "$Id: Fl_Fill_Dial.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Filled dial header file for the Fast Light Tool Kit (FLTK). // Filled dial header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Fill_Dial.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $". // End of "$Id: Fl_Fill_Dial.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $" // "$Id: Fl_Fill_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Filled slider header file for the Fast Light Tool Kit (FLTK). // Filled slider header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $". // End of "$Id: Fl_Fill_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Float_Input.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $" // "$Id: Fl_Float_Input.H,v 1.4.2.3 2001/01/22 15:13:37 easysw 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).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Float_Input.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $". // End of "$Id: Fl_Float_Input.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_FormsBitmap.H,v 1.5.2.2 2000/06/05 21:20:22 mike Exp $" // "$Id: Fl_FormsBitmap.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Forms bitmap header file for the Fast Light Tool Kit (FLTK). // Forms bitmap header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -42,5 +42,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_FormsBitmap.H,v 1.5.2.2 2000/06/05 21:20:22 mike Exp $". // End of "$Id: Fl_FormsBitmap.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_FormsPixmap.H,v 1.5.2.2 2000/06/05 21:20:23 mike Exp $" // "$Id: Fl_FormsPixmap.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Forms pixmap header file for the Fast Light Tool Kit (FLTK). // Forms pixmap header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -42,5 +42,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_FormsPixmap.H,v 1.5.2.2 2000/06/05 21:20:23 mike Exp $". // End of "$Id: Fl_FormsPixmap.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Free.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $" // "$Id: Fl_Free.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $"
// //
// Forms free header file for the Fast Light Tool Kit (FLTK). // Forms free header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -60,5 +60,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Free.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $". // End of "$Id: Fl_Free.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Gl_Window.H,v 1.7.2.2 2000/06/05 21:20:23 mike Exp $" // "$Id: Fl_Gl_Window.H,v 1.7.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// OpenGL header file for the Fast Light Tool Kit (FLTK). // OpenGL header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -84,5 +84,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Gl_Window.H,v 1.7.2.2 2000/06/05 21:20:23 mike Exp $". // End of "$Id: Fl_Gl_Window.H,v 1.7.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Group.H,v 1.6.2.3 2000/06/10 19:29:59 carl Exp $" // "$Id: Fl_Group.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $"
// //
// Group header file for the Fast Light Tool Kit (FLTK). // Group header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -96,5 +96,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Group.H,v 1.6.2.3 2000/06/10 19:29:59 carl Exp $". // End of "$Id: Fl_Group.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Hold_Browser.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $" // "$Id: Fl_Hold_Browser.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Hold browser header file for the Fast Light Tool Kit (FLTK). // Hold browser header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Hold_Browser.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $". // End of "$Id: Fl_Hold_Browser.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $" // "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw 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).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -36,5 +36,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $". // End of "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $" // "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw 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).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $". // End of "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Hor_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $" // "$Id: Fl_Hor_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Horizontal slider header file for the Fast Light Tool Kit (FLTK). // Horizontal slider header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Hor_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $". // End of "$Id: Fl_Hor_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $" // "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw 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).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $". // End of "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Image.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $" // "$Id: Fl_Image.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Image header file for the Fast Light Tool Kit (FLTK). // Image header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -45,5 +45,5 @@ struct Fl_Image {
#endif #endif
// //
// End of "$Id: Fl_Image.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $". // End of "$Id: Fl_Image.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Input.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $" // "$Id: Fl_Input.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Input header file for the Fast Light Tool Kit (FLTK). // Input header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -42,5 +42,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Input.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $". // End of "$Id: Fl_Input.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Input_.H,v 1.6.2.3 2000/06/20 07:56:06 bill Exp $" // "$Id: Fl_Input_.H,v 1.6.2.4 2001/01/22 15:13:37 easysw 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).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -122,5 +122,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Input_.H,v 1.6.2.3 2000/06/20 07:56:06 bill Exp $". // End of "$Id: Fl_Input_.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Int_Input.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $" // "$Id: Fl_Int_Input.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Integer input header file for the Fast Light Tool Kit (FLTK). // Integer input header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Int_Input.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $". // End of "$Id: Fl_Int_Input.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Light_Button.H,v 1.5.2.2 2000/06/05 21:20:25 mike Exp $" // "$Id: Fl_Light_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Lighted button header file for the Fast Light Tool Kit (FLTK). // Lighted button header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -39,5 +39,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Light_Button.H,v 1.5.2.2 2000/06/05 21:20:25 mike Exp $". // End of "$Id: Fl_Light_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Line_Dial.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $" // "$Id: Fl_Line_Dial.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Line dial header file for the Fast Light Tool Kit (FLTK). // Line dial header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Line_Dial.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $". // End of "$Id: Fl_Line_Dial.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Menu.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $" // "$Id: Fl_Menu.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Old menu header file for the Fast Light Tool Kit (FLTK). // Old menu header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -27,5 +27,5 @@
#include "Fl_Menu_Item.H" #include "Fl_Menu_Item.H"
// //
// End of "$Id: Fl_Menu.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $". // End of "$Id: Fl_Menu.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Menu_.H,v 1.7.2.3 2000/06/05 21:20:25 mike Exp $" // "$Id: Fl_Menu_.H,v 1.7.2.4 2001/01/22 15:13:37 easysw 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).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -93,5 +93,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Menu_.H,v 1.7.2.3 2000/06/05 21:20:25 mike Exp $". // End of "$Id: Fl_Menu_.H,v 1.7.2.4 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Menu_Bar.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $" // "$Id: Fl_Menu_Bar.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $"
// //
// Menu bar header file for the Fast Light Tool Kit (FLTK). // Menu bar header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -40,5 +40,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Menu_Bar.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $". // End of "$Id: Fl_Menu_Bar.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Menu_Button.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $" // "$Id: Fl_Menu_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Menu button header file for the Fast Light Tool Kit (FLTK). // Menu button header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -42,5 +42,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Menu_Button.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $". // End of "$Id: Fl_Menu_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Menu_Item.H,v 1.5.2.3 2000/06/05 21:20:26 mike Exp $" // "$Id: Fl_Menu_Item.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $"
// //
// Menu item header file for the Fast Light Tool Kit (FLTK). // Menu item header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -153,5 +153,5 @@ enum { // back-compatability enum:
#endif #endif
// //
// End of "$Id: Fl_Menu_Item.H,v 1.5.2.3 2000/06/05 21:20:26 mike Exp $". // End of "$Id: Fl_Menu_Item.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Menu_Window.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $" // "$Id: Fl_Menu_Window.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Menu window header file for the Fast Light Tool Kit (FLTK). // Menu window header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -48,5 +48,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Menu_Window.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $". // End of "$Id: Fl_Menu_Window.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Multi_Browser.H,v 1.4.2.2 2000/06/05 21:20:26 mike Exp $" // "$Id: Fl_Multi_Browser.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Multi browser header file for the Fast Light Tool Kit (FLTK). // Multi browser header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Multi_Browser.H,v 1.4.2.2 2000/06/05 21:20:26 mike Exp $". // End of "$Id: Fl_Multi_Browser.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Multi_Label.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $" // "$Id: Fl_Multi_Label.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Multi-label header file for the Fast Light Tool Kit (FLTK). // Multi-label header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -41,5 +41,5 @@ struct Fl_Multi_Label {
#endif #endif
// //
// End of "$Id: Fl_Multi_Label.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $". // End of "$Id: Fl_Multi_Label.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Multiline_Input.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $" // "$Id: Fl_Multiline_Input.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Multiline input header file for the Fast Light Tool Kit (FLTK). // Multiline input header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Multiline_Input.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $". // End of "$Id: Fl_Multiline_Input.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Multiline_Output.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $" // "$Id: Fl_Multiline_Output.H,v 1.4.2.3 2001/01/22 15:13:37 easysw 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).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Multiline_Output.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $". // End of "$Id: Fl_Multiline_Output.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $" // "$Id: Fl_Nice_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// "Nice" slider header file for the Fast Light Tool Kit (FLTK). // "Nice" slider header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -36,5 +36,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $". // End of "$Id: Fl_Nice_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Object.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $" // "$Id: Fl_Object.H,v 1.4.2.3 2001/01/22 15:13:37 easysw 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).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -30,5 +30,5 @@
#include "Fl_Widget.H" #include "Fl_Widget.H"
// //
// End of "$Id: Fl_Object.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $". // End of "$Id: Fl_Object.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Output.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $" // "$Id: Fl_Output.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Output header file for the Fast Light Tool Kit (FLTK). // Output header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -40,5 +40,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Output.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $". // End of "$Id: Fl_Output.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Overlay_Window.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $" // "$Id: Fl_Overlay_Window.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Overlay window header file for the Fast Light Tool Kit (FLTK). // Overlay window header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -50,5 +50,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Overlay_Window.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $". // End of "$Id: Fl_Overlay_Window.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Pack.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $" // "$Id: Fl_Pack.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Pack header file for the Fast Light Tool Kit (FLTK). // Pack header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -45,5 +45,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Pack.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $". // End of "$Id: Fl_Pack.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Pixmap.H,v 1.6.2.2 2000/06/05 21:20:28 mike Exp $" // "$Id: Fl_Pixmap.H,v 1.6.2.3 2001/01/22 15:13:37 easysw Exp $"
// //
// Pixmap header file for the Fast Light Tool Kit (FLTK). // Pixmap header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -46,5 +46,5 @@ struct Fl_Pixmap {
#endif #endif
// //
// End of "$Id: Fl_Pixmap.H,v 1.6.2.2 2000/06/05 21:20:28 mike Exp $". // End of "$Id: Fl_Pixmap.H,v 1.6.2.3 2001/01/22 15:13:37 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Positioner.H,v 1.5.2.2 2000/06/05 21:20:28 mike Exp $" // "$Id: Fl_Positioner.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Positioner header file for the Fast Light Tool Kit (FLTK). // Positioner header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -71,5 +71,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Positioner.H,v 1.5.2.2 2000/06/05 21:20:28 mike Exp $". // End of "$Id: Fl_Positioner.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Radio_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $" // "$Id: Fl_Radio_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Radio button header file for the Fast Light Tool Kit (FLTK). // Radio button header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Radio_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $". // End of "$Id: Fl_Radio_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Radio_Light_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $" // "$Id: Fl_Radio_Light_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw 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).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -36,5 +36,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Radio_Light_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $". // End of "$Id: Fl_Radio_Light_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Radio_Round_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $" // "$Id: Fl_Radio_Round_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw 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).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Radio_Round_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $". // End of "$Id: Fl_Radio_Round_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Repeat_Button.H,v 1.5.2.4 2000/06/05 21:20:28 mike Exp $" // "$Id: Fl_Repeat_Button.H,v 1.5.2.5 2001/01/22 15:13:38 easysw Exp $"
// //
// Repeat button header file for the Fast Light Tool Kit (FLTK). // Repeat button header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -43,5 +43,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Repeat_Button.H,v 1.5.2.4 2000/06/05 21:20:28 mike Exp $". // End of "$Id: Fl_Repeat_Button.H,v 1.5.2.5 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Return_Button.H,v 1.5.2.2 2000/06/05 21:20:28 mike Exp $" // "$Id: Fl_Return_Button.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Return button header file for the Fast Light Tool Kit (FLTK). // Return button header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -39,5 +39,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Return_Button.H,v 1.5.2.2 2000/06/05 21:20:28 mike Exp $". // End of "$Id: Fl_Return_Button.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Roller.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $" // "$Id: Fl_Roller.H,v 1.5.2.4 2001/01/22 15:13:38 easysw Exp $"
// //
// Roller header file for the Fast Light Tool Kit (FLTK). // Roller header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -41,5 +41,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Roller.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $". // End of "$Id: Fl_Roller.H,v 1.5.2.4 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Round_Button.H,v 1.5.2.2 2000/06/05 21:20:29 mike Exp $" // "$Id: Fl_Round_Button.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Round button header file for the Fast Light Tool Kit (FLTK). // Round button header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -36,5 +36,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Round_Button.H,v 1.5.2.2 2000/06/05 21:20:29 mike Exp $". // End of "$Id: Fl_Round_Button.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Round_Clock.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $" // "$Id: Fl_Round_Clock.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Round clock header file for the Fast Light Tool Kit (FLTK). // Round clock header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Round_Clock.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $". // End of "$Id: Fl_Round_Clock.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Scroll.H,v 1.5.2.2 2000/06/05 21:20:29 mike Exp $" // "$Id: Fl_Scroll.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Scroll header file for the Fast Light Tool Kit (FLTK). // Scroll header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -72,5 +72,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Scroll.H,v 1.5.2.2 2000/06/05 21:20:29 mike Exp $". // End of "$Id: Fl_Scroll.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Scrollbar.H,v 1.5.2.3 2000/06/10 19:30:00 carl Exp $" // "$Id: Fl_Scrollbar.H,v 1.5.2.4 2001/01/22 15:13:38 easysw Exp $"
// //
// Scroll bar header file for the Fast Light Tool Kit (FLTK). // Scroll bar header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -54,5 +54,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Scrollbar.H,v 1.5.2.3 2000/06/10 19:30:00 carl Exp $". // End of "$Id: Fl_Scrollbar.H,v 1.5.2.4 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Secret_Input.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $" // "$Id: Fl_Secret_Input.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Secret input header file for the Fast Light Tool Kit (FLTK). // Secret input header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Secret_Input.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $". // End of "$Id: Fl_Secret_Input.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Select_Browser.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $" // "$Id: Fl_Select_Browser.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Select browser header file for the Fast Light Tool Kit (FLTK). // Select browser header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Select_Browser.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $". // End of "$Id: Fl_Select_Browser.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Simple_Counter.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $" // "$Id: Fl_Simple_Counter.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Simple counter header file for the Fast Light Tool Kit (FLTK). // Simple counter header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Simple_Counter.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $". // End of "$Id: Fl_Simple_Counter.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Single_Window.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $" // "$Id: Fl_Single_Window.H,v 1.5.2.3 2001/01/22 15:13:38 easysw 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).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -43,5 +43,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Single_Window.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $". // End of "$Id: Fl_Single_Window.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Slider.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $" // "$Id: Fl_Slider.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Slider header file for the Fast Light Tool Kit (FLTK). // Slider header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -69,5 +69,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Slider.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $". // End of "$Id: Fl_Slider.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Tabs.H,v 1.5.2.3 2000/06/10 19:30:00 carl Exp $" // "$Id: Fl_Tabs.H,v 1.5.2.4 2001/01/22 15:13:38 easysw Exp $"
// //
// Tab header file for the Fast Light Tool Kit (FLTK). // Tab header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -50,5 +50,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Tabs.H,v 1.5.2.3 2000/06/10 19:30:00 carl Exp $". // End of "$Id: Fl_Tabs.H,v 1.5.2.4 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Tile.H,v 1.6.2.2 2000/06/05 21:20:30 mike Exp $" // "$Id: Fl_Tile.H,v 1.6.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Tile header file for the Fast Light Tool Kit (FLTK). // Tile header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -39,5 +39,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Tile.H,v 1.6.2.2 2000/06/05 21:20:30 mike Exp $". // End of "$Id: Fl_Tile.H,v 1.6.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Timer.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $" // "$Id: Fl_Timer.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Timer header file for the Fast Light Tool Kit (FLTK). // Timer header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -58,6 +58,6 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Timer.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $". // End of "$Id: Fl_Timer.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Toggle_Button.H,v 1.4.2.2 2000/06/05 21:20:30 mike Exp $" // "$Id: Fl_Toggle_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Toggle button header file for the Fast Light Tool Kit (FLTK). // Toggle button header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Toggle_Button.H,v 1.4.2.2 2000/06/05 21:20:30 mike Exp $". // End of "$Id: Fl_Toggle_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Toggle_Light_Button.H,v 1.4.2.2 2000/06/05 21:20:30 mike Exp $" // "$Id: Fl_Toggle_Light_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw 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).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -31,5 +31,5 @@
#endif #endif
// //
// End of "$Id: Fl_Toggle_Light_Button.H,v 1.4.2.2 2000/06/05 21:20:30 mike Exp $". // End of "$Id: Fl_Toggle_Light_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Toggle_Round_Button.H,v 1.4.2.2 2000/06/05 21:20:31 mike Exp $" // "$Id: Fl_Toggle_Round_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw 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).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -31,5 +31,5 @@
#endif #endif
// //
// End of "$Id: Fl_Toggle_Round_Button.H,v 1.4.2.2 2000/06/05 21:20:31 mike Exp $". // End of "$Id: Fl_Toggle_Round_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Valuator.H,v 1.5.2.4 2000/07/29 23:52:04 spitzak Exp $" // "$Id: Fl_Valuator.H,v 1.5.2.5 2001/01/22 15:13:38 easysw Exp $"
// //
// Valuator header file for the Fast Light Tool Kit (FLTK). // Valuator header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -80,5 +80,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Valuator.H,v 1.5.2.4 2000/07/29 23:52:04 spitzak Exp $". // End of "$Id: Fl_Valuator.H,v 1.5.2.5 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Value_Input.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $" // "$Id: Fl_Value_Input.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Value input header file for the Fast Light Tool Kit (FLTK). // Value input header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -59,5 +59,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Value_Input.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $". // End of "$Id: Fl_Value_Input.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Value_Output.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $" // "$Id: Fl_Value_Output.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Value output header file for the Fast Light Tool Kit (FLTK). // Value output header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -51,5 +51,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Value_Output.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $". // End of "$Id: Fl_Value_Output.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Value_Slider.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $" // "$Id: Fl_Value_Slider.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Value slider header file for the Fast Light Tool Kit (FLTK). // Value slider header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -45,5 +45,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Value_Slider.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $". // End of "$Id: Fl_Value_Slider.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Widget.H,v 1.6.2.3 2000/06/05 21:20:32 mike Exp $" // "$Id: Fl_Widget.H,v 1.6.2.4 2001/01/22 15:13:38 easysw Exp $"
// //
// Widget header file for the Fast Light Tool Kit (FLTK). // Widget header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -191,5 +191,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Widget.H,v 1.6.2.3 2000/06/05 21:20:32 mike Exp $". // End of "$Id: Fl_Widget.H,v 1.6.2.4 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: Fl_Window.H,v 1.12.2.4 2000/06/05 21:20:32 mike Exp $" // "$Id: Fl_Window.H,v 1.12.2.5 2001/01/22 15:13:38 easysw Exp $"
// //
// Window header file for the Fast Light Tool Kit (FLTK). // Window header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -113,5 +113,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Window.H,v 1.12.2.4 2000/06/05 21:20:32 mike Exp $". // End of "$Id: Fl_Window.H,v 1.12.2.5 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: dirent.h,v 1.5.2.2 2000/06/05 21:20:32 mike Exp $" // "$Id: dirent.h,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Directory header file for the Fast Light Tool Kit (FLTK). // Directory header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -27,5 +27,5 @@
#include "filename.H" #include "filename.H"
// //
// End of "$Id: dirent.h,v 1.5.2.2 2000/06/05 21:20:32 mike Exp $". // End of "$Id: dirent.h,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: filename.H,v 1.11.2.3 2000/06/05 21:20:32 mike Exp $" // "$Id: filename.H,v 1.11.2.4 2001/01/22 15:13:38 easysw Exp $"
// //
// Filename header file for the Fast Light Tool Kit (FLTK). // Filename header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -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.3 2000/06/05 21:20:32 mike Exp $". // End of "$Id: filename.H,v 1.11.2.4 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: fl_ask.H,v 1.7.2.2 2000/06/05 21:20:32 mike Exp $" // "$Id: fl_ask.H,v 1.7.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Standard dialog header file for the Fast Light Tool Kit (FLTK). // Standard dialog header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -52,5 +52,5 @@ extern FL_EXPORT const char* fl_cancel;
#endif #endif
// //
// End of "$Id: fl_ask.H,v 1.7.2.2 2000/06/05 21:20:32 mike Exp $". // End of "$Id: fl_ask.H,v 1.7.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: fl_draw.H,v 1.9.2.4 2000/06/05 21:20:33 mike Exp $" // "$Id: fl_draw.H,v 1.9.2.5 2001/01/22 15:13:38 easysw 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).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -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.4 2000/06/05 21:20:33 mike Exp $". // End of "$Id: fl_draw.H,v 1.9.2.5 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: fl_file_chooser.H,v 1.5.2.2 2000/06/05 21:20:33 mike Exp $" // "$Id: fl_file_chooser.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// File chooser header file for the Fast Light Tool Kit (FLTK). // File chooser header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -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.2 2000/06/05 21:20:33 mike Exp $". // End of "$Id: fl_file_chooser.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: fl_message.H,v 1.4.2.2 2000/06/05 21:20:33 mike Exp $" // "$Id: fl_message.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Standard message header file for the Fast Light Tool Kit (FLTK). // Standard message header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -26,5 +26,5 @@
#include "fl_ask.H" #include "fl_ask.H"
// //
// End of "$Id: fl_message.H,v 1.4.2.2 2000/06/05 21:20:33 mike Exp $". // End of "$Id: fl_message.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: fl_show_colormap.H,v 1.5.2.2 2000/06/05 21:20:33 mike Exp $" // "$Id: fl_show_colormap.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// Colormap picker header file for the Fast Light Tool Kit (FLTK). // Colormap picker header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -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.2 2000/06/05 21:20:33 mike Exp $". // End of "$Id: fl_show_colormap.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: fl_show_input.H,v 1.4.2.2 2000/06/05 21:20:33 mike Exp $" // "$Id: fl_show_input.H,v 1.4.2.3 2001/01/22 15:13:38 easysw 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).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -26,5 +26,5 @@
#include "fl_ask.H" #include "fl_ask.H"
// //
// End of "$Id: fl_show_input.H,v 1.4.2.2 2000/06/05 21:20:33 mike Exp $". // End of "$Id: fl_show_input.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: forms.H,v 1.7.2.5 2000/06/05 21:20:33 mike Exp $" // "$Id: forms.H,v 1.7.2.6 2001/01/22 15:13:38 easysw Exp $"
// //
// Forms emulation header file for the Fast Light Tool Kit (FLTK). // Forms emulation header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -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.5 2000/06/05 21:20:33 mike Exp $". // End of "$Id: forms.H,v 1.7.2.6 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: gl.h,v 1.6.2.3 2000/11/28 15:32:07 spitzak Exp $" // "$Id: gl.h,v 1.6.2.4 2001/01/22 15:13:38 easysw Exp $"
// //
// OpenGL header file for the Fast Light Tool Kit (FLTK). // OpenGL header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// You must include this instead of GL/gl.h to get the Microsoft // You must include this instead of GL/gl.h to get the Microsoft
// APIENTRY stuff included (from <windows.h>) prior to the OpenGL // APIENTRY stuff included (from <windows.h>) prior to the OpenGL
@ -76,5 +76,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.3 2000/11/28 15:32:07 spitzak Exp $". // End of "$Id: gl.h,v 1.6.2.4 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: gl_draw.H,v 1.4.2.2 2000/06/05 21:20:34 mike Exp $" // "$Id: gl_draw.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// OpenGL header file for the Fast Light Tool Kit (FLTK). // OpenGL header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -26,5 +26,5 @@
#include "gl.h" #include "gl.h"
// //
// End of "$Id: gl_draw.H,v 1.4.2.2 2000/06/05 21:20:34 mike Exp $". // End of "$Id: gl_draw.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: glut.H,v 1.6.2.8 2000/12/12 08:57:30 spitzak Exp $" // "$Id: glut.H,v 1.6.2.9 2001/01/22 15:13:38 easysw Exp $"
// //
// GLUT emulation header file for the Fast Light Tool Kit (FLTK). // GLUT emulation header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -470,5 +470,5 @@ extern void APIENTRY glutSolidIcosahedron();
#endif /* __glut_h__ */ #endif /* __glut_h__ */
// //
// End of "$Id: glut.H,v 1.6.2.8 2000/12/12 08:57:30 spitzak Exp $". // End of "$Id: glut.H,v 1.6.2.9 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: math.h,v 1.4.2.3 2000/06/05 21:20:34 mike Exp $" // "$Id: math.h,v 1.4.2.4 2001/01/22 15:13:38 easysw Exp $"
// //
// Math header file for the Fast Light Tool Kit (FLTK). // Math header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -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.3 2000/06/05 21:20:34 mike Exp $". // End of "$Id: math.h,v 1.4.2.4 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
// //
// "$Id: win32.H,v 1.15.2.2 2000/06/05 21:20:34 mike Exp $" // "$Id: win32.H,v 1.15.2.3 2001/01/22 15:13:38 easysw Exp $"
// //
// WIN32 header file for the Fast Light Tool Kit (FLTK). // WIN32 header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -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.2 2000/06/05 21:20:34 mike Exp $". // End of "$Id: win32.H,v 1.15.2.3 2001/01/22 15:13:38 easysw Exp $".
// //

6
FL/x.H
View File

@ -1,9 +1,9 @@
// //
// "$Id: x.H,v 1.10.2.7 2000/06/05 21:20:34 mike Exp $" // "$Id: x.H,v 1.10.2.8 2001/01/22 15:13:38 easysw Exp $"
// //
// X11 header file for the Fast Light Tool Kit (FLTK). // X11 header file for the Fast Light Tool Kit (FLTK).
// //
// Copyright 1998-2000 by Bill Spitzak and others. // Copyright 1998-2001 by Bill Spitzak and others.
// //
// This library is free software; you can redistribute it and/or // This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public // modify it under the terms of the GNU Library General Public
@ -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.7 2000/06/05 21:20:34 mike Exp $". // End of "$Id: x.H,v 1.10.2.8 2001/01/22 15:13:38 easysw Exp $".
// //

View File

@ -1,9 +1,9 @@
# #
# "$Id: Makefile,v 1.12.2.4 2000/06/30 04:23:12 spitzak Exp $" # "$Id: Makefile,v 1.12.2.5 2001/01/22 15:13:37 easysw Exp $"
# #
# Top-level makefile for the Fast Light Tool Kit (FLTK). # Top-level makefile for the Fast Light Tool Kit (FLTK).
# #
# Copyright 1998-2000 by Bill Spitzak and others. # Copyright 1998-2001 by Bill Spitzak and others.
# #
# This library is free software; you can redistribute it and/or # This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public # modify it under the terms of the GNU Library General Public
@ -69,5 +69,5 @@ makeinclude: configure configh.in makeinclude.in
./configure ./configure
# #
# End of "$Id: Makefile,v 1.12.2.4 2000/06/30 04:23:12 spitzak Exp $". # End of "$Id: Makefile,v 1.12.2.5 2001/01/22 15:13:37 easysw Exp $".
# #

7
README
View File

@ -1,4 +1,4 @@
README - Fast Light Tool Kit (FLTK) Version 1.0.10 README - Fast Light Tool Kit (FLTK) Version 1.0.11
-------------------------------------------------- --------------------------------------------------
WHAT IS FLTK? WHAT IS FLTK?
@ -134,7 +134,8 @@ REPORTING BUGS
To report a bug in FLTK, send an email to To report a bug in FLTK, send an email to
"fltk-bugs@fltk.org". Please include the FLTK version, "fltk-bugs@fltk.org". Please include the FLTK version,
operating system & version, and compiler that you are using operating system & version, and compiler that you are using
when describing the bug or problem. when describing the bug or problem. You can also submit a
bug on the SourceForge pages.
For general support and questions, please use the FLTK For general support and questions, please use the FLTK
mailing list at "fltk@fltk.org". mailing list at "fltk@fltk.org".
@ -165,7 +166,7 @@ TRADEMARKS
COPYRIGHT COPYRIGHT
FLTK is copyright 1998-2000 by Bill Spitzak (spitzak@d2.com) FLTK is copyright 1998-2001 by Bill Spitzak (spitzak@d2.com)
and others, including: and others, including:
Craig P. Earls (cpearls@mit.edu) Craig P. Earls (cpearls@mit.edu)

View File

@ -1,9 +1,9 @@
/* /*
* "$Id: config.h,v 1.1.2.2 2000/04/25 22:16:01 mike Exp $" * "$Id: config.h,v 1.1.2.3 2001/01/22 15:13:38 easysw Exp $"
* *
* Configuration file for the Fast Light Tool Kit (FLTK). * Configuration file for the Fast Light Tool Kit (FLTK).
* *
* Copyright 1998-2000 by Bill Spitzak and others. * Copyright 1998-2001 by Bill Spitzak and others.
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public * modify it under the terms of the GNU Library General Public
@ -150,5 +150,5 @@
#define HAVE_POLL 0 #define HAVE_POLL 0
/* /*
* End of "$Id: config.h,v 1.1.2.2 2000/04/25 22:16:01 mike Exp $". * End of "$Id: config.h,v 1.1.2.3 2001/01/22 15:13:38 easysw Exp $".
*/ */

View File

@ -1,10 +1,10 @@
/* /*
* "$Id: configh.in,v 1.11.2.6 2000/11/20 15:44:17 easysw Exp $" * "$Id: configh.in,v 1.11.2.7 2001/01/22 15:13:37 easysw Exp $"
* *
* Configuration file for the Fast Light Tool Kit (FLTK). * Configuration file for the Fast Light Tool Kit (FLTK).
* @configure_input@ * @configure_input@
* *
* Copyright 1998-2000 by Bill Spitzak and others. * Copyright 1998-2001 by Bill Spitzak and others.
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public * modify it under the terms of the GNU Library General Public
@ -159,5 +159,5 @@
#define USE_POLL 0 #define USE_POLL 0
/* /*
* End of "$Id: configh.in,v 1.11.2.6 2000/11/20 15:44:17 easysw Exp $". * End of "$Id: configh.in,v 1.11.2.7 2001/01/22 15:13:37 easysw Exp $".
*/ */

View File

@ -1,11 +1,11 @@
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.21 2000/12/06 21:09:59 easysw Exp $" dnl "$Id: configure.in,v 1.33.2.22 2001/01/22 15:13:37 easysw 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
dnl Copyright 1998-2000 by Bill Spitzak and others. dnl Copyright 1998-2001 by Bill Spitzak and others.
dnl dnl
dnl This library is free software; you can redistribute it and/or dnl This library is free software; you can redistribute it and/or
dnl modify it under the terms of the GNU Library General Public dnl modify it under the terms of the GNU Library General Public
@ -281,5 +281,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.21 2000/12/06 21:09:59 easysw Exp $". dnl End of "$Id: configure.in,v 1.33.2.22 2001/01/22 15:13:37 easysw Exp $".
dnl dnl

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