Tizen Native API  7.0

Functions

void elm_textpath_circular_set (Efl_Ui_Textpath *obj, double radius, double start_angle, Efl_Ui_Textpath_Direction direction)
 Set a circle with given radius, and start angle. The circle center will be decided by the object center position.
void elm_textpath_slice_number_set (Efl_Ui_Textpath *obj, int slice_no)
 The number of slices. The larger the number of slice_num is, The better the text follows the path.
int elm_textpath_slice_number_get (const Efl_Ui_Textpath *obj)
 The number of slices. The larger the number of slice_num is, The better the text follows the path.
void elm_textpath_ellipsis_set (Efl_Ui_Textpath *obj, Eina_Bool ellipsis)
 Control the ellipsis behavior of the textpath.
Eina_Bool elm_textpath_ellipsis_get (const Efl_Ui_Textpath *obj)
 Control the ellipsis behavior of the textpath.
EINA_DEPRECATED EAPI void elm_textpath_circle_set (Efl_Ui_Textpath *obj, double x, double y, double radius, double start_angle, Efl_Ui_Textpath_Direction direction)
 Set a circle with given center, radius, and start angle.
Evas_Objectelm_textpath_add (Evas_Object *parent)
 Add a new textpath to the parent.
void elm_textpath_text_user_style_set (Evas_Object *obj, const char *style)
 Set the user text style.

Enumeration Type Documentation

Textpath direction

Enumerator:
EFL_UI_TEXTPATH_DIRECTION_CW 

Clockwise

EFL_UI_TEXTPATH_DIRECTION_CCW 

Counter-clockwise

EFL_UI_TEXTPATH_DIRECTION_CW_CENTER 

Clockwise, middle of text will be at start angle

Since (EFL) :
1.23
EFL_UI_TEXTPATH_DIRECTION_CCW_CENTER 

Counter-clockwise, middle of text will be at start angle

Since (EFL) :
1.23

Function Documentation

Add a new textpath to the parent.

Parameters:
[in]parentThe parent object
Returns:
The new object or NULL if it cannot be created
Since (EFL) :
1.22
Since :
5.5
EINA_DEPRECATED EAPI void elm_textpath_circle_set ( Efl_Ui_Textpath *  obj,
double  x,
double  y,
double  radius,
double  start_angle,
Efl_Ui_Textpath_Direction  direction 
)

Set a circle with given center, radius, and start angle.

Parameters:
[in]objThe object.
[in]xX coordinate of center
[in]yY coordinate of center
[in]radiusRadius of the circle
[in]start_angleStart angle of the circle
[in]directionTextpath direction
Deprecated:
Use elm_textpath_circular_set() instead.
Since :
5.5
void elm_textpath_circular_set ( Efl_Ui_Textpath *  obj,
double  radius,
double  start_angle,
Efl_Ui_Textpath_Direction  direction 
)

Set a circle with given radius, and start angle. The circle center will be decided by the object center position.

Parameters:
[in]objThe object.
[in]radiusRadius of the circle
[in]start_angleStart angle of the circle
[in]directionTextpath direction
Since (EFL) :
1.23
Since :
5.5
Eina_Bool elm_textpath_ellipsis_get ( const Efl_Ui_Textpath *  obj)

Control the ellipsis behavior of the textpath.

Parameters:
[in]objThe object.
Returns:
To ellipsis text or not
Since :
5.5
void elm_textpath_ellipsis_set ( Efl_Ui_Textpath *  obj,
Eina_Bool  ellipsis 
)

Control the ellipsis behavior of the textpath.

Parameters:
[in]objThe object.
[in]ellipsisTo ellipsis text or not
Since :
5.5
int elm_textpath_slice_number_get ( const Efl_Ui_Textpath *  obj)

The number of slices. The larger the number of slice_num is, The better the text follows the path.

Parameters:
[in]objThe object.
Returns:
Number of slices
void elm_textpath_slice_number_set ( Efl_Ui_Textpath *  obj,
int  slice_no 
)

The number of slices. The larger the number of slice_num is, The better the text follows the path.

Parameters:
[in]objThe object.
[in]slice_noNumber of slices
void elm_textpath_text_user_style_set ( Evas_Object obj,
const char *  style 
)

Set the user text style.

Parameters:
[in]objThe textpath object
[in]styleThe user text style. If the sytle is $null, the default style will be applied
Note:
ellipsis in the style will be ignored since textpath supports ellipsis API.
See also:
elm_textpath_ellipsis_set()
Since (EFL) :
1.25