Author: manolo
Date: 2011-01-30 00:18:52 -0800 (Sun, 30 Jan 2011)
New Revision: 8333
Log:
Reorganized Doxygen docs of Fl::event_is_click() functions.

Modified:
   branches/branch-1.3/FL/Fl.H

Modified: branches/branch-1.3/FL/Fl.H
===================================================================
--- branches/branch-1.3/FL/Fl.H 2011-01-30 08:06:06 UTC (rev 8332)
+++ branches/branch-1.3/FL/Fl.H 2011-01-30 08:18:52 UTC (rev 8333)
@@ -541,18 +541,18 @@
   */
   static void event_clicks(int i) {e_clicks = i;}
   /**
-    The first form returns non-zero if the mouse has not moved far enough
-    and not enough time has passed since the last FL_PUSH or 
-    FL_KEYBOARD event for it to be considered a "drag" rather than a
-    "click".  You can test this on FL_DRAG, FL_RELEASE,
-    and FL_MOVE events.  The second form clears the value returned
-    by Fl::event_is_click().  Useful to prevent the <I>next</I>
-    click from being counted as a double-click or to make a popup menu
-    pick an item with a single click.  Don't pass non-zero to this.
+  Returns non-zero if the mouse has not moved far enough
+  and not enough time has passed since the last FL_PUSH or 
+  FL_KEYBOARD event for it to be considered a "drag" rather than a
+  "click".  You can test this on FL_DRAG, FL_RELEASE,
+  and FL_MOVE events.  
   */
   static int event_is_click()  {return e_is_click;}
   /**
-    Only i=0 works! See int event_is_click(). 
+   Clears the value returned by Fl::event_is_click().  
+   Useful to prevent the <I>next</I>
+   click from being counted as a double-click or to make a popup menu
+   pick an item with a single click.  Don't pass non-zero to this. 
   */
   static void event_is_click(int i) {e_is_click = i;}
   /**

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to