Mercurial > emacs
changeset 1319:20862b54b932
Doc fix.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Sat, 03 Oct 1992 01:09:59 +0000 |
parents | 0edeba6fc9fc |
children | c45c4e0cae7d |
files | src/termhooks.h |
diffstat | 1 files changed, 10 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/termhooks.h Sat Oct 03 00:08:23 1992 +0000 +++ b/src/termhooks.h Sat Oct 03 01:09:59 1992 +0000 @@ -165,11 +165,16 @@ The modifiers applied to mouse clicks are rather ornate. The window-system-specific code should store mouse clicks with - up_modifier or down_modifier set; the window-system independent - code turns all up_modifier events into either drag_modifier or - click_modifier. The click_modifier has no written representation - in the names of the symbols used as event heads, but it does appear - in the Qevent_symbol_components property of the event heads. */ + up_modifier or down_modifier set. Having an explicit down modifier + simplifies some of window-system-independent code; without it, the + code would have to recognize down events by checking if the event + is a mouse click lacking the click and drag modifiers. + + The window-system independent code turns all up_modifier events + bits into either drag_modifier or click_modifier events. The + click_modifier has no written representation in the names of the + symbols used as event heads, but it does appear in the + Qevent_symbol_components property of the event heads. */ enum { up_modifier = 1, /* Only used on mouse buttons - always turned into a click or a drag modifier