fixed some problem with change daytime, plane don't fly in night
[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     gint wind_orientation; // +/- 1
55     double wind_angle; // [-1 .. 1]
56     guint seed; /* init value for random  */
57 } Scene;
58 /*
59 typedef struct {
60     time_t timestart;
61     gint timeall;
62     gint count;
63     GtkWidget *actor;
64     void (*func_change)(GtkWidget *, double);
65     gint (*func_time)(gint);
66 } Animation;
67 */
68
69 GType animation_wallpaper_plugin_get_type(void);
70
71 G_END_DECLS
72
73 void lw_settings(GtkWidget *widget, gpointer user_data);
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 void create_hildon_actor(Actor *actor, AWallpaperPlugin *desktop_plugin);
80 void get_sun_screen_pos(double alt, double azm, gint * x, gint * y);
81
82 #endif