-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcairoio-x11.c
492 lines (444 loc) · 11 KB
/
cairoio-x11.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/time.h>
#include <X11/Xlib.h>
#include <X11/keysym.h>
#include <X11/Xatom.h>
#include <ctype.h>
#include <cairo.h>
#include <cairo-xlib.h>
#include "cairoio.h"
/*
* name of the program, as used in the window title
*/
#define HOVACUI "hovacui"
/*
* structure for a window
*/
struct cairoio {
cairo_surface_t *surface;
cairo_t *cr;
unsigned int width;
unsigned int height;
int screenwidth;
int screenheight;
Display *dsp;
Window win;
Drawable dbuf;
int doublebuffering;
};
/*
* events we want to receive
*/
#define EVENTMASK \
(KeyPressMask | ButtonPressMask | PropertyChangeMask | \
ExposureMask | StructureNotifyMask)
/*
* maximal length of pasted text; must be shorter than command->command
*/
#define MAXPASTE 200
/*
* check whether b is a prefix of a
*/
int prefix(char *a, char *b) {
return strncmp(a, b, strlen(b));
}
/*
* extract the last part of a string
*/
char *second(char *a) {
char *p;
p = index(a, '=');
return p == NULL ? p : p + 1;
}
/*
* create a cairo context
*/
int cairoinit_x11(struct cairodevice *cairodevice,
char *device, int doublebuffering,
int argn, char *argv[], char *allopts) {
int opt;
struct cairoio *xhovacui;
char *display;
char *geometry;
char *title;
Screen *scr;
Visual *vis;
int x, y;
char *wintitle;
Atom utf8, name, pid;
int pidn;
display = NULL;
geometry = NULL;
optind = 1;
while (-1 != (opt = getopt(argn, argv, allopts))) {
switch (opt) {
case 'x':
if (! strcmp(optarg, "default"))
continue;
else if (! prefix(optarg, "display="))
display = second(optarg);
else if (! prefix(optarg, "geometry="))
geometry = second(optarg);
else {
printf("unknown -x suboption: %s\n", optarg);
return -1;
}
break;
}
}
title = argv[optind];
if (display != NULL)
device = display;
xhovacui = malloc(sizeof(struct cairoio));
xhovacui->dsp = XOpenDisplay(device);
if (xhovacui->dsp == NULL) {
printf("cannot open display %s\n",
device == NULL ? getenv("DISPLAY") : device);
free(xhovacui);
return -1;
}
scr = DefaultScreenOfDisplay(xhovacui->dsp);
vis = DefaultVisualOfScreen(scr);
x = 200;
y = 200;
xhovacui->width = 600;
xhovacui->height = 400;
if (geometry != NULL)
XParseGeometry(geometry,
&x, &y, &xhovacui->width, &xhovacui->height);
printf("geometry: %dx%d+%d+%d\n",
xhovacui->width, xhovacui->height, x, y);
xhovacui->screenwidth = WidthOfScreen(scr);
xhovacui->screenheight = HeightOfScreen(scr);
xhovacui->win = XCreateSimpleWindow(xhovacui->dsp,
DefaultRootWindow(xhovacui->dsp),
x, y, xhovacui->width, xhovacui->height, 0,
BlackPixelOfScreen(scr), WhitePixelOfScreen(scr));
XSelectInput(xhovacui->dsp, xhovacui->win, EVENTMASK);
xhovacui->doublebuffering = doublebuffering;
xhovacui->dbuf = ! xhovacui->doublebuffering ?
xhovacui->win :
XCreatePixmap(xhovacui->dsp, xhovacui->win,
xhovacui->width, xhovacui->height,
DefaultDepth(xhovacui->dsp, 0));
xhovacui->surface =
cairo_xlib_surface_create(xhovacui->dsp, xhovacui->dbuf, vis,
xhovacui->width, xhovacui->height);
xhovacui->cr = cairo_create(xhovacui->surface);
wintitle = malloc(strlen(HOVACUI ": ") + strlen(title) + 1);
strcpy(wintitle, HOVACUI ": ");
strcat(wintitle, title);
XStoreName(xhovacui->dsp, xhovacui->win, wintitle);
utf8 = XInternAtom(xhovacui->dsp, "UTF8_STRING", False);
name = XInternAtom(xhovacui->dsp, "_NET_WM_NAME", False);
XChangeProperty(xhovacui->dsp, xhovacui->win,
name, utf8, 8, PropModeReplace,
(unsigned char *) wintitle, strlen(wintitle));
pid = XInternAtom(xhovacui->dsp, "_NET_WM_PID", False);
pidn = getpid();
XChangeProperty(xhovacui->dsp, xhovacui->win,
pid, XA_CARDINAL, 32, PropModeReplace,
(unsigned char *) &pidn, 1);
free(wintitle);
XMapWindow(xhovacui->dsp, xhovacui->win);
cairodevice->cairoio = xhovacui;
return 0;
}
/*
* close a cairo context
*/
void cairofinish_x11(struct cairodevice *cairodevice) {
struct cairoio *xhovacui;
xhovacui = cairodevice->cairoio;
if (xhovacui == NULL)
return;
cairo_destroy(xhovacui->cr);
cairo_surface_destroy(xhovacui->surface);
if (xhovacui->doublebuffering)
XFreePixmap(xhovacui->dsp, xhovacui->dbuf);
XDestroyWindow(xhovacui->dsp, xhovacui->win);
XCloseDisplay(xhovacui->dsp);
free(xhovacui);
}
/*
* get the cairo context
*/
cairo_t *cairocontext_x11(struct cairodevice *cairodevice) {
return cairodevice->cairoio->cr;
}
/*
* get the width of the window
*/
double cairowidth_x11(struct cairodevice *cairodevice) {
return cairodevice->cairoio->width;
}
/*
* get the heigth of the window
*/
double cairoheight_x11(struct cairodevice *cairodevice) {
return cairodevice->cairoio->height;
}
/*
* get the width of the screen
*/
double cairoscreenwidth_x11(struct cairodevice *cairodevice) {
return cairodevice->cairoio->screenwidth;
}
/*
* get the heigth of the screen
*/
double cairoscreenheight_x11(struct cairodevice *cairodevice) {
return cairodevice->cairoio->screenheight;
}
/*
* return whether double buffering is used
*/
int cairodoublebuffering_x11(struct cairodevice *cairodevice) {
return cairodevice->cairoio->doublebuffering;
}
/*
* clear
*/
void cairoclear_x11(struct cairodevice *cairodevice) {
struct cairoio *xhovacui;
xhovacui = cairodevice->cairoio;
cairo_identity_matrix(xhovacui->cr);
cairo_set_source_rgb(xhovacui->cr, 1.0, 1.0, 1.0);
cairo_rectangle(xhovacui->cr, 0, 0, xhovacui->width, xhovacui->height);
cairo_fill(xhovacui->cr);
}
/*
* blank
*/
void cairoblank_x11(struct cairodevice *cairodevice) {
struct cairoio *xhovacui;
xhovacui = cairodevice->cairoio;
cairo_identity_matrix(xhovacui->cr);
cairo_set_source_rgb(xhovacui->cr, 0.0, 0.0, 0.0);
cairo_rectangle(xhovacui->cr, 0, 0, xhovacui->width, xhovacui->height);
cairo_fill(xhovacui->cr);
}
/*
* flush
*/
void cairoflush_x11(struct cairodevice *cairodevice) {
struct cairoio *xhovacui;
xhovacui = cairodevice->cairoio;
if (xhovacui->doublebuffering)
XCopyArea(xhovacui->dsp, xhovacui->dbuf, xhovacui->win,
DefaultGC(xhovacui->dsp, 0),
0, 0, xhovacui->width, xhovacui->height, 0, 0);
}
/*
* whether the output is currently active
*/
int cairoisactive_x11(struct cairodevice *cairodevice) {
(void) cairodevice;
return TRUE;
}
/*
* reconfigure
*/
void cairoreconfigure(struct cairoio *xhovacui, XConfigureEvent *xce) {
xhovacui->width = xce->width;
xhovacui->height = xce->height;
if (! xhovacui->doublebuffering) {
cairo_xlib_surface_set_size(xhovacui->surface,
xhovacui->width, xhovacui->height);
return;
}
XFreePixmap(xhovacui->dsp, xhovacui->dbuf);
xhovacui->dbuf = XCreatePixmap(xhovacui->dsp, xhovacui->win,
xhovacui->width, xhovacui->height,
DefaultDepth(xhovacui->dsp, 0));
cairo_xlib_surface_set_drawable(xhovacui->surface, xhovacui->dbuf,
xhovacui->width, xhovacui->height);
return;
}
/*
* all available expose events
*/
int cairoexpose(Display *dsp, XEvent *evt) {
XExposeEvent *exp;
int redraw;
do {
redraw = 0;
switch (evt->type) {
case Expose:
exp = &evt->xexpose;
printf("Expose %d,%d->%dx%d\n",
exp->x, exp->y,
exp->width, exp->height);
redraw = 1;
break;
case GraphicsExpose:
printf("GraphicsExpose\n");
break;
case NoExpose:
printf("NoExpose\n");
break;
default:
printf("event of type %d\n", evt->type);
}
}
while (XCheckMaskEvent(dsp, ExposureMask, evt));
printf("\tend Exposure, redraw=%d\n", redraw);
return redraw;
}
/*
* next event or timeout
*/
int nextevent(Display *dsp, int timeout, XEvent *evt, struct command *command) {
fd_set fds;
int max, ret;
struct timeval tv;
/* the socket may be inactive but an event is already in the queue;
* so: first check events, then possibly wait on the socket */
while (! XCheckMaskEvent(dsp, EVENTMASK, evt)) {
FD_ZERO(&fds);
FD_SET(ConnectionNumber(dsp), &fds);
max = ConnectionNumber(dsp);
if (command->fd != -1) {
FD_SET(command->fd, &fds);
max = max > command->fd ? max : command->fd;
}
tv.tv_sec = timeout / 1000;
tv.tv_usec = (timeout % 1000) * 1000;
ret = select(max + 1, &fds, NULL, NULL,
timeout != NO_TIMEOUT ? &tv : NULL);
if (ret == -1)
return -1;
if (command->fd != -1 && FD_ISSET(command->fd, &fds)) {
fgets(command->command, command->max, command->stream);
return KEY_EXTERNAL;
}
if (! FD_ISSET(ConnectionNumber(dsp), &fds))
return KEY_TIMEOUT;
}
return 0;
}
/*
* get a single input
*/
int cairoinput_x11(struct cairodevice *cairodevice, int timeout,
struct command *command) {
struct cairoio *xhovacui;
int res;
XEvent evt;
int key;
int format;
Atom type;
unsigned long nitems, after;
unsigned char *selection;
xhovacui = cairodevice->cairoio;
while (1) {
res = nextevent(xhovacui->dsp, timeout, &evt, command);
if (res != 0)
return res;
switch(evt.type) {
case KeyPress:
printf("Key\n");
key = XLookupKeysym(&evt.xkey, 0);
switch (key) {
case XK_Down:
return KEY_DOWN;
case XK_Up:
return KEY_UP;
case XK_Left:
return KEY_LEFT;
case XK_Right:
return KEY_RIGHT;
case XK_Page_Down:
return KEY_NPAGE;
case XK_Page_Up:
return KEY_PPAGE;
case XK_Escape:
return 033;
case XK_Home:
return KEY_HOME;
case XK_End:
return KEY_END;
case XK_Return:
return '\n';
case XK_BackSpace:
return KEY_BACKSPACE;
case XK_slash:
return '/';
case XK_space:
return ' ';
default:
if (isalnum(key)) {
if (evt.xkey.state & ShiftMask)
return toupper(key);
else
return key;
}
/* finish: translate X keys to curses */
}
break;
case ButtonPress:
printf("Button\n");
if (evt.xbutton.button == 2) {
XConvertSelection(xhovacui->dsp,
XA_PRIMARY, XA_STRING, XA_PRIMARY,
xhovacui->win, CurrentTime);
}
break;
case PropertyNotify:
printf("Property\n");
if (evt.xproperty.atom != XA_PRIMARY)
break;
res = XGetWindowProperty(xhovacui->dsp, xhovacui->win,
XA_PRIMARY, 0, MAXPASTE, True, XA_STRING,
&type, &format, &nitems, &after, &selection);
if (res != Success)
break;
if (type != XA_STRING)
break;
if (nitems > MAXPASTE)
break;
if (format != 8)
break;
strcpy(command->command, (char *) selection);
XFree(selection);
return KEY_PASTE;
break;
case ConfigureNotify:
printf("Configure\n");
cairoreconfigure(xhovacui, &evt.xconfigure);
return KEY_RESIZE;
case Expose:
case GraphicsExpose:
case NoExpose:
if (cairoexpose(xhovacui->dsp, &evt))
return KEY_REDRAW;
break;
case MapNotify:
printf("MapNotify\n");
break;
case ReparentNotify:
printf("ReparentNotify\n");
break;
default:
printf("event of type %d\n", evt.type);
}
}
return KEY_NONE;
}
/*
* the cairo device for X11
*/
struct cairodevice cairodevicex11 = {
"x:",
"\t\t-x suboption\tx11 options (display, geometry)",
NULL,
cairoinit_x11, cairofinish_x11,
cairocontext_x11,
cairowidth_x11, cairoheight_x11,
cairoscreenwidth_x11, cairoscreenheight_x11,
cairodoublebuffering_x11,
cairoclear_x11, cairoblank_x11, cairoflush_x11,
cairoisactive_x11, cairoinput_x11
};