diff --git a/CHANGES b/CHANGES index 3b9261292..e0fc3eb6a 100644 --- a/CHANGES +++ b/CHANGES @@ -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 - Added a strcasecmp() function to FLUID; AIX doesn't diff --git a/FL/Enumerations.H b/FL/Enumerations.H index 97fd66479..71188640f 100644 --- a/FL/Enumerations.H +++ b/FL/Enumerations.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -56,7 +56,7 @@ #define FL_MAJOR_VERSION 1 #define FL_MINOR_VERSION 0 -#define FL_PATCH_VERSION 10 +#define FL_PATCH_VERSION 11 #define FL_VERSION ((double)FL_MAJOR_VERSION + \ (double)FL_MINOR_VERSION * 0.01 + \ (double)FL_PATCH_VERSION * 0.0001) @@ -371,5 +371,5 @@ enum Fl_Damage { #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 $". // diff --git a/FL/Fl.H b/FL/Fl.H index a674d61f1..e839c139a 100644 --- a/FL/Fl.H +++ b/FL/Fl.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -217,5 +217,5 @@ public: #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 $". // diff --git a/FL/Fl_Adjuster.H b/FL/Fl_Adjuster.H index 123956fe6..03e3b33b2 100644 --- a/FL/Fl_Adjuster.H +++ b/FL/Fl_Adjuster.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -49,5 +49,5 @@ public: #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 $". // diff --git a/FL/Fl_Bitmap.H b/FL/Fl_Bitmap.H index d9d45d817..994b31d2f 100644 --- a/FL/Fl_Bitmap.H +++ b/FL/Fl_Bitmap.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -47,5 +47,5 @@ struct Fl_Bitmap { #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 $". // diff --git a/FL/Fl_Box.H b/FL/Fl_Box.H index 3dec60de6..9eeea02c3 100644 --- a/FL/Fl_Box.H +++ b/FL/Fl_Box.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -43,5 +43,5 @@ public: #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 $". // diff --git a/FL/Fl_Browser.H b/FL/Fl_Browser.H index 735e13e92..e23073324 100644 --- a/FL/Fl_Browser.H +++ b/FL/Fl_Browser.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -119,5 +119,5 @@ public: #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 $". // diff --git a/FL/Fl_Browser_.H b/FL/Fl_Browser_.H index 9bfe5cc27..61aa17c53 100644 --- a/FL/Fl_Browser_.H +++ b/FL/Fl_Browser_.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -146,5 +146,5 @@ public: #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 $". // diff --git a/FL/Fl_Button.H b/FL/Fl_Button.H index f5eb0aba7..32a361099 100644 --- a/FL/Fl_Button.H +++ b/FL/Fl_Button.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -71,5 +71,5 @@ public: #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 $". // diff --git a/FL/Fl_Chart.H b/FL/Fl_Chart.H index 52d077c9d..4ae92d0c9 100644 --- a/FL/Fl_Chart.H +++ b/FL/Fl_Chart.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -84,5 +84,5 @@ public: #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 $". // diff --git a/FL/Fl_Check_Button.H b/FL/Fl_Check_Button.H index e1ca41856..7726772a5 100644 --- a/FL/Fl_Check_Button.H +++ b/FL/Fl_Check_Button.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -36,5 +36,5 @@ public: #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 $". // diff --git a/FL/Fl_Choice.H b/FL/Fl_Choice.H index 90ceb8577..7835b9856 100644 --- a/FL/Fl_Choice.H +++ b/FL/Fl_Choice.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -41,5 +41,5 @@ public: #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 $". // diff --git a/FL/Fl_Clock.H b/FL/Fl_Clock.H index c665c733a..a023d74dc 100644 --- a/FL/Fl_Clock.H +++ b/FL/Fl_Clock.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -69,5 +69,5 @@ public: #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 $". // diff --git a/FL/Fl_Color_Chooser.H b/FL/Fl_Color_Chooser.H index d882a3891..b089cccf4 100644 --- a/FL/Fl_Color_Chooser.H +++ b/FL/Fl_Color_Chooser.H @@ -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). // -// 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 // 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 // -// 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 $". // diff --git a/FL/Fl_Counter.H b/FL/Fl_Counter.H index 025e0860e..4453c9f1c 100644 --- a/FL/Fl_Counter.H +++ b/FL/Fl_Counter.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -69,5 +69,5 @@ public: #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 $". // diff --git a/FL/Fl_Dial.H b/FL/Fl_Dial.H index eddb36c06..acc71309f 100644 --- a/FL/Fl_Dial.H +++ b/FL/Fl_Dial.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -61,5 +61,5 @@ public: #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 $". // diff --git a/FL/Fl_Double_Window.H b/FL/Fl_Double_Window.H index 1aebda095..6cf892933 100644 --- a/FL/Fl_Double_Window.H +++ b/FL/Fl_Double_Window.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -46,5 +46,5 @@ public: #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 $". // diff --git a/FL/Fl_Fill_Dial.H b/FL/Fl_Fill_Dial.H index 64dd80e81..c66e39956 100644 --- a/FL/Fl_Fill_Dial.H +++ b/FL/Fl_Fill_Dial.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Fill_Slider.H b/FL/Fl_Fill_Slider.H index cf21b4366..0169ab068 100644 --- a/FL/Fl_Fill_Slider.H +++ b/FL/Fl_Fill_Slider.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Float_Input.H b/FL/Fl_Float_Input.H index b656ee1f8..b2087a2c6 100644 --- a/FL/Fl_Float_Input.H +++ b/FL/Fl_Float_Input.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_FormsBitmap.H b/FL/Fl_FormsBitmap.H index dc208be95..9cca91e93 100644 --- a/FL/Fl_FormsBitmap.H +++ b/FL/Fl_FormsBitmap.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -42,5 +42,5 @@ public: #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 $". // diff --git a/FL/Fl_FormsPixmap.H b/FL/Fl_FormsPixmap.H index 8974991fd..d8c0bcc6b 100644 --- a/FL/Fl_FormsPixmap.H +++ b/FL/Fl_FormsPixmap.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -42,5 +42,5 @@ public: #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 $". // diff --git a/FL/Fl_Free.H b/FL/Fl_Free.H index c357a7373..6061fb556 100644 --- a/FL/Fl_Free.H +++ b/FL/Fl_Free.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -60,5 +60,5 @@ public: #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 $". // diff --git a/FL/Fl_Gl_Window.H b/FL/Fl_Gl_Window.H index c547fc69d..0951f3a10 100644 --- a/FL/Fl_Gl_Window.H +++ b/FL/Fl_Gl_Window.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -84,5 +84,5 @@ public: #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 $". // diff --git a/FL/Fl_Group.H b/FL/Fl_Group.H index 803dd89fe..10e0dd167 100644 --- a/FL/Fl_Group.H +++ b/FL/Fl_Group.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -96,5 +96,5 @@ public: #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 $". // diff --git a/FL/Fl_Hold_Browser.H b/FL/Fl_Hold_Browser.H index 4ce897166..0e70c9f6a 100644 --- a/FL/Fl_Hold_Browser.H +++ b/FL/Fl_Hold_Browser.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Hor_Fill_Slider.H b/FL/Fl_Hor_Fill_Slider.H index 22ed88159..5493dd4dd 100644 --- a/FL/Fl_Hor_Fill_Slider.H +++ b/FL/Fl_Hor_Fill_Slider.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -36,5 +36,5 @@ public: #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 $". // diff --git a/FL/Fl_Hor_Nice_Slider.H b/FL/Fl_Hor_Nice_Slider.H index 5f6934e48..5e1d6629c 100644 --- a/FL/Fl_Hor_Nice_Slider.H +++ b/FL/Fl_Hor_Nice_Slider.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Hor_Slider.H b/FL/Fl_Hor_Slider.H index 4b5c1b644..cd47e021d 100644 --- a/FL/Fl_Hor_Slider.H +++ b/FL/Fl_Hor_Slider.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Hor_Value_Slider.H b/FL/Fl_Hor_Value_Slider.H index 85afbeebd..30df70b6c 100644 --- a/FL/Fl_Hor_Value_Slider.H +++ b/FL/Fl_Hor_Value_Slider.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Image.H b/FL/Fl_Image.H index b23bc50cb..8e7bb219c 100644 --- a/FL/Fl_Image.H +++ b/FL/Fl_Image.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -45,5 +45,5 @@ struct Fl_Image { #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 $". // diff --git a/FL/Fl_Input.H b/FL/Fl_Input.H index 25a8ca52f..3cada2892 100644 --- a/FL/Fl_Input.H +++ b/FL/Fl_Input.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -42,5 +42,5 @@ public: #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 $". // diff --git a/FL/Fl_Input_.H b/FL/Fl_Input_.H index 5151e8207..d44a3f8e3 100644 --- a/FL/Fl_Input_.H +++ b/FL/Fl_Input_.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -122,5 +122,5 @@ public: #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 $". // diff --git a/FL/Fl_Int_Input.H b/FL/Fl_Int_Input.H index 442d21a0e..f0892cb30 100644 --- a/FL/Fl_Int_Input.H +++ b/FL/Fl_Int_Input.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Light_Button.H b/FL/Fl_Light_Button.H index 63da57c3f..0f6a15c87 100644 --- a/FL/Fl_Light_Button.H +++ b/FL/Fl_Light_Button.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -39,5 +39,5 @@ public: #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 $". // diff --git a/FL/Fl_Line_Dial.H b/FL/Fl_Line_Dial.H index c1257295f..d822c30d8 100644 --- a/FL/Fl_Line_Dial.H +++ b/FL/Fl_Line_Dial.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Menu.H b/FL/Fl_Menu.H index bd7d7e689..a66c5822e 100644 --- a/FL/Fl_Menu.H +++ b/FL/Fl_Menu.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -27,5 +27,5 @@ #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 $". // diff --git a/FL/Fl_Menu_.H b/FL/Fl_Menu_.H index 242cc3068..5850e9421 100644 --- a/FL/Fl_Menu_.H +++ b/FL/Fl_Menu_.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -93,5 +93,5 @@ public: #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 $". // diff --git a/FL/Fl_Menu_Bar.H b/FL/Fl_Menu_Bar.H index 4ff4904a6..7a5fe136f 100644 --- a/FL/Fl_Menu_Bar.H +++ b/FL/Fl_Menu_Bar.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -40,5 +40,5 @@ public: #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 $". // diff --git a/FL/Fl_Menu_Button.H b/FL/Fl_Menu_Button.H index a1fd0f64c..29fee8321 100644 --- a/FL/Fl_Menu_Button.H +++ b/FL/Fl_Menu_Button.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -42,5 +42,5 @@ public: #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 $". // diff --git a/FL/Fl_Menu_Item.H b/FL/Fl_Menu_Item.H index cd0b63b96..2f4e2cb8d 100644 --- a/FL/Fl_Menu_Item.H +++ b/FL/Fl_Menu_Item.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -153,5 +153,5 @@ enum { // back-compatability enum: #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 $". // diff --git a/FL/Fl_Menu_Window.H b/FL/Fl_Menu_Window.H index ba4f05809..a5173792a 100644 --- a/FL/Fl_Menu_Window.H +++ b/FL/Fl_Menu_Window.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -48,5 +48,5 @@ public: #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 $". // diff --git a/FL/Fl_Multi_Browser.H b/FL/Fl_Multi_Browser.H index 0f537b841..0fb54e04b 100644 --- a/FL/Fl_Multi_Browser.H +++ b/FL/Fl_Multi_Browser.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Multi_Label.H b/FL/Fl_Multi_Label.H index 759d759eb..57659e559 100644 --- a/FL/Fl_Multi_Label.H +++ b/FL/Fl_Multi_Label.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -41,5 +41,5 @@ struct Fl_Multi_Label { #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 $". // diff --git a/FL/Fl_Multiline_Input.H b/FL/Fl_Multiline_Input.H index 0a5ab4f8e..f55cb2c1f 100644 --- a/FL/Fl_Multiline_Input.H +++ b/FL/Fl_Multiline_Input.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Multiline_Output.H b/FL/Fl_Multiline_Output.H index d912acebf..56ab27316 100644 --- a/FL/Fl_Multiline_Output.H +++ b/FL/Fl_Multiline_Output.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Nice_Slider.H b/FL/Fl_Nice_Slider.H index ea412573c..3cf996e4f 100644 --- a/FL/Fl_Nice_Slider.H +++ b/FL/Fl_Nice_Slider.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -36,5 +36,5 @@ public: #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 $". // diff --git a/FL/Fl_Object.H b/FL/Fl_Object.H index 89ee58379..3e061c37e 100644 --- a/FL/Fl_Object.H +++ b/FL/Fl_Object.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -30,5 +30,5 @@ #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 $". // diff --git a/FL/Fl_Output.H b/FL/Fl_Output.H index a9c1acf50..0ef155247 100644 --- a/FL/Fl_Output.H +++ b/FL/Fl_Output.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -40,5 +40,5 @@ public: #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 $". // diff --git a/FL/Fl_Overlay_Window.H b/FL/Fl_Overlay_Window.H index a01b679aa..48e905623 100644 --- a/FL/Fl_Overlay_Window.H +++ b/FL/Fl_Overlay_Window.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -50,5 +50,5 @@ public: #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 $". // diff --git a/FL/Fl_Pack.H b/FL/Fl_Pack.H index ba6d1f5d4..89ec4886d 100644 --- a/FL/Fl_Pack.H +++ b/FL/Fl_Pack.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -45,5 +45,5 @@ public: #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 $". // diff --git a/FL/Fl_Pixmap.H b/FL/Fl_Pixmap.H index e80a2e7b7..82eb406a4 100644 --- a/FL/Fl_Pixmap.H +++ b/FL/Fl_Pixmap.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -46,5 +46,5 @@ struct Fl_Pixmap { #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 $". // diff --git a/FL/Fl_Positioner.H b/FL/Fl_Positioner.H index 911023112..a11e9c147 100644 --- a/FL/Fl_Positioner.H +++ b/FL/Fl_Positioner.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -71,5 +71,5 @@ public: #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 $". // diff --git a/FL/Fl_Radio_Button.H b/FL/Fl_Radio_Button.H index 75d5d409c..40d513ba7 100644 --- a/FL/Fl_Radio_Button.H +++ b/FL/Fl_Radio_Button.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Radio_Light_Button.H b/FL/Fl_Radio_Light_Button.H index 9feb39602..6b0795bdb 100644 --- a/FL/Fl_Radio_Light_Button.H +++ b/FL/Fl_Radio_Light_Button.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -36,5 +36,5 @@ public: #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 $". // diff --git a/FL/Fl_Radio_Round_Button.H b/FL/Fl_Radio_Round_Button.H index 08cef1414..b6331df05 100644 --- a/FL/Fl_Radio_Round_Button.H +++ b/FL/Fl_Radio_Round_Button.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Repeat_Button.H b/FL/Fl_Repeat_Button.H index b8566bebf..1249b6f15 100644 --- a/FL/Fl_Repeat_Button.H +++ b/FL/Fl_Repeat_Button.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -43,5 +43,5 @@ public: #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 $". // diff --git a/FL/Fl_Return_Button.H b/FL/Fl_Return_Button.H index dbaf4533d..92d63da7e 100644 --- a/FL/Fl_Return_Button.H +++ b/FL/Fl_Return_Button.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -39,5 +39,5 @@ public: #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 $". // diff --git a/FL/Fl_Roller.H b/FL/Fl_Roller.H index ed8eed239..71517af40 100644 --- a/FL/Fl_Roller.H +++ b/FL/Fl_Roller.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -41,5 +41,5 @@ public: #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 $". // diff --git a/FL/Fl_Round_Button.H b/FL/Fl_Round_Button.H index a75c1f1fe..978d7ba46 100644 --- a/FL/Fl_Round_Button.H +++ b/FL/Fl_Round_Button.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -36,5 +36,5 @@ public: #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 $". // diff --git a/FL/Fl_Round_Clock.H b/FL/Fl_Round_Clock.H index 3fca112fa..8e7078be8 100644 --- a/FL/Fl_Round_Clock.H +++ b/FL/Fl_Round_Clock.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Scroll.H b/FL/Fl_Scroll.H index 8bbc4d6aa..55360454d 100644 --- a/FL/Fl_Scroll.H +++ b/FL/Fl_Scroll.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -72,5 +72,5 @@ public: #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 $". // diff --git a/FL/Fl_Scrollbar.H b/FL/Fl_Scrollbar.H index 564385acd..8de193f49 100644 --- a/FL/Fl_Scrollbar.H +++ b/FL/Fl_Scrollbar.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -54,5 +54,5 @@ public: #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 $". // diff --git a/FL/Fl_Secret_Input.H b/FL/Fl_Secret_Input.H index c8d9b9496..9227a7b9b 100644 --- a/FL/Fl_Secret_Input.H +++ b/FL/Fl_Secret_Input.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Select_Browser.H b/FL/Fl_Select_Browser.H index 24d8a7734..84c383620 100644 --- a/FL/Fl_Select_Browser.H +++ b/FL/Fl_Select_Browser.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Simple_Counter.H b/FL/Fl_Simple_Counter.H index d3e3ad723..d995c7a93 100644 --- a/FL/Fl_Simple_Counter.H +++ b/FL/Fl_Simple_Counter.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Single_Window.H b/FL/Fl_Single_Window.H index f2545ccb8..126c6b111 100644 --- a/FL/Fl_Single_Window.H +++ b/FL/Fl_Single_Window.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -43,5 +43,5 @@ public: #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 $". // diff --git a/FL/Fl_Slider.H b/FL/Fl_Slider.H index 9807d6902..d789d6936 100644 --- a/FL/Fl_Slider.H +++ b/FL/Fl_Slider.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -69,5 +69,5 @@ public: #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 $". // diff --git a/FL/Fl_Tabs.H b/FL/Fl_Tabs.H index e2dfcf070..f05eb79cb 100644 --- a/FL/Fl_Tabs.H +++ b/FL/Fl_Tabs.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -50,5 +50,5 @@ public: #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 $". // diff --git a/FL/Fl_Tile.H b/FL/Fl_Tile.H index 5d8d4e13c..ad6b54851 100644 --- a/FL/Fl_Tile.H +++ b/FL/Fl_Tile.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -39,5 +39,5 @@ public: #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 $". // diff --git a/FL/Fl_Timer.H b/FL/Fl_Timer.H index 8a0b5cc23..3504cf484 100644 --- a/FL/Fl_Timer.H +++ b/FL/Fl_Timer.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -58,6 +58,6 @@ public: #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 $". // diff --git a/FL/Fl_Toggle_Button.H b/FL/Fl_Toggle_Button.H index 3c6ebbe6e..a910ef49e 100644 --- a/FL/Fl_Toggle_Button.H +++ b/FL/Fl_Toggle_Button.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ public: #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 $". // diff --git a/FL/Fl_Toggle_Light_Button.H b/FL/Fl_Toggle_Light_Button.H index ec79b8d3b..605387caf 100644 --- a/FL/Fl_Toggle_Light_Button.H +++ b/FL/Fl_Toggle_Light_Button.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -31,5 +31,5 @@ #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 $". // diff --git a/FL/Fl_Toggle_Round_Button.H b/FL/Fl_Toggle_Round_Button.H index a1e04d02f..52ae1ad28 100644 --- a/FL/Fl_Toggle_Round_Button.H +++ b/FL/Fl_Toggle_Round_Button.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -31,5 +31,5 @@ #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 $". // diff --git a/FL/Fl_Valuator.H b/FL/Fl_Valuator.H index 025a13cf5..316fc7ef1 100644 --- a/FL/Fl_Valuator.H +++ b/FL/Fl_Valuator.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -80,5 +80,5 @@ public: #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 $". // diff --git a/FL/Fl_Value_Input.H b/FL/Fl_Value_Input.H index 1833faff0..7a079bb85 100644 --- a/FL/Fl_Value_Input.H +++ b/FL/Fl_Value_Input.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -59,5 +59,5 @@ public: #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 $". // diff --git a/FL/Fl_Value_Output.H b/FL/Fl_Value_Output.H index e1f055896..29dc108b0 100644 --- a/FL/Fl_Value_Output.H +++ b/FL/Fl_Value_Output.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -51,5 +51,5 @@ public: #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 $". // diff --git a/FL/Fl_Value_Slider.H b/FL/Fl_Value_Slider.H index 37c3d97b8..49a38ddbf 100644 --- a/FL/Fl_Value_Slider.H +++ b/FL/Fl_Value_Slider.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -45,5 +45,5 @@ public: #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 $". // diff --git a/FL/Fl_Widget.H b/FL/Fl_Widget.H index ea12ecaee..09bace607 100644 --- a/FL/Fl_Widget.H +++ b/FL/Fl_Widget.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -191,5 +191,5 @@ public: #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 $". // diff --git a/FL/Fl_Window.H b/FL/Fl_Window.H index 5c7075182..05ebb9508 100644 --- a/FL/Fl_Window.H +++ b/FL/Fl_Window.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -113,5 +113,5 @@ public: #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 $". // diff --git a/FL/dirent.h b/FL/dirent.h index 2e774c1fa..9951f0298 100644 --- a/FL/dirent.h +++ b/FL/dirent.h @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -27,5 +27,5 @@ #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 $". // diff --git a/FL/filename.H b/FL/filename.H index 375f0edf6..cad5b75d9 100644 --- a/FL/filename.H +++ b/FL/filename.H @@ -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). // -// 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 // 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 // -// 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 $". // diff --git a/FL/fl_ask.H b/FL/fl_ask.H index 170318e2a..59067375d 100644 --- a/FL/fl_ask.H +++ b/FL/fl_ask.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -52,5 +52,5 @@ extern FL_EXPORT const char* fl_cancel; #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 $". // diff --git a/FL/fl_draw.H b/FL/fl_draw.H index 348e4b07a..6f6edfd95 100644 --- a/FL/fl_draw.H +++ b/FL/fl_draw.H @@ -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). // -// 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 // 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 // -// 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 $". // diff --git a/FL/fl_file_chooser.H b/FL/fl_file_chooser.H index f3f5f0159..aa079975f 100644 --- a/FL/fl_file_chooser.H +++ b/FL/fl_file_chooser.H @@ -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). // -// 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 // 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 // -// 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 $". // diff --git a/FL/fl_message.H b/FL/fl_message.H index a152e288d..11717fb7b 100644 --- a/FL/fl_message.H +++ b/FL/fl_message.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -26,5 +26,5 @@ #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 $". // diff --git a/FL/fl_show_colormap.H b/FL/fl_show_colormap.H index 4d802b4bd..fca1a4d04 100644 --- a/FL/fl_show_colormap.H +++ b/FL/fl_show_colormap.H @@ -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). // -// 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 // 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 // -// 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 $". // diff --git a/FL/fl_show_input.H b/FL/fl_show_input.H index 98ae82cc4..5b8066eae 100644 --- a/FL/fl_show_input.H +++ b/FL/fl_show_input.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -26,5 +26,5 @@ #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 $". // diff --git a/FL/forms.H b/FL/forms.H index f7fa92f1e..cf7d003d3 100644 --- a/FL/forms.H +++ b/FL/forms.H @@ -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). // -// 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 // 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__ */ // -// 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 $". // diff --git a/FL/gl.h b/FL/gl.h index 53541edc0..d4102a259 100644 --- a/FL/gl.h +++ b/FL/gl.h @@ -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). // -// 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 // APIENTRY stuff included (from ) 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 // -// 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 $". // diff --git a/FL/gl_draw.H b/FL/gl_draw.H index 82b642dc4..1407228cb 100644 --- a/FL/gl_draw.H +++ b/FL/gl_draw.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -26,5 +26,5 @@ #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 $". // diff --git a/FL/glut.H b/FL/glut.H index d719937dc..8f8b2b446 100644 --- a/FL/glut.H +++ b/FL/glut.H @@ -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). // -// 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 // modify it under the terms of the GNU Library General Public @@ -470,5 +470,5 @@ extern void APIENTRY glutSolidIcosahedron(); #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 $". // diff --git a/FL/math.h b/FL/math.h index 0e7796b94..9167bd380 100644 --- a/FL/math.h +++ b/FL/math.h @@ -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). // -// 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 // 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 // -// 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 $". // diff --git a/FL/win32.H b/FL/win32.H index 4cd75bea3..b4dfc238d 100644 --- a/FL/win32.H +++ b/FL/win32.H @@ -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). // -// 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 // 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); // -// 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 $". // diff --git a/FL/x.H b/FL/x.H index 323309155..1d12da5da 100644 --- a/FL/x.H +++ b/FL/x.H @@ -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). // -// 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 // 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 // -// 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 $". // diff --git a/Makefile b/Makefile index 3e833e77e..27c9491b3 100644 --- a/Makefile +++ b/Makefile @@ -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). # -# 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 # modify it under the terms of the GNU Library General Public @@ -69,5 +69,5 @@ makeinclude: configure configh.in makeinclude.in ./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 $". # diff --git a/README b/README index a554d01ef..9ddc6e3eb 100644 --- a/README +++ b/README @@ -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? @@ -134,7 +134,8 @@ REPORTING BUGS To report a bug in FLTK, send an email to "fltk-bugs@fltk.org". Please include the FLTK version, 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 mailing list at "fltk@fltk.org". @@ -165,7 +166,7 @@ TRADEMARKS 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: Craig P. Earls (cpearls@mit.edu) diff --git a/bc5/config.h b/bc5/config.h index 274e2b7b6..863581b93 100644 --- a/bc5/config.h +++ b/bc5/config.h @@ -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). * - * 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 * modify it under the terms of the GNU Library General Public @@ -150,5 +150,5 @@ #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 $". */ diff --git a/configh.in b/configh.in index 8fb0977a6..ce8c223d2 100644 --- a/configh.in +++ b/configh.in @@ -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). * @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 * modify it under the terms of the GNU Library General Public @@ -159,5 +159,5 @@ #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 $". */ diff --git a/configure.in b/configure.in index 2e0a90e9c..82dff1afa 100644 --- a/configure.in +++ b/configure.in @@ -1,11 +1,11 @@ dnl -*- sh -*- dnl the "configure" script is made from this by running GNU "autoconf" 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 Configuration script for the Fast Light Tool Kit (FLTK). dnl -dnl Copyright 1998-2000 by Bill Spitzak and others. +dnl Copyright 1998-2001 by Bill Spitzak and others. dnl dnl This library is free software; you can redistribute it and/or 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) 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 diff --git a/documentation/Makefile b/documentation/Makefile index c91c7c641..2317b9f96 100644 --- a/documentation/Makefile +++ b/documentation/Makefile @@ -1,9 +1,9 @@ # -# "$Id: Makefile,v 1.9.2.7 2000/12/21 18:15:14 easysw Exp $" +# "$Id: Makefile,v 1.9.2.8 2001/01/22 15:13:38 easysw Exp $" # # Documentation 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 # modify it under the terms of the GNU Library General Public @@ -149,5 +149,5 @@ fltk.pdf: $(HTMLFILES) $(HTMLDOC) -f fltk.pdf --jpeg --compression=9 --duplex --verbose --toclevels 2 --titleimage FL.gif $(HTMLFILES) # -# End of "$Id: Makefile,v 1.9.2.7 2000/12/21 18:15:14 easysw Exp $". +# End of "$Id: Makefile,v 1.9.2.8 2001/01/22 15:13:38 easysw Exp $". # diff --git a/documentation/index.html b/documentation/index.html index aca623c6c..4f2b870ae 100644 --- a/documentation/index.html +++ b/documentation/index.html @@ -1,6 +1,6 @@ - FLTK 1.0.10 Programming Manual + FLTK 1.0.11 Programming Manual @@ -8,9 +8,9 @@ -

FLTK 1.0.10 Programming Manual

-Revision 16 by Michael Sweet, Craig P. Earls, and Bill Spitzak
-Copyright 1998-2000 by Bill Spitzak and others.
+

FLTK 1.0.11 Programming Manual

+Revision 17 by Michael Sweet, Craig P. Earls, and Bill Spitzak
+Copyright 1998-2001 by Bill Spitzak and others.
diff --git a/documentation/preface.html b/documentation/preface.html index d3304217a..4a83822e2 100644 --- a/documentation/preface.html +++ b/documentation/preface.html @@ -1,14 +1,14 @@ - - - - FLTK 1.0.10 Programming Manual + + + + FLTK 1.0.11 Programming Manual

Preface

This manual describes the Fast Light Tool Kit ("FLTK") -version 1.0.10, a C++ Graphical User Interface +version 1.0.11, a C++ Graphical User Interface ("GUI") toolkit for UNIX and Microsoft Windows. Each of the chapters in this manual is designed as a tutorial for using FLTK, while the appendices provide a convenient reference diff --git a/fltk.list b/fltk.list index 04e35b78f..0226b5a28 100644 --- a/fltk.list +++ b/fltk.list @@ -1,11 +1,11 @@ # -# "$Id: fltk.list,v 1.1.2.4 2000/12/06 13:59:46 easysw Exp $" +# "$Id: fltk.list,v 1.1.2.5 2001/01/22 15:13:37 easysw Exp $" # # EPM product list file for the Fast Light Tool Kit (FLTK). # # (EPM can be found at http://www.easysw.com/epm) # -# 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 # modify it under the terms of the GNU Library General Public @@ -26,7 +26,7 @@ # %product Fast Light Tool Kit (FLTK) -%copyright 1998-2000 by Bill Spitzak and others. +%copyright 1998-2001 by Bill Spitzak and others. %vendor LGPL %license COPYING %readme README @@ -381,5 +381,5 @@ f 0444 root sys /usr/share/doc/fltk/value_slider.gif documentation/value_slider. f 0444 root sys /usr/share/doc/fltk/widgets.html documentation/widgets.html # -# End of "$Id: fltk.list,v 1.1.2.4 2000/12/06 13:59:46 easysw Exp $". +# End of "$Id: fltk.list,v 1.1.2.5 2001/01/22 15:13:37 easysw Exp $". # diff --git a/fltk.spec b/fltk.spec index 27f1e6333..81444dc80 100644 --- a/fltk.spec +++ b/fltk.spec @@ -1,9 +1,9 @@ # -# "$Id: fltk.spec,v 1.1.2.7 2000/12/06 13:59:46 easysw Exp $" +# "$Id: fltk.spec,v 1.1.2.8 2001/01/22 15:13:37 easysw Exp $" # # RPM spec file for 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 # modify it under the terms of the GNU Library General Public @@ -90,5 +90,5 @@ rm -rf $RPM_BUILD_ROOT %{prefix}/share/doc/fltk/* # -# End of "$Id: fltk.spec,v 1.1.2.7 2000/12/06 13:59:46 easysw Exp $". +# End of "$Id: fltk.spec,v 1.1.2.8 2001/01/22 15:13:37 easysw Exp $". # diff --git a/fluid/Fl_Function_Type.cxx b/fluid/Fl_Function_Type.cxx index 7bb0cd0f3..734f58c23 100644 --- a/fluid/Fl_Function_Type.cxx +++ b/fluid/Fl_Function_Type.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Function_Type.cxx,v 1.15.2.15 2000/06/05 21:20:36 mike Exp $" +// "$Id: Fl_Function_Type.cxx,v 1.15.2.16 2001/01/22 15:13:38 easysw Exp $" // // C function type code 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 // modify it under the terms of the GNU Library General Public @@ -672,5 +672,5 @@ void Fl_Class_Type::write_code2() { } // -// End of "$Id: Fl_Function_Type.cxx,v 1.15.2.15 2000/06/05 21:20:36 mike Exp $". +// End of "$Id: Fl_Function_Type.cxx,v 1.15.2.16 2001/01/22 15:13:38 easysw Exp $". // diff --git a/fluid/Fl_Group_Type.cxx b/fluid/Fl_Group_Type.cxx index 95b99ea5a..eb7b10f4e 100644 --- a/fluid/Fl_Group_Type.cxx +++ b/fluid/Fl_Group_Type.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Group_Type.cxx,v 1.4.2.6 2000/10/17 06:33:59 spitzak Exp $" +// "$Id: Fl_Group_Type.cxx,v 1.4.2.7 2001/01/22 15:13:38 easysw Exp $" // // Fl_Group object code for the Fast Light Tool Kit (FLTK). // @@ -7,7 +7,7 @@ // the Fl_Tabs widget, with special stuff to select tab items and // insure that only one is visible. // -// 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 // modify it under the terms of the GNU Library General Public @@ -230,5 +230,5 @@ const char tile_type_name[] = "Fl_Tile"; Fl_Tile_Type Fl_Tile_type; // the "factory" // -// End of "$Id: Fl_Group_Type.cxx,v 1.4.2.6 2000/10/17 06:33:59 spitzak Exp $". +// End of "$Id: Fl_Group_Type.cxx,v 1.4.2.7 2001/01/22 15:13:38 easysw Exp $". // diff --git a/fluid/Fl_Menu_Type.cxx b/fluid/Fl_Menu_Type.cxx index fb157b9cd..f5182272e 100644 --- a/fluid/Fl_Menu_Type.cxx +++ b/fluid/Fl_Menu_Type.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Menu_Type.cxx,v 1.16.2.11 2001/01/21 07:36:45 spitzak Exp $" +// "$Id: Fl_Menu_Type.cxx,v 1.16.2.12 2001/01/22 15:13:38 easysw Exp $" // // Menu item code for the Fast Light Tool Kit (FLTK). // @@ -9,7 +9,7 @@ // This file also contains code to make Fl_Menu_Button, Fl_Menu_Bar, // etc widgets. // -// 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 // modify it under the terms of the GNU Library General Public @@ -460,5 +460,5 @@ void shortcut_in_cb(Shortcut_Button* i, void* v) { } // -// End of "$Id: Fl_Menu_Type.cxx,v 1.16.2.11 2001/01/21 07:36:45 spitzak Exp $". +// End of "$Id: Fl_Menu_Type.cxx,v 1.16.2.12 2001/01/22 15:13:38 easysw Exp $". // diff --git a/fluid/Fl_Type.cxx b/fluid/Fl_Type.cxx index 3f7a10746..d7f400ed5 100644 --- a/fluid/Fl_Type.cxx +++ b/fluid/Fl_Type.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Type.cxx,v 1.6.2.5 2001/01/21 07:36:45 spitzak Exp $" +// "$Id: Fl_Type.cxx,v 1.6.2.6 2001/01/22 15:13:38 easysw Exp $" // // Widget type code for the Fast Light Tool Kit (FLTK). // @@ -15,7 +15,7 @@ // not in the linked list and are not written to files or // copied or otherwise examined. // -// 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 // modify it under the terms of the GNU Library General Public @@ -667,5 +667,5 @@ void Fl_Type::read_property(const char *c) { int Fl_Type::read_fdesign(const char*, const char*) {return 0;} // -// End of "$Id: Fl_Type.cxx,v 1.6.2.5 2001/01/21 07:36:45 spitzak Exp $". +// End of "$Id: Fl_Type.cxx,v 1.6.2.6 2001/01/22 15:13:38 easysw Exp $". // diff --git a/fluid/Fl_Type.h b/fluid/Fl_Type.h index 3c7a218d6..96b039c77 100644 --- a/fluid/Fl_Type.h +++ b/fluid/Fl_Type.h @@ -1,5 +1,5 @@ // -// "$Id: Fl_Type.h,v 1.5.2.10 2000/11/21 21:37:08 easysw Exp $" +// "$Id: Fl_Type.h,v 1.5.2.11 2001/01/22 15:13:38 easysw Exp $" // // Widget type header file for the Fast Light Tool Kit (FLTK). // @@ -11,7 +11,7 @@ // instance of this object. It could also have a "copy()" function, // but it was easier to implement this by using the file read/write // that is needed to save the setup anyways. -// 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 // modify it under the terms of the GNU Library General Public @@ -532,5 +532,5 @@ int storestring(const char *n, const char * & p, int nostrip=0); extern int include_H_from_C; // -// End of "$Id: Fl_Type.h,v 1.5.2.10 2000/11/21 21:37:08 easysw Exp $". +// End of "$Id: Fl_Type.h,v 1.5.2.11 2001/01/22 15:13:38 easysw Exp $". // diff --git a/fluid/Fl_Widget_Type.cxx b/fluid/Fl_Widget_Type.cxx index afd2a3b32..265a2fc8b 100644 --- a/fluid/Fl_Widget_Type.cxx +++ b/fluid/Fl_Widget_Type.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Widget_Type.cxx,v 1.15.2.15 2000/06/05 21:20:39 mike Exp $" +// "$Id: Fl_Widget_Type.cxx,v 1.15.2.16 2001/01/22 15:13:38 easysw Exp $" // // Widget type code 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 // modify it under the terms of the GNU Library General Public @@ -1766,5 +1766,5 @@ int Fl_Widget_Type::read_fdesign(const char* name, const char* value) { } // -// End of "$Id: Fl_Widget_Type.cxx,v 1.15.2.15 2000/06/05 21:20:39 mike Exp $". +// End of "$Id: Fl_Widget_Type.cxx,v 1.15.2.16 2001/01/22 15:13:38 easysw Exp $". // diff --git a/fluid/Fl_Widget_Type.h b/fluid/Fl_Widget_Type.h index 329479641..444b83b6a 100644 --- a/fluid/Fl_Widget_Type.h +++ b/fluid/Fl_Widget_Type.h @@ -1,5 +1,5 @@ // -// "$Id: Fl_Widget_Type.h,v 1.4.2.3 2000/06/05 21:20:40 mike Exp $" +// "$Id: Fl_Widget_Type.h,v 1.4.2.4 2001/01/22 15:13:38 easysw Exp $" // // Widget type header file for the Fast Light Tool Kit (FLTK). // @@ -7,7 +7,7 @@ // This should have the widget pointer in it, but it is still in the // Fl_Type base class. // -// 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 // modify it under the terms of the GNU Library General Public @@ -36,5 +36,5 @@ void* const LOAD = (void *)9831; extern Fl_Widget_Type *current_widget; // one of the selected ones // -// End of "$Id: Fl_Widget_Type.h,v 1.4.2.3 2000/06/05 21:20:40 mike Exp $". +// End of "$Id: Fl_Widget_Type.h,v 1.4.2.4 2001/01/22 15:13:38 easysw Exp $". // diff --git a/fluid/Fl_Window_Type.cxx b/fluid/Fl_Window_Type.cxx index ffe53abb1..371aac284 100644 --- a/fluid/Fl_Window_Type.cxx +++ b/fluid/Fl_Window_Type.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Window_Type.cxx,v 1.13.2.8 2000/06/05 21:20:40 mike Exp $" +// "$Id: Fl_Window_Type.cxx,v 1.13.2.9 2001/01/22 15:13:38 easysw Exp $" // // Window type code for the Fast Light Tool Kit (FLTK). // @@ -7,7 +7,7 @@ // for interacting with the overlay, which allows the user to // select, move, and resize the children widgets. // -// 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 // modify it under the terms of the GNU Library General Public @@ -752,5 +752,5 @@ int Fl_Window_Type::read_fdesign(const char* name, const char* value) { } // -// End of "$Id: Fl_Window_Type.cxx,v 1.13.2.8 2000/06/05 21:20:40 mike Exp $". +// End of "$Id: Fl_Window_Type.cxx,v 1.13.2.9 2001/01/22 15:13:38 easysw Exp $". // diff --git a/fluid/Fluid_Image.cxx b/fluid/Fluid_Image.cxx index f0ccedc93..f5c911ffa 100644 --- a/fluid/Fluid_Image.cxx +++ b/fluid/Fluid_Image.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fluid_Image.cxx,v 1.7.2.6 2000/07/07 08:38:58 spitzak Exp $" +// "$Id: Fluid_Image.cxx,v 1.7.2.7 2001/01/22 15:13:38 easysw Exp $" // // Pixmap label support 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 // modify it under the terms of the GNU Library General Public @@ -436,5 +436,5 @@ Fluid_Image *ui_find_image(const char *oldname) { } // -// End of "$Id: Fluid_Image.cxx,v 1.7.2.6 2000/07/07 08:38:58 spitzak Exp $". +// End of "$Id: Fluid_Image.cxx,v 1.7.2.7 2001/01/22 15:13:38 easysw Exp $". // diff --git a/fluid/Fluid_Image.h b/fluid/Fluid_Image.h index c2f497c68..f38706c73 100644 --- a/fluid/Fluid_Image.h +++ b/fluid/Fluid_Image.h @@ -1,5 +1,5 @@ // -// "$Id: Fluid_Image.h,v 1.3.2.3 2000/06/05 21:20:41 mike Exp $" +// "$Id: Fluid_Image.h,v 1.3.2.4 2001/01/22 15:13:38 easysw Exp $" // // Pixmap image header file for the Fast Light Tool Kit (FLTK). // @@ -9,7 +9,7 @@ // in Fluid_Image.C for each type of image format. Right now only xpm // files are supported. // -// 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 // modify it under the terms of the GNU Library General Public @@ -56,5 +56,5 @@ Fluid_Image *ui_find_image(const char *); #endif // -// End of "$Id: Fluid_Image.h,v 1.3.2.3 2000/06/05 21:20:41 mike Exp $". +// End of "$Id: Fluid_Image.h,v 1.3.2.4 2001/01/22 15:13:38 easysw Exp $". // diff --git a/fluid/Makefile b/fluid/Makefile index 8c010a1ad..cc8530bb0 100644 --- a/fluid/Makefile +++ b/fluid/Makefile @@ -1,9 +1,9 @@ # -# "$Id: Makefile,v 1.10.2.5 2000/06/05 21:20:41 mike Exp $" +# "$Id: Makefile,v 1.10.2.6 2001/01/22 15:13:38 easysw Exp $" # # Fluid 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 # modify it under the terms of the GNU Library General Public @@ -83,5 +83,5 @@ rebuild: ./fluid -c widget_panel.fl # -# End of "$Id: Makefile,v 1.10.2.5 2000/06/05 21:20:41 mike Exp $". +# End of "$Id: Makefile,v 1.10.2.6 2001/01/22 15:13:38 easysw Exp $". # diff --git a/fluid/Shortcut_Button.h b/fluid/Shortcut_Button.h index 6ea284ecf..92cccc515 100644 --- a/fluid/Shortcut_Button.h +++ b/fluid/Shortcut_Button.h @@ -1,9 +1,9 @@ // -// "$Id: Shortcut_Button.h,v 1.3.2.2 2000/06/05 21:20:41 mike Exp $" +// "$Id: Shortcut_Button.h,v 1.3.2.3 2001/01/22 15:13:38 easysw Exp $" // // Shortcut 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 // modify it under the terms of the GNU Library General Public @@ -35,5 +35,5 @@ public: }; // -// End of "$Id: Shortcut_Button.h,v 1.3.2.2 2000/06/05 21:20:41 mike Exp $". +// End of "$Id: Shortcut_Button.h,v 1.3.2.3 2001/01/22 15:13:38 easysw Exp $". // diff --git a/fluid/about_panel.cxx b/fluid/about_panel.cxx index eb696a7cb..0c5d80d1a 100644 --- a/fluid/about_panel.cxx +++ b/fluid/about_panel.cxx @@ -1,4 +1,4 @@ -// generated by Fast Light User Interface Designer (fluid) version 1.0008 +// generated by Fast Light User Interface Designer (fluid) version 1.0011 #include "about_panel.h" @@ -87,7 +87,7 @@ Fl_Window* make_about_panel(const char *copyright) { o->labelcolor(7); o->align(FL_ALIGN_TOP|FL_ALIGN_INSIDE); } - { Fl_Box* o = new Fl_Box(140, 27, 160, 113, "FLTK User\nInterface\nDesigner\nVersion 1.0.9"); + { Fl_Box* o = new Fl_Box(140, 27, 160, 123, "FLTK User\nInterface\nDesigner\nVersion 1.0.11"); o->box(FL_OVAL_BOX); o->color(12); o->selection_color(47); @@ -96,7 +96,7 @@ Fl_Window* make_about_panel(const char *copyright) { o->labelsize(18); o->labelcolor(7); } - { Fl_Button* o = new Fl_Button(181, 176, 115, 30, "\251""1998-2000 by\nBill Spitzak and others"); + { Fl_Button* o = new Fl_Button(181, 176, 115, 30, "\251""1998-2001 by\nBill Spitzak and others"); o->box(FL_THIN_UP_BOX); o->labelsize(10); o->labelcolor(136); diff --git a/fluid/about_panel.fl b/fluid/about_panel.fl index a6bf6ec9b..56f6a8e89 100644 --- a/fluid/about_panel.fl +++ b/fluid/about_panel.fl @@ -1,5 +1,5 @@ # data file for the Fltk User Interface Designer (fluid) -version 1.0008 +version 1.0011 header_name {.h} code_name {.cxx} gridx 10 @@ -49,14 +49,14 @@ Function {make_about_panel(const char *copyright)} {open label {FLTK User Interface Designer -Version 1.0.9} selected - xywh {140 27 160 113} box OVAL_BOX color 12 selection_color 47 labeltype SHADOW_LABEL labelfont 1 labelsize 18 labelcolor 7 +Version 1.0.11} + xywh {140 27 160 123} box OVAL_BOX color 12 selection_color 47 labeltype SHADOW_LABEL labelfont 1 labelsize 18 labelcolor 7 } Fl_Button {} { - label {©1998-2000 by + label {©1998-2001 by Bill Spitzak and others} callback {display_group->hide(); -copyright_box->show();} +copyright_box->show();} selected xywh {181 176 115 30} box THIN_UP_BOX labelsize 10 labelcolor 136 } } diff --git a/fluid/about_panel.h b/fluid/about_panel.h index bc9a9ab81..2f7251722 100644 --- a/fluid/about_panel.h +++ b/fluid/about_panel.h @@ -1,4 +1,4 @@ -// generated by Fast Light User Interface Designer (fluid) version 1.0008 +// generated by Fast Light User Interface Designer (fluid) version 1.0011 #ifndef about_panel_h #define about_panel_h diff --git a/fluid/code.cxx b/fluid/code.cxx index 49dfe3743..0d6975746 100644 --- a/fluid/code.cxx +++ b/fluid/code.cxx @@ -1,9 +1,9 @@ // -// "$Id: code.cxx,v 1.9.2.8 2000/06/16 07:08:16 bill Exp $" +// "$Id: code.cxx,v 1.9.2.9 2001/01/22 15:13:39 easysw Exp $" // // Code output routines 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 // modify it under the terms of the GNU Library General Public @@ -405,5 +405,5 @@ void Fl_Type::write_code1() { void Fl_Type::write_code2() {} // -// End of "$Id: code.cxx,v 1.9.2.8 2000/06/16 07:08:16 bill Exp $". +// End of "$Id: code.cxx,v 1.9.2.9 2001/01/22 15:13:39 easysw Exp $". // diff --git a/fluid/factory.cxx b/fluid/factory.cxx index 6ec569411..f953aa162 100644 --- a/fluid/factory.cxx +++ b/fluid/factory.cxx @@ -1,5 +1,5 @@ // -// "$Id: factory.cxx,v 1.4.2.8 2000/11/21 21:37:08 easysw Exp $" +// "$Id: factory.cxx,v 1.4.2.9 2001/01/22 15:13:39 easysw Exp $" // // Widget factory code for the Fast Light Tool Kit (FLTK). // @@ -11,7 +11,7 @@ // to a factory instance for every class (both the ones defined // here and ones in other files) // -// 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 // modify it under the terms of the GNU Library General Public @@ -722,5 +722,5 @@ int lookup_symbol(const char *name, int &v, int numberok) { } // -// End of "$Id: factory.cxx,v 1.4.2.8 2000/11/21 21:37:08 easysw Exp $". +// End of "$Id: factory.cxx,v 1.4.2.9 2001/01/22 15:13:39 easysw Exp $". // diff --git a/fluid/file.cxx b/fluid/file.cxx index dae47d690..777944599 100644 --- a/fluid/file.cxx +++ b/fluid/file.cxx @@ -1,5 +1,5 @@ // -// "$Id: file.cxx,v 1.7.2.5 2000/06/05 21:20:43 mike Exp $" +// "$Id: file.cxx,v 1.7.2.6 2001/01/22 15:13:39 easysw Exp $" // // Fluid file routines for the Fast Light Tool Kit (FLTK). // @@ -8,7 +8,7 @@ // They are somewhat similar to tcl, using matching { and } // to quote strings. // -// 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 // modify it under the terms of the GNU Library General Public @@ -639,5 +639,5 @@ void read_fdesign() { } // -// End of "$Id: file.cxx,v 1.7.2.5 2000/06/05 21:20:43 mike Exp $". +// End of "$Id: file.cxx,v 1.7.2.6 2001/01/22 15:13:39 easysw Exp $". // diff --git a/fluid/fluid.cxx b/fluid/fluid.cxx index cb028bf4e..a3aa804c6 100644 --- a/fluid/fluid.cxx +++ b/fluid/fluid.cxx @@ -1,9 +1,9 @@ // -// "$Id: fluid.cxx,v 1.15.2.9 2000/08/20 04:35:16 spitzak Exp $" +// "$Id: fluid.cxx,v 1.15.2.10 2001/01/22 15:13:39 easysw Exp $" // // FLUID main entry 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 // modify it under the terms of the GNU Library General Public @@ -25,7 +25,7 @@ const char *copyright = "The FLTK user interface designer version 1.0\n" -"Copyright 1998-2000 by Bill Spitzak and others.\n" +"Copyright 1998-2001 by Bill Spitzak and others.\n" "\n" "This library is free software; you can redistribute it and/or " "modify it under the terms of the GNU Library General Public " @@ -465,5 +465,5 @@ int main(int argc,char **argv) { } // -// End of "$Id: fluid.cxx,v 1.15.2.9 2000/08/20 04:35:16 spitzak Exp $". +// End of "$Id: fluid.cxx,v 1.15.2.10 2001/01/22 15:13:39 easysw Exp $". // diff --git a/fluid/gif.cxx b/fluid/gif.cxx index 4e22cf903..9a9ebe313 100644 --- a/fluid/gif.cxx +++ b/fluid/gif.cxx @@ -1,9 +1,9 @@ // -// "$Id: gif.cxx,v 1.3.2.4 2000/09/23 08:15:12 spitzak Exp $" +// "$Id: gif.cxx,v 1.3.2.5 2001/01/22 15:13:39 easysw Exp $" // // GIF support 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 // modify it under the terms of the GNU Library General Public @@ -359,5 +359,5 @@ int gif2xpm( } // -// End of "$Id: gif.cxx,v 1.3.2.4 2000/09/23 08:15:12 spitzak Exp $". +// End of "$Id: gif.cxx,v 1.3.2.5 2001/01/22 15:13:39 easysw Exp $". // diff --git a/makefiles/Makefile.cygwin b/makefiles/Makefile.cygwin index 8b05470c8..9db3c8900 100644 --- a/makefiles/Makefile.cygwin +++ b/makefiles/Makefile.cygwin @@ -1,9 +1,9 @@ # -# "$Id: Makefile.cygwin,v 1.1.2.1 2000/06/20 18:47:31 carl Exp $" +# "$Id: Makefile.cygwin,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $" # # 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 # modify it under the terms of the GNU Library General Public @@ -92,5 +92,5 @@ makeinclude: makefiles/makeinclude.cygwin cp $< $@ # -# End of "$Id: Makefile.cygwin,v 1.1.2.1 2000/06/20 18:47:31 carl Exp $". +# End of "$Id: Makefile.cygwin,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $". # diff --git a/makefiles/Makefile.mingw b/makefiles/Makefile.mingw index 21f5c0e85..9586c982f 100644 --- a/makefiles/Makefile.mingw +++ b/makefiles/Makefile.mingw @@ -1,9 +1,9 @@ # -# "$Id: Makefile.mingw,v 1.1.2.1 2000/06/13 20:33:34 mike Exp $" +# "$Id: Makefile.mingw,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $" # # 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 # modify it under the terms of the GNU Library General Public @@ -92,5 +92,5 @@ makeinclude: makefiles/makeinclude.mingw cp $< $@ # -# End of "$Id: Makefile.mingw,v 1.1.2.1 2000/06/13 20:33:34 mike Exp $". +# End of "$Id: Makefile.mingw,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $". # diff --git a/makefiles/Makefile.no-cygwin b/makefiles/Makefile.no-cygwin index 673f6e3d5..540137c30 100644 --- a/makefiles/Makefile.no-cygwin +++ b/makefiles/Makefile.no-cygwin @@ -1,9 +1,9 @@ # -# "$Id: Makefile.no-cygwin,v 1.1.2.1 2000/06/20 05:47:35 bill Exp $" +# "$Id: Makefile.no-cygwin,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $" # # 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 # modify it under the terms of the GNU Library General Public @@ -92,5 +92,5 @@ makeinclude: makefiles/makeinclude.no-cygwin cp $< $@ # -# End of "$Id: Makefile.no-cygwin,v 1.1.2.1 2000/06/20 05:47:35 bill Exp $". +# End of "$Id: Makefile.no-cygwin,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $". # diff --git a/makefiles/Makefile.os2x b/makefiles/Makefile.os2x index c4bfa48fd..0589595c8 100644 --- a/makefiles/Makefile.os2x +++ b/makefiles/Makefile.os2x @@ -1,9 +1,9 @@ # -# "$Id: Makefile.os2x,v 1.6.2.5 2000/08/22 16:36:26 spitzak Exp $" +# "$Id: Makefile.os2x,v 1.6.2.6 2001/01/22 15:13:39 easysw Exp $" # # 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 # modify it under the terms of the GNU Library General Public @@ -74,5 +74,5 @@ makeinclude: makefiles/makeinclude.os2x cp $< $@ # -# End of "$Id: Makefile.os2x,v 1.6.2.5 2000/08/22 16:36:26 spitzak Exp $". +# End of "$Id: Makefile.os2x,v 1.6.2.6 2001/01/22 15:13:39 easysw Exp $". # diff --git a/makefiles/config.cygwin b/makefiles/config.cygwin index 0c21d9704..35c26f457 100644 --- a/makefiles/config.cygwin +++ b/makefiles/config.cygwin @@ -1,9 +1,9 @@ /* - * "$Id: config.cygwin,v 1.1.2.2 2000/11/20 15:44:18 easysw Exp $" + * "$Id: config.cygwin,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $" * * 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 * modify it under the terms of the GNU Library General Public @@ -159,5 +159,5 @@ #define HAVE_POLL 0 /* - * End of "$Id: config.cygwin,v 1.1.2.2 2000/11/20 15:44:18 easysw Exp $". + * End of "$Id: config.cygwin,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $". */ diff --git a/makefiles/config.mingw b/makefiles/config.mingw index fe0e30b52..bfe81e950 100644 --- a/makefiles/config.mingw +++ b/makefiles/config.mingw @@ -1,9 +1,9 @@ /* - * "$Id: config.mingw,v 1.1.2.2 2000/11/20 15:44:18 easysw Exp $" + * "$Id: config.mingw,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $" * * 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 * modify it under the terms of the GNU Library General Public @@ -159,5 +159,5 @@ #define HAVE_POLL 0 /* - * End of "$Id: config.mingw,v 1.1.2.2 2000/11/20 15:44:18 easysw Exp $". + * End of "$Id: config.mingw,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $". */ diff --git a/makefiles/config.no-cygwin b/makefiles/config.no-cygwin index 93a82a8e9..27dfecdc3 100644 --- a/makefiles/config.no-cygwin +++ b/makefiles/config.no-cygwin @@ -1,9 +1,9 @@ /* - * "$Id: config.no-cygwin,v 1.1.2.2 2000/11/20 15:44:18 easysw Exp $" + * "$Id: config.no-cygwin,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $" * * 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 * modify it under the terms of the GNU Library General Public @@ -159,5 +159,5 @@ #define HAVE_POLL 0 /* - * End of "$Id: config.no-cygwin,v 1.1.2.2 2000/11/20 15:44:18 easysw Exp $". + * End of "$Id: config.no-cygwin,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $". */ diff --git a/makefiles/config.os2x b/makefiles/config.os2x index f25d186d2..99eafa659 100644 --- a/makefiles/config.os2x +++ b/makefiles/config.os2x @@ -1,9 +1,9 @@ /* - * "$Id: config.os2x,v 1.1.2.2 2000/11/20 15:44:18 easysw Exp $" + * "$Id: config.os2x,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $" * * 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 * modify it under the terms of the GNU Library General Public @@ -156,5 +156,5 @@ #define HAVE_POLL 0 /* - * End of "$Id: config.os2x,v 1.1.2.2 2000/11/20 15:44:18 easysw Exp $". + * End of "$Id: config.os2x,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $". */ diff --git a/makefiles/makeinclude.cygwin b/makefiles/makeinclude.cygwin index 2f535bb46..1f19ccde2 100644 --- a/makefiles/makeinclude.cygwin +++ b/makefiles/makeinclude.cygwin @@ -1,9 +1,9 @@ # -# "$Id: makeinclude.cygwin,v 1.1.2.1 2000/06/20 18:47:33 carl Exp $" +# "$Id: makeinclude.cygwin,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $" # # Make include 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 # modify it under the terms of the GNU Library General Public @@ -91,5 +91,5 @@ GLDLIBS = -lglu32 -lopengl32 -lgdi32 -lwsock32 $(CXX) -I.. $(CXXFLAGS) $< -c # -# End of "$Id: makeinclude.cygwin,v 1.1.2.1 2000/06/20 18:47:33 carl Exp $". +# End of "$Id: makeinclude.cygwin,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $". # diff --git a/makefiles/makeinclude.mingw b/makefiles/makeinclude.mingw index f00e15dcb..11f995fe1 100644 --- a/makefiles/makeinclude.mingw +++ b/makefiles/makeinclude.mingw @@ -1,9 +1,9 @@ # -# "$Id: makeinclude.mingw,v 1.1.2.2 2000/06/20 18:47:33 carl Exp $" +# "$Id: makeinclude.mingw,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $" # # Make include 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 # modify it under the terms of the GNU Library General Public @@ -91,5 +91,5 @@ GLDLIBS = -lglu32 -lopengl32 -lgdi32 -lwsock32 $(CXX) -I.. $(CXXFLAGS) $< -c # -# End of "$Id: makeinclude.mingw,v 1.1.2.2 2000/06/20 18:47:33 carl Exp $". +# End of "$Id: makeinclude.mingw,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $". # diff --git a/makefiles/makeinclude.no-cygwin b/makefiles/makeinclude.no-cygwin index 457ec3a32..f159b62a2 100644 --- a/makefiles/makeinclude.no-cygwin +++ b/makefiles/makeinclude.no-cygwin @@ -1,9 +1,9 @@ # -# "$Id: makeinclude.no-cygwin,v 1.1.2.3 2000/06/20 18:47:33 carl Exp $" +# "$Id: makeinclude.no-cygwin,v 1.1.2.4 2001/01/22 15:13:39 easysw Exp $" # # Make include 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 # modify it under the terms of the GNU Library General Public @@ -91,5 +91,5 @@ GLDLIBS = -lglu32 -lopengl32 -lgdi32 -lwsock32 $(CXX) -I.. $(CXXFLAGS) $< -c # -# End of "$Id: makeinclude.no-cygwin,v 1.1.2.3 2000/06/20 18:47:33 carl Exp $". +# End of "$Id: makeinclude.no-cygwin,v 1.1.2.4 2001/01/22 15:13:39 easysw Exp $". # diff --git a/makefiles/makeinclude.os2x b/makefiles/makeinclude.os2x index f210918c3..04135baf4 100644 --- a/makefiles/makeinclude.os2x +++ b/makefiles/makeinclude.os2x @@ -1,9 +1,9 @@ # -# "$Id: makeinclude.os2x,v 1.1.2.1 2000/08/19 19:03:46 spitzak Exp $" +# "$Id: makeinclude.os2x,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $" # # Make include 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 # modify it under the terms of the GNU Library General Public @@ -71,7 +71,7 @@ GLDLIBS = $(LDFLAGS) -lXext -lX11 -lExtensions $(CXX) -I.. $(CXXFLAGS) $< -c # -# End of "$Id: makeinclude.os2x,v 1.1.2.1 2000/08/19 19:03:46 spitzak Exp $". +# End of "$Id: makeinclude.os2x,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $". # export diff --git a/makeinclude.in b/makeinclude.in index 8147764c4..23985fd75 100644 --- a/makeinclude.in +++ b/makeinclude.in @@ -1,10 +1,10 @@ # -# "$Id: makeinclude.in,v 1.7.2.7 2000/11/20 15:10:00 easysw Exp $" +# "$Id: makeinclude.in,v 1.7.2.8 2001/01/22 15:13:37 easysw Exp $" # # Make include file for the Fast Light Tool Kit (FLTK). # @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 # modify it under the terms of the GNU Library General Public @@ -71,5 +71,5 @@ GLDLIBS =@LDFLAGS@ @LIBS@ @GLLIB@ -lX11 -lXext @X_EXTRA_LIBS@ -lm $(CXX) -I.. $(CXXFLAGS) -c $< # -# End of "$Id: makeinclude.in,v 1.7.2.7 2000/11/20 15:10:00 easysw Exp $". +# End of "$Id: makeinclude.in,v 1.7.2.8 2001/01/22 15:13:37 easysw Exp $". # diff --git a/src/Fl.cxx b/src/Fl.cxx index 2296e0c74..3b5156d1d 100644 --- a/src/Fl.cxx +++ b/src/Fl.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl.cxx,v 1.24.2.38 2001/01/21 06:00:58 spitzak Exp $" +// "$Id: Fl.cxx,v 1.24.2.39 2001/01/22 15:13:39 easysw Exp $" // // Main event handling code 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 // modify it under the terms of the GNU Library General Public @@ -781,5 +781,5 @@ void Fl_Window::flush() { } // -// End of "$Id: Fl.cxx,v 1.24.2.38 2001/01/21 06:00:58 spitzak Exp $". +// End of "$Id: Fl.cxx,v 1.24.2.39 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Adjuster.cxx b/src/Fl_Adjuster.cxx index c31ea252a..dc8a39b50 100644 --- a/src/Fl_Adjuster.cxx +++ b/src/Fl_Adjuster.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Adjuster.cxx,v 1.5.2.2 2000/06/05 21:20:47 mike Exp $" +// "$Id: Fl_Adjuster.cxx,v 1.5.2.3 2001/01/22 15:13:39 easysw Exp $" // // Adjuster widget 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 // modify it under the terms of the GNU Library General Public @@ -130,5 +130,5 @@ Fl_Adjuster::Fl_Adjuster(int x, int y, int w, int h, const char* l) } // -// End of "$Id: Fl_Adjuster.cxx,v 1.5.2.2 2000/06/05 21:20:47 mike Exp $". +// End of "$Id: Fl_Adjuster.cxx,v 1.5.2.3 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Bitmap.cxx b/src/Fl_Bitmap.cxx index 848fd1a3c..91c9fd4d3 100644 --- a/src/Fl_Bitmap.cxx +++ b/src/Fl_Bitmap.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Bitmap.cxx,v 1.5.2.3 2000/06/05 21:20:47 mike Exp $" +// "$Id: Fl_Bitmap.cxx,v 1.5.2.4 2001/01/22 15:13:39 easysw Exp $" // // Bitmap drawing routines 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 // modify it under the terms of the GNU Library General Public @@ -125,5 +125,5 @@ void Fl_Bitmap::label(Fl_Menu_Item* o) { } // -// End of "$Id: Fl_Bitmap.cxx,v 1.5.2.3 2000/06/05 21:20:47 mike Exp $". +// End of "$Id: Fl_Bitmap.cxx,v 1.5.2.4 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Box.cxx b/src/Fl_Box.cxx index 16c24ceab..86f408a9a 100644 --- a/src/Fl_Box.cxx +++ b/src/Fl_Box.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Box.cxx,v 1.4.2.2 2000/06/05 21:20:47 mike Exp $" +// "$Id: Fl_Box.cxx,v 1.4.2.3 2001/01/22 15:13:39 easysw Exp $" // // Box widget 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 // modify it under the terms of the GNU Library General Public @@ -34,5 +34,5 @@ void Fl_Box::draw() { } // -// End of "$Id: Fl_Box.cxx,v 1.4.2.2 2000/06/05 21:20:47 mike Exp $". +// End of "$Id: Fl_Box.cxx,v 1.4.2.3 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Browser.cxx b/src/Fl_Browser.cxx index 5480ebe52..35fd98aaf 100644 --- a/src/Fl_Browser.cxx +++ b/src/Fl_Browser.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Browser.cxx,v 1.9.2.11 2000/06/05 21:20:47 mike Exp $" +// "$Id: Fl_Browser.cxx,v 1.9.2.12 2001/01/22 15:13:39 easysw Exp $" // // Browser widget 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 // modify it under the terms of the GNU Library General Public @@ -493,5 +493,5 @@ int Fl_Browser::value() const { } // -// End of "$Id: Fl_Browser.cxx,v 1.9.2.11 2000/06/05 21:20:47 mike Exp $". +// End of "$Id: Fl_Browser.cxx,v 1.9.2.12 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Browser_.cxx b/src/Fl_Browser_.cxx index 4df4d7d15..903479b23 100644 --- a/src/Fl_Browser_.cxx +++ b/src/Fl_Browser_.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Browser_.cxx,v 1.10.2.14 2000/06/30 04:23:13 spitzak Exp $" +// "$Id: Fl_Browser_.cxx,v 1.10.2.15 2001/01/22 15:13:39 easysw Exp $" // // Base Browser widget class 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 // modify it under the terms of the GNU Library General Public @@ -706,5 +706,5 @@ void Fl_Browser_::item_select(void*, int) {} int Fl_Browser_::item_selected(void* l) const {return l==selection_;} // -// End of "$Id: Fl_Browser_.cxx,v 1.10.2.14 2000/06/30 04:23:13 spitzak Exp $". +// End of "$Id: Fl_Browser_.cxx,v 1.10.2.15 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Browser_load.cxx b/src/Fl_Browser_load.cxx index 69e3a904d..7858d652a 100644 --- a/src/Fl_Browser_load.cxx +++ b/src/Fl_Browser_load.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Browser_load.cxx,v 1.4.2.2 2000/06/05 21:20:48 mike Exp $" +// "$Id: Fl_Browser_load.cxx,v 1.4.2.3 2001/01/22 15:13:39 easysw Exp $" // // File loading routines 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 // modify it under the terms of the GNU Library General Public @@ -51,5 +51,5 @@ int Fl_Browser::load(const char *filename) { } // -// End of "$Id: Fl_Browser_load.cxx,v 1.4.2.2 2000/06/05 21:20:48 mike Exp $". +// End of "$Id: Fl_Browser_load.cxx,v 1.4.2.3 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Button.cxx b/src/Fl_Button.cxx index eb9b9362b..34320b7ba 100644 --- a/src/Fl_Button.cxx +++ b/src/Fl_Button.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Button.cxx,v 1.4.2.5 2000/07/07 08:38:58 spitzak Exp $" +// "$Id: Fl_Button.cxx,v 1.4.2.6 2001/01/22 15:13:39 easysw Exp $" // // Button widget 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 // modify it under the terms of the GNU Library General Public @@ -118,5 +118,5 @@ Fl_Button::Fl_Button(int x,int y,int w,int h, const char *l) } // -// End of "$Id: Fl_Button.cxx,v 1.4.2.5 2000/07/07 08:38:58 spitzak Exp $". +// End of "$Id: Fl_Button.cxx,v 1.4.2.6 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Chart.cxx b/src/Fl_Chart.cxx index 4b5f906e8..916ca698d 100644 --- a/src/Fl_Chart.cxx +++ b/src/Fl_Chart.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Chart.cxx,v 1.5.2.5 2000/11/20 19:02:20 easysw Exp $" +// "$Id: Fl_Chart.cxx,v 1.5.2.6 2001/01/22 15:13:39 easysw Exp $" // // Forms-compatible chart widget 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 // modify it under the terms of the GNU Library General Public @@ -378,5 +378,5 @@ void Fl_Chart::maxsize(int m) { } // -// End of "$Id: Fl_Chart.cxx,v 1.5.2.5 2000/11/20 19:02:20 easysw Exp $". +// End of "$Id: Fl_Chart.cxx,v 1.5.2.6 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Check_Button.cxx b/src/Fl_Check_Button.cxx index ab3cc3e91..f40b0f8f3 100644 --- a/src/Fl_Check_Button.cxx +++ b/src/Fl_Check_Button.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Check_Button.cxx,v 1.4.2.2 2000/06/05 21:20:49 mike Exp $" +// "$Id: Fl_Check_Button.cxx,v 1.4.2.3 2001/01/22 15:13:39 easysw Exp $" // // Check button widget 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 // modify it under the terms of the GNU Library General Public diff --git a/src/Fl_Choice.cxx b/src/Fl_Choice.cxx index 0c00a23a3..c55dde5a3 100644 --- a/src/Fl_Choice.cxx +++ b/src/Fl_Choice.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Choice.cxx,v 1.10.2.4 2000/06/05 21:20:49 mike Exp $" +// "$Id: Fl_Choice.cxx,v 1.10.2.5 2001/01/22 15:13:39 easysw Exp $" // // Choice widget 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 // modify it under the terms of the GNU Library General Public @@ -90,5 +90,5 @@ int Fl_Choice::handle(int e) { } // -// End of "$Id: Fl_Choice.cxx,v 1.10.2.4 2000/06/05 21:20:49 mike Exp $". +// End of "$Id: Fl_Choice.cxx,v 1.10.2.5 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Clock.cxx b/src/Fl_Clock.cxx index c237804e2..f05e3f77b 100644 --- a/src/Fl_Clock.cxx +++ b/src/Fl_Clock.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Clock.cxx,v 1.8.2.3 2000/06/05 21:20:49 mike Exp $" +// "$Id: Fl_Clock.cxx,v 1.8.2.4 2001/01/22 15:13:39 easysw Exp $" // // Clock widget 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 // modify it under the terms of the GNU Library General Public @@ -170,5 +170,5 @@ Fl_Clock::~Fl_Clock() { } // -// End of "$Id: Fl_Clock.cxx,v 1.8.2.3 2000/06/05 21:20:49 mike Exp $". +// End of "$Id: Fl_Clock.cxx,v 1.8.2.4 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Color_Chooser.cxx b/src/Fl_Color_Chooser.cxx index 80f7e332d..91076241e 100644 --- a/src/Fl_Color_Chooser.cxx +++ b/src/Fl_Color_Chooser.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Color_Chooser.cxx,v 1.7.2.3 2000/06/05 21:20:50 mike Exp $" +// "$Id: Fl_Color_Chooser.cxx,v 1.7.2.4 2001/01/22 15:13:39 easysw Exp $" // // Color chooser 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 // modify it under the terms of the GNU Library General Public @@ -431,5 +431,5 @@ int fl_color_chooser(const char* name, uchar& r, uchar& g, uchar& b) { } // -// End of "$Id: Fl_Color_Chooser.cxx,v 1.7.2.3 2000/06/05 21:20:50 mike Exp $". +// End of "$Id: Fl_Color_Chooser.cxx,v 1.7.2.4 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Counter.cxx b/src/Fl_Counter.cxx index 6f361d1fe..06f26ff30 100644 --- a/src/Fl_Counter.cxx +++ b/src/Fl_Counter.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Counter.cxx,v 1.8.2.2 2000/06/05 21:20:50 mike Exp $" +// "$Id: Fl_Counter.cxx,v 1.8.2.3 2001/01/22 15:13:39 easysw Exp $" // // Counter widget 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 // modify it under the terms of the GNU Library General Public @@ -165,5 +165,5 @@ Fl_Counter::Fl_Counter(int x, int y, int w, int h, const char* l) } // -// End of "$Id: Fl_Counter.cxx,v 1.8.2.2 2000/06/05 21:20:50 mike Exp $". +// End of "$Id: Fl_Counter.cxx,v 1.8.2.3 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Dial.cxx b/src/Fl_Dial.cxx index 43d818ce5..46ae07caf 100644 --- a/src/Fl_Dial.cxx +++ b/src/Fl_Dial.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Dial.cxx,v 1.12.2.2 2000/06/05 21:20:50 mike Exp $" +// "$Id: Fl_Dial.cxx,v 1.12.2.3 2001/01/22 15:13:39 easysw Exp $" // // Circular dial widget 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 // modify it under the terms of the GNU Library General Public @@ -131,5 +131,5 @@ Fl_Dial::Fl_Dial(int x, int y, int w, int h, const char* l) } // -// End of "$Id: Fl_Dial.cxx,v 1.12.2.2 2000/06/05 21:20:50 mike Exp $". +// End of "$Id: Fl_Dial.cxx,v 1.12.2.3 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Double_Window.cxx b/src/Fl_Double_Window.cxx index 00b6479f2..dd60ba903 100644 --- a/src/Fl_Double_Window.cxx +++ b/src/Fl_Double_Window.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Double_Window.cxx,v 1.12.2.3 2000/11/20 19:02:20 easysw Exp $" +// "$Id: Fl_Double_Window.cxx,v 1.12.2.4 2001/01/22 15:13:39 easysw Exp $" // // Double-buffered window code 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 // modify it under the terms of the GNU Library General Public @@ -192,5 +192,5 @@ Fl_Double_Window::~Fl_Double_Window() { } // -// End of "$Id: Fl_Double_Window.cxx,v 1.12.2.3 2000/11/20 19:02:20 easysw Exp $". +// End of "$Id: Fl_Double_Window.cxx,v 1.12.2.4 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Font.H b/src/Fl_Font.H index 0d183762f..425d00dc3 100644 --- a/src/Fl_Font.H +++ b/src/Fl_Font.H @@ -1,9 +1,9 @@ // -// "$Id: Fl_Font.H,v 1.6.2.2 2000/06/05 21:20:50 mike Exp $" +// "$Id: Fl_Font.H,v 1.6.2.3 2001/01/22 15:13:39 easysw Exp $" // // Font definitions 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 // modify it under the terms of the GNU Library General Public @@ -78,5 +78,5 @@ FL_EXPORT char *fl_find_fontsize(char *name); #endif // -// End of "$Id: Fl_Font.H,v 1.6.2.2 2000/06/05 21:20:50 mike Exp $". +// End of "$Id: Fl_Font.H,v 1.6.2.3 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Gl_Choice.H b/src/Fl_Gl_Choice.H index 7925419b1..986ee5d65 100644 --- a/src/Fl_Gl_Choice.H +++ b/src/Fl_Gl_Choice.H @@ -1,9 +1,9 @@ // -// "$Id: Fl_Gl_Choice.H,v 1.4.2.4 2000/06/05 21:20:51 mike Exp $" +// "$Id: Fl_Gl_Choice.H,v 1.4.2.5 2001/01/22 15:13:39 easysw Exp $" // // OpenGL definitions 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 // modify it under the terms of the GNU Library General Public @@ -91,5 +91,5 @@ void fl_no_gl_context(); #endif // -// End of "$Id: Fl_Gl_Choice.H,v 1.4.2.4 2000/06/05 21:20:51 mike Exp $". +// End of "$Id: Fl_Gl_Choice.H,v 1.4.2.5 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Gl_Choice.cxx b/src/Fl_Gl_Choice.cxx index e9a663dd9..31285e9c6 100644 --- a/src/Fl_Gl_Choice.cxx +++ b/src/Fl_Gl_Choice.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Gl_Choice.cxx,v 1.5.2.4 2000/06/05 21:20:51 mike Exp $" +// "$Id: Fl_Gl_Choice.cxx,v 1.5.2.5 2001/01/22 15:13:39 easysw Exp $" // // OpenGL visual selection code 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 // modify it under the terms of the GNU Library General Public @@ -213,5 +213,5 @@ void fl_no_gl_context() { #endif // -// End of "$Id: Fl_Gl_Choice.cxx,v 1.5.2.4 2000/06/05 21:20:51 mike Exp $". +// End of "$Id: Fl_Gl_Choice.cxx,v 1.5.2.5 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Gl_Overlay.cxx b/src/Fl_Gl_Overlay.cxx index e50721cbc..fd040abb0 100644 --- a/src/Fl_Gl_Overlay.cxx +++ b/src/Fl_Gl_Overlay.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Gl_Overlay.cxx,v 1.5.2.13 2000/12/06 15:45:12 easysw Exp $" +// "$Id: Fl_Gl_Overlay.cxx,v 1.5.2.14 2001/01/22 15:13:39 easysw Exp $" // // OpenGL overlay code 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 // modify it under the terms of the GNU Library General Public @@ -209,5 +209,5 @@ void Fl_Gl_Window::hide_overlay() { #endif // -// End of "$Id: Fl_Gl_Overlay.cxx,v 1.5.2.13 2000/12/06 15:45:12 easysw Exp $". +// End of "$Id: Fl_Gl_Overlay.cxx,v 1.5.2.14 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Gl_Window.cxx b/src/Fl_Gl_Window.cxx index d8a64fd8c..87806a54a 100644 --- a/src/Fl_Gl_Window.cxx +++ b/src/Fl_Gl_Window.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Gl_Window.cxx,v 1.12.2.19 2000/12/12 08:57:30 spitzak Exp $" +// "$Id: Fl_Gl_Window.cxx,v 1.12.2.20 2001/01/22 15:13:39 easysw Exp $" // // OpenGL window code 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 // modify it under the terms of the GNU Library General Public @@ -337,5 +337,5 @@ void Fl_Gl_Window::draw_overlay() {} #endif // -// End of "$Id: Fl_Gl_Window.cxx,v 1.12.2.19 2000/12/12 08:57:30 spitzak Exp $". +// End of "$Id: Fl_Gl_Window.cxx,v 1.12.2.20 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Group.cxx b/src/Fl_Group.cxx index 655110b9d..19e65b8ec 100644 --- a/src/Fl_Group.cxx +++ b/src/Fl_Group.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Group.cxx,v 1.8.2.7 2000/10/21 20:01:56 spitzak Exp $" +// "$Id: Fl_Group.cxx,v 1.8.2.8 2001/01/22 15:13:39 easysw Exp $" // // Group widget 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 // modify it under the terms of the GNU Library General Public @@ -513,5 +513,5 @@ void Fl_Group::draw_outside_label(const Fl_Widget& w) const { } // -// End of "$Id: Fl_Group.cxx,v 1.8.2.7 2000/10/21 20:01:56 spitzak Exp $". +// End of "$Id: Fl_Group.cxx,v 1.8.2.8 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Image.cxx b/src/Fl_Image.cxx index 246184831..843a88963 100644 --- a/src/Fl_Image.cxx +++ b/src/Fl_Image.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Image.cxx,v 1.5.2.2 2000/06/05 21:20:52 mike Exp $" +// "$Id: Fl_Image.cxx,v 1.5.2.3 2001/01/22 15:13:39 easysw Exp $" // // Image drawing code 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 // modify it under the terms of the GNU Library General Public @@ -86,5 +86,5 @@ void Fl_Image::label(Fl_Menu_Item* o) { } // -// End of "$Id: Fl_Image.cxx,v 1.5.2.2 2000/06/05 21:20:52 mike Exp $". +// End of "$Id: Fl_Image.cxx,v 1.5.2.3 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Input.cxx b/src/Fl_Input.cxx index 79a6e2e2e..68a4b4ee6 100644 --- a/src/Fl_Input.cxx +++ b/src/Fl_Input.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Input.cxx,v 1.10.2.13 2000/10/17 07:23:42 spitzak Exp $" +// "$Id: Fl_Input.cxx,v 1.10.2.14 2001/01/22 15:13:39 easysw Exp $" // // Input widget 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 // modify it under the terms of the GNU Library General Public @@ -276,5 +276,5 @@ Fl_Input::Fl_Input(int x, int y, int w, int h, const char *l) } // -// End of "$Id: Fl_Input.cxx,v 1.10.2.13 2000/10/17 07:23:42 spitzak Exp $". +// End of "$Id: Fl_Input.cxx,v 1.10.2.14 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Input_.cxx b/src/Fl_Input_.cxx index 7f4d40f13..cba64c70d 100644 --- a/src/Fl_Input_.cxx +++ b/src/Fl_Input_.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Input_.cxx,v 1.21.2.10 2000/12/12 08:57:30 spitzak Exp $" +// "$Id: Fl_Input_.cxx,v 1.21.2.11 2001/01/22 15:13:39 easysw Exp $" // // Common input widget routines 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 // modify it under the terms of the GNU Library General Public @@ -817,5 +817,5 @@ Fl_Input_::~Fl_Input_() { } // -// End of "$Id: Fl_Input_.cxx,v 1.21.2.10 2000/12/12 08:57:30 spitzak Exp $". +// End of "$Id: Fl_Input_.cxx,v 1.21.2.11 2001/01/22 15:13:39 easysw Exp $". // diff --git a/src/Fl_Light_Button.cxx b/src/Fl_Light_Button.cxx index 39ffe6c86..ed48f55b6 100644 --- a/src/Fl_Light_Button.cxx +++ b/src/Fl_Light_Button.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Light_Button.cxx,v 1.4.2.2 2000/06/05 21:20:52 mike Exp $" +// "$Id: Fl_Light_Button.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $" // // Lighted button widget 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 // modify it under the terms of the GNU Library General Public @@ -70,5 +70,5 @@ Fl_Light_Button::Fl_Light_Button(int x, int y, int w, int h, const char* l) } // -// End of "$Id: Fl_Light_Button.cxx,v 1.4.2.2 2000/06/05 21:20:52 mike Exp $". +// End of "$Id: Fl_Light_Button.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Menu.cxx b/src/Fl_Menu.cxx index b58105bbc..56d69d7c6 100644 --- a/src/Fl_Menu.cxx +++ b/src/Fl_Menu.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Menu.cxx,v 1.18.2.11 2000/11/20 19:02:20 easysw Exp $" +// "$Id: Fl_Menu.cxx,v 1.18.2.12 2001/01/22 15:13:40 easysw Exp $" // // Menu code 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 // modify it under the terms of the GNU Library General Public @@ -743,5 +743,5 @@ const Fl_Menu_Item* Fl_Menu_Item::test_shortcut() const { } // -// End of "$Id: Fl_Menu.cxx,v 1.18.2.11 2000/11/20 19:02:20 easysw Exp $". +// End of "$Id: Fl_Menu.cxx,v 1.18.2.12 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Menu_.cxx b/src/Fl_Menu_.cxx index d5e0e468e..76190328b 100644 --- a/src/Fl_Menu_.cxx +++ b/src/Fl_Menu_.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Menu_.cxx,v 1.7.2.7 2000/06/05 21:20:54 mike Exp $" +// "$Id: Fl_Menu_.cxx,v 1.7.2.8 2001/01/22 15:13:40 easysw Exp $" // // Common menu code 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 // modify it under the terms of the GNU Library General Public @@ -172,5 +172,5 @@ void Fl_Menu_::clear() { } // -// End of "$Id: Fl_Menu_.cxx,v 1.7.2.7 2000/06/05 21:20:54 mike Exp $". +// End of "$Id: Fl_Menu_.cxx,v 1.7.2.8 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Menu_Bar.cxx b/src/Fl_Menu_Bar.cxx index 176492b16..72e4618bf 100644 --- a/src/Fl_Menu_Bar.cxx +++ b/src/Fl_Menu_Bar.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Menu_Bar.cxx,v 1.7.2.5 2000/09/23 08:21:52 spitzak Exp $" +// "$Id: Fl_Menu_Bar.cxx,v 1.7.2.6 2001/01/22 15:13:40 easysw Exp $" // // Menu bar widget 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 // modify it under the terms of the GNU Library General Public @@ -61,5 +61,5 @@ int Fl_Menu_Bar::handle(int event) { } // -// End of "$Id: Fl_Menu_Bar.cxx,v 1.7.2.5 2000/09/23 08:21:52 spitzak Exp $". +// End of "$Id: Fl_Menu_Bar.cxx,v 1.7.2.6 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Menu_Button.cxx b/src/Fl_Menu_Button.cxx index dffab6749..36661a875 100644 --- a/src/Fl_Menu_Button.cxx +++ b/src/Fl_Menu_Button.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Menu_Button.cxx,v 1.4.2.2 2000/06/05 21:20:54 mike Exp $" +// "$Id: Fl_Menu_Button.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $" // // Menu button widget 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 // modify it under the terms of the GNU Library General Public @@ -78,5 +78,5 @@ Fl_Menu_Button::Fl_Menu_Button(int X,int Y,int W,int H,const char *l) } // -// End of "$Id: Fl_Menu_Button.cxx,v 1.4.2.2 2000/06/05 21:20:54 mike Exp $". +// End of "$Id: Fl_Menu_Button.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Menu_Window.cxx b/src/Fl_Menu_Window.cxx index a07cec556..2f11e8306 100644 --- a/src/Fl_Menu_Window.cxx +++ b/src/Fl_Menu_Window.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Menu_Window.cxx,v 1.8.2.4 2000/11/20 19:02:20 easysw Exp $" +// "$Id: Fl_Menu_Window.cxx,v 1.8.2.5 2001/01/22 15:13:40 easysw Exp $" // // Menu window code 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 // modify it under the terms of the GNU Library General Public @@ -97,5 +97,5 @@ Fl_Menu_Window::~Fl_Menu_Window() { } // -// End of "$Id: Fl_Menu_Window.cxx,v 1.8.2.4 2000/11/20 19:02:20 easysw Exp $". +// End of "$Id: Fl_Menu_Window.cxx,v 1.8.2.5 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Menu_add.cxx b/src/Fl_Menu_add.cxx index 21b5386e7..b1f0edf38 100644 --- a/src/Fl_Menu_add.cxx +++ b/src/Fl_Menu_add.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Menu_add.cxx,v 1.9.2.9 2000/11/20 19:02:20 easysw Exp $" +// "$Id: Fl_Menu_add.cxx,v 1.9.2.10 2001/01/22 15:13:40 easysw Exp $" // // Menu utilities 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 // modify it under the terms of the GNU Library General Public @@ -253,5 +253,5 @@ void Fl_Menu_::remove(int i) { } // -// End of "$Id: Fl_Menu_add.cxx,v 1.9.2.9 2000/11/20 19:02:20 easysw Exp $". +// End of "$Id: Fl_Menu_add.cxx,v 1.9.2.10 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Menu_global.cxx b/src/Fl_Menu_global.cxx index c285075b3..0dcc0daf6 100644 --- a/src/Fl_Menu_global.cxx +++ b/src/Fl_Menu_global.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Menu_global.cxx,v 1.5.2.3 2000/06/05 21:20:55 mike Exp $" +// "$Id: Fl_Menu_global.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $" // // Global menu shortcut code 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 // modify it under the terms of the GNU Library General Public @@ -44,5 +44,5 @@ void Fl_Menu_::global() { } // -// End of "$Id: Fl_Menu_global.cxx,v 1.5.2.3 2000/06/05 21:20:55 mike Exp $". +// End of "$Id: Fl_Menu_global.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Multi_Label.cxx b/src/Fl_Multi_Label.cxx index f5c6ccbe4..f184e1c84 100644 --- a/src/Fl_Multi_Label.cxx +++ b/src/Fl_Multi_Label.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Multi_Label.cxx,v 1.4.2.2 2000/06/05 21:20:55 mike Exp $" +// "$Id: Fl_Multi_Label.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $" // // Multi-label widget 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 // modify it under the terms of the GNU Library General Public @@ -74,5 +74,5 @@ void Fl_Multi_Label::label(Fl_Menu_Item* o) { } // -// End of "$Id: Fl_Multi_Label.cxx,v 1.4.2.2 2000/06/05 21:20:55 mike Exp $". +// End of "$Id: Fl_Multi_Label.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Output.cxx b/src/Fl_Output.cxx index c3432a42a..2ff8accec 100644 --- a/src/Fl_Output.cxx +++ b/src/Fl_Output.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Output.cxx,v 1.6.2.2 2000/06/05 21:20:55 mike Exp $" +// "$Id: Fl_Output.cxx,v 1.6.2.3 2001/01/22 15:13:40 easysw Exp $" // // Output widget 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 // modify it under the terms of the GNU Library General Public @@ -46,5 +46,5 @@ int Fl_Output::handle(int event) { } // -// End of "$Id: Fl_Output.cxx,v 1.6.2.2 2000/06/05 21:20:55 mike Exp $". +// End of "$Id: Fl_Output.cxx,v 1.6.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Overlay_Window.cxx b/src/Fl_Overlay_Window.cxx index d172465bf..57f029a1f 100644 --- a/src/Fl_Overlay_Window.cxx +++ b/src/Fl_Overlay_Window.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Overlay_Window.cxx,v 1.7.2.4 2000/11/20 19:02:20 easysw Exp $" +// "$Id: Fl_Overlay_Window.cxx,v 1.7.2.5 2001/01/22 15:13:40 easysw Exp $" // // Overlay window code 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 // modify it under the terms of the GNU Library General Public @@ -140,5 +140,5 @@ void Fl_Overlay_Window::redraw_overlay() { #endif // -// End of "$Id: Fl_Overlay_Window.cxx,v 1.7.2.4 2000/11/20 19:02:20 easysw Exp $". +// End of "$Id: Fl_Overlay_Window.cxx,v 1.7.2.5 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Pack.cxx b/src/Fl_Pack.cxx index dac8e4501..af5f94194 100644 --- a/src/Fl_Pack.cxx +++ b/src/Fl_Pack.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Pack.cxx,v 1.6.2.3 2000/06/20 05:47:37 bill Exp $" +// "$Id: Fl_Pack.cxx,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $" // // Packing widget 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 // modify it under the terms of the GNU Library General Public @@ -112,5 +112,5 @@ void Fl_Pack::draw() { } // -// End of "$Id: Fl_Pack.cxx,v 1.6.2.3 2000/06/20 05:47:37 bill Exp $". +// End of "$Id: Fl_Pack.cxx,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Pixmap.cxx b/src/Fl_Pixmap.cxx index 632144ea6..846383b55 100644 --- a/src/Fl_Pixmap.cxx +++ b/src/Fl_Pixmap.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Pixmap.cxx,v 1.9.2.3 2000/09/23 07:33:39 spitzak Exp $" +// "$Id: Fl_Pixmap.cxx,v 1.9.2.4 2001/01/22 15:13:40 easysw Exp $" // // Pixmap drawing code 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 // modify it under the terms of the GNU Library General Public @@ -194,5 +194,5 @@ void Fl_Pixmap::label(Fl_Menu_Item* o) { } // -// End of "$Id: Fl_Pixmap.cxx,v 1.9.2.3 2000/09/23 07:33:39 spitzak Exp $". +// End of "$Id: Fl_Pixmap.cxx,v 1.9.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Positioner.cxx b/src/Fl_Positioner.cxx index 244e6c1a8..3636cb053 100644 --- a/src/Fl_Positioner.cxx +++ b/src/Fl_Positioner.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Positioner.cxx,v 1.4.2.2 2000/06/05 21:20:55 mike Exp $" +// "$Id: Fl_Positioner.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $" // // Positioner widget 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 // modify it under the terms of the GNU Library General Public @@ -129,5 +129,5 @@ void Fl_Positioner::ybounds(double a, double b) { } // -// End of "$Id: Fl_Positioner.cxx,v 1.4.2.2 2000/06/05 21:20:55 mike Exp $". +// End of "$Id: Fl_Positioner.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Repeat_Button.cxx b/src/Fl_Repeat_Button.cxx index c16da165b..dbe60f473 100644 --- a/src/Fl_Repeat_Button.cxx +++ b/src/Fl_Repeat_Button.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Repeat_Button.cxx,v 1.4.2.3 2000/06/05 21:20:56 mike Exp $" +// "$Id: Fl_Repeat_Button.cxx,v 1.4.2.4 2001/01/22 15:13:40 easysw Exp $" // // Repeat button widget 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 // modify it under the terms of the GNU Library General Public @@ -61,5 +61,5 @@ int Fl_Repeat_Button::handle(int event) { } // -// End of "$Id: Fl_Repeat_Button.cxx,v 1.4.2.3 2000/06/05 21:20:56 mike Exp $". +// End of "$Id: Fl_Repeat_Button.cxx,v 1.4.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Return_Button.cxx b/src/Fl_Return_Button.cxx index 36e1f97a8..c29f2e26e 100644 --- a/src/Fl_Return_Button.cxx +++ b/src/Fl_Return_Button.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Return_Button.cxx,v 1.5.2.2 2000/06/05 21:20:56 mike Exp $" +// "$Id: Fl_Return_Button.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $" // // Return button widget 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 // modify it under the terms of the GNU Library General Public @@ -65,5 +65,5 @@ int Fl_Return_Button::handle(int event) { } // -// End of "$Id: Fl_Return_Button.cxx,v 1.5.2.2 2000/06/05 21:20:56 mike Exp $". +// End of "$Id: Fl_Return_Button.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Roller.cxx b/src/Fl_Roller.cxx index ebeb9ec47..4f598eb58 100644 --- a/src/Fl_Roller.cxx +++ b/src/Fl_Roller.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Roller.cxx,v 1.6.2.3 2000/06/05 21:20:56 mike Exp $" +// "$Id: Fl_Roller.cxx,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $" // // Roller widget 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 // modify it under the terms of the GNU Library General Public @@ -137,5 +137,5 @@ Fl_Roller::Fl_Roller(int X,int Y,int W,int H,const char* L) } // -// End of "$Id: Fl_Roller.cxx,v 1.6.2.3 2000/06/05 21:20:56 mike Exp $". +// End of "$Id: Fl_Roller.cxx,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Round_Button.cxx b/src/Fl_Round_Button.cxx index 8a5bbf6ae..662ebc7c0 100644 --- a/src/Fl_Round_Button.cxx +++ b/src/Fl_Round_Button.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Round_Button.cxx,v 1.4.2.2 2000/06/05 21:20:56 mike Exp $" +// "$Id: Fl_Round_Button.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $" // // Round button 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 // modify it under the terms of the GNU Library General Public @@ -38,5 +38,5 @@ Fl_Round_Button::Fl_Round_Button(int x,int y,int w,int h, const char *l) } // -// End of "$Id: Fl_Round_Button.cxx,v 1.4.2.2 2000/06/05 21:20:56 mike Exp $". +// End of "$Id: Fl_Round_Button.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Scroll.cxx b/src/Fl_Scroll.cxx index 7db14545a..f60329d64 100644 --- a/src/Fl_Scroll.cxx +++ b/src/Fl_Scroll.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Scroll.cxx,v 1.7.2.5 2000/11/20 15:30:54 easysw Exp $" +// "$Id: Fl_Scroll.cxx,v 1.7.2.6 2001/01/22 15:13:40 easysw Exp $" // // Scroll widget 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 // modify it under the terms of the GNU Library General Public @@ -249,5 +249,5 @@ int Fl_Scroll::handle(int event) { } // -// End of "$Id: Fl_Scroll.cxx,v 1.7.2.5 2000/11/20 15:30:54 easysw Exp $". +// End of "$Id: Fl_Scroll.cxx,v 1.7.2.6 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Scrollbar.cxx b/src/Fl_Scrollbar.cxx index 50e198b8d..a5c49aa60 100644 --- a/src/Fl_Scrollbar.cxx +++ b/src/Fl_Scrollbar.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Scrollbar.cxx,v 1.7.2.11 2000/06/05 21:20:57 mike Exp $" +// "$Id: Fl_Scrollbar.cxx,v 1.7.2.12 2001/01/22 15:13:40 easysw Exp $" // // Scroll bar widget 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 // modify it under the terms of the GNU Library General Public @@ -234,5 +234,5 @@ Fl_Scrollbar::Fl_Scrollbar(int X, int Y, int W, int H, const char* L) } // -// End of "$Id: Fl_Scrollbar.cxx,v 1.7.2.11 2000/06/05 21:20:57 mike Exp $". +// End of "$Id: Fl_Scrollbar.cxx,v 1.7.2.12 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Single_Window.cxx b/src/Fl_Single_Window.cxx index 72457fc41..008c98a04 100644 --- a/src/Fl_Single_Window.cxx +++ b/src/Fl_Single_Window.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Single_Window.cxx,v 1.4.2.2 2000/06/05 21:20:57 mike Exp $" +// "$Id: Fl_Single_Window.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $" // // Single-buffered window 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 // modify it under the terms of the GNU Library General Public @@ -35,5 +35,5 @@ void Fl_Single_Window::show() {Fl_Window::show();} void Fl_Single_Window::flush() {Fl_Window::flush();} // -// End of "$Id: Fl_Single_Window.cxx,v 1.4.2.2 2000/06/05 21:20:57 mike Exp $". +// End of "$Id: Fl_Single_Window.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Slider.cxx b/src/Fl_Slider.cxx index a58d458eb..9bae98a65 100644 --- a/src/Fl_Slider.cxx +++ b/src/Fl_Slider.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Slider.cxx,v 1.8.2.9 2000/06/15 05:37:39 bill Exp $" +// "$Id: Fl_Slider.cxx,v 1.8.2.10 2001/01/22 15:13:40 easysw Exp $" // // Slider widget 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 // modify it under the terms of the GNU Library General Public @@ -255,5 +255,5 @@ int Fl_Slider::handle(int event) { } // -// End of "$Id: Fl_Slider.cxx,v 1.8.2.9 2000/06/15 05:37:39 bill Exp $". +// End of "$Id: Fl_Slider.cxx,v 1.8.2.10 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Tabs.cxx b/src/Fl_Tabs.cxx index d04bc87e2..e405832d1 100644 --- a/src/Fl_Tabs.cxx +++ b/src/Fl_Tabs.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Tabs.cxx,v 1.6.2.9 2000/10/17 06:53:20 spitzak Exp $" +// "$Id: Fl_Tabs.cxx,v 1.6.2.10 2001/01/22 15:13:40 easysw Exp $" // // Tab widget 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 // modify it under the terms of the GNU Library General Public @@ -275,5 +275,5 @@ Fl_Tabs::Fl_Tabs(int X,int Y,int W, int H, const char *l) : } // -// End of "$Id: Fl_Tabs.cxx,v 1.6.2.9 2000/10/17 06:53:20 spitzak Exp $". +// End of "$Id: Fl_Tabs.cxx,v 1.6.2.10 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Tile.cxx b/src/Fl_Tile.cxx index af2e15ed3..65ea6e437 100644 --- a/src/Fl_Tile.cxx +++ b/src/Fl_Tile.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Tile.cxx,v 1.5.2.4 2000/06/05 21:20:58 mike Exp $" +// "$Id: Fl_Tile.cxx,v 1.5.2.5 2001/01/22 15:13:40 easysw Exp $" // // Tile widget 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 // modify it under the terms of the GNU Library General Public @@ -196,5 +196,5 @@ int Fl_Tile::handle(int event) { } // -// End of "$Id: Fl_Tile.cxx,v 1.5.2.4 2000/06/05 21:20:58 mike Exp $". +// End of "$Id: Fl_Tile.cxx,v 1.5.2.5 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Valuator.cxx b/src/Fl_Valuator.cxx index eaea57c2a..459c3b6c8 100644 --- a/src/Fl_Valuator.cxx +++ b/src/Fl_Valuator.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Valuator.cxx,v 1.5.2.3 2001/01/21 06:00:59 spitzak Exp $" +// "$Id: Fl_Valuator.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $" // // Valuator widget 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 // modify it under the terms of the GNU Library General Public @@ -123,5 +123,5 @@ int Fl_Valuator::format(char* buffer) { } // -// End of "$Id: Fl_Valuator.cxx,v 1.5.2.3 2001/01/21 06:00:59 spitzak Exp $". +// End of "$Id: Fl_Valuator.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Value_Input.cxx b/src/Fl_Value_Input.cxx index 49d98e8bd..6371649e6 100644 --- a/src/Fl_Value_Input.cxx +++ b/src/Fl_Value_Input.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Value_Input.cxx,v 1.6.2.4 2000/06/05 21:20:58 mike Exp $" +// "$Id: Fl_Value_Input.cxx,v 1.6.2.5 2001/01/22 15:13:40 easysw Exp $" // // Value input widget 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 // modify it under the terms of the GNU Library General Public @@ -128,5 +128,5 @@ Fl_Value_Input::Fl_Value_Input(int x, int y, int w, int h, const char* l) } // -// End of "$Id: Fl_Value_Input.cxx,v 1.6.2.4 2000/06/05 21:20:58 mike Exp $". +// End of "$Id: Fl_Value_Input.cxx,v 1.6.2.5 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Value_Output.cxx b/src/Fl_Value_Output.cxx index bfd8c384d..5d4b64a6a 100644 --- a/src/Fl_Value_Output.cxx +++ b/src/Fl_Value_Output.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Value_Output.cxx,v 1.6.2.2 2000/06/05 21:20:58 mike Exp $" +// "$Id: Fl_Value_Output.cxx,v 1.6.2.3 2001/01/22 15:13:40 easysw Exp $" // // Value output widget 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 // modify it under the terms of the GNU Library General Public @@ -94,5 +94,5 @@ Fl_Value_Output::Fl_Value_Output(int x,int y,int w,int h,const char *l) } // -// End of "$Id: Fl_Value_Output.cxx,v 1.6.2.2 2000/06/05 21:20:58 mike Exp $". +// End of "$Id: Fl_Value_Output.cxx,v 1.6.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Value_Slider.cxx b/src/Fl_Value_Slider.cxx index 523d4ee41..9185f7ed6 100644 --- a/src/Fl_Value_Slider.cxx +++ b/src/Fl_Value_Slider.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Value_Slider.cxx,v 1.5.2.3 2000/06/05 21:20:58 mike Exp $" +// "$Id: Fl_Value_Slider.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $" // // Value slider widget 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 // modify it under the terms of the GNU Library General Public @@ -72,5 +72,5 @@ int Fl_Value_Slider::handle(int event) { } // -// End of "$Id: Fl_Value_Slider.cxx,v 1.5.2.3 2000/06/05 21:20:58 mike Exp $". +// End of "$Id: Fl_Value_Slider.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Widget.cxx b/src/Fl_Widget.cxx index 57b19c613..1ba161afd 100644 --- a/src/Fl_Widget.cxx +++ b/src/Fl_Widget.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Widget.cxx,v 1.5.2.3 2000/06/05 21:20:58 mike Exp $" +// "$Id: Fl_Widget.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $" // // Base widget class 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 // modify it under the terms of the GNU Library General Public @@ -198,5 +198,5 @@ int Fl_Widget::contains(const Fl_Widget *o) const { } // -// End of "$Id: Fl_Widget.cxx,v 1.5.2.3 2000/06/05 21:20:58 mike Exp $". +// End of "$Id: Fl_Widget.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Window.cxx b/src/Fl_Window.cxx index 0422e62a6..97e2feb12 100644 --- a/src/Fl_Window.cxx +++ b/src/Fl_Window.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Window.cxx,v 1.6.2.2 2000/06/05 21:20:59 mike Exp $" +// "$Id: Fl_Window.cxx,v 1.6.2.3 2001/01/22 15:13:40 easysw Exp $" // // Window widget class 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 // modify it under the terms of the GNU Library General Public @@ -102,5 +102,5 @@ void Fl_Window::default_callback(Fl_Window* window, void* v) { } // -// End of "$Id: Fl_Window.cxx,v 1.6.2.2 2000/06/05 21:20:59 mike Exp $". +// End of "$Id: Fl_Window.cxx,v 1.6.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Window_fullscreen.cxx b/src/Fl_Window_fullscreen.cxx index b04efc7ff..5872078a1 100644 --- a/src/Fl_Window_fullscreen.cxx +++ b/src/Fl_Window_fullscreen.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Window_fullscreen.cxx,v 1.5.2.2 2000/06/05 21:20:59 mike Exp $" +// "$Id: Fl_Window_fullscreen.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $" // // Fullscreen window support 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 // modify it under the terms of the GNU Library General Public @@ -71,5 +71,5 @@ void Fl_Window::fullscreen_off(int X,int Y,int W,int H) { } // -// End of "$Id: Fl_Window_fullscreen.cxx,v 1.5.2.2 2000/06/05 21:20:59 mike Exp $". +// End of "$Id: Fl_Window_fullscreen.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Window_hotspot.cxx b/src/Fl_Window_hotspot.cxx index ebc28608a..176985a86 100644 --- a/src/Fl_Window_hotspot.cxx +++ b/src/Fl_Window_hotspot.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Window_hotspot.cxx,v 1.7.2.2 2000/06/05 21:20:59 mike Exp $" +// "$Id: Fl_Window_hotspot.cxx,v 1.7.2.3 2001/01/22 15:13:40 easysw Exp $" // // Common hotspot routines 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 // modify it under the terms of the GNU Library General Public @@ -77,5 +77,5 @@ void Fl_Window::hotspot(const Fl_Widget *o, int offscreen) { } // -// End of "$Id: Fl_Window_hotspot.cxx,v 1.7.2.2 2000/06/05 21:20:59 mike Exp $". +// End of "$Id: Fl_Window_hotspot.cxx,v 1.7.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_Window_iconize.cxx b/src/Fl_Window_iconize.cxx index 110cb0a6a..7c33294df 100644 --- a/src/Fl_Window_iconize.cxx +++ b/src/Fl_Window_iconize.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_Window_iconize.cxx,v 1.5.2.2 2000/06/05 21:20:59 mike Exp $" +// "$Id: Fl_Window_iconize.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $" // // Window minification code 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 // modify it under the terms of the GNU Library General Public @@ -41,5 +41,5 @@ void Fl_Window::iconize() { } // -// End of "$Id: Fl_Window_iconize.cxx,v 1.5.2.2 2000/06/05 21:20:59 mike Exp $". +// End of "$Id: Fl_Window_iconize.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_XColor.H b/src/Fl_XColor.H index 8e2c1bbf3..326df990f 100644 --- a/src/Fl_XColor.H +++ b/src/Fl_XColor.H @@ -1,9 +1,9 @@ // -// "$Id: Fl_XColor.H,v 1.6.2.3 2000/07/07 08:38:58 spitzak Exp $" +// "$Id: Fl_XColor.H,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $" // // X-specific color definitions 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 // modify it under the terms of the GNU Library General Public @@ -40,5 +40,5 @@ extern unsigned char fl_redmask, fl_greenmask, fl_bluemask; extern int fl_redshift, fl_greenshift, fl_blueshift, fl_extrashift; // -// End of "$Id: Fl_XColor.H,v 1.6.2.3 2000/07/07 08:38:58 spitzak Exp $". +// End of "$Id: Fl_XColor.H,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_abort.cxx b/src/Fl_abort.cxx index 180f8303f..8e0a4f112 100644 --- a/src/Fl_abort.cxx +++ b/src/Fl_abort.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_abort.cxx,v 1.8.2.2 2000/06/05 21:21:00 mike Exp $" +// "$Id: Fl_abort.cxx,v 1.8.2.3 2001/01/22 15:13:40 easysw Exp $" // // Warning/error message code 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 // modify it under the terms of the GNU Library General Public @@ -89,5 +89,5 @@ void (*Fl::error)(const char* format, ...) = ::error; void (*Fl::fatal)(const char* format, ...) = ::error; // -// End of "$Id: Fl_abort.cxx,v 1.8.2.2 2000/06/05 21:21:00 mike Exp $". +// End of "$Id: Fl_abort.cxx,v 1.8.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_add_idle.cxx b/src/Fl_add_idle.cxx index caf6a8649..88e233bb6 100644 --- a/src/Fl_add_idle.cxx +++ b/src/Fl_add_idle.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_add_idle.cxx,v 1.4.2.5 2000/09/05 17:15:48 spitzak Exp $" +// "$Id: Fl_add_idle.cxx,v 1.4.2.6 2001/01/22 15:13:40 easysw Exp $" // // Idle routine support 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 // modify it under the terms of the GNU Library General Public @@ -91,5 +91,5 @@ void Fl::remove_idle(void (*cb)(void*), void* data) { } // -// End of "$Id: Fl_add_idle.cxx,v 1.4.2.5 2000/09/05 17:15:48 spitzak Exp $". +// End of "$Id: Fl_add_idle.cxx,v 1.4.2.6 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_arg.cxx b/src/Fl_arg.cxx index 0359623b7..830cd3e68 100644 --- a/src/Fl_arg.cxx +++ b/src/Fl_arg.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_arg.cxx,v 1.5.2.6 2000/11/20 19:02:20 easysw Exp $" +// "$Id: Fl_arg.cxx,v 1.5.2.7 2001/01/22 15:13:40 easysw Exp $" // // Optional argument initialization code 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 // modify it under the terms of the GNU Library General Public @@ -352,5 +352,5 @@ int XParseGeometry(const char* string, int* x, int* y, #endif // ifdef WIN32 // -// End of "$Id: Fl_arg.cxx,v 1.5.2.6 2000/11/20 19:02:20 easysw Exp $". +// End of "$Id: Fl_arg.cxx,v 1.5.2.7 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_compose.cxx b/src/Fl_compose.cxx index 53b51b495..8fa620be5 100644 --- a/src/Fl_compose.cxx +++ b/src/Fl_compose.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_compose.cxx,v 1.1.2.5 2000/12/06 15:45:13 easysw Exp $" +// "$Id: Fl_compose.cxx,v 1.1.2.6 2001/01/22 15:13:40 easysw Exp $" // // Character compose processing 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 // modify it under the terms of the GNU Library General Public diff --git a/src/Fl_cutpaste.cxx b/src/Fl_cutpaste.cxx index 18665e49f..55ab483ba 100644 --- a/src/Fl_cutpaste.cxx +++ b/src/Fl_cutpaste.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_cutpaste.cxx,v 1.6.2.3 2000/07/13 08:51:22 spitzak Exp $" +// "$Id: Fl_cutpaste.cxx,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $" // // Cut/paste code 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 // modify it under the terms of the GNU Library General Public @@ -158,5 +158,5 @@ void Fl::selection(Fl_Widget &owner, const char *stuff, int len) { #endif // -// End of "$Id: Fl_cutpaste.cxx,v 1.6.2.3 2000/07/13 08:51:22 spitzak Exp $". +// End of "$Id: Fl_cutpaste.cxx,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_cutpaste_win32.cxx b/src/Fl_cutpaste_win32.cxx index 066f142ca..bf35031bb 100644 --- a/src/Fl_cutpaste_win32.cxx +++ b/src/Fl_cutpaste_win32.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_cutpaste_win32.cxx,v 1.5.2.7 2000/06/05 21:21:01 mike Exp $" +// "$Id: Fl_cutpaste_win32.cxx,v 1.5.2.8 2001/01/22 15:13:40 easysw Exp $" // // WIN32 cut/paste 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 // modify it under the terms of the GNU Library General Public @@ -135,5 +135,5 @@ void Fl::paste(Fl_Widget &receiver) { } // -// End of "$Id: Fl_cutpaste_win32.cxx,v 1.5.2.7 2000/06/05 21:21:01 mike Exp $". +// End of "$Id: Fl_cutpaste_win32.cxx,v 1.5.2.8 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_display.cxx b/src/Fl_display.cxx index 45513de31..da14e9082 100644 --- a/src/Fl_display.cxx +++ b/src/Fl_display.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_display.cxx,v 1.4.2.2 2000/06/05 21:21:01 mike Exp $" +// "$Id: Fl_display.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $" // // Display function 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 // modify it under the terms of the GNU Library General Public @@ -39,5 +39,5 @@ void Fl::display(const char *d) { } // -// End of "$Id: Fl_display.cxx,v 1.4.2.2 2000/06/05 21:21:01 mike Exp $". +// End of "$Id: Fl_display.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_get_key.cxx b/src/Fl_get_key.cxx index fa397e030..2fb0dd45d 100644 --- a/src/Fl_get_key.cxx +++ b/src/Fl_get_key.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_get_key.cxx,v 1.5.2.2 2000/06/05 21:21:01 mike Exp $" +// "$Id: Fl_get_key.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $" // // Keyboard state routines 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 // modify it under the terms of the GNU Library General Public @@ -60,5 +60,5 @@ int Fl::get_key(int k) { #endif // -// End of "$Id: Fl_get_key.cxx,v 1.5.2.2 2000/06/05 21:21:01 mike Exp $". +// End of "$Id: Fl_get_key.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_get_key_win32.cxx b/src/Fl_get_key_win32.cxx index a0214b415..ec8d9fd51 100755 --- a/src/Fl_get_key_win32.cxx +++ b/src/Fl_get_key_win32.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_get_key_win32.cxx,v 1.4.2.4 2000/06/05 21:21:01 mike Exp $" +// "$Id: Fl_get_key_win32.cxx,v 1.4.2.5 2001/01/22 15:13:40 easysw Exp $" // // WIN32 keyboard state routines 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 // modify it under the terms of the GNU Library General Public @@ -132,5 +132,5 @@ int Fl::get_key(int k) { } // -// End of "$Id: Fl_get_key_win32.cxx,v 1.4.2.4 2000/06/05 21:21:01 mike Exp $". +// End of "$Id: Fl_get_key_win32.cxx,v 1.4.2.5 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_get_system_colors.cxx b/src/Fl_get_system_colors.cxx index 774f6e6cd..ae4caf012 100644 --- a/src/Fl_get_system_colors.cxx +++ b/src/Fl_get_system_colors.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_get_system_colors.cxx,v 1.6.2.5 2000/09/19 07:53:55 spitzak Exp $" +// "$Id: Fl_get_system_colors.cxx,v 1.6.2.6 2001/01/22 15:13:40 easysw Exp $" // // System color support 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 // modify it under the terms of the GNU Library General Public @@ -146,5 +146,5 @@ void Fl::get_system_colors() #endif // -// End of "$Id: Fl_get_system_colors.cxx,v 1.6.2.5 2000/09/19 07:53:55 spitzak Exp $". +// End of "$Id: Fl_get_system_colors.cxx,v 1.6.2.6 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_grab.cxx b/src/Fl_grab.cxx index 4fa5efa0a..b96b0f9df 100644 --- a/src/Fl_grab.cxx +++ b/src/Fl_grab.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_grab.cxx,v 1.1.2.3 2000/06/05 21:21:01 mike Exp $" +// "$Id: Fl_grab.cxx,v 1.1.2.4 2001/01/22 15:13:40 easysw Exp $" // // Grab/release code 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 // modify it under the terms of the GNU Library General Public @@ -89,5 +89,5 @@ void Fl::grab(Fl_Window* w) { } // -// End of "$Id: Fl_grab.cxx,v 1.1.2.3 2000/06/05 21:21:01 mike Exp $". +// End of "$Id: Fl_grab.cxx,v 1.1.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_own_colormap.cxx b/src/Fl_own_colormap.cxx index 8da29dd9f..e13396dd5 100644 --- a/src/Fl_own_colormap.cxx +++ b/src/Fl_own_colormap.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_own_colormap.cxx,v 1.4.2.2 2000/06/05 21:21:01 mike Exp $" +// "$Id: Fl_own_colormap.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $" // // Private colormap support 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 // modify it under the terms of the GNU Library General Public @@ -73,5 +73,5 @@ void Fl::own_colormap() { #endif // -// End of "$Id: Fl_own_colormap.cxx,v 1.4.2.2 2000/06/05 21:21:01 mike Exp $". +// End of "$Id: Fl_own_colormap.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_visual.cxx b/src/Fl_visual.cxx index 4d7b16897..ea8b1c8ed 100644 --- a/src/Fl_visual.cxx +++ b/src/Fl_visual.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_visual.cxx,v 1.7.2.3 2000/06/05 21:21:02 mike Exp $" +// "$Id: Fl_visual.cxx,v 1.7.2.4 2001/01/22 15:13:40 easysw Exp $" // // Visual support 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 // modify it under the terms of the GNU Library General Public @@ -107,5 +107,5 @@ int Fl::visual(int flags) { #endif // -// End of "$Id: Fl_visual.cxx,v 1.7.2.3 2000/06/05 21:21:02 mike Exp $". +// End of "$Id: Fl_visual.cxx,v 1.7.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx index 1ab44d482..dbb269fd3 100644 --- a/src/Fl_win32.cxx +++ b/src/Fl_win32.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_win32.cxx,v 1.33.2.30 2000/11/20 14:17:43 easysw Exp $" +// "$Id: Fl_win32.cxx,v 1.33.2.31 2001/01/22 15:13:40 easysw Exp $" // // WIN32-specific code 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 // modify it under the terms of the GNU Library General Public @@ -951,5 +951,5 @@ void Fl_Window::make_current() { } // -// End of "$Id: Fl_win32.cxx,v 1.33.2.30 2000/11/20 14:17:43 easysw Exp $". +// End of "$Id: Fl_win32.cxx,v 1.33.2.31 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Fl_x.cxx b/src/Fl_x.cxx index b675ea102..2b83932db 100644 --- a/src/Fl_x.cxx +++ b/src/Fl_x.cxx @@ -1,9 +1,9 @@ // -// "$Id: Fl_x.cxx,v 1.24.2.22 2000/11/20 19:02:20 easysw Exp $" +// "$Id: Fl_x.cxx,v 1.24.2.23 2001/01/22 15:13:40 easysw Exp $" // // X specific code 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 // modify it under the terms of the GNU Library General Public @@ -903,5 +903,5 @@ void Fl_Window::make_current() { #endif // -// End of "$Id: Fl_x.cxx,v 1.24.2.22 2000/11/20 19:02:20 easysw Exp $". +// End of "$Id: Fl_x.cxx,v 1.24.2.23 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/Makefile b/src/Makefile index c219336b9..f667b8430 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,9 +1,9 @@ # -# "$Id: Makefile,v 1.18.2.13 2000/06/05 21:21:03 mike Exp $" +# "$Id: Makefile,v 1.18.2.14 2001/01/22 15:13:40 easysw Exp $" # # Library 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 # modify it under the terms of the GNU Library General Public @@ -207,5 +207,5 @@ install: $(LIBRARY) $(DSONAME) ln -s FL $(includedir)/Fl # -# End of "$Id: Makefile,v 1.18.2.13 2000/06/05 21:21:03 mike Exp $". +# End of "$Id: Makefile,v 1.18.2.14 2001/01/22 15:13:40 easysw Exp $". # diff --git a/src/cmap.cxx b/src/cmap.cxx index c3f2b8e0a..9383e204a 100644 --- a/src/cmap.cxx +++ b/src/cmap.cxx @@ -1,9 +1,9 @@ // -// "$Id: cmap.cxx,v 1.4.2.4 2000/10/17 07:23:42 spitzak Exp $" +// "$Id: cmap.cxx,v 1.4.2.5 2001/01/22 15:13:40 easysw Exp $" // // Colormap generation program 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 // modify it under the terms of the GNU Library General Public @@ -171,5 +171,5 @@ int main() { } // -// End of "$Id: cmap.cxx,v 1.4.2.4 2000/10/17 07:23:42 spitzak Exp $". +// End of "$Id: cmap.cxx,v 1.4.2.5 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/filename_absolute.cxx b/src/filename_absolute.cxx index 43ce874e9..f96b8d8c9 100644 --- a/src/filename_absolute.cxx +++ b/src/filename_absolute.cxx @@ -1,9 +1,9 @@ // -// "$Id: filename_absolute.cxx,v 1.5.2.3 2000/06/05 21:21:04 mike Exp $" +// "$Id: filename_absolute.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $" // // Filename expansion routines 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 // modify it under the terms of the GNU Library General Public @@ -92,5 +92,5 @@ int filename_absolute(char *to,const char *from) { } // -// End of "$Id: filename_absolute.cxx,v 1.5.2.3 2000/06/05 21:21:04 mike Exp $". +// End of "$Id: filename_absolute.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/filename_expand.cxx b/src/filename_expand.cxx index e507d80ef..146c0d742 100644 --- a/src/filename_expand.cxx +++ b/src/filename_expand.cxx @@ -1,9 +1,9 @@ // -// "$Id: filename_expand.cxx,v 1.4.2.3 2000/06/05 21:21:04 mike Exp $" +// "$Id: filename_expand.cxx,v 1.4.2.4 2001/01/22 15:13:40 easysw Exp $" // // Filename expansion routines 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 // modify it under the terms of the GNU Library General Public @@ -97,5 +97,5 @@ int filename_expand(char *to,const char *from) { } // -// End of "$Id: filename_expand.cxx,v 1.4.2.3 2000/06/05 21:21:04 mike Exp $". +// End of "$Id: filename_expand.cxx,v 1.4.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/filename_ext.cxx b/src/filename_ext.cxx index 08e021056..8442f63a6 100644 --- a/src/filename_ext.cxx +++ b/src/filename_ext.cxx @@ -1,9 +1,9 @@ // -// "$Id: filename_ext.cxx,v 1.4.2.3 2000/06/05 21:21:04 mike Exp $" +// "$Id: filename_ext.cxx,v 1.4.2.4 2001/01/22 15:13:40 easysw Exp $" // // Filename extension routines 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 // modify it under the terms of the GNU Library General Public @@ -41,5 +41,5 @@ const char *filename_ext(const char *buf) { } // -// End of "$Id: filename_ext.cxx,v 1.4.2.3 2000/06/05 21:21:04 mike Exp $". +// End of "$Id: filename_ext.cxx,v 1.4.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/filename_isdir.cxx b/src/filename_isdir.cxx index 3c3b80bcd..1d4d4cb05 100644 --- a/src/filename_isdir.cxx +++ b/src/filename_isdir.cxx @@ -1,9 +1,9 @@ // -// "$Id: filename_isdir.cxx,v 1.4.2.4 2000/06/08 08:12:38 bill Exp $" +// "$Id: filename_isdir.cxx,v 1.4.2.5 2001/01/22 15:13:40 easysw Exp $" // // Directory detection routines 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 // modify it under the terms of the GNU Library General Public @@ -48,5 +48,5 @@ int filename_isdir(const char* n) { } // -// End of "$Id: filename_isdir.cxx,v 1.4.2.4 2000/06/08 08:12:38 bill Exp $". +// End of "$Id: filename_isdir.cxx,v 1.4.2.5 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/filename_list.cxx b/src/filename_list.cxx index f28f85742..9c636f4af 100644 --- a/src/filename_list.cxx +++ b/src/filename_list.cxx @@ -1,9 +1,9 @@ // -// "$Id: filename_list.cxx,v 1.10.2.8 2000/06/05 21:21:04 mike Exp $" +// "$Id: filename_list.cxx,v 1.10.2.9 2001/01/22 15:13:40 easysw Exp $" // // Filename list routines 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 // modify it under the terms of the GNU Library General Public @@ -59,5 +59,5 @@ int filename_list(const char *d, dirent ***list) { } // -// End of "$Id: filename_list.cxx,v 1.10.2.8 2000/06/05 21:21:04 mike Exp $". +// End of "$Id: filename_list.cxx,v 1.10.2.9 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/filename_match.cxx b/src/filename_match.cxx index bc34035bf..a9e6d57a2 100644 --- a/src/filename_match.cxx +++ b/src/filename_match.cxx @@ -1,9 +1,9 @@ // -// "$Id: filename_match.cxx,v 1.5.2.3 2000/06/05 21:21:05 mike Exp $" +// "$Id: filename_match.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $" // // Pattern matching routines 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 // modify it under the terms of the GNU Library General Public @@ -109,5 +109,5 @@ int filename_match(const char *s, const char *p) { } // -// End of "$Id: filename_match.cxx,v 1.5.2.3 2000/06/05 21:21:05 mike Exp $". +// End of "$Id: filename_match.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/filename_setext.cxx b/src/filename_setext.cxx index 4ba460e48..f82ddda68 100644 --- a/src/filename_setext.cxx +++ b/src/filename_setext.cxx @@ -1,9 +1,9 @@ // -// "$Id: filename_setext.cxx,v 1.4.2.2 2000/06/05 21:21:05 mike Exp $" +// "$Id: filename_setext.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $" // // Filename extension routines 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 // modify it under the terms of the GNU Library General Public @@ -37,5 +37,5 @@ char *filename_setext(char *buf, const char *ext) { } // -// End of "$Id: filename_setext.cxx,v 1.4.2.2 2000/06/05 21:21:05 mike Exp $". +// End of "$Id: filename_setext.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/fl_arc.cxx b/src/fl_arc.cxx index 8021c8067..56a2b51d2 100644 --- a/src/fl_arc.cxx +++ b/src/fl_arc.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_arc.cxx,v 1.4.2.2 2000/06/05 21:21:05 mike Exp $" +// "$Id: fl_arc.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $" // // Arc functions 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 // modify it under the terms of the GNU Library General Public @@ -73,5 +73,5 @@ void fl_circle(double x,double y,double r) { #endif // -// End of "$Id: fl_arc.cxx,v 1.4.2.2 2000/06/05 21:21:05 mike Exp $". +// End of "$Id: fl_arc.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/fl_arci.cxx b/src/fl_arci.cxx index 4ff22d955..b5a6576fe 100644 --- a/src/fl_arci.cxx +++ b/src/fl_arci.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_arci.cxx,v 1.4.2.4 2000/06/05 21:21:05 mike Exp $" +// "$Id: fl_arci.cxx,v 1.4.2.5 2001/01/22 15:13:40 easysw Exp $" // // Arc (integer) drawing functions 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 // modify it under the terms of the GNU Library General Public @@ -68,5 +68,5 @@ void fl_pie(int x,int y,int w,int h,double a1,double a2) { } // -// End of "$Id: fl_arci.cxx,v 1.4.2.4 2000/06/05 21:21:05 mike Exp $". +// End of "$Id: fl_arci.cxx,v 1.4.2.5 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/fl_ask.cxx b/src/fl_ask.cxx index 8db0f81af..0676fec62 100644 --- a/src/fl_ask.cxx +++ b/src/fl_ask.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_ask.cxx,v 1.8.2.7 2000/08/20 04:35:16 spitzak Exp $" +// "$Id: fl_ask.cxx,v 1.8.2.8 2001/01/22 15:13:40 easysw Exp $" // // Standard dialog functions 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 // modify it under the terms of the GNU Library General Public @@ -230,5 +230,5 @@ const char *fl_password(const char *fmt, const char *defstr, ...) { } // -// End of "$Id: fl_ask.cxx,v 1.8.2.7 2000/08/20 04:35:16 spitzak Exp $". +// End of "$Id: fl_ask.cxx,v 1.8.2.8 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/fl_boxtype.cxx b/src/fl_boxtype.cxx index c8ac28c51..c6be29d95 100644 --- a/src/fl_boxtype.cxx +++ b/src/fl_boxtype.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_boxtype.cxx,v 1.8.2.3 2000/06/05 21:21:05 mike Exp $" +// "$Id: fl_boxtype.cxx,v 1.8.2.4 2001/01/22 15:13:40 easysw Exp $" // // Box drawing code 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 // modify it under the terms of the GNU Library General Public @@ -282,5 +282,5 @@ const { } // -// End of "$Id: fl_boxtype.cxx,v 1.8.2.3 2000/06/05 21:21:05 mike Exp $". +// End of "$Id: fl_boxtype.cxx,v 1.8.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/fl_call_main.c b/src/fl_call_main.c index fa6bf3213..c11ad4515 100644 --- a/src/fl_call_main.c +++ b/src/fl_call_main.c @@ -1,7 +1,7 @@ /* - * "$Id: fl_call_main.c,v 1.1.2.7 2000/06/05 21:21:06 mike Exp $" + * "$Id: fl_call_main.c,v 1.1.2.8 2001/01/22 15:13:40 easysw Exp $" * - * Copyright 1998-2000 by Bill Spitzak and others. + * Copyright 1998-2001 by Bill Spitzak and others. * * fl_call_main() calls main() for you Windows people. Needs to be done in C * because Borland C++ won't let you call main() from C++. @@ -83,6 +83,6 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, #endif /* - * End of "$Id: fl_call_main.c,v 1.1.2.7 2000/06/05 21:21:06 mike Exp $". + * End of "$Id: fl_call_main.c,v 1.1.2.8 2001/01/22 15:13:40 easysw Exp $". */ diff --git a/src/fl_color.cxx b/src/fl_color.cxx index 6398f9a4f..8f9fddba4 100644 --- a/src/fl_color.cxx +++ b/src/fl_color.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_color.cxx,v 1.12.2.4 2000/07/07 08:38:58 spitzak Exp $" +// "$Id: fl_color.cxx,v 1.12.2.5 2001/01/22 15:13:40 easysw Exp $" // // Color functions 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 // modify it under the terms of the GNU Library General Public @@ -355,5 +355,5 @@ Fl_Color contrast(Fl_Color fg, Fl_Color bg) { } // -// End of "$Id: fl_color.cxx,v 1.12.2.4 2000/07/07 08:38:58 spitzak Exp $". +// End of "$Id: fl_color.cxx,v 1.12.2.5 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/fl_color_win32.cxx b/src/fl_color_win32.cxx index fe26cc109..7156b4ac4 100644 --- a/src/fl_color_win32.cxx +++ b/src/fl_color_win32.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_color_win32.cxx,v 1.14.2.2 2000/06/05 21:21:06 mike Exp $" +// "$Id: fl_color_win32.cxx,v 1.14.2.3 2001/01/22 15:13:40 easysw Exp $" // // WIN32 color functions 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 // modify it under the terms of the GNU Library General Public @@ -206,5 +206,5 @@ fl_select_palette(void) #endif // -// End of "$Id: fl_color_win32.cxx,v 1.14.2.2 2000/06/05 21:21:06 mike Exp $". +// End of "$Id: fl_color_win32.cxx,v 1.14.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/fl_cursor.cxx b/src/fl_cursor.cxx index ee72e61d9..aa7249e25 100644 --- a/src/fl_cursor.cxx +++ b/src/fl_cursor.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_cursor.cxx,v 1.6.2.5 2000/06/05 21:21:06 mike Exp $" +// "$Id: fl_cursor.cxx,v 1.6.2.6 2001/01/22 15:13:40 easysw Exp $" // // Mouse cursor support 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 // modify it under the terms of the GNU Library General Public @@ -184,5 +184,5 @@ void Fl_Window::cursor(Fl_Cursor c, Fl_Color fg, Fl_Color bg) { #endif // -// End of "$Id: fl_cursor.cxx,v 1.6.2.5 2000/06/05 21:21:06 mike Exp $". +// End of "$Id: fl_cursor.cxx,v 1.6.2.6 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/fl_curve.cxx b/src/fl_curve.cxx index bd294a01c..6cb3ecd06 100644 --- a/src/fl_curve.cxx +++ b/src/fl_curve.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_curve.cxx,v 1.4.2.2 2000/06/05 21:21:06 mike Exp $" +// "$Id: fl_curve.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $" // // Bezier curve functions 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 // modify it under the terms of the GNU Library General Public @@ -95,5 +95,5 @@ void fl_curve(double X0, double Y0, } // -// End of "$Id: fl_curve.cxx,v 1.4.2.2 2000/06/05 21:21:06 mike Exp $". +// End of "$Id: fl_curve.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/fl_diamond_box.cxx b/src/fl_diamond_box.cxx index 81a014996..526cde7e7 100644 --- a/src/fl_diamond_box.cxx +++ b/src/fl_diamond_box.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_diamond_box.cxx,v 1.5.2.2 2000/06/05 21:21:07 mike Exp $" +// "$Id: fl_diamond_box.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $" // // Diamond box code 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 // modify it under the terms of the GNU Library General Public @@ -74,5 +74,5 @@ Fl_Boxtype define_FL_DIAMOND_BOX() { } // -// End of "$Id: fl_diamond_box.cxx,v 1.5.2.2 2000/06/05 21:21:07 mike Exp $". +// End of "$Id: fl_diamond_box.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/fl_draw.cxx b/src/fl_draw.cxx index caf0776db..97857d6c1 100644 --- a/src/fl_draw.cxx +++ b/src/fl_draw.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_draw.cxx,v 1.6.2.3 2000/06/05 21:21:07 mike Exp $" +// "$Id: fl_draw.cxx,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $" // // Label drawing code 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 // modify it under the terms of the GNU Library General Public @@ -200,5 +200,5 @@ void fl_measure(const char* str, int& w, int& h) { } // -// End of "$Id: fl_draw.cxx,v 1.6.2.3 2000/06/05 21:21:07 mike Exp $". +// End of "$Id: fl_draw.cxx,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/fl_draw_image.cxx b/src/fl_draw_image.cxx index 163844bc7..0fb4c96ad 100644 --- a/src/fl_draw_image.cxx +++ b/src/fl_draw_image.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_draw_image.cxx,v 1.5.2.5 2000/07/07 08:38:58 spitzak Exp $" +// "$Id: fl_draw_image.cxx,v 1.5.2.6 2001/01/22 15:13:40 easysw Exp $" // // Image drawing routines 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 // modify it under the terms of the GNU Library General Public @@ -573,5 +573,5 @@ void fl_rectf(int x, int y, int w, int h, uchar r, uchar g, uchar b) { #endif // -// End of "$Id: fl_draw_image.cxx,v 1.5.2.5 2000/07/07 08:38:58 spitzak Exp $". +// End of "$Id: fl_draw_image.cxx,v 1.5.2.6 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/fl_draw_image_win32.cxx b/src/fl_draw_image_win32.cxx index fe5d21523..7b4f8069f 100644 --- a/src/fl_draw_image_win32.cxx +++ b/src/fl_draw_image_win32.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_draw_image_win32.cxx,v 1.4.2.2 2000/06/05 21:21:07 mike Exp $" +// "$Id: fl_draw_image_win32.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $" // // WIN32 image drawing code 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 // modify it under the terms of the GNU Library General Public @@ -258,5 +258,5 @@ void fl_rectf(int x, int y, int w, int h, uchar r, uchar g, uchar b) { } // -// End of "$Id: fl_draw_image_win32.cxx,v 1.4.2.2 2000/06/05 21:21:07 mike Exp $". +// End of "$Id: fl_draw_image_win32.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/fl_draw_pixmap.cxx b/src/fl_draw_pixmap.cxx index 9c0576bc1..b64b51821 100644 --- a/src/fl_draw_pixmap.cxx +++ b/src/fl_draw_pixmap.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_draw_pixmap.cxx,v 1.4.2.6 2000/06/05 21:21:07 mike Exp $" +// "$Id: fl_draw_pixmap.cxx,v 1.4.2.7 2001/01/22 15:13:40 easysw Exp $" // // Pixmap drawing code 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 // modify it under the terms of the GNU Library General Public @@ -264,5 +264,5 @@ int fl_draw_pixmap(/*const*/char*const* di, int x, int y, Fl_Color bg) { } // -// End of "$Id: fl_draw_pixmap.cxx,v 1.4.2.6 2000/06/05 21:21:07 mike Exp $". +// End of "$Id: fl_draw_pixmap.cxx,v 1.4.2.7 2001/01/22 15:13:40 easysw Exp $". // diff --git a/src/fl_engraved_label.cxx b/src/fl_engraved_label.cxx index f026d2d70..6a1e3801e 100644 --- a/src/fl_engraved_label.cxx +++ b/src/fl_engraved_label.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_engraved_label.cxx,v 1.4.2.2 2000/06/05 21:21:07 mike Exp $" +// "$Id: fl_engraved_label.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Engraved label drawing routines 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 // modify it under the terms of the GNU Library General Public @@ -87,5 +87,5 @@ Fl_Labeltype define_FL_EMBOSSED_LABEL() { } // -// End of "$Id: fl_engraved_label.cxx,v 1.4.2.2 2000/06/05 21:21:07 mike Exp $". +// End of "$Id: fl_engraved_label.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_file_chooser.cxx b/src/fl_file_chooser.cxx index 22f55bdf3..70987668e 100644 --- a/src/fl_file_chooser.cxx +++ b/src/fl_file_chooser.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_file_chooser.cxx,v 1.10.2.7 2000/12/06 15:45:13 easysw Exp $" +// "$Id: fl_file_chooser.cxx,v 1.10.2.8 2001/01/22 15:13:41 easysw Exp $" // // File chooser widget 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 // modify it under the terms of the GNU Library General Public @@ -632,5 +632,5 @@ char* fl_file_chooser(const char* message, const char* pat, const char* fname) } // -// End of "$Id: fl_file_chooser.cxx,v 1.10.2.7 2000/12/06 15:45:13 easysw Exp $". +// End of "$Id: fl_file_chooser.cxx,v 1.10.2.8 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_font.cxx b/src/fl_font.cxx index 97b3c2aa3..fce2deeee 100644 --- a/src/fl_font.cxx +++ b/src/fl_font.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_font.cxx,v 1.9.2.4 2000/06/05 21:21:08 mike Exp $" +// "$Id: fl_font.cxx,v 1.9.2.5 2001/01/22 15:13:41 easysw Exp $" // // Font selection code 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 // modify it under the terms of the GNU Library General Public @@ -293,5 +293,5 @@ void fl_draw(const char* str, int x, int y) { #endif // -// End of "$Id: fl_font.cxx,v 1.9.2.4 2000/06/05 21:21:08 mike Exp $". +// End of "$Id: fl_font.cxx,v 1.9.2.5 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_font_win32.cxx b/src/fl_font_win32.cxx index b233b15de..61face7ee 100644 --- a/src/fl_font_win32.cxx +++ b/src/fl_font_win32.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_font_win32.cxx,v 1.9.2.2 2000/06/05 21:21:08 mike Exp $" +// "$Id: fl_font_win32.cxx,v 1.9.2.3 2001/01/22 15:13:41 easysw Exp $" // // WIN32 font selection routines 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 // modify it under the terms of the GNU Library General Public @@ -174,5 +174,5 @@ void fl_draw(const char* str, int x, int y) { } // -// End of "$Id: fl_font_win32.cxx,v 1.9.2.2 2000/06/05 21:21:08 mike Exp $". +// End of "$Id: fl_font_win32.cxx,v 1.9.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_labeltype.cxx b/src/fl_labeltype.cxx index 4104595e1..b669b7e6e 100644 --- a/src/fl_labeltype.cxx +++ b/src/fl_labeltype.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_labeltype.cxx,v 1.6.2.2 2000/06/05 21:21:08 mike Exp $" +// "$Id: fl_labeltype.cxx,v 1.6.2.3 2001/01/22 15:13:41 easysw Exp $" // // Label drawing routines 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 // modify it under the terms of the GNU Library General Public @@ -117,5 +117,5 @@ void Fl_Widget::draw_label(int X, int Y, int W, int H, Fl_Align a) const { #include // -// End of "$Id: fl_labeltype.cxx,v 1.6.2.2 2000/06/05 21:21:08 mike Exp $". +// End of "$Id: fl_labeltype.cxx,v 1.6.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_oval_box.cxx b/src/fl_oval_box.cxx index 52d0f776e..bf6534fd0 100644 --- a/src/fl_oval_box.cxx +++ b/src/fl_oval_box.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_oval_box.cxx,v 1.4.2.2 2000/06/05 21:21:08 mike Exp $" +// "$Id: fl_oval_box.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Oval box drawing code 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 // modify it under the terms of the GNU Library General Public @@ -60,5 +60,5 @@ Fl_Boxtype define_FL_OVAL_BOX() { } // -// End of "$Id: fl_oval_box.cxx,v 1.4.2.2 2000/06/05 21:21:08 mike Exp $". +// End of "$Id: fl_oval_box.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_overlay.cxx b/src/fl_overlay.cxx index 9ceca4247..e37609a61 100644 --- a/src/fl_overlay.cxx +++ b/src/fl_overlay.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_overlay.cxx,v 1.4.2.2 2000/06/05 21:21:08 mike Exp $" +// "$Id: fl_overlay.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Overlay support 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 // modify it under the terms of the GNU Library General Public @@ -62,5 +62,5 @@ void fl_overlay_rect(int x, int y, int w, int h) { } // -// End of "$Id: fl_overlay.cxx,v 1.4.2.2 2000/06/05 21:21:08 mike Exp $". +// End of "$Id: fl_overlay.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_overlay_visual.cxx b/src/fl_overlay_visual.cxx index c9c5a7640..42a38d5c8 100644 --- a/src/fl_overlay_visual.cxx +++ b/src/fl_overlay_visual.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_overlay_visual.cxx,v 1.4.2.2 2000/06/05 21:21:09 mike Exp $" +// "$Id: fl_overlay_visual.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // X overlay support 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 // modify it under the terms of the GNU Library General Public @@ -99,5 +99,5 @@ XVisualInfo *fl_find_overlay_visual() { #endif // -// End of "$Id: fl_overlay_visual.cxx,v 1.4.2.2 2000/06/05 21:21:09 mike Exp $". +// End of "$Id: fl_overlay_visual.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_rect.cxx b/src/fl_rect.cxx index 613980e7d..8b05a3cc7 100644 --- a/src/fl_rect.cxx +++ b/src/fl_rect.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_rect.cxx,v 1.10.2.3 2000/06/05 21:21:09 mike Exp $" +// "$Id: fl_rect.cxx,v 1.10.2.4 2001/01/22 15:13:41 easysw Exp $" // // Rectangle drawing routines 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 // modify it under the terms of the GNU Library General Public @@ -388,5 +388,5 @@ int fl_clip_box(int x, int y, int w, int h, int& X, int& Y, int& W, int& H){ } // -// End of "$Id: fl_rect.cxx,v 1.10.2.3 2000/06/05 21:21:09 mike Exp $". +// End of "$Id: fl_rect.cxx,v 1.10.2.4 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_round_box.cxx b/src/fl_round_box.cxx index 4a89ef66d..812d34e5e 100644 --- a/src/fl_round_box.cxx +++ b/src/fl_round_box.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_round_box.cxx,v 1.6.2.2 2000/06/05 21:21:09 mike Exp $" +// "$Id: fl_round_box.cxx,v 1.6.2.3 2001/01/22 15:13:41 easysw Exp $" // // Round box drawing routines 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 // modify it under the terms of the GNU Library General Public @@ -116,5 +116,5 @@ Fl_Boxtype define_FL_ROUND_UP_BOX() { } // -// End of "$Id: fl_round_box.cxx,v 1.6.2.2 2000/06/05 21:21:09 mike Exp $". +// End of "$Id: fl_round_box.cxx,v 1.6.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_rounded_box.cxx b/src/fl_rounded_box.cxx index 3ef0c9a79..3caab32ff 100644 --- a/src/fl_rounded_box.cxx +++ b/src/fl_rounded_box.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_rounded_box.cxx,v 1.4.2.2 2000/06/05 21:21:09 mike Exp $" +// "$Id: fl_rounded_box.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Rounded box drawing routines 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 // modify it under the terms of the GNU Library General Public @@ -93,5 +93,5 @@ Fl_Boxtype define_FL_RSHADOW_BOX() { } // -// End of "$Id: fl_rounded_box.cxx,v 1.4.2.2 2000/06/05 21:21:09 mike Exp $". +// End of "$Id: fl_rounded_box.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_scroll_area.cxx b/src/fl_scroll_area.cxx index 0a600dace..931888bb6 100644 --- a/src/fl_scroll_area.cxx +++ b/src/fl_scroll_area.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_scroll_area.cxx,v 1.4.2.2 2000/06/05 21:21:09 mike Exp $" +// "$Id: fl_scroll_area.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Scrolling routines 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 // modify it under the terms of the GNU Library General Public @@ -89,5 +89,5 @@ void fl_scroll(int X, int Y, int W, int H, int dx, int dy, } // -// End of "$Id: fl_scroll_area.cxx,v 1.4.2.2 2000/06/05 21:21:09 mike Exp $". +// End of "$Id: fl_scroll_area.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_set_font.cxx b/src/fl_set_font.cxx index 2c0610051..5bb63969a 100644 --- a/src/fl_set_font.cxx +++ b/src/fl_set_font.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_set_font.cxx,v 1.5.2.2 2000/06/05 21:21:09 mike Exp $" +// "$Id: fl_set_font.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $" // // Font utilities 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 // modify it under the terms of the GNU Library General Public @@ -71,5 +71,5 @@ void Fl::set_font(Fl_Font fnum, const char* name) { const char* Fl::get_font(Fl_Font fnum) {return fl_fonts[fnum].name;} // -// End of "$Id: fl_set_font.cxx,v 1.5.2.2 2000/06/05 21:21:09 mike Exp $". +// End of "$Id: fl_set_font.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_set_fonts.cxx b/src/fl_set_fonts.cxx index 9ab523808..8ca14a978 100644 --- a/src/fl_set_fonts.cxx +++ b/src/fl_set_fonts.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_set_fonts.cxx,v 1.6.2.4 2000/08/20 04:35:16 spitzak Exp $" +// "$Id: fl_set_fonts.cxx,v 1.6.2.5 2001/01/22 15:13:41 easysw Exp $" // // More font utilities 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 // modify it under the terms of the GNU Library General Public @@ -329,5 +329,5 @@ int Fl::get_font_sizes(Fl_Font fnum, int*& sizep) { #endif // -// End of "$Id: fl_set_fonts.cxx,v 1.6.2.4 2000/08/20 04:35:16 spitzak Exp $". +// End of "$Id: fl_set_fonts.cxx,v 1.6.2.5 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_set_fonts_win32.cxx b/src/fl_set_fonts_win32.cxx index f7275dff9..b6cc11f73 100755 --- a/src/fl_set_fonts_win32.cxx +++ b/src/fl_set_fonts_win32.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_set_fonts_win32.cxx,v 1.5.2.4 2000/10/17 07:03:41 spitzak Exp $" +// "$Id: fl_set_fonts_win32.cxx,v 1.5.2.5 2001/01/22 15:13:41 easysw Exp $" // // WIN32 font utilities 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 // modify it under the terms of the GNU Library General Public @@ -90,5 +90,5 @@ int Fl::get_font_sizes(Fl_Font fnum, int*& sizep) { } // -// End of "$Id: fl_set_fonts_win32.cxx,v 1.5.2.4 2000/10/17 07:03:41 spitzak Exp $". +// End of "$Id: fl_set_fonts_win32.cxx,v 1.5.2.5 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_set_gray.cxx b/src/fl_set_gray.cxx index aeb555ca1..0187780e6 100644 --- a/src/fl_set_gray.cxx +++ b/src/fl_set_gray.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_set_gray.cxx,v 1.5.2.2 2000/06/05 21:21:10 mike Exp $" +// "$Id: fl_set_gray.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $" // // Background (gray) color routines 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 // modify it under the terms of the GNU Library General Public @@ -58,5 +58,5 @@ void Fl::background2(uchar r, uchar g, uchar b) { } // -// End of "$Id: fl_set_gray.cxx,v 1.5.2.2 2000/06/05 21:21:10 mike Exp $". +// End of "$Id: fl_set_gray.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_shadow_box.cxx b/src/fl_shadow_box.cxx index 5cb18458d..06ae2710d 100644 --- a/src/fl_shadow_box.cxx +++ b/src/fl_shadow_box.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_shadow_box.cxx,v 1.4.2.2 2000/06/05 21:21:10 mike Exp $" +// "$Id: fl_shadow_box.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Shadow box drawing routines 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 // modify it under the terms of the GNU Library General Public @@ -50,5 +50,5 @@ Fl_Boxtype define_FL_SHADOW_BOX() { } // -// End of "$Id: fl_shadow_box.cxx,v 1.4.2.2 2000/06/05 21:21:10 mike Exp $". +// End of "$Id: fl_shadow_box.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_shortcut.cxx b/src/fl_shortcut.cxx index 45bd22368..711b11ce6 100644 --- a/src/fl_shortcut.cxx +++ b/src/fl_shortcut.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_shortcut.cxx,v 1.4.2.8 2000/06/15 05:37:40 bill Exp $" +// "$Id: fl_shortcut.cxx,v 1.4.2.9 2001/01/22 15:13:41 easysw Exp $" // // Shortcut support routines 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 // modify it under the terms of the GNU Library General Public @@ -192,5 +192,5 @@ int Fl_Widget::test_shortcut() { } // -// End of "$Id: fl_shortcut.cxx,v 1.4.2.8 2000/06/15 05:37:40 bill Exp $". +// End of "$Id: fl_shortcut.cxx,v 1.4.2.9 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_show_colormap.cxx b/src/fl_show_colormap.cxx index 5d1e09081..44e6600af 100644 --- a/src/fl_show_colormap.cxx +++ b/src/fl_show_colormap.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_show_colormap.cxx,v 1.5.2.3 2000/06/05 21:21:10 mike Exp $" +// "$Id: fl_show_colormap.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $" // // Colormap color selection dialog 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 // modify it under the terms of the GNU Library General Public @@ -150,5 +150,5 @@ Fl_Color fl_show_colormap(Fl_Color oldcol) { } // -// End of "$Id: fl_show_colormap.cxx,v 1.5.2.3 2000/06/05 21:21:10 mike Exp $". +// End of "$Id: fl_show_colormap.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_symbols.cxx b/src/fl_symbols.cxx index 0297e4851..71b78d752 100644 --- a/src/fl_symbols.cxx +++ b/src/fl_symbols.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_symbols.cxx,v 1.8.2.2 2000/06/05 21:21:10 mike Exp $" +// "$Id: fl_symbols.cxx,v 1.8.2.3 2001/01/22 15:13:41 easysw Exp $" // // Symbol drawing code 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 // modify it under the terms of the GNU Library General Public @@ -383,5 +383,5 @@ void Fl::enable_symbols() { } // -// End of "$Id: fl_symbols.cxx,v 1.8.2.2 2000/06/05 21:21:10 mike Exp $". +// End of "$Id: fl_symbols.cxx,v 1.8.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/fl_vertex.cxx b/src/fl_vertex.cxx index 93584acf8..fae99d4d8 100644 --- a/src/fl_vertex.cxx +++ b/src/fl_vertex.cxx @@ -1,9 +1,9 @@ // -// "$Id: fl_vertex.cxx,v 1.5.2.2 2000/06/05 21:21:11 mike Exp $" +// "$Id: fl_vertex.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $" // // Portable drawing routines 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 // modify it under the terms of the GNU Library General Public @@ -223,5 +223,5 @@ void fl_circle(double x, double y,double r) { } // -// End of "$Id: fl_vertex.cxx,v 1.5.2.2 2000/06/05 21:21:11 mike Exp $". +// End of "$Id: fl_vertex.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/forms_bitmap.cxx b/src/forms_bitmap.cxx index 380455da1..f9594ab51 100644 --- a/src/forms_bitmap.cxx +++ b/src/forms_bitmap.cxx @@ -1,9 +1,9 @@ // -// "$Id: forms_bitmap.cxx,v 1.4.2.2 2000/06/05 21:21:11 mike Exp $" +// "$Id: forms_bitmap.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Forms compatible bitmap function 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 // modify it under the terms of the GNU Library General Public @@ -46,5 +46,5 @@ void Fl_FormsBitmap::draw() { } // -// End of "$Id: forms_bitmap.cxx,v 1.4.2.2 2000/06/05 21:21:11 mike Exp $". +// End of "$Id: forms_bitmap.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/forms_compatability.cxx b/src/forms_compatability.cxx index 83e655c2d..a420b44bc 100755 --- a/src/forms_compatability.cxx +++ b/src/forms_compatability.cxx @@ -1,9 +1,9 @@ // -// "$Id: forms_compatability.cxx,v 1.5.2.2 2000/06/05 21:21:11 mike Exp $" +// "$Id: forms_compatability.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $" // // Forms compatibility functions 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 // modify it under the terms of the GNU Library General Public @@ -204,5 +204,5 @@ char *fl_show_simple_input(const char *str1, const char *defstr) { } // -// End of "$Id: forms_compatability.cxx,v 1.5.2.2 2000/06/05 21:21:11 mike Exp $". +// End of "$Id: forms_compatability.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/forms_free.cxx b/src/forms_free.cxx index d16305e9f..ded93179f 100644 --- a/src/forms_free.cxx +++ b/src/forms_free.cxx @@ -1,9 +1,9 @@ // -// "$Id: forms_free.cxx,v 1.4.2.3 2000/06/05 21:21:11 mike Exp $" +// "$Id: forms_free.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $" // // Forms free widget routines 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 // modify it under the terms of the GNU Library General Public @@ -73,5 +73,5 @@ int Fl_Free::handle(int e) { } // -// End of "$Id: forms_free.cxx,v 1.4.2.3 2000/06/05 21:21:11 mike Exp $". +// End of "$Id: forms_free.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/forms_fselect.cxx b/src/forms_fselect.cxx index 33478370e..99db78eac 100644 --- a/src/forms_fselect.cxx +++ b/src/forms_fselect.cxx @@ -1,9 +1,9 @@ // -// "$Id: forms_fselect.cxx,v 1.4.2.2 2000/06/05 21:21:11 mike Exp $" +// "$Id: forms_fselect.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Forms file selection routines 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 // modify it under the terms of the GNU Library General Public @@ -61,5 +61,5 @@ char* fl_get_pattern() {return (char *)fl_pattern;} char* fl_get_filename() {return fl_filename;} // -// End of "$Id: forms_fselect.cxx,v 1.4.2.2 2000/06/05 21:21:11 mike Exp $". +// End of "$Id: forms_fselect.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/forms_pixmap.cxx b/src/forms_pixmap.cxx index beabd9bea..bbbb066b1 100644 --- a/src/forms_pixmap.cxx +++ b/src/forms_pixmap.cxx @@ -1,9 +1,9 @@ // -// "$Id: forms_pixmap.cxx,v 1.4.2.2 2000/06/05 21:21:11 mike Exp $" +// "$Id: forms_pixmap.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Forms pixmap drawing routines 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 // modify it under the terms of the GNU Library General Public @@ -46,5 +46,5 @@ void Fl_FormsPixmap::draw() { } // -// End of "$Id: forms_pixmap.cxx,v 1.4.2.2 2000/06/05 21:21:11 mike Exp $". +// End of "$Id: forms_pixmap.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/forms_timer.cxx b/src/forms_timer.cxx index d949d9303..b779a3cb8 100644 --- a/src/forms_timer.cxx +++ b/src/forms_timer.cxx @@ -1,9 +1,9 @@ // -// "$Id: forms_timer.cxx,v 1.4.2.2 2000/06/05 21:21:12 mike Exp $" +// "$Id: forms_timer.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Forms timer object 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 // modify it under the terms of the GNU Library General Public @@ -150,5 +150,5 @@ void Fl_Timer::suspended(char d) { } // -// End of "$Id: forms_timer.cxx,v 1.4.2.2 2000/06/05 21:21:12 mike Exp $". +// End of "$Id: forms_timer.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/gl_draw.cxx b/src/gl_draw.cxx index ca36a4238..c24463c5d 100644 --- a/src/gl_draw.cxx +++ b/src/gl_draw.cxx @@ -1,9 +1,9 @@ // -// "$Id: gl_draw.cxx,v 1.7.2.3 2000/06/05 21:21:12 mike Exp $" +// "$Id: gl_draw.cxx,v 1.7.2.4 2001/01/22 15:13:41 easysw Exp $" // // OpenGL drawing support routines 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 // modify it under the terms of the GNU Library General Public @@ -155,5 +155,5 @@ void gl_draw_image(const uchar* b, int x, int y, int w, int h, int d, int ld) { #endif // -// End of "$Id: gl_draw.cxx,v 1.7.2.3 2000/06/05 21:21:12 mike Exp $". +// End of "$Id: gl_draw.cxx,v 1.7.2.4 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/gl_start.cxx b/src/gl_start.cxx index 94d05f4e7..3438fc464 100644 --- a/src/gl_start.cxx +++ b/src/gl_start.cxx @@ -1,9 +1,9 @@ // -// "$Id: gl_start.cxx,v 1.6.2.3 2000/06/05 21:21:12 mike Exp $" +// "$Id: gl_start.cxx,v 1.6.2.4 2001/01/22 15:13:41 easysw Exp $" // // OpenGL context routines 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 // modify it under the terms of the GNU Library General Public @@ -122,5 +122,5 @@ int Fl::gl_visual(int mode, int *alist) { #endif // -// End of "$Id: gl_start.cxx,v 1.6.2.3 2000/06/05 21:21:12 mike Exp $". +// End of "$Id: gl_start.cxx,v 1.6.2.4 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/glut_compatability.cxx b/src/glut_compatability.cxx index cae53fcfb..c2577047f 100755 --- a/src/glut_compatability.cxx +++ b/src/glut_compatability.cxx @@ -1,9 +1,9 @@ // -// "$Id: glut_compatability.cxx,v 1.4.2.4 2000/06/05 21:21:12 mike Exp $" +// "$Id: glut_compatability.cxx,v 1.4.2.5 2001/01/22 15:13:41 easysw Exp $" // // GLUT emulation routines 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 // modify it under the terms of the GNU Library General Public @@ -399,5 +399,5 @@ int glutLayerGet(GLenum type) { #endif // -// End of "$Id: glut_compatability.cxx,v 1.4.2.4 2000/06/05 21:21:12 mike Exp $". +// End of "$Id: glut_compatability.cxx,v 1.4.2.5 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/glut_font.cxx b/src/glut_font.cxx index 71ebc9888..c3ee7eb57 100644 --- a/src/glut_font.cxx +++ b/src/glut_font.cxx @@ -1,9 +1,9 @@ // -// "$Id: glut_font.cxx,v 1.4.2.3 2000/06/05 21:21:12 mike Exp $" +// "$Id: glut_font.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $" // // GLUT bitmap font routines 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 // modify it under the terms of the GNU Library General Public @@ -54,5 +54,5 @@ int glutBitmapWidth(void* font, int character) { #endif // -// End of "$Id: glut_font.cxx,v 1.4.2.3 2000/06/05 21:21:12 mike Exp $". +// End of "$Id: glut_font.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/numericsort.c b/src/numericsort.c index ef7e47e32..61b7931c5 100644 --- a/src/numericsort.c +++ b/src/numericsort.c @@ -1,9 +1,9 @@ /* - * "$Id: numericsort.c,v 1.10.2.3 2000/06/05 21:21:12 mike Exp $" + * "$Id: numericsort.c,v 1.10.2.4 2001/01/22 15:13:41 easysw Exp $" * * Numeric sorting routine 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 * modify it under the terms of the GNU Library General Public @@ -84,5 +84,5 @@ int numericsort(struct dirent **A, struct dirent **B) { } /* - * End of "$Id: numericsort.c,v 1.10.2.3 2000/06/05 21:21:12 mike Exp $". + * End of "$Id: numericsort.c,v 1.10.2.4 2001/01/22 15:13:41 easysw Exp $". */ diff --git a/src/scandir_win32.c b/src/scandir_win32.c index ca48b123b..fe8182700 100644 --- a/src/scandir_win32.c +++ b/src/scandir_win32.c @@ -1,9 +1,9 @@ // -// "$Id: scandir_win32.c,v 1.11.2.3 2000/06/05 21:21:12 mike Exp $" +// "$Id: scandir_win32.c,v 1.11.2.4 2001/01/22 15:13:41 easysw Exp $" // // WIN32 scandir function 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 // modify it under the terms of the GNU Library General Public @@ -101,5 +101,5 @@ int alphasort (struct dirent **a, struct dirent **b) { #endif // -// End of "$Id: scandir_win32.c,v 1.11.2.3 2000/06/05 21:21:12 mike Exp $". +// End of "$Id: scandir_win32.c,v 1.11.2.4 2001/01/22 15:13:41 easysw Exp $". // diff --git a/src/vsnprintf.c b/src/vsnprintf.c index 1ac6e2749..6774bcf56 100644 --- a/src/vsnprintf.c +++ b/src/vsnprintf.c @@ -1,5 +1,5 @@ /* - * "$Id: vsnprintf.c,v 1.3.2.3 2000/06/05 21:21:13 mike Exp $" + * "$Id: vsnprintf.c,v 1.3.2.4 2001/01/22 15:13:41 easysw Exp $" * * vsnprintf() function for the Fast Light Tool Kit (FLTK). * @@ -17,7 +17,7 @@ * Only handles formats that are both documented in the glibc man page * for printf and also handled by your system's sprintf(). * - * 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 * modify it under the terms of the GNU Library General Public @@ -131,6 +131,6 @@ int snprintf(char* str, size_t size, const char* fmt, ...) { #endif /* - * End of "$Id: vsnprintf.c,v 1.3.2.3 2000/06/05 21:21:13 mike Exp $". + * End of "$Id: vsnprintf.c,v 1.3.2.4 2001/01/22 15:13:41 easysw Exp $". */ diff --git a/test/CubeMain.cxx b/test/CubeMain.cxx index d3fca5794..764a0d7d2 100644 --- a/test/CubeMain.cxx +++ b/test/CubeMain.cxx @@ -1,9 +1,9 @@ // -// "$Id: CubeMain.cxx,v 1.2.2.3 2000/08/20 04:35:17 spitzak Exp $" +// "$Id: CubeMain.cxx,v 1.2.2.4 2001/01/22 15:13:41 easysw Exp $" // // CubeView class definitions 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 // modify it under the terms of the GNU Library General Public @@ -43,5 +43,5 @@ main(int /*argc*/, char **/*argv*/) { // -// End of "$Id: CubeMain.cxx,v 1.2.2.3 2000/08/20 04:35:17 spitzak Exp $". +// End of "$Id: CubeMain.cxx,v 1.2.2.4 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/CubeView.cxx b/test/CubeView.cxx index dae5968c4..b54fcfa9d 100644 --- a/test/CubeView.cxx +++ b/test/CubeView.cxx @@ -1,9 +1,9 @@ // -// "$Id: CubeView.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $" +// "$Id: CubeView.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // CubeView class implementation 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 // modify it under the terms of the GNU Library General Public @@ -145,7 +145,7 @@ void CubeView::draw() { if (!valid()) { glLoadIdentity(); glViewport(0,0,w(),h()); - glOrtho(-10,10,-10,10,-20000,10000); + glOrtho(-10,10,-10,10,-20010,10000); glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); } @@ -165,5 +165,5 @@ void CubeView::draw() { #endif /* HAVE_GL */ // -// End of "$Id: CubeView.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $". +// End of "$Id: CubeView.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/CubeView.h b/test/CubeView.h index d29f3b1e6..3678bd244 100644 --- a/test/CubeView.h +++ b/test/CubeView.h @@ -1,9 +1,9 @@ // -// "$Id: CubeView.h,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $" +// "$Id: CubeView.h,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // CubeView class definitions 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 // modify it under the terms of the GNU Library General Public @@ -119,5 +119,5 @@ private: #endif // -// End of "$Id: CubeView.h,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $". +// End of "$Id: CubeView.h,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/Makefile b/test/Makefile index 5ba70dbd6..2a9854a20 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,9 +1,9 @@ # -# "$Id: Makefile,v 1.19.2.6 2000/06/05 21:21:15 mike Exp $" +# "$Id: Makefile,v 1.19.2.7 2001/01/22 15:13:41 easysw Exp $" # # Test/example program 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 # modify it under the terms of the GNU Library General Public @@ -113,5 +113,5 @@ install: @echo Nothing to install in test directory. # -# End of "$Id: Makefile,v 1.19.2.6 2000/06/05 21:21:15 mike Exp $". +# End of "$Id: Makefile,v 1.19.2.7 2001/01/22 15:13:41 easysw Exp $". # diff --git a/test/adjuster.cxx b/test/adjuster.cxx index 2fef87bb2..a3f259bca 100644 --- a/test/adjuster.cxx +++ b/test/adjuster.cxx @@ -1,9 +1,9 @@ // -// "$Id: adjuster.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $" +// "$Id: adjuster.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Adjuster test program 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 // modify it under the terms of the GNU Library General Public @@ -60,5 +60,5 @@ int main(int, char ** argv) { } // -// End of "$Id: adjuster.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $". +// End of "$Id: adjuster.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/arc.cxx b/test/arc.cxx index 3bb834fe4..bafb7a8ef 100755 --- a/test/arc.cxx +++ b/test/arc.cxx @@ -1,9 +1,9 @@ // -// "$Id: arc.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $" +// "$Id: arc.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Arc drawing test program 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 // modify it under the terms of the GNU Library General Public @@ -92,6 +92,6 @@ int main(int argc, char** argv) { // -// End of "$Id: arc.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $". +// End of "$Id: arc.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/ask.cxx b/test/ask.cxx index 001d4ffab..8e33fe1f6 100644 --- a/test/ask.cxx +++ b/test/ask.cxx @@ -1,5 +1,5 @@ // -// "$Id: ask.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $" +// "$Id: ask.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Standard dialog test program for the Fast Light Tool Kit (FLTK). // @@ -10,7 +10,7 @@ // This also demonstrates how to trap attempts by the user to // close the last window by overriding Fl::exit // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -110,5 +110,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: ask.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $". +// End of "$Id: ask.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/bitmap.cxx b/test/bitmap.cxx index f7d71ca7b..f351cf790 100644 --- a/test/bitmap.cxx +++ b/test/bitmap.cxx @@ -1,9 +1,9 @@ // -// "$Id: bitmap.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $" +// "$Id: bitmap.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Bitmap label test program 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 // modify it under the terms of the GNU Library General Public @@ -137,5 +137,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: bitmap.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $". +// End of "$Id: bitmap.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/boxtype.cxx b/test/boxtype.cxx index c73ff492f..074dd528d 100644 --- a/test/boxtype.cxx +++ b/test/boxtype.cxx @@ -1,9 +1,9 @@ // -// "$Id: boxtype.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $" +// "$Id: boxtype.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Boxtype test program 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 // modify it under the terms of the GNU Library General Public @@ -89,5 +89,5 @@ int main(int argc, char ** argv) { } // -// End of "$Id: boxtype.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $". +// End of "$Id: boxtype.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/browser.cxx b/test/browser.cxx index 1fca5272d..14287e068 100644 --- a/test/browser.cxx +++ b/test/browser.cxx @@ -1,9 +1,9 @@ // -// "$Id: browser.cxx,v 1.5.2.5 2000/12/08 15:44:24 easysw Exp $" +// "$Id: browser.cxx,v 1.5.2.6 2001/01/22 15:13:41 easysw Exp $" // // Browser test program 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 // modify it under the terms of the GNU Library General Public @@ -133,6 +133,6 @@ int main(int argc, char **argv) { } // -// End of "$Id: browser.cxx,v 1.5.2.5 2000/12/08 15:44:24 easysw Exp $". +// End of "$Id: browser.cxx,v 1.5.2.6 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/browserop.cxx b/test/browserop.cxx index 7845dcda6..9f59434a6 100644 --- a/test/browserop.cxx +++ b/test/browserop.cxx @@ -1,9 +1,9 @@ // -// "$Id: browserop.cxx,v 1.4.2.2 2000/06/05 21:21:16 mike Exp $" +// "$Id: browserop.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Browser operation test program 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 // modify it under the terms of the GNU Library General Public @@ -104,5 +104,5 @@ main(int argc, char *argv[]) } // -// End of "$Id: browserop.cxx,v 1.4.2.2 2000/06/05 21:21:16 mike Exp $". +// End of "$Id: browserop.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/button.cxx b/test/button.cxx index 794736aa8..e1b7ce226 100644 --- a/test/button.cxx +++ b/test/button.cxx @@ -1,9 +1,9 @@ // -// "$Id: button.cxx,v 1.4.2.3 2000/06/05 21:21:16 mike Exp $" +// "$Id: button.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $" // // Button/callback test program 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 // modify it under the terms of the GNU Library General Public @@ -62,5 +62,5 @@ int main(int argc, char ** argv) { } // -// End of "$Id: button.cxx,v 1.4.2.3 2000/06/05 21:21:16 mike Exp $". +// End of "$Id: button.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/buttons.cxx b/test/buttons.cxx index f553da9ba..5fb134c9b 100644 --- a/test/buttons.cxx +++ b/test/buttons.cxx @@ -1,9 +1,9 @@ // -// "$Id: buttons.cxx,v 1.4.2.2 2000/06/05 21:21:16 mike Exp $" +// "$Id: buttons.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Another button test program 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 // modify it under the terms of the GNU Library General Public @@ -48,5 +48,5 @@ int main(int argc, char ** argv) { } // -// End of "$Id: buttons.cxx,v 1.4.2.2 2000/06/05 21:21:16 mike Exp $". +// End of "$Id: buttons.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/checkers.cxx b/test/checkers.cxx index 046c200d8..40c4e7694 100644 --- a/test/checkers.cxx +++ b/test/checkers.cxx @@ -1,12 +1,12 @@ // -// "$Id: checkers.cxx,v 1.9.2.5 2000/06/05 21:21:16 mike Exp $" +// "$Id: checkers.cxx,v 1.9.2.6 2001/01/22 15:13:41 easysw Exp $" // // Checkers game for the Fast Light Tool Kit (FLTK). // // Hours of fun: the FLTK checkers game! // Based on a very old algorithim, but it still works! // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -1365,5 +1365,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: checkers.cxx,v 1.9.2.5 2000/06/05 21:21:16 mike Exp $". +// End of "$Id: checkers.cxx,v 1.9.2.6 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/clock.cxx b/test/clock.cxx index bf7644c83..8b68ea3e2 100644 --- a/test/clock.cxx +++ b/test/clock.cxx @@ -1,9 +1,9 @@ // -// "$Id: clock.cxx,v 1.4.2.2 2000/06/05 21:21:17 mike Exp $" +// "$Id: clock.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Clock test program 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 // modify it under the terms of the GNU Library General Public @@ -47,5 +47,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: clock.cxx,v 1.4.2.2 2000/06/05 21:21:17 mike Exp $". +// End of "$Id: clock.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/colbrowser.cxx b/test/colbrowser.cxx index c0c8f09f1..99de569b6 100644 --- a/test/colbrowser.cxx +++ b/test/colbrowser.cxx @@ -1,5 +1,5 @@ // -// "$Id: colbrowser.cxx,v 1.5.2.2 2000/06/05 21:21:17 mike Exp $" +// "$Id: colbrowser.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $" // // Forms test program for the Fast Light Tool Kit (FLTK). // @@ -8,7 +8,7 @@ // using fltk's Forms emulation. Search for "fltk" to find all the // changes // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -340,5 +340,5 @@ create_form_cl(void) } // -// End of "$Id: colbrowser.cxx,v 1.5.2.2 2000/06/05 21:21:17 mike Exp $". +// End of "$Id: colbrowser.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/color_chooser.cxx b/test/color_chooser.cxx index a15d7d0c6..c96130ced 100644 --- a/test/color_chooser.cxx +++ b/test/color_chooser.cxx @@ -1,9 +1,9 @@ // -// "$Id: color_chooser.cxx,v 1.6.2.2 2000/06/05 21:21:17 mike Exp $" +// "$Id: color_chooser.cxx,v 1.6.2.3 2001/01/22 15:13:41 easysw Exp $" // // Color chooser test program 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 // modify it under the terms of the GNU Library General Public @@ -146,5 +146,5 @@ int main(int argc, char ** argv) { } // -// End of "$Id: color_chooser.cxx,v 1.6.2.2 2000/06/05 21:21:17 mike Exp $". +// End of "$Id: color_chooser.cxx,v 1.6.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/connect.cxx b/test/connect.cxx index 613625187..37f30c1a3 100644 --- a/test/connect.cxx +++ b/test/connect.cxx @@ -1,5 +1,5 @@ // -// "$Id: connect.cxx,v 1.4.2.3 2000/06/05 21:21:17 mike Exp $" +// "$Id: connect.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $" // // PPP example program for the Fast Light Tool Kit (FLTK). // @@ -7,7 +7,7 @@ // You must chmod +s /usr/sbin/pppd, and put all the options // into /etc/ppp/options. // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -71,5 +71,5 @@ int main(int argc, char ** argv) { } // -// End of "$Id: connect.cxx,v 1.4.2.3 2000/06/05 21:21:17 mike Exp $". +// End of "$Id: connect.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/cube.cxx b/test/cube.cxx index 1ab25388b..0236b3ba7 100644 --- a/test/cube.cxx +++ b/test/cube.cxx @@ -1,11 +1,11 @@ // -// "$Id: cube.cxx,v 1.4.2.3 2000/06/13 20:33:36 mike Exp $" +// "$Id: cube.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $" // // Another forms test program for the Fast Light Tool Kit (FLTK). // // Modified to have 2 cubes to test multiple OpenGL contexts // -// 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 // modify it under the terms of the GNU Library General Public @@ -169,5 +169,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: cube.cxx,v 1.4.2.3 2000/06/13 20:33:36 mike Exp $". +// End of "$Id: cube.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/cursor.cxx b/test/cursor.cxx index 763c1365f..349d3f39b 100644 --- a/test/cursor.cxx +++ b/test/cursor.cxx @@ -1,9 +1,9 @@ // -// "$Id: cursor.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $" +// "$Id: cursor.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Cursor test program 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 // modify it under the terms of the GNU Library General Public @@ -159,5 +159,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: cursor.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $". +// End of "$Id: cursor.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/curve.cxx b/test/curve.cxx index 6743aa6c4..6a177106a 100644 --- a/test/curve.cxx +++ b/test/curve.cxx @@ -1,9 +1,9 @@ // -// "$Id: curve.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $" +// "$Id: curve.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Curve test program 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 // modify it under the terms of the GNU Library General Public @@ -109,5 +109,5 @@ int main(int argc, char** argv) { } // -// End of "$Id: curve.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $". +// End of "$Id: curve.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/demo.cxx b/test/demo.cxx index 66946cf86..4fea924aa 100644 --- a/test/demo.cxx +++ b/test/demo.cxx @@ -1,9 +1,9 @@ // -// "$Id: demo.cxx,v 1.8.2.4 2000/08/20 04:35:17 spitzak Exp $" +// "$Id: demo.cxx,v 1.8.2.5 2001/01/22 15:13:41 easysw Exp $" // // Main demo program 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 // modify it under the terms of the GNU Library General Public @@ -332,6 +332,6 @@ int main(int argc, char **argv) { } // -// End of "$Id: demo.cxx,v 1.8.2.4 2000/08/20 04:35:17 spitzak Exp $". +// End of "$Id: demo.cxx,v 1.8.2.5 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/doublebuffer.cxx b/test/doublebuffer.cxx index f5a7aed0c..f380829a0 100644 --- a/test/doublebuffer.cxx +++ b/test/doublebuffer.cxx @@ -1,5 +1,5 @@ // -// "$Id: doublebuffer.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $" +// "$Id: doublebuffer.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Double-buffering test program for the Fast Light Tool Kit (FLTK). // @@ -13,7 +13,7 @@ // This demo should work for both the GL and X versions of Fl, // even though the double buffering mechanism is totally different. // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -122,5 +122,5 @@ int main() { } // -// End of "$Id: doublebuffer.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $". +// End of "$Id: doublebuffer.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/editor.cxx b/test/editor.cxx index e23a3418c..a47b9ca87 100644 --- a/test/editor.cxx +++ b/test/editor.cxx @@ -1,11 +1,11 @@ // -// "$Id: editor.cxx,v 1.2.2.2 2000/06/05 21:21:18 mike Exp $" +// "$Id: editor.cxx,v 1.2.2.3 2001/01/22 15:13:41 easysw Exp $" // // A simple text editor program for the Fast Light Tool Kit (FLTK). // // This program is described in Chapter 4 of the FLTK Programmer's Guide. // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -385,5 +385,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: editor.cxx,v 1.2.2.2 2000/06/05 21:21:18 mike Exp $". +// End of "$Id: editor.cxx,v 1.2.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/file_chooser.cxx b/test/file_chooser.cxx index 61fdec717..2da1d1f56 100644 --- a/test/file_chooser.cxx +++ b/test/file_chooser.cxx @@ -1,9 +1,9 @@ // -// "$Id: file_chooser.cxx,v 1.4.2.2 2000/06/05 21:21:19 mike Exp $" +// "$Id: file_chooser.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // File chooser test program 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 // modify it under the terms of the GNU Library General Public @@ -59,5 +59,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: file_chooser.cxx,v 1.4.2.2 2000/06/05 21:21:19 mike Exp $". +// End of "$Id: file_chooser.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/fl_jpeg_image.cxx b/test/fl_jpeg_image.cxx index a31b5dda9..8ce011d84 100644 --- a/test/fl_jpeg_image.cxx +++ b/test/fl_jpeg_image.cxx @@ -1,5 +1,5 @@ // -// "$Id: fl_jpeg_image.cxx,v 1.5.2.2 2000/06/05 21:21:19 mike Exp $" +// "$Id: fl_jpeg_image.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $" // // fl_draw_image test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // The makefile assummes you decompressed and build these in a directory // called "jpeg-6a" in the same location as the "FL" directory. // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -197,5 +197,5 @@ void readtheimage(const char *name) { #endif // -// End of "$Id: fl_jpeg_image.cxx,v 1.5.2.2 2000/06/05 21:21:19 mike Exp $". +// End of "$Id: fl_jpeg_image.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/fonts.cxx b/test/fonts.cxx index 7f113b8c2..18336b877 100644 --- a/test/fonts.cxx +++ b/test/fonts.cxx @@ -1,9 +1,9 @@ // -// "$Id: fonts.cxx,v 1.5.2.2 2000/06/05 21:21:19 mike Exp $" +// "$Id: fonts.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $" // // Font demo program 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 // modify it under the terms of the GNU Library General Public @@ -164,5 +164,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: fonts.cxx,v 1.5.2.2 2000/06/05 21:21:19 mike Exp $". +// End of "$Id: fonts.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/forms.cxx b/test/forms.cxx index 83aeebe75..f1c3c5fe0 100644 --- a/test/forms.cxx +++ b/test/forms.cxx @@ -1,5 +1,5 @@ // -// "$Id: forms.cxx,v 1.4.2.2 2000/06/05 21:21:19 mike Exp $" +// "$Id: forms.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Another forms demo for the Fast Light Tool Kit (FLTK). // @@ -9,7 +9,7 @@ // This demo show the different boxtypes. Note that some // boxtypes are not appropriate for some objects // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -229,5 +229,5 @@ main (int argc, char *argv[]) } // -// End of "$Id: forms.cxx,v 1.4.2.2 2000/06/05 21:21:19 mike Exp $". +// End of "$Id: forms.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/fractals.cxx b/test/fractals.cxx index 1b0041dda..b26a3bc77 100644 --- a/test/fractals.cxx +++ b/test/fractals.cxx @@ -1,5 +1,5 @@ // -// "$Id: fractals.cxx,v 1.5.2.3 2000/06/05 21:21:19 mike Exp $" +// "$Id: fractals.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $" // // Fractal drawing demo for the Fast Light Tool Kit (FLTK). // @@ -7,7 +7,7 @@ // demonstrate how to add fltk controls to a glut program. The glut // code is unchanged except for the end (search for fltk to find changes). // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -805,5 +805,5 @@ int main(int argc, char** argv) #endif // -// End of "$Id: fractals.cxx,v 1.5.2.3 2000/06/05 21:21:19 mike Exp $". +// End of "$Id: fractals.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/fullscreen.cxx b/test/fullscreen.cxx index 0785c6080..dfe3fd1ac 100644 --- a/test/fullscreen.cxx +++ b/test/fullscreen.cxx @@ -1,5 +1,5 @@ // -// "$Id: fullscreen.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $" +// "$Id: fullscreen.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Fullscreen test program for the Fast Light Tool Kit (FLTK). // @@ -34,7 +34,7 @@ // can avoid this by making the Fl_Gl_Window a child of a normal // window. // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -240,5 +240,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: fullscreen.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $". +// End of "$Id: fullscreen.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/gl_overlay.cxx b/test/gl_overlay.cxx index c4864b556..d8052fd73 100644 --- a/test/gl_overlay.cxx +++ b/test/gl_overlay.cxx @@ -1,9 +1,9 @@ // -// "$Id: gl_overlay.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $" +// "$Id: gl_overlay.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // OpenGL overlay test program 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 // modify it under the terms of the GNU Library General Public @@ -151,5 +151,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: gl_overlay.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $". +// End of "$Id: gl_overlay.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/glpuzzle.cxx b/test/glpuzzle.cxx index 585af161b..555f40c35 100644 --- a/test/glpuzzle.cxx +++ b/test/glpuzzle.cxx @@ -1,12 +1,12 @@ // -// "$Id: glpuzzle.cxx,v 1.8.2.2 2000/06/05 21:21:20 mike Exp $" +// "$Id: glpuzzle.cxx,v 1.8.2.3 2001/01/22 15:13:41 easysw Exp $" // // OpenGL puzzle demo for the Fast Light Tool Kit (FLTK). // // This is a GLUT demo program to demonstrate fltk's GLUT emulation. // Search for "fltk" to find all the changes // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -1479,5 +1479,5 @@ main(int argc, char **argv) #endif // added for fltk's distribution // -// End of "$Id: glpuzzle.cxx,v 1.8.2.2 2000/06/05 21:21:20 mike Exp $". +// End of "$Id: glpuzzle.cxx,v 1.8.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/hello.cxx b/test/hello.cxx index 69aa7d722..0d0da3089 100644 --- a/test/hello.cxx +++ b/test/hello.cxx @@ -1,9 +1,9 @@ // -// "$Id: hello.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $" +// "$Id: hello.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Hello, World! program 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 // modify it under the terms of the GNU Library General Public @@ -39,5 +39,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: hello.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $". +// End of "$Id: hello.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/iconize.cxx b/test/iconize.cxx index 62b1993ec..b6afbaded 100644 --- a/test/iconize.cxx +++ b/test/iconize.cxx @@ -1,9 +1,9 @@ // -// "$Id: iconize.cxx,v 1.4.2.2 2000/06/05 21:21:21 mike Exp $" +// "$Id: iconize.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Iconize test program 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 // modify it under the terms of the GNU Library General Public @@ -77,5 +77,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: iconize.cxx,v 1.4.2.2 2000/06/05 21:21:21 mike Exp $". +// End of "$Id: iconize.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/image.cxx b/test/image.cxx index 6dd8e8f93..d0158067a 100644 --- a/test/image.cxx +++ b/test/image.cxx @@ -1,5 +1,5 @@ // -// "$Id: image.cxx,v 1.6.2.2 2000/06/05 21:21:21 mike Exp $" +// "$Id: image.cxx,v 1.6.2.3 2001/01/22 15:13:41 easysw Exp $" // // Fl_Image test program for the Fast Light Tool Kit (FLTK). // @@ -7,7 +7,7 @@ // as an icon or postage stamp. Use fl_draw_image to go directly // from an buffered image that changes often. // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -133,5 +133,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: image.cxx,v 1.6.2.2 2000/06/05 21:21:21 mike Exp $". +// End of "$Id: image.cxx,v 1.6.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/input.cxx b/test/input.cxx index 9beb848fc..56cc52d30 100644 --- a/test/input.cxx +++ b/test/input.cxx @@ -1,9 +1,9 @@ // -// "$Id: input.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $" +// "$Id: input.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $" // // Input field test program 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 // modify it under the terms of the GNU Library General Public @@ -117,5 +117,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: input.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $". +// End of "$Id: input.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/jpeg_image.cxx b/test/jpeg_image.cxx index d2f578510..e7458c1d7 100644 --- a/test/jpeg_image.cxx +++ b/test/jpeg_image.cxx @@ -1,5 +1,5 @@ // -// "$Id: jpeg_image.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $" +// "$Id: jpeg_image.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $" // // fl_draw_image test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // The makefile assummes you decompressed and build these in a directory // called "jpeg-6a" in the same location as the "FL" directory. // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -198,5 +198,5 @@ void readtheimage(const char *name) { #endif // -// End of "$Id: jpeg_image.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $". +// End of "$Id: jpeg_image.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/keyboard.cxx b/test/keyboard.cxx index facdcc9ad..087cfeb02 100644 --- a/test/keyboard.cxx +++ b/test/keyboard.cxx @@ -1,5 +1,5 @@ // -// "$Id: keyboard.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $" +// "$Id: keyboard.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $" // // Keyboard/event test program for the Fast Light Tool Kit (FLTK). // @@ -17,7 +17,7 @@ // // On IRIX the backslash key does not work. A bug in XKeysymToKeycode? // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -127,5 +127,5 @@ int main(int argc, char** argv) { } // -// End of "$Id: keyboard.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $". +// End of "$Id: keyboard.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/label.cxx b/test/label.cxx index 77eb58bda..c5931af84 100644 --- a/test/label.cxx +++ b/test/label.cxx @@ -1,9 +1,9 @@ // -// "$Id: label.cxx,v 1.4.2.2 2000/06/05 21:21:21 mike Exp $" +// "$Id: label.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Label test program 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 // modify it under the terms of the GNU Library General Public @@ -156,5 +156,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: label.cxx,v 1.4.2.2 2000/06/05 21:21:21 mike Exp $". +// End of "$Id: label.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/list_visuals.cxx b/test/list_visuals.cxx index cf6ee2fd5..a45bc3bcf 100644 --- a/test/list_visuals.cxx +++ b/test/list_visuals.cxx @@ -1,5 +1,5 @@ // -// "$Id: list_visuals.cxx,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $" +// "$Id: list_visuals.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $" // // Visual list utility for the Fast Light Tool Kit (FLTK). // @@ -11,7 +11,7 @@ // This file may be #included in another program to make a function to // call to list the visuals. Fl.H must be included first to indicate this. // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -235,5 +235,5 @@ int main(int argc, char **argv) { #endif // -// End of "$Id: list_visuals.cxx,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $". +// End of "$Id: list_visuals.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/mandelbrot.cxx b/test/mandelbrot.cxx index aa7c06b31..e2ea87f43 100644 --- a/test/mandelbrot.cxx +++ b/test/mandelbrot.cxx @@ -1,9 +1,9 @@ // -// "$Id: mandelbrot.cxx,v 1.8.2.2 2000/06/05 21:21:22 mike Exp $" +// "$Id: mandelbrot.cxx,v 1.8.2.3 2001/01/22 15:13:41 easysw Exp $" // // Mandelbrot set demo 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 // modify it under the terms of the GNU Library General Public @@ -197,5 +197,5 @@ void Drawing_Area::resize(int X,int Y,int W,int H) { } // -// End of "$Id: mandelbrot.cxx,v 1.8.2.2 2000/06/05 21:21:22 mike Exp $". +// End of "$Id: mandelbrot.cxx,v 1.8.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/mandelbrot.h b/test/mandelbrot.h index 8eb512b05..cdd6f0a6d 100644 --- a/test/mandelbrot.h +++ b/test/mandelbrot.h @@ -1,9 +1,9 @@ // -// "$Id: mandelbrot.h,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $" +// "$Id: mandelbrot.h,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $" // // Mandelbrot set 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 // modify it under the terms of the GNU Library General Public @@ -68,5 +68,5 @@ public: }; // -// End of "$Id: mandelbrot.h,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $". +// End of "$Id: mandelbrot.h,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/menubar.cxx b/test/menubar.cxx index 99195e37c..9def1d0eb 100644 --- a/test/menubar.cxx +++ b/test/menubar.cxx @@ -1,9 +1,9 @@ // -// "$Id: menubar.cxx,v 1.6.2.7 2000/07/30 00:31:44 spitzak Exp $" +// "$Id: menubar.cxx,v 1.6.2.8 2001/01/22 15:13:41 easysw Exp $" // // Menubar test program 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 // modify it under the terms of the GNU Library General Public @@ -216,5 +216,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: menubar.cxx,v 1.6.2.7 2000/07/30 00:31:44 spitzak Exp $". +// End of "$Id: menubar.cxx,v 1.6.2.8 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/message.cxx b/test/message.cxx index 7f39e4b5f..0dfe90512 100644 --- a/test/message.cxx +++ b/test/message.cxx @@ -1,9 +1,9 @@ // -// "$Id: message.cxx,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $" +// "$Id: message.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $" // // Message test program 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 // modify it under the terms of the GNU Library General Public @@ -54,5 +54,5 @@ int main(int, char **) { } // -// End of "$Id: message.cxx,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $". +// End of "$Id: message.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/minimum.cxx b/test/minimum.cxx index 7f1c8588d..5075b34e7 100644 --- a/test/minimum.cxx +++ b/test/minimum.cxx @@ -1,5 +1,5 @@ // -// "$Id: minimum.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $" +// "$Id: minimum.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Minimal update test program for the Fast Light Tool Kit (FLTK). // @@ -20,7 +20,7 @@ // machine is, this is an insane waste of resources, and should be // stopped! // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -74,5 +74,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: minimum.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $". +// End of "$Id: minimum.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/navigation.cxx b/test/navigation.cxx index c22bdab13..4b66a995e 100644 --- a/test/navigation.cxx +++ b/test/navigation.cxx @@ -1,12 +1,12 @@ // -// "$Id: navigation.cxx,v 1.5.2.2 2000/06/05 21:21:23 mike Exp $" +// "$Id: navigation.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $" // // Navigation test program for the Fast Light Tool Kit (FLTK). // // Silly test of navigation keys. This is not a recommended method of // laying out your panels! // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -66,5 +66,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: navigation.cxx,v 1.5.2.2 2000/06/05 21:21:23 mike Exp $". +// End of "$Id: navigation.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/output.cxx b/test/output.cxx index 071cebdd5..3b6566cc1 100644 --- a/test/output.cxx +++ b/test/output.cxx @@ -1,9 +1,9 @@ // -// "$Id: output.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $" +// "$Id: output.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Output test program 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 // modify it under the terms of the GNU Library General Public @@ -97,5 +97,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: output.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $". +// End of "$Id: output.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/overlay.cxx b/test/overlay.cxx index 570ac74e0..62414ea94 100644 --- a/test/overlay.cxx +++ b/test/overlay.cxx @@ -1,9 +1,9 @@ // -// "$Id: overlay.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $" +// "$Id: overlay.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Overlay window test program 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 // modify it under the terms of the GNU Library General Public @@ -80,5 +80,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: overlay.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $". +// End of "$Id: overlay.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/pack.cxx b/test/pack.cxx index 1702c4127..af167324d 100644 --- a/test/pack.cxx +++ b/test/pack.cxx @@ -1,5 +1,5 @@ // -// "$Id: pack.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $" +// "$Id: pack.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Fl_Pack test program for the Fast Light Tool Kit (FLTK). // @@ -7,7 +7,7 @@ // Changing the type() of an Fl_Pack after it is displayed is not supported // so I have to do a lot of resizing of things before that. // -// Copyright 1998-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 // modify it under the terms of the GNU Library General Public @@ -114,5 +114,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: pack.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $". +// End of "$Id: pack.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/pixmap.cxx b/test/pixmap.cxx index 233b1843c..38054b073 100644 --- a/test/pixmap.cxx +++ b/test/pixmap.cxx @@ -1,9 +1,9 @@ // -// "$Id: pixmap.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $" +// "$Id: pixmap.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Pixmap label test program 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 // modify it under the terms of the GNU Library General Public @@ -87,5 +87,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: pixmap.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $". +// End of "$Id: pixmap.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/pixmap_browser.cxx b/test/pixmap_browser.cxx index b1aec297c..7b9041e75 100644 --- a/test/pixmap_browser.cxx +++ b/test/pixmap_browser.cxx @@ -1,12 +1,12 @@ // -// "$Id: pixmap_browser.cxx,v 1.5.2.3 2000/06/05 21:21:23 mike Exp $" +// "$Id: pixmap_browser.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $" // // Another pixmap test program for the Fast Light Tool Kit (FLTK). // // On purpose, I do NOT provide a fltk method to turn a file // into a pixmap. This program uses a rather simplistic one. // -// 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 // modify it under the terms of the GNU Library General Public @@ -165,5 +165,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: pixmap_browser.cxx,v 1.5.2.3 2000/06/05 21:21:23 mike Exp $". +// End of "$Id: pixmap_browser.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/resizebox.cxx b/test/resizebox.cxx index 885e77585..d8be76d3f 100644 --- a/test/resizebox.cxx +++ b/test/resizebox.cxx @@ -1,9 +1,9 @@ // -// "$Id: resizebox.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $" +// "$Id: resizebox.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Resize box test program 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 // modify it under the terms of the GNU Library General Public @@ -97,5 +97,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: resizebox.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $". +// End of "$Id: resizebox.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/scroll.cxx b/test/scroll.cxx index 57c8e2794..0b4db8de4 100644 --- a/test/scroll.cxx +++ b/test/scroll.cxx @@ -1,9 +1,9 @@ // -// "$Id: scroll.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $" +// "$Id: scroll.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Fl_Scroll test program 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 // modify it under the terms of the GNU Library General Public @@ -137,5 +137,5 @@ int main(int argc, char** argv) { } // -// End of "$Id: scroll.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $". +// End of "$Id: scroll.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/shape.cxx b/test/shape.cxx index 7c57a8992..ca321d2df 100644 --- a/test/shape.cxx +++ b/test/shape.cxx @@ -1,9 +1,9 @@ // -// "$Id: shape.cxx,v 1.5.2.3 2000/06/05 21:21:24 mike Exp $" +// "$Id: shape.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $" // // Tiny OpenGL demo program 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 // modify it under the terms of the GNU Library General Public @@ -111,5 +111,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: shape.cxx,v 1.5.2.3 2000/06/05 21:21:24 mike Exp $". +// End of "$Id: shape.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/shiny.cxx b/test/shiny.cxx index 98927bae6..ecc392053 100644 --- a/test/shiny.cxx +++ b/test/shiny.cxx @@ -1,9 +1,9 @@ // -// "$Id: shiny.cxx,v 1.5.2.2 2000/06/05 21:21:24 mike Exp $" +// "$Id: shiny.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $" // // OpenGL "shiny buttons" test program 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 // modify it under the terms of the GNU Library General Public @@ -303,5 +303,5 @@ int main(int argc, char **argv) { } // -// End of "$Id: shiny.cxx,v 1.5.2.2 2000/06/05 21:21:24 mike Exp $". +// End of "$Id: shiny.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/subwindow.cxx b/test/subwindow.cxx index a3d17be45..3c0a32580 100644 --- a/test/subwindow.cxx +++ b/test/subwindow.cxx @@ -1,5 +1,5 @@ // -// "$Id: subwindow.cxx,v 1.5.2.4 2000/06/05 21:21:24 mike Exp $" +// "$Id: subwindow.cxx,v 1.5.2.5 2001/01/22 15:13:41 easysw Exp $" // // Nested window test program for the Fast Light Tool Kit (FLTK). // @@ -8,7 +8,7 @@ // Buttons and pop-up menu should work, indicating that mouse positions // are being correctly translated. // -// 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 // modify it under the terms of the GNU Library General Public @@ -183,5 +183,5 @@ int main(int, char **) { } // -// End of "$Id: subwindow.cxx,v 1.5.2.4 2000/06/05 21:21:24 mike Exp $". +// End of "$Id: subwindow.cxx,v 1.5.2.5 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/symbols.cxx b/test/symbols.cxx index 2d3edee86..097cb1dd0 100644 --- a/test/symbols.cxx +++ b/test/symbols.cxx @@ -1,9 +1,9 @@ // -// "$Id: symbols.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $" +// "$Id: symbols.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Symbol test program 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 // modify it under the terms of the GNU Library General Public @@ -85,5 +85,5 @@ bt("@DnArrow"); } // -// End of "$Id: symbols.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $". +// End of "$Id: symbols.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/test/tile.cxx b/test/tile.cxx index 12ffda941..177ae6016 100755 --- a/test/tile.cxx +++ b/test/tile.cxx @@ -1,9 +1,9 @@ // -// "$Id: tile.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $" +// "$Id: tile.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $" // // Tile test program 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 // modify it under the terms of the GNU Library General Public @@ -86,5 +86,5 @@ int main(int argc, char** argv) { } // -// End of "$Id: tile.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $". +// End of "$Id: tile.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $". // diff --git a/visualc/config.h b/visualc/config.h index 08d79a1ee..938ffb832 100644 --- a/visualc/config.h +++ b/visualc/config.h @@ -1,9 +1,9 @@ /* - * "$Id: config.h,v 1.5.2.3 2000/11/20 15:44:19 easysw Exp $" + * "$Id: config.h,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $" * * Configuration file for the Fast Light Tool Kit (FLTK) for Visual C++. * - * 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 * modify it under the terms of the GNU Library General Public @@ -144,5 +144,5 @@ #define HAVE_POLL 0 /* - * End of "$Id: config.h,v 1.5.2.3 2000/11/20 15:44:19 easysw Exp $". + * End of "$Id: config.h,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $". */