tizen 2.4 release
[framework/uifw/elementary.git] / data / themes / edc / systray.edc
1 group { name: "e/modules/systray/main";
2    alias: "e/modules/systray/main/default";
3    alias: "e/modules/systray/main/invisible";
4    data.item: "default" "64 64 64";
5    data.item: "inset" "64 64 64";
6    data.item: "plain" "64 64 64";
7    parts {
8       part { name: "base"; type: RECT;
9          description { state: "default" 0.0;
10             color: 0 0 0 0;
11             align: 0 0;
12          }
13          description { state: "disabled" 0.0;
14             inherit: "default" 0.0;
15             color: 255 0 0 128;
16          }
17       }
18       part { name: "box"; type: BOX;
19         description { state: "default" 0.0;
20             align: 0 0;
21             box {
22                layout: "horizontal";
23                padding: 2 0;
24                align: 0.5 0.5;
25                min: 1 1;
26             }
27         }
28         description { state: "vertical" 0.0;
29             inherit: "default" 0.0;
30             box { 
31                layout: "vertical";
32                padding: 0 2;
33             }
34         }
35       }
36    }
37    programs {
38       program {
39          signal: "e,action,orient,horiz"; source: "e";
40          action: STATE_SET "default" 0.0;
41          target: "box";
42       }
43       program {
44          signal: "e,action,orient,vert"; source: "e";
45          action: STATE_SET "vertical" 0.0;
46          target: "box";
47       }
48       program {
49          signal: "e,action,orient,left"; source: "e";
50          action: STATE_SET "vertical" 0.0;
51          target: "box";
52       }
53       program {
54          signal: "e,action,orient,right"; source: "e";
55          action: STATE_SET "vertical" 0.0;
56          target: "box";
57       }
58       program {
59          signal: "e,action,orient,top"; source: "e";
60          action: STATE_SET "default" 0.0;
61          target: "box";
62       }
63       program {
64          signal: "e,action,orient,bottom"; source: "e";
65          action: STATE_SET "default" 0.0;
66          target: "box";
67       }
68       program {
69          signal: "e,action,orient,corner_tl"; source: "e";
70          action: STATE_SET "default" 0.0;
71          target: "box";
72       }
73       program {
74          signal: "e,action,orient,corner_tr"; source: "e";
75          action: STATE_SET "default" 0.0;
76          target: "box";
77       }
78       program {
79          signal: "e,action,orient,corner_bl"; source: "e";
80          action: STATE_SET "default" 0.0;
81          target: "box";
82       }
83       program {
84          signal: "e,action,orient,corner_br"; source: "e";
85          action: STATE_SET "default" 0.0;
86          target: "box";
87       }
88       program {
89          signal: "e,action,orient,corner_lt"; source: "e";
90          action: STATE_SET "vertical" 0.0;
91          target: "box";
92       }
93       program {
94          signal: "e,action,orient,corner_rt"; source: "e";
95          action: STATE_SET "vertical" 0.0;
96          target: "box";
97       }
98       program {
99          signal: "e,action,orient,corner_lb"; source: "e";
100          action: STATE_SET "vertical" 0.0;
101          target: "box";
102       }
103       program {
104          signal: "e,action,orient,corner_rb"; source: "e";
105          action: STATE_SET "vertical" 0.0;
106          target: "box";
107       }
108    }
109 }