Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : screenshot

Dir     : e_modules/screenshot


Modified Files:
        screenshot.edc 


Log Message:
Get rid of the count-down bug, again.


===================================================================
RCS file: /cvs/e/e_modules/screenshot/screenshot.edc,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- screenshot.edc      30 Jan 2006 05:12:51 -0000      1.6
+++ screenshot.edc      17 May 2006 21:38:47 -0000      1.7
@@ -1,99 +1,122 @@
-fonts {
+fonts
+{
    font: "VeraBd.ttf" "Edje-Vera-Bold";
 }
-images {
-       image: "module_icon.png" COMP;
+images
+{
+   image: "module_icon.png" COMP;
 }
-collections {
-group {
-   name: "modules/screenshot/main";
-   max:  128 128;
-               script {
-                       public it;
-                       public global_int;
-                       
-                        public timer_cb(val) {
-                               new str[100];
-                               new i;
-                               
-                               i = get_int(global_int);
-                               snprintf(str, sizeof(str), "%d", i);
-                               set_text(PART:"text", str);                     
                        
-                               set_int(global_int, (i - 1));
-                       if (i == 0) {
-                                       snprintf(str, sizeof(str), "%s", "");
-                                       set_text(PART:"text", str);             
                            
-                                       set_state(PART:"text", "default", 0.0); 
-                       } else {
-                               it = timer(1.0, "timer_cb", global_int);
-                           }                                           
-                       }
-               
-              public message(Msg_Type:type, id, ...) {
-                     if (type == MSG_INT_SET) {
-                               new tmp;
-                                       tmp = getarg(2);
-                                       set_int(global_int, tmp);
-                               set_state(PART:"text", "visible", 0.0);         
                        
-                               it = timer(1.0, "timer_cb", global_int);        
                                
-                     }
+collections
+{
+   group
+     {
+       name: "modules/screenshot/main";
+       max:  128 128;
+       script
+         {
+            public it;
+            public global_int;
+
+            public timer_cb(val)
+              {
+                 new str[100];
+                 new i;
+
+                 i = get_int(global_int);
+                 snprintf(str, sizeof(str), "%d", i);
+                 set_text(PART:"text", str);
+                 set_int(global_int, (i - 1));
+                 if (i <= 1)
+                   {
+                      snprintf(str, sizeof(str), "%s", "");
+                      set_text(PART:"text", str);
+                      set_state(PART:"text", "default", 0.0);
+                   }
+                 else
+                   {
+                      it = timer(1.0, "timer_cb", global_int);
+                   }
               }
-               }
 
-   parts {
-      part {
-        name: "logo";
-        description {
-           state: "default" 0.0;
-           aspect: 1.0 1.0;
-           rel1 {
-              relative: 0.0 0.0;
-              offset: 0 0;
-           }
-           rel2 {
-              relative: 1.0 1.0;
-              offset: -1 -1;
-           }
-           image {
-              normal: "module_icon.png";
-           }
-               color:255 255 255 255;
-        }
-      }
-      part {
-       name: "text";
-               mouse_events: 0;
-               type: TEXT;
-               effect: SOFT_SHADOW;
-               description {
-                       state: "default" 0.0;
-                       color: 0 0 0 255;
-                       color3: 255 255 255 255;
-                       visible: 0;
-                       rel1 {
-                               relative: 0.0 0.0;
-                               offset: 0 0;                    
-                               to: "logo";
-                       }
-                       rel2 {
-                               relative: 1.0 1.0;
-                               offset: -1 -1;                  
-                               to: "logo";
-                       }
-                       text {
-                               text: "";
-                               font: "Edje-Vera-Bold";
-                               size: 18;
-                               min:      1 1;                          
-                               align: 0.5 0.5;
-                       }
-               }
-               description {
-                       state: "visible" 0.0;
-                       inherit: "default" 0.0;
-                       visible: 1;
-               }
-      }
-   }
-}
+          public message(Msg_Type:type, id, ...)
+              {
+                 if (type == MSG_INT_SET)
+                   {
+                      new tmp;
+                      tmp = getarg(2);
+                      set_int(global_int, tmp);
+                      set_state(PART:"text", "visible", 0.0);
+                      it = timer(1.0, "timer_cb", global_int);
+                   }
+              }
+         }
+
+       parts
+         {
+            part
+              {
+                 name: "logo";
+                 description
+                   {
+                      state: "default" 0.0;
+                      aspect: 1.0 1.0;
+                      rel1
+                        {
+                           relative: 0.0 0.0;
+                           offset: 0 0;
+                        }
+                      rel2
+                        {
+                           relative: 1.0 1.0;
+                           offset: -1 -1;
+                        }
+                      image
+                        {
+                           normal: "module_icon.png";
+                        }
+                      color:255 255 255 255;
+                   }
+              }
+            part
+              {
+                 name: "text";
+                 mouse_events: 0;
+                 type: TEXT;
+                 effect: SOFT_SHADOW;
+                 description
+                   {
+                      state: "default" 0.0;
+                      color: 0 0 0 255;
+                      color3: 255 255 255 255;
+                      visible: 0;
+                      rel1
+                        {
+                           relative: 0.0 0.0;
+                           offset: 0 0;
+                           to: "logo";
+                        }
+                      rel2
+                        {
+                           relative: 1.0 1.0;
+                           offset: -1 -1;
+                           to: "logo";
+                        }
+                      text
+                        {
+                           text: "";
+                           font: "Edje-Vera-Bold";
+                           size: 18;
+                           min:      1 1;
+                           align: 0.5 0.5;
+                        }
+                   }
+                 description
+                   {
+                      state: "visible" 0.0;
+                      inherit: "default" 0.0;
+                      visible: 1;
+                   }
+              }
+         }
+     }
 }




-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to