Exemplo n.º 1
0
char const *cp_enumerate (int index)
{
    int charset;
    if (index == 0)
	return "Use font encoding";
    charset = charset_localenc_nth(index-1);
    if (charset == CS_NONE)
	return NULL;
    return charset_to_localenc(charset);
}
Exemplo n.º 2
0
const char *cp_enumerate(int index)
{
    int charset;
    if (index == 0)
	return "UTF-8";
    charset = charset_localenc_nth(index-1);
    if (charset == CS_NONE)
	return NULL;
    return charset_to_localenc(charset);
}
Exemplo n.º 3
0
const char *cp_enumerate(int index)
{
    int charset;
    charset = charset_localenc_nth(index);
    if (charset == CS_NONE) {
        /* "Use font encoding" comes after all the named charsets */
        if (charset_localenc_nth(index-1) != CS_NONE)
            return "Use font encoding";
	return NULL;
    }
    return charset_to_localenc(charset);
}
Exemplo n.º 4
0
char const *cp_name(int codepage)
{
    if (codepage == CS_NONE)
	return "Use font encoding";
    return charset_to_localenc(codepage);
}
Exemplo n.º 5
0
const char *cp_name(int codepage)
{
    if (codepage == CS_NONE)
	return "UTF-8";
    return charset_to_localenc(codepage);
}