lib/auto_comp: support more keywords - anti_alias, ellipsis

This commit is contained in:
ChunEon Park 2015-03-03 13:50:09 +09:00
parent 94447b0ccc
commit 21f3f10b15
2 changed files with 15 additions and 1 deletions

View File

@ -123,6 +123,8 @@ init_thread_cb(void *data, Ecore_Thread *thread EINA_UNUSED)
COMPDATA_SET(ad, "span", AUTOCOMP_SPAN, 1, 0);
COMPDATA_SET(ad, "spread", AUTOCOMP_SPREAD, 1, 0);
COMPDATA_SET(ad, "weight", AUTOCOMP_WEIGHT, 1, 0);
COMPDATA_SET(ad, "ellipsis", AUTOCOMP_ELLIPSIS, 1, 0);
COMPDATA_SET(ad, "anti_alias", AUTOCOMP_ANTI_ALIAS, 1, 0);
}
static void

View File

@ -425,4 +425,16 @@ const char *AUTOCOMP_WEIGHT[AUTOCOMP_WEIGHT_LINE_CNT] =
"weight: ;",
};
#define COMPSET_CNT 65
#define AUTOCOMP_ELLIPSIS_LINE_CNT 1
const char *AUTOCOMP_ELLIPSIS[AUTOCOMP_ELLIPSIS_LINE_CNT] =
{
"ellipsis: ;",
};
#define AUTOCOMP_ANTI_ALIAS_LINE_CNT 1
const char *AUTOCOMP_ANTI_ALIAS[AUTOCOMP_ANTI_ALIAS_LINE_CNT] =
{
"anti_alias: ;",
};
#define COMPSET_CNT 67