evas_object_main.c: added Clipper information for debug info.

Eina value type does not support pointer so I used int as of now.
This needs to be converted into hexa later.
By using Clouseau, one can see this Clipper information.
This commit is contained in:
Daniel Juyung Seo 2013-04-17 16:58:27 +09:00
parent 1605cd354b
commit 4497815caf
1 changed files with 4 additions and 0 deletions

View File

@ -1919,6 +1919,10 @@ _dbg_info_get(Eo *eo_obj, void *_pd EINA_UNUSED, va_list *list)
EO_DBG_INFO_APPEND(group, "Propagate Events", EINA_VALUE_TYPE_CHAR, propagate_event);
EO_DBG_INFO_APPEND(group, "Has clipees", EINA_VALUE_TYPE_CHAR, clipees_has);
Evas_Object *clipper = NULL;
eo_do((Eo *)eo_obj, evas_obj_clip_get(&clipper));
EO_DBG_INFO_APPEND(group, "Clipper", EINA_VALUE_TYPE_INT, (int)clipper);
const Evas_Map *map = evas_object_map_get(eo_obj);
if (map)
{ /* Save map coords count info if object has map */