fixed memory leaks
[livewp] / applet / src / livewp-settings.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-settings.h"
26 /*******************************************************************************/
27 void lw_about(void){
28
29     GtkWidget *window = NULL,
30     *vbox = NULL,
31     *label_about = NULL;
32     window = gtk_dialog_new();
33     gtk_window_set_title(GTK_WINDOW(window), _("About"));
34     gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
35     gtk_window_set_modal(GTK_WINDOW(window), TRUE);
36     vbox = gtk_vbox_new (FALSE, 5);
37     label_about = gtk_label_new (_("Live Wallpaper Version 0.7 \n Copyright(c) 2010\n \
38 Tanya Makova\n Vlad Vasiliev\n \
39 Copyright(c) 2010 for design themes Berlin and Modern Vasya Bobrikov\n \
40 Copyright(c) 2010 for design theme Matrix Andrew Zhilin\n \
41 Translators:\n \
42 Finnish - Marko Vertainen\n \
43 Spain  - Alejandro López\n \
44 Russian - Tanya Makova \n \
45           Vlad Vasiliev\n")); 
46     gtk_box_pack_start (GTK_BOX (vbox), label_about, FALSE, FALSE, 0);
47     gtk_box_pack_start(GTK_BOX(GTK_DIALOG(window)->vbox),
48                                    vbox, TRUE, TRUE, 0);
49     gtk_widget_show (label_about);
50     gtk_widget_show (vbox);
51     gtk_widget_show (window);
52     gtk_dialog_run(GTK_DIALOG(window));
53
54 }
55 /*******************************************************************************/
56 GtkWidget *
57 create_theme_selector (void){
58       GtkWidget *selector;
59
60       selector = hildon_touch_selector_new_text ();
61
62       hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector), _("Berlin"));
63       hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector), _("Modern"));
64       hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector), _("Matrix"));
65       hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector), _("Video"));
66       return selector;
67 }
68 /*******************************************************************************/
69 void
70 theme_button_clicked(GtkButton *button, Animation_WallpaperPrivate *priv){
71
72     lw_theme_settings(GTK_WIDGET(button), priv);
73 }
74 /********************************************************************************/
75 void
76 set_button_image(GtkWidget * button, gchar *theme, gboolean enable){
77     GtkWidget * image = NULL; 
78     GdkPixbuf * pixbuf = NULL;
79     gchar *str = NULL;
80     if (enable)
81         str = g_strdup_printf( "%s/%s/%s", THEME_PATH, 
82                         theme, "icon.png");
83     else 
84         str = g_strdup_printf( "%s/%s/%s", THEME_PATH, 
85                         theme, "icond.png");
86     pixbuf = gdk_pixbuf_new_from_file_at_size (str, 
87                                              100, 
88                                              60, 
89                                              NULL);
90     if (str)
91         g_free(str);
92     if (pixbuf){
93         image = gtk_image_new_from_pixbuf (pixbuf);
94         g_object_unref(G_OBJECT(pixbuf));
95     }
96
97    hildon_button_set_image (HILDON_BUTTON (button), image);
98 }
99 /********************************************************************************/
100 GtkWidget *
101 create_image_button (gint view, DBusConnection *conn_sess){
102     GtkWidget *button;
103     
104     Animation_WallpaperPrivate *priv = g_new0(Animation_WallpaperPrivate, 1);
105     priv->view = view;
106     priv->theme_string_parametr1 = NULL;
107     priv->dbus_conn_session = conn_sess;
108     read_config(priv);
109     button = hildon_button_new(HILDON_SIZE_AUTO_WIDTH | HILDON_SIZE_FINGER_HEIGHT,
110                                     HILDON_BUTTON_ARRANGEMENT_VERTICAL);
111     g_object_set_data(G_OBJECT(button), "view", GINT_TO_POINTER(view));
112     g_object_set_data(G_OBJECT(button), "priv", priv);
113     set_button_image(button, priv->theme, check_applet_state(view));
114     g_signal_connect(button, "clicked", G_CALLBACK(theme_button_clicked), priv);
115     hildon_button_set_image_position (HILDON_BUTTON (button), GTK_POS_RIGHT);
116     return button;
117
118 }
119 /********************************************************************************/
120 void
121 changed_value_theme_cb (HildonPickerButton *picker, Animation_WallpaperPrivate *priv)
122 {
123     const gchar *choice = hildon_button_get_value(HILDON_BUTTON (picker));
124     GtkWidget *vbox = NULL;
125         
126     vbox = g_object_get_data(G_OBJECT(priv->window), "custom_vbox");
127     if (vbox)
128         gtk_widget_destroy(vbox);
129     vbox = gtk_vbox_new (FALSE, 5);
130     g_object_set_data(G_OBJECT(priv->window), "custom_vbox", vbox);
131     gtk_box_pack_start(GTK_BOX(GTK_DIALOG(priv->window)->vbox),
132                                    vbox, TRUE, TRUE, 5);
133     if (choice) {
134         if (!strcmp(choice, "Berlin")){
135             rich_animation_additional_parametr(vbox,priv);
136         }
137         if (!strcmp(choice, "Modern")){
138             rich_animation_additional_parametr(vbox,priv);
139         }
140         if (!strcmp(choice, "Matrix")){
141             rich_animation_additional_parametr(vbox,priv);
142         }
143         if (!strcmp(choice, "Video")){
144             additional_parametr_for_theme_video(vbox, priv);
145         }
146
147     }
148     gtk_widget_show(vbox);
149 }
150
151 /********************************************************************************/
152 GtkWidget *
153 create_themes_button (gchar *theme){
154
155     GtkWidget *button;
156     GtkWidget *selector;
157
158     selector = create_theme_selector();
159     button = hildon_picker_button_new (HILDON_SIZE_AUTO, HILDON_BUTTON_ARRANGEMENT_VERTICAL);
160     hildon_button_set_title (HILDON_BUTTON (button), _("Theme"));
161     hildon_picker_button_set_selector (HILDON_PICKER_BUTTON (button),
162                                                        HILDON_TOUCH_SELECTOR (selector));
163     if (theme) {
164         if (!strcmp(theme, "Berlin")){
165             hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, 0);
166             hildon_button_set_value(HILDON_BUTTON(button), _("Berlin"));
167         }
168         if (!strcmp(theme, "Modern")){
169             hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, 1);
170             hildon_button_set_value(HILDON_BUTTON(button), _("Modern"));
171         }
172         if (!strcmp(theme, "Matrix")){
173             hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, 2);
174             hildon_button_set_value(HILDON_BUTTON(button), _("Matrix"));
175         }
176         if (!strcmp(theme, "Video")){
177             hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, 3);
178             hildon_button_set_value(HILDON_BUTTON(button), _("Video"));
179         }
180
181     }
182     
183     return button;
184 }
185
186 /*******************************************************************************/
187 GtkWidget *
188 create_rich_animation_button (gboolean active)
189 {
190     GtkWidget *button;
191     button = hildon_check_button_new (HILDON_SIZE_AUTO);
192     gtk_button_set_label (GTK_BUTTON (button), _("Rich Animation"));
193     hildon_check_button_set_active(HILDON_CHECK_BUTTON(button), active);
194     return button;
195 }
196 /*******************************************************************************/
197 GtkWidget *
198 create_enable_button (gboolean active)
199 {
200     GtkWidget *button;
201     button = hildon_check_button_new (HILDON_SIZE_AUTO);
202     gtk_button_set_label (GTK_BUTTON (button), _("Enable"));
203     hildon_check_button_set_active(HILDON_CHECK_BUTTON(button), active);
204     return button;
205 }
206
207 /*******************************************************************************/
208 void
209 show_settings(GtkWidget *widget, Animation_WallpaperPrivate *priv){
210     lw_main_settings(priv, NULL);
211 }
212 /*******************************************************************************/
213 void 
214 lw_main_settings(Animation_WallpaperPrivate *priv, gpointer data){
215     gint result;
216     GtkWidget *window = NULL;
217     GtkWidget *theme_button1;
218     GtkWidget *theme_button2;
219     GtkWidget *theme_button3;
220     GtkWidget *theme_button4;
221     GtkWidget *hbox;
222     Animation_WallpaperPrivate *priv_temp = NULL;
223
224     window = gtk_dialog_new();
225
226     gtk_window_set_title(GTK_WINDOW(window), _("Live Wallpaper Settings"));
227     gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
228     gtk_window_set_modal(GTK_WINDOW(window), TRUE);
229     /* Create Theme button */
230     hbox = gtk_hbox_new(FALSE, 5);
231     theme_button1 = create_image_button(1, priv->dbus_conn_session);
232     gtk_box_pack_start(GTK_BOX(hbox),
233                                    theme_button1, TRUE, TRUE, 5);
234     theme_button2 = create_image_button(2, priv->dbus_conn_session);
235     gtk_box_pack_start(GTK_BOX(hbox),
236                                    theme_button2, TRUE, TRUE, 5);
237     theme_button3 = create_image_button(3, priv->dbus_conn_session);
238     gtk_box_pack_start(GTK_BOX(hbox),
239                                    theme_button3, TRUE, TRUE, 5);
240     theme_button4 = create_image_button(4, priv->dbus_conn_session);
241     gtk_box_pack_start(GTK_BOX(hbox),
242                                    theme_button4, TRUE, TRUE, 5);
243     gtk_box_pack_start(GTK_BOX(GTK_DIALOG(window)->vbox),
244                                    hbox, TRUE, TRUE, 5);
245
246     gtk_widget_show (theme_button1);
247     gtk_widget_show (theme_button2);
248     gtk_widget_show (theme_button3);
249     gtk_widget_show (theme_button4);
250     gtk_widget_show_all (hbox);
251     gtk_widget_show (window);
252     gtk_dialog_add_button(GTK_DIALOG(window), _("About"), GTK_RESPONSE_NO);
253
254     result = gtk_dialog_run(GTK_DIALOG(window));
255
256     switch(result){
257         case GTK_RESPONSE_NO:
258 //            gtk_widget_destroy(window);
259             window = NULL;
260             lw_about();
261         break;
262     }
263
264     priv_temp = g_object_get_data(G_OBJECT(theme_button1), "priv");
265     if (priv_temp){
266         g_free(priv_temp);
267         priv_temp =NULL;
268     }
269     priv_temp = g_object_get_data(G_OBJECT(theme_button2), "priv");
270     if (priv_temp){
271         g_free(priv_temp);
272         priv_temp =NULL;
273     }
274     priv_temp = g_object_get_data(G_OBJECT(theme_button3), "priv");
275     if (priv_temp){
276         g_free(priv_temp);
277         priv_temp =NULL;
278     }
279     priv_temp = g_object_get_data(G_OBJECT(theme_button4), "priv");
280     if (priv_temp){
281         g_free(priv_temp);
282         priv_temp =NULL;
283     }
284
285
286     if (window)
287         gtk_widget_destroy(window);
288 }
289 /*******************************************************************************/
290 void
291 file_button_clicked(GtkButton *button, Animation_WallpaperPrivate *priv){
292
293     GtkWidget *dialog = hildon_file_chooser_dialog_new(GTK_WINDOW (priv->window), GTK_FILE_CHOOSER_ACTION_OPEN);
294
295     if (priv->theme_string_parametr1)
296         gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dialog), priv->theme_string_parametr1);
297
298     gtk_widget_show_all (GTK_WIDGET (dialog));
299
300     if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_OK)
301     {
302       hildon_button_set_value (HILDON_BUTTON(button), gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog)));
303     }
304     gtk_widget_destroy (dialog);
305
306 }
307 /*******************************************************************************/
308 void
309 rich_animation_additional_parametr(GtkWidget *vbox, Animation_WallpaperPrivate *priv){
310     GtkWidget *rich_animation_button;
311     /* Create rich animation button */  
312     rich_animation_button = create_rich_animation_button(priv->rich_animation);
313     gtk_box_pack_start(GTK_BOX(vbox),
314                                    rich_animation_button, TRUE, TRUE, 5);
315     g_object_set_data(G_OBJECT(priv->window), "rich_animation_button", rich_animation_button);
316     gtk_widget_show (rich_animation_button);
317 }
318 /*******************************************************************************/
319 void
320 additional_parametr_for_theme_video(GtkWidget *vbox, Animation_WallpaperPrivate *priv){
321
322     GtkWidget *file_button;
323
324     if (priv->theme_string_parametr1)
325         file_button = hildon_button_new_with_text (HILDON_SIZE_FINGER_HEIGHT, HILDON_BUTTON_ARRANGEMENT_VERTICAL,
326                                                    _("Play file"), priv->theme_string_parametr1);
327     else
328         file_button = hildon_button_new_with_text (HILDON_SIZE_FINGER_HEIGHT,HILDON_BUTTON_ARRANGEMENT_VERTICAL,
329                                                    _("Play file")," ");
330
331     g_signal_connect (file_button, "clicked", G_CALLBACK (file_button_clicked), priv);
332
333     gtk_box_pack_start(GTK_BOX(vbox),
334                                    file_button, TRUE, TRUE, 5);
335     g_object_set_data(G_OBJECT(priv->window), "filename_button", file_button);
336     gtk_widget_show (file_button);
337
338 }
339 /*******************************************************************************/
340 void 
341 lw_theme_settings(GtkWidget *button, Animation_WallpaperPrivate *priv) {
342     gint result;
343     GtkWidget *window = NULL;
344     GtkWidget *save_button;
345     GtkWidget *theme_button;
346     GtkWidget *enable_button;
347     GtkWidget *vbox;
348     GtkWidget *button1 = NULL;
349     GtkWidget *rich_animation_button = NULL;
350     gint view = priv->view;
351
352     window = gtk_dialog_new();
353     priv->window = window;
354
355     gtk_window_set_title(GTK_WINDOW(window), _("View Settings"));
356     gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
357     gtk_window_set_modal(GTK_WINDOW(window), TRUE);
358     /* Create Enable button */
359     enable_button = create_enable_button(check_applet_state(view)); 
360     gtk_box_pack_start(GTK_BOX(GTK_DIALOG(window)->vbox),
361                                    enable_button, TRUE, TRUE, 5);
362     /* Create Theme button */
363     theme_button = create_themes_button(priv->theme);
364     g_signal_connect (G_OBJECT (theme_button), "value-changed",  G_CALLBACK (changed_value_theme_cb), priv);
365     gtk_box_pack_start(GTK_BOX(GTK_DIALOG(window)->vbox),
366                                    theme_button, TRUE, TRUE, 5);
367
368     /* Create custom vbox */
369     vbox = gtk_vbox_new (FALSE, 5);
370     g_object_set_data(G_OBJECT(window), "custom_vbox", vbox);
371     gtk_box_pack_start(GTK_BOX(GTK_DIALOG(window)->vbox),
372                                    vbox, TRUE, TRUE, 5);
373     if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Berlin"))||
374         !strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Matrix"))||
375         !strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Modern"))){
376         rich_animation_additional_parametr(vbox, priv);
377     }
378
379     if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Video"))){
380         additional_parametr_for_theme_video(vbox, priv);
381     } 
382
383     gtk_widget_show (enable_button);
384     gtk_widget_show (theme_button);
385     gtk_widget_show (vbox);
386     gtk_widget_show (window);
387     save_button = gtk_dialog_add_button(GTK_DIALOG(window), _("Save"), GTK_RESPONSE_YES);
388
389     result = gtk_dialog_run(GTK_DIALOG(window));
390
391     switch(result){
392         case GTK_RESPONSE_YES:
393             /* Check theme */
394             if (hildon_button_get_value(HILDON_BUTTON (theme_button))){
395
396                 if (priv->theme)
397                     g_free(priv->theme);
398
399                 if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Berlin")))
400                     priv->theme = g_strdup("Berlin");
401                 if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Modern")))
402                     priv->theme = g_strdup("Modern");
403                 if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Matrix")))
404                     priv->theme = g_strdup("Matrix");
405                 if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Video"))){
406                     priv->theme = g_strdup("Video");
407                     button1 = g_object_get_data(G_OBJECT(priv->window), "filename_button");
408                     if (button1){
409                         if (priv->theme_string_parametr1)
410                             g_free(priv->theme_string_parametr1);
411                         priv->theme_string_parametr1 = g_strdup((gchar*)hildon_button_get_value (HILDON_BUTTON(button1)));
412                     }
413                 }
414
415             }
416
417             rich_animation_button = g_object_get_data(G_OBJECT(priv->window), "filename_button");
418             if (rich_animation_button){
419                 /* Check rich animation */
420                 if (hildon_check_button_get_active (HILDON_CHECK_BUTTON(rich_animation_button)))
421                     priv->rich_animation = TRUE;
422                 else
423                     priv->rich_animation = FALSE;
424             }
425             /* Save config */
426             save_config(priv);
427             /* action with applet */
428             if (hildon_check_button_get_active (HILDON_CHECK_BUTTON(enable_button))){
429                     if (!check_applet_state(view)){
430                         start_applet(view);
431                     }else {
432                         send_dbus_signal (priv,
433                               LIVEWP_SIGNAL_INTERFACE,
434                               LIVEWP_SIGNAL_PATH,
435                               LIVEWP_RELOAD_CONFIG);
436                     }
437             }else
438                     if (check_applet_state(view))
439                         stop_applet(view);
440
441             set_button_image(button, priv->theme, check_applet_state(view));
442             break;
443         default:
444         case GTK_RESPONSE_OK:
445         break;
446         case GTK_RESPONSE_NO:
447             gtk_widget_destroy(window);
448             window = NULL;
449             lw_about();
450         break;
451     }
452     if (window)
453         gtk_widget_destroy(window);
454 }
455 /*******************************************************************************/
456 gboolean
457 check_applet_state(gint number){
458
459     HDConfigFile *config_file = NULL;
460     GKeyFile *gkey_file = NULL;
461     gchar *str = NULL;
462     gboolean result = FALSE;
463     if (number > 4 || number < 1)
464         return FALSE;
465
466     str = g_strdup_printf("livewp-home-widget.desktop-%i", (number - 1));
467     config_file = hd_config_file_new(NULL, "/home/user/.config/hildon-desktop/", "home.plugins");
468     
469     gkey_file = hd_config_file_load_file(config_file, FALSE);
470     if (gkey_file && str){
471         result = g_key_file_has_group(gkey_file, str);
472         g_free(str);
473     }
474     return result;
475 #if 0
476     FILE    *file_in = NULL;
477     gchar buffer[2048];
478
479     file_in = fopen("/home/user/.config/hildon-desktop/home.plugins","r");
480     if (file_in){
481
482         fprintf(stderr,"Check applet state\n");
483         while (!feof(file_in)) {
484                 memset(buffer, 0, sizeof(buffer));
485                 fgets(buffer, sizeof(buffer) - 1, file_in);
486                 if (!strcmp(buffer, 
487                             "X-Desktop-File=/usr/share/applications/hildon-home/livewp-home-widget.desktop\n")){
488                     result = TRUE;
489                     break;
490                 }
491        }
492         fclose(file_in);
493     }
494 #endif
495 }
496 /*******************************************************************************/
497 void
498 start_applet(gint number){
499
500     HDConfigFile *config_file = NULL;
501     GKeyFile *gkey_file = NULL;
502     gchar *str = NULL;
503
504     if (number > 4 || number < 1)
505         return;
506     str = g_strdup_printf("livewp-home-widget.desktop-%i",(number - 1));
507     config_file = hd_config_file_new(NULL, "/home/user/.config/hildon-desktop/", "home.plugins");
508     
509     gkey_file = hd_config_file_load_file(config_file, FALSE);
510     if (gkey_file){
511         g_key_file_set_string (gkey_file, str, "X-Desktop-File", "/usr/share/applications/hildon-home/livewp-home-widget.desktop");
512         hd_config_file_save_file( config_file, gkey_file);
513         g_key_file_free(gkey_file);
514     }else
515         fprintf(stderr, "Problem with config file");
516     if (str)
517         g_free(str);
518     g_object_unref(config_file);
519 }
520 /*******************************************************************************/
521 void
522 stop_applet(gint number){
523     HDConfigFile *config_file = NULL;
524     GKeyFile *gkey_file = NULL;
525     gchar *str = NULL;
526
527     if (number > 4 || number < 1)
528         return;
529     str = g_strdup_printf("livewp-home-widget.desktop-%i", (number - 1));
530     config_file = hd_config_file_new(NULL, "/home/user/.config/hildon-desktop/", "home.plugins");
531     
532     gkey_file = hd_config_file_load_file(config_file, FALSE);
533     if (gkey_file){
534          g_key_file_remove_group(gkey_file, str, NULL);  
535         hd_config_file_save_file( config_file, gkey_file);
536         g_key_file_free(gkey_file);
537     }else
538         fprintf(stderr, "Problem with config file");
539     if (str)
540         g_free(str);
541     g_object_unref(config_file);
542
543 #if 0    
544     FILE    *file_in;
545     FILE    *file_out;
546     gchar buffer[2048];
547     gchar * str = NULL;
548
549     file_in = fopen("/home/user/.config/hildon-desktop/home.plugins","r");
550     file_out = fopen("/tmp/livewallpaper.plugins","w");
551     if (file_in && file_out){
552         while (!feof(file_in)) {
553             memset(buffer, 0, sizeof(buffer));
554             fgets(buffer, sizeof(buffer) - 1, file_in);
555             str = g_strdup_printf("[livewp-home-widget.desktop-%i]\n", number);
556             if (strcmp(buffer, str) &&
557                 strcmp(buffer, "X-Desktop-File=/usr/share/applications/hildon-home/livewp-home-widget.desktop\n"))
558                 fputs(buffer, file_out);
559         }
560         if (str){
561             g_free(str);
562         }
563         fclose(file_out);
564         fclose(file_in);
565         file_in = fopen("/tmp/livewallpaper.plugins","r");
566         file_out = fopen("/home/user/.config/hildon-desktop/home.plugins","w");
567         if (file_in && file_out){
568             while (!feof(file_in)){
569                 memset(buffer, 0, sizeof(buffer));
570                 fgets(buffer, sizeof(buffer) - 1, file_in);
571                 fputs(buffer, file_out);
572             }
573             fclose(file_out);
574             fclose(file_in);
575             unlink ("/tmp/livewallpaper.plugins");
576         }
577     }
578 #endif
579 }