illume-theme: correct key for filemanager
[artwork.git] / illume / illume_init / freerunner.edc
blobdbdb9f5926d82ac68cae8832c87e47f66e75237a
1 images {
2    image: "boots.png" LOSSY 80;
3    image: "yingyang-small.png" LOSSY 80;
6 collections {
7    group { name: "e/init/splash";
8       parts {
9          part { name: "background_image";
10             description { state: "default" 0.0;
11                aspect: 0.75 0.75;
12                aspect_preference: NONE;
13                image.normal: "boots.png";
14             }
15          }
16          
17          part { name: "bar_bg";
18             type: RECT;
19             description { state: "default" 0.0;
20                rel1.relative: 0.0 0.0;
21                rel2.relative: 1.0 0.0;
22                color: 0 0 0 128;
23             }
24             description { state: "visible" 0.0;
25                inherit: "default" 0.0;
26                rel1.relative: 0.0 0.4;
27                rel2.relative: 1.0 0.6;
28             }
29          }
30          part { name: "bar";
31             description { state: "default" 0.0;
32                rel1.to: "bar_bg";
33                rel2 {
34                   to_x: "exquisite.progress";
35                   to_y: "bar_bg";
36                   relative: 1.0 1.0;
37                   offset: -1 -1;
38           }
39           aspect: 0.75 0.75;
40           aspect_preference: NONE;
41           image.normal: "yingyang-small.png";
42             }
43             description { state: "pulse" 1.0;
44                inherit: "default" 0.0;
45                rel1 {
46                   to: "bar_bg";
47                   relative: 0.0 0.0;
48                   offset: 0 0;
49                }
50                rel2 {
51                   to: "bar_bg";
52                   relative: 0.15 1.0;
53                   offset: -1 -1;
54           }
55           aspect: 0.75 0.75;
56           aspect_preference: NONE;
57           image.normal: "yingyang-small.png";
58             }
59             description { state: "pulse" 0.0;
60                inherit: "pulse" 1.0;
61                rel1 {
62                   to: "bar_bg";
63                   relative: 0.86 0.0;
64                   offset: 0 0;
65                }
66                rel2 {
67                   to: "bar_bg";
68                   relative: 1.0 1.0;
69                   offset: -1 -1;
70                }                                
71             }
72          }
73          
74          part { name: "exquisite.progress";
75             mouse_events: 0;
76             type: RECT;
77             dragable {
78                x: 1 1 0;
79                y: 0 0 0;
80                confine: "bar_bg";
81             }
82             description { state: "default" 0.0;
83                visible: 0;
84                rel1 {
85                   to: "bar_bg";
86                   relative: 0.5 0.5;
87                   offset: 0 0;
88                }
89                rel2 {
90                   to: "bar_bg";
91                   relative: 0.5 0.5;
92                   offset: 0 0;
93                }
94             }
95          }
96          
97          part { name: "black";
98             mouse_events: 0;
99             type: RECT;
100             description {
101                state: "default" 0.0;
102                color: 0 0 0 0;
103             }
104             description {
105                state: "visible" 0.0;
106                color: 0 0 0 255;
107             }
108          }
109       }
110       
111       programs {
112          program {
113             name: "logo-anim";
114             in: 0.5 0.0;
115             signal: "show";
116             source: "";
117             action: STATE_SET "visible" 0.0;
118             target: "bar_bg";
119             transition: DECELERATE 1.0;
120             after: "pulsate";
121          }
122          
123          program {
124             name: "exit";
125             signal: "e,state,done";
126             source: "e";
127             action: STATE_SET "visible" 0.0;
128             target: "black";
129             transition: LINEAR 0.5;
130             after: "exit2";
131          }
132          program {
133             name: "exit2";
134             action: SIGNAL_EMIT "e,state,done_ok" "e";
135          }
136          
137          program {
138             name: "pulsate";
139             action: STATE_SET "pulse" 1.0;
140             target: "bar";
141             after: "pulsate2";
142          }
143          program {
144             name: "pulsate2";
145             action: STATE_SET "pulse" 0.0;
146             target: "bar";
147             transition: SINUSOIDAL 0.8;
148             after: "pulsate3";
149          }
150          program {
151             name: "pulsate3";
152             action: STATE_SET "pulse" 1.0;
153             target: "bar";
154             transition: SINUSOIDAL 0.8;
155             after: "pulsate2";
156          }
157          
158          program {
159             name: "pulsate_stop";
160             action: ACTION_STOP;
161             target: "pulsate2";
162             target: "pulsate3";
163          }
164       }
165    }