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