summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2011-01-30 08:18:52 +0000
committerManolo Gouy <Manolo>2011-01-30 08:18:52 +0000
commitf832f4af5761169d2b1129174d85bdfeda30506a (patch)
tree9357071d928cbc0300fd00533cfb2701d5f9a7ba
parentd51f3b0898c9b19d47cc29eb2a178068276a23df (diff)
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
-rw-r--r--FL/Fl.H18
1 files 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 <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;}
/**