mirror of https://github.com/fltk/fltk
Copyright updates.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4052 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
9cca0a6c9a
commit
add37faa25
|
@ -1,81 +1,81 @@
|
|||
#ifdef HAVE_LIBZ
|
||||
|
||||
#include <zlib.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
unsigned long compressedSize = 0;
|
||||
unsigned char cd[100];
|
||||
const unsigned char ud[100] = "";
|
||||
unsigned long uncompressedSize = 0;
|
||||
|
||||
// Call zlib's compress function.
|
||||
if(compress(cd, &compressedSize, ud, uncompressedSize) != Z_OK)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_LIBJPEG
|
||||
|
||||
#include <stdio.h>
|
||||
#include <jpeglib.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
struct jpeg_decompress_struct cinfo;
|
||||
jpeg_create_decompress(&cinfo);
|
||||
jpeg_read_header(&cinfo, TRUE);
|
||||
return 1;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_LIBPNG
|
||||
#include <png.h>
|
||||
int main()
|
||||
{
|
||||
png_structp png_ptr = png_create_read_struct
|
||||
(PNG_LIBPNG_VER_STRING, (png_voidp)NULL,
|
||||
NULL, NULL);
|
||||
png_infop info_ptr = png_create_info_struct(png_ptr);
|
||||
png_set_sig_bytes(png_ptr, 8);
|
||||
png_read_info(png_ptr, info_ptr);
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_PNG_H
|
||||
#include <png.h>
|
||||
int main() { retunr 0;}
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_PNG_GET_VALID
|
||||
#include <png.h>
|
||||
int main()
|
||||
{
|
||||
png_structp png_ptr = png_create_read_struct
|
||||
(PNG_LIBPNG_VER_STRING, (png_voidp)NULL,
|
||||
NULL, NULL);
|
||||
png_infop info_ptr = png_create_info_struct(png_ptr);
|
||||
png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_PNG_SET_TRNS_TO_ALPHA
|
||||
#include <png.h>
|
||||
int main()
|
||||
{
|
||||
png_structp png_ptr = png_create_read_struct
|
||||
(PNG_LIBPNG_VER_STRING, (png_voidp)NULL,
|
||||
NULL, NULL);
|
||||
png_set_tRNS_to_alpha(png_ptr);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
#ifdef HAVE_LIBZ
|
||||
|
||||
#include <zlib.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
unsigned long compressedSize = 0;
|
||||
unsigned char cd[100];
|
||||
const unsigned char ud[100] = "";
|
||||
unsigned long uncompressedSize = 0;
|
||||
|
||||
// Call zlib's compress function.
|
||||
if(compress(cd, &compressedSize, ud, uncompressedSize) != Z_OK)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_LIBJPEG
|
||||
|
||||
#include <stdio.h>
|
||||
#include <jpeglib.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
struct jpeg_decompress_struct cinfo;
|
||||
jpeg_create_decompress(&cinfo);
|
||||
jpeg_read_header(&cinfo, TRUE);
|
||||
return 1;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_LIBPNG
|
||||
#include <png.h>
|
||||
int main()
|
||||
{
|
||||
png_structp png_ptr = png_create_read_struct
|
||||
(PNG_LIBPNG_VER_STRING, (png_voidp)NULL,
|
||||
NULL, NULL);
|
||||
png_infop info_ptr = png_create_info_struct(png_ptr);
|
||||
png_set_sig_bytes(png_ptr, 8);
|
||||
png_read_info(png_ptr, info_ptr);
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_PNG_H
|
||||
#include <png.h>
|
||||
int main() { retunr 0;}
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_PNG_GET_VALID
|
||||
#include <png.h>
|
||||
int main()
|
||||
{
|
||||
png_structp png_ptr = png_create_read_struct
|
||||
(PNG_LIBPNG_VER_STRING, (png_voidp)NULL,
|
||||
NULL, NULL);
|
||||
png_infop info_ptr = png_create_info_struct(png_ptr);
|
||||
png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_PNG_SET_TRNS_TO_ALPHA
|
||||
#include <png.h>
|
||||
int main()
|
||||
{
|
||||
png_structp png_ptr = png_create_read_struct
|
||||
(PNG_LIBPNG_VER_STRING, (png_voidp)NULL,
|
||||
NULL, NULL);
|
||||
png_set_tRNS_to_alpha(png_ptr);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Enumerations.H,v 1.18.2.14.2.39 2004/11/29 15:01:43 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Enumerations for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
|
@ -419,5 +419,5 @@ enum Fl_Damage {
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Enumerations.H,v 1.18.2.14.2.39 2004/11/29 15:01:43 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
6
FL/Fl.H
6
FL/Fl.H
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl.H,v 1.8.2.11.2.24 2004/11/23 19:47:50 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Main header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
|
@ -266,5 +266,5 @@ public:
|
|||
#endif // !Fl_H
|
||||
|
||||
//
|
||||
// End of "$Id: Fl.H,v 1.8.2.11.2.24 2004/11/23 19:47:50 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Adjuster.H,v 1.5.2.3.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Adjuster widget header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_BMP_Image.H,v 1.1.2.3 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// BMP image header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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 @@ class FL_EXPORT Fl_BMP_Image : public Fl_RGB_Image {
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_BMP_Image.H,v 1.1.2.3 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Bitmap.H,v 1.5.2.3.2.12 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Bitmap header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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 @@ class FL_EXPORT Fl_Bitmap : public Fl_Image {
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Bitmap.H,v 1.5.2.3.2.12 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Box.H,v 1.5.2.4.2.6 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Box header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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_Box.H,v 1.5.2.4.2.6 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Browser.H,v 1.8.2.7.2.7 2004/07/26 20:52:50 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Browser header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
|
@ -126,5 +126,5 @@ public:
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Browser.H,v 1.8.2.7.2.7 2004/07/26 20:52:50 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Browser_.H,v 1.6.2.4.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Common browser header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
|
@ -147,5 +147,5 @@ public:
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Browser_.H,v 1.6.2.4.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Button.H,v 1.5.2.3.2.6 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Button header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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_Button.H,v 1.5.2.3.2.6 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Chart.H,v 1.6.2.3.2.7 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Forms chart header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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 @@ public:
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Chart.H,v 1.6.2.3.2.7 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Check_Browser.H,v 1.1.2.7 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Fl_Check_Browser header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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,6 +91,6 @@ class FL_EXPORT Fl_Check_Browser : public Fl_Browser_ {
|
|||
#endif // Fl_Check_Browser_H
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Check_Browser.H,v 1.1.2.7 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Check_Button.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Check button header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Choice.H,v 1.5.2.3.2.5 2004/04/29 02:47:09 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Choice header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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_Choice.H,v 1.5.2.3.2.5 2004/04/29 02:47:09 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Clock.H,v 1.6.2.4.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Clock header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.4.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Color_Chooser.H,v 1.5.2.4.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Color chooser header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
|
@ -98,5 +98,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.4.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Counter.H,v 1.5.2.3.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Counter header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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 @@ public:
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Counter.H,v 1.5.2.3.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Dial.H,v 1.7.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Dial header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Double_Window.H,v 1.7.2.3.2.6 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Double-buffered window header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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_Double_Window.H,v 1.7.2.3.2.6 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* "$Id: Fl_Export.H,v 1.3.2.7 2004/04/11 04:38:54 easysw Exp $"
|
||||
* "$Id$"
|
||||
*
|
||||
* WIN32 DLL export definitions for the Fast Light Tool Kit (FLTK).
|
||||
*
|
||||
* Copyright 1998-2004 by Bill Spitzak and others.
|
||||
* Copyright 1998-2005 by Bill Spitzak 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 @@
|
|||
#endif /* !Fl_Export_H */
|
||||
|
||||
/*
|
||||
* End of "$Id: Fl_Export.H,v 1.3.2.7 2004/04/11 04:38:54 easysw Exp $".
|
||||
* End of "$Id$".
|
||||
*/
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
//
|
||||
// FileBrowser definitions.
|
||||
//
|
||||
// Copyright 1999-2004 by Michael Sweet.
|
||||
// Copyright 1999-2005 by Michael Sweet.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_File_Icon.H,v 1.1.2.10 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Fl_File_Icon definitions.
|
||||
//
|
||||
// Copyright 1999-2004 by Michael Sweet.
|
||||
// Copyright 1999-2005 by Michael Sweet.
|
||||
//
|
||||
// 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 @@ class FL_EXPORT Fl_File_Icon //// Icon data
|
|||
#endif // !_Fl_Fl_File_Icon_H_
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_File_Icon.H,v 1.1.2.10 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_File_Input.H,v 1.1.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// File_Input header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak and others.
|
||||
// Original version Copyright 1998 by Curtis Edwards.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
|
@ -62,5 +62,5 @@ public:
|
|||
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_File_Input.H,v 1.1.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Fill_Dial.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Filled dial header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Fill_Slider.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Filled slider header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Float_Input.H,v 1.4.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Floating point input header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_FormsBitmap.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Forms bitmap header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_FormsPixmap.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Forms pixmap header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Free.H,v 1.5.2.4.2.5 2004/12/03 03:14:15 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Forms free header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.4.2.5 2004/12/03 03:14:15 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_GIF_Image.H,v 1.1.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// GIF image header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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 @@ class FL_EXPORT Fl_GIF_Image : public Fl_Pixmap {
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_GIF_Image.H,v 1.1.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Gl_Window.H,v 1.7.2.5.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// OpenGL header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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 @@ public:
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Gl_Window.H,v 1.7.2.5.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Group.H,v 1.6.2.4.2.9 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Group header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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 @@ public:
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Group.H,v 1.6.2.4.2.9 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Help_View.H,v 1.1.2.14 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Help Viewer widget definitions.
|
||||
//
|
||||
// Copyright 1997-2004 by Easy Software Products.
|
||||
// Copyright 1997-2005 by Easy Software Products.
|
||||
// Image support donated by Matthias Melcher, Copyright 2000.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
|
@ -189,5 +189,5 @@ class FL_EXPORT Fl_Help_View : public Fl_Group //// Help viewer widget
|
|||
#endif // !Fl_Help_View_H
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Help_View.H,v 1.1.2.14 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Hold_Browser.H,v 1.4.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Hold browser header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Horizontal fill slider header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Horizontal "nice" slider header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Hor_Slider.H,v 1.4.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Horizontal slider header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Horizontal value slider header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Image.H,v 1.5.2.3.2.22 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Image header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
|
@ -106,5 +106,5 @@ class FL_EXPORT Fl_RGB_Image : public Fl_Image {
|
|||
#endif // !Fl_Image_H
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Image.H,v 1.5.2.3.2.22 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Input.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Input header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Input_.H,v 1.6.2.4.2.10 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Input base class header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
|
@ -139,5 +139,5 @@ public:
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Input_.H,v 1.6.2.4.2.10 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Int_Input.H,v 1.4.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Integer input header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_JPEG_Image.H,v 1.1.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// JPEG image header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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 @@ class FL_EXPORT Fl_JPEG_Image : public Fl_RGB_Image {
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_JPEG_Image.H,v 1.1.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Light_Button.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Lighted button header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Line_Dial.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Line dial header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Menu.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Old menu header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Menu_.H,v 1.7.2.4.2.11 2004/12/03 02:48:21 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Menu base class header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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_Menu_.H,v 1.7.2.4.2.11 2004/12/03 02:48:21 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Menu_Bar.H,v 1.5.2.4.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Menu bar header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.4.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Menu_Button.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Menu button header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Menu_Item.H,v 1.5.2.4.2.9 2004/06/07 19:22:45 matthiaswm Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Menu item header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
|
@ -161,5 +161,5 @@ enum { // back-compatability enum:
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Menu_Item.H,v 1.5.2.4.2.9 2004/06/07 19:22:45 matthiaswm Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Menu_Window.H,v 1.5.2.3.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Menu window header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Multi_Browser.H,v 1.4.2.3.2.4 2004/09/29 15:05:48 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Multi browser header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/09/29 15:05:48 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Multi_Label.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Multi-label header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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_EXPORT Fl_Multi_Label {
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Multi_Label.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Multiline_Input.H,v 1.4.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Multiline input header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Multiline_Output.H,v 1.4.2.3.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Multi line output header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Nice_Slider.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// "Nice" slider header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Object.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Old Fl_Object header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Output.H,v 1.5.2.3.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Output header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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_Output.H,v 1.5.2.3.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Overlay_Window.H,v 1.5.2.3.2.6 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Overlay window header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.6 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_PNG_Image.H,v 1.1.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// PNG image header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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 @@ class FL_EXPORT Fl_PNG_Image : public Fl_RGB_Image {
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_PNG_Image.H,v 1.1.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_PNM_Image.H,v 1.1.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// PNM image header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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 @@ class FL_EXPORT Fl_PNM_Image : public Fl_RGB_Image {
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_PNM_Image.H,v 1.1.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Pack.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Pack header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Pixmap.H,v 1.6.2.8.2.13 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Pixmap header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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 @@ class FL_EXPORT Fl_Pixmap : public Fl_Image {
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Pixmap.H,v 1.6.2.8.2.13 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Positioner.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Positioner header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Preferences.H,v 1.1.2.14 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Preferences definitions for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 2002-2004 by Matthias Melcher.
|
||||
// Copyright 2002-2005 by Matthias Melcher.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
|
@ -157,5 +157,5 @@ private:
|
|||
#endif // !Fl_Preferences_H
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Preferences.H,v 1.1.2.14 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Progress.H,v 1.1.2.6 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Progress bar widget definitions.
|
||||
//
|
||||
// Copyright 2000-2004 by Michael Sweet.
|
||||
// Copyright 2000-2005 by Michael Sweet.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
|
@ -64,5 +64,5 @@ class FL_EXPORT Fl_Progress : public Fl_Widget
|
|||
#endif // !_Fl_Progress_H_
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Progress.H,v 1.1.2.6 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Radio_Button.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Radio button header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Radio_Light_Button.H,v 1.4.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Radio light button header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Radio_Round_Button.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Radio round button header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Repeat_Button.H,v 1.5.2.5.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Repeat button header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.5.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Return_Button.H,v 1.5.2.3.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Return button header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Roller.H,v 1.5.2.4.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Roller header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.4.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Round_Button.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Round button header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Round_Clock.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Round clock header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Scroll.H,v 1.5.2.3.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Scroll header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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 @@ public:
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Scroll.H,v 1.5.2.3.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Scrollbar.H,v 1.5.2.4.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Scroll bar header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.4.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Secret_Input.H,v 1.4.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Secret input header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Select_Browser.H,v 1.4.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Select browser header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Shared_Image.H,v 1.22.2.10 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Shared image header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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_EXPORT extern void fl_register_images();
|
|||
#endif // !Fl_Shared_Image_H
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Shared_Image.H,v 1.22.2.10 2004/04/11 04:38:54 easysw Exp $"
|
||||
// End of "$Id$"
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Simple_Counter.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Simple counter header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Single_Window.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Single-buffered window header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Slider.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Slider header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Sys_Menu_Bar.H,v 1.1.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// MacOS system menu bar header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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_Sys_Menu_Bar.H,v 1.1.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Tabs.H,v 1.5.2.4.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Tab header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.4.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Text_Buffer.H,v 1.3.2.9 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Header file for Fl_Text_Buffer class.
|
||||
//
|
||||
// Copyright 2001-2004 by Bill Spitzak and others.
|
||||
// Copyright 2001-2005 by Bill Spitzak and others.
|
||||
// Original code Copyright Mark Edel. Permission to distribute under
|
||||
// the LGPL for the FLTK library granted by Mark Edel.
|
||||
//
|
||||
|
@ -253,5 +253,5 @@ class FL_EXPORT Fl_Text_Buffer {
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Text_Buffer.H,v 1.3.2.9 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Text_Display.H,v 1.4.2.15 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Header file for Fl_Text_Display class.
|
||||
//
|
||||
// Copyright 2001-2004 by Bill Spitzak and others.
|
||||
// Copyright 2001-2005 by Bill Spitzak and others.
|
||||
// Original code Copyright Mark Edel. Permission to distribute under
|
||||
// the LGPL for the FLTK library granted by Mark Edel.
|
||||
//
|
||||
|
@ -290,5 +290,5 @@ class FL_EXPORT Fl_Text_Display: public Fl_Group {
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Text_Display.H,v 1.4.2.15 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Text_Editor.H,v 1.1.2.8 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Header file for Fl_Text_Editor class.
|
||||
//
|
||||
// Copyright 2001-2004 by Bill Spitzak and others.
|
||||
// Copyright 2001-2005 by Bill Spitzak and others.
|
||||
// Original code Copyright Mark Edel. Permission to distribute under
|
||||
// the LGPL for the FLTK library granted by Mark Edel.
|
||||
//
|
||||
|
@ -103,6 +103,6 @@ class FL_EXPORT Fl_Text_Editor : public Fl_Text_Display {
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Text_Editor.H,v 1.1.2.8 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Tile.H,v 1.6.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Tile header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Tiled_Image.H,v 1.1.2.6 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Tiled image header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
|
@ -53,5 +53,5 @@ class FL_EXPORT Fl_Tiled_Image : public Fl_Image {
|
|||
#endif // !Fl_Tiled_Image_H
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Tiled_Image.H,v 1.1.2.6 2004/04/11 04:38:54 easysw Exp $"
|
||||
// End of "$Id$"
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Timer.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Timer header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Toggle_Button.H,v 1.4.2.3.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Toggle button header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Toggle_Light_Button.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Toggle light button header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Toggle_Round_Button.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Toggle round button header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Tooltip.H,v 1.16.2.13 2004/09/12 20:26:23 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Tooltip header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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 @@ private:
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Tooltip.H,v 1.16.2.13 2004/09/12 20:26:23 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Valuator.H,v 1.5.2.5.2.4 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Valuator header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.5.2.4 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Value_Input.H,v 1.5.2.3.2.6 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Value input header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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.3.2.6 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Value_Output.H,v 1.5.2.3.2.6 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Value output header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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 @@ public:
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Value_Output.H,v 1.5.2.3.2.6 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Value_Slider.H,v 1.5.2.3.2.5 2004/04/11 04:38:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Value slider header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak 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_Value_Slider.H,v 1.5.2.3.2.5 2004/04/11 04:38:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Widget.H,v 1.6.2.4.2.26 2004/11/23 19:47:50 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Widget header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
|
@ -218,5 +218,5 @@ public:
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Widget.H,v 1.6.2.4.2.26 2004/11/23 19:47:50 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
//
|
||||
// "$Id: Fl_Window.H,v 1.12.2.6.2.10 2004/12/06 03:31:54 easysw Exp $"
|
||||
// "$Id$"
|
||||
//
|
||||
// Window header file for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2004 by Bill Spitzak and others.
|
||||
// Copyright 1998-2005 by Bill Spitzak and others.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
|
@ -124,5 +124,5 @@ public:
|
|||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_Window.H,v 1.12.2.6.2.10 2004/12/06 03:31:54 easysw Exp $".
|
||||
// End of "$Id$".
|
||||
//
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue