raster pushed a commit to branch master.

commit e88c44434263e50460ca46906712ce83a343f061
Author: Carsten Haitzler (Rasterman) <[email protected]>
Date:   Tue Jul 9 16:37:51 2013 +0900

    add video theme work.
---
 edje/edc/elm/video.edc | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/edje/edc/elm/video.edc b/edje/edc/elm/video.edc
new file mode 100644
index 0000000..6aa1f80
--- /dev/null
+++ b/edje/edc/elm/video.edc
@@ -0,0 +1,43 @@
+group { name: "elm/video/base/default";
+   parts {
+      part { name: "clipper"; type: RECT;
+         description { state: "default" 0.0;
+            color: 255 255 255 255;
+         }
+         description { state: "darker" 0.0;
+            color: 128 128 128 255;
+         }
+      }
+      part { name: "elm.swallow.video"; type: SWALLOW;  mouse_events: 1;
+         clip_to: "clipper";
+         description { state: "default" 0.0;
+            aspect: 1.0 1.0; aspect_preference: BOTH;
+         }
+      }
+   }
+   programs {
+      program {
+         signal: "elm,video,load"; source: "elm";
+         action: STATE_SET "darker" 0.0;
+         target: "clipper";
+      }
+      program {
+         signal: "elm,video,play"; source: "elm";
+         action: STATE_SET "default" 0.0;
+         transition: SINUSOUDAL 0.2;
+         target: "clipper";
+      }
+      program {
+         signal: "elm,video,end"; source: "elm";
+         action: STATE_SET "darker" 0.0;
+         transition: SINUSOUDAL 0.5;
+         target: "clipper";
+      }
+      program {
+         signal: "elm,video,pause"; source: "elm";
+         action: STATE_SET "darker" 0.0;
+         transition: SINUSOUDAL 0.7;
+         target: "clipper";
+      }
+   }
+}

-- 

------------------------------------------------------------------------------
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk

Reply via email to