auto_comp: Support auto_comp and color for keyword set in images.

Summary: auto_comp: Support auto_comp and color for keyword set in images.

Reviewers: Hermet

Differential Revision: https://phab.enlightenment.org/D1563
This commit is contained in:
Jaehyun Cho 2014-10-23 10:37:46 +09:00 committed by ChunEon Park
parent f89a9be19f
commit d55e920eb0
3 changed files with 10 additions and 1 deletions

View File

@ -47,6 +47,7 @@ group "syntax_color_group" struct {
value "key" string: "rotation";
value "key" string: "sample";
value "key" string: "script";
value "key" string: "set";
value "key" string: "sounds";
value "key" string: "styles";
value "key" string: "size ";

View File

@ -63,6 +63,7 @@ init_thread_cb(void *data, Ecore_Thread *thread EINA_UNUSED)
COMPDATA_SET(ad, "collections",AUTOCOMP_COLLECTIONS, 2, 1);
COMPDATA_SET(ad, "image",AUTOCOMP_IMAGE, 7, 0);
COMPDATA_SET(ad, "images",AUTOCOMP_IMAGES, 2, 1);
COMPDATA_SET(ad, "set",AUTOCOMP_SET, 4, 1);
COMPDATA_SET(ad, "group",AUTOCOMP_GROUP, 4, 1);
COMPDATA_SET(ad, "type",AUTOCOMP_TYPE, 0, 0);
COMPDATA_SET(ad, "part",AUTOCOMP_PART, 4, 1);

View File

@ -332,4 +332,11 @@ const char *AUTOCOMP_BASE_SCALE[AUTOCOMP_BASE_SCALE_LINE_CNT] =
"base_scale: ;",
};
#define COMPSET_CNT 51
#define AUTOCOMP_SET_LINE_CNT 2
const char *AUTOCOMP_SET[AUTOCOMP_SET_LINE_CNT] =
{
"set { name: \"\";<br/>",
"}"
};
#define COMPSET_CNT 52