elm genlist: Moved internal enum from elm_genlist.h to elm_genlist.c

Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>

SVN revision: 69085
This commit is contained in:
Daniel Juyung Seo 2012-03-09 10:54:03 +00:00 committed by Daniel Juyung Seo
parent ab59567695
commit 02838dfe25
2 changed files with 7 additions and 7 deletions

View File

@ -114,6 +114,13 @@ struct _Item_Cache
Eina_Bool expanded : 1; // it->item->expanded
};
typedef enum
{
ELM_GENLIST_TREE_EFFECT_NONE = 0,
ELM_GENLIST_TREE_EFFECT_EXPAND = 1,
ELM_GENLIST_TREE_EFFECT_CONTRACT = 2
} Elm_Genlist_Item_Move_Effect_Mode;
static const char *widtype = NULL;
static void _item_cache_zero(Widget_Data *wd);
static void _del_hook(Evas_Object *obj);

View File

@ -392,13 +392,6 @@ typedef enum
ELM_GENLIST_ITEM_SCROLLTO_MIDDLE = (1 << 2) /**< to the middle of viewport */
} Elm_Genlist_Item_Scrollto_Type;
typedef enum
{
ELM_GENLIST_TREE_EFFECT_NONE = 0,
ELM_GENLIST_TREE_EFFECT_EXPAND = 1,
ELM_GENLIST_TREE_EFFECT_CONTRACT = 2
} Elm_Genlist_Item_Move_Effect_Mode;
/**
* @see Elm_Gen_Item_Class
*/