Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : apps/e

Dir     : e17/apps/e/data/themes


Modified Files:
        default_fileman.edc 


Log Message:
- more work on typebuffer
- you can do things like '*a*' or 'A*' and they will get selected.
- todo: 
 * replace TEXT part with something better (size limitations)
 * add more logic to typebuffer
 
       

===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/data/themes/default_fileman.edc,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -3 -r1.25 -r1.26
--- default_fileman.edc 7 Nov 2005 15:31:08 -0000       1.25
+++ default_fileman.edc 8 Nov 2005 00:00:25 -0000       1.26
@@ -188,9 +188,13 @@
         description {
            state: "default" 0.0;
            min: 96 64;
-           max: 384 64;            
-           visible: 0;
+           max: 384 64;
+           /* if we enable this, then we will zoom in / out */
+           //min: 24 16;
+           //max: 24 16;
+           visible: 1;
            align: 0.5 0.5;
+           color: 255 255 255 0;
            image {
               normal: "e17_fileman_typebuf.png";
               border: 17 17 17 17;
@@ -199,31 +203,60 @@
         description {
            state: "shown" 0.0;
            inherit: "default" 0.0;
+           min: 96 64;
+           max: 384 64;
            visible: 1;
+           color: 255 255 255 255;
         }
-      }     
-   }
-   
-   programs {   
-      program {
-        name: "typebuf_show";
-        signal: "typebuf_show";
-        source: "";
-        action: STATE_SET "shown" 0.0;
-        transition: LINEAR 0.2;
-        target: "typebuffer";
       }
-      program {
-        name: "typebuf_hide";
-        signal: "typebuf_hide";
-        source: "";
-        action: STATE_SET "default" 0.0;
-        transition: LINEAR 0.2;
-        target: "typebuffer";
+      part {
+        name:          "text";
+        type:          TEXT;
+        effect:        SHADOW;
+        description {
+           state: "default" 0.0;
+           fixed: 1 1;
+           align: 0.5 0.5;
+           color: 0 0 0 0;
+           color3: 255 255 255 0;
+           text {
+              text:     "No Title";
+              size:     12;
+              font:     "Edje-Vera";
+              align:    0.5 0.5;
+              elipsis:  0.0;
+              min: 1 1;
+           }       
+        }
+        description {
+           state: "shown" 0.0;
+           inherit: "default" 0.0;
+           color: 0 0 0 255;
+           color3: 255 255 255 128;
+        }          
+      }         
+      programs {   
+        program {
+           name: "typebuf_show";
+           signal: "typebuf_show";
+           source: "";
+           action: STATE_SET "shown" 0.0;
+           transition: LINEAR 0.2;
+           target: "typebuffer";
+           target: "text";
+        }
+        program {
+           name: "typebuf_hide";
+           signal: "typebuf_hide";
+           source: "";
+           action: STATE_SET "default" 0.0;
+           transition: LINEAR 0.2;
+           target: "typebuffer";
+           target: "text";         
+        }
       }
    }
 }
-        
 
 group {
    name: "fileman/main";




-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to