elm : add expand in the edje external genlist
authorJonathan Atton <jonathan.atton@gmail.com>
Wed, 10 Nov 2010 22:44:44 +0000 (22:44 +0000)
committerJonathan Atton <jonathan.atton@gmail.com>
Wed, 10 Nov 2010 22:44:44 +0000 (22:44 +0000)
SVN revision: 54445

legacy/elementary/src/edje_externals/Makefile.am
legacy/elementary/src/edje_externals/elm_genlist.c
legacy/elementary/src/edje_externals/modules.inc

index af1998e..8d1b53d 100644 (file)
@@ -52,7 +52,10 @@ elm_thumb.c \
 elm_toggle.c \
 elm_toolbar.c \
 elm_notify.c \
-elm_panes.c
+elm_panes.c \
+elm_label.c \
+elm_icon.c \
+elm_scroller.c
 
 module_la_LIBADD = $(top_builddir)/src/lib/libelementary.la
 module_la_LDFLAGS = -no-undefined -module -avoid-version -shared -fPIC
index d69da19..7b227f9 100644 (file)
@@ -22,7 +22,7 @@ typedef struct _Elm_Params_Genlist
    Eina_Bool v_bounce_exists:1;
 } Elm_Params_Genlist;
 
-static const char* list_horizontal_mode_choices[] = {"compress", "scroll", "limit", NULL};
+static const char* list_horizontal_mode_choices[] = {"compress", "scroll", "limit", "expand", NULL};
 
 static Elm_List_Mode
 _list_horizontal_mode_setting_get(const char *horizontal_mode_str)
index 8c75bf9..941fe95 100644 (file)
@@ -23,3 +23,6 @@ DEFINE_TYPE(toggle)
 DEFINE_TYPE(toolbar)
 DEFINE_TYPE(notify)
 DEFINE_TYPE(panes)
+DEFINE_TYPE(label)
+DEFINE_TYPE(icon)
+DEFINE_TYPE(scroller)