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