diff options
author | Ali Alzyod <ali198724@gmail.com> | 2020-01-03 12:06:25 +0100 |
---|---|---|
committer | Xavi Artigas <xavierartigas@yahoo.es> | 2020-01-08 16:11:38 +0100 |
commit | 43ad91ee406cbcc5715486813324a2eecbd5ece4 (patch) | |
tree | 2285bb8eae6c389a751057b188964a7dd11a6461 /src/lib/efl | |
parent | 5140c43960c9fc29dce279e73035bc7d2fd9146f (diff) |
Text_Format_Horizontal_Alignment_Auto_Type: rename enums, and Doc details
Summary: Text_Format_Horizontal_Alignment_Auto_Type: rename enums, and Doc details
Reviewers: woohyun, ali.alzyod
Reviewed By: ali.alzyod
Subscribers: cedric, #reviewers, #committers
Tags: #efl
Maniphest Tasks: T7939
Differential Revision: https://phab.enlightenment.org/D10993
Diffstat (limited to 'src/lib/efl')
-rw-r--r-- | src/lib/efl/interfaces/efl_text_format.eo | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/lib/efl/interfaces/efl_text_format.eo b/src/lib/efl/interfaces/efl_text_format.eo index 5c974a675e..03a44295a5 100644 --- a/src/lib/efl/interfaces/efl_text_format.eo +++ b/src/lib/efl/interfaces/efl_text_format.eo | |||
@@ -9,10 +9,10 @@ enum @beta Efl.Text_Format_Wrap { | |||
9 | } | 9 | } |
10 | 10 | ||
11 | enum @beta Efl.Text_Format_Horizontal_Alignment_Auto_Type { | 11 | enum @beta Efl.Text_Format_Horizontal_Alignment_Auto_Type { |
12 | [[Auto-horizontal alignment of the text.]] | 12 | [[Auto-horizontal alignment setting for the text (Left-To-Right or Right-To-Left).]] |
13 | none, [[No auto-alignment rule.]] | 13 | none, [[No auto-alignment rule: Horizontal Alignment is decided by @Efl.Text_Format.text_horizontal_align]] |
14 | normal, [[Respects LTR/RTL (bidirectional) settings.]] | 14 | auto, [[Respects LTR/RTL (bidirectional) characters found inside the text content.]] |
15 | locale, [[Respects locale's language settings.]] | 15 | locale, [[Respects the system's language settings.]] |
16 | end [[Text is placed at opposite side of LTR/RTL (bidirectional) settings.]] | 16 | end [[Text is placed at opposite side of LTR/RTL (bidirectional) settings.]] |
17 | } | 17 | } |
18 | 18 | ||
@@ -55,7 +55,7 @@ interface @beta Efl.Text_Format { | |||
55 | } | 55 | } |
56 | 56 | ||
57 | @property text_horizontal_align_auto_type { | 57 | @property text_horizontal_align_auto_type { |
58 | [[Horizontal alignment of text.]] | 58 | [[Specifies when the text's horizontal alignment should be set automatically.]] |
59 | values { | 59 | values { |
60 | value: Efl.Text_Format_Horizontal_Alignment_Auto_Type; [[Alignment type.]] | 60 | value: Efl.Text_Format_Horizontal_Alignment_Auto_Type; [[Alignment type.]] |
61 | } | 61 | } |
@@ -63,7 +63,12 @@ interface @beta Efl.Text_Format { | |||
63 | 63 | ||
64 | @property text_horizontal_align { | 64 | @property text_horizontal_align { |
65 | [[Horizontal alignment of text. $[0.0] means "left" | 65 | [[Horizontal alignment of text. $[0.0] means "left" |
66 | and $[1.0] means "right".]] | 66 | and $[1.0] means "right". |
67 | Setting this value also sets @.text_horizontal_align_auto_type to | ||
68 | @Efl.Text_Format_Horizontal_Alignment_Auto_Type.none. | ||
69 | This value is ignored when @.text_horizontal_align_auto_type is set to anything other than | ||
70 | @Efl.Text_Format_Horizontal_Alignment_Auto_Type.none. | ||
71 | ]] | ||
67 | values { | 72 | values { |
68 | value: double; [[Alignment value between $[0.0] and $[1.0].]] | 73 | value: double; [[Alignment value between $[0.0] and $[1.0].]] |
69 | } | 74 | } |