aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/elementary/data/themes/widgets/diskselector.edc
blob: 97b36634f8afc5c5fafc9ea36830a3e8570a8969 (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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
group { name: "elm/diskselector/base/default";
   images {
      image: "bar_shine.png" COMP;
   }

   parts {
      part { name: "bg";
         type: RECT;
         mouse_events: 0;
         description { state: "default" 0.0;
            color: 0 0 0 255;
         }
      }
      part { name: "shine_left";
         mouse_events:  0;
         description { state: "default" 0.0;
            rel1.to: "bg";
            rel1.relative: -0.1 0;
            rel2.to: "bg";
            rel2.relative: 0.1 1;
            image.normal: "bar_shine.png";
            color: 255 255 255 120;
         }
      }
      part { name: "shine_center";
         mouse_events:  0;
         description { state: "default" 0.0;
            rel1.to: "bg";
            rel1.relative: 0.2 0;
            rel2.to: "bg";
            rel2.relative: 0.8 1;
            image.normal: "bar_shine.png";
            color: 255 255 255 180;
         }
      }
      part { name: "shine_right";
         mouse_events:  0;
         description { state: "default" 0.0;
            rel1.to: "bg";
            rel1.relative: 0.9 0;
            rel2.to: "bg";
            rel2.relative: 1.1 1;
            image.normal: "bar_shine.png";
            color: 255 255 255 120;
         }
      }
      part { name: "clipper";
         type: RECT;
         mouse_events: 0;
         description { state: "default" 0.0;
            rel1.to: "bg";
            rel2.to: "bg";
            rel1.offset: 2 2;
            rel2.offset: -3 -3;
         }
      }
      part { name: "elm.swallow.content";
         clip_to: "clipper";
         type: SWALLOW;
         description { state: "default" 0.0;
            rel1.to: "bg";
            rel2.to: "bg";
         }
      }
   }
}

group { name: "elm/diskselector/item/default";

   data {
      item: "len_threshold" "14";
      item: "display_item_num" "3";
      item: "min_height" "-1";
      item: "min_width" "-1";
   }

   parts {
      part { name: "elm.swallow.icon";
         type: SWALLOW;
         description { state: "default" 0.0;
            fixed: 1 0;
            align: 0.0 0.5;
            rel1 {
               relative: 0 0;
               offset: 4 4;
            }
            rel2 {
               relative: 0 1;
               offset: 4 -5;
            }
         }
         description { state: "show" 0.0;
            inherit: "default" 0.0;
         }
         description { state: "default_small" 0.0;
            inherit: "default" 0.0;
            rel1.relative: 0 0.2;
            rel2.relative: 0 0.8;
         }
         description { state: "left_side" 0.0;
            inherit: "default" 0.0;
            rel1.relative: 0 0.2;
            rel2.relative: 0 0.8;
            color: 255 255 255 160;
         }
         description { state: "right_side" 0.0;
            inherit: "left_side" 0.0;
            rel1.relative: 0.4 0.2;
            rel2.relative: 0.4 0.8;
            color: 255 255 255 160;
         }
      }
      part { name: "elm.text";
         type: TEXT;
         scale: 1;
         description { state: "default" 0.0;
            rel1.relative: 1 0.0;
            rel1.to_x: "elm.swallow.icon";
            rel2.relative: 1.0 1.0;
            color: 255 255 255 255;
            visible: 0;
            text {
               font: "Sans,Edje-Vera";
               size: 13;
               align: 0.5 0.5;
               min: 0 1;
            }
         }
         description { state: "show" 0.0;
            inherit: "default" 0.0;
            visible: 1;
         }
         description { state: "default_small" 0.0;
            inherit: "default" 0.0;
            visible: 1;
            text.size: 10;
         }
         description { state: "left_side" 0.0;
            inherit: "default" 0.0;
            color: 172 172 172 255;
            text.size: 10;
            visible: 1;
            text.align: 0.2 0.5;
         }
         description { state: "right_side" 0.0;
            inherit: "default" 0.0;
            color: 172 172 172 255;
            visible: 1;
            text.size: 10;
            text.align: 0.8 0.5;
         }
      }
   }

   programs {
      program { name: "center_text";
         signal: "elm,state,center";
         source: "elm";
         action: STATE_SET "show" 0.0;
         target: "elm.text";
         target: "elm.swallow.icon";
      }
      program { name: "center_small_text";
         signal: "elm,state,center_small";
         source: "elm";
         action: STATE_SET "default_small" 0.0;
         target: "elm.text";
         target: "elm.swallow.icon";
      }
      program { name: "l_side_text";
         signal: "elm,state,left_side";
         source: "elm";
         action: STATE_SET "left_side" 0.0;
         target: "elm.text";
         target: "elm.swallow.icon";
      }
      program { name: "r_side_text";
         signal: "elm,state,right_side";
         source: "elm";
         action: STATE_SET "right_side" 0.0;
         target: "elm.text";
         target: "elm.swallow.icon";
      }
   }
}