Go to the source code of this file.
#define E_OBJ_NAME "edje_container_object" |
#define E_SMART_OBJ_GET |
( |
|
smart, |
|
|
|
o, |
|
|
|
type |
|
) |
| |
Value:{ \
smart = evas_object_smart_data_get(o); \
_e_smart_str = (char *)evas_object_type_get(o); \
if (!_e_smart_str) return; \
if (strcmp(_e_smart_str,
type)) return; \
}
Edje_Part_Type type
Definition: edje_data.c:100
#define E_SMART_OBJ_GET_RETURN |
( |
|
smart, |
|
|
|
o, |
|
|
|
type, |
|
|
|
ret |
|
) |
| |
Value:{ \
smart = evas_object_smart_data_get(o); \
if (!smart) return ret; \
_e_smart_str = (char *)evas_object_type_get(o); \
if (!_e_smart_str) return ret; \
if (strcmp(_e_smart_str,
type)) return ret; \
}
Edje_Part_Type type
Definition: edje_data.c:100