Skip to content

Commit

Permalink
OK, now version 1.0.9
Browse files Browse the repository at this point in the history
Updated email addresses to point to fltk.org domain...

Updated README and CHANGES files accordingly.

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

documentation/Makefile wasn't including makeinclude.

Updated FLUID about window to show version 1.0.9.


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1168 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
michaelrsweet committed Jun 5, 2000
1 parent a6abbc5 commit f87393a
Show file tree
Hide file tree
Showing 313 changed files with 989 additions and 952 deletions.
34 changes: 34 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
CHANGES SINCE FLTK 1.0.8

- EMail changes - [email protected] now officially
[email protected].
- The FLTK DLL project file didn't include fl_compose.cxx
- Dropped the GCC -fno-rtti option since it caused problems
with existing programs.
- Moved the .fl rules back to the test directory.
- Fixed some makefile and spec file problems.
- Fixed hardware overlays. The problem was the new
fl_clipped() code, which tests against the current window
size. The hardware overlay code did not set the current
window when drawing the overlay. I needed hardware overlay
for DD's code, I'm not sure if these fixes are good enough to
enable this in our general release. Hardware overlay still
only works on SGI Irix.
- Some patches to turn off the MSVC++ -Oa (assumme no aliasing)
optimization flag. Suprisingly this only broke a few parts
of fltk, or at least these are the only ones I found.
- Does not unmap child windows when the main window is
iconized. This reduces flashing when the window is
deiconized.
- Fl::key() is set to zero by all events except key down/up.
This will allow you to reliably test if an event or callback
was produced by a keystroke. Fixes the bug posted about
stopping Escape from closing the window.
- User defined cursors on OpenGL windows slowed down NT a
*LOT*. Some attempts to fix this by turning off the cursor
while drawing the window.
- Filename completion in the file chooser works better on NT.
Typing TAB fixes the case of everything you typed to match
the shortest name that can be completed.


CHANGES SINCE FLTK 1.0.7

- Many documentation changes/fixes/improvements.
Expand Down
8 changes: 4 additions & 4 deletions FL/Enumerations.H
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// "$Id: Enumerations.H,v 1.18.2.11 2000/04/25 22:15:43 mike Exp $"
// "$Id: Enumerations.H,v 1.18.2.12 2000/06/05 21:20:18 mike Exp $"
//
// Enumerations for the Fast Light Tool Kit (FLTK).
//
Expand All @@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//

#ifndef Fl_Enumerations_H
Expand Down Expand Up @@ -56,7 +56,7 @@

#define FL_MAJOR_VERSION 1
#define FL_MINOR_VERSION 0
#define FL_PATCH_VERSION 8
#define FL_PATCH_VERSION 9
#define FL_VERSION ((double)FL_MAJOR_VERSION + \
(double)FL_MINOR_VERSION * 0.01 + \
(double)FL_PATCH_VERSION * 0.0001)
Expand Down Expand Up @@ -371,5 +371,5 @@ enum Fl_Damage {
#endif

//
// End of "$Id: Enumerations.H,v 1.18.2.11 2000/04/25 22:15:43 mike Exp $".
// End of "$Id: Enumerations.H,v 1.18.2.12 2000/06/05 21:20:18 mike Exp $".
//
6 changes: 3 additions & 3 deletions FL/Fl.H
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// "$Id: Fl.H,v 1.8.2.5 2000/05/13 20:03:14 bill Exp $"
// "$Id: Fl.H,v 1.8.2.6 2000/06/05 21:20:18 mike Exp $"
//
// Main header file for the Fast Light Tool Kit (FLTK).
//
Expand All @@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//

#ifndef Fl_H
Expand Down Expand Up @@ -211,5 +211,5 @@ public:
#endif

//
// End of "$Id: Fl.H,v 1.8.2.5 2000/05/13 20:03:14 bill Exp $".
// End of "$Id: Fl.H,v 1.8.2.6 2000/06/05 21:20:18 mike Exp $".
//
6 changes: 3 additions & 3 deletions FL/Fl_Adjuster.H
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// "$Id: Fl_Adjuster.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $"
// "$Id: Fl_Adjuster.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $"
//
// Adjuster widget header file for the Fast Light Tool Kit (FLTK).
//
Expand All @@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//

// 3-button "slider", made for Nuke
Expand Down Expand Up @@ -49,5 +49,5 @@ public:
#endif

//
// End of "$Id: Fl_Adjuster.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $".
// End of "$Id: Fl_Adjuster.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $".
//
6 changes: 3 additions & 3 deletions FL/Fl_Bitmap.H
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// "$Id: Fl_Bitmap.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $"
// "$Id: Fl_Bitmap.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $"
//
// Bitmap header file for the Fast Light Tool Kit (FLTK).
//
Expand All @@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//

#ifndef Fl_Bitmap_H
Expand All @@ -47,5 +47,5 @@ struct Fl_Bitmap {
#endif

//
// End of "$Id: Fl_Bitmap.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $".
// End of "$Id: Fl_Bitmap.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $".
//
6 changes: 3 additions & 3 deletions FL/Fl_Box.H
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// "$Id: Fl_Box.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $"
// "$Id: Fl_Box.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $"
//
// Box header file for the Fast Light Tool Kit (FLTK).
//
Expand All @@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//

#ifndef Fl_Box_H
Expand All @@ -42,5 +42,5 @@ public:
#endif

//
// End of "$Id: Fl_Box.H,v 1.5.2.1 2000/04/25 22:15:44 mike Exp $".
// End of "$Id: Fl_Box.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $".
//
6 changes: 3 additions & 3 deletions FL/Fl_Browser.H
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// "$Id: Fl_Browser.H,v 1.8.2.4 2000/04/25 22:15:44 mike Exp $"
// "$Id: Fl_Browser.H,v 1.8.2.5 2000/06/05 21:20:20 mike Exp $"
//
// Browser header file for the Fast Light Tool Kit (FLTK).
//
Expand All @@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//

// Forms-compatable browser. Probably useful for other
Expand Down Expand Up @@ -118,5 +118,5 @@ public:
#endif

//
// End of "$Id: Fl_Browser.H,v 1.8.2.4 2000/04/25 22:15:44 mike Exp $".
// End of "$Id: Fl_Browser.H,v 1.8.2.5 2000/06/05 21:20:20 mike Exp $".
//
6 changes: 3 additions & 3 deletions FL/Fl_Browser_.H
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// "$Id: Fl_Browser_.H,v 1.6.2.1 2000/04/25 22:15:44 mike Exp $"
// "$Id: Fl_Browser_.H,v 1.6.2.2 2000/06/05 21:20:20 mike Exp $"
//
// Common browser header file for the Fast Light Tool Kit (FLTK).
//
Expand All @@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//

// This is the base class for browsers. To be useful it must
Expand Down Expand Up @@ -146,5 +146,5 @@ public:
#endif

//
// End of "$Id: Fl_Browser_.H,v 1.6.2.1 2000/04/25 22:15:44 mike Exp $".
// End of "$Id: Fl_Browser_.H,v 1.6.2.2 2000/06/05 21:20:20 mike Exp $".
//
6 changes: 3 additions & 3 deletions FL/Fl_Button.H
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// "$Id: Fl_Button.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $"
// "$Id: Fl_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $"
//
// Button header file for the Fast Light Tool Kit (FLTK).
//
Expand All @@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//

#ifndef Fl_Button_H
Expand Down Expand Up @@ -71,5 +71,5 @@ public:
#endif

//
// End of "$Id: Fl_Button.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $".
// End of "$Id: Fl_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $".
//
6 changes: 3 additions & 3 deletions FL/Fl_Chart.H
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// "$Id: Fl_Chart.H,v 1.6.2.1 2000/04/25 22:15:45 mike Exp $"
// "$Id: Fl_Chart.H,v 1.6.2.2 2000/06/05 21:20:20 mike Exp $"
//
// Forms chart header file for the Fast Light Tool Kit (FLTK).
//
Expand All @@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//

#ifndef Fl_Chart_H
Expand Down Expand Up @@ -84,5 +84,5 @@ public:
#endif

//
// End of "$Id: Fl_Chart.H,v 1.6.2.1 2000/04/25 22:15:45 mike Exp $".
// End of "$Id: Fl_Chart.H,v 1.6.2.2 2000/06/05 21:20:20 mike Exp $".
//
6 changes: 3 additions & 3 deletions FL/Fl_Check_Button.H
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// "$Id: Fl_Check_Button.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $"
// "$Id: Fl_Check_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $"
//
// Check button header file for the Fast Light Tool Kit (FLTK).
//
Expand All @@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//

#ifndef Fl_Check_Button_H
Expand All @@ -36,5 +36,5 @@ public:
#endif

//
// End of "$Id: Fl_Check_Button.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $".
// End of "$Id: Fl_Check_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $".
//
6 changes: 3 additions & 3 deletions FL/Fl_Choice.H
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// "$Id: Fl_Choice.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $"
// "$Id: Fl_Choice.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $"
//
// Choice header file for the Fast Light Tool Kit (FLTK).
//
Expand All @@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//

#ifndef Fl_Choice_H
Expand All @@ -41,5 +41,5 @@ public:
#endif

//
// End of "$Id: Fl_Choice.H,v 1.5.2.1 2000/04/25 22:15:45 mike Exp $".
// End of "$Id: Fl_Choice.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $".
//
6 changes: 3 additions & 3 deletions FL/Fl_Clock.H
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// "$Id: Fl_Clock.H,v 1.6.2.1 2000/04/25 22:15:46 mike Exp $"
// "$Id: Fl_Clock.H,v 1.6.2.2 2000/06/05 21:20:21 mike Exp $"
//
// Clock header file for the Fast Light Tool Kit (FLTK).
//
Expand All @@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//

#ifndef Fl_Clock_H
Expand Down Expand Up @@ -69,5 +69,5 @@ public:
#endif

//
// End of "$Id: Fl_Clock.H,v 1.6.2.1 2000/04/25 22:15:46 mike Exp $".
// End of "$Id: Fl_Clock.H,v 1.6.2.2 2000/06/05 21:20:21 mike Exp $".
//
6 changes: 3 additions & 3 deletions FL/Fl_Color_Chooser.H
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// "$Id: Fl_Color_Chooser.H,v 1.5.2.1 2000/04/25 22:15:46 mike Exp $"
// "$Id: Fl_Color_Chooser.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $"
//
// Color chooser header file for the Fast Light Tool Kit (FLTK).
//
Expand All @@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//

// The color chooser object and the color chooser popup. The popup
Expand Down Expand Up @@ -94,5 +94,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.1 2000/04/25 22:15:46 mike Exp $".
// End of "$Id: Fl_Color_Chooser.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $".
//
6 changes: 3 additions & 3 deletions FL/Fl_Counter.H
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// "$Id: Fl_Counter.H,v 1.5.2.1 2000/04/25 22:15:46 mike Exp $"
// "$Id: Fl_Counter.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $"
//
// Counter header file for the Fast Light Tool Kit (FLTK).
//
Expand All @@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//

// A numerical value with up/down step buttons. From Forms.
Expand Down Expand Up @@ -69,5 +69,5 @@ public:
#endif

//
// End of "$Id: Fl_Counter.H,v 1.5.2.1 2000/04/25 22:15:46 mike Exp $".
// End of "$Id: Fl_Counter.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $".
//
6 changes: 3 additions & 3 deletions FL/Fl_Dial.H
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// "$Id: Fl_Dial.H,v 1.7.2.1 2000/04/25 22:15:46 mike Exp $"
// "$Id: Fl_Dial.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $"
//
// Dial header file for the Fast Light Tool Kit (FLTK).
//
Expand All @@ -20,7 +20,7 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@easysw.com".
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//

#ifndef Fl_Dial_H
Expand Down Expand Up @@ -61,5 +61,5 @@ public:
#endif

//
// End of "$Id: Fl_Dial.H,v 1.7.2.1 2000/04/25 22:15:46 mike Exp $".
// End of "$Id: Fl_Dial.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $".
//
Loading

0 comments on commit f87393a

Please sign in to comment.