Merged with devel
[platform/core/uifw/e17-extra-modules.git] / illume2-tizen / src / e-module-illume2-tizen.edc
1 collections
2 {
3    group
4      {
5         images.image: "module_icon.png" COMP;
6         name: "icon";
7         max: 128 128;
8         parts
9           {
10              part
11                {
12                   name: "icon";
13                   type: IMAGE;
14                   mouse_events: 0;
15                   description
16                     {
17                        state: "default" 0.0;
18                        aspect: 1.0 1.0;
19                        aspect_preference: BOTH;
20                        image.normal: "module_icon.png";
21                     }
22                }
23         }
24      }
25
26    group
27      {
28         images.image: "mw_frame_press.png" COMP;
29         images.image: "mw_frame_press_overscroll.png" COMP;
30         name: "new_shadow";
31         max: 720 720;
32         parts
33           {
34              part
35                {
36                   name: "opacity_rect";
37                   type: RECT;
38                   description
39                     {
40                        state: "default" 0.0;
41                        color: 255 255 255 255;
42                     }
43                }
44              part
45                {
46                   name: "resize_border";
47                   type: IMAGE;
48                   clip_to: "opacity_rect";
49                   description
50                     {
51                        state: "default" 0;
52                        image.normal: "mw_frame_press.png";
53                        image.border: 5 5 5 5;
54                        image.middle: NONE;
55                     }
56                   description
57                     {
58                        state: "not_avail" 0;
59                        image.normal: "mw_frame_press_overscroll.png";
60                        image.border: 5 5 5 5;
61                     }
62                }
63           }
64
65           programs
66            {
67                program
68                  {
69                     source: "illume2";
70                     action: STATE_SET "not_avail" 0;
71                     signal: "resize,notavail";
72                     filter: "resize_border" "default";
73                     target: "resize_border";
74                  }
75                program
76                  {
77                     source: "illume2";
78                     action: STATE_SET "default" 0;
79                     signal: "resize,normal";
80                     filter: "resize_border" "not_avail";
81                     target: "resize_border";
82                  }
83            }
84      }
85 }