From 299a5073191194a1bc6968ddde1f9d6ada2fb7b3 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Thu, 31 Aug 2017 11:58:52 +0200 Subject: [PATCH] docs: efl_ui_textpath: add documentation for all other missing parts When bringing in new EO files I would appreciate if people would document all parts. Even if they seem small and self explaining. --- src/lib/elementary/efl_ui_textpath.eo | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/lib/elementary/efl_ui_textpath.eo b/src/lib/elementary/efl_ui_textpath.eo index 72091b6c2b..a48a4bce1c 100644 --- a/src/lib/elementary/efl_ui_textpath.eo +++ b/src/lib/elementary/efl_ui_textpath.eo @@ -12,27 +12,27 @@ class Efl.Ui.Textpath (Efl.Ui.Layout, Efl.Object, Efl.Text, Efl.Gfx.Path) circle_set { [[Set a circle with given center, radius, and start angle.]] params { - @in x: double; - @in y: double; - @in radius: double; - @in start_angle: double; - @in direction: Efl.Ui.Textpath.Direction; + @in x: double; [[X coordinate of center]] + @in y: double; [[Y coordinate of center]] + @in radius: double; [[Radius of the circle]] + @in start_angle: double; [[Start angle of the circle]] + @in direction: Efl.Ui.Textpath.Direction; [[Textpath direction]] } } @property autofit { [[The ability to fit the text within the path. - Set it to EINA_TRUE to let text occupy only portion + Set it to $true to let text occupy only portion same as its size. Otherwise, text will occupied the whole path. - By default, it is EINA_TRUE.]] + By default, it is $true.]] values { - autofit: bool; + autofit: bool; [[Autofit enabled if $true, $false otherwise]] } } @property slice_number { [[The number of slices. The larger the number of slice_num is, The better the text follows the path.]] values { - slice_no: int; + slice_no: int; [[Number of slices]] } } @property ellipsis {