e16/src/fonts.c

139 lines
3.2 KiB
C

/*
* Copyright (C) 2004-2007 Kim Woelders
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies of the Software, its documentation and marketing & publicity
* materials, and acknowledgment shall be given in the documentation, materials
* and software packages that this Software was used.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "E.h"
#include "e16-ecore_list.h"
typedef struct
{
char *name;
char *font;
} FontAlias;
static Ecore_List *font_list = NULL;
static void
_FontAliasDestroy(void *data)
{
FontAlias *fa = (FontAlias *) data;
if (!fa)
return;
Efree(fa->name);
Efree(fa->font);
Efree(fa);
}
static FontAlias *
FontAliasCreate(const char *name, const char *font)
{
FontAlias *fa;
fa = EMALLOC(FontAlias, 1);
if (!fa)
return NULL;
fa->name = Estrdup(name);
fa->font = Estrdup(font);
if (!font_list)
{
font_list = ecore_list_new();
ecore_list_free_cb_set(font_list, _FontAliasDestroy);
}
ecore_list_prepend(font_list, fa);
return fa;
}
static int
_FontMatchName(const void *data, const void *match)
{
return strcmp(((const FontAlias *)data)->name, (const char *)match);
}
const char *
FontLookup(const char *name)
{
FontAlias *fa;
fa = (FontAlias *) ecore_list_find(font_list, _FontMatchName, name);
return (fa) ? fa->font : NULL;
}
/*
* Configuration load
*/
static int
_FontConfigLoad(FILE * fs)
{
int err = 0;
FontAlias *fa;
char s[FILEPATH_LEN_MAX];
char s1[128], *p2;
int i2;
while (GetLine(s, sizeof(s), fs))
{
s1[0] = '\0';
i2 = 0;
sscanf(s, "%120s %n", s1, &i2);
if (i2 <= 0)
continue;
p2 = s + i2;
if (!p2[0])
continue;
if (strncmp(s, "font-", 5))
continue;
fa = FontAliasCreate(s1, p2);
}
return err;
}
void
FontConfigLoad(void)
{
int err;
if (Conf.theme.use_alt_font_cfg)
{
if (!Conf.theme.font_cfg)
Conf.theme.font_cfg = Estrdup("fonts.cfg.xft");
err = ConfigFileLoad(Conf.theme.font_cfg, Mode.theme.path,
_FontConfigLoad, 0);
if (!err)
return;
}
ConfigFileLoad("fonts.cfg", Mode.theme.path, _FontConfigLoad, 0);
}
void
FontConfigUnload(void)
{
ecore_list_destroy(font_list);
font_list = NULL;
}