another object
[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 0 
40 #define TOWN_LEVEL 0 
41 #define TRAM_LEVEL 20 
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 parent;
60     Animation_WallpaperPrivate *priv;
61 };
62
63 struct _AWallpaperPluginClass
64 {
65     HDHomePluginItemClass parent_class;
66
67 };
68
69 typedef struct {
70     GtkWidget * widget;
71     gchar  *name;
72     gchar *filename;
73     gint x;
74     gint y;
75     gint z;
76     gint width;
77     gint height;
78     gint scale;
79     gint opacity; 
80     gboolean visible;
81     void (*func_change)(gpointer, gpointer);
82     time_t time_start_animation;
83     gint duration_animation;
84     void (*func_probability)(gpointer);
85
86 } Actor;