liveedit: Add text shadow in live edit template

Summary: Add text shadow in live edit template to identify text clearly

Reviewers: Hermet

Differential Revision: https://phab.enlightenment.org/D1522
This commit is contained in:
Jaehyun Cho 2014-10-07 11:30:44 +09:00 committed by ChunEon Park
parent b9ee49a97e
commit cdcc68fba1
2 changed files with 4 additions and 2 deletions

View File

@ -31,8 +31,10 @@ group { name: "TEXT_bg";
parts { parts {
part { name: "text"; part { name: "text";
type: TEXT; type: TEXT;
effect: SHADOW;
description { state: "default" 0.0; description { state: "default" 0.0;
color: 255 255 255 255; color: 255 255 255 255;
color3: 0 0 0 128;
text { text {
size: 10; size: 10;
font: FN; font: FN;

View File

@ -104,14 +104,14 @@ const char *TEMPLATE_PART_TEXT[TEMPLATE_PART_TEXT_LINE_CNT] =
" type: TEXT;<br/>", " type: TEXT;<br/>",
" scale: 1;<br/>", " scale: 1;<br/>",
" mouse_events: 1;<br/>", " mouse_events: 1;<br/>",
" //effect: SHADOW;<br/>", " effect: SHADOW;<br/>",
" description { state: \"default\" 0.0;<br/>", " description { state: \"default\" 0.0;<br/>",
" align: 0.5 0.5;<br/>", " align: 0.5 0.5;<br/>",
" fixed: 0 0;<br/>", " fixed: 0 0;<br/>",
" min: 0 0;<br/>", " min: 0 0;<br/>",
" color: 255 255 255 255;<br/>", " color: 255 255 255 255;<br/>",
" //color2: 255 255 255 255;<br/>", " //color2: 255 255 255 255;<br/>",
" //color3: 255 255 255 255;<br/>", " color3: 0 0 0 128;<br/>",
" visible: 1;<br/>", " visible: 1;<br/>",
" text {<br/>", " text {<br/>",
" size: 10;<br/>", " size: 10;<br/>",