Enlightenment CVS committal

Author  : rbdpngn
Project : e17
Module  : libs/ewl

Dir     : e17/libs/ewl/data/themes/default/bits


Modified Files:
        scrollbar.edc scrollbar.eet 


Log Message:
A little work towards working spinners, this needs some cleanup.

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/data/themes/default/bits/scrollbar.edc,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- scrollbar.edc       6 Oct 2003 17:33:08 -0000       1.1
+++ scrollbar.edc       11 Oct 2003 06:16:06 -0000      1.2
@@ -15,6 +15,7 @@
 }
 
 collections {
+
    group {
       name, "vscroll-up";
       min, 14 12;
@@ -120,6 +121,111 @@
       }
    } // end vscroll-up
 
+   group {
+      name, "vscroll-mini-up";
+      min, 12 10;
+      max, 12 10;
+      parts {
+        part {
+           name,          "base";
+           mouse_events,  1;
+           description {
+              state,    "default" 0.0;
+              border, 2 2 2 2;
+              rel1 {
+                 relative, 0.0  0.0;
+                 offset,   0    -1;
+              }
+              rel2 {
+                 relative, 1.0  1.0;
+                 offset,   -1    0;
+              }
+              image {
+                 normal, "vscroll-button.png";
+              }
+           }
+           description {
+              state,    "over" 0.0;
+              border, 2 2 2 2;
+              rel1 {
+                 relative, 0.0  0.0;
+                 offset,   0    -1;
+              }
+              rel2 {
+                 relative, 1.0  1.0;
+                 offset,   -1    0;
+              }
+              image {
+                 normal, "vscroll-button-over.png";
+              }
+           }
+           description {
+              state,    "clicked" 0.0;
+              border, 2 2 2 2;
+              rel1 {
+                 relative, 0.0  0.0;
+                 offset,   0    -1;
+              }
+              rel2 {
+                 relative, 1.0  1.0;
+                 offset,   -1    0;
+              }
+              image {
+                 normal, "vscroll-button-clicked.png";
+              }
+           }
+        }
+        
+        part {
+           name,          "arrow";
+           mouse_events,  1;
+           description {
+              state,    "default" 0.0;
+               min, 10 9;
+               max, 10 9;
+              rel1 {
+                 relative, 0.0  0.0;
+                 offset,   0    1;
+              }
+              rel2 {
+                 relative, 1.0  1.0;
+                 offset,   -1   -1;
+              }
+              image {
+                 normal, "arrow-up.png";
+              }
+           }
+        }
+      }
+
+      programs {
+         program {
+            name, "normal";
+            signal, "normal";
+            source, "*";
+            action, STATE_SET "default" 0.0;
+            transition, LINEAR, 0.0;
+            target, "base";
+        }
+         program {
+            name, "hilited";
+            signal, "hilited";
+            source, "*";
+            action, STATE_SET "over" 0.0;
+            transition, LINEAR, 0.0;
+            target, "base";
+        }
+         program {
+            name, "clicked";
+            signal, "clicked";
+            source, "*";
+            action, STATE_SET "clicked" 0.0;
+            transition, LINEAR, 0.0;
+            target, "base";
+        }
+      }
+   } // end vscroll-up
+
 
    group {
       name, "vscroll-down";
@@ -227,6 +333,111 @@
    } // end vscroll-dn
 
    group {
+      name, "vscroll-mini-down";
+      min, 12 10;
+      max, 12 10;
+      parts {
+        part {
+           name,          "base";
+           mouse_events,  1;
+           description {
+              state,    "default" 0.0;
+              border, 2 2 2 2;
+              rel1 {
+                 relative, 0.0  0.0;
+                 offset,   0    -1;
+              }
+              rel2 {
+                 relative, 1.0  1.0;
+                 offset,   -1   -1;
+              }
+              image {
+                 normal, "vscroll-button.png";
+              }
+           }
+           description {
+              state,    "over" 0.0;
+              border, 2 2 2 2;
+              rel1 {
+                 relative, 0.0  0.0;
+                 offset,   0    -1;
+              }
+              rel2 {
+                 relative, 1.0  1.0;
+                 offset,   -1   -1;
+              }
+              image {
+                 normal, "vscroll-button-over.png";
+              }
+           }
+           description {
+              state,    "clicked" 0.0;
+              border, 2 2 2 2;
+              rel1 {
+                 relative, 0.0  0.0;
+                 offset,   0    -1;
+              }
+              rel2 {
+                 relative, 1.0  1.0;
+                 offset,   -1   -1;
+              }
+              image {
+                 normal, "vscroll-button-clicked.png";
+              }
+           }
+        }
+        
+        part {
+           name,          "arrow";
+           mouse_events,  1;
+           description {
+              state,    "default" 0.0;
+               min, 10 9;
+               max, 10 9;
+              rel1 {
+                 relative, 0.0  0.0;
+                 offset,   0    0;
+              }
+              rel2 {
+                 relative, 1.0  1.0;
+                 offset,   -1   -1;
+              }
+              image {
+                 normal, "arrow-down.png";
+              }
+           }
+        }
+      }
+
+      programs {
+         program {
+            name, "normal";
+            signal, "normal";
+            source, "*";
+            action, STATE_SET "default" 0.0;
+            transition, LINEAR, 0.0;
+            target, "base";
+        }
+         program {
+            name, "hilited";
+            signal, "hilited";
+            source, "*";
+            action, STATE_SET "over" 0.0;
+            transition, LINEAR, 0.0;
+            target, "base";
+        }
+         program {
+            name, "clicked";
+            signal, "clicked";
+            source, "*";
+            action, STATE_SET "clicked" 0.0;
+            transition, LINEAR, 0.0;
+            target, "base";
+        }
+      }
+   } // end vscroll-dn
+
+   group {
       name, "hscroll-left";
       min, 12 14;
       max, 12 14;
@@ -331,11 +542,221 @@
       }
    } // end hscroll-left
 
+   group {
+      name, "hscroll-mini-left";
+      min, 10 12;
+      max, 10 12;
+      parts {
+        part {
+           name,          "base";
+           mouse_events,  1;
+           description {
+              state,    "default" 0.0;
+              border, 2 2 2 2;
+              rel1 {
+                 relative, 0.0  0.0;
+                 offset,   -1    0;
+              }
+              rel2 {
+                 relative, 1.0  1.0;
+                 offset,    0   -1;
+              }
+              image {
+                 normal, "hscroll-button.png";
+              }
+           }
+           description {
+              state,    "over" 0.0;
+              border, 2 2 2 2;
+              rel1 {
+                 relative, 0.0  0.0;
+                 offset,   -1    0;
+              }
+              rel2 {
+                 relative, 1.0  1.0;
+                 offset,    0   -1;
+              }
+              image {
+                 normal, "hscroll-button-over.png";
+              }
+           }
+           description {
+              state,    "clicked" 0.0;
+              border, 2 2 2 2;
+              rel1 {
+                 relative, 0.0  0.0;
+                 offset,   -1    0;
+              }
+              rel2 {
+                 relative, 1.0  1.0;
+                 offset,    0   -1;
+              }
+              image {
+                 normal, "hscroll-button-clicked.png";
+              }
+           }
+        }
+        
+        part {
+           name,          "arrow";
+           mouse_events,  1;
+           description {
+              state,    "default" 0.0;
+               min, 9 10;
+               max, 9 10;
+              rel1 {
+                 relative, 0.0  0.0;
+                 offset,   1    0;
+              }
+              rel2 {
+                 relative, 1.0  1.0;
+                 offset,   -1   -1;
+              }
+              image {
+                 normal, "arrow-left.png";
+              }
+           }
+        }
+      }
+
+      programs {
+         program {
+            name, "normal";
+            signal, "normal";
+            source, "*";
+            action, STATE_SET "default" 0.0;
+            transition, LINEAR, 0.0;
+            target, "base";
+        }
+         program {
+            name, "hilited";
+            signal, "hilited";
+            source, "*";
+            action, STATE_SET "over" 0.0;
+            transition, LINEAR, 0.0;
+            target, "base";
+        }
+         program {
+            name, "clicked";
+            signal, "clicked";
+            source, "*";
+            action, STATE_SET "clicked" 0.0;
+            transition, LINEAR, 0.0;
+            target, "base";
+        }
+      }
+   } // end hscroll-left
+
 
    group {
       name, "hscroll-right";
       min, 13 14;
       max, 13 14;
+      parts {
+        part {
+           name,          "base";
+           mouse_events,  1;
+           description {
+              state,    "default" 0.0;
+              border, 2 2 2 2;
+              rel1 {
+                 relative, 0.0  0.0;
+                 offset,   -1   0;
+              }
+              rel2 {
+                 relative, 1.0  1.0;
+                 offset,   -1   -1;
+              }
+              image {
+                 normal, "hscroll-button.png";
+              }
+           }
+           description {
+              state,    "over" 0.0;
+              border, 2 2 2 2;
+              rel1 {
+                 relative, 0.0  0.0;
+                 offset,   -1   0;
+              }
+              rel2 {
+                 relative, 1.0  1.0;
+                 offset,   -1   -1;
+              }
+              image {
+                 normal, "hscroll-button-over.png";
+              }
+           }
+           description {
+              state,    "clicked" 0.0;
+              border, 2 2 2 2;
+              rel1 {
+                 relative, 0.0  0.0;
+                 offset,   -1   0;
+              }
+              rel2 {
+                 relative, 1.0  1.0;
+                 offset,   -1   -1;
+              }
+              image {
+                 normal, "hscroll-button-clicked.png";
+              }
+           }
+        }
+        
+        part {
+           name,          "arrow";
+           mouse_events,  1;
+           description {
+              state,    "default" 0.0;
+               min, 9 10;
+               max, 9 10;
+              rel1 {
+                 relative, 0.0  0.0;
+                 offset,   1    0;
+              }
+              rel2 {
+                 relative, 1.0  1.0;
+                 offset,   -1   -1;
+              }
+              image {
+                 normal, "arrow-right.png";
+              }
+           }
+        }
+      }
+
+      programs {
+         program {
+            name, "normal";
+            signal, "normal";
+            source, "*";
+            action, STATE_SET "default" 0.0;
+            transition, LINEAR, 0.0;
+            target, "base";
+        }
+         program {
+            name, "hilited";
+            signal, "hilited";
+            source, "*";
+            action, STATE_SET "over" 0.0;
+            transition, LINEAR, 0.0;
+            target, "base";
+        }
+         program {
+            name, "clicked";
+            signal, "clicked";
+            source, "*";
+            action, STATE_SET "clicked" 0.0;
+            transition, LINEAR, 0.0;
+            target, "base";
+        }
+      }
+   } // end hscroll-right
+
+   group {
+      name, "hscroll-mini-right";
+      min, 10 12;
+      max, 10 12;
       parts {
         part {
            name,          "base";
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/data/themes/default/bits/scrollbar.eet,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
Binary files /tmp/cvs3tUBAW and /tmp/cvs4ZeySI differ




-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to