Welcome Ethumb, it's ready to get out of PROTO.
[framework/uifw/ethumb.git] / src / plugins / emotion / template.edc
1 collections {
2
3    group {
4       name: "movie/thumb";
5
6       parts {
7          part {
8             name: "image";
9             type: IMAGE;
10             mouse_events: 0;
11             description {
12                state: "default" 0.0;
13                fill.smooth: 0;
14                image.scale_hint: DYNAMIC;
15             }
16          }
17       }
18
19       programs {
20          program {
21             name: "animate";
22             signal: "animate";
23             action: STATE_SET "default" 0.0;
24             transition: LINEAR 3.0;
25             target: "image";
26          }
27          program {
28             name: "animate_loop";
29             signal: "animate_loop";
30             action: STATE_SET "default" 0.0;
31             transition: LINEAR 3.0;
32             target: "image";
33             after: "animate_loop";
34          }
35          program {
36             name: "animate_stop";
37             signal: "animate_stop";
38             action: ACTION_STOP;
39             target: "animate_loop";
40          }
41       }
42    }
43 }