index: add color classes and text classes.

Summary:
The following new color classes and text classes
for index widget are added.

"index_bg", "Index Background"
"index_item_bg", "Index Item Background"
"index_highlight_text," "Index Highlight Text"
"index_item_text," "Index Items Text"
"index_item_text_selected," "Index Selected Items Text"

@feature

Reviewers: raster, cedric, Hermet, kimcinoo, woohyun

Subscribers: SanghyeonLee, eagleeye, id213sin

Differential Revision: https://phab.enlightenment.org/D3487

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
woochan lee 2016-01-04 14:39:08 -08:00 committed by Cedric BAIL
parent 4984cecc16
commit 71a2576531
3 changed files with 60 additions and 5 deletions

View File

@ -195,6 +195,26 @@ color_classes {
color: DARK_GREY_BG_COLOR;
desc: "Base of a entry's scroller widget";
}
color_class { name: "index_bg";
color: 0 0 0 0;
desc: "Background of a index widget";
}
color_class { name: "index_highlight_text";
color: FN_COL_HIGHLIGHT;
desc: "Text of a hlghlight item text";
}
color_class { name: "index_item_bg";
color: 0 0 0 0;
desc: "Background of a index item object";
}
color_class { name: "index_item_text";
color: FN_COL_DEFAULT;
desc: "Text of a index item";
}
color_class { name: "index_item_text_selected";
color: FN_COL_HIGHLIGHT;
desc: "Text of a selected index item";
}
color_class { name: "label_text";
color: FN_COL_DEFAULT;
desc: "Text of a generic label";

View File

@ -1,5 +1,12 @@
group { name: "elm/index/base/vertical/default";
parts {
part { name: "bg"; type: RECT;
description { state: "default" 0.0;
rel1.to: "elm.swallow.index.0";
rel2.to: "elm.swallow.index.0";
color_class: "index_bg";
}
}
part { name: "clip"; type: RECT; mouse_events: 0;
description { state: "default" 0.0;
visible: 0;
@ -55,13 +62,14 @@ group { name: "elm/index/base/vertical/default";
relative: 0.0 0.5;
offset: -16 -1;
}
color: FN_COL_HIGHLIGHT;
color_class: "index_highlight_text";
text {
font: FN;
size: 20;
min: 1 1;
ellipsis: -1;
align: 1.0 0.5;
text_class: "index_highlight_text";
}
}
}
@ -143,6 +151,13 @@ group { name: "elm/index/item/vertical/default";
image: "darken_rounded_square_half.png" COMP;
}
parts {
part { name: "bg"; type: RECT;
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
color_class: "index_item_bg";
}
}
part { name: "base"; mouse_events: 0;
description { state: "default" 0.0;
image {
@ -171,13 +186,14 @@ group { name: "elm/index/item/vertical/default";
relative: 0.5 1.0;
offset: -1 -1;
}
color: FN_COL_DEFAULT;
color_class: "index_item_text";
text {
font: FN;
size: 10;
min: 1 1;
ellipsis: -1;
align: 0.5 0.5;
text_class: "index_item_text";
}
}
description { state: "active" 0.0;
@ -201,13 +217,14 @@ group { name: "elm/index/item/vertical/default";
relative: 0.5 1.0;
offset: -1 -1;
}
color: FN_COL_HIGHLIGHT;
color_class: "index_item_text_selected";
text {
font: FN;
size: 10;
min: 0 0;
align: 0.5 0.5;
text_source: "elm.text";
text_class: "index_item_text_selected";
}
}
description { state: "active" 0.0;
@ -248,6 +265,13 @@ group { name: "elm/index/item_odd/vertical/default";
data.item: "stacking" "above";
data.item: "selectraise" "on";
parts {
part { name: "bg"; type: RECT;
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
color_class: "index_item_bg";
}
}
part { name: "base"; mouse_events: 0;
description { state: "default" 0.0;
image {
@ -276,13 +300,14 @@ group { name: "elm/index/item_odd/vertical/default";
relative: 0.5 1.0;
offset: -1 -1;
}
color: FN_COL_DEFAULT;
color_class: "index_item_text";
text {
font: FN;
size: 10;
min: 1 1;
ellipsis: -1;
align: 0.5 0.5;
text_class: "index_item_text";
}
}
description { state: "active" 0.0;
@ -306,13 +331,14 @@ group { name: "elm/index/item_odd/vertical/default";
relative: 0.5 1.0;
offset: -1 -1;
}
color: FN_COL_HIGHLIGHT;
color_class: "index_item_text_selected";
text {
font: FN;
size: 10;
min: 0 0;
align: 0.5 0.5;
text_source: "elm.text";
text_class: "index_item_text_selected";
}
}
description { state: "active" 0.0;

View File

@ -70,6 +70,10 @@ static const Elm_Text_Class _elm_text_classes[] = {
{"entry_text", "Entry Text"},
{"entry_text_disabled", "Entry Disabled Text"},
{"entry_guide_text", "Entry Guide Text"},
{"entry", "Entry"},
{"index_highlight_text," "Index Highlight Text"},
{"index_item_text," "Index Items Text"},
{"index_item_text_selected," "Index Selected Items Text"},
{"title_bar", "Title Bar"},
{"list_item", "List Items"},
{"grid_item", "Grid Items"},
@ -118,6 +122,11 @@ static const Elm_Color_Class _elm_color_classes[] = {
{"grid_item", "Grid Item Text"},
{"grid_item_disabled", "Grid Item Disabled Text"},
{"grid_item_selected", "Grid Item Selected Text"},
{"index_bg", "Index Background"},
{"index_item_bg", "Index Item Background"},
{"index_highlight_text," "Index Highlight Text"},
{"index_item_text," "Index Items Text"},
{"index_item_text_selected," "Index Selected Items Text"},
{"toolbar_item", "Toolbar Item Text"},
{"toolbar_item_disabled", "Toolbar Item Disabled Text"},
{"toolbar_item_selected", "Toolbar Item Selected Text"},