began for category
[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.8 \n Copyright(c) 2010\n \
38 Tanya Makova\n Vlad Vasiliev\n \
39 Copyright(c) 2010 for design themes Berlin, Modern and Accel 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_category_selector (Animation_WallpaperPrivate *priv){
58     GtkWidget *selector;
59     GSList *store = priv->extheme_list;
60     GList *category_list;
61     GHashTable *result_table = NULL;
62     GtkListStore *list = NULL;
63     HildonTouchSelectorColumn *column = NULL;
64
65     result_table = g_hash_table_new(g_str_hash, g_str_equal);
66     while (store){  
67         if (!g_hash_table_lookup(result_table, g_hash_table_lookup(store->data, "category")))
68             g_hash_table_insert(result_table, g_hash_table_lookup(store->data, "category"), 1);     
69         store = g_slist_next(store);
70     }
71
72     category_list = g_hash_table_get_keys (result_table);
73     selector = hildon_touch_selector_new_text();
74
75     while (category_list){  
76         hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector),category_list->data );
77         category_list = g_list_next(category_list);
78     }
79
80     return selector;
81 }
82
83 /*******************************************************************************/
84 GtkWidget *
85 create_theme_selector (Animation_WallpaperPrivate *priv){
86     GtkWidget *selector;
87     GSList *store = priv->extheme_list;
88     selector = hildon_touch_selector_new_text ();
89
90     hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector), _("Berlin"));
91     hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector), _("Modern"));
92     hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector), _("Matrix"));
93     hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector), _("Accel"));
94     hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector), _("Video"));
95     while (store){  
96         hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector), g_hash_table_lookup(store->data, "name"));
97         store = g_slist_next(store);
98     }
99     return selector;
100 }
101 /*******************************************************************************/
102 void
103 theme_button_clicked(GtkButton *button, Animation_WallpaperPrivate *priv){
104
105     lw_theme_settings(GTK_WIDGET(button), priv);
106 }
107 /********************************************************************************/
108 void
109 set_button_image(GtkWidget * button, gchar *theme, gboolean enable){
110     GtkWidget * image = NULL; 
111     GdkPixbuf * pixbuf = NULL;
112     gchar *str = NULL;
113     if (enable)
114         str = g_strdup_printf( "%s/%s/%s", THEME_PATH, 
115                         theme, "icon.png");
116     else 
117         str = g_strdup_printf( "%s/%s/%s", THEME_PATH, 
118                         theme, "icond.png");
119     pixbuf = gdk_pixbuf_new_from_file_at_size (str, 
120                                              100, 
121                                              60, 
122                                              NULL);
123     if (str)
124         g_free(str);
125     if (pixbuf){
126         image = gtk_image_new_from_pixbuf (pixbuf);
127         g_object_unref(G_OBJECT(pixbuf));
128     }
129
130    hildon_button_set_image (HILDON_BUTTON (button), image);
131 }
132 /********************************************************************************/
133 GtkWidget *
134 create_image_button (gint view, DBusConnection *conn_sess){
135     GtkWidget *button;
136     
137     Animation_WallpaperPrivate *priv = g_new0(Animation_WallpaperPrivate, 1);
138     /* Add external themes to priv */
139     priv->extheme_list = get_list_exthemes();
140
141     priv->view = view;
142     priv->theme_string_parametr1 = NULL;
143     priv->dbus_conn_session = conn_sess;
144     read_config(priv);
145     button = hildon_button_new(HILDON_SIZE_AUTO_WIDTH | HILDON_SIZE_FINGER_HEIGHT,
146                                     HILDON_BUTTON_ARRANGEMENT_VERTICAL);
147     g_object_set_data(G_OBJECT(button), "view", GINT_TO_POINTER(view));
148     g_object_set_data(G_OBJECT(button), "priv", priv);
149     set_button_image(button, priv->theme, check_applet_state(view));
150     g_signal_connect(button, "clicked", G_CALLBACK(theme_button_clicked), priv);
151     hildon_button_set_image_position (HILDON_BUTTON (button), GTK_POS_RIGHT);
152     return button;
153
154 }
155 /********************************************************************************/
156 void
157 changed_value_theme_cb (HildonPickerButton *picker, Animation_WallpaperPrivate *priv)
158 {
159     const gchar *choice = hildon_button_get_value(HILDON_BUTTON (picker));
160     GtkWidget *vbox = NULL;
161         
162     vbox = g_object_get_data(G_OBJECT(priv->window), "custom_vbox");
163     if (vbox)
164         gtk_widget_destroy(vbox);
165     vbox = gtk_vbox_new (FALSE, 5);
166     g_object_set_data(G_OBJECT(priv->window), "custom_vbox", vbox);
167     gtk_box_pack_start(GTK_BOX(GTK_DIALOG(priv->window)->vbox),
168                                    vbox, TRUE, TRUE, 5);
169     if (choice) {
170         if (!strcmp(choice, _("Berlin"))){
171             rich_animation_additional_parametr(vbox,priv);
172         }
173         if (!strcmp(choice, _("Modern"))){
174             rich_animation_additional_parametr(vbox,priv);
175         }
176         if (!strcmp(choice, _("Matrix"))){
177             rich_animation_additional_parametr(vbox,priv);
178         }
179
180         if (!strcmp(choice, _("Accel"))){
181             rich_animation_additional_parametr(vbox,priv);
182         }
183         if (!strcmp(choice, _("Video"))){
184             additional_parametr_for_theme_video(vbox, priv);
185         }
186     }
187     gtk_widget_show(vbox);
188 }
189 /********************************************************************************/
190 void
191 changed_value_category_cb (HildonPickerButton *picker, Animation_WallpaperPrivate *priv)
192 {
193     const gchar *choice = hildon_button_get_value(HILDON_BUTTON (picker));
194     GtkWidget *vbox = NULL;
195         
196     vbox = g_object_get_data(G_OBJECT(priv->window), "custom_vbox");
197     if (vbox)
198         gtk_widget_destroy(vbox);
199     vbox = gtk_vbox_new (FALSE, 5);
200 }
201 /********************************************************************************/
202 GtkWidget *
203 create_themes_button (Animation_WallpaperPrivate *priv){
204
205     GtkWidget *button;
206     GtkWidget *selector;
207     gchar *theme = priv->theme;
208     gint num=0;
209
210     selector = create_theme_selector(priv);
211     button = hildon_picker_button_new (HILDON_SIZE_AUTO, HILDON_BUTTON_ARRANGEMENT_VERTICAL);
212     hildon_button_set_title (HILDON_BUTTON (button), _("Theme"));
213     hildon_picker_button_set_selector (HILDON_PICKER_BUTTON (button),
214                                                        HILDON_TOUCH_SELECTOR (selector));
215     if (theme) {
216         if (!strcmp(theme, "Berlin")){
217             hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, 0);
218             hildon_button_set_value(HILDON_BUTTON(button), _("Berlin"));
219         }
220         if (!strcmp(theme, "Modern")){
221             hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, 1);
222             hildon_button_set_value(HILDON_BUTTON(button), _("Modern"));
223         }
224         if (!strcmp(theme, "Matrix")){
225             hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, 2);
226             hildon_button_set_value(HILDON_BUTTON(button), _("Matrix"));
227         }
228         if (!strcmp(theme, "Accel")){
229             hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, 3);
230             hildon_button_set_value(HILDON_BUTTON(button), _("Accel"));
231         }
232         if (!strcmp(theme, "Video")){
233             hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, 4);
234             hildon_button_set_value(HILDON_BUTTON(button), _("Video"));
235         }
236         num = 5;
237         GSList *store = priv->extheme_list;
238         while (store){
239             if (!strcmp(theme, g_hash_table_lookup(store->data, "name"))){
240                 hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, num);
241                 hildon_button_set_value(HILDON_BUTTON(button), _(g_hash_table_lookup(store->data, "name")));
242                 break;
243             }
244             num++;
245             store = g_slist_next(store);
246         }
247     }
248     
249     return button;
250 }
251 /********************************************************************************/
252 GtkWidget *
253 create_categories_button (Animation_WallpaperPrivate *priv){
254
255     GtkWidget *button;
256     GtkWidget *selector;
257     gchar *theme = priv->theme;
258     gint num=0;
259
260     selector = create_category_selector(priv);
261     button = hildon_picker_button_new (HILDON_SIZE_AUTO, HILDON_BUTTON_ARRANGEMENT_VERTICAL);
262     hildon_button_set_title (HILDON_BUTTON (button), _("Category"));
263     hildon_picker_button_set_selector (HILDON_PICKER_BUTTON (button),
264                                                        HILDON_TOUCH_SELECTOR (selector));
265 /*                                                       
266     if (theme) {
267         if (!strcmp(theme, "Berlin")){
268             hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, 0);
269             hildon_button_set_value(HILDON_BUTTON(button), _("Berlin"));
270         }
271         if (!strcmp(theme, "Modern")){
272             hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, 1);
273             hildon_button_set_value(HILDON_BUTTON(button), _("Modern"));
274         }
275         if (!strcmp(theme, "Matrix")){
276             hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, 2);
277             hildon_button_set_value(HILDON_BUTTON(button), _("Matrix"));
278         }
279         if (!strcmp(theme, "Accel")){
280             hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, 3);
281             hildon_button_set_value(HILDON_BUTTON(button), _("Accel"));
282         }
283         if (!strcmp(theme, "Video")){
284             hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, 4);
285             hildon_button_set_value(HILDON_BUTTON(button), _("Video"));
286         }
287         num = 5;
288         GSList *store = priv->extheme_list;
289         while (store){
290             if (!strcmp(theme, g_hash_table_lookup(store->data, "name"))){
291                 hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, num);
292                 hildon_button_set_value(HILDON_BUTTON(button), _(g_hash_table_lookup(store->data, "name")));
293                 break;
294             }
295             num++;
296             store = g_slist_next(store);
297         }
298     }
299 */    
300     return button;
301 }
302
303 /*******************************************************************************/
304 GtkWidget *
305 create_rich_animation_button (gboolean active, gchar *name)
306 {
307     GtkWidget *button;
308     button = hildon_check_button_new (HILDON_SIZE_AUTO);
309     gtk_button_set_label (GTK_BUTTON (button), name);
310     hildon_check_button_set_active(HILDON_CHECK_BUTTON(button), active);
311     return button;
312 }
313 /*******************************************************************************/
314 GtkWidget *
315 create_enable_button (gboolean active)
316 {
317     GtkWidget *button;
318     button = hildon_check_button_new (HILDON_SIZE_AUTO);
319     gtk_button_set_label (GTK_BUTTON (button), _("Enable"));
320     hildon_check_button_set_active(HILDON_CHECK_BUTTON(button), active);
321     return button;
322 }
323
324 /*******************************************************************************/
325 void
326 show_settings(GtkWidget *widget, Animation_WallpaperPrivate *priv){
327     lw_main_settings(priv, NULL);
328 }
329 /*******************************************************************************/
330 void 
331 lw_main_settings(Animation_WallpaperPrivate *priv, gpointer data){
332     gint result;
333     GtkWidget *window = NULL;
334     GtkWidget *theme_button1;
335     GtkWidget *theme_button2;
336     GtkWidget *theme_button3;
337     GtkWidget *theme_button4;
338     GtkWidget *hbox;
339     Animation_WallpaperPrivate *priv_temp = NULL;
340
341     window = gtk_dialog_new();
342
343     gtk_window_set_title(GTK_WINDOW(window), _("Live Wallpaper Settings"));
344     gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
345     gtk_window_set_modal(GTK_WINDOW(window), TRUE);
346     /* Create Theme button */
347     hbox = gtk_hbox_new(FALSE, 5);
348     theme_button1 = create_image_button(1, priv->dbus_conn_session);
349     gtk_box_pack_start(GTK_BOX(hbox),
350                                    theme_button1, TRUE, TRUE, 5);
351     theme_button2 = create_image_button(2, priv->dbus_conn_session);
352     gtk_box_pack_start(GTK_BOX(hbox),
353                                    theme_button2, TRUE, TRUE, 5);
354     theme_button3 = create_image_button(3, priv->dbus_conn_session);
355     gtk_box_pack_start(GTK_BOX(hbox),
356                                    theme_button3, TRUE, TRUE, 5);
357     theme_button4 = create_image_button(4, priv->dbus_conn_session);
358     gtk_box_pack_start(GTK_BOX(hbox),
359                                    theme_button4, TRUE, TRUE, 5);
360     gtk_box_pack_start(GTK_BOX(GTK_DIALOG(window)->vbox),
361                                    hbox, TRUE, TRUE, 5);
362
363     gtk_widget_show (theme_button1);
364     gtk_widget_show (theme_button2);
365     gtk_widget_show (theme_button3);
366     gtk_widget_show (theme_button4);
367     gtk_widget_show_all (hbox);
368     gtk_widget_show (window);
369     gtk_dialog_add_button(GTK_DIALOG(window), _("About"), GTK_RESPONSE_NO);
370
371     result = gtk_dialog_run(GTK_DIALOG(window));
372
373     priv_temp = g_object_get_data(G_OBJECT(theme_button1), "priv");
374     if (priv_temp){
375         g_free(priv_temp);
376         priv_temp =NULL;
377     }
378     priv_temp = g_object_get_data(G_OBJECT(theme_button2), "priv");
379     if (priv_temp){
380         g_free(priv_temp);
381         priv_temp =NULL;
382     }
383     priv_temp = g_object_get_data(G_OBJECT(theme_button3), "priv");
384     if (priv_temp){
385         g_free(priv_temp);
386         priv_temp =NULL;
387     }
388     priv_temp = g_object_get_data(G_OBJECT(theme_button4), "priv");
389     if (priv_temp){
390         g_free(priv_temp);
391         priv_temp =NULL;
392     }
393
394
395     switch(result){
396         case GTK_RESPONSE_NO:
397             gtk_widget_destroy(window);
398             window = NULL;
399             lw_about();
400         break;
401     }
402
403
404     if (window)
405         gtk_widget_destroy(window);
406 }
407 /*******************************************************************************/
408 void
409 file_button_clicked(GtkButton *button, Animation_WallpaperPrivate *priv){
410
411     GtkWidget *dialog = hildon_file_chooser_dialog_new(GTK_WINDOW (priv->window), GTK_FILE_CHOOSER_ACTION_OPEN);
412
413     if (priv->theme_string_parametr1)
414         gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dialog), priv->theme_string_parametr1);
415
416     gtk_widget_show_all (GTK_WIDGET (dialog));
417
418     if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_OK)
419     {
420       hildon_button_set_value (HILDON_BUTTON(button), gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog)));
421     }
422     gtk_widget_destroy (dialog);
423
424 }
425 /*******************************************************************************/
426 void
427 rich_animation_additional_parametr(GtkWidget *vbox, Animation_WallpaperPrivate *priv){
428     GtkWidget *rich_animation_button;
429     /* Create rich animation button */  
430     rich_animation_button = create_rich_animation_button(priv->rich_animation, _("Rich Animation"));
431     gtk_box_pack_start(GTK_BOX(vbox),
432                                    rich_animation_button, TRUE, TRUE, 5);
433     g_object_set_data(G_OBJECT(priv->window), "rich_animation_button", rich_animation_button);
434     gtk_widget_show (rich_animation_button);
435 }
436 /*******************************************************************************/
437 void
438 additional_parametr_for_theme_video(GtkWidget *vbox, Animation_WallpaperPrivate *priv){
439
440     GtkWidget *file_button;
441     GtkWidget *rich_animation_button;
442
443     if (priv->theme_string_parametr1)
444         file_button = hildon_button_new_with_text (HILDON_SIZE_FINGER_HEIGHT, HILDON_BUTTON_ARRANGEMENT_VERTICAL,
445                                                    _("Play file"), priv->theme_string_parametr1);
446     else
447         file_button = hildon_button_new_with_text (HILDON_SIZE_FINGER_HEIGHT,HILDON_BUTTON_ARRANGEMENT_VERTICAL,
448                                                    _("Play file")," ");
449
450     g_signal_connect (file_button, "clicked", G_CALLBACK (file_button_clicked), priv);
451
452     gtk_box_pack_start(GTK_BOX(vbox),
453                                    file_button, TRUE, TRUE, 5);
454     g_object_set_data(G_OBJECT(priv->window), "filename_button", file_button);    /* Create rich animation button */  
455     rich_animation_button = create_rich_animation_button(priv->rich_animation, _("Loop"));
456     gtk_box_pack_start(GTK_BOX(vbox),
457                                    rich_animation_button, TRUE, TRUE, 5);
458     g_object_set_data(G_OBJECT(priv->window), "rich_animation_button", rich_animation_button);
459
460     gtk_widget_show (file_button);
461     gtk_widget_show (rich_animation_button);
462
463 }
464 /*******************************************************************************/
465 void 
466 lw_theme_settings(GtkWidget *button, Animation_WallpaperPrivate *priv) {
467     gint result;
468     GtkWidget *window = NULL;
469     GtkWidget *save_button;
470     GtkWidget *theme_button;
471     GtkWidget *category_button;
472     GtkWidget *enable_button;
473     GtkWidget *vbox;
474     GtkWidget *button1 = NULL;
475     GtkWidget *rich_animation_button = NULL;
476     gint view = priv->view;
477
478     window = gtk_dialog_new();
479     priv->window = window;
480
481     gtk_window_set_title(GTK_WINDOW(window), _("View Settings"));
482     gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
483     gtk_window_set_modal(GTK_WINDOW(window), TRUE);
484     /* Create Enable button */
485     enable_button = create_enable_button(check_applet_state(view)); 
486     gtk_box_pack_start(GTK_BOX(GTK_DIALOG(window)->vbox),
487                                    enable_button, TRUE, TRUE, 5);
488     /* Create Category button */
489     category_button = create_categories_button(priv);
490     g_signal_connect (G_OBJECT (category_button), "value-changed",  G_CALLBACK (changed_value_category_cb), priv);
491     gtk_box_pack_start(GTK_BOX(GTK_DIALOG(window)->vbox),
492                                    category_button, TRUE, TRUE, 5);
493
494     /* Create Theme button */
495     theme_button = create_themes_button(priv);
496     g_signal_connect (G_OBJECT (theme_button), "value-changed",  G_CALLBACK (changed_value_theme_cb), priv);
497     gtk_box_pack_start(GTK_BOX(GTK_DIALOG(window)->vbox),
498                                    theme_button, TRUE, TRUE, 5);
499
500     /* Create custom vbox */
501     vbox = gtk_vbox_new (FALSE, 5);
502     g_object_set_data(G_OBJECT(window), "custom_vbox", vbox);
503     gtk_box_pack_start(GTK_BOX(GTK_DIALOG(window)->vbox),
504                                    vbox, TRUE, TRUE, 5);
505     if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Berlin"))||
506         !strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Matrix"))||
507         !strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Accel"))||
508         !strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Modern"))){
509         rich_animation_additional_parametr(vbox, priv);
510     }
511
512     if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Video"))){
513         additional_parametr_for_theme_video(vbox, priv);
514     } 
515
516     gtk_widget_show (enable_button);
517     gtk_widget_show (category_button);
518     gtk_widget_show (theme_button);
519     gtk_widget_show (vbox);
520     gtk_widget_show (window);
521     save_button = gtk_dialog_add_button(GTK_DIALOG(window), _("Save"), GTK_RESPONSE_YES);
522
523     result = gtk_dialog_run(GTK_DIALOG(window));
524
525     switch(result){
526         case GTK_RESPONSE_YES:
527             /* Check theme */
528             if (hildon_button_get_value(HILDON_BUTTON (theme_button))){
529                 /* Check Xsnow program */
530                 if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Xsnow"))){
531                     if (access("/usr/bin/xsnow", F_OK) != 0){
532                         hildon_banner_show_information(GTK_WIDGET(button), NULL, 
533                         _("You haven't got the installed package Xsnow. Please install it via using Application Manager"));
534                         /* if not scuccess exit from wthout saving */ 
535                         break;
536                     }
537                 }
538
539                 if (priv->theme)
540                     g_free(priv->theme);
541                 if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Berlin")))
542                     priv->theme = g_strdup("Berlin");
543                 if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Modern")))
544                     priv->theme = g_strdup("Modern");
545                 if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Matrix")))
546                     priv->theme = g_strdup("Matrix");
547                 if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Accel")))
548                     priv->theme = g_strdup("Accel");
549                 if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Video"))){
550                     priv->theme = g_strdup("Video");
551                     button1 = g_object_get_data(G_OBJECT(priv->window), "filename_button");
552                     if (button1){
553                         if (priv->theme_string_parametr1)
554                             g_free(priv->theme_string_parametr1);
555                         priv->theme_string_parametr1 = g_strdup((gchar*)hildon_button_get_value (HILDON_BUTTON(button1)));
556                     }
557                 }
558                 /* Check external themes */
559                 GSList *store = priv->extheme_list;
560                 while (store){
561                     if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _(g_hash_table_lookup(store->data, "name")))){
562                         priv->theme = g_strdup(g_hash_table_lookup(store->data, "name"));
563                         break;
564                     }
565                     store = g_slist_next(store);
566                 }
567
568             }
569
570             rich_animation_button = g_object_get_data(G_OBJECT(priv->window), "rich_animation_button");
571             if (rich_animation_button){
572                 /* Check rich animation */
573                 if (hildon_check_button_get_active (HILDON_CHECK_BUTTON(rich_animation_button)))
574                     priv->rich_animation = TRUE;
575                 else
576                     priv->rich_animation = FALSE;
577             }
578             /* Save config */
579             save_config(priv);
580             /* action with applet */
581             if (hildon_check_button_get_active (HILDON_CHECK_BUTTON(enable_button))){
582                     if (!check_applet_state(view)){
583                         start_applet(view);
584                     }else {
585                         send_dbus_signal (priv,
586                               LIVEWP_SIGNAL_INTERFACE,
587                               LIVEWP_SIGNAL_PATH,
588                               LIVEWP_RELOAD_CONFIG);
589                     }
590             }else
591                     if (check_applet_state(view))
592                         stop_applet(view);
593
594             set_button_image(button, priv->theme, check_applet_state(view));
595             break;
596         default:
597         case GTK_RESPONSE_OK:
598         break;
599         case GTK_RESPONSE_NO:
600             gtk_widget_destroy(window);
601             window = NULL;
602             lw_about();
603         break;
604     }
605     if (window)
606         gtk_widget_destroy(window);
607 }
608 /*******************************************************************************/
609 gboolean
610 check_applet_state(gint number){
611
612     HDConfigFile *config_file = NULL;
613     GKeyFile *gkey_file = NULL;
614     gchar *str = NULL;
615     gboolean result = FALSE;
616     if (number > 4 || number < 1)
617         return FALSE;
618
619     str = g_strdup_printf("livewp-home-widget.desktop-%i", (number - 1));
620     config_file = hd_config_file_new(NULL, "/home/user/.config/hildon-desktop/", "home.plugins");
621     
622     gkey_file = hd_config_file_load_file(config_file, FALSE);
623     if (gkey_file && str){
624         result = g_key_file_has_group(gkey_file, str);
625         g_free(str);
626     }
627     return result;
628 #if 0
629     FILE    *file_in = NULL;
630     gchar buffer[2048];
631
632     file_in = fopen("/home/user/.config/hildon-desktop/home.plugins","r");
633     if (file_in){
634
635         fprintf(stderr,"Check applet state\n");
636         while (!feof(file_in)) {
637                 memset(buffer, 0, sizeof(buffer));
638                 fgets(buffer, sizeof(buffer) - 1, file_in);
639                 if (!strcmp(buffer, 
640                             "X-Desktop-File=/usr/share/applications/hildon-home/livewp-home-widget.desktop\n")){
641                     result = TRUE;
642                     break;
643                 }
644        }
645         fclose(file_in);
646     }
647 #endif
648 }
649 /*******************************************************************************/
650 void
651 start_applet(gint number){
652
653     HDConfigFile *config_file = NULL;
654     GKeyFile *gkey_file = NULL;
655     gchar *str = NULL;
656
657     if (number > 4 || number < 1)
658         return;
659     str = g_strdup_printf("livewp-home-widget.desktop-%i",(number - 1));
660     config_file = hd_config_file_new(NULL, "/home/user/.config/hildon-desktop/", "home.plugins");
661     
662     gkey_file = hd_config_file_load_file(config_file, FALSE);
663     if (gkey_file){
664         g_key_file_set_string (gkey_file, str, "X-Desktop-File", "/usr/share/applications/hildon-home/livewp-home-widget.desktop");
665         hd_config_file_save_file( config_file, gkey_file);
666         g_key_file_free(gkey_file);
667     }else
668         fprintf(stderr, "Problem with config file");
669     if (str)
670         g_free(str);
671     g_object_unref(config_file);
672 }
673 /*******************************************************************************/
674 void
675 stop_applet(gint number){
676     HDConfigFile *config_file = NULL;
677     GKeyFile *gkey_file = NULL;
678     gchar *str = NULL;
679
680     if (number > 4 || number < 1)
681         return;
682     str = g_strdup_printf("livewp-home-widget.desktop-%i", (number - 1));
683     config_file = hd_config_file_new(NULL, "/home/user/.config/hildon-desktop/", "home.plugins");
684     
685     gkey_file = hd_config_file_load_file(config_file, FALSE);
686     if (gkey_file){
687          g_key_file_remove_group(gkey_file, str, NULL);  
688         hd_config_file_save_file( config_file, gkey_file);
689         g_key_file_free(gkey_file);
690     }else
691         fprintf(stderr, "Problem with config file");
692     if (str)
693         g_free(str);
694     g_object_unref(config_file);
695
696 #if 0    
697     FILE    *file_in;
698     FILE    *file_out;
699     gchar buffer[2048];
700     gchar * str = NULL;
701
702     file_in = fopen("/home/user/.config/hildon-desktop/home.plugins","r");
703     file_out = fopen("/tmp/livewallpaper.plugins","w");
704     if (file_in && file_out){
705         while (!feof(file_in)) {
706             memset(buffer, 0, sizeof(buffer));
707             fgets(buffer, sizeof(buffer) - 1, file_in);
708             str = g_strdup_printf("[livewp-home-widget.desktop-%i]\n", number);
709             if (strcmp(buffer, str) &&
710                 strcmp(buffer, "X-Desktop-File=/usr/share/applications/hildon-home/livewp-home-widget.desktop\n"))
711                 fputs(buffer, file_out);
712         }
713         if (str){
714             g_free(str);
715         }
716         fclose(file_out);
717         fclose(file_in);
718         file_in = fopen("/tmp/livewallpaper.plugins","r");
719         file_out = fopen("/home/user/.config/hildon-desktop/home.plugins","w");
720         if (file_in && file_out){
721             while (!feof(file_in)){
722                 memset(buffer, 0, sizeof(buffer));
723                 fgets(buffer, sizeof(buffer) - 1, file_in);
724                 fputs(buffer, file_out);
725             }
726             fclose(file_out);
727             fclose(file_in);
728             unlink ("/tmp/livewallpaper.plugins");
729         }
730     }
731 #endif
732 }