5d6be56f930ed609bf2979f04344f77b9dd60231
[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  20*1000 /* 10 minutes */
37 enum { SHORT_TIMER_TYPE, LONG_TIMER_TYPE };
38
39
40 typedef struct _AWallpaperPlugin AWallpaperPlugin;
41 typedef struct _AWallpaperPluginClass AWallpaperPluginClass;
42 typedef struct _Animation_WallpaperPrivate Animation_WallpaperPrivate;
43
44 struct _Animation_WallpaperPrivate
45 {
46     gint long_timer;
47     gint short_timer;
48     gchar *theme;
49     gboolean visible;
50     AWallpaperPlugin *desktop_plugin;
51 };
52
53 struct _AWallpaperPlugin
54 {
55     HDHomePluginItem hitem;
56     GObject *parent;
57     Animation_WallpaperPrivate *priv;
58 };
59
60 struct _AWallpaperPluginClass
61 {
62     HDHomePluginItemClass parent_class;
63
64 };
65
66 typedef struct {
67     GtkWidget * widget;
68     gchar  *name;
69     gchar *filename;
70     gint x;
71     gint y;
72     gint z;
73     gint width;
74     gint height;
75     gint scale;
76     gint opacity; 
77     gboolean visible;
78     void (*func_change)(gpointer, gpointer);
79     time_t time_start_animation;
80     gint duration_animation;
81     void (*func_probability)(gpointer);
82
83 } Actor;