Author: matt
Date: 2008-02-14 10:36:42 -0800 (Thu, 14 Feb 2008)
New Revision: 6027
Log:
STR 1867: Documentation fix

Modified:
   branches/branch-1.1/CHANGES
   branches/branch-1.1/documentation/events.html

Modified: branches/branch-1.1/CHANGES
===================================================================
--- branches/branch-1.1/CHANGES 2008-02-14 18:17:06 UTC (rev 6026)
+++ branches/branch-1.1/CHANGES 2008-02-14 18:36:42 UTC (rev 6027)
@@ -5,7 +5,7 @@
          STR #1639, STR #1645, STR #1644, STR #1792, STR #1793,
          STR #1742, STR #1777, STR #1794, STR #1827, STR #1843,
          STR #1796, STR #1815, STR #1726, STR #1753, STR #1855,
-         STR #1862))
+         STR #1862, STR #1867)
        - Fixed offset bug in OS X pixmap code (STR #1856)
        - Fixed potential buffer overrun 
          in Fl_Preferences (STR #1853)

Modified: branches/branch-1.1/documentation/events.html
===================================================================
--- branches/branch-1.1/documentation/events.html       2008-02-14 18:17:06 UTC 
(rev 6026)
+++ branches/branch-1.1/documentation/events.html       2008-02-14 18:36:42 UTC 
(rev 6027)
@@ -55,8 +55,8 @@
 href="Fl.html#Fl.event_x"><tt>Fl::event_x()</tt></a> and <a
 href="Fl.html#Fl.event_y"><tt>Fl::event_y()</tt></a>.
 
-<P>To receive <CODE>FL_DRAG</CODE> events you must also respond to the
-<CODE>FL_PUSH</CODE> and <CODE>FL_RELEASE</CODE> events.
+<P>In order to receive <TT>FL_DRAG</TT> events, the widget must
+return non-zero when handling <TT>FL_PUSH</TT>.</P>
 
 <H3>FL_RELEASE</H3>
 
@@ -64,13 +64,19 @@
 button by calling <A
 href="Fl.html#Fl.event_button"><TT>Fl::event_button()</TT></A>.
 
+<P>In order to receive the <TT>FL_RELEASE</TT> event, the widget must
+return non-zero when handling <TT>FL_PUSH</TT>.</P>
+
 <H3>FL_MOVE</H3>
 
 <P>The mouse has moved without any mouse buttons held down. 
 This event is sent to the <A
 href="Fl.html#Fl.belowmouse"><TT>Fl::belowmouse()</TT></A>
-widget.
+widget.</P>
 
+<P>In order to receive <TT>FL_MOVE</TT> events, the widget must
+return non-zero when handling <TT>FL_ENTER</TT>.</P>
+
 <H3>FL_MOUSEWHEEL</H3>
 
 <P>The user has moved the mouse wheel. The <A
@@ -97,6 +103,9 @@
 
 <P>The mouse has moved out of the widget.
 
+<P>In order to receive the <TT>FL_LEAVE</TT> event, the widget must
+return non-zero when handling <TT>FL_ENTER</TT>.</P>
+
 <H3>FL_FOCUS</H3>
 
 <P>This indicates an <I>attempt</I> to give a widget the

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

Reply via email to