75152d583dda975cda972b63f231a79c8e9e53fc
[livewp] / applet / src / livewp-home-widget.c
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 "livewp-common.h" 
26 #include "livewp-home-widget.h"
27 #include <gconf/gconf-client.h>
28 #include "livewp-rules.h"
29 #include "livewp-scene.h"
30 #include <sys/time.h>
31 #include <stdlib.h>
32
33 #define PLUGIN_NAME "livewp-home-widget.desktop-0"
34 #define GCONF_KEY_POSITION "/apps/osso/hildon-desktop/applets/%s/position"
35 #define GCONF_KEY_MODIFIED "/apps/osso/hildon-desktop/applets/%s/modified"
36 #define GCONF_KEY_VIEW     "/apps/osso/hildon-desktop/applets/%s/view"
37
38 HD_DEFINE_PLUGIN_MODULE (AWallpaperPlugin, animation_wallpaper_plugin, HD_TYPE_HOME_PLUGIN_ITEM)
39 #define Animation_Wallpaper_HOME_PLUGIN_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE (obj,\
40                                                           Animation_Wallpaper_TYPE_HOME_PLUGIN,\
41                                                           Animation_WallpaperPrivate))
42
43 static void
44 lw_applet_realize (GtkWidget *widget)
45 {
46       GdkScreen *screen;
47
48       screen = gtk_widget_get_screen (widget);
49       gtk_widget_set_colormap (widget,
50                                 gdk_screen_get_rgba_colormap (screen));
51       gtk_widget_set_app_paintable (widget,
52                                 TRUE);
53       GTK_WIDGET_CLASS (animation_wallpaper_plugin_parent_class)->realize (widget);
54 }
55
56
57 static gboolean
58 lw_applet_expose_event(GtkWidget      *widget,
59                                         GdkEventExpose *event)
60 {
61   cairo_t *cr;
62
63   /* Create cairo context */
64   cr = gdk_cairo_create (GDK_DRAWABLE (widget->window));
65   gdk_cairo_region (cr, event->region);
66   cairo_clip (cr);
67
68   /* Draw alpha background */
69   cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
70   cairo_set_source_rgba (cr, 0.0, 0.0, 0.0, 0.0);
71   cairo_paint (cr);
72
73   /* Free context */
74   cairo_destroy (cr);
75
76   return GTK_WIDGET_CLASS (animation_wallpaper_plugin_parent_class)->expose_event (widget,
77                                                                                   event);
78 }
79
80 static gboolean
81 expose_event (GtkWidget *widget,GdkEventExpose *event,
82      gpointer data)
83 {
84     cairo_t *cr;
85     GdkPixbuf *pixbuf = (GdkPixbuf *) data;
86         
87     cr = gdk_cairo_create(widget->window);
88     if (cr){
89         gdk_cairo_region(cr, event->region);
90         cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
91         gdk_cairo_set_source_pixbuf(cr, pixbuf, 0.0, 0.0);
92         cairo_paint(cr);
93         cairo_destroy(cr);
94     }
95     return TRUE;
96 }
97
98 static void
99 realize (GtkWidget *widget)
100 {
101     GdkScreen *screen;
102     screen = gtk_widget_get_screen (widget);
103     gtk_widget_set_colormap (widget, gdk_screen_get_rgba_colormap (screen));
104 }
105
106 /* Set position of widget on desktop */
107 static void
108 init_applet_position(gint *xapplet, gint *yapplet)
109 {
110   GSList *position = NULL;
111   gchar *position_key;
112   gchar *modified_key;
113   gchar *modified;
114   GError *error = NULL;
115   GConfClient   *gconf_client = gconf_client_get_default ();
116   position_key = g_strdup_printf (GCONF_KEY_POSITION, PLUGIN_NAME);
117   position = gconf_client_get_list (gconf_client,
118                                     position_key,
119                                     GCONF_VALUE_INT,
120                                     NULL);
121   if (position && position->data && position->next->data){
122         *xapplet = GPOINTER_TO_INT (position->data);
123         *yapplet = GPOINTER_TO_INT (position->next->data);
124   }else{
125         position = g_slist_prepend (g_slist_prepend (NULL,
126                                       GINT_TO_POINTER (Ystartposition)),
127                                       GINT_TO_POINTER (Xstartposition));
128         gconf_client_set_list (gconf_client,
129                                position_key,
130                                GCONF_VALUE_INT,
131                                position,
132                                &error);
133         *xapplet = Xstartposition;
134         *yapplet = Ystartposition;
135   }
136   g_free (position_key);
137   modified = g_strdup_printf ("%i", 0);
138   modified_key = g_strdup_printf (GCONF_KEY_MODIFIED, PLUGIN_NAME);
139   gconf_client_set_string (gconf_client,
140                            modified_key,
141                            modified,
142                            &error);
143   g_free(modified);
144   g_free(modified_key);
145   gconf_client_clear_cache(gconf_client);
146   g_object_unref(gconf_client);
147 }
148 #if 0
149 void
150 actor_set_position_full(GtkWidget *actor, gint x, gint y, gint z)
151 {
152 /*  fprintf(stderr, "actor_set_position_full z=%d\n", z); */
153     hildon_animation_actor_set_position_full (HILDON_ANIMATION_ACTOR (actor),x-0, y-0, z);
154 }
155 #endif
156
157 void
158 destroy_hildon_actor(Actor *actor)
159 {
160     //fprintf(stderr, "destroy_hildon_actor %s\n",actor->name);
161     gtk_widget_destroy(actor->widget);
162     actor->widget = NULL;
163 }
164
165
166 void
167 create_hildon_actor(Actor *actor, AWallpaperPlugin *desktop_plugin) 
168 {
169   GtkWidget *ha = NULL;
170   GdkPixbuf *pixbuf = NULL;
171   GtkWidget *image = NULL;
172   gchar     *str = NULL;
173
174   ha = hildon_animation_actor_new();
175   str = g_strdup_printf( "%s/%s/%s", THEME_PATH, 
176                         desktop_plugin->priv->theme, actor->filename);
177   pixbuf = gdk_pixbuf_new_from_file_at_size (str, 
178                                              actor->width, 
179                                              actor->height, 
180                                              NULL);
181   /*fprintf(stderr, "create_hildon_actor %s %s\n", actor->name, str);*/
182   if (str)
183       g_free(str);
184   if (pixbuf){
185       image = gtk_image_new_from_pixbuf (pixbuf);
186       g_object_unref(G_OBJECT(pixbuf));
187   }
188   if (image){
189     g_signal_connect(G_OBJECT(image), "expose_event",
190                            G_CALLBACK(expose_event), pixbuf);
191     gtk_container_add (GTK_CONTAINER (ha), image);
192   }  
193   realize(ha);
194   gtk_widget_show_all(ha);
195   
196   /* TO DO check it */
197   /*  gdk_flush (); */
198
199   //g_object_set_data(G_OBJECT(ha), "image", image);
200   actor->image = image;
201   hildon_animation_actor_set_parent (HILDON_ANIMATION_ACTOR (ha), GTK_WINDOW(desktop_plugin));
202   actor->widget = ha;
203   set_actor_position(actor, actor->x, actor->y, actor->z, desktop_plugin);
204   set_actor_scale(actor, (double)actor->scale/100, (double)actor->scale/100);
205   set_actor_visible(actor, actor->visible);
206 }
207
208
209 void
210 change_hildon_actor(Actor *actor, AWallpaperPlugin *desktop_plugin)
211 {
212     GtkWidget *image = NULL;
213     GdkPixbuf *pixbuf = NULL;
214     gchar     *str = NULL;
215
216     str = g_strdup_printf( "%s/%s/%s", THEME_PATH, 
217                             desktop_plugin->priv->theme, actor->filename);
218  
219     pixbuf = gdk_pixbuf_new_from_file_at_size (str, 
220                                                actor->width, 
221                                                actor->height, 
222                                                NULL);
223     if(str)
224         g_free(str);
225     if (pixbuf){
226         image = gtk_image_new_from_pixbuf (pixbuf);
227         g_object_unref(G_OBJECT(pixbuf));
228     }
229     if (image){ 
230         g_signal_connect(G_OBJECT(image), "expose_event",
231                                        G_CALLBACK(expose_event), pixbuf);
232         //if (g_object_get_data(G_OBJECT(actor->widget), "image")){
233         if (actor->image){
234             gtk_container_remove(GTK_CONTAINER(actor->widget), actor->image);  
235         }
236         //g_object_set_data(G_OBJECT(actor->widget), "image", image);
237         actor->image = image;
238         gtk_container_add (GTK_CONTAINER (actor->widget), image);
239         realize(actor->widget);
240         gtk_widget_show_all(actor->widget);
241         /* TO DO check it */
242        /*  gdk_flush (); */
243
244
245     }
246
247 }
248
249
250 static gboolean
251 short_timeout (AWallpaperPlugin *desktop_plugin)
252 {
253     //gint daytime = get_daytime();
254     GSList * tmp;
255     void (*pfunc)(gpointer, gpointer);
256     time_t now;
257     Actor *actor;
258     gboolean stop_flag = TRUE;
259
260 if (!desktop_plugin->priv->visible || !desktop_plugin->priv->rich_animation){
261         desktop_plugin->priv->short_timer = 0;
262         return FALSE;
263     }
264
265     now = time(NULL);
266     //scene.daytime = daytime;
267     /* fprintf(stderr, "Short timer %d\n", now); */
268     tmp = desktop_plugin->priv->scene->actors;
269     while (tmp != NULL){
270            actor = tmp->data;
271            if (now >= actor->time_start_animation  
272                && actor->time_start_animation > 0
273                /* && now - actor->time_start_animation <= actor->duration_animation*/){
274                 pfunc = actor->func_change;
275                 if (pfunc){ 
276                     (*pfunc)(actor, desktop_plugin);
277                     stop_flag = FALSE;
278                 }
279             }
280             tmp = g_slist_next(tmp);
281     }
282     if (stop_flag){
283          desktop_plugin->priv->short_timer = 0;
284          return FALSE;
285     }else
286          return TRUE; /* keep running this event */
287 }
288
289 void
290 run_long_timeout(AWallpaperPlugin *desktop_plugin)
291 {
292
293     gint daytime = get_daytime();
294     GSList * tmp;
295     void (*pfunc)(gpointer, gpointer);
296     time_t now;
297     Actor *actor;
298
299
300     //fprintf(stderr, "!!!run long timeout short_timer=%d\n", desktop_plugin->priv->short_timer);
301     if (desktop_plugin->priv->scene->daytime != daytime){
302         desktop_plugin->priv->scene->daytime = daytime;
303         tmp = desktop_plugin->priv->scene->actors;
304         while (tmp != NULL){
305             //change_actor(tmp->data);
306             pfunc =((Actor*)tmp->data)->func_change;
307             if (pfunc){
308                 (*pfunc)(tmp->data, desktop_plugin);
309             }
310             tmp = g_slist_next(tmp);
311         }
312     }
313    
314     now = time(NULL);
315     //fprintf(stderr, "Now  %d\n", now);
316     tmp = desktop_plugin->priv->scene->actors;
317     while (tmp != NULL){
318         actor = tmp->data;
319         if (now >= actor->time_start_animation  
320             && actor->time_start_animation > 0
321             && desktop_plugin->priv->short_timer == 0){
322             /* fprintf(stderr, "start short timer act = %s %d\n", actor->name, now); */
323             if (desktop_plugin->priv->rich_animation){
324                 actor->time_start_animation = now;
325                 desktop_plugin->priv->short_timer = g_timeout_add(SHORT_TIMER, (GtkFunction)short_timeout, desktop_plugin);
326             }
327             else {
328                 (*actor->func_change)(actor, desktop_plugin);
329             }
330         }
331         tmp = g_slist_next(tmp);
332     }
333  
334 }
335
336 static gboolean
337 long_timeout (AWallpaperPlugin *desktop_plugin)
338 {
339     /* fprintf(stderr, "long_timeout %i\n", desktop_plugin->priv->long_timer); */
340     if (desktop_plugin->priv->long_timer == 0 )
341         return FALSE;
342     if (!desktop_plugin->priv->visible){
343         if(desktop_plugin->priv->short_timer != 0){
344             g_source_remove(desktop_plugin->priv->short_timer);
345             desktop_plugin->priv->short_timer = 0;
346         }
347         desktop_plugin->priv->long_timer = 0;
348         return FALSE;
349     }
350   
351
352     run_long_timeout(desktop_plugin);
353     return TRUE; /* keep running this event */
354 }
355
356 static void
357 desktop_plugin_visible_notify (GObject    *object,
358                                           GParamSpec *spec,
359                                           AWallpaperPlugin *desktop_plugin)
360 {
361     gboolean visible;
362     g_object_get (object, "is-on-current-desktop", &visible, NULL);
363     /* fprintf (stderr, "is-on-current-desktop changed. visible: %u", visible); */
364     if (visible){
365         desktop_plugin->priv->visible = TRUE;
366         if (desktop_plugin->priv->long_timer == 0 ){
367             desktop_plugin->priv->long_timer = g_timeout_add(LONG_TIMER, (GtkFunction)long_timeout, desktop_plugin);
368             run_long_timeout(desktop_plugin);
369         }
370     }else{
371         desktop_plugin->priv->visible = FALSE;
372         if (desktop_plugin->priv->long_timer != 0 ){
373             g_source_remove(desktop_plugin->priv->long_timer);
374             desktop_plugin->priv->long_timer = 0;
375         }
376     }
377 }
378
379 gboolean
380 rich_animation_press(GtkWidget *widget, GdkEvent *event,
381                                             gpointer user_data){
382     fprintf(stderr,"gggggggggggggggggggg2222\n");
383     return FALSE;
384 }    
385
386 static void
387 animation_wallpaper_plugin_init (AWallpaperPlugin *desktop_plugin)
388 {
389     GtkWidget *rich_animation;
390     gchar           buffer[2048];
391
392
393     //fprintf(stderr, "!!!!!!!plugin init \n");
394     Animation_WallpaperPrivate *priv =  Animation_Wallpaper_HOME_PLUGIN_GET_PRIVATE (desktop_plugin);
395     desktop_plugin->priv =  Animation_Wallpaper_HOME_PLUGIN_GET_PRIVATE (desktop_plugin);
396     priv->osso = osso_initialize(PACKAGE, VERSION, TRUE, NULL);
397
398     /* Load config */
399     read_config(priv);
400     /* Initialize DBUS */
401     livewp_initialize_dbus(priv);
402
403     priv->desktop_plugin = desktop_plugin;
404     priv->visible = TRUE;
405     priv->short_timer = 0;
406     priv->xapplet = 0;
407     priv->yapplet = 0;
408     //priv->theme = g_strdup("Modern");
409     desktop_plugin->priv->main_widget = gtk_fixed_new();
410
411     gtk_widget_set_size_request(desktop_plugin->priv->main_widget, 100, 32);
412     desktop_plugin->priv->right_corner = NULL;
413     snprintf(buffer, sizeof(buffer) - 1, "%s/%s/%s", THEME_PATH, desktop_plugin->priv->theme, "town0_right_corner.png");
414     desktop_plugin->priv->right_corner = gtk_image_new_from_file (buffer);
415     if (desktop_plugin->priv->right_corner){
416         gtk_fixed_put(GTK_FIXED(desktop_plugin->priv->main_widget), desktop_plugin->priv->right_corner, 0, 0);
417         gtk_widget_show (desktop_plugin->priv->right_corner);
418     }
419     /* Create rich animation event */
420     rich_animation = gtk_event_box_new();
421     if(rich_animation){
422         gtk_widget_set_events(rich_animation, GDK_BUTTON_PRESS_MASK);
423         gtk_event_box_set_visible_window(GTK_EVENT_BOX(rich_animation), FALSE);
424         gtk_widget_set_size_request(rich_animation, 100, 32);
425         gtk_widget_show (rich_animation);
426         g_signal_connect(rich_animation, "button-press-event", G_CALLBACK(rich_animation_press), desktop_plugin);
427         gtk_fixed_put(GTK_FIXED(desktop_plugin->priv->main_widget), rich_animation, 0, 0);
428     }
429 /*
430     GtkWidget *label = gtk_label_new ("ddddddddddddd"); 
431     gtk_widget_set_size_request(label, 95, 30);
432     gtk_widget_show (label);
433     gtk_container_add (GTK_CONTAINER (desktop_plugin), label);
434     gtk_fixed_put(GTK_FIXED(widget), label, 0, 0);
435 */
436     hd_home_plugin_item_set_settings (HD_HOME_PLUGIN_ITEM (desktop_plugin), TRUE);
437     g_signal_connect (desktop_plugin, "show-settings",
438                              G_CALLBACK (show_settings), priv);
439     gtk_widget_show (desktop_plugin->priv->main_widget);
440     gtk_container_add (GTK_CONTAINER (desktop_plugin), desktop_plugin->priv->main_widget);
441     init_applet_position(&(priv->xapplet), &(priv->yapplet));
442
443     
444     fprintf(stderr, "!!!theme = %s\n", priv->theme);
445     priv->scene = NULL;
446     if (!strcmp(priv->theme,"Modern"))
447         init_scene(desktop_plugin);
448     else if (!strcmp(priv->theme,"Berlin")) 
449         init_scene1(desktop_plugin);
450     else if (!strcmp(priv->theme, "Matrix"))
451         init_scene2(desktop_plugin);
452     priv->long_timer = g_timeout_add(LONG_TIMER, (GtkFunction)long_timeout, desktop_plugin);
453     /* TODO Move scene to priv */
454     //scene.timer_type = LONG_TIMER_TYPE;
455     g_signal_connect (desktop_plugin, "notify::is-on-current-desktop",
456                      G_CALLBACK (desktop_plugin_visible_notify), desktop_plugin);
457
458    
459     //sleep(2);
460 }
461
462 static void
463 lw_applet_finalize (GObject *object)
464 {
465      AWallpaperPlugin *desktop_plugin = Animation_Wallpaper_HOME_PLUGIN (object);
466      Animation_WallpaperPrivate *priv = desktop_plugin->priv;
467
468      livewp_deinitialize_dbus(priv);
469      fprintf(stderr,"finalaze %i\n", priv->long_timer);
470      if (priv->long_timer){
471         g_source_remove(priv->long_timer);
472         priv->long_timer = 0;
473      }
474      if (priv->short_timer){
475         g_source_remove(priv->short_timer);
476         priv->short_timer = 0;
477      }
478
479      destroy_scene(desktop_plugin);
480 }
481
482 static void
483 animation_wallpaper_plugin_class_init (AWallpaperPluginClass *klass) {
484
485     GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
486     GtkObjectClass *gobject_class = GTK_OBJECT_CLASS (klass);
487
488     /* gobject */
489     gobject_class->destroy = (gpointer)lw_applet_finalize;
490     widget_class->realize = lw_applet_realize;
491     widget_class->expose_event = lw_applet_expose_event;
492
493     g_type_class_add_private (klass, sizeof (Animation_WallpaperPrivate));
494
495 }
496
497 static void
498 animation_wallpaper_plugin_class_finalize (AWallpaperPluginClass *class) {
499 }
500
501