forked from opencalc/opencalc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui_x11.c
128 lines (90 loc) · 2.23 KB
/
ui_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
// license ...
#include <cairo.h>
#include <cairo-xlib.h>
#include "lua.h"
#include "lauxlib.h"
#include "ui.h"
struct window_x11 {
cairo_surface_t *surface;
Display *dpy;
int scr;
Window win;
GC gc;
int width, height;
};
int ui_get_backend(lua_State *L)
{
lua_pushstring(L, "x11");
return 1;
}
int ui_create_window(lua_State *L)
{
struct window_x11 *window =
lua_newuserdata(L, sizeof(struct window_x11));
window->dpy = XOpenDisplay(0);
if (window->dpy == NULL) {
// FIXME lua error
fprintf(stderr, "Failed to open display\n");
return 0;
}
Window root;
window->width = luaL_checknumber(L, 1);
window->height = luaL_checknumber(L, 2);
root = DefaultRootWindow(window->dpy);
window->scr = DefaultScreen(window->dpy);
window->win = XCreateSimpleWindow(window->dpy, root, 0, 0,
window->width, window->height, 0,
BlackPixel(window->dpy, window->scr),
BlackPixel(window->dpy, window->scr));
XSelectInput(window->dpy, window->win,
KeyPressMask
|KeyReleaseMask
|ExposureMask);
XMapWindow(window->dpy, window->win);
Visual *visual = DefaultVisual(window->dpy, DefaultScreen(window->dpy));
XClearWindow(window->dpy, window->win);
window->surface = cairo_xlib_surface_create(
window->dpy, window->win, visual,
window->width, window->height);
luaL_getmetatable(L, "ui.window");
lua_setmetatable(L, -2);
return 1;
}
int ui_destroy_window(lua_State *L)
{
struct window_x11 *window = lua_touserdata(L, 1);
XDestroyWindow(window->dpy, window->win);
XCloseDisplay(window->dpy);
return 0;
}
int ui_next_event(lua_State *L)
{
struct window_x11 *window = lua_touserdata(L, 1);
int args = 0;
XEvent xev;
XNextEvent(window->dpy, &xev);
lua_newtable(L);
switch(xev.type) {
case KeyPress:
case KeyRelease:
{
XKeyEvent *kev = &xev.xkey;
KeySym sym = XKeycodeToKeysym(window->dpy,
kev->keycode, 0);
lua_pushstring(L, (xev.type == KeyPress) ? "keypress" : "keyrelease");
lua_setfield(L, -2, "type");
lua_pushstring(L, XKeysymToString(sym));
lua_setfield(L, -2, "value");
}
break;
default:
case Expose:
{
XExposeEvent *eev = &xev.xexpose;
lua_pushstring(L, "draw");
lua_setfield(L, -2, "type");
}
break;
}
return 1;
}