tizen 2.4 release
[framework/uifw/elementary.git] / data / themes / edc / appmenu.edc
1 group { name: "e/modules/appmenu/item";
2    images.image: "vgrad_med_dark.png" COMP;
3    data.item: "padding_horizontal" "5";
4    data.item: "padding_vertical" "5";
5    parts {
6       part {
7          name: "event_area";
8          type: RECT;
9          mouse_events: 1;
10          description {
11             state: "default" 0.0;
12             color: 0 0 0 0;
13          }
14       }
15       part {
16          name: "background";
17          type: IMAGE;
18          mouse_events: 0;
19          description {
20             state: "default" 0.0;
21             image.normal: "vgrad_med_dark.png";
22             fill.smooth: 0;
23             TILED_HORIZ(120)
24             visible: 0;
25          }
26          description {
27             state: "selected" 0.0;
28             inherit: "default" 0.0;
29             visible: 1;
30          }
31       }
32       part {
33          name: "text";
34          type: TEXT;
35          mouse_events: 0;
36          effect: SHADOW BOTTOM;
37          scale: 1;
38          description {
39             state: "default" 0.0;
40             rel1.offset: 2 2;
41             rel2.offset: -3 -3;
42             color: FN_COL_DEFAULT;
43             text {
44                font: FN;
45                size: 10;
46                min: 1 1;
47                ellipsis: -1;
48                align: 0.5 0.5;
49                text_class: "label";
50             }
51          }
52          description {
53             state: "selected" 0.0;
54             inherit: "default" 0.0;
55             color: FN_COL_HIGHLIGHT;
56          }
57       }
58    }
59    programs {
60       program {
61          signal: "mouse,in";
62          source: "event_area";
63          action: STATE_SET "selected" 0.0;
64          target: "background";
65          target: "text";
66       }
67       program {
68          signal: "mouse,out";
69          source: "event_area";
70          action: STATE_SET "default" 0.0;
71          target: "background";
72          target: "text";
73       }
74    }
75 }