Make boot-animation can be built by 'ABS'
[apps/native/boot-animation.git] / res / edje / 360x360 / 360x360_PowerOn.edc
1 /*
2  * Copyright (c) 2009-2015 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 images {
19 #include "360x360_PowerOn_image.h"
20 }
21
22 collections {
23         group {
24                 name: "poweron";
25
26                 parts {
27                         part {
28                                 name: "bg";
29                                 type: RECT;
30                                 mouse_events: 0;
31                                 description {
32                                         state: "default";
33                                         color: 0 0 0 255;
34                                 }
35                         }
36                         part {
37                                 name: "poweron";
38                                 type: IMAGE;
39                                 mouse_events: 0;
40                                 description {
41                                         rel1 { relative: 0.0 (800-640)/2/800; }
42                                         rel2 { relative: 1.0 (((800-640)/2)+640)/800; }
43                                         state: "default" 0.0;
44                                         image {
45 #include "360x360_PowerOn_part.h"
46                                         }
47                                         visible: 1;
48                                 }
49                         }
50                 }
51
52                 programs {
53                         program {
54                                 name: "poweron";
55                                 signal: "show";
56                                 action: STATE_SET "default" 0.0;
57                                 target: "poweron";
58                                 transition: LINEAR 2.2;
59                                 after: "poweron_end";
60                         }
61                         program {
62                                 name: "poweron_end";
63                                 action: SIGNAL_EMIT "end" "animation";
64                         }
65                 }
66         }
67 }
68