Find engine shared library file properly
[platform/core/appfw/ui-gadget-1.git] / ug-efl-engine / ug_effect.edc
1 /*
2  *  UI Gadget
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Jayoun Lee <airjany@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22 //TRANSLATION EFFECT
23 #define NAVIFRAME_VIEW_TRANS_TIME 0.1
24
25 collections {
26 /*  group { name:"elm/naviframe/item/basic/uglib";
27       parts {
28          part { name: "base";
29             type: RECT;
30             mouse_events:  0;
31             description { state: "default" 0.0;
32                color: 255 255 255 255;
33             }
34             description { state: "right" 0.0;
35                inherit: "default" 0.0;
36                rel1.relative: 1.0 0.0;
37                rel2.relative: 2.0 1.0;
38                color: 255 255 255 0;
39             }
40          }
41          part { name: "elm.swallow.content";
42             type: SWALLOW;
43             scale: 1;
44             repeat_events: 0;
45             clip_to: "base";
46             description { state: "default" 0.0;
47                align: 0.0 0.0;
48                rel1.relative: 0.0 0.0;
49                rel1.to: "base";
50                rel2.relative: 1.0 1.0;
51                rel2.to: "base";
52             }
53          }
54       }
55       programs {
56          program { name: "content_new_pushed";
57             signal: "elm,state,new,pushed,internal";
58             source: "";
59             action: STATE_SET "default" 0.0;
60             target: "base";
61             transition: DECELERATE NAVIFRAME_VIEW_TRANS_TIME;
62             after: "show_finished";
63          }
64          program { name: "content_cur_pushed";
65             signal: "elm,state,cur,pushed,internal";
66             source: "";
67             action: STATE_SET "default" 0.0;
68             target: "base";
69             transition: DECELERATE NAVIFRAME_VIEW_TRANS_TIME;
70             after: "pushed_finished";
71          }
72          program { name: "content_prev_popped";
73             signal: "elm,state,prev,popped,internal";
74             source: "";
75             action: STATE_SET "default" 0.0;
76             target: "base";
77             transition: DECELERATE NAVIFRAME_VIEW_TRANS_TIME;
78             after: "show_finished";
79          }
80          program { name: "content_cur_popped";
81             signal: "elm,state,cur,popped,internal";
82             source: "";
83             action: STATE_SET "right" 0.0;
84             target: "base";
85             transition: DECELERATE NAVIFRAME_VIEW_TRANS_TIME;
86             after: "popped_finished";
87          }
88          program { name: "cur_pushed";
89             signal: "elm,state,cur,pushed";
90             source: "elm";
91             script {
92                set_state(PART:"base", "default", 0.0);
93                emit("elm,state,cur,pushed,internal", "");
94             }
95          }
96          program { name: "new_pushed";
97             signal: "elm,state,new,pushed";
98             source: "elm";
99             script {
100                set_state(PART:"base", "right", 0.0);
101                emit("elm,state,new,pushed,internal", "");
102             }
103          }
104          program { name: "prev_popped";
105             signal: "elm,state,prev,popped";
106             source: "elm";
107             script {
108                set_state(PART:"base", "default", 0.0);
109                emit("elm,state,prev,popped,internal", "");
110             }
111          }
112          program { name: "cur_popped";
113             signal: "elm,state,cur,popped";
114             source: "elm";
115             script {
116                set_state(PART:"base", "default", 0.0);
117                emit("elm,state,cur,popped,internal", "");
118             }
119          }
120          program { name: "visible";
121             signal: "elm,state,visible";
122             source: "elm";
123             action: STATE_SET "default" 0.0;
124             target: "base";
125          }
126          program { name: "show_finished";
127             action: SIGNAL_EMIT "elm,action,show,finished" "";
128          }
129          program { name: "pushed_finished";
130             action: SIGNAL_EMIT "elm,action,pushed,finished" "";
131          }
132          program { name: "popped_finished";
133             action: SIGNAL_EMIT "elm,action,popped,finished" "";
134          }
135       }
136    }*/
137 }