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