fixed time to change image, added icons to slideshow and flash, added change image...
[livewp] / applet / src / livewp-config.h
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 General Public License
11  * as published by the Free Software Foundation; either version 2 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 #ifndef _livewp_config_h
26 #define _livewp_config_h 1
27
28 #include "livewp-common.h"
29
30 #define GCONF_KEY_PREFIX                            "/apps/maemo/livewp"
31 #define GCONF_KEY_THEME                             GCONF_KEY_PREFIX"/theme"
32 #define GCONF_KEY_ONE_IN_ALL_VIEW                   GCONF_KEY_PREFIX"/one_in_all_view"
33 #define GCONF_KEY_RANIMATION                        GCONF_KEY_PREFIX"/rich_animation"
34 #define GCONF_KEY_ADDITIONAL_STRING_1               GCONF_KEY_PREFIX"/additional_string_1"
35 #define GCONF_KEY_ADDITIONAL_BOOL_1                 GCONF_KEY_PREFIX"/additional_bool_1"
36 #define GCONF_KEY_ADDITIONAL_INT_1                  GCONF_KEY_PREFIX"/additional_int_1"
37 void init_scene_Modern(AWallpaperPlugin *desktop_plugin);
38 void init_scene_Berlin(AWallpaperPlugin *desktop_plugin);
39 void init_scene_Matrix(AWallpaperPlugin *desktop_plugin);
40 void init_scene_Accel(AWallpaperPlugin *desktop_plugin);
41 void init_scene_Video(AWallpaperPlugin *desktop_plugin);
42 void init_scene_External(AWallpaperPlugin *desktop_plugin);
43 void init_scene_theme(AWallpaperPlugin *desktop_plugin);
44 void init_scene_Conky(AWallpaperPlugin *desktop_plugin);
45 void init_scene_Flash(AWallpaperPlugin *desktop_plugin);
46 void init_scene_Slideshow(AWallpaperPlugin *desktop_plugin);
47 gint read_config(Animation_WallpaperPrivate *priv);
48 void save_config(Animation_WallpaperPrivate *priv);
49 void fill_priv(Animation_WallpaperPrivate *priv);
50 gint current_active_view(void);
51 GSList * get_list_exthemes(void);
52 void save_one_in_all_views_to_config(gboolean one_in_all_views);
53 gboolean get_one_in_all_views_from_config(void);
54
55 #endif