changed license to GPL v2
[livewp] / applet / src / fifteen.c
index 3f37f4e..3de9265 100644 (file)
@@ -1,3 +1,27 @@
+/*vim: set sw=4 ts=4 et: */
+/*
+ * This file is part of Live Wallpaper (livewp)
+ * 
+ * Copyright (C) 2010 Vlad Vasiliev
+ * Copyright (C) 2010 Tanya Makova
+ *       for the code
+ * 
+ * This software is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ * 
+ * This software is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA
+*/
+/*******************************************************************************/
 #include <hildon/hildon.h>
 #include <time.h>
 #include <unistd.h>
@@ -101,11 +125,11 @@ gboolean main_timer(AWallpaperPlugin *desktop_plugin)
         if (scene->bone>-1)
             moving_actor(scene->timer_num, 10, desktop_plugin);
         else 
-            moving_all(scene->timer_num, 20, desktop_plugin);
+            moving_all(scene->timer_num, 15, desktop_plugin);
         return;
     } 
-    //char * accel_filename = "/sys/class/i2c-adapter/i2c-3/3-001d/coord";
-    char * accel_filename = "/home/tanya/coord";
+    char * accel_filename = "/sys/class/i2c-adapter/i2c-3/3-001d/coord";
+    //char * accel_filename = "/home/tanya/coord";
 
     gint direction = -1, bone;
     FILE *fd = NULL;
@@ -126,7 +150,7 @@ gboolean main_timer(AWallpaperPlugin *desktop_plugin)
     if (az < -2000) {
         //reinit(desktop_plugin);
         //sleep(1);
-        scene->timer_num = 20;
+        scene->timer_num = 15;
         scene->bone = -1;
         return TRUE;
     }
@@ -186,7 +210,7 @@ void
 view_state_changed (Animation_WallpaperPrivate *priv)
 {
     if (priv->visible && priv->long_timer == 0){
-        priv->long_timer = g_timeout_add(50, main_timer, priv->desktop_plugin);
+        priv->long_timer = g_timeout_add(100, main_timer, priv->desktop_plugin);
         //fprintf(stderr, "visible = 1 timeout_add %d\n", priv->long_timer);
     }else {
         //fprintf(stderr, "visible = 0 timer remove %d\n", priv->long_timer);
@@ -251,7 +275,7 @@ int main( int   argc, char *argv[] )
     scene->timer_num = 0;
     reinit(desktop_plugin);
     gtk_widget_show  (window);
-    priv->long_timer = g_timeout_add(50, main_timer, desktop_plugin);
+    //priv->long_timer = g_timeout_add(100, main_timer, desktop_plugin);
     //fprintf(stderr, "create timer %d\n", priv->long_timer);
     gtk_main ();
     return 0;