adde images for notifications
[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 void
166 create_hildon_actor_text(Actor *actor, AWallpaperPlugin *desktop_plugin) 
167 {
168   GtkWidget *ha = NULL;
169   GdkPixbuf *pixbuf = NULL;
170   GtkWidget *image = NULL;
171   GtkWidget *label = NULL;
172
173   ha = hildon_animation_actor_new();
174   label = gtk_label_new(NULL);  
175
176   if (label){
177     //g_signal_connect(G_OBJECT(label), "expose_event", G_CALLBACK(expose_event), NULL);
178
179     gtk_container_add (GTK_CONTAINER (ha), label);
180   }  
181   realize(ha);
182   gtk_widget_show(label);
183   gtk_widget_show_all(ha);
184   
185   /* TO DO check it */
186   /*  gdk_flush (); */
187
188   //g_object_set_data(G_OBJECT(ha), "image", image);
189   actor->image = label;
190   hildon_animation_actor_set_parent (HILDON_ANIMATION_ACTOR (ha), GTK_WINDOW(desktop_plugin));
191   actor->widget = ha;
192   set_actor_position(actor, actor->x, actor->y, actor->z, desktop_plugin);
193   set_actor_scale(actor, (double)actor->scale/100, (double)actor->scale/100);
194   set_actor_visible(actor, actor->visible);
195 }
196
197
198
199 void
200 create_hildon_actor(Actor *actor, AWallpaperPlugin *desktop_plugin) 
201 {
202   GtkWidget *ha = NULL;
203   GdkPixbuf *pixbuf = NULL;
204   GtkWidget *image = NULL;
205   gchar     *str = NULL;
206
207   ha = hildon_animation_actor_new();
208   str = g_strdup_printf( "%s/%s/%s", THEME_PATH, 
209                         desktop_plugin->priv->theme, actor->filename);
210   pixbuf = gdk_pixbuf_new_from_file_at_size (str, 
211                                              actor->width, 
212                                              actor->height, 
213                                              NULL);
214   /*fprintf(stderr, "create_hildon_actor %s %s\n", actor->name, str);*/
215   if (str)
216       g_free(str);
217   if (pixbuf){
218       image = gtk_image_new_from_pixbuf (pixbuf);
219       g_object_unref(G_OBJECT(pixbuf));
220   }
221   if (image){
222     g_signal_connect(G_OBJECT(image), "expose_event",
223                            G_CALLBACK(expose_event), pixbuf);
224     gtk_container_add (GTK_CONTAINER (ha), image);
225   }  
226   realize(ha);
227   gtk_widget_show_all(ha);
228   
229   /* TO DO check it */
230   /*  gdk_flush (); */
231
232   //g_object_set_data(G_OBJECT(ha), "image", image);
233   actor->image = image;
234   hildon_animation_actor_set_parent (HILDON_ANIMATION_ACTOR (ha), GTK_WINDOW(desktop_plugin));
235   actor->widget = ha;
236   set_actor_position(actor, actor->x, actor->y, actor->z, desktop_plugin);
237   set_actor_scale(actor, (double)actor->scale/100, (double)actor->scale/100);
238   set_actor_visible(actor, actor->visible);
239 }
240
241
242 void
243 change_hildon_actor(Actor *actor, AWallpaperPlugin *desktop_plugin)
244 {
245     GtkWidget *image = NULL;
246     GdkPixbuf *pixbuf = NULL;
247     gchar     *str = NULL;
248
249     str = g_strdup_printf( "%s/%s/%s", THEME_PATH, 
250                             desktop_plugin->priv->theme, actor->filename);
251  
252     pixbuf = gdk_pixbuf_new_from_file_at_size (str, 
253                                                actor->width, 
254                                                actor->height, 
255                                                NULL);
256     if(str)
257         g_free(str);
258     if (pixbuf){
259         image = gtk_image_new_from_pixbuf (pixbuf);
260         g_object_unref(G_OBJECT(pixbuf));
261     }
262     if (image){ 
263         g_signal_connect(G_OBJECT(image), "expose_event",
264                                        G_CALLBACK(expose_event), pixbuf);
265         //if (g_object_get_data(G_OBJECT(actor->widget), "image")){
266         if (actor->image){
267             gtk_container_remove(GTK_CONTAINER(actor->widget), actor->image);  
268         }
269         //g_object_set_data(G_OBJECT(actor->widget), "image", image);
270         actor->image = image;
271         gtk_container_add (GTK_CONTAINER (actor->widget), image);
272         realize(actor->widget);
273         gtk_widget_show_all(actor->widget);
274         /* TO DO check it */
275        /*  gdk_flush (); */
276
277
278     }
279
280 }
281
282
283 static gboolean
284 short_timeout (AWallpaperPlugin *desktop_plugin)
285 {
286     //gint daytime = get_daytime();
287     GSList * tmp;
288     void (*pfunc)(gpointer, gpointer);
289     time_t now;
290     Actor *actor;
291     gboolean stop_flag = TRUE;
292
293 if (!desktop_plugin->priv->visible || !desktop_plugin->priv->rich_animation){
294         desktop_plugin->priv->short_timer = 0;
295         return FALSE;
296     }
297
298     now = time(NULL);
299     //scene.daytime = daytime;
300     /* fprintf(stderr, "Short timer %d\n", now); */
301     tmp = desktop_plugin->priv->scene->actors;
302     while (tmp != NULL){
303            actor = tmp->data;
304            if (now >= actor->time_start_animation  
305                && actor->time_start_animation > 0
306                /* && now - actor->time_start_animation <= actor->duration_animation*/){
307                 pfunc = actor->func_change;
308                 if (pfunc){ 
309                     (*pfunc)(actor, desktop_plugin);
310                     stop_flag = FALSE;
311                 }
312             }
313             tmp = g_slist_next(tmp);
314     }
315     if (stop_flag){
316          desktop_plugin->priv->short_timer = 0;
317          return FALSE;
318     }else
319          return TRUE; /* keep running this event */
320 }
321
322 void
323 run_long_timeout(AWallpaperPlugin *desktop_plugin)
324 {
325
326     gint daytime = get_daytime();
327     GSList * tmp;
328     void (*pfunc)(gpointer, gpointer);
329     time_t now;
330     Actor *actor;
331
332
333     //fprintf(stderr, "!!!run long timeout short_timer=%d\n", desktop_plugin->priv->short_timer);
334     if (desktop_plugin->priv->scene->daytime != daytime){
335         desktop_plugin->priv->scene->daytime = daytime;
336         tmp = desktop_plugin->priv->scene->actors;
337         while (tmp != NULL){
338             //change_actor(tmp->data);
339             pfunc =((Actor*)tmp->data)->func_change;
340             if (pfunc){
341                 (*pfunc)(tmp->data, desktop_plugin);
342             }
343             tmp = g_slist_next(tmp);
344         }
345     }
346    
347     now = time(NULL);
348     //fprintf(stderr, "Now  %d\n", now);
349     tmp = desktop_plugin->priv->scene->actors;
350     while (tmp != NULL){
351         actor = tmp->data;
352         if (now >= actor->time_start_animation  
353             && actor->time_start_animation > 0
354             && desktop_plugin->priv->short_timer == 0){
355             /* fprintf(stderr, "start short timer act = %s %d\n", actor->name, now); */
356             if (desktop_plugin->priv->rich_animation){
357                 actor->time_start_animation = now;
358                 desktop_plugin->priv->short_timer = g_timeout_add(SHORT_TIMER, (GtkFunction)short_timeout, desktop_plugin);
359             }
360             else {
361                 (*actor->func_change)(actor, desktop_plugin);
362             }
363         }
364         tmp = g_slist_next(tmp);
365     }
366  
367 }
368
369 static gboolean
370 long_timeout (AWallpaperPlugin *desktop_plugin)
371 {
372     /* fprintf(stderr, "long_timeout %i\n", desktop_plugin->priv->long_timer); */
373     if (desktop_plugin->priv->long_timer == 0 )
374         return FALSE;
375     if (!desktop_plugin->priv->visible){
376         if(desktop_plugin->priv->short_timer != 0){
377             g_source_remove(desktop_plugin->priv->short_timer);
378             desktop_plugin->priv->short_timer = 0;
379         }
380         desktop_plugin->priv->long_timer = 0;
381         return FALSE;
382     }
383   
384
385     run_long_timeout(desktop_plugin);
386     return TRUE; /* keep running this event */
387 }
388
389 static void
390 desktop_plugin_visible_notify (GObject    *object,
391                                           GParamSpec *spec,
392                                           AWallpaperPlugin *desktop_plugin)
393 {
394     gboolean visible;
395     g_object_get (object, "is-on-current-desktop", &visible, NULL);
396     /* fprintf (stderr, "is-on-current-desktop changed. visible: %u", visible); */
397     if (visible){
398         desktop_plugin->priv->visible = TRUE;
399         if (desktop_plugin->priv->long_timer == 0 ){
400             desktop_plugin->priv->long_timer = g_timeout_add(LONG_TIMER, (GtkFunction)long_timeout, desktop_plugin);
401             run_long_timeout(desktop_plugin);
402         }
403     }else{
404         desktop_plugin->priv->visible = FALSE;
405         if (desktop_plugin->priv->long_timer != 0 ){
406             g_source_remove(desktop_plugin->priv->long_timer);
407             desktop_plugin->priv->long_timer = 0;
408         }
409     }
410 }
411
412 gboolean
413 rich_animation_press(GtkWidget *widget, GdkEvent *event,
414                                             gpointer user_data){
415     fprintf(stderr,"gggggggggggggggggggg2222\n");
416     return FALSE;
417 }    
418
419 static void
420 animation_wallpaper_plugin_init (AWallpaperPlugin *desktop_plugin)
421 {
422     GtkWidget *rich_animation;
423     gchar           buffer[2048];
424     gchar str[128];
425
426     //fprintf(stderr, "!!!!!!!plugin init \n");
427     Animation_WallpaperPrivate *priv =  Animation_Wallpaper_HOME_PLUGIN_GET_PRIVATE (desktop_plugin);
428     desktop_plugin->priv =  Animation_Wallpaper_HOME_PLUGIN_GET_PRIVATE (desktop_plugin);
429     priv->osso = osso_initialize(PACKAGE, VERSION, TRUE, NULL);
430
431     /* Load config */
432     read_config(priv);
433     /* Initialize DBUS */
434     livewp_initialize_dbus(priv);
435
436     priv->desktop_plugin = desktop_plugin;
437     priv->visible = TRUE;
438     priv->short_timer = 0;
439     priv->xapplet = 0;
440     priv->yapplet = 0;
441 //#if 0 
442     priv->hash_scene_func = g_hash_table_new(g_str_hash, g_str_equal);
443     
444     g_hash_table_insert(priv->hash_scene_func, g_strdup("Berlin"), (gpointer)&init_scene_Berlin);
445     g_hash_table_insert(priv->hash_scene_func, g_strdup("Modern"), (gpointer)&init_scene_Modern);
446     g_hash_table_insert(priv->hash_scene_func, g_strdup("Matrix"), (gpointer)&init_scene_Matrix);
447 //#endif
448     priv->theme = g_strdup("Modern");
449     desktop_plugin->priv->main_widget = gtk_fixed_new();
450
451     gtk_widget_set_size_request(desktop_plugin->priv->main_widget, 100, 32);
452     desktop_plugin->priv->right_corner = NULL;
453     snprintf(buffer, sizeof(buffer) - 1, "%s/%s/%s", THEME_PATH, desktop_plugin->priv->theme, "town0_right_corner.png");
454     desktop_plugin->priv->right_corner = gtk_image_new_from_file (buffer);
455     if (desktop_plugin->priv->right_corner){
456         gtk_fixed_put(GTK_FIXED(desktop_plugin->priv->main_widget), desktop_plugin->priv->right_corner, 0, 0);
457         gtk_widget_show (desktop_plugin->priv->right_corner);
458     }
459     /* Create rich animation event */
460     rich_animation = gtk_event_box_new();
461     if(rich_animation){
462         gtk_widget_set_events(rich_animation, GDK_BUTTON_PRESS_MASK);
463         gtk_event_box_set_visible_window(GTK_EVENT_BOX(rich_animation), FALSE);
464         gtk_widget_set_size_request(rich_animation, 100, 32);
465         gtk_widget_show (rich_animation);
466         g_signal_connect(rich_animation, "button-press-event", G_CALLBACK(rich_animation_press), desktop_plugin);
467         gtk_fixed_put(GTK_FIXED(desktop_plugin->priv->main_widget), rich_animation, 0, 0);
468     }
469 /*
470     GtkWidget *label = gtk_label_new ("ddddddddddddd"); 
471     gtk_widget_set_size_request(label, 95, 30);
472     gtk_widget_show (label);
473     gtk_container_add (GTK_CONTAINER (desktop_plugin), label);
474     gtk_fixed_put(GTK_FIXED(widget), label, 0, 0);
475 */
476     hd_home_plugin_item_set_settings (HD_HOME_PLUGIN_ITEM (desktop_plugin), TRUE);
477     g_signal_connect (desktop_plugin, "show-settings",
478                              G_CALLBACK (show_settings), priv);
479     gtk_widget_show (desktop_plugin->priv->main_widget);
480     gtk_container_add (GTK_CONTAINER (desktop_plugin), desktop_plugin->priv->main_widget);
481     init_applet_position(&(priv->xapplet), &(priv->yapplet));
482
483     
484     fprintf(stderr, "!!!theme = %s\n", priv->theme);
485     snprintf(str, sizeof(str) - 1, "%s", "init_scene2");
486     fprintf(stderr, " str = %s\n", str);
487     priv->scene = NULL;
488 #if 0
489     if (!strcmp(priv->theme,"Modern"))
490         init_scene_Modern(desktop_plugin);
491     else if (!strcmp(priv->theme,"Berlin")) 
492         init_scene_Berlin(desktop_plugin);
493     else if (!strcmp(priv->theme, "Matrix"))
494         init_scene_Matrix(desktop_plugin);
495 #endif
496     init_scene_theme(desktop_plugin);
497         
498     priv->long_timer = g_timeout_add(LONG_TIMER, (GtkFunction)long_timeout, desktop_plugin);
499     /* TODO Move scene to priv */
500     //scene.timer_type = LONG_TIMER_TYPE;
501     g_signal_connect (desktop_plugin, "notify::is-on-current-desktop",
502                      G_CALLBACK (desktop_plugin_visible_notify), desktop_plugin);
503
504    
505     //sleep(2);
506 }
507
508 static void
509 lw_applet_finalize (GObject *object)
510 {
511      AWallpaperPlugin *desktop_plugin = Animation_Wallpaper_HOME_PLUGIN (object);
512      Animation_WallpaperPrivate *priv = desktop_plugin->priv;
513
514      livewp_deinitialize_dbus(priv);
515      fprintf(stderr,"finalaze %i\n", priv->long_timer);
516      if (priv->long_timer){
517         g_source_remove(priv->long_timer);
518         priv->long_timer = 0;
519      }
520      if (priv->short_timer){
521         g_source_remove(priv->short_timer);
522         priv->short_timer = 0;
523      }
524
525      destroy_scene(desktop_plugin);
526 }
527
528 static void
529 animation_wallpaper_plugin_class_init (AWallpaperPluginClass *klass) {
530
531     GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
532     GtkObjectClass *gobject_class = GTK_OBJECT_CLASS (klass);
533
534     /* gobject */
535     gobject_class->destroy = (gpointer)lw_applet_finalize;
536     widget_class->realize = lw_applet_realize;
537     widget_class->expose_event = lw_applet_expose_event;
538
539     g_type_class_add_private (klass, sizeof (Animation_WallpaperPrivate));
540
541 }
542
543 static void
544 animation_wallpaper_plugin_class_finalize (AWallpaperPluginClass *class) {
545 }
546
547