From 0375783044c088e3e46ed1f4fe6099035397921c Mon Sep 17 00:00:00 2001 From: Jinyong Park Date: Mon, 25 Jan 2016 15:32:11 +0900 Subject: [PATCH] [2.4][online-doc] change text and make hyperlink, JIRA : EFL-237 Change-Id: Icdfc48ebcf6d549194005f5c208d9c3273c6182d Signed-off-by: Jinyong Park --- .../html/native/efl/efl_overview_n.htm | 37 +++++++++++----------- .../html/native/efl/ui_components_n.htm | 20 ++++++------ 2 files changed, 30 insertions(+), 27 deletions(-) diff --git a/org.tizen.ui.practices/html/native/efl/efl_overview_n.htm b/org.tizen.ui.practices/html/native/efl/efl_overview_n.htm index 647f8c4..1cfd26f 100644 --- a/org.tizen.ui.practices/html/native/efl/efl_overview_n.htm +++ b/org.tizen.ui.practices/html/native/efl/efl_overview_n.htm @@ -44,24 +44,25 @@

The general UI design features include:

@@ -72,14 +73,14 @@

The key characteristics of EFL include:

-

For more information about events related to Elementary objects, see Event Handling. For more information about Evas objects and smart objects, see Evas Rendering Concept and Method.

+

For more information about events related to Elementary objects, see Event Handling. For more information about Evas objects and smart objects, see Graphical object and Evas Rendering Concept and Method.

Managing Elementary Profiles

@@ -334,7 +334,7 @@ elm_config_fps_set(60.0);

Elementary uses Edje to theme its UI components. Edje provides a default theme for each UI component in an application. You can change the theme using the ELM_THEME environment variable. You can also modify the theme globally with the elementary_config utility.

-

For custom styles, use extensions. Extensions allow you to write styles for specific UI components. Add a new extension to the list of Elementary themes with the elm_theme_extension_add() function, and apply the new style to the UI component with the elm_object_style_set() function. Once set, the extension replaces the default theme of the UI component.

+

For custom UI Components, use extensions. Extensions allow you to write styles for specific UI components. Add a new extension to the list of Elementary themes with the elm_theme_extension_add() function, and apply the new style to the UI component with the elm_object_style_set() function. Once set, the extension replaces the default theme of the UI component.

@@ -360,6 +360,8 @@ elm_config_fps_set(60.0);
+

For more information on custom styles, see Customizing UI Components.

+

Managing Focus

When an Elementary object has the focus, input events are directly passed to that object in the application window. The focused object can also change its decoration to show the user where the focus is. In an Elementary application, only one object can have the focus at a time.

@@ -379,8 +381,6 @@ elm_config_fps_set(60.0);

Elementary supports focus chains that allow you to cycle through all the focusable objects in a window. By default, the focus chain is defined by the order in which the UI components are added to the code. It is also possible to define custom focus chains, when needed.

-

For more information on focus, see Component Focus.

-

To manage the focus:

+

For more information on focus, see Component Focus.

+

Scaling UI Components

Elementary, through its configuration API (elm_config), provides a way to scale UI components with two different parameters. Finger size parameter is used when the interactive zones (clickable, editable) of the UI components need to be scaled in order to be comfortably used with a finger. Scale parameter is responsible for scaling readable parts of a UI component (text or icons for example), so that it is more visible in the user interface.

@@ -472,7 +474,7 @@ elm_config_scale_set(2.0); elm_object_scale_set(button, 2.0); -

Example

+

Example

This chapter shows the visual result of finger size and scaling factors modification.

@@ -692,4 +694,4 @@ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga - \ No newline at end of file + -- 2.7.4