diff options
author | Ali Alzyod <ali198724@gmail.com> | 2020-01-23 16:07:42 +0900 |
---|---|---|
committer | WooHyun Jung <wh0705.jung@samsung.com> | 2020-01-23 16:07:42 +0900 |
commit | 3d2f99af9eca265e0b166a2b9f2686e6ba3e9f83 (patch) | |
tree | a6b7ee4908f64e212e004134bd4d813e26627b5e /src/lib/efl | |
parent | 09e3972d14aaf2b61690d119660490cf9d9929a4 (diff) | |
download | efl-3d2f99af9eca265e0b166a2b9f2686e6ba3e9f83.tar.gz |
efl.text.interactive: use Eina_Int_Range for selection range event
Summary:
1- add new Eina type (Eina_Int_Range). which represents int range (start, Len).
2- Use this type instead of Efl.Text_Range with selection events.
Reviewers: cedric, woohyun, bu5hm4n, segfaultxavi, zmike
Reviewed By: woohyun
Subscribers: cedric, #reviewers, #committers
Tags: #efl
Maniphest Tasks: T8570
Differential Revision: https://phab.enlightenment.org/D11128
Diffstat (limited to 'src/lib/efl')
-rw-r--r-- | src/lib/efl/interfaces/efl_text_types.eot | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lib/efl/interfaces/efl_text_types.eot b/src/lib/efl/interfaces/efl_text_types.eot index d32ab8d2d3..956a8085c1 100644 --- a/src/lib/efl/interfaces/efl_text_types.eot +++ b/src/lib/efl/interfaces/efl_text_types.eot @@ -21,10 +21,3 @@ struct @beta Efl.Text_Change_Info { insertion: bool; [[$true if the content was inserted, $false if removed]] mergeable: bool; [[$true if can be merged with the previous one. Used for example with insertion when something is already selected]] } - -struct @beta Efl.Text_Range { - [[This structure includes text position range (from/to). - ]] - start: int; [[The start postion.]] - end: int; [[The end position.]] -} |