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