added icons for external themes
[livewp] / applet / src / livewp-exthemes.c
1 /* vim: set sw=4 ts=4 et: */
2 /*
3  * This file is part of Live Wallpaper (livewp)
4  * 
5  * Copyright (C) 2010 Vlad Vasiliev
6  * Copyright (C) 2010 Tanya Makova
7  *       for the code
8  * 
9  * This software is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1 of
12  * the License, or (at your option) any later version.
13  * 
14  * This software is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  * 
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this software; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22  * 02110-1301 USA
23 */
24 /*******************************************************************************/
25 #include "livewp-exthemes.h"
26 /*******************************************************************************/
27
28 GHashTable  * 
29 parse_theme(gchar *file){
30     GHashTable  *hash;
31     xmlDoc *doc;
32     xmlNode *root, *first_child, *node;
33     doc = xmlReadFile(file, NULL, 0);
34     root = xmlDocGetRootElement(doc);
35     first_child = root->children;
36     hash = g_hash_table_new(g_str_hash, g_str_equal);
37     for (node = first_child; node; node = node->next){
38         //if (node-type == XML_ELEMENT_NODE && xmlStrcmp(node->name, "param")){
39           //  child = 
40         //}
41         if (node->type == XML_ELEMENT_NODE){ 
42             //fprintf(stderr, "%s => %s\n", node->name, xmlNodeGetContent(node));
43             g_hash_table_insert(hash, g_strdup(node->name), g_strdup(xmlNodeGetContent(node)));
44         }
45     }
46     xmlFreeDoc(doc);
47     xmlCleanupParser();
48     return hash;
49 }
50
51 GSList *
52 get_list_exthemes(void){
53     Dirent  *dp;
54     DIR     *dir_fd;
55     GSList *store = NULL;
56     
57     dir_fd = opendir(EXTHEME_PATH);
58     if(dir_fd){
59
60         while((dp = readdir(dir_fd))){
61             
62             if(!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
63                 continue;
64             /* TO DO read only *.xml files */
65             if(dp->d_type == DT_REG || dp->d_type == DT_LNK){
66                 store = g_slist_append(store, parse_theme(g_strdup_printf("%s%s", EXTHEME_PATH, dp->d_name)));
67             }
68         }
69         closedir(dir_fd);
70     }
71     return store;
72 }