rich animation button almost done
[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\n Version 0.2 \n Copyright(c) 2010\n \
38 Tanya Makova\n Vlad Vasiliev\n \
39 Copyright(c) 2010 for design \n Vasya Bobrikov")); 
40     gtk_box_pack_start (GTK_BOX (vbox), label_about, FALSE, FALSE, 0);
41     gtk_box_pack_start(GTK_BOX(GTK_DIALOG(window)->vbox),
42                                    vbox, TRUE, TRUE, 0);
43     gtk_widget_show (label_about);
44     gtk_widget_show (vbox);
45     gtk_widget_show (window);
46     gtk_dialog_run(GTK_DIALOG(window));
47
48 }
49 /*******************************************************************************/
50 GtkWidget *
51 create_theme_selector (void)
52 {
53       GtkWidget *selector;
54
55       selector = hildon_touch_selector_new_text ();
56
57       hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector), _("Berlin"));
58       hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector), _("Modern"));
59       return selector;
60 }
61 /*******************************************************************************/
62 GtkWidget *
63 create_themes_button (gchar *theme){
64
65     GtkWidget *button;
66     GtkWidget *selector;
67
68     selector = create_theme_selector();
69     button = hildon_picker_button_new (HILDON_SIZE_AUTO, HILDON_BUTTON_ARRANGEMENT_VERTICAL);
70     hildon_button_set_title (HILDON_BUTTON (button), _("Theme"));
71     hildon_picker_button_set_selector (HILDON_PICKER_BUTTON (button),
72                                                        HILDON_TOUCH_SELECTOR (selector));
73     if (theme) {
74         if (!strcmp(theme, "Berlin")){
75             hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, 0);
76             hildon_button_set_value(HILDON_BUTTON(button), _("Berlin"));
77         }
78         if (!strcmp(theme, "Modern")){
79             hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, 1);
80             hildon_button_set_value(HILDON_BUTTON(button), _("Modern"));
81         }
82
83     }
84     return button;
85 }
86
87 /*******************************************************************************/
88 GtkWidget *
89 create_rich_animation_button (void)
90 {
91     GtkWidget *button;
92     button = hildon_check_button_new (HILDON_SIZE_AUTO);
93     gtk_button_set_label (GTK_BUTTON (button), _("Rich Animation"));
94 //  g_signal_connect (button, "toggled", G_CALLBACK (button_toggled), NULL);
95     return button;
96 }
97
98 /*******************************************************************************/
99 void 
100 lw_settings(GtkWidget *widget, Animation_WallpaperPrivate *priv){
101     gint result;
102     GtkWidget *window = NULL;
103     GtkWidget *save_button;
104     GtkWidget *theme_button;
105     GtkWidget *rich_animation_button;
106
107     window = gtk_dialog_new();
108     gtk_window_set_title(GTK_WINDOW(window), _("Live Wallpaper Settings"));
109     gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
110     gtk_window_set_modal(GTK_WINDOW(window), TRUE);
111     /* Create Theme button */
112     theme_button = create_themes_button(priv->theme);
113     gtk_box_pack_start(GTK_BOX(GTK_DIALOG(window)->vbox),
114                                    theme_button, TRUE, TRUE, 5);
115     /* Create rich animation button */  
116     rich_animation_button = create_rich_animation_button();
117     gtk_box_pack_start(GTK_BOX(GTK_DIALOG(window)->vbox),
118                                    rich_animation_button, TRUE, TRUE, 5);
119     gtk_widget_show (theme_button);
120     gtk_widget_show (window);
121     gtk_dialog_add_button(GTK_DIALOG(window), _("About"), GTK_RESPONSE_NO);
122     save_button = gtk_dialog_add_button(GTK_DIALOG(window), _("Save"), GTK_RESPONSE_YES);
123     result = gtk_dialog_run(GTK_DIALOG(window));
124
125     switch(result){
126         case GTK_RESPONSE_YES:
127             if (hildon_button_get_value(HILDON_BUTTON (theme_button))){
128                 if (priv->theme)
129                     g_free(priv->theme);
130                 if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Berlin")))
131                     priv->theme = g_strdup("Berlin");
132                 if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Modern")))
133                     priv->theme = g_strdup("Modern");
134                 if (hildon_check_button_get_active (rich_animation_button))
135                     priv->rich_animation = TRUE;
136                 else
137                     priv->rich_animation = FALSE;
138             }
139             save_config(priv);
140             reload_scene(priv->desktop_plugin);
141         break;
142         default:
143         case GTK_RESPONSE_OK:
144         break;
145         case GTK_RESPONSE_NO:
146             gtk_widget_destroy(window);
147             window = NULL;
148             lw_about();
149         break;
150     }
151     if (window)
152         gtk_widget_destroy(window);
153 }