use simple E startup theme to leave some room for the actual processes starting up
[artwork.git] / illume / illume_init / freerunner.edc
blob229fd2097f3320ced01b521bb214e6461ffccf2b
1 images {
2    image: "background.png" LOSSY 80;
5 collections {
6    group { name: "e/init/splash";
7       parts {
8          part { name: "background_image";
9             description { state: "default" 0.0;
10                aspect: 0.75 0.75;
11                aspect_preference: NONE;
12                image.normal: "background.png";
13             }
14          }       
15          part { name: "bar_bg";
16             type: RECT;
17             description { state: "default" 0.0;
18                rel1.relative: 0.0 0.0;
19                rel2.relative: 1.0 0.0;
20                color: 0 0 0 128;
21             }
22             description { state: "visible" 0.0;
23                inherit: "default" 0.0;
24                rel1.relative: 0.0 0.8;
25                rel2.relative: 1.0 1.0;
26             }
27          }
28          part { name: "exquisite.progress";
29             mouse_events: 0;
30             type: RECT;
31             dragable {
32                x: 1 1 0;
33                y: 0 0 0;
34                confine: "bar_bg";
35             }
36             description { state: "default" 0.0;
37                visible: 0;
38                rel1 {
39                   to: "bar_bg";
40                   relative: 0.5 0.5;
41                   offset: 0 0;
42                }
43                rel2 {
44                   to: "bar_bg";
45                   relative: 0.5 0.5;
46                   offset: 0 0;
47                }
48             }
49          }
50          
51          part { name: "black";
52             mouse_events: 0;
53             type: RECT;
54             description {
55                state: "default" 0.0;
56                color: 0 0 0 0;
57             }
58             description {
59                state: "visible" 0.0;
60                color: 0 0 0 255;
61             }
62          }
63       }
64       
65       programs {
66          
67          program {
68             name: "exit";
69             signal: "e,state,done";
70             source: "e";
71             action: STATE_SET "visible" 0.0;
72             target: "black";
73             transition: LINEAR 0.5;
74             after: "exit2";
75          }
76          program {
77             name: "exit2";
78             action: SIGNAL_EMIT "e,state,done_ok" "e";
79          }
80          
81    }