7be0d399712d0167f3ad9e3d490e1b2cf0bd0941
[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     hash = g_hash_table_new(g_str_hash, g_str_equal);
32     g_hash_table_insert(hash, g_strdup("name"),  g_strdup("Xsnow"));
33     g_hash_table_insert(hash, g_strdup("exec_path"),  g_strdup("/usr/bin/xsnow"));
34     return hash;
35 }
36
37 GSList *
38 get_list_exthemes(void){
39     Dirent  *dp;
40     DIR     *dir_fd;
41     GSList *store = NULL;
42     
43     dir_fd = opendir(EXTHEME_PATH);
44     if(dir_fd){
45
46         while((dp = readdir(dir_fd))){
47             
48             if(!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
49                 continue;
50             if(dp->d_type == DT_REG || dp->d_type == DT_LNK){
51                 store = g_slist_append(store, parse_theme(dp->d_name));
52             }
53         }
54         closedir(dir_fd);
55     }
56     return store;
57 }