153fca98cdccf475a8742d1531807bdd6fe46d19
[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 #include <unistd.h>
33 #include <sys/wait.h>
34
35 #define GCONF_KEY_POSITION "/apps/osso/hildon-desktop/applets/livewp-home-widget.desktop-%i/position"
36 #define GCONF_KEY_MODIFIED "/apps/osso/hildon-desktop/applets/livewp-home-widget.desktop-%i/modified"
37 #define GCONF_KEY_VIEW     "/apps/osso/hildon-desktop/applets/livewp-home-widget.desktop-%i/view"
38
39 HD_DEFINE_PLUGIN_MODULE (AWallpaperPlugin, animation_wallpaper_plugin, HD_TYPE_HOME_PLUGIN_ITEM)
40 #define Animation_Wallpaper_HOME_PLUGIN_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE (obj,\
41                                                           Animation_Wallpaper_TYPE_HOME_PLUGIN,\
42                                                           Animation_WallpaperPrivate))
43 static void
44 lw_applet_realize (GtkWidget *widget)
45 {
46     GdkScreen *screen;
47     gchar * strid; 
48     gint id; 
49     AWallpaperPlugin *desktop_plugin = (AWallpaperPlugin *)widget;
50     char* child_argv[] =  {"/usr/bin/livewp", "0", (char *) 0 };
51
52
53     strid = g_strdup(hd_plugin_item_get_plugin_id (HD_PLUGIN_ITEM (widget)));
54
55     id = strid[strlen(strid)-1] - '0';
56     desktop_plugin->priv->view = id;
57     g_free(strid); 
58     
59
60     switch (id){
61             case 0: child_argv[1] = "1";
62                 break;
63             case 1: child_argv[1] = "2";
64                 break;
65             case 2: child_argv[1] = "3";
66                 break;
67             case 3: child_argv[1] = "4";
68                 break;
69     }
70
71     desktop_plugin->priv->pid = fork();
72     if (desktop_plugin->priv->pid == 0){
73         execvp("/usr/bin/livewp", child_argv);
74         fprintf(stderr,"Problem with new process");
75     }
76
77     desktop_plugin_visible_notify((GObject *)widget, NULL, desktop_plugin);
78
79 #if 0
80     /* Load config */
81     read_config(desktop_plugin->priv);
82
83     init_scene_theme(desktop_plugin);
84         
85     desktop_plugin->priv->long_timer = g_timeout_add(LONG_TIMER, (GtkFunction)long_timeout, desktop_plugin);
86 #endif
87     screen = gtk_widget_get_screen (widget);
88     gtk_widget_set_colormap (widget,
89                                 gdk_screen_get_rgba_colormap (screen));
90     gtk_widget_set_app_paintable (widget,
91                                 TRUE);
92     GTK_WIDGET_CLASS (animation_wallpaper_plugin_parent_class)->realize (widget);
93 }
94
95 /* Set position of widget on desktop */
96 static void
97 init_applet_position(gint *xapplet, gint *yapplet)
98 {
99   GSList *position = NULL;
100   gchar *position_key;
101   gchar *modified_key;
102   gchar *modified;
103   GError *error = NULL;
104   gint i;
105   GConfClient   *gconf_client = gconf_client_get_default ();
106   for (i=0;i<4;i++){
107       position_key = g_strdup_printf (GCONF_KEY_POSITION, i);
108       position = gconf_client_get_list (gconf_client,
109                                         position_key,
110                                         GCONF_VALUE_INT,
111                                         NULL);
112       if (position && position->data && position->next->data){
113         *xapplet = GPOINTER_TO_INT (position->data);
114         *yapplet = GPOINTER_TO_INT (position->next->data);
115       }else{
116         position = g_slist_prepend (g_slist_prepend (NULL,
117                                           GINT_TO_POINTER (Ystartposition)),
118                               GINT_TO_POINTER (Xstartposition));
119         gconf_client_set_list (gconf_client,
120                                    position_key,
121                                    GCONF_VALUE_INT,
122                                position,
123                        &error);
124         *xapplet = Xstartposition;
125         *yapplet = Ystartposition;
126       }
127       g_free (position_key);
128       modified = g_strdup_printf ("%i", 0);
129       modified_key = g_strdup_printf (GCONF_KEY_MODIFIED, i);
130       gconf_client_set_string (gconf_client,
131                                modified_key,
132                                modified,
133                                &error);
134       g_free(modified);
135       g_free(modified_key);
136       modified_key = g_strdup_printf (GCONF_KEY_VIEW, i);
137       gconf_client_set_int (gconf_client,
138                                modified_key,
139                                (i+1),
140                                &error);
141       g_free(modified_key);
142
143   }
144   gconf_client_clear_cache(gconf_client);
145   g_object_unref(gconf_client);
146 }
147
148 void
149 desktop_plugin_visible_notify (GObject    *object,
150                                           GParamSpec *spec,
151                                           AWallpaperPlugin *desktop_plugin)
152 {
153     gboolean visible;
154     Animation_WallpaperPrivate *priv = desktop_plugin->priv;
155     g_object_get (object, "is-on-current-desktop", &visible, NULL);
156     /* fprintf (stderr, "is-on-current-desktop changed. visible: %u", visible); */
157     if (priv){
158         /*    
159         if (visible){
160                         send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
161                                   LIVEWP_SIGNAL_PATH, LIVEWP_PLAY_LIVEBG_ON_VIEW);
162         }else{ 
163                         send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
164                                   LIVEWP_SIGNAL_PATH, LIVEWP_PAUSE_LIVEBG_ON_VIEW);
165         }
166         */    
167         
168              switch (priv->view + 1){
169                 case 1: if (visible)
170                                 send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
171                                           LIVEWP_SIGNAL_PATH, LIVEWP_PLAY_LIVEBG_ON_VIEW1);
172                         else
173                                 send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
174                                           LIVEWP_SIGNAL_PATH, LIVEWP_PAUSE_LIVEBG_ON_VIEW1);
175                         break;
176                 case 2: if (visible)
177                                 send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
178                                           LIVEWP_SIGNAL_PATH, LIVEWP_PLAY_LIVEBG_ON_VIEW2);
179                         else
180                                 send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
181                                           LIVEWP_SIGNAL_PATH, LIVEWP_PAUSE_LIVEBG_ON_VIEW2);
182                         break;
183                 case 3: if (visible)
184                                 send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
185                                           LIVEWP_SIGNAL_PATH, LIVEWP_PLAY_LIVEBG_ON_VIEW3);
186                         else
187                                 send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
188                                           LIVEWP_SIGNAL_PATH, LIVEWP_PAUSE_LIVEBG_ON_VIEW3);
189                         break;
190                 case 4: if (visible)
191                                 send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
192                                           LIVEWP_SIGNAL_PATH, LIVEWP_PLAY_LIVEBG_ON_VIEW4);
193                         else
194                                 send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
195                                           LIVEWP_SIGNAL_PATH, LIVEWP_PAUSE_LIVEBG_ON_VIEW4);
196                         break;
197              }
198      }
199     
200 }
201
202 gboolean
203 send_alive_event(Animation_WallpaperPrivate *priv) 
204 {
205     switch (priv->view + 1){
206         case 1: send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
207                                   LIVEWP_SIGNAL_PATH, LIVEWP_ALIVE_LIVEBG_ON_VIEW1);
208                 break;
209         case 2: send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
210                                   LIVEWP_SIGNAL_PATH, LIVEWP_ALIVE_LIVEBG_ON_VIEW2);
211                 break;
212         case 3: send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
213                                   LIVEWP_SIGNAL_PATH, LIVEWP_ALIVE_LIVEBG_ON_VIEW3);
214                 break;
215         case 4: send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
216                                   LIVEWP_SIGNAL_PATH, LIVEWP_ALIVE_LIVEBG_ON_VIEW4);
217                 break;
218     }
219
220     return TRUE;
221 }
222
223 static void
224 animation_wallpaper_plugin_init (AWallpaperPlugin *desktop_plugin)
225 {
226
227     //fprintf(stderr, "!!!!!!!plugin init \n");
228     Animation_WallpaperPrivate *priv =  Animation_Wallpaper_HOME_PLUGIN_GET_PRIVATE (desktop_plugin);
229     desktop_plugin->priv =  Animation_Wallpaper_HOME_PLUGIN_GET_PRIVATE (desktop_plugin);
230     priv->osso = osso_initialize(PACKAGE, VERSION, TRUE, NULL);
231
232         /* Initialize DBUS */
233     livewp_initialize_dbus(priv);
234
235     priv->desktop_plugin = desktop_plugin;
236     priv->window = (GtkWidget *)desktop_plugin;
237     priv->visible = FALSE;
238     priv->short_timer = 0;
239     priv->xapplet = 0;
240     priv->yapplet = 0;
241     priv->scene = NULL;
242     priv->theme = g_strdup("Modern");
243     //priv->theme = g_strdup("Accel");
244     desktop_plugin->priv->main_widget = gtk_fixed_new();
245
246     gtk_widget_set_size_request(desktop_plugin->priv->main_widget, 1, 1);
247     gtk_widget_show (desktop_plugin->priv->main_widget);
248     gtk_container_add (GTK_CONTAINER (desktop_plugin), desktop_plugin->priv->main_widget);
249     init_applet_position(&(priv->xapplet), &(priv->yapplet));
250
251     
252     priv->scene = NULL;
253     g_signal_connect (desktop_plugin, "notify::is-on-current-desktop",
254                    G_CALLBACK (desktop_plugin_visible_notify), desktop_plugin);
255
256     priv->alive_timer = g_timeout_add(60000*3, (GtkFunction)send_alive_event, priv);  /* One per 3 minute */ 
257 }
258
259 static void
260 lw_applet_finalize (GObject *object)
261 {
262      int status = 0; int wpid; 
263 fprintf(stderr,"lw_applet_finalize\n");
264      AWallpaperPlugin *desktop_plugin = Animation_Wallpaper_HOME_PLUGIN (object);
265      Animation_WallpaperPrivate *priv = desktop_plugin->priv;
266 /*
267      
268      if (priv){
269              livewp_deinitialize_dbus(priv);
270              fprintf(stderr,"finalaze %i\n", priv->long_timer);
271              if (priv->long_timer){
272                 g_source_remove(priv->long_timer);
273                 priv->long_timer = 0;
274              }
275              if (priv->short_timer){
276                 g_source_remove(priv->short_timer);
277                 priv->short_timer = 0;
278              }
279
280              destroy_scene(desktop_plugin);
281      }
282 */    
283      
284      if (priv){
285              switch (priv->view + 1){
286                 case 1: send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
287                                           LIVEWP_SIGNAL_PATH, LIVEWP_STOP_LIVEBG_ON_VIEW1);
288                         break;
289                 case 2: send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
290                                           LIVEWP_SIGNAL_PATH, LIVEWP_STOP_LIVEBG_ON_VIEW2);
291                         break;
292                 case 3: send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
293                                           LIVEWP_SIGNAL_PATH, LIVEWP_STOP_LIVEBG_ON_VIEW3);
294                         break;
295                 case 4: send_dbus_signal (priv, LIVEWP_SIGNAL_INTERFACE, 
296                                           LIVEWP_SIGNAL_PATH, LIVEWP_STOP_LIVEBG_ON_VIEW4);
297                         break;
298              }
299      }
300      if(priv->alive_timer > 0) 
301          g_source_remove(priv->alive_timer);
302
303      livewp_deinitialize_dbus(priv);
304      while (TRUE){
305          wpid = wait(&status);
306          if (wpid == priv->pid)
307              break;
308      }
309 }
310
311 static void
312 desktop_widget_finalize (GObject *object)
313 {
314       /* Call the base class's implementation: */
315      G_OBJECT_CLASS (animation_wallpaper_plugin_parent_class)->finalize (object);
316 }
317
318 static void
319 animation_wallpaper_plugin_class_init (AWallpaperPluginClass *klass) {
320
321     GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
322     GtkObjectClass *gobject_class = GTK_OBJECT_CLASS (klass);
323     GObjectClass *object_class = G_OBJECT_CLASS (klass);
324
325     /* gobject */
326     gobject_class->destroy = (gpointer)lw_applet_finalize;
327     object_class->finalize = desktop_widget_finalize;
328     widget_class->realize = lw_applet_realize;
329
330     g_type_class_add_private (klass, sizeof (Animation_WallpaperPrivate));
331
332 }
333
334 static void
335 animation_wallpaper_plugin_class_finalize (AWallpaperPluginClass *class) {
336 }
337
338 Animation_WallpaperPrivate*
339 animation_wallpaper_plugin_new (void)
340 {
341   return g_object_new (Animation_Wallpaper_TYPE_HOME_PLUGIN , NULL);
342 }
343