added type of timeout
[livewp] / applet / src / livewp-home-widget.h
1 /*
2  * This file is part of Live Wallpaper (livewp)
3  * 
4  * Copyright (C) 2010 Vlad Vasiliev
5  * Copyright (C) 2010 Tanya Makova
6  *       for the code
7  * 
8  * This software is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; either version 2.1 of
11  * the License, or (at your option) any later version.
12  * 
13  * This software is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  * 
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this software; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22 */
23 /*******************************************************************************/
24 #ifndef Animation_Wallpaper_PLUGIN_H
25 #define Animation_Wallpaper_PLUGIN_H
26
27 #include <glib-object.h>
28
29 G_BEGIN_DECLS
30
31
32 #define Animation_Wallpaper_TYPE_HOME_PLUGIN (animation_wallpaper_plugin_get_type ())
33
34 #define Animation_Wallpaper_HOME_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
35                         Animation_Wallpaper_TYPE_HOME_PLUGIN, AWallpaperPlugin))
36
37 #define Animation_Wallpaper_HOME_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), \
38                         Animation_Wallpaper_TYPE_HOME_PLUGIN, AWallpaperPluginClass))
39
40 #define Animation_Wallpaper_IS_HOME_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
41                         Animation_Wallpaper_TYPE_HOME_PLUGIN))
42
43 #define Animation_Wallpaper_IS_HOME_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), \
44                         Animation_Wallpaper_TYPE_HOME_PLUGIN))
45
46 #define Animation_Wallpaper_HOME_PLUGIN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), \
47                         Animation_Wallpaper_TYPE_HOME_PLUGIN, AWallpaperPluginClass))
48
49
50 typedef struct {
51     GSList * actors;
52     gint daytime;
53     gint timer_type;
54 } Scene;
55 /*
56 typedef struct {
57     time_t timestart;
58     gint timeall;
59     gint count;
60     GtkWidget *actor;
61     void (*func_change)(GtkWidget *, double);
62     gint (*func_time)(gint);
63 } Animation;
64 */
65
66 GType animation_wallpaper_plugin_get_type(void);
67
68 G_END_DECLS
69
70 void lw_settings(GtkWidget *widget, gpointer user_data);
71 void actor_set_position_full(GtkWidget *actor, gint x, gint y, gint z);
72 gint read_config(Animation_WallpaperPrivate *priv);
73 void save_config(Animation_WallpaperPrivate *priv);
74 static void init_scene(AWallpaperPlugin *desktop_plugin);
75 static void init_scene1(AWallpaperPlugin *desktop_plugin);
76
77 #endif