aboutsummaryrefslogtreecommitdiffstats
path: root/vixus.c
diff options
context:
space:
mode:
Diffstat (limited to 'vixus.c')
-rw-r--r--vixus.c41
1 files changed, 0 insertions, 41 deletions
diff --git a/vixus.c b/vixus.c
deleted file mode 100644
index 5753c92..0000000
--- a/vixus.c
+++ /dev/null
@@ -1,41 +0,0 @@
-#include <X11/Xft/Xft.h>
-#include <X11/Xlib.h>
-#include <X11/extensions/Xrender.h>
-#include <fontconfig/fontconfig.h>
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-int main(int argc, char** argv) {
- if (argc < 3) {
- printf("xftwidth font string\n");
- return 1;
- }
-
- Display *dpy;
- XftFont *fn;
- XGlyphInfo ext;
- FcChar8 *str;
-
- char *name = argv[1];
- size_t len = strlen(argv[2]);
-// len + 1?..
- str = (FcChar8*) malloc(len * sizeof(FcChar8) + 1);
-
- strncpy((char*)str, argv[2], len);
-
- dpy = XOpenDisplay(NULL);
- fn = XftFontOpenName(dpy, 0, name);
-
- if (fn == NULL) {
- printf("Font not found.\n");
- return 1;
- }
-
- XftTextExtents8(dpy, fn, str, (int)len, &ext);
- printf("%d\n", ext.width);
-
- free((void*)str);
- return 0;
-}