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.
This commit is contained in:
Stefan Schmidt 2017-08-31 11:58:52 +02:00
parent 7c4bf80fd9
commit 299a507319
1 changed files with 9 additions and 9 deletions

View File

@ -12,27 +12,27 @@ class Efl.Ui.Textpath (Efl.Ui.Layout, Efl.Object, Efl.Text, Efl.Gfx.Path)
circle_set { circle_set {
[[Set a circle with given center, radius, and start angle.]] [[Set a circle with given center, radius, and start angle.]]
params { params {
@in x: double; @in x: double; [[X coordinate of center]]
@in y: double; @in y: double; [[Y coordinate of center]]
@in radius: double; @in radius: double; [[Radius of the circle]]
@in start_angle: double; @in start_angle: double; [[Start angle of the circle]]
@in direction: Efl.Ui.Textpath.Direction; @in direction: Efl.Ui.Textpath.Direction; [[Textpath direction]]
} }
} }
@property autofit { @property autofit {
[[The ability to fit the text within the path. [[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. same as its size. Otherwise, text will occupied the whole path.
By default, it is EINA_TRUE.]] By default, it is $true.]]
values { values {
autofit: bool; autofit: bool; [[Autofit enabled if $true, $false otherwise]]
} }
} }
@property slice_number { @property slice_number {
[[The number of slices. The larger the number of slice_num is, [[The number of slices. The larger the number of slice_num is,
The better the text follows the path.]] The better the text follows the path.]]
values { values {
slice_no: int; slice_no: int; [[Number of slices]]
} }
} }
@property ellipsis { @property ellipsis {