mirror of
https://github.com/fltk/fltk.git
synced 2026-05-26 01:46:58 +08:00
Copyright updates.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4052 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
+81
-81
@@ -1,81 +1,81 @@
|
|||||||
#ifdef HAVE_LIBZ
|
#ifdef HAVE_LIBZ
|
||||||
|
|
||||||
#include <zlib.h>
|
#include <zlib.h>
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
unsigned long compressedSize = 0;
|
unsigned long compressedSize = 0;
|
||||||
unsigned char cd[100];
|
unsigned char cd[100];
|
||||||
const unsigned char ud[100] = "";
|
const unsigned char ud[100] = "";
|
||||||
unsigned long uncompressedSize = 0;
|
unsigned long uncompressedSize = 0;
|
||||||
|
|
||||||
// Call zlib's compress function.
|
// Call zlib's compress function.
|
||||||
if(compress(cd, &compressedSize, ud, uncompressedSize) != Z_OK)
|
if(compress(cd, &compressedSize, ud, uncompressedSize) != Z_OK)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_LIBJPEG
|
#ifdef HAVE_LIBJPEG
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <jpeglib.h>
|
#include <jpeglib.h>
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
struct jpeg_decompress_struct cinfo;
|
struct jpeg_decompress_struct cinfo;
|
||||||
jpeg_create_decompress(&cinfo);
|
jpeg_create_decompress(&cinfo);
|
||||||
jpeg_read_header(&cinfo, TRUE);
|
jpeg_read_header(&cinfo, TRUE);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_LIBPNG
|
#ifdef HAVE_LIBPNG
|
||||||
#include <png.h>
|
#include <png.h>
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
png_structp png_ptr = png_create_read_struct
|
png_structp png_ptr = png_create_read_struct
|
||||||
(PNG_LIBPNG_VER_STRING, (png_voidp)NULL,
|
(PNG_LIBPNG_VER_STRING, (png_voidp)NULL,
|
||||||
NULL, NULL);
|
NULL, NULL);
|
||||||
png_infop info_ptr = png_create_info_struct(png_ptr);
|
png_infop info_ptr = png_create_info_struct(png_ptr);
|
||||||
png_set_sig_bytes(png_ptr, 8);
|
png_set_sig_bytes(png_ptr, 8);
|
||||||
png_read_info(png_ptr, info_ptr);
|
png_read_info(png_ptr, info_ptr);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_PNG_H
|
#ifdef HAVE_PNG_H
|
||||||
#include <png.h>
|
#include <png.h>
|
||||||
int main() { retunr 0;}
|
int main() { retunr 0;}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_PNG_GET_VALID
|
#ifdef HAVE_PNG_GET_VALID
|
||||||
#include <png.h>
|
#include <png.h>
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
png_structp png_ptr = png_create_read_struct
|
png_structp png_ptr = png_create_read_struct
|
||||||
(PNG_LIBPNG_VER_STRING, (png_voidp)NULL,
|
(PNG_LIBPNG_VER_STRING, (png_voidp)NULL,
|
||||||
NULL, NULL);
|
NULL, NULL);
|
||||||
png_infop info_ptr = png_create_info_struct(png_ptr);
|
png_infop info_ptr = png_create_info_struct(png_ptr);
|
||||||
png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS);
|
png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_PNG_SET_TRNS_TO_ALPHA
|
#ifdef HAVE_PNG_SET_TRNS_TO_ALPHA
|
||||||
#include <png.h>
|
#include <png.h>
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
png_structp png_ptr = png_create_read_struct
|
png_structp png_ptr = png_create_read_struct
|
||||||
(PNG_LIBPNG_VER_STRING, (png_voidp)NULL,
|
(PNG_LIBPNG_VER_STRING, (png_voidp)NULL,
|
||||||
NULL, NULL);
|
NULL, NULL);
|
||||||
png_set_tRNS_to_alpha(png_ptr);
|
png_set_tRNS_to_alpha(png_ptr);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -419,5 +419,5 @@ enum Fl_Damage {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Enumerations.H,v 1.18.2.14.2.39 2004/11/29 15:01:43 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -266,5 +266,5 @@ public:
|
|||||||
#endif // !Fl_H
|
#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$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -49,5 +49,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Adjuster.H,v 1.5.2.3.2.5 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -37,5 +37,5 @@ class FL_EXPORT Fl_BMP_Image : public Fl_RGB_Image {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_BMP_Image.H,v 1.1.2.3 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -58,5 +58,5 @@ class FL_EXPORT Fl_Bitmap : public Fl_Image {
|
|||||||
#endif
|
#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$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -45,5 +45,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Box.H,v 1.5.2.4.2.6 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -126,5 +126,5 @@ public:
|
|||||||
#endif
|
#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$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -147,5 +147,5 @@ public:
|
|||||||
#endif
|
#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$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -72,5 +72,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Button.H,v 1.5.2.3.2.6 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -87,5 +87,5 @@ public:
|
|||||||
#endif
|
#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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -91,6 +91,6 @@ class FL_EXPORT Fl_Check_Browser : public Fl_Browser_ {
|
|||||||
#endif // Fl_Check_Browser_H
|
#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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -36,5 +36,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Check_Button.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -42,5 +42,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Choice.H,v 1.5.2.3.2.5 2004/04/29 02:47:09 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -69,5 +69,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Clock.H,v 1.6.2.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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -98,5 +98,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.4.2.5 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -70,5 +70,5 @@ public:
|
|||||||
#endif
|
#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$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -61,5 +61,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Dial.H,v 1.7.2.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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -48,5 +48,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Double_Window.H,v 1.7.2.3.2.6 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
* 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
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Library General Public
|
* modify it under the terms of the GNU Library General Public
|
||||||
@@ -43,5 +43,5 @@
|
|||||||
#endif /* !Fl_Export_H */
|
#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.
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
|
|||||||
+3
-3
@@ -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.
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -109,5 +109,5 @@ class FL_EXPORT Fl_File_Icon //// Icon data
|
|||||||
#endif // !_Fl_Fl_File_Icon_H_
|
#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$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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.
|
// Original version Copyright 1998 by Curtis Edwards.
|
||||||
//
|
//
|
||||||
// This library is free software; you can redistribute it and/or
|
// 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$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -37,5 +37,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Fill_Dial.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -37,5 +37,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Fill_Slider.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -37,5 +37,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Float_Input.H,v 1.4.2.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -42,5 +42,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_FormsBitmap.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -42,5 +42,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_FormsPixmap.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -60,5 +60,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Free.H,v 1.5.2.4.2.5 2004/12/03 03:14:15 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -37,5 +37,5 @@ class FL_EXPORT Fl_GIF_Image : public Fl_Pixmap {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_GIF_Image.H,v 1.1.2.5 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -90,5 +90,5 @@ public:
|
|||||||
#endif
|
#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$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -97,5 +97,5 @@ public:
|
|||||||
#endif
|
#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$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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.
|
// 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.
|
// Image support donated by Matthias Melcher, Copyright 2000.
|
||||||
//
|
//
|
||||||
// This library is free software; you can redistribute it and/or
|
// 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
|
#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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -37,5 +37,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Hold_Browser.H,v 1.4.2.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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -36,5 +36,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -37,5 +37,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -37,5 +37,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Hor_Slider.H,v 1.4.2.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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -37,5 +37,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -106,5 +106,5 @@ class FL_EXPORT Fl_RGB_Image : public Fl_Image {
|
|||||||
#endif // !Fl_Image_H
|
#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$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -42,5 +42,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Input.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -139,5 +139,5 @@ public:
|
|||||||
#endif
|
#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$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -37,5 +37,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Int_Input.H,v 1.4.2.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -37,5 +37,5 @@ class FL_EXPORT Fl_JPEG_Image : public Fl_RGB_Image {
|
|||||||
#endif
|
#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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -39,5 +39,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Light_Button.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -37,5 +37,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Line_Dial.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -27,5 +27,5 @@
|
|||||||
#include "Fl_Menu_Item.H"
|
#include "Fl_Menu_Item.H"
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Menu.H,v 1.4.2.3.2.3 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -96,5 +96,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Menu_.H,v 1.7.2.4.2.11 2004/12/03 02:48:21 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -40,5 +40,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Menu_Bar.H,v 1.5.2.4.2.5 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -42,5 +42,5 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Menu_Button.H,v 1.5.2.3.2.4 2004/04/11 04:38:54 easysw Exp $".
|
// End of "$Id$".
|
||||||
//
|
//
|
||||||
|
|||||||
+3
-3
@@ -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).
|
// 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
|
// This library is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU Library General Public
|
// modify it under the terms of the GNU Library General Public
|
||||||
@@ -161,5 +161,5 @@ enum { // back-compatability enum:
|
|||||||
#endif
|
#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$".
|
||||||
//
|
//
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user