aboutsummaryrefslogtreecommitdiff
path: root/x.c
diff options
context:
space:
mode:
authorAvi Halachmi (:avih) <avihpit@yahoo.com>2019-10-10 23:02:26 +0300
committerHiltjo Posthuma <hiltjo@codemadness.org>2019-10-13 21:46:31 +0200
commitba7f4d69af62d20e13fea78a408095e017410651 (patch)
tree332669fc04751b43eae42cf8e074d394203f5f8d /x.c
parent2b8333f553c14c15398e810353e192eb05938580 (diff)
downloadst-ba7f4d69af62d20e13fea78a408095e017410651.tar.gz
st-ba7f4d69af62d20e13fea78a408095e017410651.zip
mouse shortcuts: allow same functions as kb shortcuts
Previously mouse shortcuts supported only ttywrite. This required adding an "Arg" function ttysend - which does what the original mouse shortcuts did.
Diffstat (limited to 'x.c')
-rw-r--r--x.c20
1 files changed, 14 insertions, 6 deletions
diff --git a/x.c b/x.c
index 5828a3b..2a05a81 100644
--- a/x.c
+++ b/x.c
@@ -29,9 +29,10 @@ typedef struct {
29} Shortcut; 29} Shortcut;
30 30
31typedef struct { 31typedef struct {
32 uint b; 32 uint mod;
33 uint mask; 33 uint button;
34 char *s; 34 void (*func)(const Arg *);
35 const Arg arg;
35} MouseShortcut; 36} MouseShortcut;
36 37
37typedef struct { 38typedef struct {
@@ -56,6 +57,7 @@ static void selpaste(const Arg *);
56static void zoom(const Arg *); 57static void zoom(const Arg *);
57static void zoomabs(const Arg *); 58static void zoomabs(const Arg *);
58static void zoomreset(const Arg *); 59static void zoomreset(const Arg *);
60static void ttysend(const Arg *);
59 61
60/* config.h for applying patches and the configuration. */ 62/* config.h for applying patches and the configuration. */
61#include "config.h" 63#include "config.h"
@@ -312,6 +314,12 @@ zoomreset(const Arg *arg)
312 } 314 }
313} 315}
314 316
317void
318ttysend(const Arg *arg)
319{
320 ttywrite(arg->s, strlen(arg->s), 1);
321}
322
315int 323int
316evcol(XEvent *e) 324evcol(XEvent *e)
317{ 325{
@@ -421,9 +429,9 @@ bpress(XEvent *e)
421 } 429 }
422 430
423 for (ms = mshortcuts; ms < mshortcuts + LEN(mshortcuts); ms++) { 431 for (ms = mshortcuts; ms < mshortcuts + LEN(mshortcuts); ms++) {
424 if (e->xbutton.button == ms->b 432 if (e->xbutton.button == ms->button
425 && match(ms->mask, e->xbutton.state)) { 433 && match(ms->mod, e->xbutton.state)) {
426 ttywrite(ms->s, strlen(ms->s), 1); 434 ms->func(&(ms->arg));
427 return; 435 return;
428 } 436 }
429 } 437 }