Copyright 2001.

FLTK 1.0.11.


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

25
CHANGES
View File

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

View File

@@ -1,9 +1,9 @@
//
// "$Id: Enumerations.H,v 1.18.2.13 2000/11/20 14:53:52 easysw Exp $"
// "$Id: Enumerations.H,v 1.18.2.14 2001/01/22 15:13:37 easysw Exp $"
//
// Enumerations for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl.H,v 1.8.2.10 2000/12/12 08:57:29 spitzak Exp $"
// "$Id: Fl.H,v 1.8.2.11 2001/01/22 15:13:37 easysw Exp $"
//
// Main header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Adjuster.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $"
// "$Id: Fl_Adjuster.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Adjuster widget header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Bitmap.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $"
// "$Id: Fl_Bitmap.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Bitmap header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Box.H,v 1.5.2.3 2000/06/10 19:29:58 carl Exp $"
// "$Id: Fl_Box.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $"
//
// Box header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Browser.H,v 1.8.2.6 2000/08/19 17:10:47 spitzak Exp $"
// "$Id: Fl_Browser.H,v 1.8.2.7 2001/01/22 15:13:37 easysw Exp $"
//
// Browser header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Browser_.H,v 1.6.2.3 2000/06/10 19:29:59 carl Exp $"
// "$Id: Fl_Browser_.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $"
//
// Common browser header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $"
// "$Id: Fl_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Button header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Chart.H,v 1.6.2.2 2000/06/05 21:20:20 mike Exp $"
// "$Id: Fl_Chart.H,v 1.6.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Forms chart header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Check_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $"
// "$Id: Fl_Check_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Check button header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Choice.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $"
// "$Id: Fl_Choice.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Choice header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Clock.H,v 1.6.2.3 2000/06/10 19:29:59 carl Exp $"
// "$Id: Fl_Clock.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $"
//
// Clock header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Color_Chooser.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $"
// "$Id: Fl_Color_Chooser.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $"
//
// Color chooser header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Counter.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $"
// "$Id: Fl_Counter.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Counter header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Dial.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $"
// "$Id: Fl_Dial.H,v 1.7.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Dial header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Double_Window.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $"
// "$Id: Fl_Double_Window.H,v 1.7.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Double-buffered window header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Fill_Dial.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $"
// "$Id: Fl_Fill_Dial.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Filled dial header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $"
// "$Id: Fl_Fill_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Filled slider header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Float_Input.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $"
// "$Id: Fl_Float_Input.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Floating point input header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_FormsBitmap.H,v 1.5.2.2 2000/06/05 21:20:22 mike Exp $"
// "$Id: Fl_FormsBitmap.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Forms bitmap header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_FormsPixmap.H,v 1.5.2.2 2000/06/05 21:20:23 mike Exp $"
// "$Id: Fl_FormsPixmap.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Forms pixmap header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Free.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $"
// "$Id: Fl_Free.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $"
//
// Forms free header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Gl_Window.H,v 1.7.2.2 2000/06/05 21:20:23 mike Exp $"
// "$Id: Fl_Gl_Window.H,v 1.7.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// OpenGL header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Group.H,v 1.6.2.3 2000/06/10 19:29:59 carl Exp $"
// "$Id: Fl_Group.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $"
//
// Group header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Hold_Browser.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $"
// "$Id: Fl_Hold_Browser.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Hold browser header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $"
// "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Horizontal fill slider header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $"
// "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Horizontal "nice" slider header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Hor_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $"
// "$Id: Fl_Hor_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Horizontal slider header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $"
// "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Horizontal value slider header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Image.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $"
// "$Id: Fl_Image.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Image header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Input.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $"
// "$Id: Fl_Input.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Input header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Input_.H,v 1.6.2.3 2000/06/20 07:56:06 bill Exp $"
// "$Id: Fl_Input_.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $"
//
// Input base class header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Int_Input.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $"
// "$Id: Fl_Int_Input.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Integer input header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Light_Button.H,v 1.5.2.2 2000/06/05 21:20:25 mike Exp $"
// "$Id: Fl_Light_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Lighted button header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Line_Dial.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $"
// "$Id: Fl_Line_Dial.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Line dial header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Menu.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $"
// "$Id: Fl_Menu.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Old menu header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Menu_.H,v 1.7.2.3 2000/06/05 21:20:25 mike Exp $"
// "$Id: Fl_Menu_.H,v 1.7.2.4 2001/01/22 15:13:37 easysw Exp $"
//
// Menu base class header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Menu_Bar.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $"
// "$Id: Fl_Menu_Bar.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $"
//
// Menu bar header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Menu_Button.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $"
// "$Id: Fl_Menu_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Menu button header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Menu_Item.H,v 1.5.2.3 2000/06/05 21:20:26 mike Exp $"
// "$Id: Fl_Menu_Item.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $"
//
// Menu item header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Menu_Window.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $"
// "$Id: Fl_Menu_Window.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Menu window header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Multi_Browser.H,v 1.4.2.2 2000/06/05 21:20:26 mike Exp $"
// "$Id: Fl_Multi_Browser.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Multi browser header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Multi_Label.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $"
// "$Id: Fl_Multi_Label.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Multi-label header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Multiline_Input.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $"
// "$Id: Fl_Multiline_Input.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Multiline input header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Multiline_Output.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $"
// "$Id: Fl_Multiline_Output.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Multi line output header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $"
// "$Id: Fl_Nice_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// "Nice" slider header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Object.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $"
// "$Id: Fl_Object.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Old Fl_Object header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Output.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $"
// "$Id: Fl_Output.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Output header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

View File

@@ -1,9 +1,9 @@
//
// "$Id: Fl_Overlay_Window.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $"
// "$Id: Fl_Overlay_Window.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
//
// Overlay window header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2000 by Bill Spitzak and others.
// Copyright 1998-2001 by Bill Spitzak 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 $".
//

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