diff options
Diffstat (limited to 'x.c')
-rw-r--r-- | x.c | 20 |
1 files changed, 14 insertions, 6 deletions
@@ -29,9 +29,10 @@ typedef struct { | |||
29 | } Shortcut; | 29 | } Shortcut; |
30 | 30 | ||
31 | typedef struct { | 31 | typedef 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 | ||
37 | typedef struct { | 38 | typedef struct { |
@@ -56,6 +57,7 @@ static void selpaste(const Arg *); | |||
56 | static void zoom(const Arg *); | 57 | static void zoom(const Arg *); |
57 | static void zoomabs(const Arg *); | 58 | static void zoomabs(const Arg *); |
58 | static void zoomreset(const Arg *); | 59 | static void zoomreset(const Arg *); |
60 | static 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 | ||
317 | void | ||
318 | ttysend(const Arg *arg) | ||
319 | { | ||
320 | ttywrite(arg->s, strlen(arg->s), 1); | ||
321 | } | ||
322 | |||
315 | int | 323 | int |
316 | evcol(XEvent *e) | 324 | evcol(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 | } |