replaced sky
[livewp] / applet / src / livewp-common.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 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 <gtk/gtk.h>
26 #include <hildon/hildon.h>
27 #include <locale.h>
28 #include <libhildondesktop/libhildondesktop.h>
29
30 #define GETTEXT_PACKAGE "livewp"
31 #include <glib/gi18n-lib.h>
32
33 #define THEME_PATH "/usr/share/livewp/theme"
34 #define SHORT_TIMER 100 /* 100 milisecond */
35 //#define LONG_TIMER 10*60*1000 /* 10 minutes */
36 #define LONG_TIMER  10*1000 /* 10 minutes */
37 enum { SHORT_TIMER_TYPE, LONG_TIMER_TYPE };
38 #define SKY_LEVEL 0 
39 #define SUN_LEVEL 2
40 #define TOWN_LEVEL 4
41 #define TRAM_LEVEL 6
42
43
44 typedef struct _AWallpaperPlugin AWallpaperPlugin;
45 typedef struct _AWallpaperPluginClass AWallpaperPluginClass;
46 typedef struct _Animation_WallpaperPrivate Animation_WallpaperPrivate;
47
48 struct _Animation_WallpaperPrivate
49 {
50     gint long_timer;
51     gint short_timer;
52     gchar *theme;
53     gboolean visible;
54     AWallpaperPlugin *desktop_plugin;
55 };
56
57 struct _AWallpaperPlugin
58 {
59     HDHomePluginItem hitem;
60     GObject *parent;
61     Animation_WallpaperPrivate *priv;
62 };
63
64 struct _AWallpaperPluginClass
65 {
66     HDHomePluginItemClass parent_class;
67
68 };
69
70 typedef struct {
71     GtkWidget * widget;
72     gchar  *name;
73     gchar *filename;
74     gint x;
75     gint y;
76     gint z;
77     gint width;
78     gint height;
79     gint scale;
80     gint opacity; 
81     gboolean visible;
82     void (*func_change)(gpointer, gpointer);
83     time_t time_start_animation;
84     gint duration_animation;
85     void (*func_probability)(gpointer);
86
87 } Actor;