OK, now version 1.0.9

Updated email addresses to point to fltk.org domain...

Updated README and CHANGES files accordingly.

Updated makeinclude and Makefile files to put -L../lib before the
LDFLAGS/GLDFLAGS to avoid problem reported by Alexander.

documentation/Makefile wasn't including makeinclude.

Updated FLUID about window to show version 1.0.9.


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1168 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet
2000-06-05 21:21:24 +00:00
parent a6abbc5462
commit f87393aaa1
313 changed files with 989 additions and 952 deletions
+34
View File
@@ -1,3 +1,37 @@
CHANGES SINCE FLTK 1.0.8
- EMail changes - fltk-bugs@easysw.com now officially
fltk-bugs@fltk.org.
- The FLTK DLL project file didn't include fl_compose.cxx
- Dropped the GCC -fno-rtti option since it caused problems
with existing programs.
- Moved the .fl rules back to the test directory.
- Fixed some makefile and spec file problems.
- Fixed hardware overlays. The problem was the new
fl_clipped() code, which tests against the current window
size. The hardware overlay code did not set the current
window when drawing the overlay. I needed hardware overlay
for DD's code, I'm not sure if these fixes are good enough to
enable this in our general release. Hardware overlay still
only works on SGI Irix.
- Some patches to turn off the MSVC++ -Oa (assumme no aliasing)
optimization flag. Suprisingly this only broke a few parts
of fltk, or at least these are the only ones I found.
- Does not unmap child windows when the main window is
iconized. This reduces flashing when the window is
deiconized.
- Fl::key() is set to zero by all events except key down/up.
This will allow you to reliably test if an event or callback
was produced by a keystroke. Fixes the bug posted about
stopping Escape from closing the window.
- User defined cursors on OpenGL windows slowed down NT a
*LOT*. Some attempts to fix this by turning off the cursor
while drawing the window.
- Filename completion in the file chooser works better on NT.
Typing TAB fixes the case of everything you typed to match
the shortest name that can be completed.
CHANGES SINCE FLTK 1.0.7 CHANGES SINCE FLTK 1.0.7
- Many documentation changes/fixes/improvements. - Many documentation changes/fixes/improvements.
+4 -4
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Enumerations.H,v 1.18.2.11 2000/04/25 22:15:43 mike Exp $" // "$Id: Enumerations.H,v 1.18.2.12 2000/06/05 21:20:18 mike Exp $"
// //
// Enumerations for the Fast Light Tool Kit (FLTK). // Enumerations for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Enumerations_H #ifndef Fl_Enumerations_H
@@ -56,7 +56,7 @@
#define FL_MAJOR_VERSION 1 #define FL_MAJOR_VERSION 1
#define FL_MINOR_VERSION 0 #define FL_MINOR_VERSION 0
#define FL_PATCH_VERSION 8 #define FL_PATCH_VERSION 9
#define FL_VERSION ((double)FL_MAJOR_VERSION + \ #define FL_VERSION ((double)FL_MAJOR_VERSION + \
(double)FL_MINOR_VERSION * 0.01 + \ (double)FL_MINOR_VERSION * 0.01 + \
(double)FL_PATCH_VERSION * 0.0001) (double)FL_PATCH_VERSION * 0.0001)
@@ -371,5 +371,5 @@ enum Fl_Damage {
#endif #endif
// //
// End of "$Id: Enumerations.H,v 1.18.2.11 2000/04/25 22:15:43 mike Exp $". // End of "$Id: Enumerations.H,v 1.18.2.12 2000/06/05 21:20:18 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl.H,v 1.8.2.5 2000/05/13 20:03:14 bill Exp $" // "$Id: Fl.H,v 1.8.2.6 2000/06/05 21:20:18 mike Exp $"
// //
// Main header file for the Fast Light Tool Kit (FLTK). // Main header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_H #ifndef Fl_H
@@ -211,5 +211,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl.H,v 1.8.2.5 2000/05/13 20:03:14 bill Exp $". // End of "$Id: Fl.H,v 1.8.2.6 2000/06/05 21:20:18 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Adjuster.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $" // "$Id: Fl_Adjuster.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $"
// //
// Adjuster widget header file for the Fast Light Tool Kit (FLTK). // Adjuster widget header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// 3-button "slider", made for Nuke // 3-button "slider", made for Nuke
@@ -49,5 +49,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Adjuster.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $". // End of "$Id: Fl_Adjuster.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Bitmap.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $" // "$Id: Fl_Bitmap.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $"
// //
// Bitmap header file for the Fast Light Tool Kit (FLTK). // Bitmap header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Bitmap_H #ifndef Fl_Bitmap_H
@@ -47,5 +47,5 @@ struct Fl_Bitmap {
#endif #endif
// //
// End of "$Id: Fl_Bitmap.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $". // End of "$Id: Fl_Bitmap.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Box.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $" // "$Id: Fl_Box.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $"
// //
// Box header file for the Fast Light Tool Kit (FLTK). // Box header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Box_H #ifndef Fl_Box_H
@@ -42,5 +42,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Box.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $". // End of "$Id: Fl_Box.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Browser.H,v 1.8.2.4 2000/04/25 22:15:44 mike Exp $" // "$Id: Fl_Browser.H,v 1.8.2.5 2000/06/05 21:20:20 mike Exp $"
// //
// Browser header file for the Fast Light Tool Kit (FLTK). // Browser header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// Forms-compatable browser. Probably useful for other // Forms-compatable browser. Probably useful for other
@@ -118,5 +118,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Browser.H,v 1.8.2.4 2000/04/25 22:15:44 mike Exp $". // End of "$Id: Fl_Browser.H,v 1.8.2.5 2000/06/05 21:20:20 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Browser_.H,v 1.6.2.1 2000/04/25 22:15:44 mike Exp $" // "$Id: Fl_Browser_.H,v 1.6.2.2 2000/06/05 21:20:20 mike Exp $"
// //
// Common browser header file for the Fast Light Tool Kit (FLTK). // Common browser header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// This is the base class for browsers. To be useful it must // This is the base class for browsers. To be useful it must
@@ -146,5 +146,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Browser_.H,v 1.6.2.1 2000/04/25 22:15:44 mike Exp $". // End of "$Id: Fl_Browser_.H,v 1.6.2.2 2000/06/05 21:20:20 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Button.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $" // "$Id: Fl_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $"
// //
// Button header file for the Fast Light Tool Kit (FLTK). // Button header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Button_H #ifndef Fl_Button_H
@@ -71,5 +71,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Button.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $". // End of "$Id: Fl_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Chart.H,v 1.6.2.1 2000/04/25 22:15:45 mike Exp $" // "$Id: Fl_Chart.H,v 1.6.2.2 2000/06/05 21:20:20 mike Exp $"
// //
// Forms chart header file for the Fast Light Tool Kit (FLTK). // Forms chart header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Chart_H #ifndef Fl_Chart_H
@@ -84,5 +84,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Chart.H,v 1.6.2.1 2000/04/25 22:15:45 mike Exp $". // End of "$Id: Fl_Chart.H,v 1.6.2.2 2000/06/05 21:20:20 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Check_Button.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $" // "$Id: Fl_Check_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $"
// //
// Check button header file for the Fast Light Tool Kit (FLTK). // Check button header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Check_Button_H #ifndef Fl_Check_Button_H
@@ -36,5 +36,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Check_Button.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $". // End of "$Id: Fl_Check_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Choice.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $" // "$Id: Fl_Choice.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $"
// //
// Choice header file for the Fast Light Tool Kit (FLTK). // Choice header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Choice_H #ifndef Fl_Choice_H
@@ -41,5 +41,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Choice.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $". // End of "$Id: Fl_Choice.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Clock.H,v 1.6.2.1 2000/04/25 22:15:46 mike Exp $" // "$Id: Fl_Clock.H,v 1.6.2.2 2000/06/05 21:20:21 mike Exp $"
// //
// Clock header file for the Fast Light Tool Kit (FLTK). // Clock header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Clock_H #ifndef Fl_Clock_H
@@ -69,5 +69,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Clock.H,v 1.6.2.1 2000/04/25 22:15:46 mike Exp $". // End of "$Id: Fl_Clock.H,v 1.6.2.2 2000/06/05 21:20:21 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Color_Chooser.H,v 1.5.2.1 2000/04/25 22:15:46 mike Exp $" // "$Id: Fl_Color_Chooser.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $"
// //
// Color chooser header file for the Fast Light Tool Kit (FLTK). // Color chooser header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// The color chooser object and the color chooser popup. The popup // The color chooser object and the color chooser popup. The popup
@@ -94,5 +94,5 @@ FL_EXPORT int fl_color_chooser(const char* name, uchar& r, uchar& g, uchar& b);
#endif #endif
// //
// End of "$Id: Fl_Color_Chooser.H,v 1.5.2.1 2000/04/25 22:15:46 mike Exp $". // End of "$Id: Fl_Color_Chooser.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Counter.H,v 1.5.2.1 2000/04/25 22:15:46 mike Exp $" // "$Id: Fl_Counter.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $"
// //
// Counter header file for the Fast Light Tool Kit (FLTK). // Counter header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// A numerical value with up/down step buttons. From Forms. // A numerical value with up/down step buttons. From Forms.
@@ -69,5 +69,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Counter.H,v 1.5.2.1 2000/04/25 22:15:46 mike Exp $". // End of "$Id: Fl_Counter.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Dial.H,v 1.7.2.1 2000/04/25 22:15:46 mike Exp $" // "$Id: Fl_Dial.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $"
// //
// Dial header file for the Fast Light Tool Kit (FLTK). // Dial header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Dial_H #ifndef Fl_Dial_H
@@ -61,5 +61,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Dial.H,v 1.7.2.1 2000/04/25 22:15:46 mike Exp $". // End of "$Id: Fl_Dial.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Double_Window.H,v 1.7.2.1 2000/04/25 22:15:46 mike Exp $" // "$Id: Fl_Double_Window.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $"
// //
// Double-buffered window header file for the Fast Light Tool Kit (FLTK). // Double-buffered window header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Double_Window_H #ifndef Fl_Double_Window_H
@@ -46,5 +46,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Double_Window.H,v 1.7.2.1 2000/04/25 22:15:46 mike Exp $". // End of "$Id: Fl_Double_Window.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Fill_Dial.H,v 1.4.2.1 2000/04/25 22:15:46 mike Exp $" // "$Id: Fl_Fill_Dial.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $"
// //
// Filled dial header file for the Fast Light Tool Kit (FLTK). // Filled dial header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Fill_Dial_H #ifndef Fl_Fill_Dial_H
@@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Fill_Dial.H,v 1.4.2.1 2000/04/25 22:15:46 mike Exp $". // End of "$Id: Fl_Fill_Dial.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Fill_Slider.H,v 1.4.2.1 2000/04/25 22:15:47 mike Exp $" // "$Id: Fl_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $"
// //
// Filled slider header file for the Fast Light Tool Kit (FLTK). // Filled slider header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Fill_Slider_H #ifndef Fl_Fill_Slider_H
@@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Fill_Slider.H,v 1.4.2.1 2000/04/25 22:15:47 mike Exp $". // End of "$Id: Fl_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Float_Input.H,v 1.4.2.1 2000/04/25 22:15:47 mike Exp $" // "$Id: Fl_Float_Input.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $"
// //
// Floating point input header file for the Fast Light Tool Kit (FLTK). // Floating point input header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Float_Input_H #ifndef Fl_Float_Input_H
@@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Float_Input.H,v 1.4.2.1 2000/04/25 22:15:47 mike Exp $". // End of "$Id: Fl_Float_Input.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_FormsBitmap.H,v 1.5.2.1 2000/04/25 22:15:47 mike Exp $" // "$Id: Fl_FormsBitmap.H,v 1.5.2.2 2000/06/05 21:20:22 mike Exp $"
// //
// Forms bitmap header file for the Fast Light Tool Kit (FLTK). // Forms bitmap header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_FormsBitmap_H #ifndef Fl_FormsBitmap_H
@@ -42,5 +42,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_FormsBitmap.H,v 1.5.2.1 2000/04/25 22:15:47 mike Exp $". // End of "$Id: Fl_FormsBitmap.H,v 1.5.2.2 2000/06/05 21:20:22 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_FormsPixmap.H,v 1.5.2.1 2000/04/25 22:15:47 mike Exp $" // "$Id: Fl_FormsPixmap.H,v 1.5.2.2 2000/06/05 21:20:23 mike Exp $"
// //
// Forms pixmap header file for the Fast Light Tool Kit (FLTK). // Forms pixmap header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_FormsPixmap_H #ifndef Fl_FormsPixmap_H
@@ -42,5 +42,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_FormsPixmap.H,v 1.5.2.1 2000/04/25 22:15:47 mike Exp $". // End of "$Id: Fl_FormsPixmap.H,v 1.5.2.2 2000/06/05 21:20:23 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Free.H,v 1.5.2.1 2000/04/25 22:15:47 mike Exp $" // "$Id: Fl_Free.H,v 1.5.2.2 2000/06/05 21:20:23 mike Exp $"
// //
// Forms free header file for the Fast Light Tool Kit (FLTK). // Forms free header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Free_H #ifndef Fl_Free_H
@@ -59,5 +59,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Free.H,v 1.5.2.1 2000/04/25 22:15:47 mike Exp $". // End of "$Id: Fl_Free.H,v 1.5.2.2 2000/06/05 21:20:23 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Gl_Window.H,v 1.7.2.1 2000/04/25 22:15:48 mike Exp $" // "$Id: Fl_Gl_Window.H,v 1.7.2.2 2000/06/05 21:20:23 mike Exp $"
// //
// OpenGL header file for the Fast Light Tool Kit (FLTK). // OpenGL header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Gl_Window_H #ifndef Fl_Gl_Window_H
#define Fl_Gl_Window_H #define Fl_Gl_Window_H
@@ -84,5 +84,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Gl_Window.H,v 1.7.2.1 2000/04/25 22:15:48 mike Exp $". // End of "$Id: Fl_Gl_Window.H,v 1.7.2.2 2000/06/05 21:20:23 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Group.H,v 1.6.2.1 2000/04/25 22:15:48 mike Exp $" // "$Id: Fl_Group.H,v 1.6.2.2 2000/06/05 21:20:23 mike Exp $"
// //
// Group header file for the Fast Light Tool Kit (FLTK). // Group header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Group_H #ifndef Fl_Group_H
@@ -96,5 +96,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Group.H,v 1.6.2.1 2000/04/25 22:15:48 mike Exp $". // End of "$Id: Fl_Group.H,v 1.6.2.2 2000/06/05 21:20:23 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Hold_Browser.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $" // "$Id: Fl_Hold_Browser.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $"
// //
// Hold browser header file for the Fast Light Tool Kit (FLTK). // Hold browser header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Hold_Browser_H #ifndef Fl_Hold_Browser_H
@@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Hold_Browser.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $". // End of "$Id: Fl_Hold_Browser.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $" // "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $"
// //
// Horizontal fill slider header file for the Fast Light Tool Kit (FLTK). // Horizontal fill slider header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Hor_Fill_Slider_H #ifndef Fl_Hor_Fill_Slider_H
#define Fl_Hor_Fill_Slider_H #define Fl_Hor_Fill_Slider_H
@@ -36,5 +36,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $". // End of "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $" // "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $"
// //
// Horizontal "nice" slider header file for the Fast Light Tool Kit (FLTK). // Horizontal "nice" slider header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Hor_Nice_Slider_H #ifndef Fl_Hor_Nice_Slider_H
@@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $". // End of "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Hor_Slider.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $" // "$Id: Fl_Hor_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $"
// //
// Horizontal slider header file for the Fast Light Tool Kit (FLTK). // Horizontal slider header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Hor_Slider_H #ifndef Fl_Hor_Slider_H
@@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Hor_Slider.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $". // End of "$Id: Fl_Hor_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $" // "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $"
// //
// Horizontal value slider header file for the Fast Light Tool Kit (FLTK). // Horizontal value slider header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Hor_Value_Slider_H #ifndef Fl_Hor_Value_Slider_H
@@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.1 2000/04/25 22:15:48 mike Exp $". // End of "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Image.H,v 1.5.2.1 2000/04/25 22:15:49 mike Exp $" // "$Id: Fl_Image.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $"
// //
// Image header file for the Fast Light Tool Kit (FLTK). // Image header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Image_H #ifndef Fl_Image_H
@@ -45,5 +45,5 @@ struct Fl_Image {
#endif #endif
// //
// End of "$Id: Fl_Image.H,v 1.5.2.1 2000/04/25 22:15:49 mike Exp $". // End of "$Id: Fl_Image.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Input.H,v 1.5.2.1 2000/04/25 22:15:49 mike Exp $" // "$Id: Fl_Input.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $"
// //
// Input header file for the Fast Light Tool Kit (FLTK). // Input header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Input_H #ifndef Fl_Input_H
@@ -42,5 +42,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Input.H,v 1.5.2.1 2000/04/25 22:15:49 mike Exp $". // End of "$Id: Fl_Input.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Input_.H,v 1.6.2.1 2000/04/25 22:15:49 mike Exp $" // "$Id: Fl_Input_.H,v 1.6.2.2 2000/06/05 21:20:24 mike Exp $"
// //
// Input base class header file for the Fast Light Tool Kit (FLTK). // Input base class header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Input__H #ifndef Fl_Input__H
@@ -120,5 +120,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Input_.H,v 1.6.2.1 2000/04/25 22:15:49 mike Exp $". // End of "$Id: Fl_Input_.H,v 1.6.2.2 2000/06/05 21:20:24 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Int_Input.H,v 1.4.2.1 2000/04/25 22:15:49 mike Exp $" // "$Id: Fl_Int_Input.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $"
// //
// Integer input header file for the Fast Light Tool Kit (FLTK). // Integer input header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Int_Input_H #ifndef Fl_Int_Input_H
@@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Int_Input.H,v 1.4.2.1 2000/04/25 22:15:49 mike Exp $". // End of "$Id: Fl_Int_Input.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Light_Button.H,v 1.5.2.1 2000/04/25 22:15:49 mike Exp $" // "$Id: Fl_Light_Button.H,v 1.5.2.2 2000/06/05 21:20:25 mike Exp $"
// //
// Lighted button header file for the Fast Light Tool Kit (FLTK). // Lighted button header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Light_Button_H #ifndef Fl_Light_Button_H
@@ -39,5 +39,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Light_Button.H,v 1.5.2.1 2000/04/25 22:15:49 mike Exp $". // End of "$Id: Fl_Light_Button.H,v 1.5.2.2 2000/06/05 21:20:25 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Line_Dial.H,v 1.4.2.1 2000/04/25 22:15:49 mike Exp $" // "$Id: Fl_Line_Dial.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $"
// //
// Line dial header file for the Fast Light Tool Kit (FLTK). // Line dial header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Line_Dial_H #ifndef Fl_Line_Dial_H
@@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Line_Dial.H,v 1.4.2.1 2000/04/25 22:15:49 mike Exp $". // End of "$Id: Fl_Line_Dial.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Menu.H,v 1.4.2.1 2000/04/25 22:15:49 mike Exp $" // "$Id: Fl_Menu.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $"
// //
// Old menu header file for the Fast Light Tool Kit (FLTK). // Old menu header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,12 +20,12 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// this include file is for back compatability only // this include file is for back compatability only
#include "Fl_Menu_Item.H" #include "Fl_Menu_Item.H"
// //
// End of "$Id: Fl_Menu.H,v 1.4.2.1 2000/04/25 22:15:49 mike Exp $". // End of "$Id: Fl_Menu.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Menu_.H,v 1.7.2.2 2000/04/25 22:15:50 mike Exp $" // "$Id: Fl_Menu_.H,v 1.7.2.3 2000/06/05 21:20:25 mike Exp $"
// //
// Menu base class header file for the Fast Light Tool Kit (FLTK). // Menu base class header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Menu__H #ifndef Fl_Menu__H
@@ -93,5 +93,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Menu_.H,v 1.7.2.2 2000/04/25 22:15:50 mike Exp $". // End of "$Id: Fl_Menu_.H,v 1.7.2.3 2000/06/05 21:20:25 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Menu_Bar.H,v 1.5.2.1 2000/04/25 22:15:50 mike Exp $" // "$Id: Fl_Menu_Bar.H,v 1.5.2.2 2000/06/05 21:20:25 mike Exp $"
// //
// Menu bar header file for the Fast Light Tool Kit (FLTK). // Menu bar header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Menu_Bar_H #ifndef Fl_Menu_Bar_H
@@ -40,5 +40,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Menu_Bar.H,v 1.5.2.1 2000/04/25 22:15:50 mike Exp $". // End of "$Id: Fl_Menu_Bar.H,v 1.5.2.2 2000/06/05 21:20:25 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Menu_Button.H,v 1.5.2.1 2000/04/25 22:15:50 mike Exp $" // "$Id: Fl_Menu_Button.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $"
// //
// Menu button header file for the Fast Light Tool Kit (FLTK). // Menu button header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Menu_Button_H #ifndef Fl_Menu_Button_H
@@ -42,5 +42,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Menu_Button.H,v 1.5.2.1 2000/04/25 22:15:50 mike Exp $". // End of "$Id: Fl_Menu_Button.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Menu_Item.H,v 1.5.2.2 2000/04/25 22:15:50 mike Exp $" // "$Id: Fl_Menu_Item.H,v 1.5.2.3 2000/06/05 21:20:26 mike Exp $"
// //
// Menu item header file for the Fast Light Tool Kit (FLTK). // Menu item header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Menu_Item_H #ifndef Fl_Menu_Item_H
@@ -153,5 +153,5 @@ enum { // back-compatability enum:
#endif #endif
// //
// End of "$Id: Fl_Menu_Item.H,v 1.5.2.2 2000/04/25 22:15:50 mike Exp $". // End of "$Id: Fl_Menu_Item.H,v 1.5.2.3 2000/06/05 21:20:26 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Menu_Window.H,v 1.5.2.1 2000/04/25 22:15:50 mike Exp $" // "$Id: Fl_Menu_Window.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $"
// //
// Menu window header file for the Fast Light Tool Kit (FLTK). // Menu window header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Menu_Window_H #ifndef Fl_Menu_Window_H
@@ -48,5 +48,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Menu_Window.H,v 1.5.2.1 2000/04/25 22:15:50 mike Exp $". // End of "$Id: Fl_Menu_Window.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Multi_Browser.H,v 1.4.2.1 2000/04/25 22:15:51 mike Exp $" // "$Id: Fl_Multi_Browser.H,v 1.4.2.2 2000/06/05 21:20:26 mike Exp $"
// //
// Multi browser header file for the Fast Light Tool Kit (FLTK). // Multi browser header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Multi_Browser_H #ifndef Fl_Multi_Browser_H
@@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Multi_Browser.H,v 1.4.2.1 2000/04/25 22:15:51 mike Exp $". // End of "$Id: Fl_Multi_Browser.H,v 1.4.2.2 2000/06/05 21:20:26 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Multi_Label.H,v 1.5.2.1 2000/04/25 22:15:51 mike Exp $" // "$Id: Fl_Multi_Label.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $"
// //
// Multi-label header file for the Fast Light Tool Kit (FLTK). // Multi-label header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Multi_Label_H #ifndef Fl_Multi_Label_H
@@ -41,5 +41,5 @@ struct Fl_Multi_Label {
#endif #endif
// //
// End of "$Id: Fl_Multi_Label.H,v 1.5.2.1 2000/04/25 22:15:51 mike Exp $". // End of "$Id: Fl_Multi_Label.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Multiline_Input.H,v 1.4.2.1 2000/04/25 22:15:51 mike Exp $" // "$Id: Fl_Multiline_Input.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $"
// //
// Multiline input header file for the Fast Light Tool Kit (FLTK). // Multiline input header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Multiline_Input_H #ifndef Fl_Multiline_Input_H
@@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Multiline_Input.H,v 1.4.2.1 2000/04/25 22:15:51 mike Exp $". // End of "$Id: Fl_Multiline_Input.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Multiline_Output.H,v 1.4.2.1 2000/04/25 22:15:51 mike Exp $" // "$Id: Fl_Multiline_Output.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $"
// //
// Multi line output header file for the Fast Light Tool Kit (FLTK). // Multi line output header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Multiline_Output_H #ifndef Fl_Multiline_Output_H
@@ -37,5 +37,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Multiline_Output.H,v 1.4.2.1 2000/04/25 22:15:51 mike Exp $". // End of "$Id: Fl_Multiline_Output.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Nice_Slider.H,v 1.4.2.1 2000/04/25 22:15:52 mike Exp $" // "$Id: Fl_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $"
// //
// "Nice" slider header file for the Fast Light Tool Kit (FLTK). // "Nice" slider header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Nice_Slider_H #ifndef Fl_Nice_Slider_H
#define Fl_Nice_Slider_H #define Fl_Nice_Slider_H
@@ -36,5 +36,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Nice_Slider.H,v 1.4.2.1 2000/04/25 22:15:52 mike Exp $". // End of "$Id: Fl_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Object.H,v 1.4.2.1 2000/04/25 22:15:52 mike Exp $" // "$Id: Fl_Object.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $"
// //
// Old Fl_Object header file for the Fast Light Tool Kit (FLTK). // Old Fl_Object header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
// This file is provided for back compatability only. Please use Fl_Widget // This file is provided for back compatability only. Please use Fl_Widget
@@ -30,5 +30,5 @@
#include "Fl_Widget.H" #include "Fl_Widget.H"
// //
// End of "$Id: Fl_Object.H,v 1.4.2.1 2000/04/25 22:15:52 mike Exp $". // End of "$Id: Fl_Object.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Output.H,v 1.5.2.1 2000/04/25 22:15:52 mike Exp $" // "$Id: Fl_Output.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $"
// //
// Output header file for the Fast Light Tool Kit (FLTK). // Output header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Output_H #ifndef Fl_Output_H
@@ -40,5 +40,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Output.H,v 1.5.2.1 2000/04/25 22:15:52 mike Exp $". // End of "$Id: Fl_Output.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $".
// //
+3 -3
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Overlay_Window.H,v 1.5.2.1 2000/04/25 22:15:52 mike Exp $" // "$Id: Fl_Overlay_Window.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $"
// //
// Overlay window header file for the Fast Light Tool Kit (FLTK). // Overlay window header file for the Fast Light Tool Kit (FLTK).
// //
@@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA. // USA.
// //
// Please report all bugs and problems to "fltk-bugs@easysw.com". // Please report all bugs and problems to "fltk-bugs@fltk.org".
// //
#ifndef Fl_Overlay_Window_H #ifndef Fl_Overlay_Window_H
@@ -50,5 +50,5 @@ public:
#endif #endif
// //
// End of "$Id: Fl_Overlay_Window.H,v 1.5.2.1 2000/04/25 22:15:52 mike Exp $". // End of "$Id: Fl_Overlay_Window.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $".
// //

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