aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/elementary/data/themes/widgets/video.edc
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 17:29:19 +1000
committerDavid Walter Seikel2013-01-13 17:29:19 +1000
commit07274513e984f0b5544586c74508ccd16e7dcafa (patch)
treeb32ff2a9136fbc1a4a6a0ed1e4d79cde0f5f16d9 /libraries/elementary/data/themes/widgets/video.edc
parentAdded Irrlicht 1.8, but without all the Windows binaries. (diff)
downloadSledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.zip
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.gz
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.bz2
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.xz
Remove EFL, since it's been released now.
Diffstat (limited to 'libraries/elementary/data/themes/widgets/video.edc')
-rw-r--r--libraries/elementary/data/themes/widgets/video.edc64
1 files changed, 0 insertions, 64 deletions
diff --git a/libraries/elementary/data/themes/widgets/video.edc b/libraries/elementary/data/themes/widgets/video.edc
deleted file mode 100644
index 628cbfe..0000000
--- a/libraries/elementary/data/themes/widgets/video.edc
+++ /dev/null
@@ -1,64 +0,0 @@
1group {
2 name: "elm/video/base/default";
3
4 parts {
5 part {
6 name: "clipper";
7 type: RECT;
8
9 description {
10 color: 255 255 255 255;
11 }
12 description {
13 state: "darker" 0.0;
14 color: 128 128 128 255;
15 }
16 }
17 part {
18 name: "elm.swallow.video";
19 type: SWALLOW;
20
21 clip_to: "clipper";
22 mouse_events: 1;
23 repeat_events: 1;
24
25 description {
26 aspect_preference: BOTH;
27 aspect: 1 1;
28 }
29 }
30 }
31
32 programs {
33 program {
34 signal: "elm,video,load";
35 source: "elm";
36
37 action: STATE_SET "darker" 0.0;
38 target: "clipper";
39 }
40 program {
41 signal: "elm,video,play";
42 source: "elm";
43
44 action: STATE_SET "default" 0.0;
45 target: "clipper";
46 }
47 program {
48 signal: "elm,video,end";
49 source: "elm";
50
51 action: STATE_SET "darker" 0.0;
52 target: "clipper";
53 transition: LINEAR 0.5;
54 }
55 program {
56 signal: "elm,video,pause";
57 source: "elm";
58
59 action: STATE_SET "darker" 0.0;
60 target: "clipper";
61 }
62 }
63}
64/////////////////////////////////////////////////////////////////////////