55cf195875b0bf31d812d77bf44b2ecd4d0025e1
[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 } Scene;
54 /*
55 typedef struct {
56     time_t timestart;
57     gint timeall;
58     gint count;
59     GtkWidget *actor;
60     void (*func_change)(GtkWidget *, double);
61     gint (*func_time)(gint);
62 } Animation;
63 */
64
65 GType animation_wallpaper_plugin_get_type(void);
66
67 G_END_DECLS
68
69 void lw_settings(GtkWidget *widget, gpointer user_data);
70 MultiActor *multiactor_init(gchar * name, GSList * child, gint x, gint y, gint z, double scale, gboolean visible);
71 void multiactor_set_visible(MultiActor *ma, gboolean visible);
72 void multiactor_set_scale(MultiActor *ma, double scale);
73 void multiactor_set_position(MultiActor *ma, gint dx, gint dy, gint dz);
74 void actor_set_position_full(GtkWidget *actor, gint x, gint y, gint z);
75 gint read_config(Animation_WallpaperPrivate *priv);
76 void save_config(Animation_WallpaperPrivate *priv);
77 static void init_scene(AWallpaperPlugin *desktop_plugin);
78 static void init_scene1(AWallpaperPlugin *desktop_plugin);
79
80 #endif