docs: efl_ui_text: fill gaps in efl ui text eo file documentation

This commit is contained in:
Stefan Schmidt 2016-11-17 16:56:30 +01:00
parent 78aa2dc625
commit 246c6dc447
1 changed files with 28 additions and 28 deletions

View File

@ -90,7 +90,7 @@ class Efl.Ui.Text (Elm.Layout, Elm.Interface_Scrollable, Efl.Ui.Clickable,
]] ]]
} }
values { values {
ondemand: bool; [[If true, the input panel will be shown in case of only Mouse up event. ondemand: bool; [[If $true, the input panel will be shown in case of only Mouse up event.
(Focus event will be ignored.) (Focus event will be ignored.)
]] ]]
} }
@ -141,7 +141,7 @@ class Efl.Ui.Text (Elm.Layout, Elm.Interface_Scrollable, Efl.Ui.Clickable,
[[Get the language mode of the input panel.]] [[Get the language mode of the input panel.]]
} }
values { values {
lang: Elm.Input.Panel.Lang; [[language to be set to the input panel.]] lang: Elm.Input.Panel.Lang; [[Language to be set to the input panel.]]
} }
} }
@property selection_handler_disabled { @property selection_handler_disabled {
@ -170,7 +170,7 @@ class Efl.Ui.Text (Elm.Layout, Elm.Interface_Scrollable, Efl.Ui.Clickable,
]] ]]
} }
values { values {
variation: int; [[layout variation type.]] variation: int; [[Layout variation type.]]
} }
} }
@property autocapital_type { @property autocapital_type {
@ -241,7 +241,7 @@ class Efl.Ui.Text (Elm.Layout, Elm.Interface_Scrollable, Efl.Ui.Clickable,
[[Get the input panel layout of the entry.]] [[Get the input panel layout of the entry.]]
} }
values { values {
layout: Elm.Input.Panel.Layout(Elm.Input.Panel.Layout.invalid); [[layout type.]] layout: Elm.Input.Panel.Layout(Elm.Input.Panel.Layout.invalid); [[Layout type.]]
} }
} }
@property input_panel_return_key_type { @property input_panel_return_key_type {
@ -266,7 +266,7 @@ class Efl.Ui.Text (Elm.Layout, Elm.Interface_Scrollable, Efl.Ui.Clickable,
[[Get the attribute to show the input panel automatically.]] [[Get the attribute to show the input panel automatically.]]
} }
values { values {
enabled: bool; [[If true, the input panel is appeared when entry is clicked or has a focus.]] enabled: bool; [[If $true, the input panel is appeared when entry is clicked or has a focus.]]
} }
} }
@property input_panel_return_key_autoenabled { @property input_panel_return_key_autoenabled {
@ -279,7 +279,7 @@ class Efl.Ui.Text (Elm.Layout, Elm.Interface_Scrollable, Efl.Ui.Clickable,
]] ]]
} }
values { values {
enabled: bool; [[If $enabled is true, the return key is automatically disabled when the entry has no text.]] enabled: bool; [[If $enabled is $true, the return key is automatically disabled when the entry has no text.]]
} }
} }
@property imf_context { @property imf_context {
@ -291,7 +291,7 @@ class Efl.Ui.Text (Elm.Layout, Elm.Interface_Scrollable, Efl.Ui.Clickable,
IMPORTANT: Many functions may change (i.e delete and create a new one) IMPORTANT: Many functions may change (i.e delete and create a new one)
the internal input method context. Do NOT cache the returned object. the internal input method context. Do NOT cache the returned object.
]] ]]
return: void_ptr; return: void_ptr; [[Input method context]]
} }
} }
item_provider_prepend { item_provider_prepend {
@ -413,7 +413,7 @@ class Efl.Ui.Text (Elm.Layout, Elm.Interface_Scrollable, Efl.Ui.Clickable,
} }
cursor_new { cursor_new {
[[Creates and returns a new cursor for the text.]] [[Creates and returns a new cursor for the text.]]
return: Efl.Canvas.Text.Cursor; return: Efl.Canvas.Text.Cursor; [[Text cursor]]
} }
} }
implements { implements {
@ -475,26 +475,26 @@ class Efl.Ui.Text (Elm.Layout, Elm.Interface_Scrollable, Efl.Ui.Clickable,
Efl.Ui.Text.Interactive.editable.set; Efl.Ui.Text.Interactive.editable.set;
} }
events { events {
activated; activated; [[Called when entry got activated]]
changed; changed; [[Called when entry changed]]
changed,user; [[Called when object changed due to user interaction]] changed,user; [[Called when object changed due to user interaction]]
validate; validate; [[Called when validating]]
context,open; context,open; [[Called when context menu was opened]]
anchor,clicked; anchor,clicked; [[Called when anchor was clicked]]
rejected; rejected; [[Called when entry was rejected]]
maxlength,reached; maxlength,reached; [[Called when maximum entry length has been reached]]
preedit,changed; preedit,changed; [[Called when entry preedit changed]]
press; press; [[Called when entry pressed]]
redo,request; redo,request; [[Called when redo was requested]]
undo,request; undo,request; [[Called when undo was requested]]
text,set,done; text,set,done; [[Called when text set finished]]
aborted; aborted; [[Called when entry was aborted]]
anchor,down; anchor,down; [[Called on anchor down]]
anchor,hover,opened; anchor,hover,opened; [[Called when hover opened]]
anchor,in; anchor,in; [[Called on anchor in]]
anchor,out; anchor,out; [[Called on anchor out]]
anchor,up; anchor,up; [[called on anchor up]]
cursor,changed; cursor,changed; [[Called on cursor changed]]
cursor,changed,manual; cursor,changed,manual; [[Called on manual cursor change]]
} }
} }