? exports
? scale_tabfolders.diff
? search.sed
? status
? gl/exports
Index: ChangeLog
===================================================================
RCS file: /cvsroot/xforms/xforms/ChangeLog,v
retrieving revision 1.10
diff -u -p -r1.10 ChangeLog
--- ChangeLog	9 Apr 2003 16:13:06 -0000	1.10
+++ ChangeLog	9 Apr 2003 21:45:39 -0000
@@ -1,5 +1,21 @@
 2003-04-09  Angus Leeming  <angus.leeming@btopenworld.com>
 
+	* lib/include/Basic.h: add FL_RESIZED to the FL_EVENTS enum.
+	* lib/include/AAA.h: up FL_FIXLEVEL to 2 to reflect this.
+
+	* lib/forms.h:
+	* lib/include/forms.h: regenerated.
+
+	* lib/version.c (version): update to reflect changed FL_FIXLEVEL.
+
+	* lib/forms.c (scale_form): pass event FL_RESIZED to the object handler
+	if the object size is changed.
+
+	* lib/tabfolder.c (handle): handle the FL_RESIZED event to ensure
+	that the currently active folder is resized.
+
+2003-04-09  Angus Leeming  <angus.leeming@btopenworld.com>
+
 	* demos/.cvsignore:
 	* snp/.cvsignore: Ignore Makefile*
 
Index: lib/forms.c
===================================================================
RCS file: /cvsroot/xforms/xforms/lib/forms.c,v
retrieving revision 1.2
diff -u -p -r1.2 forms.c
--- lib/forms.c	9 Apr 2003 15:55:09 -0000	1.2
+++ lib/forms.c	9 Apr 2003 21:45:41 -0000
@@ -256,6 +256,9 @@ scale_form(FL_FORM * form, double xsc, d
     /* need to handle different resizing request */
     for (obj = form->first; obj; obj = obj->next)
     {
+	int const oldw = obj->w;
+	int const oldh = obj->h;
+
 	/* calculate various positions before scaling */
 	fromleft2 = obj->x + obj->w;
 
@@ -360,6 +363,9 @@ scale_form(FL_FORM * form, double xsc, d
 	    obj->w = neww - fromright2 - obj->x;
 	    obj->h = newh - frombott2 - obj->y;
 	    break;
+	}
+	if (obj->w != oldw || obj->h != oldh) {
+	    fl_handle_object_direct(obj, FL_RESIZED, 0, 0, 0, 0);
 	}
     }
 
Index: lib/forms.h
===================================================================
RCS file: /cvsroot/xforms/xforms/lib/forms.h,v
retrieving revision 1.3
diff -u -p -r1.3 forms.h
--- lib/forms.h	9 Apr 2003 15:55:09 -0000	1.3
+++ lib/forms.h	9 Apr 2003 21:45:46 -0000
@@ -20,8 +20,8 @@
  */
 
 /*
- *  forms.h   $Revision: 1.3 $ $State: Exp $
- *            $Date: 2003/04/09 15:55:09 $ $Author: leeming $
+ *  forms.h   $Revision: 1.2 $ $State: Exp $
+ *            $Date: 2003/04/09 09:22:41 $ $Author: leeming $
  *
  *. All XForms files as distributed in this package are
  *  Copyright(c) 1996-2002 by T.C. Zhao and Mark Overmars,
@@ -55,7 +55,7 @@
 
 #define FL_VERSION             1
 #define FL_REVISION            0
-#define FL_FIXLEVEL            1
+#define FL_FIXLEVEL            2
 #define FL_INCLUDE_VERSION    (FL_VERSION * 1000 + FL_REVISION)
 
 #include <stdio.h>
@@ -84,7 +84,7 @@ extern "C"
 #endif				/* FL_WIN32 */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: Basic.h,v 1.2 2003/04/09 15:55:09 leeming Exp $
  *
  *  Basic definitions and limits.
  *  Window system independent prototypes
@@ -406,10 +406,14 @@ typedef enum
     FL_ATTRIB,			/* attribute change        */
     FL_KEYRELEASE,
     FL_PS,			/* dump a form into EPS    */
-    FL_MOVEORIGIN		/* dragging the form across the screen
+    FL_MOVEORIGIN,		/* dragging the form across the screen
 				   changes its absolute x,y coords. Objects
 				   that themselves contain forms should
 				   ensure that they are up to date. */
+    FL_RESIZED			/* The object has been resized by scale_form
+				   Tell it that this has happened so that
+				   it can resize any FL_FORMs that it
+				   contains. */
 }
 FL_EVENTS;
 
@@ -1754,7 +1758,7 @@ typedef const char *(*FL_VAL_FILTER) (FL
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: XBasic.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  *  X Window dependent stuff
  *
@@ -2807,7 +2811,7 @@ typedef struct
 #endif 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: bitmap.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  *   Object Class: Bitmap
  */
@@ -2963,7 +2967,7 @@ FL_EXPORT Pixmap fl_create_from_pixmapda
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: box.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_BOX_H
@@ -2996,7 +3000,7 @@ FL_EXPORT FL_OBJECT *fl_add_box(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: browser.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  *  Object class Browser
  */
@@ -3238,7 +3242,7 @@ FL_EXPORT FL_BROWSER_SCROLL_CALLBACK fl_
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: button.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  * All Buttons: regular button, light button and round button
  *
@@ -3609,7 +3613,7 @@ FL_EXPORT void fl_add_button_class(
 #endif 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: canvas.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  * Header for FL_CANVAS
  *
@@ -3768,7 +3772,7 @@ FL_EXPORT void fl_canvas_yield_to_shortc
 /****FL_CANVAS_H ******/
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: chart.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  * Object Class: Chart
  *
@@ -3896,7 +3900,7 @@ FL_EXPORT void fl_set_chart_baseline(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: choice.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_CHOICE_H
@@ -4036,7 +4040,7 @@ FL_EXPORT int fl_set_choice_notitle(
 #endif 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: clipbd.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  * prototypes for clipboard stuff
  *
@@ -4073,7 +4077,7 @@ FL_EXPORT int fl_request_clipboard(
 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: clock.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_CLOCK_H
@@ -4133,7 +4137,7 @@ FL_EXPORT void fl_set_clock_ampm(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: counter.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 
@@ -4232,7 +4236,7 @@ FL_EXPORT void fl_set_counter_filter(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: cursor.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  * Cursor defs and prototypes
  *
@@ -4294,7 +4298,7 @@ FL_EXPORT Cursor fl_get_cursor_byname(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: dial.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  */
 #ifndef FL_DIAL_H
 #define FL_DIAL_H
@@ -4399,7 +4403,7 @@ FL_EXPORT void fl_set_dial_direction(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: filesys.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  *  Convenience functions to read a directory
  */
@@ -4490,7 +4494,7 @@ FL_EXPORT char *fl_fix_dirname(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: flps.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  */
 
 #ifndef FLPS_H
@@ -4545,7 +4549,7 @@ FL_EXPORT int fl_object_ps_dump(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: formbrowser.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_FORMBROWSER_H
@@ -4691,7 +4695,7 @@ FL_EXPORT FL_FORM *fl_get_formbrowser_fo
 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: frame.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 
@@ -4760,7 +4764,7 @@ FL_EXPORT FL_OBJECT *fl_add_labelframe(
 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: free.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  *  Object Class: Free
  */
@@ -4803,7 +4807,7 @@ FL_EXPORT FL_OBJECT *fl_add_free(
 #endif /* !def FREE_H } */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: goodies.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  */
 #ifndef FL_GOODIES_H
 #define FL_GOODIES_H		/* { */
@@ -5178,7 +5182,7 @@ FL_EXPORT int fl_goodies_atclose(
 #endif /* } */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: input.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_INPUT_H
@@ -5418,7 +5422,7 @@ FL_EXPORT void fl_set_input_editkeymap(
 #endif /* Input_H  } */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: menu.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_MENU_H
@@ -5554,7 +5558,7 @@ FL_EXPORT int fl_set_menu_entries(
 #endif /* MENU } */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: menubar.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_MENUBAR_H
@@ -5595,7 +5599,7 @@ FL_EXPORT void fl_set_menubar_entries(FL
 #endif /* MENUBAR } */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: popup.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  *  Prototypes for pop-up menus
  */
@@ -5796,7 +5800,7 @@ FL_EXPORT void fl_setpup_submenu(
 #endif /* Xpopup } */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: positioner.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_POSITIONER_H
@@ -5997,7 +6001,7 @@ FL_EXPORT void fl_set_scrollbar_step(
 #endif   /* SCROLLBAR */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: slider.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  * Object Class: Slider
  *
@@ -6147,7 +6151,7 @@ FL_EXPORT void fl_set_slider_filter(
 #endif 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: tabfolder.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_FOLDER_H
@@ -6303,7 +6307,7 @@ FL_EXPORT int fl_set_tabfolder_offset(
 #endif 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: text.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_TEXT_H
@@ -6344,7 +6348,7 @@ FL_EXPORT FL_OBJECT *fl_add_text(
 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: thumbwheel.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  */
 
 #ifndef FL_THUMBWHEEL_H
@@ -6430,7 +6434,7 @@ FL_EXPORT FL_OBJECT *fl_add_thumbwheel(
 #endif    /* THUMBWHEEL_H */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: timer.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  *  Object Class: Timer
  *
@@ -6516,7 +6520,7 @@ FL_EXPORT void fl_resume_timer(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: xyplot.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_XYPLOT_H_
Index: lib/tabfolder.c
===================================================================
RCS file: /cvsroot/xforms/xforms/lib/tabfolder.c,v
retrieving revision 1.2
diff -u -p -r1.2 tabfolder.c
--- lib/tabfolder.c	9 Apr 2003 15:55:09 -0000	1.2
+++ lib/tabfolder.c	9 Apr 2003 21:45:46 -0000
@@ -77,6 +77,16 @@ handle(FL_OBJECT * ob, int event, FL_Coo
 
     switch (event)
     {
+    case FL_RESIZED: {
+	FL_FORM * const folder = fl_get_active_folder(ob);
+	if (folder && sp->auto_fit != FL_NO) {
+	    if (sp->auto_fit == FL_FIT)
+		fl_set_form_size(folder, sp->canvas->w, sp->canvas->h);
+	    else if (folder->w < sp->canvas->w || folder->h < sp->canvas->h)
+		fl_set_form_size(folder, sp->canvas->w, sp->canvas->h);
+	}
+	break;
+    }
     case FL_MOVEORIGIN: {
 	FL_FORM * const folder = fl_get_active_folder(ob);
 	fl_get_winorigin(folder->window, &(folder->x), &(folder->y));
Index: lib/version.c
===================================================================
RCS file: /cvsroot/xforms/xforms/lib/version.c,v
retrieving revision 1.2
diff -u -p -r1.2 version.c
--- lib/version.c	9 Apr 2003 10:36:03 -0000	1.2
+++ lib/version.c	9 Apr 2003 21:45:46 -0000
@@ -42,7 +42,7 @@ char *fl_id_ver = "$Id: version.c,v 1.2 
 static const char *version[] =
 {
     "FORMS Library",
-    "$State: Exp $  $Revision: 1.2 $ of $Date: 2003/04/09 10:36:03 $"
+    "$State: Exp $  $Revision: 1.0.2 $ of $Date: 2003/04/09 10:36:03 $"
     "(Compiled "__DATE__")",
 #ifdef FL_WIN32
     "Copyright (c) 1996-2002 by T.C. Zhao, Gang Li and Mark Overmars",
Index: lib/include/AAA.h
===================================================================
RCS file: /cvsroot/xforms/xforms/lib/include/AAA.h,v
retrieving revision 1.2
diff -u -p -r1.2 AAA.h
--- lib/include/AAA.h	9 Apr 2003 09:22:41 -0000	1.2
+++ lib/include/AAA.h	9 Apr 2003 21:45:46 -0000
@@ -57,7 +57,7 @@
 
 #define FL_VERSION             1
 #define FL_REVISION            0
-#define FL_FIXLEVEL            1
+#define FL_FIXLEVEL            2
 #define FL_INCLUDE_VERSION    (FL_VERSION * 1000 + FL_REVISION)
 
 #include <stdio.h>
Index: lib/include/Basic.h
===================================================================
RCS file: /cvsroot/xforms/xforms/lib/include/Basic.h,v
retrieving revision 1.2
diff -u -p -r1.2 Basic.h
--- lib/include/Basic.h	9 Apr 2003 15:55:09 -0000	1.2
+++ lib/include/Basic.h	9 Apr 2003 21:45:47 -0000
@@ -344,10 +344,14 @@ typedef enum
     FL_ATTRIB,			/* attribute change        */
     FL_KEYRELEASE,
     FL_PS,			/* dump a form into EPS    */
-    FL_MOVEORIGIN		/* dragging the form across the screen
+    FL_MOVEORIGIN,		/* dragging the form across the screen
 				   changes its absolute x,y coords. Objects
 				   that themselves contain forms should
 				   ensure that they are up to date. */
+    FL_RESIZED			/* The object has been resized by scale_form
+				   Tell it that this has happened so that
+				   it can resize any FL_FORMs that it
+				   contains. */
 }
 FL_EVENTS;
 
Index: lib/include/forms.h
===================================================================
RCS file: /cvsroot/xforms/xforms/lib/include/forms.h,v
retrieving revision 1.3
diff -u -p -r1.3 forms.h
--- lib/include/forms.h	9 Apr 2003 15:55:09 -0000	1.3
+++ lib/include/forms.h	9 Apr 2003 21:45:52 -0000
@@ -20,8 +20,8 @@
  */
 
 /*
- *  forms.h   $Revision: 1.3 $ $State: Exp $
- *            $Date: 2003/04/09 15:55:09 $ $Author: leeming $
+ *  forms.h   $Revision: 1.2 $ $State: Exp $
+ *            $Date: 2003/04/09 09:22:41 $ $Author: leeming $
  *
  *. All XForms files as distributed in this package are
  *  Copyright(c) 1996-2002 by T.C. Zhao and Mark Overmars,
@@ -55,7 +55,7 @@
 
 #define FL_VERSION             1
 #define FL_REVISION            0
-#define FL_FIXLEVEL            1
+#define FL_FIXLEVEL            2
 #define FL_INCLUDE_VERSION    (FL_VERSION * 1000 + FL_REVISION)
 
 #include <stdio.h>
@@ -84,7 +84,7 @@ extern "C"
 #endif				/* FL_WIN32 */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: Basic.h,v 1.2 2003/04/09 15:55:09 leeming Exp $
  *
  *  Basic definitions and limits.
  *  Window system independent prototypes
@@ -406,10 +406,14 @@ typedef enum
     FL_ATTRIB,			/* attribute change        */
     FL_KEYRELEASE,
     FL_PS,			/* dump a form into EPS    */
-    FL_MOVEORIGIN		/* dragging the form across the screen
+    FL_MOVEORIGIN,		/* dragging the form across the screen
 				   changes its absolute x,y coords. Objects
 				   that themselves contain forms should
 				   ensure that they are up to date. */
+    FL_RESIZED			/* The object has been resized by scale_form
+				   Tell it that this has happened so that
+				   it can resize any FL_FORMs that it
+				   contains. */
 }
 FL_EVENTS;
 
@@ -1754,7 +1758,7 @@ typedef const char *(*FL_VAL_FILTER) (FL
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: XBasic.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  *  X Window dependent stuff
  *
@@ -2807,7 +2811,7 @@ typedef struct
 #endif 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: bitmap.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  *   Object Class: Bitmap
  */
@@ -2963,7 +2967,7 @@ FL_EXPORT Pixmap fl_create_from_pixmapda
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: box.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_BOX_H
@@ -2996,7 +3000,7 @@ FL_EXPORT FL_OBJECT *fl_add_box(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: browser.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  *  Object class Browser
  */
@@ -3238,7 +3242,7 @@ FL_EXPORT FL_BROWSER_SCROLL_CALLBACK fl_
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: button.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  * All Buttons: regular button, light button and round button
  *
@@ -3609,7 +3613,7 @@ FL_EXPORT void fl_add_button_class(
 #endif 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: canvas.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  * Header for FL_CANVAS
  *
@@ -3768,7 +3772,7 @@ FL_EXPORT void fl_canvas_yield_to_shortc
 /****FL_CANVAS_H ******/
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: chart.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  * Object Class: Chart
  *
@@ -3896,7 +3900,7 @@ FL_EXPORT void fl_set_chart_baseline(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: choice.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_CHOICE_H
@@ -4036,7 +4040,7 @@ FL_EXPORT int fl_set_choice_notitle(
 #endif 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: clipbd.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  * prototypes for clipboard stuff
  *
@@ -4073,7 +4077,7 @@ FL_EXPORT int fl_request_clipboard(
 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: clock.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_CLOCK_H
@@ -4133,7 +4137,7 @@ FL_EXPORT void fl_set_clock_ampm(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: counter.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 
@@ -4232,7 +4236,7 @@ FL_EXPORT void fl_set_counter_filter(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: cursor.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  * Cursor defs and prototypes
  *
@@ -4294,7 +4298,7 @@ FL_EXPORT Cursor fl_get_cursor_byname(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: dial.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  */
 #ifndef FL_DIAL_H
 #define FL_DIAL_H
@@ -4399,7 +4403,7 @@ FL_EXPORT void fl_set_dial_direction(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: filesys.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  *  Convenience functions to read a directory
  */
@@ -4490,7 +4494,7 @@ FL_EXPORT char *fl_fix_dirname(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: flps.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  */
 
 #ifndef FLPS_H
@@ -4545,7 +4549,7 @@ FL_EXPORT int fl_object_ps_dump(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: formbrowser.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_FORMBROWSER_H
@@ -4691,7 +4695,7 @@ FL_EXPORT FL_FORM *fl_get_formbrowser_fo
 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: frame.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 
@@ -4760,7 +4764,7 @@ FL_EXPORT FL_OBJECT *fl_add_labelframe(
 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: free.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  *  Object Class: Free
  */
@@ -4803,7 +4807,7 @@ FL_EXPORT FL_OBJECT *fl_add_free(
 #endif /* !def FREE_H } */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: goodies.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  */
 #ifndef FL_GOODIES_H
 #define FL_GOODIES_H		/* { */
@@ -5178,7 +5182,7 @@ FL_EXPORT int fl_goodies_atclose(
 #endif /* } */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: input.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_INPUT_H
@@ -5418,7 +5422,7 @@ FL_EXPORT void fl_set_input_editkeymap(
 #endif /* Input_H  } */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: menu.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_MENU_H
@@ -5554,7 +5558,7 @@ FL_EXPORT int fl_set_menu_entries(
 #endif /* MENU } */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: menubar.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_MENUBAR_H
@@ -5595,7 +5599,7 @@ FL_EXPORT void fl_set_menubar_entries(FL
 #endif /* MENUBAR } */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: popup.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  *  Prototypes for pop-up menus
  */
@@ -5796,7 +5800,7 @@ FL_EXPORT void fl_setpup_submenu(
 #endif /* Xpopup } */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: positioner.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_POSITIONER_H
@@ -5997,7 +6001,7 @@ FL_EXPORT void fl_set_scrollbar_step(
 #endif   /* SCROLLBAR */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: slider.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  * Object Class: Slider
  *
@@ -6147,7 +6151,7 @@ FL_EXPORT void fl_set_slider_filter(
 #endif 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: tabfolder.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_FOLDER_H
@@ -6303,7 +6307,7 @@ FL_EXPORT int fl_set_tabfolder_offset(
 #endif 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: text.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_TEXT_H
@@ -6344,7 +6348,7 @@ FL_EXPORT FL_OBJECT *fl_add_text(
 
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: thumbwheel.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  */
 
 #ifndef FL_THUMBWHEEL_H
@@ -6430,7 +6434,7 @@ FL_EXPORT FL_OBJECT *fl_add_thumbwheel(
 #endif    /* THUMBWHEEL_H */
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: timer.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  *  Object Class: Timer
  *
@@ -6516,7 +6520,7 @@ FL_EXPORT void fl_resume_timer(
 #endif
 
 /*
- * $Id: forms.h,v 1.3 2003/04/09 15:55:09 leeming Exp $
+ * $Id: xyplot.h,v 1.1 2003/04/06 15:52:40 leeming Exp $
  *
  */
 #ifndef FL_XYPLOT_H_


