svkbd/svkbd.c

459 lines
10 KiB
C
Raw Normal View History

2008-07-15 16:53:38 +00:00
/* See LICENSE file for copyright and license details.
*
* To understand svkbd, start reading main().
2008-07-15 16:53:38 +00:00
*/
#include <locale.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
2008-07-15 20:12:55 +00:00
#include <stdlib.h>
2008-07-15 16:53:38 +00:00
#include <X11/keysym.h>
#include <X11/Xatom.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xproto.h>
2008-07-15 20:12:55 +00:00
#include <X11/extensions/XTest.h>
2008-07-15 16:53:38 +00:00
/* macros */
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define LENGTH(x) (sizeof x / sizeof x[0])
/* enums */
enum { ColFG, ColBG, ColLast };
/* typedefs */
typedef unsigned int uint;
typedef unsigned long ulong;
typedef struct {
ulong norm[ColLast];
2008-07-15 20:12:55 +00:00
ulong press[ColLast];
2008-07-15 16:53:38 +00:00
ulong hover[ColLast];
Drawable drawable;
GC gc;
struct {
int ascent;
int descent;
int height;
XFontSet set;
XFontStruct *xfont;
} font;
} DC; /* draw context */
typedef struct {
2008-07-15 20:12:55 +00:00
char *label;
2008-07-15 16:53:38 +00:00
KeySym keysym;
2008-07-15 20:12:55 +00:00
uint width;
2008-07-15 16:53:38 +00:00
int x, y, w, h;
2008-07-15 20:12:55 +00:00
Bool pressed;
2008-07-15 16:53:38 +00:00
} Key;
typedef struct {
KeySym mod;
uint button;
} Buttonmod;
2008-07-15 16:53:38 +00:00
/* function declarations */
static void buttonpress(XEvent *e);
2008-07-15 20:12:55 +00:00
static void buttonrelease(XEvent *e);
2008-07-15 16:53:38 +00:00
static void cleanup(void);
static void configurenotify(XEvent *e);
static void unmapnotify(XEvent *e);
2008-07-15 16:53:38 +00:00
static void die(const char *errstr, ...);
static void drawkeyboard(void);
2008-07-15 20:12:55 +00:00
static void drawkey(Key *k);
2008-07-15 16:53:38 +00:00
static void expose(XEvent *e);
2008-07-15 20:12:55 +00:00
static Key *findkey(int x, int y);
2008-07-15 16:53:38 +00:00
static ulong getcolor(const char *colstr);
static void initfont(const char *fontstr);
static void leavenotify(XEvent *e);
static void motionnotify(XEvent *e);
static void press(Key *k, KeySym mod);
2008-07-15 16:53:38 +00:00
static void run(void);
static void setup(void);
static int textnw(const char *text, uint len);
static void unpress();
2008-07-15 20:12:55 +00:00
static void updatekeys();
2008-07-15 16:53:38 +00:00
/* variables */
static int screen;
static int wx, wy, ww, wh;
static void (*handler[LASTEvent]) (XEvent *) = {
[ButtonPress] = buttonpress,
2008-07-15 20:12:55 +00:00
[ButtonRelease] = buttonrelease,
2008-07-15 16:53:38 +00:00
[ConfigureNotify] = configurenotify,
[UnmapNotify] = unmapnotify,
2008-07-15 16:53:38 +00:00
[Expose] = expose,
[LeaveNotify] = leavenotify,
[MotionNotify] = motionnotify,
};
static Display *dpy;
static DC dc;
static Window root, win;
static Bool running = True;
static Key *hover = NULL;
static KeySym pressedmod = 0;
2008-07-15 16:53:38 +00:00
/* configuration, allows nested code to access above variables */
#include "config.h"
void
buttonpress(XEvent *e) {
int i;
2008-07-15 20:12:55 +00:00
XButtonPressedEvent *ev = &e->xbutton;
Key *k;
KeySym mod = 0;
2008-07-15 20:12:55 +00:00
for(i = 0; i < LENGTH(buttonmods); i++)
if(ev->button == buttonmods[i].button) {
mod = buttonmods[i].mod;
break;
2008-07-15 20:12:55 +00:00
}
if((k = findkey(ev->x, ev->y)))
press(k, mod);
2008-07-15 20:12:55 +00:00
}
void
buttonrelease(XEvent *e) {
XButtonPressedEvent *ev = &e->xbutton;
Key *k;
2008-07-15 20:12:55 +00:00
if((k = findkey(ev->x, ev->y)))
unpress(k);
2008-07-15 16:53:38 +00:00
}
void
cleanup(void) {
if(dc.font.set)
XFreeFontSet(dpy, dc.font.set);
else
XFreeFont(dpy, dc.font.xfont);
XFreePixmap(dpy, dc.drawable);
XFreeGC(dpy, dc.gc);
XDestroyWindow(dpy, win);
XSync(dpy, False);
XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
}
void
configurenotify(XEvent *e) {
XConfigureEvent *ev = &e->xconfigure;
if(ev->window == win && (ev->width != ww || ev->height != wh)) {
ww = ev->width;
wh = ev->height;
XFreePixmap(dpy, dc.drawable);
dc.drawable = XCreatePixmap(dpy, root, ww, wh, DefaultDepth(dpy, screen));
2008-07-15 20:12:55 +00:00
updatekeys();
2008-07-15 16:53:38 +00:00
}
}
void
die(const char *errstr, ...) {
va_list ap;
va_start(ap, errstr);
vfprintf(stderr, errstr, ap);
va_end(ap);
exit(EXIT_FAILURE);
}
void
drawkeyboard(void) {
2008-07-15 20:12:55 +00:00
int i;
2008-07-15 16:53:38 +00:00
for(i = 0; i < LENGTH(keys); i++) {
if(keys[i].keysym != 0)
2008-07-15 20:12:55 +00:00
drawkey(&keys[i]);
2008-07-15 16:53:38 +00:00
}
XSync(dpy, False);
}
void
2008-07-15 20:12:55 +00:00
drawkey(Key *k) {
2008-07-15 16:53:38 +00:00
int x, y, h, len;
XRectangle r = { k->x, k->y, k->w, k->h};
2008-07-15 20:12:55 +00:00
const char *l;
ulong *col;
2008-07-15 16:53:38 +00:00
2008-07-15 20:12:55 +00:00
if(k->pressed)
col = dc.press;
else if(hover == k)
col = dc.hover;
else
col = dc.norm;
2008-07-15 16:53:38 +00:00
XSetForeground(dpy, dc.gc, col[ColBG]);
XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
XSetForeground(dpy, dc.gc, dc.norm[ColFG]);
2008-07-15 16:53:38 +00:00
XDrawRectangles(dpy, dc.drawable, dc.gc, &r, 1);
XSetForeground(dpy, dc.gc, col[ColFG]);
2008-07-15 20:12:55 +00:00
if(k->label)
l = k->label;
else
l = XKeysymToString(k->keysym);
len = strlen(l);
2008-07-15 16:53:38 +00:00
h = dc.font.ascent + dc.font.descent;
y = k->y + (k->h / 2) - (h / 2) + dc.font.ascent;
2008-07-15 20:12:55 +00:00
x = k->x + (k->w / 2) - (textnw(l, len) / 2);
2008-07-15 16:53:38 +00:00
if(dc.font.set)
2008-07-15 20:12:55 +00:00
XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, l, len);
2008-07-15 16:53:38 +00:00
else
2008-07-15 20:12:55 +00:00
XDrawString(dpy, dc.drawable, dc.gc, x, y, l, len);
XCopyArea(dpy, dc.drawable, win, dc.gc, k->x, k->y, k->w, k->h, k->x, k->y);
2008-07-15 16:53:38 +00:00
}
void
unmapnotify(XEvent *e) {
2008-07-15 20:12:55 +00:00
running = False;
2008-07-15 16:53:38 +00:00
}
void
expose(XEvent *e) {
XExposeEvent *ev = &e->xexpose;
if(ev->count == 0 && (ev->window == win))
drawkeyboard();
}
2008-07-15 20:12:55 +00:00
Key *
findkey(int x, int y) {
int i;
for(i = 0; i < LENGTH(keys); i++)
if(keys[i].keysym && x > keys[i].x &&
x < keys[i].x + keys[i].w &&
y > keys[i].y && y < keys[i].y + keys[i].h)
return &keys[i];
return NULL;
}
2008-07-15 16:53:38 +00:00
ulong
getcolor(const char *colstr) {
Colormap cmap = DefaultColormap(dpy, screen);
XColor color;
if(!XAllocNamedColor(dpy, cmap, colstr, &color, &color))
die("error, cannot allocate color '%s'\n", colstr);
return color.pixel;
}
void
initfont(const char *fontstr) {
char *def, **missing;
int i, n;
missing = NULL;
if(dc.font.set)
XFreeFontSet(dpy, dc.font.set);
dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def);
if(missing) {
while(n--)
fprintf(stderr, "svkbd: missing fontset: %s\n", missing[n]);
2008-07-15 16:53:38 +00:00
XFreeStringList(missing);
}
if(dc.font.set) {
XFontSetExtents *font_extents;
XFontStruct **xfonts;
char **font_names;
dc.font.ascent = dc.font.descent = 0;
font_extents = XExtentsOfFontSet(dc.font.set);
n = XFontsOfFontSet(dc.font.set, &xfonts, &font_names);
for(i = 0, dc.font.ascent = 0, dc.font.descent = 0; i < n; i++) {
dc.font.ascent = MAX(dc.font.ascent, (*xfonts)->ascent);
dc.font.descent = MAX(dc.font.descent,(*xfonts)->descent);
xfonts++;
}
}
else {
if(dc.font.xfont)
XFreeFont(dpy, dc.font.xfont);
dc.font.xfont = NULL;
if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr))
&& !(dc.font.xfont = XLoadQueryFont(dpy, "fixed")))
die("error, cannot load font: '%s'\n", fontstr);
dc.font.ascent = dc.font.xfont->ascent;
dc.font.descent = dc.font.xfont->descent;
}
dc.font.height = dc.font.ascent + dc.font.descent;
}
void
leavenotify(XEvent *e) {
Key *oh = hover;
unpress(NULL);
2008-07-15 20:12:55 +00:00
if(!hover)
return;
hover = NULL;
drawkey(oh);
2008-07-15 16:53:38 +00:00
}
void
motionnotify(XEvent *e) {
2008-07-15 20:12:55 +00:00
XMotionEvent *ev = &e->xmotion;
Key *h = findkey(ev->x, ev->y), *oh;
if(h != hover) {
oh = hover;;
hover = h;
if(oh) {
2008-07-15 20:12:55 +00:00
drawkey(oh);
}
if(hover) {
2008-07-15 20:12:55 +00:00
drawkey(hover);
}
2008-07-15 20:12:55 +00:00
}
2008-07-15 16:53:38 +00:00
}
void
press(Key *k, KeySym mod) {
int i;
k->pressed = !k->pressed;
if(!IsModifierKey(k->keysym)) {
for(i = 0; i < LENGTH(keys); i++)
if(keys[i].pressed && IsModifierKey(keys[i].keysym))
XTestFakeKeyEvent(dpy, XKeysymToKeycode(dpy, keys[i].keysym), True, 0);
pressedmod = mod;
if(pressedmod)
XTestFakeKeyEvent(dpy, XKeysymToKeycode(dpy, mod), True, 0);
XTestFakeKeyEvent(dpy, XKeysymToKeycode(dpy, k->keysym), True, 0);
}
drawkey(k);
}
2008-07-15 16:53:38 +00:00
void
run(void) {
XEvent ev;
/* main event loop, also reads status text from stdin */
XSync(dpy, False);
while(running) {
XNextEvent(dpy, &ev);
if(handler[ev.type])
(handler[ev.type])(&ev); /* call handler */
}
}
void
setup(void) {
2008-07-15 20:12:55 +00:00
int i;
XWMHints *wmh;
2008-07-15 16:53:38 +00:00
/* init screen */
screen = DefaultScreen(dpy);
root = RootWindow(dpy, screen);
initfont(font);
/* init appearance */
ww = DisplayWidth(dpy, screen);
wh = 200;
wx = 0;
wy = DisplayHeight(dpy, screen) - wh;
dc.norm[ColBG] = getcolor(normbgcolor);
dc.norm[ColFG] = getcolor(normfgcolor);
2008-07-15 20:12:55 +00:00
dc.press[ColBG] = getcolor(pressbgcolor);
dc.press[ColFG] = getcolor(pressfgcolor);
2008-07-15 16:53:38 +00:00
dc.hover[ColBG] = getcolor(hovbgcolor);
dc.hover[ColFG] = getcolor(hovfgcolor);
dc.drawable = XCreatePixmap(dpy, root, ww, wh, DefaultDepth(dpy, screen));
dc.gc = XCreateGC(dpy, root, 0, 0);
if(!dc.font.set)
XSetFont(dpy, dc.gc, dc.font.xfont->fid);
2008-07-15 20:12:55 +00:00
for(i = 0; i < LENGTH(keys); i++)
keys[i].pressed = 0;
2008-07-15 16:53:38 +00:00
win = XCreateSimpleWindow(dpy, root, wx, wy, ww, wh, 0, dc.norm[ColFG], dc.norm[ColBG]);
2008-07-15 20:12:55 +00:00
XSelectInput(dpy, win, StructureNotifyMask|PointerMotionMask|
ButtonReleaseMask|ButtonPressMask|ExposureMask|
LeaveWindowMask);
wmh = XAllocWMHints();
wmh->input = False;
wmh->flags = InputHint;
XSetWMHints(dpy, win, wmh);
XFree(wmh);
2008-07-15 16:53:38 +00:00
XMapRaised(dpy, win);
2008-07-15 20:12:55 +00:00
updatekeys();
2008-07-15 16:53:38 +00:00
drawkeyboard();
}
int
textnw(const char *text, uint len) {
XRectangle r;
if(dc.font.set) {
XmbTextExtents(dc.font.set, text, len, NULL, &r);
return r.width;
}
return XTextWidth(dc.font.xfont, text, len);
}
void
unpress() {
int i;
for(i = 0; i < LENGTH(keys); i++)
if(keys[i].pressed && !IsModifierKey(keys[i].keysym)) {
XTestFakeKeyEvent(dpy, XKeysymToKeycode(dpy, keys[i].keysym), False, 0);
keys[i].pressed = 0;
drawkey(&keys[i]);
break;
}
if(i != LENGTH(keys)) {
for(i = 0; i < LENGTH(keys); i++) {
if(pressedmod)
XTestFakeKeyEvent(dpy, XKeysymToKeycode(dpy, pressedmod), False, 0);
pressedmod = 0;
if(keys[i].pressed) {
XTestFakeKeyEvent(dpy, XKeysymToKeycode(dpy, keys[i].keysym), False, 0);
keys[i].pressed = 0;
drawkey(&keys[i]);
}
}
}
}
2008-07-15 20:12:55 +00:00
void
updatekeys() {
int rows, i, j;
int x = 0, y = 0, h, base;
for(i = 0, rows = 1; i < LENGTH(keys); i++)
if(keys[i].keysym == 0)
rows++;
h = wh / rows;
for(i = 0; i < LENGTH(keys); i++, rows--) {
for(j = i, base = 0; j < LENGTH(keys) && keys[j].keysym != 0; j++)
base += keys[j].width;
for(x = 0; i < LENGTH(keys) && keys[i].keysym != 0; i++) {
keys[i].x = x;
keys[i].y = y;
keys[i].w = keys[i].width * (ww - 1) / base;
if(rows != 1)
2008-07-15 20:12:55 +00:00
keys[i].h = h;
else
keys[i].h = (wh - 1) - y;
x += keys[i].w;
}
if(base != 0)
keys[i - 1].w = (ww - 1) - keys[i - 1].x;
y += h;
}
}
2008-07-15 16:53:38 +00:00
int
main(int argc, char *argv[]) {
if(argc == 2 && !strcmp("-v", argv[1]))
die("svkc-"VERSION", © 2006-2008 svkbd engineers, see LICENSE for details\n");
else if(argc != 1)
die("usage: svkbd [-v]\n");
if(!setlocale(LC_CTYPE, "") || !XSupportsLocale())
fprintf(stderr, "warning: no locale support\n");
if(!(dpy = XOpenDisplay(0)))
die("svkbd: cannot open display\n");
setup();
run();
cleanup();
XCloseDisplay(dpy);
return 0;
}