mirror of https://github.com/0intro/wmii
35 lines
700 B
C
35 lines
700 B
C
/*
|
|
* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
|
* See LICENSE file for license details.
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include <cext.h>
|
|
|
|
#include "blitz.h"
|
|
|
|
static unsigned long
|
|
xloadcolor(Blitz *blitz, char *colstr)
|
|
{
|
|
XColor color;
|
|
char col[8];
|
|
|
|
cext_strlcpy(col, colstr, sizeof(col));
|
|
col[7] = 0;
|
|
XAllocNamedColor(blitz->dpy,
|
|
DefaultColormap(blitz->dpy, blitz->screen), col, &color, &color);
|
|
return color.pixel;
|
|
}
|
|
|
|
int
|
|
blitz_loadcolor(Blitz *blitz, BlitzColor *c)
|
|
{
|
|
if(!c->colstr || strlen(c->colstr) != 23)
|
|
return -1;
|
|
c->fg = xloadcolor(blitz, &c->colstr[0]);
|
|
c->bg = xloadcolor(blitz, &c->colstr[8]);
|
|
c->border = xloadcolor(blitz, &c->colstr[16]);
|
|
return 0;
|
|
}
|
|
|