ami pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=c567e1d2e57d9b0673110402f770f9a73ad70745

commit c567e1d2e57d9b0673110402f770f9a73ad70745
Author: Amitesh Singh <amitesh...@samsung.com>
Date:   Wed Apr 11 18:12:09 2018 +0900

    theme: video - remove elm video inheritance
---
 data/elementary/themes/edc/efl/video.edc | 46 +++++++++++++++++++++++++++++---
 1 file changed, 43 insertions(+), 3 deletions(-)

diff --git a/data/elementary/themes/edc/efl/video.edc 
b/data/elementary/themes/edc/efl/video.edc
index 3a2a658b06..1f943a8096 100644
--- a/data/elementary/themes/edc/efl/video.edc
+++ b/data/elementary/themes/edc/efl/video.edc
@@ -1,3 +1,43 @@
-group { "efl/video";
-   inherit: "elm/video/base/default";
-}
+group { name: "efl/video";
+   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: SINUSOIDAL 0.2 CURRENT;
+         target: "clipper";
+      }
+      program {
+         signal: "elm,video,end"; source: "elm";
+         action: STATE_SET "darker" 0.0;
+         transition: SINUSOIDAL 0.5 CURRENT;
+         target: "clipper";
+      }
+      program {
+         signal: "elm,video,pause"; source: "elm";
+         action: STATE_SET "darker" 0.0;
+         transition: SINUSOIDAL 0.7 CURRENT;
+         target: "clipper";
+      }
+   }
+}
\ No newline at end of file

-- 


Reply via email to