elm-theme-viewer/theme.c

17 lines
305 B
C
Raw Normal View History

2012-08-12 19:55:07 -07:00
#include <Edje.h>
void
theme_load(void)
{
Eina_List *l, *ll;
const char *group;
l = edje_file_collection_list("/usr/local/share/elementary/themes/default.edj");
if (!l) return;
EINA_LIST_FOREACH(l, ll, group)
fprintf(stderr, "%s\n", group);
edje_file_collection_list_free(l);
}