summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavi Artigas <xavierartigas@yahoo.es>2019-02-07 18:01:56 +0100
committerXavi Artigas <xavierartigas@yahoo.es>2019-07-26 09:48:16 +0200
commite40f666807ea4dfd19dfd37b96c8da5a56c7a62e (patch)
treeb30820164c7c1559e6a0f4232d2ce176cb25dcd9
parente1e4f904464230460bcd12935529e45793901b09 (diff)
downloadefl-e40f666807ea4dfd19dfd37b96c8da5a56c7a62e.tar.gz
Efl.Ui.Text: Minor tweaks on the documentation.
-rw-r--r--src/lib/elementary/efl_ui_selection_types.eot2
-rw-r--r--src/lib/elementary/efl_ui_text.eo24
2 files changed, 11 insertions, 15 deletions
diff --git a/src/lib/elementary/efl_ui_selection_types.eot b/src/lib/elementary/efl_ui_selection_types.eot
index a8d156c37e..cbe5e0dc7b 100644
--- a/src/lib/elementary/efl_ui_selection_types.eot
+++ b/src/lib/elementary/efl_ui_selection_types.eot
@@ -11,7 +11,7 @@ enum @beta Efl.Ui.Selection_Format
{
[[Selection format]]
targets = -1, [[For matching every possible atom]]
- none = 0x0, [[Content is from outside of Elementary]]
+ none = 0x0, [[Content is from outside of EFL]]
text = 0x01, [[Plain unformatted text: Used for things that don't want rich markup]]
markup = 0x2, [[Edje textblock markup, including inline images]]
image = 0x4, [[Images]]
diff --git a/src/lib/elementary/efl_ui_text.eo b/src/lib/elementary/efl_ui_text.eo
index 4ebb3faec8..d34b2822d2 100644
--- a/src/lib/elementary/efl_ui_text.eo
+++ b/src/lib/elementary/efl_ui_text.eo
@@ -5,24 +5,20 @@ class @beta Efl.Ui.Text extends Efl.Ui.Layout_Base implements Efl.Ui.Clickable,
Efl.Access.Text, Efl.Access.Editable.Text, Efl.File,
Efl.Ui.Selectable, Efl.Text_Interactive, Efl.Text_Markup
{
- [[Efl UI text class]]
+ [[A flexible text widget which can be static (as a label) or editable by
+ the user (as a text entry). It provides all sorts of editing facilities
+ like automatic scrollbars, virtual keyboard, clipboard, configurable
+ context menus, password mode or autocapitalization, for example.]]
methods {
@property scrollable {
- set {
- [[Enable or disable scrolling in entry
+ [[Enable or disable scrolling in the widget.
- Normally the entry is not scrollable unless you enable it with this call.
- ]]
- }
- get {
- [[Get the scrollable state of the entry
-
- Normally the entry is not scrollable. This gets the scrollable state
- of the entry.
- ]]
- }
+ When scrolling is enabled scrollbars will appear if the text does
+ not fit the widget size.]]
+ set {}
+ get {}
values {
- scroll: bool; [[$true if it is to be scrollable, $false otherwise.]]
+ scroll: bool; [[$true to enable scrolling. Default is $false.]]
}
}
@property input_panel_show_on_demand {