Object Name Function

Functions that retrieve and set the name of an evas object. More...

Functions

void evas_object_name_set (Evas_Object *obj, const char *name)
 Sets the name of the given evas object to the given name.
const char * evas_object_name_get (Evas_Object *obj)
 Retrieves the name of the given evas object.
Evas_Objectevas_object_name_find (Evas *e, const char *name)
 Retrieves the object on the given evas with the given name.

Detailed Description

Functions that retrieve and set the name of an evas object.


Function Documentation

Evas_Object* evas_object_name_find Evas e,
const char *  name
 

Retrieves the object on the given evas with the given name.

Parameters:
e The given evas.
name The given name.
Returns:
If successful, the evas object with the given name. Otherwise, NULL.

const char* evas_object_name_get Evas_Object obj  ) 
 

Retrieves the name of the given evas object.

Parameters:
obj The given object.
Returns:
The name of the object. NULL if no name has been given to the object.

void evas_object_name_set Evas_Object obj,
const char *  name
 

Sets the name of the given evas object to the given name.

Parameters:
obj The given object.
name The given name.