projects
/
platform
/
upstream
/
efl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b50a53a
)
elm : add expand in the edje external genlist
author
Jonathan Atton
<jonathan.atton@gmail.com>
Wed, 10 Nov 2010 22:44:44 +0000
(22:44 +0000)
committer
Jonathan 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
patch
|
blob
|
history
legacy/elementary/src/edje_externals/elm_genlist.c
patch
|
blob
|
history
legacy/elementary/src/edje_externals/modules.inc
patch
|
blob
|
history
diff --git
a/legacy/elementary/src/edje_externals/Makefile.am
b/legacy/elementary/src/edje_externals/Makefile.am
index
af1998e
..
8d1b53d
100644
(file)
--- a/
legacy/elementary/src/edje_externals/Makefile.am
+++ b/
legacy/elementary/src/edje_externals/Makefile.am
@@
-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
diff --git
a/legacy/elementary/src/edje_externals/elm_genlist.c
b/legacy/elementary/src/edje_externals/elm_genlist.c
index
d69da19
..
7b227f9
100644
(file)
--- a/
legacy/elementary/src/edje_externals/elm_genlist.c
+++ b/
legacy/elementary/src/edje_externals/elm_genlist.c
@@
-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)
diff --git
a/legacy/elementary/src/edje_externals/modules.inc
b/legacy/elementary/src/edje_externals/modules.inc
index
8c75bf9
..
941fe95
100644
(file)
--- a/
legacy/elementary/src/edje_externals/modules.inc
+++ b/
legacy/elementary/src/edje_externals/modules.inc
@@
-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)