From f832f4af5761169d2b1129174d85bdfeda30506a Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Sun, 30 Jan 2011 08:18:52 +0000 Subject: Reorganized Doxygen docs of Fl::event_is_click() functions. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8333 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Fl.H | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/FL/Fl.H b/FL/Fl.H index 67659528f..c9620a38b 100644 --- a/FL/Fl.H +++ b/FL/Fl.H @@ -541,18 +541,18 @@ public: */ 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 next - 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 next + 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;} /** -- cgit v1.2.3