auto_comp: Support auto_comp and color for keyword base_scale.

Summary: auto_comp: Support auto_comp and color for keyword base_scale.

Reviewers: Hermet

Differential Revision: https://phab.enlightenment.org/D1562
This commit is contained in:
Jaehyun Cho 2014-10-22 15:53:01 +09:00 committed by ChunEon Park
parent 1bfb773a72
commit f89a9be19f
3 changed files with 9 additions and 1 deletions

View File

@ -64,6 +64,7 @@ group "syntax_color_group" struct {
value "key" string: "aspect_preference";
value "key" string: "aspect";
value "key" string: "backface_cull";
value "key" string: "base_scale";
value "key" string: "base";
value "key" string: "border_scale";
value "key" string: "border";

View File

@ -95,6 +95,7 @@ init_thread_cb(void *data, Ecore_Thread *thread EINA_UNUSED)
COMPDATA_SET(ad, "after", AUTOCOMP_AFTER, 2, 0);
COMPDATA_SET(ad, "styles", AUTOCOMP_STYLES, 2, 1);
COMPDATA_SET(ad, "style", AUTOCOMP_STYLE, 4, 1);
COMPDATA_SET(ad, "base_scale", AUTOCOMP_BASE_SCALE, 1, 0);
COMPDATA_SET(ad, "base", AUTOCOMP_BASE, 2, 0);
COMPDATA_SET(ad, "sounds", AUTOCOMP_SOUNDS, 2, 1);
COMPDATA_SET(ad, "sample", AUTOCOMP_SAMPLE, 13, 1);

View File

@ -326,4 +326,10 @@ const char *AUTOCOMP_CLIP_TO[AUTOCOMP_CLIP_TO_LINE_CNT] =
"clip_to: \"\";",
};
#define COMPSET_CNT 50
#define AUTOCOMP_BASE_SCALE_LINE_CNT 1
const char *AUTOCOMP_BASE_SCALE[AUTOCOMP_BASE_SCALE_LINE_CNT] =
{
"base_scale: ;",
};
#define COMPSET_CNT 51