0bb5af4ed66340184aaafe9ecdd6e774b0278888
[livewp] / applet / src / livewp-main.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-common.h"
26 #include "livewp-settings.h"
27 /*******************************************************************************/
28
29 int
30 main(int argc, char *argv[])
31 {
32     GtkWidget *main_widget = NULL;
33     GtkWidget *window;
34     gint result;
35     HildonProgram       *app;
36     osso_context_t  *osso_context;
37
38 #ifdef ENABLE_NLS
39     setlocale(LC_ALL, "");
40     bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR);
41     bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
42     textdomain(GETTEXT_PACKAGE);
43 #endif
44     osso_context = osso_initialize("org.maemo.livewp", VERSION, TRUE, NULL);
45     if(!osso_context){
46         fprintf(stderr,"osso_initialize failed\n");
47         return 1;
48     }
49
50
51     gtk_init(&argc, &argv);
52     app = HILDON_PROGRAM ( hildon_program_get_instance () );
53     g_set_application_name (PACKAGE);
54  
55     main_widget = hildon_stackable_window_new ();
56     gtk_window_set_title(GTK_WINDOW(main_widget), PACKAGE);
57     hildon_program_add_window(app, HILDON_WINDOW(main_widget));
58 #if 0
59     window = create_settings();
60     if (window){
61         //gtk_widget_show_all(window);
62         
63         result = gtk_dialog_run(GTK_DIALOG(window));
64
65     switch(result){
66         case GTK_RESPONSE_YES:
67             #if 0
68             if (hildon_button_get_value(HILDON_BUTTON (theme_button))){
69                 if (priv->theme)
70                     g_free(priv->theme);
71                 if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Berlin")))
72                     priv->theme = g_strdup("Berlin");
73                 if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Modern")))
74                     priv->theme = g_strdup("Modern");
75                 if (!strcmp(hildon_button_get_value(HILDON_BUTTON (theme_button)), _("Matrix")))
76                     priv->theme = g_strdup("Matrix");
77                 if (hildon_check_button_get_active (rich_animation_button))
78                     priv->rich_animation = TRUE;
79                 else
80                     priv->rich_animation = FALSE;
81             }
82             save_config(priv);
83             reload_scene(priv->desktop_plugin);
84             #endif
85             //fprintf(stderr, "click save %s\n", hildon_button_get_value(HILDON_BUTTON(theme_button)));
86             fprintf(stderr, "click save \n");
87         break;
88         default:
89         case GTK_RESPONSE_OK:
90         break;
91         case GTK_RESPONSE_NO:
92             fprintf(stderr, "click about\n");
93             gtk_widget_destroy(window);
94             window = NULL;
95             //lw_about();
96         break;
97     }
98     //if (window)
99       //  gtk_widget_destroy(window);
100     //}
101     }
102 #endif
103         gtk_main();
104     return 0;
105 }