From 3045dabe400b2c2ea79ffc739300eba27087815d Mon Sep 17 00:00:00 2001 From: Jiyoun Park Date: Thu, 21 Dec 2017 23:19:45 +0900 Subject: [PATCH] edje: Import missing eo descriptions for ellipsize feature by Younbok Shin @tizen_fix --- src/lib/edje/efl_canvas_layout.eo | 81 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) diff --git a/src/lib/edje/efl_canvas_layout.eo b/src/lib/edje/efl_canvas_layout.eo index c8b1477..680ea65 100644 --- a/src/lib/edje/efl_canvas_layout.eo +++ b/src/lib/edje/efl_canvas_layout.eo @@ -156,6 +156,87 @@ class Efl.Canvas.Layout (Efl.Canvas.Group, Efl.File, Efl.Container, Efl.Part, /******* * END * *******/ + /*********************************************************************************** + * TIZEN_ONLY_FEATURE: ellipsize.marquee, ellipsize.fade for TEXTBLOCK, TEXT part. * + ***********************************************************************************/ + @property part_text_marquee_duration { + set { + [[Sets the duration for text's marquee. + + Do not use this API without understanding whats going on. + It is made for internal usage. + \@internal + ]] + return: bool; [[$true, on success or $false, on error]] + } + get { + [[Gets the duration for text's marquee. + + Do not use this API without understanding whats going on. + It is made for internal usage. + \@internal + ]] + } + keys { + part: string; [[The part name]] + } + values { + duration: double; [[The duration. 0.0 for respect EDC's duration value.]] + } + } + @property part_text_marquee_speed { + set { + [[Sets the speed for text's marquee. + + Do not use this API without understanding whats going on. + It is made for internal usage. + \@internal + ]] + return: bool; [[$true, on success or $false, on error]] + } + get { + [[Gets the speed for text's marquee. + + Do not use this API without understanding whats going on. + It is made for internal usage. + \@internal + ]] + } + keys { + part: string; [[The part name]] + } + values { + speed: double; [[The speed. 0.0 for respect EDC's speed value.]] + } + } + @property part_text_marquee_always { + set { + [[Sets the always mode for text's marquee. + + Do not use this API without understanding whats going on. + It is made for internal usage. + \@internal + ]] + return: bool; [[$true, on success or $false, on error]] + } + get { + [[Gets the always mode for text's marquee. + + Do not use this API without understanding whats going on. + It is made for internal usage. + \@internal + ]] + } + keys { + part: string; [[The part name]] + } + values { + always: bool; [[The always mode]] + } + } + /******* + * END * + *******/ } implements { Efl.Gfx.visible { set; } -- 2.7.4