aboutsummaryrefslogtreecommitdiff
path: root/input-keys.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2017-02-01 12:01:18 +0000
committerThomas Adam <thomas@xteddy.org>2017-02-01 12:01:18 +0000
commit9b1f620aa017bb3634b3806e959580cde75ec655 (patch)
tree2112ace73236adcc27200cecedf6688eade17f7a /input-keys.c
parent9b9a5a292d656f14c927a36bf77af4a4cf1ecb3a (diff)
parentdd0c8147795c518de443c33895c614e52b42677f (diff)
downloadrtmux-9b1f620aa017bb3634b3806e959580cde75ec655.tar.gz
rtmux-9b1f620aa017bb3634b3806e959580cde75ec655.tar.bz2
rtmux-9b1f620aa017bb3634b3806e959580cde75ec655.zip
Merge branch 'obsd-master'
Diffstat (limited to 'input-keys.c')
-rw-r--r--input-keys.c40
1 files changed, 31 insertions, 9 deletions
diff --git a/input-keys.c b/input-keys.c
index 437ff622..5773d016 100644
--- a/input-keys.c
+++ b/input-keys.c
@@ -234,20 +234,42 @@ input_key(struct window_pane *wp, key_code key, struct mouse_event *m)
static void
input_key_mouse(struct window_pane *wp, struct mouse_event *m)
{
- char buf[40];
- size_t len;
- u_int x, y;
+ struct screen *s = wp->screen;
+ int mode = s->mode;
+ char buf[40];
+ size_t len;
+ u_int x, y;
- if ((wp->screen->mode & ALL_MOUSE_MODES) == 0)
+ if ((mode & ALL_MOUSE_MODES) == 0)
return;
if (!window_pane_visible(wp))
return;
if (cmd_mouse_at(wp, m, &x, &y, 0) != 0)
return;
- /* If this pane is not in button mode, discard motion events. */
- if (!(wp->screen->mode & MODE_MOUSE_BUTTON) && (m->b & MOUSE_MASK_DRAG))
- return;
+ /* If this pane is not in button or all mode, discard motion events. */
+ if (MOUSE_DRAG(m->b) &&
+ (mode & (MODE_MOUSE_BUTTON|MODE_MOUSE_ALL)) == 0)
+ return;
+
+ /*
+ * If this event is a release event and not in all mode, discard it.
+ * In SGR mode we can tell absolutely because a release is normally
+ * shown by the last character. Without SGR, we check if the last
+ * buttons was also a release.
+ */
+ if (m->sgr_type != ' ') {
+ if (MOUSE_DRAG(m->sgr_b) &&
+ MOUSE_BUTTONS(m->sgr_b) == 3 &&
+ (~mode & MODE_MOUSE_ALL))
+ return;
+ } else {
+ if (MOUSE_DRAG(m->b) &&
+ MOUSE_BUTTONS(m->b) == 3 &&
+ MOUSE_BUTTONS(m->lb) == 3 &&
+ (~mode & MODE_MOUSE_ALL))
+ return;
+ }
/*
* Use the SGR (1006) extension only if the application requested it
@@ -258,10 +280,10 @@ input_key_mouse(struct window_pane *wp, struct mouse_event *m)
* UTF-8 (1005) extension if the application requested, or to the
* legacy format.
*/
- if (m->sgr_type != ' ' && (wp->screen->mode & MODE_MOUSE_SGR)) {
+ if (m->sgr_type != ' ' && (s->mode & MODE_MOUSE_SGR)) {
len = xsnprintf(buf, sizeof buf, "\033[<%u;%u;%u%c",
m->sgr_b, x + 1, y + 1, m->sgr_type);
- } else if (wp->screen->mode & MODE_MOUSE_UTF8) {
+ } else if (s->mode & MODE_MOUSE_UTF8) {
if (m->b > 0x7ff - 32 || x > 0x7ff - 33 || y > 0x7ff - 33)
return;
len = xsnprintf(buf, sizeof buf, "\033[M");