svkbd_dvorak/svkbd.c

515 lines
11 KiB
C
Raw Normal View History

2008-07-15 18:53:38 +02:00
/* See LICENSE file for copyright and license details.
*
* To understand svkbd, start reading main().
2008-07-15 18:53:38 +02:00
*/
#include <locale.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
2008-07-15 22:12:55 +02:00
#include <stdlib.h>
2008-07-15 18:53:38 +02:00
#include <X11/keysym.h>
#include <X11/Xatom.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xproto.h>
2008-07-15 22:12:55 +02:00
#include <X11/extensions/XTest.h>
2008-07-15 18:53:38 +02:00
/* macros */
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define LENGTH(x) (sizeof x / sizeof x[0])
/* enums */
enum { ColFG, ColBG, ColLast };
2011-03-25 15:14:12 +01:00
enum { NetWMWindowType, NetLast };
2008-07-15 18:53:38 +02:00
/* typedefs */
typedef unsigned int uint;
typedef unsigned long ulong;
typedef struct {
ulong norm[ColLast];
2008-07-15 22:12:55 +02:00
ulong press[ColLast];
2008-07-15 18:53:38 +02:00
Drawable drawable;
GC gc;
struct {
int ascent;
int descent;
int height;
XFontSet set;
XFontStruct *xfont;
} font;
} DC; /* draw context */
typedef struct {
2008-07-15 22:12:55 +02:00
char *label;
2008-07-15 18:53:38 +02:00
KeySym keysym;
2008-07-15 22:12:55 +02:00
uint width;
2008-07-15 18:53:38 +02:00
int x, y, w, h;
2008-07-15 22:12:55 +02:00
Bool pressed;
2008-07-15 18:53:38 +02:00
} Key;
typedef struct {
KeySym mod;
uint button;
} Buttonmod;
2008-07-15 18:53:38 +02:00
/* function declarations */
static void buttonpress(XEvent *e);
2008-07-15 22:12:55 +02:00
static void buttonrelease(XEvent *e);
2008-07-15 18:53:38 +02:00
static void cleanup(void);
static void configurenotify(XEvent *e);
2011-03-25 15:14:12 +01:00
static void countrows();
static void unmapnotify(XEvent *e);
2008-07-15 18:53:38 +02:00
static void die(const char *errstr, ...);
static void drawkeyboard(void);
2008-07-15 22:12:55 +02:00
static void drawkey(Key *k);
2008-07-15 18:53:38 +02:00
static void expose(XEvent *e);
2008-07-15 22:12:55 +02:00
static Key *findkey(int x, int y);
2008-07-15 18:53:38 +02:00
static ulong getcolor(const char *colstr);
static void initfont(const char *fontstr);
static void leavenotify(XEvent *e);
static void press(Key *k, KeySym mod);
2008-07-15 18:53:38 +02:00
static void run(void);
static void setup(void);
static int textnw(const char *text, uint len);
static void unpress();
2008-07-15 22:12:55 +02:00
static void updatekeys();
2008-07-15 18:53:38 +02:00
/* variables */
static int screen;
static void (*handler[LASTEvent]) (XEvent *) = {
[ButtonPress] = buttonpress,
2008-07-15 22:12:55 +02:00
[ButtonRelease] = buttonrelease,
2008-07-15 18:53:38 +02:00
[ConfigureNotify] = configurenotify,
[UnmapNotify] = unmapnotify,
2008-07-15 18:53:38 +02:00
[Expose] = expose,
[LeaveNotify] = leavenotify,
};
2011-03-25 15:14:12 +01:00
static Atom netatom[NetLast];
2008-07-15 18:53:38 +02:00
static Display *dpy;
static DC dc;
static Window root, win;
static Bool running = True;
static KeySym pressedmod = 0;
2011-03-25 15:14:12 +01:00
static int rows, ww = 0, wh = 0, wx = 0, wy = 0;
static char *name = "svkbd";
static char *wintype = "_NET_WM_WINDOW_TYPE_TOOLBAR";
2008-07-15 18:53:38 +02:00
/* configuration, allows nested code to access above variables */
#include "config.h"
2011-03-25 15:14:12 +01:00
#include "layout.h"
2008-07-15 18:53:38 +02:00
void
buttonpress(XEvent *e) {
int i;
2008-07-15 22:12:55 +02:00
XButtonPressedEvent *ev = &e->xbutton;
Key *k;
KeySym mod = 0;
2008-07-15 22:12:55 +02:00
for(i = 0; i < LENGTH(buttonmods); i++)
if(ev->button == buttonmods[i].button) {
mod = buttonmods[i].mod;
break;
2008-07-15 22:12:55 +02:00
}
if((k = findkey(ev->x, ev->y)))
press(k, mod);
2008-07-15 22:12:55 +02:00
}
void
buttonrelease(XEvent *e) {
XButtonPressedEvent *ev = &e->xbutton;
Key *k;
2008-07-15 22:12:55 +02:00
if((k = findkey(ev->x, ev->y)))
2011-03-24 21:53:40 +01:00
unpress();
2008-07-15 18:53:38 +02: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 22:12:55 +02:00
updatekeys();
2008-07-15 18:53:38 +02:00
}
}
2011-03-25 15:14:12 +01:00
void
countrows() {
int i = 0;
for(i = 0, rows = 1; i < LENGTH(keys); i++)
if(keys[i].keysym == 0)
rows++;
}
2008-07-15 18:53:38 +02: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 22:12:55 +02:00
int i;
2008-07-15 18:53:38 +02:00
for(i = 0; i < LENGTH(keys); i++) {
if(keys[i].keysym != 0)
2008-07-15 22:12:55 +02:00
drawkey(&keys[i]);
2008-07-15 18:53:38 +02:00
}
XSync(dpy, False);
}
void
2008-07-15 22:12:55 +02:00
drawkey(Key *k) {
2008-07-15 18:53:38 +02:00
int x, y, h, len;
XRectangle r = { k->x, k->y, k->w, k->h};
2008-07-15 22:12:55 +02:00
const char *l;
ulong *col;
2008-07-15 18:53:38 +02:00
2008-07-15 22:12:55 +02:00
if(k->pressed)
col = dc.press;
else
col = dc.norm;
2008-07-15 18:53:38 +02:00
XSetForeground(dpy, dc.gc, col[ColBG]);
XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
XSetForeground(dpy, dc.gc, dc.norm[ColFG]);
r.height -= 1;
r.width -= 1;
2008-07-15 18:53:38 +02:00
XDrawRectangles(dpy, dc.drawable, dc.gc, &r, 1);
XSetForeground(dpy, dc.gc, col[ColFG]);
2008-07-15 22:12:55 +02:00
if(k->label)
l = k->label;
else
l = XKeysymToString(k->keysym);
len = strlen(l);
2008-07-15 18:53:38 +02:00
h = dc.font.ascent + dc.font.descent;
y = k->y + (k->h / 2) - (h / 2) + dc.font.ascent;
2008-07-15 22:12:55 +02:00
x = k->x + (k->w / 2) - (textnw(l, len) / 2);
2008-07-15 18:53:38 +02:00
if(dc.font.set)
2008-07-15 22:12:55 +02:00
XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, l, len);
2008-07-15 18:53:38 +02:00
else
2008-07-15 22:12:55 +02: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 18:53:38 +02:00
}
void
unmapnotify(XEvent *e) {
2008-07-15 22:12:55 +02:00
running = False;
2008-07-15 18:53:38 +02:00
}
void
expose(XEvent *e) {
XExposeEvent *ev = &e->xexpose;
if(ev->count == 0 && (ev->window == win))
drawkeyboard();
}
2008-07-15 22:12:55 +02:00
Key *
findkey(int x, int y) {
int i;
2008-07-15 22:12:55 +02:00
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 18:53:38 +02: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 18:53:38 +02: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) {
2011-03-24 21:53:40 +01:00
unpress();
2008-07-15 18:53:38 +02: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 18:53:38 +02:00
void
run(void) {
XEvent ev;
2010-08-10 23:15:12 +02:00
/* main event loop */
2008-07-15 18:53:38 +02:00
XSync(dpy, False);
while(running) {
XNextEvent(dpy, &ev);
if(handler[ev.type])
(handler[ev.type])(&ev); /* call handler */
}
}
void
setup(void) {
XSetWindowAttributes wa;
2011-03-25 15:14:12 +01:00
XTextProperty str;
XClassHint *ch;
int i, sh, sw;
XWMHints *wmh;
2008-07-15 22:12:55 +02:00
2008-07-15 18:53:38 +02:00
/* init screen */
screen = DefaultScreen(dpy);
root = RootWindow(dpy, screen);
sw = DisplayWidth(dpy, screen) - 1;
sh = DisplayHeight(dpy, screen) - 1;
2008-07-15 18:53:38 +02:00
initfont(font);
2011-03-25 15:14:12 +01:00
/* init atoms */
netatom[NetWMWindowType] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE", False);
2011-03-25 15:14:12 +01:00
/* init appearance */
countrows();
if(!ww)
ww = sw - wx;
if(ww < 0)
ww = sw + ww;
2011-03-25 15:14:12 +01:00
if(!wx)
wx = 0;
if(wx < 0)
wx = sw + wx;
2011-03-25 15:14:12 +01:00
if(!wh)
wh = sh * rows / 32;
if(wh < 0)
wh = sh + wh;
2011-03-25 15:14:12 +01:00
if(!wy)
wy = sh - wh;
if(wy < 0)
wy = sh + wy - wh;
2008-07-15 18:53:38 +02:00
dc.norm[ColBG] = getcolor(normbgcolor);
dc.norm[ColFG] = getcolor(normfgcolor);
2008-07-15 22:12:55 +02:00
dc.press[ColBG] = getcolor(pressbgcolor);
dc.press[ColFG] = getcolor(pressfgcolor);
2008-07-15 18:53:38 +02:00
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 22:12:55 +02:00
for(i = 0; i < LENGTH(keys); i++)
keys[i].pressed = 0;
2008-07-15 18:53:38 +02:00
2011-03-25 15:14:12 +01:00
wa.override_redirect = !wmborder;
wa.border_pixel = dc.norm[ColFG];
wa.background_pixel = dc.norm[ColBG];
win = XCreateWindow(dpy, root, wx, wy, ww, wh, 0,
CopyFromParent, CopyFromParent, CopyFromParent,
CWOverrideRedirect | CWBorderPixel | CWBackingPixel, &wa);
2010-05-16 12:17:09 +02:00
XSelectInput(dpy, win, StructureNotifyMask|ButtonReleaseMask|
ButtonPressMask|ExposureMask|LeaveWindowMask);
2011-03-25 15:14:12 +01:00
2008-07-15 22:12:55 +02:00
wmh = XAllocWMHints();
wmh->input = False;
wmh->flags = InputHint;
2011-03-25 15:14:12 +01:00
XStringListToTextProperty(&name, 1, &str);
ch = XAllocClassHint();
ch->res_class = name;
ch->res_name = name;
XSetWMProperties(dpy, win, &str, &str, NULL, 0, NULL, wmh,
ch);
XFree(ch);
2008-07-15 22:12:55 +02:00
XFree(wmh);
2011-03-25 15:14:12 +01:00
XFree(str.value);
XStringListToTextProperty(&wintype, 1, &str);
XSetTextProperty(dpy, win, &str, netatom[NetWMWindowType]);
XFree(str.value);
2008-07-15 18:53:38 +02:00
XMapRaised(dpy, win);
2008-07-15 22:12:55 +02:00
updatekeys();
2008-07-15 18:53:38 +02: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 22:12:55 +02:00
void
updatekeys() {
2011-03-25 15:14:12 +01:00
int i, j;
2008-07-15 22:12:55 +02:00
int x = 0, y = 0, h, base;
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 / base;
if(rows != 1)
2008-07-15 22:12:55 +02:00
keys[i].h = h;
else
keys[i].h = wh - y;
2008-07-15 22:12:55 +02:00
x += keys[i].w;
}
if(base != 0)
keys[i - 1].w = ww - keys[i - 1].x;
2008-07-15 22:12:55 +02:00
y += h;
}
}
2011-03-24 19:41:58 +01:00
void
usage(char *argv0) {
fprintf(stderr, "usage: %s [-hv] [-wh height] [-ww width] "
"[-wx x position] [-wy y position]\n", argv0);
exit(1);
}
2008-07-15 18:53:38 +02:00
int
main(int argc, char *argv[]) {
2011-03-24 19:41:58 +01:00
int i;
for (i = 1; argv[i]; i++) {
if(!strcmp(argv[i], "-v")) {
die("svkbd-"VERSION", © 2006-2010 svkbd engineers,"
" see LICENSE for details\n");
}
2011-03-25 15:14:12 +01:00
else if(argv[i][0] == '-' && argv[i][1] == 'w') {
switch(i >= argc - 1 ? 0 : argv[i][2]) {
case 'h':
wh = atoi(argv[i+1]);
break;
case 'w':
ww = atoi(argv[i+1]);
break;
case 'x':
wx = atoi(argv[i+1]);
break;
case 'y':
wy = atoi(argv[i+1]);
break;
default:
usage(argv[0]);
}
2011-03-24 19:41:58 +01:00
}
2011-03-25 15:14:12 +01:00
else if(!strcmp(argv[i], "-h"))
2011-03-24 19:41:58 +01:00
usage(argv[0]);
}
2008-07-15 18:53:38 +02:00
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;
}