-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathxkeygrab.c
163 lines (143 loc) · 5.49 KB
/
xkeygrab.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/*
* xkeygrab -- grab keyboard and mouse, writing typed lines to stdout
* Copyright (C) 2008 Neale Pickett <neale@woozle.org>
*
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <unistd.h>
#include <ctype.h>
#include <poll.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/keysym.h>
#include "obj.h"
int
main(int argc, char *argv[])
{
Display *display = NULL;
if (argc != 1) {
(void) fprintf(stderr, "Usage: %s\n", argv[0]);
return 64; /* EX_USAGE */
}
try {
Window root;
char obuf[4096];
int obuflen = 0;
struct pollfd fds[2];
if (!(display = XOpenDisplay(NULL)))
raise("cannot open display");
root = DefaultRootWindow(display);
if (getenv("NOROOT")) {
int screen = DefaultScreen(display);
XSetWindowAttributes wa;
zero(wa);
wa.override_redirect = 1;
wa.background_pixel = BlackPixel(display, screen);
root = XCreateWindow(display, root,
0, 0,
50, 50, 0,
CopyFromParent, CopyFromParent,
CopyFromParent, CWBackPixel, &wa);
XMapWindow(display, root);
}
fds[0].fd = STDOUT_FILENO;
fds[0].events = 0;
fds[1].fd = ConnectionNumber(display);
fds[1].events = POLLIN;
while (1) {
int tograb = 3;
int ret;
if (tograb) {
if ((tograb & 1)
&& (GrabSuccess ==
XGrabKeyboard(display, root, True, GrabModeAsync,
GrabModeAsync, CurrentTime))) {
tograb |= 1;
}
if ((tograb & 2)
&& (GrabSuccess ==
XGrabPointer(display, root, False,
ButtonPressMask | ButtonReleaseMask |
PointerMotionMask, GrabModeAsync,
GrabModeAsync, None, None,
CurrentTime))) {
tograb |= 2;
}
}
ret = poll(fds, 2, (tograb ? 100 : -1));
if (-1 == ret)
break;
if (fds[0].revents & POLLERR) {
break;
}
if (fds[1].revents & POLLIN) {
XEvent event;
do {
(void) XNextEvent(display, &event);
if (KeyPress == event.type) {
char buf[32];
KeySym ksym;
int i;
if (obuflen == sizeof(obuf))
continue;
i = XLookupString(&event.xkey, buf, sizeof(buf),
&ksym, NULL);
switch (ksym) {
case XK_Return:
if (obuflen) {
(void) write(STDOUT_FILENO, obuf,
obuflen);
(void) write(STDOUT_FILENO, "\n", 1);
obuflen = 0;
}
break;
case XK_BackSpace:
if (obuflen)
obuflen -= 1;
break;
default:
if (1 == i) {
switch (buf[0]) {
case '\025':
obuflen = 0;
break;
case ' ' ... '~':
obuf[obuflen++] = buf[0];
break;
}
}
break;
}
if (obuflen == sizeof(obuf)) {
(void) write(STDOUT_FILENO, obuf, obuflen);
obuflen = 0;
}
}
} while (XPending(display));
}
}
}
while (0);
if (display) {
(void) XUngrabKeyboard(display, CurrentTime);
(void) XUngrabPointer(display, CurrentTime);
(void) XCloseDisplay(display);
}
except {
(void) fprintf(stderr, "Error: %s\n", exception);
return 69; /* EX_UNAVAILABLE */
}
return 0;
}