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