added dbus signal for stoping of livebg
[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-scene.h"
27 #include "livewp-settings.h"
28 #include "livewp-home-widget.h"
29 /*******************************************************************************/
30 #include <X11/extensions/Xrender.h>
31 #include <gdk/gdkx.h>
32
33 #include <X11/Xatom.h>
34
35 void 
36 btn_setting_clicked(HildonButton *btn, gpointer data)
37 {
38     Animation_WallpaperPrivate *priv = data;
39     // open settings dialog
40     fprintf(stderr, "btn setting clicked, %s\n", priv->theme);
41     lw_main_settings(priv, NULL);
42     fprintf(stderr, "btn setting clicked, %s\n", priv->theme);
43 }
44 void
45 btn_power_clicked(HildonButton *btn, gpointer data)
46 {
47     const gchar *value; 
48     value = hildon_button_get_value(btn);
49     fprintf(stderr, "applet must be %s\n", value);
50     if (!strcmp(value, "stop"))
51         hildon_button_set_text(HILDON_BUTTON(btn), _("Start"), "start");
52     else 
53         hildon_button_set_text(HILDON_BUTTON(btn), _("Stop"), "stop");
54 }
55 static void set_live_bg (Display *display, Window xwindow, int mode)
56 {
57         Atom atom;
58
59         atom = XInternAtom (display, "_HILDON_LIVE_DESKTOP_BACKGROUND", False);
60         fprintf (stderr, "XID: 0x%x\n", (unsigned)xwindow);
61
62         XChangeProperty (display,
63                        xwindow,
64                        atom,
65                        XA_INTEGER, 32, PropModeReplace,
66                        (unsigned char *) &mode, 1);
67 }
68 void
69 quit_from_program (Animation_WallpaperPrivate *priv)
70 {
71      
72      if (priv){
73              livewp_deinitialize_dbus(priv);
74              fprintf(stderr,"Quit from LiveWallpaper \n");
75              if (priv->long_timer){
76                     g_source_remove(priv->long_timer);
77                 priv->long_timer = 0;
78              }
79              if (priv->short_timer){
80                     g_source_remove(priv->short_timer);
81                     priv->short_timer = 0;
82              }
83              destroy_scene(priv->desktop_plugin);
84      }
85      gtk_main_quit();
86 }
87
88 int
89 main(int argc, char *argv[])
90 {
91     GtkWidget *main_widget = NULL;
92     GtkWidget *window;
93     GtkWidget *btn_setting, *vbox, *btn_power;
94     gint result;
95     HildonProgram       *app;
96     int view = 0;
97
98      
99     if (argc == 2) 
100         view = atoi(argv[1]);
101     fprintf(stderr,"VIEW %i\n", view);
102     if (view < 0 || view > 3)
103         view = 0;
104
105     AWallpaperPlugin *desktop_plugin = g_new0 (AWallpaperPlugin, 1);
106     Animation_WallpaperPrivate *priv = g_new0 (Animation_WallpaperPrivate, 1);
107     desktop_plugin->priv = priv; 
108
109
110     /* Ininitializing */
111     hildon_gtk_init (&argc, &argv);
112     app = HILDON_PROGRAM (hildon_program_get_instance());
113     g_set_application_name (PACKAGE);
114  
115     priv->osso = osso_initialize("org.maemo.livewp", VERSION, TRUE, NULL);
116     if(!priv->osso){
117         fprintf(stderr,"osso_initialize failed\n");
118         return 1;
119     }
120
121 #ifdef ENABLE_NLS
122     setlocale(LC_ALL, "");
123     bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR);
124     bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
125     textdomain(GETTEXT_PACKAGE);
126 #endif
127 /* Create Main GUI */
128     main_widget = hildon_window_new ();
129     gtk_window_set_title(GTK_WINDOW(main_widget), PACKAGE);
130     
131     gtk_widget_show_all(GTK_WIDGET(main_widget));
132
133     priv->hash_scene_func = g_hash_table_new(g_str_hash, g_str_equal);
134     g_hash_table_insert(priv->hash_scene_func, g_strdup("Berlin"), (gpointer)&init_scene_Berlin);
135     g_hash_table_insert(priv->hash_scene_func, g_strdup("Modern"), (gpointer)&init_scene_Modern);
136     g_hash_table_insert(priv->hash_scene_func, g_strdup("Matrix"), (gpointer)&init_scene_Matrix);
137
138     priv->scene = NULL;
139     priv->window = main_widget;
140
141     priv->view = view;
142     priv->visible = TRUE;
143     /* Load config */
144     read_config(priv);
145     /* Initialize DBUS */
146     livewp_initialize_dbus(priv);
147     set_live_bg(GDK_WINDOW_XDISPLAY (main_widget->window), GDK_WINDOW_XID (main_widget->window), view + 1);
148     init_scene_theme(desktop_plugin);
149         
150     priv->long_timer = g_timeout_add(LONG_TIMER, (GtkFunction)long_timeout, desktop_plugin);
151
152     gtk_main();
153     return 0;
154 }