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