summaryrefslogtreecommitdiff
path: root/src/examples
diff options
context:
space:
mode:
authorali <ali198724@gmail.com>2019-12-20 09:49:41 +0100
committerXavi Artigas <xavierartigas@yahoo.es>2019-12-20 09:58:27 +0100
commit5cf7fa7670a3160ad01171116b392a3a6757463f (patch)
tree6c54d4eac560d9b0a62ab3d9714548a1fe6de8fa /src/examples
parente16b32c37643d3243b2350df053474d84717c2a2 (diff)
downloadefl-5cf7fa7670a3160ad01171116b392a3a6757463f.tar.gz
efl.text.style: rename methods/properties and add text_ prefix
Summary: efl.text.style: rename methods and properties this change will avoid conflict in the future with other interfaces or class methods. ``` Efl.Text_Style.text_color { set; get; } Efl.Text_Style.text_backing_type { set; get; } Efl.Text_Style.text_background_color { set; get;} //this was backing_color Efl.Text_Style.text_underline_type { set; } Efl.Text_Style.text_underline_color { set; get; } Efl.Text_Style.text_underline2_color { set; get; } Efl.Text_Style.text_underline_dashed_color { set; get; } Efl.Text_Style.text_underline_height { set; } Efl.Text_Style.text_underline_dashed_width { set; } Efl.Text_Style.text_underline_dashed_gap { set; } Efl.Text_Style.text_strikethrough_type { set; } Efl.Text_Style.text_strikethrough_color { set; get; } Efl.Text_Style.text_effect_type { set; } Efl.Text_Style.text_shadow_direction { set; } Efl.Text_Style.text_outline_color { set; get; } Efl.Text_Style.text_shadow_color { set; get; } Efl.Text_Style.text_glow_color { set; get; } Efl.Text_Style.text_glow2_color { set; get; } ``` T8533 Reviewers: woohyun, segfaultxavi, bu5hm4n, zmike, cedric Reviewed By: segfaultxavi Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D10897
Diffstat (limited to 'src/examples')
-rw-r--r--src/examples/elementary/efl_canvas_layout_text.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/examples/elementary/efl_canvas_layout_text.c b/src/examples/elementary/efl_canvas_layout_text.c
index bafd0dd2e5..268dd487d0 100644
--- a/src/examples/elementary/efl_canvas_layout_text.c
+++ b/src/examples/elementary/efl_canvas_layout_text.c
@@ -134,7 +134,7 @@ efl_main(void *data EINA_UNUSED,
efl_text_markup_set(efl_part(layout, "text"), "This is an example text. This is a layout text part.");
efl_text_wrap_set(efl_part(layout, "text"), wraps[wrap_itr].wrap);
- efl_text_normal_color_set(efl_part(layout, "text"), 255, 255, 0, 255);
+ efl_text_color_set(efl_part(layout, "text"), 255, 255, 0, 255);
efl_text_font_family_set(efl_part(layout, "text"), "Serif");
efl_text_font_size_set(efl_part(layout, "text"), 12);