Merge "[Check.edc]Resolving center align issue for check"
[profile/ivi/efl-theme-tizen.git] / themes / groups / genlist / genlist_styles.edc
1 /*
2  *  nBeat-theme
3  *
4  * Copyright (c) 2000 - 2010 Samsung Electronics Co., Ltd.
5  *
6  * Contact: Seokjae Jeong <seok.j.jeong@samsung.com>, Myoungwoon Roy Kim <Myoungwoon.kim@samsung.com>, Jeonghyun Yun <jh0506.yun@samsung.com>, Jaehwan Kim <jae.hwan.kim@samsung.com>,
7  *              Chuneon Park <chuneon.park@samsung.com>, Juyung Seo <juyung.seo@samsung.com>, Woohyun Jung <wh0705.jung@samsung.com>, Myungjae Lee <mjae.lee@samsung.com>, Hyoyoung Chang <hyoyoung.chang@samsung.com>,
8  *              Hyunsil Park <hyunsil.park@samsung.com>, Sohyun Kim <anna1014.kim@samsung.com>, Seunggyun Kim <sgyun.kim@samsung.com>
9  *
10  * This library is free software; you can redistribute it and/or modify it under
11  * the terms of the GNU Lesser General Public License as published by the
12  * Free Software Foundation; either version 2.1 of the License, or (at your option)
13  * any later version.
14  *
15  * This library is distributed in the hope that it will be useful, but WITHOUT ANY
16  * WARRANTY; without even the implied warranty of MERCHANTABILITY or
17  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
18  * License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * along with this library; if not, write to the Free Software Foundation, Inc., 51
22  * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23  *
24  */
25
26 /*
27  * vim:ts=3
28 */
29
30    group { name: "elm/list/item/matchlist";
31       alias: "elm/list/item_odd/matchlist";
32       alias: "elm/list/item_compress/matchlist";
33       alias: "elm/list/item_compress_odd/matchlist";
34       data.item: "stacking" "above";
35       data.item: "selectraise" "on";
36       data.item: "labels" "elm.text";
37       data.item: "icons" "elm.swallow.icon elm.swallow.end";
38       images {
39          image: "00_list_bar_press_1x80.png" COMP;
40       }
41       styles {
42          style { name: "text_style";
43             base: "font=SLP:style=Roman font_size=28 color=#000000 wrap=char ellipsis=1.0";
44             tag:  "br" "\n";
45             tag:  "ps" "ps";
46             tag:  "tab" "\t";
47             tag:  "b" "+ font=SLP:style=Bold";
48             tag:  "match" "+ color=#E58616FF";
49          }
50       }
51       parts {
52          GENLIST_PART_BASE( 58 )
53          GENLIST_PART_BG_IMAGE
54          GENLIST_PART_BOTTOM_LINE
55          GENLIST_PART_PADDING_LEFT( 15 )
56          GENLIST_PART_PADDING_RIGHT( 15 )
57          part { name: "elm.swallow.end";
58             clip_to: "disclip";
59             type: SWALLOW;
60             scale: 1;
61             description { state: "default" 0.0;
62                fixed: 1 0;
63                align: 1.0 0.5;
64                rel1.to_x: "elm.padding.right";
65                rel2 {
66                   relative: 0.0  1.0;
67                   to_x: "elm.padding.right";
68                }
69             }
70          }
71          part { name: "elm.text";
72             clip_to: "disclip";
73             type: TEXTBLOCK;
74             mouse_events: 0;
75             scale: 1;
76             description { state: "default" 0.0;
77                rel1 {
78                   relative: 1.0  0.20;
79                   offset: 0 0;
80                   to_x: "elm.swallow.icon";
81                }
82                rel2 {
83                   to_x: "elm.swallow.end";
84                   relative: 0.0  1.0;
85                   offset:   0   0;
86                }
87                text {
88                   style: "text_style";
89                }
90             }
91             description { state: "selected" 0.0;
92                inherit: "default" 0.0;
93                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
94             }
95          }
96          part { name: "elm.swallow.icon";
97             clip_to: "disclip";
98             type: SWALLOW;
99             description { state: "default" 0.0;
100                fixed: 1 0;
101                align: 0.0 0.5;
102                rel1 {
103                   relative: 1.0 0.0;
104                   to_x: "elm.padding.left";
105                }
106                rel2.to_x: "elm.padding.left";
107             }
108          }
109          GENLIST_PART_DISCLIP
110       }
111       programs {
112          // signal: elm,state,%s,active
113          //   a "check" item named %s went active
114          // signal: elm,state,%s,passive
115          //   a "check" item named %s went passive
116          // default is passive
117          program { name: "go_active";
118             signal: "elm,state,selected";
119             source: "elm";
120             action: STATE_SET "selected" 0.0;
121             target: "bg_image";
122             target: "elm.text";
123          }
124          program { name: "go_passive";
125             signal: "elm,state,unselected";
126             source: "elm";
127             action: STATE_SET "default" 0.0;
128             target: "bg_image";
129             target: "elm.text";
130             transition: LINEAR 0.1;
131          }
132          program { name: "go_disabled";
133             signal: "elm,state,disabled";
134             source: "elm";
135             action: STATE_SET "disabled" 0.0;
136             target: "disclip";
137          }
138          program { name: "go_enabled";
139             signal: "elm,state,enabled";
140             source: "elm";
141             action: STATE_SET "default" 0.0;
142             target: "disclip";
143          }
144       }
145    }
146
147    group { name: "elm/genlist/item/default/default";
148       alias: "elm/genlist/item_odd/default/default";
149       alias: "elm/genlist/item_compress/default/default";
150       alias: "elm/genlist/item_compress_odd/default/default";
151       alias: "elm/list/item/default";
152       alias: "elm/list/item_odd/default";
153       alias: "elm/list/item_compress/default";
154       alias: "elm/list/item_compress_odd/default";
155       data.item: "stacking" "above";
156       data.item: "selectraise" "on";
157       data.item: "labels" "elm.text";
158       data.item: "icons" "elm.swallow.icon elm.swallow.end";
159       images {
160          image: "00_list_bar_press_1x80.png" COMP;
161       }
162       parts {
163          GENLIST_PART_BASE( 70 )
164          GENLIST_PART_BG_IMAGE
165          GENLIST_PART_BOTTOM_LINE
166          GENLIST_PART_PADDING_LEFT( 10 )
167          GENLIST_PART_PADDING_RIGHT( 10 )
168          part { name: "elm.swallow.end";
169             clip_to: "disclip";
170             type: SWALLOW;
171             scale: 1;
172             description { state: "default" 0.0;
173                fixed: 1 0;
174                align: 1.0 0.5;
175                rel1.to_x: "elm.padding.right";
176                rel2 {
177                   relative: 0.0  1.0;
178                   to_x: "elm.padding.right";
179                }
180             }
181          }
182          part { name: "elm.text";
183             clip_to: "disclip";
184             type: TEXT;
185             mouse_events: 0;
186             scale: 1;
187             description { state: "default" 0.0;
188                rel1 {
189                   relative: 1.0  0.0;
190                   offset: 0 0;
191                   to_x: "elm.swallow.icon";
192                }
193                rel2 {
194                   to_x: "elm.swallow.end";
195                   relative: 0.0  1.0;
196                   offset:   0   0;
197                }
198                color: GENLIST_PART_TEXT_COLOR_INC;
199                text {
200                   font: "SLP:style=Roman";
201                   size: 28;
202                   min: 0 1;
203                   align: 0.0 0.5;
204                }
205             }
206             description { state: "selected" 0.0;
207                inherit: "default" 0.0;
208                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
209             }
210          }
211          part { name: "elm.swallow.icon";
212             clip_to: "disclip";
213             type: SWALLOW;
214             description { state: "default" 0.0;
215                fixed: 1 0;
216                align: 0.0 0.5;
217                rel1 {
218                   relative: 1.0 0.0;
219                   to_x: "elm.padding.left";
220                }
221                rel2.to_x: "elm.padding.left";
222             }
223          }
224          GENLIST_PART_DISCLIP
225       }
226       programs {
227          // signal: elm,state,%s,active
228          //   a "check" item named %s went active
229          // signal: elm,state,%s,passive
230          //   a "check" item named %s went passive
231          // default is passive
232          program { name: "go_active";
233             signal: "elm,state,selected";
234             source: "elm";
235             action: STATE_SET "selected" 0.0;
236             target: "bg_image";
237             target: "elm.text";
238          }
239          program { name: "go_passive";
240             signal: "elm,state,unselected";
241             source: "elm";
242             action: STATE_SET "default" 0.0;
243             target: "bg_image";
244             target: "elm.text";
245             transition: LINEAR 0.1;
246          }
247          program { name: "go_disabled";
248             signal: "elm,state,disabled";
249             source: "elm";
250             action: STATE_SET "disabled" 0.0;
251             target: "disclip";
252          }
253          program { name: "go_enabled";
254             signal: "elm,state,enabled";
255             source: "elm";
256             action: STATE_SET "default" 0.0;
257             target: "disclip";
258          }
259       }
260    }
261
262    group { name: "elm/genlist/item/1icon/default";
263       alias: "elm/genlist/item_odd/1icon/default";
264       alias: "elm/genlist/item_compress/1icon/default";
265       alias: "elm/genlist/item_compress_odd/1icon/default";
266       data.item: "stacking" "above";
267       data.item: "selectraise" "on";
268       data.item: "icons" "elm.icon";
269       parts {
270          part { name: "base";
271             type: RECT;
272             repeat_events: 1;
273             scale: 1;
274             description { state: "default" 0.0;
275                color: GENLIST_PART_BG_COLOR_INC;
276             }
277          }
278          GENLIST_PART_PADDING_LEFT( 10 )
279          GENLIST_PART_PADDING_RIGHT( 10 )
280          GENLIST_PART_BOTTOM_LINE
281          part { name: "elm.icon";
282             clip_to: "disclip";
283             type: SWALLOW;
284             description { state: "default" 0.0;
285                rel1 {
286                   relative: 1.0 0.0;
287                   to_x: "elm.padding.left";
288                }
289                rel2 {
290                   relative: 0.0 1.0;
291                   to_x: "elm.padding.right";
292                }
293             }
294          }
295          GENLIST_PART_DISCLIP
296       }
297       programs {
298          // signal: elm,state,%s,active
299          //   a "check" item named %s went active
300          // signal: elm,state,%s,passive
301          //   a "check" item named %s went passive
302          // default is passive
303          program { name: "go_disabled";
304             signal: "elm,state,disabled";
305             source: "elm";
306             action: STATE_SET "disabled" 0.0;
307             target: "disclip";
308          }
309          program { name: "go_enabled";
310             signal: "elm,state,enabled";
311             source: "elm";
312             action: STATE_SET "default" 0.0;
313             target: "disclip";
314          }
315       }
316    }
317
318    group { name: "elm/genlist/item/1text/default";
319       alias: "elm/genlist/item_odd/1text/default";
320       alias: "elm/genlist/item_compress/1text/default";
321       alias: "elm/genlist/item_compress_odd/1text/default";
322       data.item: "stacking" "above";
323       data.item: "selectraise" "on";
324       data.item: "labels" "elm.text";
325       data.item: "renames" "elm.edit.rename";
326       images {
327          image: "00_list_bar_press_1x80.png" COMP;
328       }
329       parts {
330          GENLIST_PART_BASE( 71 )
331          GENLIST_PART_BG_IMAGE
332          GENLIST_PART_BOTTOM_LINE
333          GENLIST_PART_PADDING_LEFT( 10 )
334          GENLIST_PART_PADDING_RIGHT( 10 )
335          part { name: "elm.text";
336             clip_to: "disclip";
337             type: TEXT;
338             mouse_events: 0;
339             scale: 1;
340             description { state: "default" 0.0;
341                rel1 {
342                   relative: 1.0 0.0;
343                   to_x: "elm.padding.left";
344                }
345                rel2 {
346                   relative: 0.0 1.0;
347                   to_x: "elm.padding.right";
348                }
349                color: GENLIST_PART_TEXT_COLOR_INC;
350                text {
351                   font: "SLP:style=Roman";
352                   size: 28;
353                   min: 0 1;
354                   align: 0.0 0.5;
355                }
356             }
357             description { state: "selected" 0.0;
358                inherit: "default" 0.0;
359                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
360             }
361             GENLIST_DESCRIPTION_RENAME_ENABLED
362          }
363          GENLIST_PART_RENAME
364          GENLIST_PART_DISCLIP
365       }
366       programs {
367          // signal: elm,state,%s,active
368          //   a "check" item named %s went active
369          // signal: elm,state,%s,passive
370          //   a "check" item named %s went passive
371          // default is passive
372          program { name: "go_active";
373             signal: "elm,state,selected";
374             source: "elm";
375             action: STATE_SET "selected" 0.0;
376             target: "bg_image";
377             target: "elm.text";
378          }
379          program { name: "go_passive";
380             signal: "elm,state,unselected";
381             source: "elm";
382             action: STATE_SET "default" 0.0;
383             target: "bg_image";
384             target: "elm.text";
385             transition: LINEAR 0.1;
386          }
387          program { name: "go_disabled";
388             signal: "elm,state,disabled";
389             source: "elm";
390             action: STATE_SET "disabled" 0.0;
391             target: "disclip";
392          }
393          program { name: "go_enabled";
394             signal: "elm,state,enabled";
395             source: "elm";
396             action: STATE_SET "default" 0.0;
397             target: "disclip";
398          }
399          GENLIST_PROGRAM_RENAME_1TEXT
400       }
401    }
402
403    group { name: "elm/genlist/item/2text/default";
404       alias: "elm/genlist/item_odd/2text/default";
405       alias: "elm/genlist/item_compress/2text/default";
406       alias: "elm/genlist/item_compress_odd/2text/default";
407       data.item: "stacking" "above";
408       data.item: "selectraise" "on";
409       data.item: "labels" "elm.text.1 elm.text.2";
410       data.item: "renames" "elm.edit.rename";
411       images {
412          image: "00_list_bar_press_1x80.png" COMP;
413       }
414       parts {
415          GENLIST_PART_BASE( 71 )
416          GENLIST_PART_BG_IMAGE
417          GENLIST_PART_BOTTOM_LINE
418          GENLIST_PART_PADDING_LEFT( 10 )
419          GENLIST_PART_PADDING_RIGHT( 10 )
420          part { name: "elm.text.2";
421             clip_to: "disclip";
422             type: TEXT;
423             mouse_events: 0;
424             scale: 1;
425             description { state: "default" 0.0;
426                min: 98 0;
427                fixed: 1 0;
428                rel1.to_x: "elm.padding.right";
429                rel2 {
430                   relative: 0.0 1.0;
431                   to_x: "elm.padding.right";
432                }
433                align: 1.0 0.5;
434                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
435                text {
436                   font: "SLP:style=Medium";
437                   size: 20;
438                   min: 0 1;
439                   align: 1.0 0.5;
440                }
441             }
442             description { state: "selected" 0.0;
443                inherit: "default" 0.0;
444                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
445             }
446             GENLIST_DESCRIPTION_RENAME_ENABLED
447          }
448          part { name: "elm.padding.text2.left";
449             clip_to: "disclip";
450             type: RECT;
451             mouse_events: 0;
452             scale: 1;
453             description { state: "default" 0.0;
454                min: 20 0;
455                fixed: 1 0;
456                rel1.to_x: "elm.text.2";
457                rel2 {
458                   relative: 0.0 1.0;
459                   to_x: "elm.text.2";
460                }
461                visible: 0;
462                align: 1.0 0.5;
463             }
464          }
465          part { name: "elm.text.1";
466             clip_to: "disclip";
467             type: TEXT;
468             mouse_events: 0;
469             scale: 1;
470             description { state: "default" 0.0;
471                rel1 {
472                   relative: 1.0 0.0;
473                   to_x: "elm.padding.left";
474                }
475                rel2 {
476                   relative: 0.0 1.0;
477                   to_x: "elm.padding.text2.left";
478                }
479                align: 0.0 0.5;
480                color: GENLIST_PART_TEXT_COLOR_INC;
481                text {
482                   font: "SLP:style=Roman";
483                   size: 28;
484                   min: 0 1;
485                   align: 0.0 0.5;
486                }
487             }
488             description { state: "selected" 0.0;
489                inherit: "default" 0.0;
490                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
491             }
492             GENLIST_DESCRIPTION_RENAME_ENABLED
493          }
494          GENLIST_PART_RENAME
495          GENLIST_PART_DISCLIP
496       }
497       programs {
498          // signal: elm,state,%s,active
499          //   a "check" item named %s went active
500          // signal: elm,state,%s,passive
501          //   a "check" item named %s went passive
502          // default is passive
503          program { name: "go_active";
504             signal: "elm,state,selected";
505             source: "elm";
506             action: STATE_SET "selected" 0.0;
507             target: "bg_image";
508             target: "elm.text.1";
509             target: "elm.text.2";
510          }
511          program { name: "go_passive";
512             signal: "elm,state,unselected";
513             source: "elm";
514             action: STATE_SET "default" 0.0;
515             target: "bg_image";
516             target: "elm.text.1";
517             target: "elm.text.2";
518             transition: LINEAR 0.1;
519          }
520          program { name: "go_disabled";
521             signal: "elm,state,disabled";
522             source: "elm";
523             action: STATE_SET "disabled" 0.0;
524             target: "disclip";
525          }
526          program { name: "go_enabled";
527             signal: "elm,state,enabled";
528             source: "elm";
529             action: STATE_SET "default" 0.0;
530             target: "disclip";
531          }
532          GENLIST_PROGRAM_RENAME_2TEXT
533       }
534    }
535
536    group { name: "elm/genlist/item/2text.6/default";
537       alias: "elm/genlist/item_odd/2text.6/default";
538       alias: "elm/genlist/item_compress/2text.6/default";
539       alias: "elm/genlist/item_compress_odd/2text.6/default";
540       data.item: "stacking" "above";
541       data.item: "selectraise" "on";
542       data.item: "labels" "elm.text.1 elm.text.2";
543       data.item: "renames" "elm.edit.rename";
544       images {
545          image: "00_list_bar_press_1x80.png" COMP;
546       }
547       parts {
548          GENLIST_PART_BASE( 71 )
549          GENLIST_PART_BG_IMAGE
550          GENLIST_PART_BOTTOM_LINE
551          GENLIST_PART_PADDING_LEFT( 10 )
552          GENLIST_PART_PADDING_RIGHT( 10 )
553          part { name: "elm.text.2";
554             clip_to: "disclip";
555             type: TEXT;
556             mouse_events: 0;
557             scale: 1;
558             description { state: "default" 0.0;
559                min: 98 0;
560                fixed: 1 0;
561                rel1.to_x: "elm.padding.right";
562                rel2 {
563                   relative: 0.0 1.0;
564                   to_x: "elm.padding.right";
565                }
566                align: 1.0 0.5;
567                color: GENLIST_PART_SUB_TEXT_SETTINGS_COLOR_INC;
568                text {
569                   font: "SLP:style=Medium";
570                   size: 20;
571                   min: 0 1;
572                   align: 1.0 0.5;
573                }
574             }
575             description { state: "selected" 0.0;
576                inherit: "default" 0.0;
577                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
578             }
579             GENLIST_DESCRIPTION_RENAME_ENABLED
580          }
581          part { name: "elm.padding.text2.left";
582             clip_to: "disclip";
583             type: RECT;
584             mouse_events: 0;
585             scale: 1;
586             description { state: "default" 0.0;
587                min: 20 0;
588                fixed: 1 0;
589                rel1.to_x: "elm.text.2";
590                rel2 {
591                   relative: 0.0 1.0;
592                   to_x: "elm.text.2";
593                }
594                visible: 0;
595                align: 1.0 0.5;
596             }
597          }
598          part { name: "elm.text.1";
599             clip_to: "disclip";
600             type: TEXT;
601             mouse_events: 0;
602             scale: 1;
603             description { state: "default" 0.0;
604                rel1 {
605                   relative: 1.0 0.0;
606                   to_x: "elm.padding.left";
607                }
608                rel2 {
609                   relative: 0.0 1.0;
610                   to_x: "elm.padding.text2.left";
611                }
612                align: 0.0 0.5;
613                color: GENLIST_PART_TEXT_COLOR_INC;
614                text {
615                   font: "SLP:style=Roman";
616                   size: 28;
617                   min: 0 1;
618                   align: 0.0 0.5;
619                }
620             }
621             description { state: "selected" 0.0;
622                inherit: "default" 0.0;
623                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
624             }
625             GENLIST_DESCRIPTION_RENAME_ENABLED
626          }
627          GENLIST_PART_RENAME
628          GENLIST_PART_DISCLIP
629       }
630       programs {
631          // signal: elm,state,%s,active
632          //   a "check" item named %s went active
633          // signal: elm,state,%s,passive
634          //   a "check" item named %s went passive
635          // default is passive
636          program { name: "go_active";
637             signal: "elm,state,selected";
638             source: "elm";
639             action: STATE_SET "selected" 0.0;
640             target: "bg_image";
641             target: "elm.text.1";
642             target: "elm.text.2";
643          }
644          program { name: "go_passive";
645             signal: "elm,state,unselected";
646             source: "elm";
647             action: STATE_SET "default" 0.0;
648             target: "bg_image";
649             target: "elm.text.1";
650             target: "elm.text.2";
651             transition: LINEAR 0.1;
652          }
653          program { name: "go_disabled";
654             signal: "elm,state,disabled";
655             source: "elm";
656             action: STATE_SET "disabled" 0.0;
657             target: "disclip";
658          }
659          program { name: "go_enabled";
660             signal: "elm,state,enabled";
661             source: "elm";
662             action: STATE_SET "default" 0.0;
663             target: "disclip";
664          }
665          GENLIST_PROGRAM_RENAME_2TEXT
666       }
667    }
668
669    group { name: "elm/genlist/item/1text.1icon/default";
670       alias: "elm/genlist/item_odd/1text.1icon/default";
671       alias: "elm/genlist/item_compress/1text.1icon/default";
672       alias: "elm/genlist/item_compress_odd/1text.1icon/default";
673       data.item: "stacking" "above";
674       data.item: "selectraise" "on";
675       data.item: "labels" "elm.text";
676       data.item: "icons" "elm.icon";
677       data.item: "renames" "elm.edit.rename";
678       images {
679          image: "00_list_bar_press_1x80.png" COMP;
680       }
681       parts {
682          GENLIST_PART_BASE( 71 )
683          GENLIST_PART_BG_IMAGE
684          GENLIST_PART_BOTTOM_LINE
685          GENLIST_PART_PADDING_LEFT( 10 )
686          GENLIST_PART_PADDING_RIGHT( 10 )
687          part { name: "elm.icon";
688             clip_to: "disclip";
689             type: SWALLOW;
690             scale: 1;
691             description { state: "default" 0.0;
692                fixed: 1 1;
693                rel1.to_x: "elm.padding.right";
694                rel2 {
695                   relative: 0.0 1.0;
696                   to_x: "elm.padding.right";
697                }
698                align: 1.0 0.5;
699             }
700             GENLIST_DESCRIPTION_RENAME_ENABLED
701          }
702          part { name: "elm.padding.icon.left";
703             clip_to: "disclip";
704             type: RECT;
705             scale: 1;
706             description { state: "default" 0.0;
707                min: 10 0;
708                fixed: 1 0;
709                rel1.to_x: "elm.icon";
710                rel2 {
711                   relative: 0.0 1.0;
712                   to_x: "elm.icon";
713                }
714                align: 1.0 0.0;
715                visible: 0;
716             }
717          }
718          part { name: "elm.text";
719             clip_to: "disclip";
720             type: TEXT;
721             mouse_events: 0;
722             scale: 1;
723             description { state: "default" 0.0;
724                rel1 {
725                   relative: 1.0 0.0;
726                   to_x: "elm.padding.left";
727                }
728                rel2 {
729                   relative: 0.0 1.0;
730                   to_x: "elm.padding.icon.left";
731                }
732                align: 0.0 0.5;
733                color: GENLIST_PART_TEXT_COLOR_INC;
734                text {
735                   font: "SLP:style=Roman";
736                   size: 28;
737                   min: 0 1;
738                   align: 0.0 0.5;
739                }
740             }
741             description { state: "selected" 0.0;
742                inherit: "default" 0.0;
743                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
744             }
745             GENLIST_DESCRIPTION_RENAME_ENABLED
746          }
747          GENLIST_PART_RENAME
748          GENLIST_PART_DISCLIP
749       }
750       programs {
751          program { name: "go_active";
752             signal: "elm,state,selected";
753             source: "elm";
754             action: STATE_SET "selected" 0.0;
755             target: "bg_image";
756             target: "elm.text";
757          }
758          program { name: "go_passive";
759             signal: "elm,state,unselected";
760             source: "elm";
761             action: STATE_SET "default" 0.0;
762             target: "bg_image";
763             target: "elm.text";
764             transition: LINEAR 0.1;
765          }
766          program { name: "go_disabled";
767             signal: "elm,state,disabled";
768             source: "elm";
769             action: STATE_SET "disabled" 0.0;
770             target: "disclip";
771          }
772          program { name: "go_enabled";
773             signal: "elm,state,enabled";
774             source: "elm";
775             action: STATE_SET "default" 0.0;
776             target: "disclip";
777          }
778          GENLIST_PROGRAM_RENAME_1TEXT_1ICON
779       }
780    }
781
782    group { name: "elm/genlist/item/1text.1icon.4/default";
783       alias: "elm/genlist/item_odd/1text.1icon.4/default";
784       alias: "elm/genlist/item_compress/1text.1icon.4/default";
785       alias: "elm/genlist/item_compress_odd/1text.1icon.4/default";
786       data.item: "stacking" "above";
787       data.item: "selectraise" "on";
788       data.item: "labels" "elm.text";
789       data.item: "icons" "elm.icon";
790       data.item: "renames" "elm.edit.rename";
791       images {
792          image: "00_list_bar_press_1x80.png" COMP;
793       }
794       parts {
795          GENLIST_PART_BASE( 71 )
796          GENLIST_PART_BG_IMAGE
797          GENLIST_PART_BOTTOM_LINE
798          GENLIST_PART_PADDING_LEFT( 10 )
799          GENLIST_PART_PADDING_RIGHT( 10 )
800          part { name: "elm.icon";
801             clip_to: "disclip";
802             type: SWALLOW;
803             scale: 1;
804             description { state: "default" 0.0;
805                min: 40 40;
806                max: 40 40;
807                fixed: 1 1;
808                rel1.to_x: "elm.padding.right";
809                rel2 {
810                   relative: 0.0 1.0;
811                   to_x: "elm.padding.right";
812                }
813                align: 1.0 0.5;
814             }
815             GENLIST_DESCRIPTION_RENAME_ENABLED
816          }
817          part { name: "elm.padding.icon.left";
818             clip_to: "disclip";
819             type: RECT;
820             scale: 1;
821             description { state: "default" 0.0;
822                min: 10 0;
823                fixed: 1 0;
824                rel1.to_x: "elm.icon";
825                rel2 {
826                   relative: 0.0 1.0;
827                   to_x: "elm.icon";
828                }
829                align: 1.0 0.0;
830                visible: 0;
831             }
832          }
833          part { name: "elm.text";
834             clip_to: "disclip";
835             type: TEXT;
836             mouse_events: 0;
837             scale: 1;
838             description { state: "default" 0.0;
839                rel1 {
840                   relative: 1.0 0.0;
841                   to_x: "elm.padding.left";
842                }
843                rel2 {
844                   relative: 0.0 1.0;
845                   to_x: "elm.padding.icon.left";
846                }
847                align: 0.0 0.5;
848                color: GENLIST_PART_TEXT_COLOR_INC;
849                text {
850                   font: "SLP:style=Roman";
851                   size: 28;
852                   min: 0 1;
853                   align: 0.0 0.5;
854                }
855             }
856             description { state: "selected" 0.0;
857                inherit: "default" 0.0;
858                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
859             }
860             GENLIST_DESCRIPTION_RENAME_ENABLED
861          }
862          GENLIST_PART_RENAME
863          GENLIST_PART_DISCLIP
864       }
865       programs {
866          program { name: "go_active";
867             signal: "elm,state,selected";
868             source: "elm";
869             action: STATE_SET "selected" 0.0;
870             target: "bg_image";
871             target: "elm.text";
872          }
873          program { name: "go_passive";
874             signal: "elm,state,unselected";
875             source: "elm";
876             action: STATE_SET "default" 0.0;
877             target: "bg_image";
878             target: "elm.text";
879             transition: LINEAR 0.1;
880          }
881          program { name: "go_disabled";
882             signal: "elm,state,disabled";
883             source: "elm";
884             action: STATE_SET "disabled" 0.0;
885             target: "disclip";
886          }
887          program { name: "go_enabled";
888             signal: "elm,state,enabled";
889             source: "elm";
890             action: STATE_SET "default" 0.0;
891             target: "disclip";
892          }
893          GENLIST_PROGRAM_RENAME_1TEXT_1ICON
894       }
895    }
896
897    group { name: "elm/genlist/item/1text.1icon.5/default";
898       alias: "elm/genlist/item_odd/1text.1icon.5/default";
899       alias: "elm/genlist/item_compress/1text.1icon.5/default";
900       alias: "elm/genlist/item_compress_odd/1text.1icon.5/default";
901       data.item: "stacking" "above";
902       data.item: "selectraise" "on";
903       data.item: "labels" "elm.text";
904       data.item: "icons" "elm.icon";
905       data.item: "renames" "elm.edit.rename";
906       images {
907          image: "00_list_bar_press_1x80.png" COMP;
908       }
909       parts {
910          GENLIST_PART_BASE( 71 )
911          GENLIST_PART_BG_IMAGE
912          GENLIST_PART_BOTTOM_LINE
913          GENLIST_PART_PADDING_LEFT( 10 )
914          GENLIST_PART_PADDING_RIGHT( 10 )
915          part { name: "elm.icon";
916             clip_to: "disclip";
917             type: SWALLOW;
918             scale: 1;
919             description { state: "default" 0.0;
920                min: 60 60;
921                max: 60 60;
922                fixed: 1 1;
923                rel1.to_x: "elm.padding.right";
924                rel2 {
925                   relative: 0.0 1.0;
926                   to_x: "elm.padding.right";
927                }
928                align: 1.0 0.5;
929             }
930             GENLIST_DESCRIPTION_RENAME_ENABLED
931          }
932          part { name: "elm.padding.icon.left";
933             clip_to: "disclip";
934             type: RECT;
935             scale: 1;
936             description { state: "default" 0.0;
937                min: 10 0;
938                fixed: 1 0;
939                rel1.to_x: "elm.icon";
940                rel2 {
941                   relative: 0.0 1.0;
942                   to_x: "elm.icon";
943                }
944                align: 1.0 0.0;
945                visible: 0;
946             }
947          }
948          part { name: "elm.text";
949             clip_to: "disclip";
950             type: TEXT;
951             mouse_events: 0;
952             scale: 1;
953             description { state: "default" 0.0;
954                rel1 {
955                   relative: 1.0 0.0;
956                   to_x: "elm.padding.left";
957                }
958                rel2 {
959                   relative: 0.0 1.0;
960                   to_x: "elm.padding.icon.left";
961                }
962                align: 0.0 0.5;
963                color: GENLIST_PART_TEXT_COLOR_INC;
964                text {
965                   font: "SLP:style=Roman";
966                   size: 28;
967                   min: 0 1;
968                   align: 0.0 0.5;
969                }
970             }
971             description { state: "selected" 0.0;
972                inherit: "default" 0.0;
973                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
974             }
975             GENLIST_DESCRIPTION_RENAME_ENABLED
976          }
977          GENLIST_PART_RENAME
978          GENLIST_PART_DISCLIP
979       }
980       programs {
981          program { name: "go_active";
982             signal: "elm,state,selected";
983             source: "elm";
984             action: STATE_SET "selected" 0.0;
985             target: "bg_image";
986             target: "elm.text";
987          }
988          program { name: "go_passive";
989             signal: "elm,state,unselected";
990             source: "elm";
991             action: STATE_SET "default" 0.0;
992             target: "bg_image";
993             target: "elm.text";
994             transition: LINEAR 0.1;
995          }
996          program { name: "go_disabled";
997             signal: "elm,state,disabled";
998             source: "elm";
999             action: STATE_SET "disabled" 0.0;
1000             target: "disclip";
1001          }
1002          program { name: "go_enabled";
1003             signal: "elm,state,enabled";
1004             source: "elm";
1005             action: STATE_SET "default" 0.0;
1006             target: "disclip";
1007          }
1008          GENLIST_PROGRAM_RENAME_1TEXT_1ICON
1009       }
1010    }
1011
1012    group { name: "elm/genlist/item/1text.2icon.3/default";
1013       alias: "elm/genlist/item_odd/1text.2icon.3/default";
1014       alias: "elm/genlist/item_compress/1text.2icon.3/default";
1015       alias: "elm/genlist/item_compress_odd/1text.2icon.3/default";
1016       data.item: "stacking" "above";
1017       data.item: "selectraise" "on";
1018       data.item: "labels" "elm.text";
1019       data.item: "icons" "elm.icon.1 elm.icon.2";
1020       data.item: "renames" "elm.edit.rename";
1021       images {
1022          image: "00_list_bar_press_1x80.png" COMP;
1023       }
1024       parts {
1025          GENLIST_PART_BASE( 71 )
1026          GENLIST_PART_BG_IMAGE
1027          GENLIST_PART_BOTTOM_LINE
1028          GENLIST_PART_PADDING_LEFT( 10 )
1029          GENLIST_PART_PADDING_RIGHT( 10 )
1030          part { name: "elm.icon.1";
1031             type: SWALLOW;
1032             clip_to: "disclip";
1033             scale: 1;
1034             description { state: "default" 0.0;
1035                min: 60 60;
1036                max: 60 60;
1037                fixed: 1 1;
1038                rel1 {
1039                   relative: 0.0 1.0;
1040                   to_x: "elm.padding.right";
1041                }
1042                rel2 {
1043                   relative: 0.0 0.0;
1044                   to_x: "elm.padding.right";
1045                }
1046                align: 1.0 0.5;
1047             }
1048             GENLIST_DESCRIPTION_RENAME_ENABLED
1049          }
1050          part { name: "elm.padding.icon1.left";
1051             type: RECT;
1052             clip_to: "disclip";
1053             scale: 1;
1054             description { state: "default" 0.0;
1055                min: 40 0;
1056                fixed: 1 0;
1057                visible: 0;
1058                rel1.to_x: "elm.icon.1";
1059                rel2 {
1060                   relative: 0.0 1.0;
1061                   to_x: "elm.icon.1";
1062                }
1063                align: 1.0 0.0;
1064             }
1065          }
1066          part { name: "elm.text";
1067             type: TEXT;
1068             clip_to: "disclip";
1069             mouse_events: 0;
1070             scale: 1;
1071             description { state: "default" 0.0;
1072                min: 0 0;
1073                max: 360 0;
1074                fixed: 1 0;
1075                rel1 {
1076                   relative: 1.0 0.0;
1077                   to_x: "elm.padding.left";
1078                }
1079                rel2 {
1080                   relative: 1.0 1.0;
1081                   to_x: "elm.padding.left";
1082                }
1083                align: 0.0 0.5;
1084                color: GENLIST_PART_TEXT_COLOR_INC;
1085                text {
1086                   font: "SLP:style=Roman";
1087                   size: 28;
1088                   min: 1 1;
1089                   align: 0.0 0.5;
1090                }
1091             }
1092             description { state: "selected" 0.0;
1093                inherit: "default" 0.0;
1094                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
1095             }
1096             GENLIST_DESCRIPTION_RENAME_ENABLED
1097          }
1098          part { name: "elm.padding.text.right";
1099             type: RECT;
1100             clip_to: "disclip";
1101             scale: 1;
1102             description { state: "default" 0.0;
1103                min: 10 0;
1104                fixed: 1 0;
1105                rel1 {
1106                   relative: 1.0 0.0;
1107                   to_x: "elm.text";
1108                }
1109                rel2.to_x: "elm.text";
1110                align: 0.0 0.0;
1111                visible: 0;
1112             }
1113          }
1114          part { name: "elm.icon.2";
1115             type: SWALLOW;
1116             clip_to: "disclip";
1117             scale: 1;
1118             description { state: "default" 0.0;
1119                min: 20 20;
1120                max: 20 20;
1121                fixed: 1 1;
1122                rel1 {
1123                   relative: 1.0 0.0;
1124                   to_x: "elm.padding.text.right";
1125                }
1126                rel2 {
1127                   relative: 1.0 1.0;
1128                   to_x: "elm.padding.text.right";
1129                }
1130                align: 0.0 0.5;
1131             }
1132             GENLIST_DESCRIPTION_RENAME_ENABLED
1133          }
1134          GENLIST_PART_RENAME
1135          GENLIST_PART_DISCLIP
1136       }
1137       programs {
1138          program { name: "go_active";
1139             signal: "elm,state,selected";
1140             source: "elm";
1141             action: STATE_SET "selected" 0.0;
1142             target: "bg_image";
1143             target: "elm.text";
1144          }
1145          program { name: "go_passive";
1146             signal: "elm,state,unselected";
1147             source: "elm";
1148             action: STATE_SET "default" 0.0;
1149             target: "bg_image";
1150             target: "elm.text";
1151             transition: LINEAR 0.1;
1152          }
1153          program { name: "go_disabled";
1154             signal: "elm,state,disabled";
1155             source: "elm";
1156             action: STATE_SET "disabled" 0.0;
1157             target: "disclip";
1158          }
1159          program { name: "go_enabled";
1160             signal: "elm,state,enabled";
1161             source: "elm";
1162             action: STATE_SET "default" 0.0;
1163             target: "disclip";
1164          }
1165          GENLIST_PROGRAM_RENAME_1TEXT_2ICON
1166       }
1167    }
1168
1169    group { name: "elm/genlist/item/1text.1icon.2/default";
1170       alias: "elm/genlist/item_odd/1text.1icon.2/default";
1171       alias: "elm/genlist/item_compress/1text.1icon.2/default";
1172       alias: "elm/genlist/item_compress_odd/1text.1icon.2/default";
1173       data.item: "stacking" "above";
1174       data.item: "selectraise" "on";
1175       data.item: "labels" "elm.text";
1176       data.item: "icons" "elm.icon";
1177       data.item: "renames" "elm.edit.rename";
1178       images {
1179          image: "00_list_bar_press_1x80.png" COMP;
1180       }
1181       parts {
1182          GENLIST_PART_BASE( 71 )
1183          GENLIST_PART_BG_IMAGE
1184          GENLIST_PART_BOTTOM_LINE
1185          GENLIST_PART_PADDING_LEFT( 10 )
1186          GENLIST_PART_PADDING_RIGHT( 10 )
1187          part { name: "elm.icon";
1188             clip_to: "disclip";
1189             type: SWALLOW;
1190             scale: 1;
1191             description { state: "default" 0.0;
1192                min: 40 40;
1193                max: 40 40;
1194                fixed: 1 1;
1195                rel1 {
1196                   relative: 1.0 0.0;
1197                   to_x: "elm.padding.left";
1198                }
1199                rel2 {
1200                   relative: 1.0 1.0;
1201                   to_x: "elm.padding.left";
1202                }
1203                align: 0.0 0.5;
1204             }
1205             GENLIST_DESCRIPTION_RENAME_ENABLED
1206          }
1207          part { name: "elm.padding.icon.right";
1208             clip_to: "disclip";
1209             type: RECT;
1210             scale: 1;
1211             description { state: "default" 0.0;
1212                min: 10 0;
1213                fixed: 1 0;
1214                rel1 {
1215                   relative: 1.0 0.0;
1216                   to_x: "elm.icon";
1217                }
1218                rel2.to_x: "elm.icon";
1219                visible: 0;
1220             }
1221          }
1222          part { name: "elm.text";
1223             clip_to: "disclip";
1224             type: TEXT;
1225             mouse_events: 0;
1226             scale: 1;
1227             description { state: "default" 0.0;
1228                rel1 {
1229                   relative: 1.0 0.0;
1230                   to_x: "elm.padding.icon.right";
1231                }
1232                rel2 {
1233                   relative: 0.0 1.0;
1234                   to_x: "elm.padding.right";
1235                }
1236                align: 0.0 0.5;
1237                color: GENLIST_PART_TEXT_COLOR_INC;
1238                text {
1239                   font: "SLP:style=Roman";
1240                   size: 28;
1241                   min: 0 1;
1242                   align: 0.0 0.5;
1243                }
1244             }
1245             description { state: "selected" 0.0;
1246                inherit: "default" 0.0;
1247                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
1248             }
1249             GENLIST_DESCRIPTION_RENAME_ENABLED
1250          }
1251          GENLIST_PART_RENAME
1252          GENLIST_PART_DISCLIP
1253       }
1254       programs {
1255          program { name: "go_active";
1256             signal: "elm,state,selected";
1257             source: "elm";
1258             action: STATE_SET "selected" 0.0;
1259             target: "bg_image";
1260             target: "elm.text";
1261          }
1262          program { name: "go_passive";
1263             signal: "elm,state,unselected";
1264             source: "elm";
1265             action: STATE_SET "default" 0.0;
1266             target: "bg_image";
1267             target: "elm.text";
1268             transition: LINEAR 0.1;
1269          }
1270          program { name: "go_disabled";
1271             signal: "elm,state,disabled";
1272             source: "elm";
1273             action: STATE_SET "disabled" 0.0;
1274             target: "disclip";
1275          }
1276          program { name: "go_enabled";
1277             signal: "elm,state,enabled";
1278             source: "elm";
1279             action: STATE_SET "default" 0.0;
1280             target: "disclip";
1281          }
1282          GENLIST_PROGRAM_RENAME_1TEXT_1ICON
1283       }
1284    }
1285
1286    group { name: "elm/genlist/item/2text.1icon/default";
1287       alias: "elm/genlist/item_odd/2text.1icon/default";
1288       alias: "elm/genlist/item_compress/2text.1icon/default";
1289       alias: "elm/genlist/item_compress_odd/2text.1icon/default";
1290       data.item: "stacking" "above";
1291       data.item: "selectraise" "on";
1292       data.item: "labels" "elm.text.1 elm.text.2";
1293       data.item: "icons" "elm.icon";
1294       data.item: "renames" "elm.edit.rename";
1295       images {
1296          image: "00_list_bar_press_1x80.png" COMP;
1297       }
1298       parts {
1299          GENLIST_PART_BASE( 71 )
1300          GENLIST_PART_BG_IMAGE
1301          GENLIST_PART_BOTTOM_LINE
1302          GENLIST_PART_PADDING_LEFT( 10 )
1303          GENLIST_PART_PADDING_RIGHT( 10 )
1304          part { name: "elm.icon";
1305             clip_to: "disclip";
1306             type: SWALLOW;
1307             scale: 1;
1308             description { state: "default" 0.0;
1309                min: 40 40;
1310                max: 40 40;
1311                fixed: 1 1;
1312                rel1 {
1313                   relative: 1.0 0.0;
1314                   to_x: "elm.padding.left";
1315                }
1316                rel2 {
1317                   relative: 1.0 1.0;
1318                   to_x: "elm.padding.left";
1319                }
1320                align: 0.0 0.5;
1321             }
1322             GENLIST_DESCRIPTION_RENAME_ENABLED
1323          }
1324          part { name: "elm.padding.icon.right";
1325             clip_to: "disclip";
1326             type: RECT;
1327             scale: 1;
1328             description { state: "default" 0.0;
1329                min: 10 0;
1330                fixed: 1 0;
1331                rel1 {
1332                   relative: 1.0 0.0;
1333                   to_x: "elm.icon";
1334                }
1335                rel2.to_x: "elm.icon";
1336                visible: 0;
1337             }
1338          }
1339          part { name: "elm.text.2";
1340             clip_to: "disclip";
1341             type: TEXT;
1342             mouse_events: 0;
1343             scale: 1;
1344             description { state: "default" 0.0;
1345                min: 98 0;
1346                fixed: 1 0;
1347                rel1.to_x: "elm.padding.right";
1348                rel2 {
1349                   relative: 0.0 1.0;
1350                   to_x: "elm.padding.right";
1351                }
1352                align: 1.0 0.5;
1353                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
1354                text {
1355                   font: "SLP:style=Medium";
1356                   size: 20;
1357                   min: 0 1;
1358                   align: 1.0 0.5;
1359                }
1360             }
1361             description { state: "selected" 0.0;
1362                inherit: "default" 0.0;
1363                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
1364             }
1365             GENLIST_DESCRIPTION_RENAME_ENABLED
1366          }
1367          part { name: "elm.padding.text2.left";
1368             clip_to: "disclip";
1369             type: RECT;
1370             mouse_events: 0;
1371             scale: 1;
1372             description { state: "default" 0.0;
1373                min: 20 0;
1374                fixed: 1 0;
1375                rel1.to_x: "elm.text.2";
1376                rel2 {
1377                   relative: 0.0 1.0;
1378                   to_x: "elm.text.2";
1379                }
1380                visible: 0;
1381                align: 1.0 0.5;
1382             }
1383          }
1384          part { name: "elm.text.1";
1385             clip_to: "disclip";
1386             type: TEXT;
1387             mouse_events: 0;
1388             scale: 1;
1389             description { state: "default" 0.0;
1390                rel1 {
1391                   relative: 1.0 0.0;
1392                   to_x: "elm.padding.icon.right";
1393                }
1394                rel2 {
1395                   relative: 0.0 1.0;
1396                   to_x: "elm.padding.text2.left";
1397                }
1398                align: 0.0 0.5;
1399                color: GENLIST_PART_TEXT_COLOR_INC;
1400                text {
1401                   font: "SLP:style=Roman";
1402                   size: 28;
1403                   min: 0 1;
1404                   align: 0.0 0.5;
1405                }
1406             }
1407             description { state: "selected" 0.0;
1408                inherit: "default" 0.0;
1409                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
1410             }
1411             GENLIST_DESCRIPTION_RENAME_ENABLED
1412          }
1413          GENLIST_PART_RENAME
1414          GENLIST_PART_DISCLIP
1415       }
1416       programs {
1417          program { name: "go_active";
1418             signal: "elm,state,selected";
1419             source: "elm";
1420             action: STATE_SET "selected" 0.0;
1421             target: "bg_image";
1422             target: "elm.text.1";
1423             target: "elm.text.2";
1424          }
1425          program { name: "go_passive";
1426             signal: "elm,state,unselected";
1427             source: "elm";
1428             action: STATE_SET "default" 0.0;
1429             target: "bg_image";
1430             target: "elm.text.1";
1431             target: "elm.text.2";
1432             transition: LINEAR 0.1;
1433          }
1434          program { name: "go_disabled";
1435             signal: "elm,state,disabled";
1436             source: "elm";
1437             action: STATE_SET "disabled" 0.0;
1438             target: "disclip";
1439          }
1440          program { name: "go_enabled";
1441             signal: "elm,state,enabled";
1442             source: "elm";
1443             action: STATE_SET "default" 0.0;
1444             target: "disclip";
1445          }
1446          GENLIST_PROGRAM_RENAME_2TEXT_1ICON
1447       }
1448    }
1449
1450    group { name: "elm/genlist/item/2text.1icon.6/default";
1451       alias: "elm/genlist/item_odd/2text.1icon.6/default";
1452       alias: "elm/genlist/item_compress/2text.1icon.6/default";
1453       alias: "elm/genlist/item_compress_odd/2text.1icon.6/default";
1454       data.item: "stacking" "above";
1455       data.item: "selectraise" "on";
1456       data.item: "labels" "elm.text.1 elm.text.2";
1457       data.item: "icons" "elm.icon";
1458       data.item: "renames" "elm.edit.rename";
1459       images {
1460          image: "00_list_bar_press_1x80.png" COMP;
1461       }
1462       parts {
1463          GENLIST_PART_BASE( 71 )
1464          GENLIST_PART_BG_IMAGE
1465          GENLIST_PART_BOTTOM_LINE
1466          GENLIST_PART_PADDING_LEFT( 10 )
1467          GENLIST_PART_PADDING_RIGHT( 10 )
1468          part { name: "elm.icon";
1469             clip_to: "disclip";
1470             type: SWALLOW;
1471             scale: 1;
1472             description { state: "default" 0.0;
1473                min: 40 40;
1474                max: 40 40;
1475                fixed: 1 1;
1476                rel1 {
1477                   relative: 1.0 0.0;
1478                   to_x: "elm.padding.left";
1479                }
1480                rel2 {
1481                   relative: 1.0 1.0;
1482                   to_x: "elm.padding.left";
1483                }
1484                align: 0.0 0.5;
1485             }
1486             GENLIST_DESCRIPTION_RENAME_ENABLED
1487          }
1488          part { name: "elm.padding.icon.right";
1489             clip_to: "disclip";
1490             type: RECT;
1491             scale: 1;
1492             description { state: "default" 0.0;
1493                min: 10 0;
1494                fixed: 1 0;
1495                rel1 {
1496                   relative: 1.0 0.0;
1497                   to_x: "elm.icon";
1498                }
1499                rel2.to_x: "elm.icon";
1500                visible: 0;
1501             }
1502          }
1503          part { name: "elm.text.2";
1504             clip_to: "disclip";
1505             type: TEXT;
1506             mouse_events: 0;
1507             scale: 1;
1508             description { state: "default" 0.0;
1509                min: 98 0;
1510                fixed: 1 0;
1511                rel1.to_x: "elm.padding.right";
1512                rel2 {
1513                   relative: 0.0 1.0;
1514                   to_x: "elm.padding.right";
1515                }
1516                align: 1.0 0.5;
1517                color: GENLIST_PART_SUB_TEXT_SETTINGS_COLOR_INC;
1518                text {
1519                   font: "SLP:style=Medium";
1520                   size: 20;
1521                   min: 0 1;
1522                   align: 1.0 0.5;
1523                }
1524             }
1525             description { state: "selected" 0.0;
1526                inherit: "default" 0.0;
1527                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
1528             }
1529             GENLIST_DESCRIPTION_RENAME_ENABLED
1530          }
1531          part { name: "elm.padding.text2.left";
1532             clip_to: "disclip";
1533             type: RECT;
1534             mouse_events: 0;
1535             scale: 1;
1536             description { state: "default" 0.0;
1537                min: 20 0;
1538                fixed: 1 0;
1539                rel1.to_x: "elm.text.2";
1540                rel2 {
1541                   relative: 0.0 1.0;
1542                   to_x: "elm.text.2";
1543                }
1544                visible: 0;
1545                align: 1.0 0.5;
1546             }
1547          }
1548          part { name: "elm.text.1";
1549             clip_to: "disclip";
1550             type: TEXT;
1551             mouse_events: 0;
1552             scale: 1;
1553             description { state: "default" 0.0;
1554                rel1 {
1555                   relative: 1.0 0.0;
1556                   to_x: "elm.padding.icon.right";
1557                }
1558                rel2 {
1559                   relative: 0.0 1.0;
1560                   to_x: "elm.padding.text2.left";
1561                }
1562                align: 0.0 0.5;
1563                color: GENLIST_PART_TEXT_COLOR_INC;
1564                text {
1565                   font: "SLP:style=Roman";
1566                   size: 28;
1567                   min: 0 1;
1568                   align: 0.0 0.5;
1569                }
1570             }
1571             description { state: "selected" 0.0;
1572                inherit: "default" 0.0;
1573                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
1574             }
1575             GENLIST_DESCRIPTION_RENAME_ENABLED
1576          }
1577          GENLIST_PART_RENAME
1578          GENLIST_PART_DISCLIP
1579       }
1580       programs {
1581          program { name: "go_active";
1582             signal: "elm,state,selected";
1583             source: "elm";
1584             action: STATE_SET "selected" 0.0;
1585             target: "bg_image";
1586             target: "elm.text.1";
1587             target: "elm.text.2";
1588          }
1589          program { name: "go_passive";
1590             signal: "elm,state,unselected";
1591             source: "elm";
1592             action: STATE_SET "default" 0.0;
1593             target: "bg_image";
1594             target: "elm.text.1";
1595             target: "elm.text.2";
1596             transition: LINEAR 0.1;
1597          }
1598          program { name: "go_disabled";
1599             signal: "elm,state,disabled";
1600             source: "elm";
1601             action: STATE_SET "disabled" 0.0;
1602             target: "disclip";
1603          }
1604          program { name: "go_enabled";
1605             signal: "elm,state,enabled";
1606             source: "elm";
1607             action: STATE_SET "default" 0.0;
1608             target: "disclip";
1609          }
1610          GENLIST_PROGRAM_RENAME_2TEXT_1ICON
1611       }
1612    }
1613
1614    group { name: "elm/genlist/item/1text.2icon/default";
1615       alias: "elm/genlist/item_odd/1text.2icon/default";
1616       alias: "elm/genlist/item_compress/1text.2icon/default";
1617       alias: "elm/genlist/item_compress_odd/1text.2icon/default";
1618       data.item: "stacking" "above";
1619       data.item: "selectraise" "on";
1620       data.item: "labels" "elm.text";
1621       data.item: "icons" "elm.icon.1 elm.icon.2";
1622       data.item: "renames" "elm.edit.rename";
1623       images {
1624          image: "00_list_bar_press_1x80.png" COMP;
1625       }
1626       parts {
1627          GENLIST_PART_BASE( 71 )
1628          GENLIST_PART_BG_IMAGE
1629          GENLIST_PART_BOTTOM_LINE
1630          GENLIST_PART_PADDING_LEFT( 10 )
1631          GENLIST_PART_PADDING_RIGHT( 10 )
1632          part { name: "elm.icon.1";
1633             clip_to: "disclip";
1634             type: SWALLOW;
1635             scale: 1;
1636             description { state: "default" 0.0;
1637                min: 40 40;
1638                max: 40 40;
1639                fixed: 1 1;
1640                rel1 {
1641                   relative: 1.0 0.0;
1642                   to_x: "elm.padding.left";
1643                }
1644                rel2 {
1645                   relative: 1.0 1.0;
1646                   to_x: "elm.padding.left";
1647                }
1648                align: 0.0 0.5;
1649             }
1650             GENLIST_DESCRIPTION_RENAME_ENABLED
1651          }
1652          part { name: "elm.padding.icon1.right";
1653             clip_to: "disclip";
1654             type: RECT;
1655             scale: 1;
1656             description { state: "default" 0.0;
1657                min: 10 0;
1658                fixed: 1 0;
1659                rel1 {
1660                   relative: 1.0 0.0;
1661                   to_x: "elm.icon.1";
1662                }
1663                rel2.to_x: "elm.icon.1";
1664                visible: 0;
1665             }
1666          }
1667          part { name: "elm.icon.2";
1668             clip_to: "disclip";
1669             type: SWALLOW;
1670             scale: 1;
1671             description { state: "default" 0.0;
1672                fixed: 1 1;
1673                rel1 {
1674                   relative: 0.0 0.0;
1675                   to_x: "elm.padding.right";
1676                }
1677                rel2 {
1678                   relative: 0.0 1.0;
1679                   to_x: "elm.padding.right";
1680                }
1681                align: 1.0 0.5;
1682             }
1683             GENLIST_DESCRIPTION_RENAME_ENABLED
1684          }
1685          part { name: "elm.padding.icon2.left";
1686             clip_to: "disclip";
1687             type: RECT;
1688             scale: 1;
1689             description { state: "default" 0.0;
1690                min: 10 0;
1691                fixed: 1 0;
1692                rel1.to_x: "elm.icon.2";
1693                rel2 {
1694                   relative: 0.0 1.0;
1695                   to_x: "elm.icon.2";
1696                }
1697                align: 1.0 0.0;
1698                visible: 0;
1699             }
1700          }
1701          part { name: "elm.text";
1702             clip_to: "disclip";
1703             type: TEXT;
1704             mouse_events: 0;
1705             scale: 1;
1706             description { state: "default" 0.0;
1707                rel1 {
1708                   relative: 1.0 0.0;
1709                   to_x: "elm.padding.icon1.right";
1710                }
1711                rel2 {
1712                   relative: 0.0 1.0;
1713                   to_x: "elm.padding.icon2.left";
1714                }
1715                align: 0.0 0.5;
1716                color: GENLIST_PART_TEXT_COLOR_INC;
1717                text {
1718                   font: "SLP:style=Roman";
1719                   size: 28;
1720                   min: 0 1;
1721                   align: 0.0 0.5;
1722                }
1723             }
1724             description { state: "selected" 0.0;
1725                inherit: "default" 0.0;
1726                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
1727             }
1728             GENLIST_DESCRIPTION_RENAME_ENABLED
1729          }
1730          GENLIST_PART_RENAME
1731          GENLIST_PART_DISCLIP
1732       }
1733       programs {
1734          program { name: "go_active";
1735             signal: "elm,state,selected";
1736             source: "elm";
1737             action: STATE_SET "selected" 0.0;
1738             target: "bg_image";
1739             target: "elm.text";
1740          }
1741          program { name: "go_passive";
1742             signal: "elm,state,unselected";
1743             source: "elm";
1744             action: STATE_SET "default" 0.0;
1745             target: "bg_image";
1746             target: "elm.text";
1747             transition: LINEAR 0.1;
1748          }
1749          program { name: "go_disabled";
1750             signal: "elm,state,disabled";
1751             source: "elm";
1752             action: STATE_SET "disabled" 0.0;
1753             target: "disclip";
1754          }
1755          program { name: "go_enabled";
1756             signal: "elm,state,enabled";
1757             source: "elm";
1758             action: STATE_SET "default" 0.0;
1759             target: "disclip";
1760          }
1761          GENLIST_PROGRAM_RENAME_1TEXT_2ICON
1762       }
1763    }
1764
1765    group { name: "elm/genlist/item/1text.2icon.6/default";
1766       alias: "elm/genlist/item_odd/1text.2icon.6/default";
1767       alias: "elm/genlist/item_compress/1text.2icon.6/default";
1768       alias: "elm/genlist/item_compress_odd/1text.2icon.6/default";
1769       data.item: "stacking" "above";
1770       data.item: "selectraise" "on";
1771       data.item: "labels" "elm.text";
1772       data.item: "icons" "elm.icon.1 elm.icon.2";
1773       data.item: "renames" "elm.edit.rename";
1774       images {
1775          image: "00_list_bar_press_1x80.png" COMP;
1776       }
1777       parts {
1778          GENLIST_PART_BASE( 71 )
1779          GENLIST_PART_BG_IMAGE
1780          GENLIST_PART_BOTTOM_LINE
1781          GENLIST_PART_PADDING_LEFT( 10 )
1782          GENLIST_PART_PADDING_RIGHT( 10 )
1783          part { name: "elm.icon.1";
1784             clip_to: "disclip";
1785             type: SWALLOW;
1786             scale: 1;
1787             description { state: "default" 0.0;
1788                min: 40 40;
1789                max: 40 40;
1790                fixed: 1 1;
1791                rel1 {
1792                   relative: 1.0 0.0;
1793                   to_x: "elm.padding.left";
1794                }
1795                rel2 {
1796                   relative: 1.0 1.0;
1797                   to_x: "elm.padding.left";
1798                }
1799                align: 0.0 0.5;
1800             }
1801             GENLIST_DESCRIPTION_RENAME_ENABLED
1802          }
1803          part { name: "elm.padding.icon1.right";
1804             clip_to: "disclip";
1805             type: RECT;
1806             scale: 1;
1807             description { state: "default" 0.0;
1808                min: 10 0;
1809                fixed: 1 0;
1810                rel1 {
1811                   relative: 1.0 0.0;
1812                   to_x: "elm.icon.1";
1813                }
1814                rel2.to_x: "elm.icon.1";
1815                visible: 0;
1816             }
1817          }
1818          part { name: "elm.icon.2";
1819             clip_to: "disclip";
1820             type: SWALLOW;
1821             scale: 1;
1822             description { state: "default" 0.0;
1823                min: 40 40;
1824                max: 40 40;
1825                fixed: 1 1;
1826                rel1 {
1827                   relative: 0.0 0.0;
1828                   to_x: "elm.padding.right";
1829                }
1830                rel2 {
1831                   relative: 0.0 1.0;
1832                   to_x: "elm.padding.right";
1833                }
1834                align: 1.0 0.5;
1835             }
1836             GENLIST_DESCRIPTION_RENAME_ENABLED
1837          }
1838          part { name: "elm.padding.icon2.left";
1839             clip_to: "disclip";
1840             type: RECT;
1841             scale: 1;
1842             description { state: "default" 0.0;
1843                min: 10 0;
1844                fixed: 1 0;
1845                rel1.to_x: "elm.icon.2";
1846                rel2 {
1847                   relative: 0.0 1.0;
1848                   to_x: "elm.icon.2";
1849                }
1850                align: 1.0 0.0;
1851                visible: 0;
1852             }
1853          }
1854          part { name: "elm.text";
1855             clip_to: "disclip";
1856             type: TEXT;
1857             mouse_events: 0;
1858             scale: 1;
1859             description { state: "default" 0.0;
1860                rel1 {
1861                   relative: 1.0 0.0;
1862                   to_x: "elm.padding.icon1.right";
1863                }
1864                rel2 {
1865                   relative: 0.0 1.0;
1866                   to_x: "elm.padding.icon2.left";
1867                }
1868                align: 0.0 0.5;
1869                color: GENLIST_PART_TEXT_COLOR_INC;
1870                text {
1871                   font: "SLP:style=Roman";
1872                   size: 28;
1873                   min: 0 1;
1874                   align: 0.0 0.5;
1875                }
1876             }
1877             description { state: "selected" 0.0;
1878                inherit: "default" 0.0;
1879                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
1880             }
1881             GENLIST_DESCRIPTION_RENAME_ENABLED
1882          }
1883          GENLIST_PART_RENAME
1884          GENLIST_PART_DISCLIP
1885       }
1886       programs {
1887          program { name: "go_active";
1888             signal: "elm,state,selected";
1889             source: "elm";
1890             action: STATE_SET "selected" 0.0;
1891             target: "bg_image";
1892             target: "elm.text";
1893          }
1894          program { name: "go_passive";
1895             signal: "elm,state,unselected";
1896             source: "elm";
1897             action: STATE_SET "default" 0.0;
1898             target: "bg_image";
1899             target: "elm.text";
1900             transition: LINEAR 0.1;
1901          }
1902          program { name: "go_disabled";
1903             signal: "elm,state,disabled";
1904             source: "elm";
1905             action: STATE_SET "disabled" 0.0;
1906             target: "disclip";
1907          }
1908          program { name: "go_enabled";
1909             signal: "elm,state,enabled";
1910             source: "elm";
1911             action: STATE_SET "default" 0.0;
1912             target: "disclip";
1913          }
1914          GENLIST_PROGRAM_RENAME_1TEXT_2ICON
1915       }
1916    }
1917
1918    group { name: "elm/genlist/item/1text.1icon.3/default";
1919       alias: "elm/genlist/item_odd/1text.1icon.3/default";
1920       alias: "elm/genlist/item_compress/1text.1icon.3/default";
1921       alias: "elm/genlist/item_compress_odd/1text.1icon.3/default";
1922       data.item: "stacking" "above";
1923       data.item: "selectraise" "on";
1924       data.item: "labels" "elm.text";
1925       data.item: "icons" "elm.icon";
1926       data.item: "renames" "elm.edit.rename";
1927       images {
1928          image: "00_list_bar_press_1x80.png" COMP;
1929       }
1930       parts {
1931          GENLIST_PART_BASE( 71 )
1932          GENLIST_PART_BG_IMAGE
1933          GENLIST_PART_BOTTOM_LINE
1934          GENLIST_PART_PADDING_LEFT( 10 )
1935          GENLIST_PART_PADDING_RIGHT( 10 )
1936          part { name: "elm.icon";
1937             clip_to: "disclip";
1938             type: SWALLOW;
1939             scale: 1;
1940             description { state: "default" 0.0;
1941                min: 26 26;
1942                max: 26 26;
1943                fixed: 1 1;
1944                rel1 {
1945                   relative: 1.0 0.0;
1946                   to_x: "elm.padding.left";
1947                }
1948                rel2.to_x: "elm.padding.left";
1949                align: 0.0 0.5;
1950             }
1951             GENLIST_DESCRIPTION_RENAME_ENABLED
1952          }
1953          part { name: "elm.padding.icon.right";
1954             clip_to: "disclip";
1955             type: RECT;
1956             scale: 1;
1957             description { state: "default" 0.0;
1958                min: 10 0;
1959                fixed: 1 0;
1960                rel1 {
1961                   relative: 1.0 0.0;
1962                   to_x: "elm.icon";
1963                }
1964                rel2.to_x: "elm.icon";
1965                visible: 0;
1966             }
1967          }
1968          part { name: "elm.text";
1969             clip_to: "disclip";
1970             type: TEXT;
1971             mouse_events: 0;
1972             scale: 1;
1973             description { state: "default" 0.0;
1974                rel1 {
1975                   relative: 1.0 0.0;
1976                   to_x: "elm.padding.icon.right";
1977                }
1978                rel2 {
1979                   relative: 0.0 1.0;
1980                   to_x: "elm.padding.right";
1981                }
1982                align: 0.0 0.5;
1983                color: GENLIST_PART_TEXT_COLOR_INC;
1984                text {
1985                   font: "SLP:style=Roman";
1986                   size: 28;
1987                   min: 0 1;
1988                   align: 0.0 0.5;
1989                }
1990             }
1991             description { state: "selected" 0.0;
1992                inherit: "default" 0.0;
1993                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
1994             }
1995             GENLIST_DESCRIPTION_RENAME_ENABLED
1996          }
1997          GENLIST_PART_RENAME
1998          GENLIST_PART_DISCLIP
1999       }
2000       programs {
2001          program { name: "go_active";
2002             signal: "elm,state,selected";
2003             source: "elm";
2004             action: STATE_SET "selected" 0.0;
2005             target: "bg_image";
2006             target: "elm.text";
2007          }
2008          program { name: "go_passive";
2009             signal: "elm,state,unselected";
2010             source: "elm";
2011             action: STATE_SET "default" 0.0;
2012             target: "bg_image";
2013             target: "elm.text";
2014             transition: LINEAR 0.1;
2015          }
2016          program { name: "go_disabled";
2017             signal: "elm,state,disabled";
2018             source: "elm";
2019             action: STATE_SET "disabled" 0.0;
2020             target: "disclip";
2021          }
2022          program { name: "go_enabled";
2023             signal: "elm,state,enabled";
2024             source: "elm";
2025             action: STATE_SET "default" 0.0;
2026             target: "disclip";
2027          }
2028          GENLIST_PROGRAM_RENAME_1TEXT_1ICON
2029       }
2030    }
2031
2032    group { name: "elm/genlist/item/1text.2icon.4/default";
2033       alias: "elm/genlist/item_odd/1text.2icon.4/default";
2034       alias: "elm/genlist/item_compress/1text.2icon.4/default";
2035       alias: "elm/genlist/item_compress_odd/1text.2icon.4/default";
2036       data.item: "stacking" "above";
2037       data.item: "selectraise" "on";
2038       data.item: "labels" "elm.text";
2039       data.item: "icons" "elm.icon.1 elm.icon.2";
2040       data.item: "renames" "elm.edit.rename";
2041       images {
2042          image: "00_list_bar_press_1x80.png" COMP;
2043       }
2044       parts {
2045          GENLIST_PART_BASE( 71 )
2046          GENLIST_PART_BG_IMAGE
2047          GENLIST_PART_BOTTOM_LINE
2048          GENLIST_PART_PADDING_LEFT( 10 )
2049          GENLIST_PART_PADDING_RIGHT( 10 )
2050          part { name: "elm.icon.1";
2051             clip_to: "disclip";
2052             type: SWALLOW;
2053             scale: 1;
2054             description { state: "default" 0.0;
2055                min: 26 26;
2056                max: 26 26;
2057                fixed: 1 1;
2058                rel1 {
2059                   relative: 1.0 0.0;
2060                   to_x: "elm.padding.left";
2061                }
2062                rel2.to_x: "elm.padding.left";
2063                align: 0.0 0.5;
2064             }
2065             GENLIST_DESCRIPTION_RENAME_ENABLED
2066          }
2067          part { name: "elm.padding.icon1.right";
2068             clip_to: "disclip";
2069             type: RECT;
2070             scale: 1;
2071             description { state: "default" 0.0;
2072                min: 10 0;
2073                fixed: 1 0;
2074                rel1 {
2075                   relative: 1.0 0.0;
2076                   to_x: "elm.icon.1";
2077                }
2078                rel2.to_x: "elm.icon.1";
2079                visible: 0;
2080             }
2081          }
2082          part { name: "elm.icon.2";
2083             clip_to: "disclip";
2084             type: SWALLOW;
2085             scale: 1;
2086             description { state: "default" 0.0;
2087                min: 40 40;
2088                max: 40 40;
2089                fixed: 1 1;
2090                rel1 {
2091                   relative: 0.0 0.0;
2092                   to_x: "elm.padding.right";
2093                }
2094                rel2 {
2095                   relative: 0.0 1.0;
2096                   to_x: "elm.padding.right";
2097                }
2098                align: 1.0 0.5;
2099             }
2100             GENLIST_DESCRIPTION_RENAME_ENABLED
2101          }
2102          part { name: "elm.padding.icon2.left";
2103             clip_to: "disclip";
2104             type: RECT;
2105             scale: 1;
2106             description { state: "default" 0.0;
2107                min: 10 0;
2108                fixed: 1 0;
2109                rel1.to_x: "elm.icon.2";
2110                rel2 {
2111                   relative: 0.0 1.0;
2112                   to_x: "elm.icon.2";
2113                }
2114                align: 1.0 0.0;
2115                visible: 0;
2116             }
2117          }
2118          part { name: "elm.text";
2119             clip_to: "disclip";
2120             type: TEXT;
2121             mouse_events: 0;
2122             scale: 1;
2123             description { state: "default" 0.0;
2124                rel1 {
2125                   relative: 1.0 0.0;
2126                   to_x: "elm.padding.icon1.right";
2127                }
2128                rel2 {
2129                   relative: 0.0 1.0;
2130                   to_x: "elm.padding.icon2.left";
2131                }
2132                align: 0.0 0.5;
2133                color: GENLIST_PART_TEXT_COLOR_INC;
2134                text {
2135                   font: "SLP:style=Roman";
2136                   size: 28;
2137                   min: 0 1;
2138                   align: 0.0 0.5;
2139                }
2140             }
2141             description { state: "selected" 0.0;
2142                inherit: "default" 0.0;
2143                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
2144             }
2145             GENLIST_DESCRIPTION_RENAME_ENABLED
2146          }
2147          GENLIST_PART_RENAME
2148          GENLIST_PART_DISCLIP
2149       }
2150       programs {
2151          program { name: "go_active";
2152             signal: "elm,state,selected";
2153             source: "elm";
2154             action: STATE_SET "selected" 0.0;
2155             target: "bg_image";
2156             target: "elm.text";
2157          }
2158          program { name: "go_passive";
2159             signal: "elm,state,unselected";
2160             source: "elm";
2161             action: STATE_SET "default" 0.0;
2162             target: "bg_image";
2163             target: "elm.text";
2164             transition: LINEAR 0.1;
2165          }
2166          program { name: "go_disabled";
2167             signal: "elm,state,disabled";
2168             source: "elm";
2169             action: STATE_SET "disabled" 0.0;
2170             target: "disclip";
2171          }
2172          program { name: "go_enabled";
2173             signal: "elm,state,enabled";
2174             source: "elm";
2175             action: STATE_SET "default" 0.0;
2176             target: "disclip";
2177          }
2178          GENLIST_PROGRAM_RENAME_1TEXT_2ICON
2179       }
2180    }
2181
2182    group { name: "elm/genlist/item/1text.2icon.2/default";
2183       alias: "elm/genlist/item_odd/1text.2icon.2/default";
2184       alias: "elm/genlist/item_compress/1text.2icon.2/default";
2185       alias: "elm/genlist/item_compress_odd/1text.2icon.2/default";
2186       data.item: "stacking" "above";
2187       data.item: "selectraise" "on";
2188       data.item: "labels" "elm.text";
2189       data.item: "icons" "elm.icon.1 elm.icon.2";
2190       data.item: "renames" "elm.edit.rename";
2191       images {
2192          image: "00_list_bar_press_1x80.png" COMP;
2193       }
2194       parts {
2195          GENLIST_PART_BASE( 71 )
2196          GENLIST_PART_BG_IMAGE
2197          GENLIST_PART_BOTTOM_LINE
2198          GENLIST_PART_PADDING_LEFT( 10 )
2199          GENLIST_PART_PADDING_RIGHT( 10 )
2200          part { name: "elm.icon.1";
2201             clip_to: "disclip";
2202             type: SWALLOW;
2203             scale: 1;
2204             description { state: "default" 0.0;
2205                min: 26 26;
2206                max: 26 26;
2207                fixed: 1 1;
2208                rel1 {
2209                   relative: 1.0 0.0;
2210                   to_x: "elm.padding.left";
2211                }
2212                rel2.to_x: "elm.padding.left";
2213                align: 0.0 0.5;
2214             }
2215             GENLIST_DESCRIPTION_RENAME_ENABLED
2216          }
2217          part { name: "elm.padding.icon1.right";
2218             clip_to: "disclip";
2219             type: RECT;
2220             scale: 1;
2221             description { state: "default" 0.0;
2222                min: 10 0;
2223                fixed: 1 0;
2224                rel1 {
2225                   relative: 1.0 0.0;
2226                   to_x: "elm.icon.1";
2227                }
2228                rel2.to_x: "elm.icon.1";
2229                align: 0.0 0.0;
2230                visible: 0;
2231             }
2232          }
2233          part { name: "elm.icon.2";
2234             clip_to: "disclip";
2235             type: SWALLOW;
2236             scale: 1;
2237             description { state: "default" 0.0;
2238                min: 40 40;
2239                max: 40 40;
2240                fixed: 1 1;
2241                rel1 {
2242                   relative: 1.0 0.0;
2243                   to_x: "elm.padding.icon1.right";
2244                }
2245                rel2.to_x: "elm.padding.icon1.right";
2246                align: 0.0 0.5;
2247             }
2248             GENLIST_DESCRIPTION_RENAME_ENABLED
2249          }
2250          part { name: "elm.padding.icon2.right";
2251             type: RECT;
2252             scale: 1;
2253             description { state: "default" 0.0;
2254                min: 10 0;
2255                fixed: 1 0;
2256                rel1 {
2257                   relative: 1.0 0.0;
2258                   to_x: "elm.icon.2";
2259                }
2260                rel2.to_x: "elm.icon.2";
2261                align: 0.0 0.5;
2262                visible: 0;
2263             }
2264          }
2265          part { name: "elm.text";
2266             clip_to: "disclip";
2267             type: TEXT;
2268             mouse_events: 0;
2269             scale: 1;
2270             description { state: "default" 0.0;
2271                rel1 {
2272                   relative: 1.0 0.0;
2273                   to_x: "elm.padding.icon2.right";
2274                }
2275                rel2 {
2276                   relative: 0.0 1.0;
2277                   to_x: "elm.padding.right";
2278                }
2279                align: 0.0 0.5;
2280                color: GENLIST_PART_TEXT_COLOR_INC;
2281                text {
2282                   font: "SLP:style=Roman";
2283                   size: 28;
2284                   min: 0 1;
2285                   align: 0.0 0.5;
2286                }
2287             }
2288             description { state: "selected" 0.0;
2289                inherit: "default" 0.0;
2290                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
2291             }
2292             GENLIST_DESCRIPTION_RENAME_ENABLED
2293          }
2294          GENLIST_PART_RENAME
2295          GENLIST_PART_DISCLIP
2296       }
2297       programs {
2298          program { name: "go_active";
2299             signal: "elm,state,selected";
2300             source: "elm";
2301             action: STATE_SET "selected" 0.0;
2302             target: "bg_image";
2303             target: "elm.text";
2304          }
2305          program { name: "go_passive";
2306             signal: "elm,state,unselected";
2307             source: "elm";
2308             action: STATE_SET "default" 0.0;
2309             target: "bg_image";
2310             target: "elm.text";
2311             transition: LINEAR 0.1;
2312          }
2313          program { name: "go_disabled";
2314             signal: "elm,state,disabled";
2315             source: "elm";
2316             action: STATE_SET "disabled" 0.0;
2317             target: "disclip";
2318          }
2319          program { name: "go_enabled";
2320             signal: "elm,state,enabled";
2321             source: "elm";
2322             action: STATE_SET "default" 0.0;
2323             target: "disclip";
2324          }
2325          GENLIST_PROGRAM_RENAME_1TEXT_2ICON
2326       }
2327    }
2328
2329    group { name: "elm/genlist/item/1text.3icon/default";
2330       alias: "elm/genlist/item_odd/1text.3icon/default";
2331       alias: "elm/genlist/item_compress/1text.3icon/default";
2332       alias: "elm/genlist/item_compress_odd/1text.3icon/default";
2333       data.item: "stacking" "above";
2334       data.item: "selectraise" "on";
2335       data.item: "labels" "elm.text";
2336       data.item: "icons" "elm.icon.1 elm.icon.2 elm.icon.3";
2337       data.item: "renames" "elm.edit.rename";
2338       images {
2339          image: "00_list_bar_press_1x80.png" COMP;
2340       }
2341       parts {
2342          GENLIST_PART_BASE( 71 )
2343          GENLIST_PART_BG_IMAGE
2344          GENLIST_PART_BOTTOM_LINE
2345          GENLIST_PART_PADDING_LEFT( 10 )
2346          GENLIST_PART_PADDING_RIGHT( 10 )
2347          part { name: "elm.icon.1";
2348             clip_to: "disclip";
2349             type: SWALLOW;
2350             scale: 1;
2351             description { state: "default" 0.0;
2352                min: 26 26;
2353                max: 26 26;
2354                fixed: 1 1;
2355                rel1 {
2356                   relative: 1.0 0.0;
2357                   to_x: "elm.padding.left";
2358                }
2359                rel2.to_x: "elm.padding.left";
2360                align: 0.0 0.5;
2361             }
2362             GENLIST_DESCRIPTION_RENAME_ENABLED
2363          }
2364          part { name: "elm.padding.icon1.right";
2365             clip_to: "disclip";
2366             type: RECT;
2367             scale: 1;
2368             description { state: "default" 0.0;
2369                min: 10 0;
2370                fixed: 1 0;
2371                rel1 {
2372                   relative: 1.0 0.0;
2373                   to_x: "elm.icon.1";
2374                }
2375                rel2.to_x: "elm.icon.1";
2376                align: 0.0 0.0;
2377                visible: 0;
2378             }
2379          }
2380          part { name: "elm.icon.2";
2381             clip_to: "disclip";
2382             type: SWALLOW;
2383             scale: 1;
2384             description { state: "default" 0.0;
2385                min: 40 40;
2386                max: 40 40;
2387                fixed: 1 1;
2388                rel1 {
2389                   relative: 1.0 0.0;
2390                   to_x: "elm.padding.icon1.right";
2391                }
2392                rel2.to_x: "elm.padding.icon1.right";
2393                align: 0.0 0.5;
2394             }
2395             GENLIST_DESCRIPTION_RENAME_ENABLED
2396          }
2397          part { name: "elm.padding.icon2.right";
2398             clip_to: "disclip";
2399             type: RECT;
2400             scale: 1;
2401             description { state: "default" 0.0;
2402                min: 10 0;
2403                fixed: 1 0;
2404                rel1 {
2405                   relative: 1.0 0.0;
2406                   to_x: "elm.icon.2";
2407                }
2408                rel2.to_x: "elm.icon.2";
2409                visible: 0;
2410             }
2411          }
2412          part { name: "elm.icon.3";
2413             clip_to: "disclip";
2414             type: SWALLOW;
2415             scale: 1;
2416             description { state: "default" 0.0;
2417                min: 40 40;
2418                max: 40 40;
2419                fixed: 1 1;
2420                rel1 {
2421                   relative: 0.0 0.0;
2422                   to_x: "elm.padding.right";
2423                }
2424                rel2 {
2425                   relative: 0.0 1.0;
2426                   to_x: "elm.padding.right";
2427                }
2428                align: 1.0 0.5;
2429             }
2430             GENLIST_DESCRIPTION_RENAME_ENABLED
2431          }
2432          part { name: "elm.padding.icon3.left";
2433             clip_to: "disclip";
2434             type: RECT;
2435             scale: 1;
2436             description { state: "default" 0.0;
2437                min: 10 0;
2438                fixed: 1 0;
2439                rel1.to_x: "elm.icon.3";
2440                rel2 {
2441                   relative: 0.0 1.0;
2442                   to_x: "elm.icon.3";
2443                }
2444                align: 1.0 0.0;
2445                visible: 0;
2446             }
2447          }
2448          part { name: "elm.text";
2449             clip_to: "disclip";
2450             type: TEXT;
2451             mouse_events: 0;
2452             scale: 1;
2453             description { state: "default" 0.0;
2454                rel1 {
2455                   relative: 1.0 0.0;
2456                   to_x: "elm.padding.icon2.right";
2457                }
2458                rel2 {
2459                   relative: 0.0 1.0;
2460                   to_x: "elm.padding.icon3.left";
2461                }
2462                align: 0.0 0.5;
2463                color: GENLIST_PART_TEXT_COLOR_INC;
2464                text {
2465                   font: "SLP:style=Roman";
2466                   size: 28;
2467                   min: 0 1;
2468                   align: 0.0 0.5;
2469                }
2470             }
2471             description { state: "selected" 0.0;
2472                inherit: "default" 0.0;
2473                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
2474             }
2475             GENLIST_DESCRIPTION_RENAME_ENABLED
2476          }
2477          GENLIST_PART_RENAME
2478          GENLIST_PART_DISCLIP
2479       }
2480       programs {
2481          program { name: "go_active";
2482             signal: "elm,state,selected";
2483             source: "elm";
2484             action: STATE_SET "selected" 0.0;
2485             target: "bg_image";
2486             target: "elm.text";
2487          }
2488          program { name: "go_passive";
2489             signal: "elm,state,unselected";
2490             source: "elm";
2491             action: STATE_SET "default" 0.0;
2492             target: "bg_image";
2493             target: "elm.text";
2494             transition: LINEAR 0.1;
2495          }
2496          program { name: "go_disabled";
2497             signal: "elm,state,disabled";
2498             source: "elm";
2499             action: STATE_SET "disabled" 0.0;
2500             target: "disclip";
2501          }
2502          program { name: "go_enabled";
2503             signal: "elm,state,enabled";
2504             source: "elm";
2505             action: STATE_SET "default" 0.0;
2506             target: "disclip";
2507          }
2508          GENLIST_PROGRAM_RENAME_1TEXT_2ICON
2509       }
2510    }
2511
2512    group { name: "elm/genlist/item/1text.3icon.2/default";
2513       alias: "elm/genlist/item_odd/1text.3icon.2/default";
2514       alias: "elm/genlist/item_compress/1text.3icon.2/default";
2515       alias: "elm/genlist/item_compress_odd/1text.3icon.2/default";
2516       data.item: "stacking" "above";
2517       data.item: "selectraise" "on";
2518       data.item: "labels" "elm.text";
2519       data.item: "icons" "elm.icon.1 elm.icon.2 elm.icon.3";
2520       data.item: "renames" "elm.edit.rename";
2521       images {
2522          image: "00_list_bar_press_1x80.png" COMP;
2523       }
2524       parts {
2525          GENLIST_PART_BASE( 71 )
2526          GENLIST_PART_BG_IMAGE
2527          GENLIST_PART_BOTTOM_LINE
2528          GENLIST_PART_PADDING_LEFT( 10 )
2529          GENLIST_PART_PADDING_RIGHT( 10 )
2530          part { name: "elm.icon.1";
2531             clip_to: "disclip";
2532             type: SWALLOW;
2533             scale: 1;
2534             description { state: "default" 0.0;
2535                min: 26 26;
2536                max: 26 26;
2537                fixed: 1 1;
2538                rel1 {
2539                   relative: 1.0 0.0;
2540                   to_x: "elm.padding.left";
2541                }
2542                rel2.to_x: "elm.padding.left";
2543                align: 0.0 0.5;
2544             }
2545             GENLIST_DESCRIPTION_RENAME_ENABLED
2546          }
2547          part { name: "elm.padding.icon1.right";
2548             clip_to: "disclip";
2549             type: RECT;
2550             scale: 1;
2551             description { state: "default" 0.0;
2552                min: 10 0;
2553                fixed: 1 0;
2554                rel1 {
2555                   relative: 1.0 0.0;
2556                   to_x: "elm.icon.1";
2557                }
2558                rel2.to_x: "elm.icon.1";
2559                align: 0.0 0.5;
2560                visible: 0;
2561             }
2562          }
2563          part { name: "elm.icon.3";
2564             clip_to: "disclip";
2565             type: SWALLOW;
2566             scale: 1;
2567             description { state: "default" 0.0;
2568                min: 40 40;
2569                max: 40 40;
2570                fixed: 1 1;
2571                rel1.to_x: "elm.padding.right";
2572                rel2 {
2573                   relative: 0.0 1.0;
2574                   to_x: "elm.padding.right";
2575                }
2576                align: 1.0 0.5;
2577             }
2578             GENLIST_DESCRIPTION_RENAME_ENABLED
2579          }
2580          part { name: "elm.padding.icon3.left";
2581             clip_to: "disclip";
2582             type: RECT;
2583             scale: 1;
2584             description { state: "default" 0.0;
2585                min: 10 0;
2586                fixed: 1 0;
2587                rel1 {
2588                   relative: 0.0 0.0;
2589                   to_x: "elm.icon.3";
2590                }
2591                rel2.to_x: "elm.icon.3";
2592                align: 1.0 0.0;
2593                visible: 0;
2594             }
2595          }
2596          part { name: "elm.icon.2";
2597             clip_to: "disclip";
2598             type: SWALLOW;
2599             scale: 1;
2600             description { state: "default" 0.0;
2601                min: 40 40;
2602                max: 40 40;
2603                fixed: 1 1;
2604                rel1.to_x: "elm.padding.icon3.left";
2605                rel2 {
2606                   relative: 0.0 1.0;
2607                   to_x: "elm.padding.icon3.left";
2608                }
2609                align: 1.0 0.5;
2610             }
2611             GENLIST_DESCRIPTION_RENAME_ENABLED
2612          }
2613          part { name: "elm.padding.icon2.left";
2614             clip_to: "disclip";
2615             type: RECT;
2616             scale: 1;
2617             description { state: "default" 0.0;
2618                min: 10 0;
2619                fixed: 1 0;
2620                rel1 {
2621                   relative: 0.0 0.0;
2622                   to_x: "elm.icon.2";
2623                }
2624                rel2.to_x: "elm.icon.2";
2625                align: 0.0 0.5;
2626                visible: 0;
2627             }
2628          }
2629          part { name: "elm.text";
2630             clip_to: "disclip";
2631             type: TEXT;
2632             mouse_events: 0;
2633             scale: 1;
2634             description { state: "default" 0.0;
2635                rel1 {
2636                   relative: 1.0 0.0;
2637                   to_x: "elm.padding.icon1.right";
2638                }
2639                rel2 {
2640                   relative: 0.0 1.0;
2641                   to_x: "elm.padding.icon2.left";
2642                }
2643                align: 0.0 0.5;
2644                color: GENLIST_PART_TEXT_COLOR_INC;
2645                text {
2646                   font: "SLP:style=Roman";
2647                   size: 28;
2648                   min: 0 1;
2649                   align: 0.0 0.5;
2650                }
2651             }
2652             description { state: "selected" 0.0;
2653                inherit: "default" 0.0;
2654                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
2655             }
2656             GENLIST_DESCRIPTION_RENAME_ENABLED
2657          }
2658          GENLIST_PART_RENAME
2659          GENLIST_PART_DISCLIP
2660       }
2661       programs {
2662          program { name: "go_active";
2663             signal: "elm,state,selected";
2664             source: "elm";
2665             action: STATE_SET "selected" 0.0;
2666             target: "bg_image";
2667             target: "elm.text";
2668          }
2669          program { name: "go_passive";
2670             signal: "elm,state,unselected";
2671             source: "elm";
2672             action: STATE_SET "default" 0.0;
2673             target: "bg_image";
2674             target: "elm.text";
2675             transition: LINEAR 0.1;
2676          }
2677          program { name: "go_disabled";
2678             signal: "elm,state,disabled";
2679             source: "elm";
2680             action: STATE_SET "disabled" 0.0;
2681             target: "disclip";
2682          }
2683          program { name: "go_enabled";
2684             signal: "elm,state,enabled";
2685             source: "elm";
2686             action: STATE_SET "default" 0.0;
2687             target: "disclip";
2688          }
2689          GENLIST_PROGRAM_RENAME_1TEXT_3ICON
2690       }
2691    }
2692
2693    group { name: "elm/genlist/item/2text.4/default";
2694       alias: "elm/genlist/item_odd/2text.4/default";
2695       alias: "elm/genlist/item_compress/2text.4/default";
2696       alias: "elm/genlist/item_compress_odd/2text.4/default";
2697       data.item: "stacking" "above";
2698       data.item: "selectraise" "on";
2699       data.item: "labels" "elm.text.1 elm.text.2";
2700       data.item: "renames" "elm.edit.rename";
2701       images {
2702          image: "00_list_bar_press_1x80.png" COMP;
2703       }
2704       parts {
2705          GENLIST_PART_BASE( 61 )
2706          GENLIST_PART_BG_IMAGE
2707          GENLIST_PART_BOTTOM_LINE
2708          GENLIST_PART_PADDING_LEFT( 10 )
2709          GENLIST_PART_PADDING_RIGHT( 10 )
2710          part { name: "elm.text.2";
2711             clip_to: "disclip";
2712             type: TEXT;
2713             mouse_events: 0;
2714             scale: 1;
2715             description { state: "default" 0.0;
2716                min: 129 0;
2717                fixed: 1 0;
2718                rel1.to_x: "elm.padding.right";
2719                rel2 {
2720                   relative: 0.0 1.0;
2721                   to_x: "elm.padding.right";
2722                }
2723                align: 1.0 0.5;
2724                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
2725                text {
2726                   font: "SLP:style=Medium";
2727                   size: 20;
2728                   min: 0 1;
2729                   align: 0.0 0.5;
2730                }
2731             }
2732             description { state: "selected" 0.0;
2733                inherit: "default" 0.0;
2734                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
2735             }
2736             GENLIST_DESCRIPTION_RENAME_ENABLED
2737          }
2738          part { name: "elm.padding.text2.left";
2739             type: RECT;
2740             mouse_events: 0;
2741             scale: 1;
2742             description { state: "default" 0.0;
2743                min: 10 0;
2744                fixed: 1 0;
2745                rel1.to_x: "elm.text.2";
2746                rel2 {
2747                   relative: 0.0 1.0;
2748                   to_x: "elm.text.2";
2749                }
2750                align: 1.0 0.5;
2751                visible: 0;
2752             }
2753          }
2754          part { name: "vertical_line";
2755             type: RECT;
2756             mouse_events: 0;
2757             description { state: "default" 0.0;
2758                min: 1 0;
2759                fixed: 1 0;
2760                rel1.to_x: "elm.padding.text2.left";
2761                rel2 {
2762                   relative: 0.0 1.0;
2763                   to_x: "elm.padding.text2.left";
2764                }
2765                align: 1.0 0.5;
2766                color: GENLIST_PART_BOTTOM_LINE_INC;
2767             }
2768          }
2769          part { name: "elm.padding.text1.right";
2770             type: RECT;
2771             mouse_events: 0;
2772             scale: 1;
2773             description { state: "default" 0.0;
2774                min: 10 0;
2775                fixed: 1 0;
2776                rel1.to_x: "vertical_line";
2777                rel2 {
2778                   relative: 0.0 1.0;
2779                   to_x: "vertical_line";
2780                }
2781                align: 1.0 0.5;
2782                visible: 0;
2783             }
2784          }
2785          part { name: "elm.text.1";
2786             clip_to: "disclip";
2787             type: TEXT;
2788             mouse_events: 0;
2789             scale: 1;
2790             description { state: "default" 0.0;
2791                rel1 {
2792                   relative: 1.0 0.0;
2793                   to_x: "elm.padding.left";
2794                }
2795                rel2 {
2796                   relative: 0.0  1.0;
2797                   to_x: "elm.padding.text1.right";
2798                }
2799                color: GENLIST_PART_TEXT_COLOR_INC;
2800                text {
2801                   font: "SLP:style=Roman";
2802                   size: 28;
2803                   min: 0 1;
2804                   align: 1.0 0.5;
2805                }
2806             }
2807             description { state: "selected" 0.0;
2808                inherit: "default" 0.0;
2809                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
2810             }
2811             GENLIST_DESCRIPTION_RENAME_ENABLED
2812          }
2813          GENLIST_PART_RENAME
2814          GENLIST_PART_DISCLIP
2815       }
2816       programs {
2817          // signal: elm,state,%s,active
2818          //   a "check" item named %s went active
2819          // signal: elm,state,%s,passive
2820          //   a "check" item named %s went passive
2821          // default is passive
2822          program { name: "go_active";
2823             signal: "elm,state,selected";
2824             source: "elm";
2825             action: STATE_SET "selected" 0.0;
2826             target: "bg_image";
2827             target: "elm.text.1";
2828             target: "elm.text.2";
2829          }
2830          program { name: "go_passive";
2831             signal: "elm,state,unselected";
2832             source: "elm";
2833             action: STATE_SET "default" 0.0;
2834             target: "bg_image";
2835             target: "elm.text.1";
2836             target: "elm.text.2";
2837             transition: LINEAR 0.1;
2838          }
2839          program { name: "go_disabled";
2840             signal: "elm,state,disabled";
2841             source: "elm";
2842             action: STATE_SET "disabled" 0.0;
2843             target: "disclip";
2844          }
2845          program { name: "go_enabled";
2846             signal: "elm,state,enabled";
2847             source: "elm";
2848             action: STATE_SET "default" 0.0;
2849             target: "disclip";
2850          }
2851          program { name: "rename_enabled";
2852             signal: "elm,state,rename,enabled";
2853             source: "elm";
2854             action: STATE_SET "rename_enabled" 0.0;
2855             target: "elm.text.1";
2856             target: "elm.edit.rename";
2857          }
2858          program { name: "rename_disabled";
2859             signal: "elm,state,rename,disabled";
2860             source: "elm";
2861             action: STATE_SET "default" 0.0;
2862             target: "elm.text.1";
2863             target: "elm.edit.rename";
2864          }
2865       }
2866    }
2867
2868    group { name: "elm/genlist/item/2text.5/default";
2869       alias: "elm/genlist/item_odd/2text.5/default";
2870       alias: "elm/genlist/item_compress/2text.5/default";
2871       alias: "elm/genlist/item_compress_odd/2text.5/default";
2872       data.item: "stacking" "above";
2873       data.item: "selectraise" "on";
2874       data.item: "labels" "elm.text.1 elm.text.2";
2875       data.item: "renames" "elm.edit.rename";
2876       images {
2877          image: "00_list_bar_press_1x80.png" COMP;
2878       }
2879       parts {
2880          GENLIST_PART_BASE( 71 )
2881          GENLIST_PART_BG_IMAGE
2882          GENLIST_PART_BOTTOM_LINE
2883          GENLIST_PART_PADDING_LEFT( 10 )
2884          GENLIST_PART_PADDING_RIGHT( 10 )
2885          part { name: "elm.text.1";
2886             clip_to: "disclip";
2887             type: TEXT;
2888             mouse_events: 0;
2889             scale: 1;
2890             description { state: "default" 0.0;
2891                min: 98 0;
2892                fixed: 1 0;
2893                rel1 {
2894                   relative: 1.0 0.0;
2895                   to_x: "elm.padding.left";
2896                }
2897                rel2.to_x: "elm.padding.left";
2898                align: 0.0 0.5;
2899                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
2900                text {
2901                   font: "SLP:style=Medium";
2902                   size: 20;
2903                   min: 0 1;
2904                   align: 0.0 0.5;
2905                }
2906             }
2907             description { state: "selected" 0.0;
2908                inherit: "default" 0.0;
2909                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
2910             }
2911          }
2912          part { name: "elm.padding.text1.right";
2913             type: RECT;
2914             mouse_events: 0;
2915             scale: 1;
2916             description { state: "default" 0.0;
2917                min: 10 0;
2918                fixed: 1 0;
2919                rel1 {
2920                    relative: 1.0 0.0;
2921                    to_x: "elm.text.1";
2922                }
2923                rel2.to_x: "elm.text.1";
2924                align: 0.0 0.5;
2925                visible: 0;
2926             }
2927          }
2928          part { name: "vertical_line";
2929             type: RECT;
2930             mouse_events: 0;
2931             description { state: "default" 0.0;
2932                min: 1 0;
2933                fixed: 1 0;
2934                rel1.to_x: "elm.padding.text1.right";
2935                rel2 {
2936                   relative: 0.0 1.0;
2937                   to_x: "elm.padding.text1.right";
2938                }
2939                align: 0.0 0.5;
2940                color: GENLIST_PART_BOTTOM_LINE_INC;
2941             }
2942          }
2943          part { name: "elm.padding.text2.left";
2944             type: RECT;
2945             mouse_events: 0;
2946             scale: 1;
2947             description { state: "default" 0.0;
2948                min: 10 0;
2949                fixed: 1 0;
2950                rel1 {
2951                    relative: 1.0 0.0;
2952                    to_x: "vertical_line";
2953                }
2954                rel2.to_x: "vertical_line";
2955                align: 0.0 0.5;
2956                visible: 0;
2957             }
2958          }
2959          part { name: "elm.text.2";
2960             clip_to: "disclip";
2961             type: TEXT;
2962             mouse_events: 0;
2963             scale: 1;
2964             description { state: "default" 0.0;
2965                rel1 {
2966                   relative: 1.0 0.0;
2967                   to_x: "elm.padding.text2.left";
2968                }
2969                rel2 {
2970                   relative: 0.0  1.0;
2971                   to_x: "elm.padding.right";
2972                }
2973                color: GENLIST_PART_TEXT_COLOR_INC;
2974                text {
2975                   font: "SLP:style=Roman";
2976                   size: 28;
2977                   min: 0 1;
2978                   align: 0.0 0.5;
2979                }
2980             }
2981             description { state: "selected" 0.0;
2982                inherit: "default" 0.0;
2983                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
2984             }
2985             GENLIST_DESCRIPTION_RENAME_ENABLED
2986          }
2987          GENLIST_PART_RENAME
2988          GENLIST_PART_DISCLIP
2989       }
2990       programs {
2991          // signal: elm,state,%s,active
2992          //   a "check" item named %s went active
2993          // signal: elm,state,%s,passive
2994          //   a "check" item named %s went passive
2995          // default is passive
2996          program { name: "go_active";
2997             signal: "elm,state,selected";
2998             source: "elm";
2999             action: STATE_SET "selected" 0.0;
3000             target: "bg_image";
3001             target: "elm.text.1";
3002             target: "elm.text.2";
3003          }
3004          program { name: "go_passive";
3005             signal: "elm,state,unselected";
3006             source: "elm";
3007             action: STATE_SET "default" 0.0;
3008             target: "bg_image";
3009             target: "elm.text.1";
3010             target: "elm.text.2";
3011             transition: LINEAR 0.1;
3012          }
3013          program { name: "go_disabled";
3014             signal: "elm,state,disabled";
3015             source: "elm";
3016             action: STATE_SET "disabled" 0.0;
3017             target: "disclip";
3018          }
3019          program { name: "go_enabled";
3020             signal: "elm,state,enabled";
3021             source: "elm";
3022             action: STATE_SET "default" 0.0;
3023             target: "disclip";
3024          }
3025          program { name: "rename_enabled";
3026             signal: "elm,state,rename,enabled";
3027             source: "elm";
3028             action: STATE_SET "rename_enabled" 0.0;
3029             target: "elm.text.2";
3030             target: "elm.edit.rename";
3031          }
3032          program { name: "rename_disabled";
3033             signal: "elm,state,rename,disabled";
3034             source: "elm";
3035             action: STATE_SET "default" 0.0;
3036             target: "elm.text.2";
3037             target: "elm.edit.rename";
3038          }
3039       }
3040    }
3041
3042    group { name: "elm/genlist/item/2text.2/default";
3043       alias: "elm/genlist/item_odd/2text.2/default";
3044       alias: "elm/genlist/item_compress/2text.2/default";
3045       alias: "elm/genlist/item_compress_odd/2text.2/default";
3046       data.item: "stacking" "above";
3047       data.item: "selectraise" "on";
3048       data.item: "labels" "elm.text.1 elm.text.2";
3049       data.item: "renames" "elm.edit.rename";
3050       images {
3051          image: "00_list_bar_press_1x80.png" COMP;
3052       }
3053       parts {
3054          GENLIST_PART_BASE( 81 )
3055          GENLIST_PART_BG_IMAGE
3056          GENLIST_PART_BOTTOM_LINE
3057          GENLIST_PART_PADDING_TOP( 6 )
3058          GENLIST_PART_PADDING_BOTTOM( 6 )
3059          GENLIST_PART_PADDING_LEFT( 10 )
3060          GENLIST_PART_PADDING_RIGHT( 10 )
3061          part { name: "elm.text.1";
3062             clip_to: "disclip";
3063             type: TEXT;
3064             mouse_events: 0;
3065             scale: 1;
3066             description { state: "default" 0.0;
3067                min: 0 38;
3068                fixed: 0 1;
3069                rel1 {
3070                   relative: 1.0 1.0;
3071                   to_x: "elm.padding.left";
3072                   to_y: "elm.padding.top";
3073                }
3074                rel2 {
3075                   relative: 0.0 1.0;
3076                   to_x: "elm.padding.right";
3077                   to_y: "elm.padding.top";
3078                }
3079                align: 0.0 0.0;
3080                color: GENLIST_PART_TEXT_COLOR_INC;
3081                text {
3082                   font: "SLP:style=Roman";
3083                   size: 28;
3084                   min: 0 1;
3085                   align: 0.0 0.5;
3086                }
3087             }
3088             description { state: "selected" 0.0;
3089                inherit: "default" 0.0;
3090                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
3091             }
3092             GENLIST_DESCRIPTION_RENAME_ENABLED
3093          }
3094          part { name: "elm.text.2";
3095             clip_to: "disclip";
3096             type: TEXT;
3097             mouse_events: 0;
3098             scale: 1;
3099             description { state: "default" 0.0;
3100                rel1 {
3101                   relative: 1.0 1.0;
3102                   to_x: "elm.padding.left";
3103                   to_y: "elm.text.1";
3104                }
3105                rel2 {
3106                   relative: 0.0 0.0;
3107                   to_x: "elm.padding.right";
3108                   to_y: "elm.padding.bottom";
3109                }
3110                align: 0.0 0.0;
3111                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
3112                text {
3113                   font: "SLP:style=Medium";
3114                   size: 20;
3115                   min: 0 1;
3116                   align: 0.0 0.5;
3117                }
3118             }
3119             description { state: "selected" 0.0;
3120                inherit: "default" 0.0;
3121                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
3122             }
3123             GENLIST_DESCRIPTION_RENAME_ENABLED
3124          }
3125          GENLIST_PART_RENAME
3126          GENLIST_PART_DISCLIP
3127       }
3128       programs {
3129          // signal: elm,state,%s,active
3130          //   a "check" item named %s went active
3131          // signal: elm,state,%s,passive
3132          //   a "check" item named %s went passive
3133          // default is passive
3134          program { name: "go_active";
3135             signal: "elm,state,selected";
3136             source: "elm";
3137             action: STATE_SET "selected" 0.0;
3138             target: "bg_image";
3139             target: "elm.text.1";
3140             target: "elm.text.2";
3141          }
3142          program { name: "go_passive";
3143             signal: "elm,state,unselected";
3144             source: "elm";
3145             action: STATE_SET "default" 0.0;
3146             target: "bg_image";
3147             target: "elm.text.1";
3148             target: "elm.text.2";
3149             transition: LINEAR 0.1;
3150          }
3151          program { name: "go_disabled";
3152             signal: "elm,state,disabled";
3153             source: "elm";
3154             action: STATE_SET "disabled" 0.0;
3155             target: "disclip";
3156          }
3157          program { name: "go_enabled";
3158             signal: "elm,state,enabled";
3159             source: "elm";
3160             action: STATE_SET "default" 0.0;
3161             target: "disclip";
3162          }
3163          GENLIST_PROGRAM_RENAME_2TEXT
3164       }
3165    }
3166
3167    group { name: "elm/genlist/item/2text.3/default";
3168       alias: "elm/genlist/item_odd/2text.3/default";
3169       alias: "elm/genlist/item_compress/2text.3/default";
3170       alias: "elm/genlist/item_compress_odd/2text.3/default";
3171       data.item: "stacking" "above";
3172       data.item: "selectraise" "on";
3173       data.item: "labels" "elm.text.1 elm.text.2";
3174       data.item: "renames" "elm.edit.rename";
3175       images {
3176          image: "00_list_bar_press_1x80.png" COMP;
3177       }
3178       parts {
3179          GENLIST_PART_BASE( 81 )
3180          GENLIST_PART_BG_IMAGE
3181          GENLIST_PART_BOTTOM_LINE
3182          GENLIST_PART_PADDING_TOP( 6 )
3183          GENLIST_PART_PADDING_BOTTOM( 6 )
3184          GENLIST_PART_PADDING_LEFT( 10 )
3185          GENLIST_PART_PADDING_RIGHT( 10 )
3186          part { name: "elm.text.1";
3187             clip_to: "disclip";
3188             type: TEXT;
3189             mouse_events: 0;
3190             scale: 1;
3191             description { state: "default" 0.0;
3192                min: 0 38;
3193                fixed: 0 1;
3194                rel1 {
3195                   relative: 1.0 0.0;
3196                   to_x: "elm.padding.left";
3197                   to_y: "elm.padding.bottom";
3198                }
3199                rel2 {
3200                   relative: 0.0 0.0;
3201                   to_x: "elm.padding.right";
3202                   to_y: "elm.padding.bottom";
3203                }
3204                align: 0.0 1.0;
3205                color: GENLIST_PART_TEXT_COLOR_INC;
3206                text {
3207                   font: "SLP:style=Roman";
3208                   size: 28;
3209                   min: 0 1;
3210                   align: 0.0 0.5;
3211                }
3212             }
3213             description { state: "selected" 0.0;
3214                inherit: "default" 0.0;
3215                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
3216             }
3217             GENLIST_DESCRIPTION_RENAME_ENABLED
3218          }
3219          part { name: "elm.text.2";
3220             clip_to: "disclip";
3221             type: TEXT;
3222             mouse_events: 0;
3223             scale: 1;
3224             description { state: "default" 0.0;
3225                rel1 {
3226                   relative: 1.0 1.0;
3227                   to_x: "elm.padding.left";
3228                   to_y: "elm.padding.top";
3229                }
3230                rel2 {
3231                   relative: 0.0 0.0;
3232                   to_x: "elm.padding.right";
3233                   to_y: "elm.text.1";
3234                }
3235                align: 0.0 1.0;
3236                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
3237                text {
3238                   font: "SLP:style=Medium";
3239                   size: 20;
3240                   min: 0 1;
3241                   align: 0.0 0.5;
3242                }
3243             }
3244             description { state: "selected" 0.0;
3245                inherit: "default" 0.0;
3246                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
3247             }
3248             GENLIST_DESCRIPTION_RENAME_ENABLED
3249          }
3250          GENLIST_PART_RENAME
3251          GENLIST_PART_DISCLIP
3252       }
3253       programs {
3254          // signal: elm,state,%s,active
3255          //   a "check" item named %s went active
3256          // signal: elm,state,%s,passive
3257          //   a "check" item named %s went passive
3258          // default is passive
3259          program { name: "go_active";
3260             signal: "elm,state,selected";
3261             source: "elm";
3262             action: STATE_SET "selected" 0.0;
3263             target: "bg_image";
3264             target: "elm.text.1";
3265             target: "elm.text.2";
3266          }
3267          program { name: "go_passive";
3268             signal: "elm,state,unselected";
3269             source: "elm";
3270             action: STATE_SET "default" 0.0;
3271             target: "bg_image";
3272             target: "elm.text.1";
3273             target: "elm.text.2";
3274             transition: LINEAR 0.1;
3275          }
3276          program { name: "go_disabled";
3277             signal: "elm,state,disabled";
3278             source: "elm";
3279             action: STATE_SET "disabled" 0.0;
3280             target: "disclip";
3281          }
3282          program { name: "go_enabled";
3283             signal: "elm,state,enabled";
3284             source: "elm";
3285             action: STATE_SET "default" 0.0;
3286             target: "disclip";
3287          }
3288          GENLIST_PROGRAM_RENAME_2TEXT
3289       }
3290    }
3291
3292    group { name: "elm/genlist/item/3text/default";
3293       alias: "elm/genlist/item_odd/3text/default";
3294       alias: "elm/genlist/item_compress/3text/default";
3295       alias: "elm/genlist/item_compress_odd/3text/default";
3296       data.item: "stacking" "above";
3297       data.item: "selectraise" "on";
3298       data.item: "labels" "elm.text.1 elm.text.2 elm.text.3";
3299       data.item: "renames" "elm.edit.rename";
3300       images {
3301          image: "00_list_bar_press_1x80.png" COMP;
3302       }
3303       parts {
3304          GENLIST_PART_BASE( 81 )
3305          GENLIST_PART_BG_IMAGE
3306          GENLIST_PART_BOTTOM_LINE
3307          GENLIST_PART_PADDING_TOP( 6 )
3308          GENLIST_PART_PADDING_BOTTOM( 6 )
3309          GENLIST_PART_PADDING_LEFT( 10 )
3310          GENLIST_PART_PADDING_RIGHT( 10 )
3311          part { name: "elm.text.3";
3312             clip_to: "disclip";
3313             type: TEXT;
3314             mouse_events: 0;
3315             scale: 1;
3316             description { state: "default" 0.0;
3317                min: 98 38;
3318                fixed: 1 1;
3319                rel1 {
3320                   relative: 0.0 1.0;
3321                   to_x: "elm.padding.right";
3322                   to_y: "elm.padding.top";
3323                }
3324                rel2 {
3325                   relative: 0.0 1.0;
3326                   to_x: "elm.padding.right";
3327                   to_y: "elm.padding.top";
3328                }
3329                align: 1.0 0.0;
3330                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
3331                text {
3332                   font: "SLP:style=Medium";
3333                   size: 20;
3334                   min: 0 1;
3335                   align: 1.0 0.5;
3336                }
3337             }
3338             description { state: "selected" 0.0;
3339                inherit: "default" 0.0;
3340                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
3341             }
3342             GENLIST_DESCRIPTION_RENAME_ENABLED
3343          }
3344          part { name: "elm.padding.text3.left";
3345             clip_to: "disclip";
3346             type: RECT;
3347             mouse_events: 0;
3348             scale: 1;
3349             description { state: "default" 0.0;
3350                min: 20 0;
3351                fixed: 1 0;
3352                rel1.to_x: "elm.text.3";
3353                rel2 {
3354                   relative: 0.0 1.0;
3355                   to_x: "elm.text.3";
3356                }
3357                align: 1.0 0.5;
3358                visible: 0;
3359             }
3360          }
3361          part { name: "elm.text.1";
3362             clip_to: "disclip";
3363             type: TEXT;
3364             mouse_events: 0;
3365             scale: 1;
3366             description { state: "default" 0.0;
3367                rel1 {
3368                   relative: 1.0 1.0;
3369                   to_x: "elm.padding.left";
3370                   to_y: "elm.padding.top";
3371                }
3372                rel2 {
3373                   relative: 0.0 1.0;
3374                   to_x: "elm.padding.text3.left";
3375                   to_y: "elm.text.3";
3376                }
3377                align: 0.0 0.5;
3378                color: GENLIST_PART_TEXT_COLOR_INC;
3379                text {
3380                   font: "SLP:style=Roman";
3381                   size: 28;
3382                   min: 0 1;
3383                   align: 0.0 0.5;
3384                }
3385             }
3386             description { state: "selected" 0.0;
3387                inherit: "default" 0.0;
3388                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
3389             }
3390             GENLIST_DESCRIPTION_RENAME_ENABLED
3391          }
3392          part { name: "elm.text.2";
3393             clip_to: "disclip";
3394             type: TEXT;
3395             mouse_events: 0;
3396             scale: 1;
3397             description { state: "default" 0.0;
3398                rel1 {
3399                   relative: 1.0 1.0;
3400                   to_x: "elm.padding.left";
3401                   to_y: "elm.text.1";
3402                }
3403                rel2 {
3404                   relative: 0.0 0.0;
3405                   to_x: "elm.padding.right";
3406                   to_y: "elm.padding.bottom";
3407                }
3408                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
3409                text {
3410                   font: "SLP:style=Medium";
3411                   size: 20;
3412                   min: 0 1;
3413                   align: 0.0 0.5;
3414                }
3415             }
3416             description { state: "selected" 0.0;
3417                inherit: "default" 0.0;
3418                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
3419             }
3420             GENLIST_DESCRIPTION_RENAME_ENABLED
3421          }
3422          GENLIST_PART_RENAME
3423          GENLIST_PART_DISCLIP
3424       }
3425       programs {
3426          // signal: elm,state,%s,active
3427          //   a "check" item named %s went active
3428          // signal: elm,state,%s,passive
3429          //   a "check" item named %s went passive
3430          // default is passive
3431          program { name: "go_active";
3432             signal: "elm,state,selected";
3433             source: "elm";
3434             action: STATE_SET "selected" 0.0;
3435             target: "bg_image";
3436             target: "elm.text.1";
3437             target: "elm.text.2";
3438             target: "elm.text.3";
3439          }
3440          program { name: "go_passive";
3441             signal: "elm,state,unselected";
3442             source: "elm";
3443             action: STATE_SET "default" 0.0;
3444             target: "bg_image";
3445             target: "elm.text.1";
3446             target: "elm.text.2";
3447             target: "elm.text.3";
3448             transition: LINEAR 0.1;
3449          }
3450          program { name: "go_disabled";
3451             signal: "elm,state,disabled";
3452             source: "elm";
3453             action: STATE_SET "disabled" 0.0;
3454             target: "disclip";
3455          }
3456          program { name: "go_enabled";
3457             signal: "elm,state,enabled";
3458             source: "elm";
3459             action: STATE_SET "default" 0.0;
3460             target: "disclip";
3461          }
3462          GENLIST_PROGRAM_RENAME_3TEXT
3463       }
3464    }
3465
3466    group { name: "elm/genlist/item/2text.1icon.2/default";
3467       alias: "elm/genlist/item_odd/2text.1icon.2/default";
3468       alias: "elm/genlist/item_compress/2text.1icon.2/default";
3469       alias: "elm/genlist/item_compress_odd/2text.1icon.2/default";
3470       data.item: "stacking" "above";
3471       data.item: "selectraise" "on";
3472       data.item: "labels" "elm.text.1 elm.text.2";
3473       data.item: "icons" "elm.icon";
3474       data.item: "renames" "elm.edit.rename";
3475       images {
3476          image: "00_list_bar_press_1x80.png" COMP;
3477       }
3478       parts {
3479          GENLIST_PART_BASE( 81 )
3480          GENLIST_PART_BG_IMAGE
3481          GENLIST_PART_BOTTOM_LINE
3482          GENLIST_PART_PADDING_TOP( 6 )
3483          GENLIST_PART_PADDING_BOTTOM( 6 )
3484          GENLIST_PART_PADDING_LEFT( 10 )
3485          GENLIST_PART_PADDING_RIGHT( 10 )
3486          part { name: "elm.icon";
3487             clip_to: "disclip";
3488             type: SWALLOW;
3489             scale: 1;
3490             description { state: "default" 0.0;
3491                fixed: 1 1;
3492                rel1 {
3493                   relative: 0.0 1.0;
3494                   to_x: "elm.padding.right";
3495                   to_y: "elm.padding.top";
3496                }
3497                rel2 {
3498                   relative: 0.0 0.0;
3499                   to_x: "elm.padding.right";
3500                   to_y: "elm.padding.bottom";
3501                }
3502                align: 1.0 0.5;
3503             }
3504             GENLIST_DESCRIPTION_RENAME_ENABLED
3505          }
3506          part { name: "elm.padding.icon.left";
3507             clip_to: "disclip";
3508             type: RECT;
3509             scale: 1;
3510             description { state: "default" 0.0;
3511                min: 10 0;
3512                fixed: 1 0;
3513                rel1.to_x: "elm.icon";
3514                rel2 {
3515                   relative: 0.0 1.0;
3516                   to_x: "elm.icon";
3517                }
3518                align: 1.0 0.0;
3519                visible: 0;
3520             }
3521          }
3522          part { name: "elm.text.1";
3523             clip_to: "disclip";
3524             type: TEXT;
3525             mouse_events: 0;
3526             scale: 1;
3527             description { state: "default" 0.0;
3528                min: 0 38;
3529                fixed: 0 1;
3530                rel1 {
3531                   relative: 1.0 1.0;
3532                   to_x: "elm.padding.left";
3533                   to_y: "elm.padding.top";
3534                }
3535                rel2 {
3536                   relative: 0.0 1.0;
3537                   to_x: "elm.padding.icon.left";
3538                   to_y: "elm.padding.top";
3539                }
3540                align: 0.0 0.0;
3541                color: GENLIST_PART_TEXT_COLOR_INC;
3542                text {
3543                   font: "SLP:style=Roman";
3544                   size: 28;
3545                   min: 0 1;
3546                   align: 0.0 0.5;
3547                }
3548             }
3549             description { state: "selected" 0.0;
3550                inherit: "default" 0.0;
3551                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
3552             }
3553             GENLIST_DESCRIPTION_RENAME_ENABLED
3554          }
3555          part { name: "elm.text.2";
3556             clip_to: "disclip";
3557             type: TEXT;
3558             mouse_events: 0;
3559             scale: 1;
3560             description { state: "default" 0.0;
3561                rel1 {
3562                   relative: 1.0 1.0;
3563                   to_x: "elm.padding.left";
3564                   to_y: "elm.text.1";
3565                }
3566                rel2 {
3567                   relative: 0.0 0.0;
3568                   to_x: "elm.padding.icon.left";
3569                   to_y: "elm.padding.bottom";
3570                }
3571                align: 0.0 0.0;
3572                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
3573                text {
3574                   font: "SLP:style=Medium";
3575                   size: 20;
3576                   min: 0 1;
3577                   align: 0.0 0.5;
3578                }
3579             }
3580             description { state: "selected" 0.0;
3581                inherit: "default" 0.0;
3582                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
3583             }
3584             GENLIST_DESCRIPTION_RENAME_ENABLED
3585          }
3586          GENLIST_PART_RENAME
3587          GENLIST_PART_DISCLIP
3588       }
3589       programs {
3590          // signal: elm,state,%s,active
3591          //   a "check" item named %s went active
3592          // signal: elm,state,%s,passive
3593          //   a "check" item named %s went passive
3594          // default is passive
3595          program { name: "go_active";
3596             signal: "elm,state,selected";
3597             source: "elm";
3598             action: STATE_SET "selected" 0.0;
3599             target: "bg_image";
3600             target: "elm.text.1";
3601             target: "elm.text.2";
3602          }
3603          program { name: "go_passive";
3604             signal: "elm,state,unselected";
3605             source: "elm";
3606             action: STATE_SET "default" 0.0;
3607             target: "bg_image";
3608             target: "elm.text.1";
3609             target: "elm.text.2";
3610             transition: LINEAR 0.1;
3611          }
3612          program { name: "go_disabled";
3613             signal: "elm,state,disabled";
3614             source: "elm";
3615             action: STATE_SET "disabled" 0.0;
3616             target: "disclip";
3617          }
3618          program { name: "go_enabled";
3619             signal: "elm,state,enabled";
3620             source: "elm";
3621             action: STATE_SET "default" 0.0;
3622             target: "disclip";
3623          }
3624          GENLIST_PROGRAM_RENAME_2TEXT_1ICON
3625       }
3626    }
3627
3628    group { name: "elm/genlist/item/2text.1icon.10/default";
3629       alias: "elm/genlist/item_odd/2text.1icon.10/default";
3630       alias: "elm/genlist/item_compress/2text.1icon.10/default";
3631       alias: "elm/genlist/item_compress_odd/2text.1icon.10/default";
3632       data.item: "stacking" "above";
3633       data.item: "selectraise" "on";
3634       data.item: "labels" "elm.text.1 elm.text.2";
3635       data.item: "icons" "elm.icon";
3636       data.item: "renames" "elm.edit.rename";
3637       images {
3638          image: "00_list_bar_press_1x80.png" COMP;
3639       }
3640       parts {
3641          GENLIST_PART_BASE( 81 )
3642          GENLIST_PART_BG_IMAGE
3643          GENLIST_PART_BOTTOM_LINE
3644          GENLIST_PART_PADDING_TOP( 6 )
3645          GENLIST_PART_PADDING_BOTTOM( 6 )
3646          GENLIST_PART_PADDING_LEFT( 10 )
3647          GENLIST_PART_PADDING_RIGHT( 10 )
3648          part { name: "elm.icon";
3649             clip_to: "disclip";
3650             type: SWALLOW;
3651             scale: 1;
3652             description { state: "default" 0.0;
3653                min: 40 40;
3654                max: 40 40;
3655                fixed: 1 1;
3656                rel1 {
3657                   relative: 0.0 1.0;
3658                   to_x: "elm.padding.right";
3659                   to_y: "elm.padding.top";
3660                }
3661                rel2 {
3662                   relative: 0.0 0.0;
3663                   to_x: "elm.padding.right";
3664                   to_y: "elm.padding.bottom";
3665                }
3666                align: 1.0 0.5;
3667             }
3668             GENLIST_DESCRIPTION_RENAME_ENABLED
3669          }
3670          part { name: "elm.padding.icon.left";
3671             clip_to: "disclip";
3672             type: RECT;
3673             scale: 1;
3674             description { state: "default" 0.0;
3675                min: 10 0;
3676                fixed: 1 0;
3677                rel1.to_x: "elm.icon";
3678                rel2 {
3679                   relative: 0.0 1.0;
3680                   to_x: "elm.icon";
3681                }
3682                align: 1.0 0.0;
3683                visible: 0;
3684             }
3685          }
3686          part { name: "elm.text.1";
3687             clip_to: "disclip";
3688             type: TEXT;
3689             mouse_events: 0;
3690             scale: 1;
3691             description { state: "default" 0.0;
3692                min: 0 38;
3693                fixed: 0 1;
3694                rel1 {
3695                   relative: 1.0 1.0;
3696                   to_x: "elm.padding.left";
3697                   to_y: "elm.padding.top";
3698                }
3699                rel2 {
3700                   relative: 0.0 1.0;
3701                   to_x: "elm.padding.icon.left";
3702                   to_y: "elm.padding.top";
3703                }
3704                align: 0.0 0.0;
3705                color: GENLIST_PART_TEXT_COLOR_INC;
3706                text {
3707                   font: "SLP:style=Roman";
3708                   size: 28;
3709                   min: 0 1;
3710                   align: 0.0 0.5;
3711                }
3712             }
3713             description { state: "selected" 0.0;
3714                inherit: "default" 0.0;
3715                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
3716             }
3717             GENLIST_DESCRIPTION_RENAME_ENABLED
3718          }
3719          part { name: "elm.text.2";
3720             clip_to: "disclip";
3721             type: TEXT;
3722             mouse_events: 0;
3723             scale: 1;
3724             description { state: "default" 0.0;
3725                rel1 {
3726                   relative: 1.0 1.0;
3727                   to_x: "elm.padding.left";
3728                   to_y: "elm.text.1";
3729                }
3730                rel2 {
3731                   relative: 0.0 0.0;
3732                   to_x: "elm.padding.icon.left";
3733                   to_y: "elm.padding.bottom";
3734                }
3735                align: 0.0 0.0;
3736                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
3737                text {
3738                   font: "SLP:style=Medium";
3739                   size: 20;
3740                   min: 0 1;
3741                   align: 0.0 0.5;
3742                }
3743             }
3744             description { state: "selected" 0.0;
3745                inherit: "default" 0.0;
3746                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
3747             }
3748             GENLIST_DESCRIPTION_RENAME_ENABLED
3749          }
3750          GENLIST_PART_RENAME
3751          GENLIST_PART_DISCLIP
3752       }
3753       programs {
3754          // signal: elm,state,%s,active
3755          //   a "check" item named %s went active
3756          // signal: elm,state,%s,passive
3757          //   a "check" item named %s went passive
3758          // default is passive
3759          program { name: "go_active";
3760             signal: "elm,state,selected";
3761             source: "elm";
3762             action: STATE_SET "selected" 0.0;
3763             target: "bg_image";
3764             target: "elm.text.1";
3765             target: "elm.text.2";
3766          }
3767          program { name: "go_passive";
3768             signal: "elm,state,unselected";
3769             source: "elm";
3770             action: STATE_SET "default" 0.0;
3771             target: "bg_image";
3772             target: "elm.text.1";
3773             target: "elm.text.2";
3774             transition: LINEAR 0.1;
3775          }
3776          program { name: "go_disabled";
3777             signal: "elm,state,disabled";
3778             source: "elm";
3779             action: STATE_SET "disabled" 0.0;
3780             target: "disclip";
3781          }
3782          program { name: "go_enabled";
3783             signal: "elm,state,enabled";
3784             source: "elm";
3785             action: STATE_SET "default" 0.0;
3786             target: "disclip";
3787          }
3788          GENLIST_PROGRAM_RENAME_2TEXT_1ICON
3789       }
3790    }
3791
3792    group { name: "elm/genlist/item/2text.1icon.3/default";
3793       alias: "elm/genlist/item_odd/2text.1icon.3/default";
3794       alias: "elm/genlist/item_compress/2text.1icon.3/default";
3795       alias: "elm/genlist/item_compress_odd/2text.1icon.3/default";
3796       data.item: "stacking" "above";
3797       data.item: "selectraise" "on";
3798       data.item: "labels" "elm.text.1 elm.text.2";
3799       data.item: "icons" "elm.icon";
3800       data.item: "renames" "elm.edit.rename";
3801       images {
3802          image: "00_list_bar_press_1x80.png" COMP;
3803       }
3804       parts {
3805          GENLIST_PART_BASE( 81 )
3806          GENLIST_PART_BG_IMAGE
3807          GENLIST_PART_BOTTOM_LINE
3808          GENLIST_PART_PADDING_TOP( 6 )
3809          GENLIST_PART_PADDING_BOTTOM( 6 )
3810          GENLIST_PART_PADDING_LEFT( 10 )
3811          GENLIST_PART_PADDING_RIGHT( 10 )
3812          part { name: "elm.text.1";
3813             clip_to: "disclip";
3814             type: TEXT;
3815             mouse_events: 0;
3816             scale: 1;
3817             description { state: "default" 0.0;
3818                min: 0 38;
3819                fixed: 0 1;
3820                rel1 {
3821                   relative: 1.0 1.0;
3822                   to_x: "elm.padding.left";
3823                   to_y: "elm.padding.top";
3824                }
3825                rel2 {
3826                   relative: 0.0 1.0;
3827                   to_x: "elm.padding.icon.left";
3828                   to_y: "elm.padding.top";
3829                }
3830                align: 0.0 0.0;
3831                color: GENLIST_PART_TEXT_COLOR_INC;
3832                text {
3833                   font: "SLP:style=Roman";
3834                   size: 28;
3835                   min: 0 1;
3836                   align: 0.0 0.5;
3837                }
3838             }
3839             description { state: "selected" 0.0;
3840                inherit: "default" 0.0;
3841                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
3842             }
3843             GENLIST_DESCRIPTION_RENAME_ENABLED
3844          }
3845          part { name: "elm.icon";
3846             clip_to: "disclip";
3847             type: SWALLOW;
3848             scale: 1;
3849             description { state: "default" 0.0;
3850                fixed: 1 1;
3851                rel1 {
3852                   relative: 0.0 1.0;
3853                   to_x: "elm.padding.right";
3854                   to_y: "elm.padding.top";
3855                }
3856                rel2 {
3857                   relative: 0.0 1.0;
3858                   to_x: "elm.padding.right";
3859                   to_y: "elm.text.1";
3860                }
3861                align: 1.0 0.5;
3862             }
3863             GENLIST_DESCRIPTION_RENAME_ENABLED
3864          }
3865          part { name: "elm.padding.icon.left";
3866             clip_to: "disclip";
3867             type: RECT;
3868             scale: 1;
3869             description { state: "default" 0.0;
3870                min: 10 0;
3871                fixed: 1 0;
3872                rel1.to_x: "elm.icon";
3873                rel2 {
3874                   relative: 0.0 1.0;
3875                   to_x: "elm.icon";
3876                }
3877                align: 1.0 0.0;
3878                visible: 0;
3879             }
3880          }
3881          part { name: "elm.text.2";
3882             clip_to: "disclip";
3883             type: TEXT;
3884             mouse_events: 0;
3885             scale: 1;
3886             description { state: "default" 0.0;
3887                rel1 {
3888                   relative: 1.0 1.0;
3889                   to_x: "elm.padding.left";
3890                   to_y: "elm.text.1";
3891                }
3892                rel2 {
3893                   relative: 0.0 0.0;
3894                   to_x: "elm.padding.icon.left";
3895                   to_y: "elm.padding.bottom";
3896                }
3897                align: 0.0 0.0;
3898                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
3899                text {
3900                   font: "SLP:style=Medium";
3901                   size: 20;
3902                   min: 0 1;
3903                   align: 0.0 0.5;
3904                }
3905             }
3906             description { state: "selected" 0.0;
3907                inherit: "default" 0.0;
3908                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
3909             }
3910             GENLIST_DESCRIPTION_RENAME_ENABLED
3911          }
3912          GENLIST_PART_RENAME
3913          GENLIST_PART_DISCLIP
3914       }
3915       programs {
3916          // signal: elm,state,%s,active
3917          //   a "check" item named %s went active
3918          // signal: elm,state,%s,passive
3919          //   a "check" item named %s went passive
3920          // default is passive
3921          program { name: "go_active";
3922             signal: "elm,state,selected";
3923             source: "elm";
3924             action: STATE_SET "selected" 0.0;
3925             target: "bg_image";
3926             target: "elm.text.1";
3927             target: "elm.text.2";
3928          }
3929          program { name: "go_passive";
3930             signal: "elm,state,unselected";
3931             source: "elm";
3932             action: STATE_SET "default" 0.0;
3933             target: "bg_image";
3934             target: "elm.text.1";
3935             target: "elm.text.2";
3936             transition: LINEAR 0.1;
3937          }
3938          program { name: "go_disabled";
3939             signal: "elm,state,disabled";
3940             source: "elm";
3941             action: STATE_SET "disabled" 0.0;
3942             target: "disclip";
3943          }
3944          program { name: "go_enabled";
3945             signal: "elm,state,enabled";
3946             source: "elm";
3947             action: STATE_SET "default" 0.0;
3948             target: "disclip";
3949          }
3950          GENLIST_PROGRAM_RENAME_2TEXT_1ICON
3951       }
3952    }
3953
3954    group { name: "elm/genlist/item/3text.1icon/default";
3955       alias: "elm/genlist/item_odd/3text.1icon/default";
3956       alias: "elm/genlist/item_compress/3text.1icon/default";
3957       alias: "elm/genlist/item_compress_odd/3text.1icon/default";
3958       data.item: "stacking" "above";
3959       data.item: "selectraise" "on";
3960       data.item: "labels" "elm.text.1 elm.text.2 elm.text.3";
3961       data.item: "icons" "elm.icon";
3962       data.item: "renames" "elm.edit.rename";
3963       images {
3964          image: "00_list_bar_press_1x80.png" COMP;
3965       }
3966       parts {
3967          GENLIST_PART_BASE( 81 )
3968          GENLIST_PART_BG_IMAGE
3969          GENLIST_PART_BOTTOM_LINE
3970          GENLIST_PART_PADDING_TOP( 6 )
3971          GENLIST_PART_PADDING_BOTTOM( 6 )
3972          GENLIST_PART_PADDING_LEFT( 10 )
3973          GENLIST_PART_PADDING_RIGHT( 10 )
3974          part { name: "elm.text.3";
3975             clip_to: "disclip";
3976             type: TEXT;
3977             mouse_events: 0;
3978             scale: 1;
3979             description { state: "default" 0.0;
3980                min: 98 30;
3981                fixed: 1 1;
3982                rel1 {
3983                   relative: 0.0 0.0;
3984                   to_x: "elm.padding.right";
3985                   to_y: "elm.padding.bottom";
3986                }
3987                rel2 {
3988                   relative: 0.0 0.0;
3989                   to_x: "elm.padding.right";
3990                   to_y: "elm.padding.bottom";
3991                }
3992                align: 1.0 1.0;
3993                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
3994                text {
3995                   font: "SLP:style=Medium";
3996                   size: 20;
3997                   min: 0 1;
3998                   align: 1.0 0.5;
3999                }
4000             }
4001             description { state: "selected" 0.0;
4002                inherit: "default" 0.0;
4003                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
4004             }
4005             GENLIST_DESCRIPTION_RENAME_ENABLED
4006          }
4007          part { name: "elm.padding.text3.left";
4008             clip_to: "disclip";
4009             type: RECT;
4010             mouse_events: 0;
4011             scale: 1;
4012             description { state: "default" 0.0;
4013                min: 20 0;
4014                fixed: 1 0;
4015                rel1.to_x: "elm.text.3";
4016                rel2 {
4017                   relative: 0.0 1.0;
4018                   to_x: "elm.text.3";
4019                }
4020                align: 1.0 0.5;
4021                visible: 0;
4022             }
4023          }
4024          part { name: "elm.icon";
4025             clip_to: "disclip";
4026             type: SWALLOW;
4027             scale: 1;
4028             description { state: "default" 0.0;
4029                min: 20 20;
4030                max: 20 20;
4031                fixed: 1 1;
4032                rel1 {
4033                   relative: 0.0 1.0;
4034                   to_x: "elm.padding.right";
4035                   to_y: "elm.padding.top";
4036                }
4037                rel2 {
4038                   relative: 0.0 0.0;
4039                   to_x: "elm.padding.right";
4040                   to_y: "elm.text.3";
4041                }
4042                align: 1.0 0.5;
4043             }
4044             GENLIST_DESCRIPTION_RENAME_ENABLED
4045          }
4046          part { name: "elm.padding.icon.left";
4047             clip_to: "disclip";
4048             type: RECT;
4049             scale: 1;
4050             description { state: "default" 0.0;
4051                min: 10 0;
4052                fixed: 1 0;
4053                rel1.to_x: "elm.icon";
4054                rel2 {
4055                   relative: 0.0 1.0;
4056                   to_x: "elm.icon";
4057                }
4058                align: 1.0 0.0;
4059                visible: 0;
4060             }
4061          }
4062          part { name: "elm.text.1";
4063             clip_to: "disclip";
4064             type: TEXT;
4065             mouse_events: 0;
4066             scale: 1;
4067             description { state: "default" 0.0;
4068                rel1 {
4069                   relative: 1.0 1.0;
4070                   to_x: "elm.padding.left";
4071                   to_y: "elm.padding.top";
4072                }
4073                rel2 {
4074                   relative: 0.0 0.0;
4075                   to_x: "elm.padding.icon.left";
4076                   to_y: "elm.text.3";
4077                }
4078                align: 0.0 0.5;
4079                color: GENLIST_PART_TEXT_COLOR_INC;
4080                text {
4081                   font: "SLP:style=Roman";
4082                   size: 28;
4083                   min: 0 1;
4084                   align: 0.0 0.5;
4085                }
4086             }
4087             description { state: "selected" 0.0;
4088                inherit: "default" 0.0;
4089                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
4090             }
4091             GENLIST_DESCRIPTION_RENAME_ENABLED
4092          }
4093          part { name: "elm.text.2";
4094             clip_to: "disclip";
4095             type: TEXT;
4096             mouse_events: 0;
4097             scale: 1;
4098             description { state: "default" 0.0;
4099                rel1 {
4100                   relative: 1.0 1.0;
4101                   to_x: "elm.padding.left";
4102                   to_y: "elm.text.1";
4103                }
4104                rel2 {
4105                   relative: 0.0 0.0;
4106                   to_x: "elm.padding.text3.left";
4107                   to_y: "elm.padding.bottom";
4108                }
4109                align: 0.0 0.5;
4110                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
4111                text {
4112                   font: "SLP:style=Medium";
4113                   size: 20;
4114                   min: 0 1;
4115                   align: 0.0 0.5;
4116                }
4117             }
4118             description { state: "selected" 0.0;
4119                inherit: "default" 0.0;
4120                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
4121             }
4122             GENLIST_DESCRIPTION_RENAME_ENABLED
4123          }
4124          GENLIST_PART_RENAME
4125          GENLIST_PART_DISCLIP
4126       }
4127       programs {
4128          // signal: elm,state,%s,active
4129          //   a "check" item named %s went active
4130          // signal: elm,state,%s,passive
4131          //   a "check" item named %s went passive
4132          // default is passive
4133          program { name: "go_active";
4134             signal: "elm,state,selected";
4135             source: "elm";
4136             action: STATE_SET "selected" 0.0;
4137             target: "bg_image";
4138             target: "elm.text.1";
4139             target: "elm.text.2";
4140             target: "elm.text.3";
4141          }
4142          program { name: "go_passive";
4143             signal: "elm,state,unselected";
4144             source: "elm";
4145             action: STATE_SET "default" 0.0;
4146             target: "bg_image";
4147             target: "elm.text.1";
4148             target: "elm.text.2";
4149             target: "elm.text.3";
4150             transition: LINEAR 0.1;
4151          }
4152          program { name: "go_disabled";
4153             signal: "elm,state,disabled";
4154             source: "elm";
4155             action: STATE_SET "disabled" 0.0;
4156             target: "disclip";
4157          }
4158          program { name: "go_enabled";
4159             signal: "elm,state,enabled";
4160             source: "elm";
4161             action: STATE_SET "default" 0.0;
4162             target: "disclip";
4163          }
4164          GENLIST_PROGRAM_RENAME_3TEXT_1ICON
4165       }
4166    }
4167
4168    group { name: "elm/genlist/item/2text.2icon/default";
4169       alias: "elm/genlist/item_odd/2text.2icon/default";
4170       alias: "elm/genlist/item_compress/2text.2icon/default";
4171       alias: "elm/genlist/item_compress_odd/2text.2icon/default";
4172       data.item: "stacking" "above";
4173       data.item: "selectraise" "on";
4174       data.item: "labels" "elm.text.1 elm.text.2";
4175       data.item: "icons" "elm.icon.1 elm.icon.2";
4176       data.item: "renames" "elm.edit.rename";
4177       images {
4178          image: "00_list_bar_press_1x80.png" COMP;
4179       }
4180       parts {
4181          GENLIST_PART_BASE( 81 )
4182          GENLIST_PART_BG_IMAGE
4183          GENLIST_PART_BOTTOM_LINE
4184          GENLIST_PART_PADDING_TOP( 6 )
4185          GENLIST_PART_PADDING_BOTTOM( 6 )
4186          GENLIST_PART_PADDING_LEFT( 10 )
4187          GENLIST_PART_PADDING_RIGHT( 10 )
4188          part { name: "elm.icon.1";
4189             clip_to: "disclip";
4190             type: SWALLOW;
4191             scale: 1;
4192             description { state: "default" 0.0;
4193                min: 20 20;
4194                max: 20 20;
4195                fixed: 1 1;
4196                rel1 {
4197                   relative: 1.0 1.0;
4198                   to_x: "elm.padding.left";
4199                   to_y: "elm.text.1";
4200                }
4201                rel2 {
4202                   relative: 1.0 0.0;
4203                   to_x: "elm.padding.left";
4204                   to_y: "elm.padding.bottom";
4205                }
4206                align: 0.0 0.5;
4207             }
4208             GENLIST_DESCRIPTION_RENAME_ENABLED
4209          }
4210          part { name: "elm.padding.icon1.right";
4211             clip_to: "disclip";
4212             type: RECT;
4213             scale: 1;
4214             description { state: "default" 0.0;
4215                min: 10 0;
4216                fixed: 1 0;
4217                rel1 {
4218                   relative: 1.0 0.0;
4219                   to_x: "elm.icon.1";
4220                }
4221                rel2.to_x: "elm.icon.1";
4222                align: 0.0 0.0;
4223                visible: 0;
4224             }
4225          }
4226          part { name: "elm.icon.2";
4227             clip_to: "disclip";
4228             type: SWALLOW;
4229             scale: 1;
4230             description { state: "default" 0.0;
4231                min: 20 20;
4232                max: 20 20;
4233                fixed: 1 1;
4234                rel1 {
4235                   relative: 0.0 1.0;
4236                   to_x: "elm.padding.right";
4237                   to_y: "elm.padding.top";
4238                }
4239                rel2 {
4240                   relative: 0.0 1.0;
4241                   to_x: "elm.padding.right";
4242                   to_y: "elm.text.1";
4243                }
4244                align: 1.0 0.5;
4245             }
4246             GENLIST_DESCRIPTION_RENAME_ENABLED
4247          }
4248          part { name: "elm.padding.icon2.left";
4249             clip_to: "disclip";
4250             type: RECT;
4251             scale: 1;
4252             description { state: "default" 0.0;
4253                min: 10 0;
4254                fixed: 1 0;
4255                rel1 {
4256                   relative: 0.0 0.0;
4257                   to_x: "elm.icon.2";
4258                }
4259                rel2.to_x: "elm.icon.2";
4260                align: 1.0 0.0;
4261                visible: 0;
4262             }
4263          }
4264          part { name: "elm.text.1";
4265             clip_to: "disclip";
4266             type: TEXT;
4267             mouse_events: 0;
4268             scale: 1;
4269             description { state: "default" 0.0;
4270                min: 0 38;
4271                fixed: 0 1;
4272                rel1 {
4273                   relative: 1.0 1.0;
4274                   to_x: "elm.padding.left";
4275                   to_y: "elm.padding.top";
4276                }
4277                rel2 {
4278                   relative: 0.0 1.0;
4279                   to_x: "elm.padding.icon2.left";
4280                   to_y: "elm.padding.top";
4281                }
4282                align: 0.0 0.0;
4283                color: GENLIST_PART_TEXT_COLOR_INC;
4284                text {
4285                   font: "SLP:style=Roman";
4286                   size: 28;
4287                   min: 0 1;
4288                   align: 0.0 0.5;
4289                }
4290             }
4291             description { state: "selected" 0.0;
4292                inherit: "default" 0.0;
4293                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
4294             }
4295             GENLIST_DESCRIPTION_RENAME_ENABLED
4296          }
4297          part { name: "elm.text.2";
4298             clip_to: "disclip";
4299             type: TEXT;
4300             mouse_events: 0;
4301             scale: 1;
4302             description { state: "default" 0.0;
4303                rel1 {
4304                   relative: 1.0 1.0;
4305                   to_x: "elm.padding.icon1.right";
4306                   to_y: "elm.text.1";
4307                }
4308                rel2 {
4309                   relative: 0.0 0.0;
4310                   to_x: "elm.padding.right";
4311                   to_y: "elm.padding.bottom";
4312                }
4313                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
4314                text {
4315                   font: "SLP:style=Medium";
4316                   size: 20;
4317                   min: 0 1;
4318                   align: 0.0 0.5;
4319                }
4320             }
4321             description { state: "selected" 0.0;
4322                inherit: "default" 0.0;
4323                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
4324             }
4325             GENLIST_DESCRIPTION_RENAME_ENABLED
4326          }
4327          GENLIST_PART_RENAME
4328          GENLIST_PART_DISCLIP
4329       }
4330       programs {
4331          // signal: elm,state,%s,active
4332          //   a "check" item named %s went active
4333          // signal: elm,state,%s,passive
4334          //   a "check" item named %s went passive
4335          // default is passive
4336          program { name: "go_active";
4337             signal: "elm,state,selected";
4338             source: "elm";
4339             action: STATE_SET "selected" 0.0;
4340             target: "bg_image";
4341             target: "elm.text.1";
4342             target: "elm.text.2";
4343          }
4344          program { name: "go_passive";
4345             signal: "elm,state,unselected";
4346             source: "elm";
4347             action: STATE_SET "default" 0.0;
4348             target: "bg_image";
4349             target: "elm.text.1";
4350             target: "elm.text.2";
4351             transition: LINEAR 0.1;
4352          }
4353          program { name: "go_disabled";
4354             signal: "elm,state,disabled";
4355             source: "elm";
4356             action: STATE_SET "disabled" 0.0;
4357             target: "disclip";
4358          }
4359          program { name: "go_enabled";
4360             signal: "elm,state,enabled";
4361             source: "elm";
4362             action: STATE_SET "default" 0.0;
4363             target: "disclip";
4364          }
4365          GENLIST_PROGRAM_RENAME_2TEXT_2ICON
4366       }
4367    }
4368
4369    group { name: "elm/genlist/item/2text.7/default";
4370       alias: "elm/genlist/item_odd/2text.7/default";
4371       alias: "elm/genlist/item_compress/2text.7/default";
4372       alias: "elm/genlist/item_compress_odd/2text.7/default";
4373       data.item: "stacking" "above";
4374       data.item: "selectraise" "on";
4375       data.item: "labels" "elm.text.1 elm.text.2";
4376       data.item: "renames" "elm.edit.rename";
4377       images {
4378          image: "00_list_bar_press_1x80.png" COMP;
4379       }
4380       parts {
4381          GENLIST_PART_BASE( 81 )
4382          GENLIST_PART_BG_IMAGE
4383          GENLIST_PART_BOTTOM_LINE
4384          GENLIST_PART_PADDING_TOP( 6 )
4385          GENLIST_PART_PADDING_BOTTOM( 6 )
4386          GENLIST_PART_PADDING_LEFT( 10 )
4387          GENLIST_PART_PADDING_RIGHT( 10 )
4388          part { name: "elm.text.1";
4389             clip_to: "disclip";
4390             type: TEXT;
4391             mouse_events: 0;
4392             scale: 1;
4393             description { state: "default" 0.0;
4394                min: 0 38;
4395                fixed: 0 1;
4396                rel1 {
4397                   relative: 1.0 1.0;
4398                   to_x: "elm.padding.left";
4399                   to_y: "elm.padding.top";
4400                }
4401                rel2 {
4402                   relative: 0.0 1.0;
4403                   to_x: "elm.padding.right";
4404                   to_y: "elm.padding.top";
4405                }
4406                align: 0.0 0.0;
4407                color: GENLIST_PART_TEXT_COLOR_INC;
4408                text {
4409                   font: "SLP:style=Roman";
4410                   size: 28;
4411                   min: 0 1;
4412                   align: 0.0 0.5;
4413                }
4414             }
4415             description { state: "selected" 0.0;
4416                inherit: "default" 0.0;
4417                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
4418             }
4419             GENLIST_DESCRIPTION_RENAME_ENABLED
4420          }
4421          part { name: "elm.text.2";
4422             clip_to: "disclip";
4423             type: TEXT;
4424             mouse_events: 0;
4425             scale: 1;
4426             description { state: "default" 0.0;
4427                rel1 {
4428                   relative: 1.0 1.0;
4429                   to_x: "elm.padding.left";
4430                   to_y: "elm.text.1";
4431                }
4432                rel2 {
4433                   relative: 0.0 0.0;
4434                   to_x: "elm.padding.right";
4435                   to_y: "elm.padding.bottom";
4436                }
4437                align: 0.0 0.0;
4438                color: GENLIST_PART_SUB_TEXT_SETTINGS_COLOR_INC;
4439                text {
4440                   font: "SLP:style=Medium";
4441                   size: 20;
4442                   min: 0 1;
4443                   align: 0.0 0.5;
4444                }
4445             }
4446             description { state: "selected" 0.0;
4447                inherit: "default" 0.0;
4448                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
4449             }
4450             GENLIST_DESCRIPTION_RENAME_ENABLED
4451          }
4452          GENLIST_PART_RENAME
4453          GENLIST_PART_DISCLIP
4454       }
4455       programs {
4456          // signal: elm,state,%s,active
4457          //   a "check" item named %s went active
4458          // signal: elm,state,%s,passive
4459          //   a "check" item named %s went passive
4460          // default is passive
4461          program { name: "go_active";
4462             signal: "elm,state,selected";
4463             source: "elm";
4464             action: STATE_SET "selected" 0.0;
4465             target: "bg_image";
4466             target: "elm.text.1";
4467             target: "elm.text.2";
4468          }
4469          program { name: "go_passive";
4470             signal: "elm,state,unselected";
4471             source: "elm";
4472             action: STATE_SET "default" 0.0;
4473             target: "bg_image";
4474             target: "elm.text.1";
4475             target: "elm.text.2";
4476             transition: LINEAR 0.1;
4477          }
4478          program { name: "go_disabled";
4479             signal: "elm,state,disabled";
4480             source: "elm";
4481             action: STATE_SET "disabled" 0.0;
4482             target: "disclip";
4483          }
4484          program { name: "go_enabled";
4485             signal: "elm,state,enabled";
4486             source: "elm";
4487             action: STATE_SET "default" 0.0;
4488             target: "disclip";
4489          }
4490          GENLIST_PROGRAM_RENAME_2TEXT
4491       }
4492    }
4493
4494    group { name: "elm/genlist/item/2text.1icon.7/default";
4495       alias: "elm/genlist/item_odd/2text.1icon.7/default";
4496       alias: "elm/genlist/item_compress/2text.1icon.7/default";
4497       alias: "elm/genlist/item_compress_odd/2text.1icon.7/default";
4498       data.item: "stacking" "above";
4499       data.item: "selectraise" "on";
4500       data.item: "labels" "elm.text.1 elm.text.2";
4501       data.item: "icons" "elm.icon";
4502       data.item: "renames" "elm.edit.rename";
4503       images {
4504          image: "00_list_bar_press_1x80.png" COMP;
4505       }
4506       parts {
4507          GENLIST_PART_BASE( 81 )
4508          GENLIST_PART_BG_IMAGE
4509          GENLIST_PART_BOTTOM_LINE
4510          GENLIST_PART_PADDING_TOP( 6 )
4511          GENLIST_PART_PADDING_BOTTOM( 6 )
4512          GENLIST_PART_PADDING_LEFT( 10 )
4513          GENLIST_PART_PADDING_RIGHT( 10 )
4514          part { name: "elm.icon";
4515             clip_to: "disclip";
4516             type: SWALLOW;
4517             scale: 1;
4518             description { state: "default" 0.0;
4519                fixed: 1 1;
4520                rel1 {
4521                   relative: 0.0 1.0;
4522                   to_x: "elm.padding.right";
4523                   to_y: "elm.padding.top";
4524                }
4525                rel2 {
4526                   relative: 0.0 0.0;
4527                   to_x: "elm.padding.right";
4528                   to_y: "elm.padding.bottom";
4529                }
4530                align: 1.0 0.5;
4531             }
4532             GENLIST_DESCRIPTION_RENAME_ENABLED
4533          }
4534          part { name: "elm.padding.icon.left";
4535             clip_to: "disclip";
4536             type: RECT;
4537             scale: 1;
4538             description { state: "default" 0.0;
4539                min: 10 0;
4540                fixed: 1 0;
4541                rel1.to_x: "elm.icon";
4542                rel2 {
4543                   relative: 0.0 1.0;
4544                   to_x: "elm.icon";
4545                }
4546                align: 1.0 0.0;
4547                visible: 0;
4548             }
4549          }
4550          part { name: "elm.text.1";
4551             clip_to: "disclip";
4552             type: TEXT;
4553             mouse_events: 0;
4554             scale: 1;
4555             description { state: "default" 0.0;
4556                min: 0 38;
4557                fixed: 0 1;
4558                rel1 {
4559                   relative: 1.0 1.0;
4560                   to_x: "elm.padding.left";
4561                   to_y: "elm.padding.top";
4562                }
4563                rel2 {
4564                   relative: 0.0 1.0;
4565                   to_x: "elm.padding.icon.left";
4566                   to_y: "elm.padding.top";
4567                }
4568                align: 0.0 0.0;
4569                color: GENLIST_PART_TEXT_COLOR_INC;
4570                text {
4571                   font: "SLP:style=Roman";
4572                   size: 28;
4573                   min: 0 1;
4574                   align: 0.0 0.5;
4575                }
4576             }
4577             description { state: "selected" 0.0;
4578                inherit: "default" 0.0;
4579                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
4580             }
4581             GENLIST_DESCRIPTION_RENAME_ENABLED
4582          }
4583          part { name: "elm.text.2";
4584             clip_to: "disclip";
4585             type: TEXT;
4586             mouse_events: 0;
4587             scale: 1;
4588             description { state: "default" 0.0;
4589                rel1 {
4590                   relative: 1.0 1.0;
4591                   to_x: "elm.padding.left";
4592                   to_y: "elm.text.1";
4593                }
4594                rel2 {
4595                   relative: 0.0 0.0;
4596                   to_x: "elm.padding.icon.left";
4597                   to_y: "elm.padding.bottom";
4598                }
4599                align: 0.0 0.0;
4600                color: GENLIST_PART_SUB_TEXT_SETTINGS_COLOR_INC;
4601                text {
4602                   font: "SLP:style=Medium";
4603                   size: 20;
4604                   min: 0 1;
4605                   align: 0.0 0.5;
4606                }
4607             }
4608             description { state: "selected" 0.0;
4609                inherit: "default" 0.0;
4610                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
4611             }
4612             GENLIST_DESCRIPTION_RENAME_ENABLED
4613          }
4614          GENLIST_PART_RENAME
4615          GENLIST_PART_DISCLIP
4616       }
4617       programs {
4618          // signal: elm,state,%s,active
4619          //   a "check" item named %s went active
4620          // signal: elm,state,%s,passive
4621          //   a "check" item named %s went passive
4622          // default is passive
4623          program { name: "go_active";
4624             signal: "elm,state,selected";
4625             source: "elm";
4626             action: STATE_SET "selected" 0.0;
4627             target: "bg_image";
4628             target: "elm.text.1";
4629             target: "elm.text.2";
4630          }
4631          program { name: "go_passive";
4632             signal: "elm,state,unselected";
4633             source: "elm";
4634             action: STATE_SET "default" 0.0;
4635             target: "bg_image";
4636             target: "elm.text.1";
4637             target: "elm.text.2";
4638             transition: LINEAR 0.1;
4639          }
4640          program { name: "go_disabled";
4641             signal: "elm,state,disabled";
4642             source: "elm";
4643             action: STATE_SET "disabled" 0.0;
4644             target: "disclip";
4645          }
4646          program { name: "go_enabled";
4647             signal: "elm,state,enabled";
4648             source: "elm";
4649             action: STATE_SET "default" 0.0;
4650             target: "disclip";
4651          }
4652          GENLIST_PROGRAM_RENAME_2TEXT_1ICON
4653       }
4654    }
4655
4656    group { name: "elm/genlist/item/2text.1icon.11/default";
4657       alias: "elm/genlist/item_odd/2text.1icon.11/default";
4658       alias: "elm/genlist/item_compress/2text.1icon.11/default";
4659       alias: "elm/genlist/item_compress_odd/2text.1icon.11/default";
4660       data.item: "stacking" "above";
4661       data.item: "selectraise" "on";
4662       data.item: "labels" "elm.text.1 elm.text.2";
4663       data.item: "icons" "elm.icon";
4664       data.item: "renames" "elm.edit.rename";
4665       images {
4666          image: "00_list_bar_press_1x80.png" COMP;
4667       }
4668       parts {
4669          GENLIST_PART_BASE( 81 )
4670          GENLIST_PART_BG_IMAGE
4671          GENLIST_PART_BOTTOM_LINE
4672          GENLIST_PART_PADDING_TOP( 6 )
4673          GENLIST_PART_PADDING_BOTTOM( 6 )
4674          GENLIST_PART_PADDING_LEFT( 10 )
4675          GENLIST_PART_PADDING_RIGHT( 10 )
4676          part { name: "elm.icon";
4677             clip_to: "disclip";
4678             type: SWALLOW;
4679             scale: 1;
4680             description { state: "default" 0.0;
4681                min: 40 40;
4682                max: 40 40;
4683                fixed: 1 1;
4684                rel1 {
4685                   relative: 0.0 1.0;
4686                   to_x: "elm.padding.right";
4687                   to_y: "elm.padding.top";
4688                }
4689                rel2 {
4690                   relative: 0.0 0.0;
4691                   to_x: "elm.padding.right";
4692                   to_y: "elm.padding.bottom";
4693                }
4694                align: 1.0 0.5;
4695             }
4696             GENLIST_DESCRIPTION_RENAME_ENABLED
4697          }
4698          part { name: "elm.padding.icon.left";
4699             clip_to: "disclip";
4700             type: RECT;
4701             scale: 1;
4702             description { state: "default" 0.0;
4703                min: 10 0;
4704                fixed: 1 0;
4705                rel1.to_x: "elm.icon";
4706                rel2 {
4707                   relative: 0.0 1.0;
4708                   to_x: "elm.icon";
4709                }
4710                align: 1.0 0.0;
4711                visible: 0;
4712             }
4713          }
4714          part { name: "elm.text.1";
4715             clip_to: "disclip";
4716             type: TEXT;
4717             mouse_events: 0;
4718             scale: 1;
4719             description { state: "default" 0.0;
4720                min: 0 38;
4721                fixed: 0 1;
4722                rel1 {
4723                   relative: 1.0 1.0;
4724                   to_x: "elm.padding.left";
4725                   to_y: "elm.padding.top";
4726                }
4727                rel2 {
4728                   relative: 0.0 1.0;
4729                   to_x: "elm.padding.icon.left";
4730                   to_y: "elm.padding.top";
4731                }
4732                align: 0.0 0.0;
4733                color: GENLIST_PART_TEXT_COLOR_INC;
4734                text {
4735                   font: "SLP:style=Roman";
4736                   size: 28;
4737                   min: 0 1;
4738                   align: 0.0 0.5;
4739                }
4740             }
4741             description { state: "selected" 0.0;
4742                inherit: "default" 0.0;
4743                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
4744             }
4745             GENLIST_DESCRIPTION_RENAME_ENABLED
4746          }
4747          part { name: "elm.text.2";
4748             clip_to: "disclip";
4749             type: TEXT;
4750             mouse_events: 0;
4751             scale: 1;
4752             description { state: "default" 0.0;
4753                rel1 {
4754                   relative: 1.0 1.0;
4755                   to_x: "elm.padding.left";
4756                   to_y: "elm.text.1";
4757                }
4758                rel2 {
4759                   relative: 0.0 0.0;
4760                   to_x: "elm.padding.icon.left";
4761                   to_y: "elm.padding.bottom";
4762                }
4763                align: 0.0 0.0;
4764                color: GENLIST_PART_SUB_TEXT_SETTINGS_COLOR_INC;
4765                text {
4766                   font: "SLP:style=Medium";
4767                   size: 20;
4768                   min: 0 1;
4769                   align: 0.0 0.5;
4770                }
4771             }
4772             description { state: "selected" 0.0;
4773                inherit: "default" 0.0;
4774                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
4775             }
4776             GENLIST_DESCRIPTION_RENAME_ENABLED
4777          }
4778          GENLIST_PART_RENAME
4779          GENLIST_PART_DISCLIP
4780       }
4781       programs {
4782          // signal: elm,state,%s,active
4783          //   a "check" item named %s went active
4784          // signal: elm,state,%s,passive
4785          //   a "check" item named %s went passive
4786          // default is passive
4787          program { name: "go_active";
4788             signal: "elm,state,selected";
4789             source: "elm";
4790             action: STATE_SET "selected" 0.0;
4791             target: "bg_image";
4792             target: "elm.text.1";
4793             target: "elm.text.2";
4794          }
4795          program { name: "go_passive";
4796             signal: "elm,state,unselected";
4797             source: "elm";
4798             action: STATE_SET "default" 0.0;
4799             target: "bg_image";
4800             target: "elm.text.1";
4801             target: "elm.text.2";
4802             transition: LINEAR 0.1;
4803          }
4804          program { name: "go_disabled";
4805             signal: "elm,state,disabled";
4806             source: "elm";
4807             action: STATE_SET "disabled" 0.0;
4808             target: "disclip";
4809          }
4810          program { name: "go_enabled";
4811             signal: "elm,state,enabled";
4812             source: "elm";
4813             action: STATE_SET "default" 0.0;
4814             target: "disclip";
4815          }
4816          GENLIST_PROGRAM_RENAME_2TEXT_1ICON
4817       }
4818    }
4819
4820    group { name: "elm/genlist/item/2text.2icon.2/default";
4821       alias: "elm/genlist/item_odd/2text.2icon.2/default";
4822       alias: "elm/genlist/item_compress/2text.2icon.2/default";
4823       alias: "elm/genlist/item_compress_odd/2text.2icon.2/default";
4824       data.item: "stacking" "above";
4825       data.item: "selectraise" "on";
4826       data.item: "labels" "elm.text.1 elm.text.2";
4827       data.item: "icons" "elm.icon.1 elm.icon.2";
4828       data.item: "renames" "elm.edit.rename";
4829       images {
4830          image: "00_list_bar_press_1x80.png" COMP;
4831       }
4832       parts {
4833          GENLIST_PART_BASE( 81 )
4834          GENLIST_PART_BG_IMAGE
4835          GENLIST_PART_BOTTOM_LINE
4836          GENLIST_PART_PADDING_TOP( 6 )
4837          GENLIST_PART_PADDING_BOTTOM( 6 )
4838          GENLIST_PART_PADDING_LEFT( 10 )
4839          GENLIST_PART_PADDING_RIGHT( 10 )
4840          part { name: "elm.icon.2";
4841             clip_to: "disclip";
4842             type: SWALLOW;
4843             scale: 1;
4844             description { state: "default" 0.0;
4845                min: 40 40;
4846                max: 40 40;
4847                fixed: 1 1;
4848                rel1 {
4849                   relative: 0.0 1.0;
4850                   to_x: "elm.padding.right";
4851                   to_y: "elm.padding.top";
4852                }
4853                rel2 {
4854                   relative: 0.0 0.0;
4855                   to_x: "elm.padding.right";
4856                   to_y: "elm.padding.bottom";
4857                }
4858                align: 1.0 0.5;
4859             }
4860             GENLIST_DESCRIPTION_RENAME_ENABLED
4861          }
4862          part { name: "elm.padding.icon2.left";
4863             clip_to: "disclip";
4864             type: RECT;
4865             scale: 1;
4866             description { state: "default" 0.0;
4867                min: 10 0;
4868                fixed: 1 0;
4869                rel1.to_x: "elm.icon.2";
4870                rel2 {
4871                   relative: 0.0 1.0;
4872                   to_x: "elm.icon.2";
4873                }
4874                align: 1.0 0.0;
4875                visible: 0;
4876             }
4877          }
4878         part { name: "elm.text.1";
4879             clip_to: "disclip";
4880             type: TEXT;
4881             mouse_events: 0;
4882             scale: 1;
4883             description { state: "default" 0.0;
4884                min: 0 38;
4885                fixed: 0 1;
4886                rel1 {
4887                   relative: 1.0 1.0;
4888                   to_x: "elm.padding.left";
4889                   to_y: "elm.padding.top";
4890                }
4891                rel2 {
4892                   relative: 0.0 1.0;
4893                   to_x: "elm.padding.icon2.left";
4894                   to_y: "elm.padding.top";
4895                }
4896                align: 0.0 0.0;
4897                color: GENLIST_PART_TEXT_COLOR_INC;
4898                text {
4899                   font: "SLP:style=Roman";
4900                   size: 28;
4901                   min: 0 1;
4902                   align: 0.0 0.5;
4903                }
4904             }
4905             description { state: "selected" 0.0;
4906                inherit: "default" 0.0;
4907                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
4908             }
4909             GENLIST_DESCRIPTION_RENAME_ENABLED
4910          }
4911          part { name: "elm.text.2";
4912             clip_to: "disclip";
4913             type: TEXT;
4914             mouse_events: 0;
4915             scale: 1;
4916             description { state: "default" 0.0;
4917                min: 0 0;
4918                max: 360 0;
4919                fixed: 1 0;
4920                rel1 {
4921                   relative: 1.0 1.0;
4922                   to_x: "elm.padding.left";
4923                   to_y: "elm.text.1";
4924                }
4925                rel2 {
4926                   relative: 1.0 0.0;
4927                   to_x: "elm.padding.left";
4928                   to_y: "elm.padding.bottom";
4929                }
4930                align: 0.0 0.5;
4931                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
4932                text {
4933                   font: "SLP:style=Medium";
4934                   size: 20;
4935                   min: 1 1;
4936                   align: 0.0 0.5;
4937                }
4938             }
4939             description { state: "selected" 0.0;
4940                inherit: "default" 0.0;
4941                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
4942             }
4943             GENLIST_DESCRIPTION_RENAME_ENABLED
4944          }
4945          part { name: "elm.padding.text2.right";
4946             clip_to: "disclip";
4947             type: RECT;
4948             scale: 1;
4949             description { state: "default" 0.0;
4950                min: 10 0;
4951                fixed: 1 0;
4952                visible: 0;
4953                rel1 {
4954                   relative: 1.0 0.0;
4955                   to_x: "elm.text.2";
4956                }
4957                rel2.to_x: "elm.text.2";
4958                align: 0.0 0.0;
4959             }
4960          }
4961          part { name: "elm.icon.1";
4962             clip_to: "disclip";
4963             type: SWALLOW;
4964             scale: 1;
4965             description { state: "default" 0.0;
4966                min: 20 20;
4967                max: 20 20;
4968                fixed: 1 1;
4969                rel1 {
4970                   relative: 1.0 1.0;
4971                   to_x: "elm.padding.text2.right";
4972                   to_y: "elm.text.1";
4973                }
4974                rel2 {
4975                   relative: 1.0 0.0;
4976                   to_x: "elm.padding.text2.right";
4977                   to_y: "elm.padding.bottom";
4978                }
4979                align: 0.0 0.5;
4980             }
4981             GENLIST_DESCRIPTION_RENAME_ENABLED
4982          }
4983          GENLIST_PART_RENAME
4984          GENLIST_PART_DISCLIP
4985       }
4986       programs {
4987          // signal: elm,state,%s,active
4988          //   a "check" item named %s went active
4989          // signal: elm,state,%s,passive
4990          //   a "check" item named %s went passive
4991          // default is passive
4992          program { name: "go_active";
4993             signal: "elm,state,selected";
4994             source: "elm";
4995             action: STATE_SET "selected" 0.0;
4996             target: "bg_image";
4997             target: "elm.text.1";
4998             target: "elm.text.2";
4999          }
5000          program { name: "go_passive";
5001             signal: "elm,state,unselected";
5002             source: "elm";
5003             action: STATE_SET "default" 0.0;
5004             target: "bg_image";
5005             target: "elm.text.1";
5006             target: "elm.text.2";
5007             transition: LINEAR 0.1;
5008          }
5009          program { name: "go_disabled";
5010             signal: "elm,state,disabled";
5011             source: "elm";
5012             action: STATE_SET "disabled" 0.0;
5013             target: "disclip";
5014          }
5015          program { name: "go_enabled";
5016             signal: "elm,state,enabled";
5017             source: "elm";
5018             action: STATE_SET "default" 0.0;
5019             target: "disclip";
5020          }
5021          GENLIST_PROGRAM_RENAME_2TEXT_2ICON
5022       }
5023    }
5024
5025    group { name: "elm/genlist/item/2text.1icon.4/default";
5026       alias: "elm/genlist/item_odd/2text.1icon.4/default";
5027       alias: "elm/genlist/item_compress/2text.1icon.4/default";
5028       alias: "elm/genlist/item_compress_odd/2text.1icon.4/default";
5029       data.item: "stacking" "above";
5030       data.item: "selectraise" "on";
5031       data.item: "labels" "elm.text.1 elm.text.2";
5032       data.item: "icons" "elm.icon";
5033       data.item: "renames" "elm.edit.rename";
5034       images {
5035          image: "00_list_bar_press_1x80.png" COMP;
5036       }
5037       parts {
5038          GENLIST_PART_BASE( 81 )
5039          GENLIST_PART_BG_IMAGE
5040          GENLIST_PART_BOTTOM_LINE
5041          GENLIST_PART_PADDING_TOP( 6 )
5042          GENLIST_PART_PADDING_BOTTOM( 6 )
5043          GENLIST_PART_PADDING_LEFT( 10 )
5044          GENLIST_PART_PADDING_RIGHT( 10 )
5045          part { name: "elm.icon";
5046             clip_to: "disclip";
5047             type: SWALLOW;
5048             scale: 1;
5049             description { state: "default" 0.0;
5050                min: 40 40;
5051                max: 40 40;
5052                fixed: 1 1;
5053                rel1 {
5054                   relative: 1.0 1.0;
5055                   to_x: "elm.padding.left";
5056                   to_y: "elm.padding.top";
5057                }
5058                rel2 {
5059                   relative: 1.0 0.0;
5060                   to_x: "elm.padding.left";
5061                   to_y: "elm.padding.bottom";
5062                }
5063                align: 0.0 0.5;
5064             }
5065             GENLIST_DESCRIPTION_RENAME_ENABLED
5066          }
5067          part { name: "elm.padding.icon.right";
5068             clip_to: "disclip";
5069             type: RECT;
5070             scale: 1;
5071             description { state: "default" 0.0;
5072                min: 10 0;
5073                fixed: 1 0;
5074                rel1 {
5075                   relative: 1.0 0.0;
5076                   to_x: "elm.icon";
5077                }
5078                rel2.to_x: "elm.icon";
5079                align: 0.0 0.0;
5080                visible: 0;
5081             }
5082          }
5083          part { name: "elm.text.1";
5084             clip_to: "disclip";
5085             type: TEXT;
5086             mouse_events: 0;
5087             scale: 1;
5088             description { state: "default" 0.0;
5089                min: 0 38;
5090                fixed: 0 1;
5091                rel1 {
5092                   relative: 1.0 1.0;
5093                   to_x: "elm.padding.icon.right";
5094                   to_y: "elm.padding.top";
5095                }
5096                rel2 {
5097                   relative: 0.0 1.0;
5098                   to_x: "elm.padding.right";
5099                   to_y: "elm.padding.top";
5100                }
5101                align: 0.0 0.0;
5102                color: GENLIST_PART_TEXT_COLOR_INC;
5103                text {
5104                   font: "SLP:style=Roman";
5105                   size: 28;
5106                   min: 0 1;
5107                   align: 0.0 0.5;
5108                }
5109             }
5110             description { state: "selected" 0.0;
5111                inherit: "default" 0.0;
5112                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
5113             }
5114             GENLIST_DESCRIPTION_RENAME_ENABLED
5115          }
5116          part { name: "elm.text.2";
5117             clip_to: "disclip";
5118             type: TEXT;
5119             mouse_events: 0;
5120             scale: 1;
5121             description { state: "default" 0.0;
5122                rel1 {
5123                   relative: 1.0 1.0;
5124                   to_x: "elm.padding.icon.right";
5125                   to_y: "elm.text.1";
5126                }
5127                rel2 {
5128                   relative: 0.0 0.0;
5129                   to_x: "elm.padding.right";
5130                   to_y: "elm.padding.bottom";
5131                }
5132                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
5133                text {
5134                   font: "SLP:style=Medium";
5135                   size: 20;
5136                   min: 0 1;
5137                   align: 0.0 0.5;
5138                }
5139             }
5140             description { state: "selected" 0.0;
5141                inherit: "default" 0.0;
5142                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
5143             }
5144             GENLIST_DESCRIPTION_RENAME_ENABLED
5145          }
5146          GENLIST_PART_RENAME
5147          GENLIST_PART_DISCLIP
5148       }
5149       programs {
5150          // signal: elm,state,%s,active
5151          //   a "check" item named %s went active
5152          // signal: elm,state,%s,passive
5153          //   a "check" item named %s went passive
5154          // default is passive
5155          program { name: "go_active";
5156             signal: "elm,state,selected";
5157             source: "elm";
5158             action: STATE_SET "selected" 0.0;
5159             target: "bg_image";
5160             target: "elm.text.1";
5161             target: "elm.text.2";
5162          }
5163          program { name: "go_passive";
5164             signal: "elm,state,unselected";
5165             source: "elm";
5166             action: STATE_SET "default" 0.0;
5167             target: "bg_image";
5168             target: "elm.text.1";
5169             target: "elm.text.2";
5170             transition: LINEAR 0.1;
5171          }
5172          program { name: "go_disabled";
5173             signal: "elm,state,disabled";
5174             source: "elm";
5175             action: STATE_SET "disabled" 0.0;
5176             target: "disclip";
5177          }
5178          program { name: "go_enabled";
5179             signal: "elm,state,enabled";
5180             source: "elm";
5181             action: STATE_SET "default" 0.0;
5182             target: "disclip";
5183          }
5184          GENLIST_PROGRAM_RENAME_2TEXT_1ICON
5185       }
5186    }
5187
5188    group { name: "elm/genlist/item/3text.1icon.2/default";
5189       alias: "elm/genlist/item_odd/3text.1icon.2/default";
5190       alias: "elm/genlist/item_compress/3text.1icon.2/default";
5191       alias: "elm/genlist/item_compress_odd/3text.1icon.2/default";
5192       data.item: "stacking" "above";
5193       data.item: "selectraise" "on";
5194       data.item: "labels" "elm.text.1 elm.text.2 elm.text.3";
5195       data.item: "icons" "elm.icon";
5196       data.item: "renames" "elm.edit.rename";
5197       images {
5198          image: "00_list_bar_press_1x80.png" COMP;
5199       }
5200       parts {
5201          GENLIST_PART_BASE( 81 )
5202          GENLIST_PART_BG_IMAGE
5203          GENLIST_PART_BOTTOM_LINE
5204          GENLIST_PART_PADDING_TOP( 6 )
5205          GENLIST_PART_PADDING_BOTTOM( 6 )
5206          GENLIST_PART_PADDING_LEFT( 10 )
5207          GENLIST_PART_PADDING_RIGHT( 10 )
5208          part { name: "elm.icon";
5209             clip_to: "disclip";
5210             type: SWALLOW;
5211             scale: 1;
5212             description { state: "default" 0.0;
5213                min: 40 40;
5214                max: 40 40;
5215                fixed: 1 1;
5216                rel1 {
5217                   relative: 1.0 1.0;
5218                   offset: 0 0;
5219                   to_x: "elm.padding.left";
5220                   to_y: "elm.padding.top";
5221                }
5222                rel2 {
5223                   relative: 1.0 0.0;
5224                   to_x: "elm.padding.left";
5225                   to_y: "elm.padding.bottom";
5226                }
5227                align: 0.0 0.5;
5228             }
5229             GENLIST_DESCRIPTION_RENAME_ENABLED
5230          }
5231          part { name: "elm.padding.icon.right";
5232             clip_to: "disclip";
5233             type: RECT;
5234             scale: 1;
5235             description { state: "default" 0.0;
5236                min: 10 0;
5237                fixed: 1 0;
5238                rel1 {
5239                   relative: 1.0 0.0;
5240                   to_x: "elm.icon";
5241                }
5242                rel2.to_x: "elm.icon";
5243                align: 0.0 0.0;
5244                visible: 0;
5245             }
5246          }
5247          part { name: "elm.text.3";
5248             clip_to: "disclip";
5249             type: TEXT;
5250             mouse_events: 0;
5251             scale: 1;
5252             description { state: "default" 0.0;
5253                min: 98 38;
5254                fixed: 1 1;
5255                rel1 {
5256                   relative: 0.0 1.0;
5257                   to_x: "elm.padding.right";
5258                   to_y: "elm.padding.top";
5259                }
5260                rel2 {
5261                   relative: 0.0 1.0;
5262                   to_x: "elm.padding.right";
5263                   to_y: "elm.padding.top";
5264                }
5265                align: 1.0 0.0;
5266                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
5267                text {
5268                   font: "SLP:style=Medium";
5269                   size: 20;
5270                   min: 0 1;
5271                   align: 1.0 0.5;
5272                }
5273             }
5274             description { state: "selected" 0.0;
5275                inherit: "default" 0.0;
5276                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
5277             }
5278             GENLIST_DESCRIPTION_RENAME_ENABLED
5279          }
5280          part { name: "elm.padding.text3.left";
5281             clip_to: "disclip";
5282             type: RECT;
5283             mouse_events: 0;
5284             scale: 1;
5285             description { state: "default" 0.0;
5286                min: 20 0;
5287                fixed: 1 0;
5288                rel1.to_x: "elm.text.3";
5289                rel2 {
5290                   relative: 0.0 1.0;
5291                   to_x: "elm.text.3";
5292                }
5293                align: 1.0 0.5;
5294                visible: 0;
5295             }
5296          }
5297          part { name: "elm.text.1";
5298             clip_to: "disclip";
5299             type: TEXT;
5300             mouse_events: 0;
5301             scale: 1;
5302             description { state: "default" 0.0;
5303                rel1 {
5304                   relative: 1.0 1.0;
5305                   to_x: "elm.padding.icon.right";
5306                   to_y: "elm.padding.top";
5307                }
5308                rel2 {
5309                   relative: 0.0 1.0;
5310                   to_x: "elm.padding.text3.left";
5311                   to_y: "elm.text.3";
5312                }
5313                align: 0.0 0.5;
5314                color: GENLIST_PART_TEXT_COLOR_INC;
5315                text {
5316                   font: "SLP:style=Roman";
5317                   size: 28;
5318                   min: 0 1;
5319                   align: 0.0 0.5;
5320                }
5321             }
5322             description { state: "selected" 0.0;
5323                inherit: "default" 0.0;
5324                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
5325             }
5326             GENLIST_DESCRIPTION_RENAME_ENABLED
5327          }
5328          part { name: "elm.text.2";
5329             clip_to: "disclip";
5330             type: TEXT;
5331             mouse_events: 0;
5332             scale: 1;
5333             description { state: "default" 0.0;
5334                rel1 {
5335                   relative: 1.0 1.0;
5336                   to_x: "elm.padding.icon.right";
5337                   to_y: "elm.text.1";
5338                }
5339                rel2 {
5340                   relative: 0.0 0.0;
5341                   to_x: "elm.padding.right";
5342                   to_y: "elm.padding.bottom";
5343                }
5344                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
5345                text {
5346                   font: "SLP:style=Medium";
5347                   size: 20;
5348                   min: 0 1;
5349                   align: 0.0 0.5;
5350                }
5351             }
5352             description { state: "selected" 0.0;
5353                inherit: "default" 0.0;
5354                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
5355             }
5356             GENLIST_DESCRIPTION_RENAME_ENABLED
5357          }
5358          GENLIST_PART_RENAME
5359          GENLIST_PART_DISCLIP
5360       }
5361       programs {
5362          // signal: elm,state,%s,active
5363          //   a "check" item named %s went active
5364          // signal: elm,state,%s,passive
5365          //   a "check" item named %s went passive
5366          // default is passive
5367          program { name: "go_active";
5368             signal: "elm,state,selected";
5369             source: "elm";
5370             action: STATE_SET "selected" 0.0;
5371             target: "bg_image";
5372             target: "elm.text.1";
5373             target: "elm.text.2";
5374             target: "elm.text.3";
5375          }
5376          program { name: "go_passive";
5377             signal: "elm,state,unselected";
5378             source: "elm";
5379             action: STATE_SET "default" 0.0;
5380             target: "bg_image";
5381             target: "elm.text.1";
5382             target: "elm.text.2";
5383             target: "elm.text.3";
5384             transition: LINEAR 0.1;
5385          }
5386          program { name: "go_disabled";
5387             signal: "elm,state,disabled";
5388             source: "elm";
5389             action: STATE_SET "disabled" 0.0;
5390             target: "disclip";
5391          }
5392          program { name: "go_enabled";
5393             signal: "elm,state,enabled";
5394             source: "elm";
5395             action: STATE_SET "default" 0.0;
5396             target: "disclip";
5397          }
5398          GENLIST_PROGRAM_RENAME_3TEXT_1ICON
5399       }
5400    }
5401
5402    group { name: "elm/genlist/item/2text.1icon.8/default";
5403       alias: "elm/genlist/item_odd/2text.1icon.8/default";
5404       alias: "elm/genlist/item_compress/2text.1icon.8/default";
5405       alias: "elm/genlist/item_compress_odd/2text.1icon.8/default";
5406       data.item: "stacking" "above";
5407       data.item: "selectraise" "on";
5408       data.item: "labels" "elm.text.1 elm.text.2";
5409       data.item: "icons" "elm.icon";
5410       data.item: "renames" "elm.edit.rename";
5411       images {
5412          image: "00_list_bar_press_1x80.png" COMP;
5413       }
5414       parts {
5415          GENLIST_PART_BASE( 81 )
5416          GENLIST_PART_BG_IMAGE
5417          GENLIST_PART_BOTTOM_LINE
5418          GENLIST_PART_PADDING_TOP( 6 )
5419          GENLIST_PART_PADDING_BOTTOM( 6 )
5420          GENLIST_PART_PADDING_LEFT( 10 )
5421          GENLIST_PART_PADDING_RIGHT( 10 )
5422          part { name: "elm.icon";
5423             clip_to: "disclip";
5424             type: SWALLOW;
5425             scale: 1;
5426             description { state: "default" 0.0;
5427                min: 40 40;
5428                max: 40 40;
5429                fixed: 1 1;
5430                rel1 {
5431                   relative: 1.0 1.0;
5432                   to_x: "elm.padding.left";
5433                   to_y: "elm.padding.top";
5434                }
5435                rel2 {
5436                   relative: 1.0 0.0;
5437                   to_x: "elm.padding.left";
5438                   to_y: "elm.padding.bottom";
5439                }
5440                align: 0.0 0.5;
5441             }
5442             GENLIST_DESCRIPTION_RENAME_ENABLED
5443          }
5444          part { name: "elm.padding.icon.right";
5445             clip_to: "disclip";
5446             type: RECT;
5447             scale: 1;
5448             description { state: "default" 0.0;
5449                min: 10 0;
5450                fixed: 1 0;
5451                rel1 {
5452                   relative: 1.0 0.0;
5453                   to_x: "elm.icon";
5454                }
5455                rel2.to_x: "elm.icon";
5456                align: 0.0 0.0;
5457                visible: 0;
5458             }
5459          }
5460          part { name: "elm.text.1";
5461             clip_to: "disclip";
5462             type: TEXT;
5463             mouse_events: 0;
5464             scale: 1;
5465             description { state: "default" 0.0;
5466                min: 0 38;
5467                fixed: 0 1;
5468                rel1 {
5469                   relative: 1.0 1.0;
5470                   to_x: "elm.padding.icon.right";
5471                   to_y: "elm.padding.top";
5472                }
5473                rel2 {
5474                   relative: 0.0 1.0;
5475                   to_x: "elm.padding.right";
5476                   to_y: "elm.padding.top";
5477                }
5478                align: 0.0 0.0;
5479                color: GENLIST_PART_TEXT_COLOR_INC;
5480                text {
5481                   font: "SLP:style=Roman";
5482                   size: 28;
5483                   min: 0 1;
5484                   align: 0.0 0.5;
5485                }
5486             }
5487             description { state: "selected" 0.0;
5488                inherit: "default" 0.0;
5489                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
5490             }
5491             GENLIST_DESCRIPTION_RENAME_ENABLED
5492          }
5493          part { name: "elm.text.2";
5494             clip_to: "disclip";
5495             type: TEXT;
5496             mouse_events: 0;
5497             scale: 1;
5498             description { state: "default" 0.0;
5499                rel1 {
5500                   relative: 1.0 1.0;
5501                   to_x: "elm.padding.icon.right";
5502                   to_y: "elm.text.1";
5503                }
5504                rel2 {
5505                   relative: 0.0 0.0;
5506                   to_x: "elm.padding.right";
5507                   to_y: "elm.padding.bottom";
5508                }
5509                color: GENLIST_PART_SUB_TEXT_SETTINGS_COLOR_INC;
5510                text {
5511                   font: "SLP:style=Medium";
5512                   size: 20;
5513                   min: 0 1;
5514                   align: 0.0 0.5;
5515                }
5516             }
5517             description { state: "selected" 0.0;
5518                inherit: "default" 0.0;
5519                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
5520             }
5521             GENLIST_DESCRIPTION_RENAME_ENABLED
5522          }
5523          GENLIST_PART_RENAME
5524          GENLIST_PART_DISCLIP
5525       }
5526       programs {
5527          // signal: elm,state,%s,active
5528          //   a "check" item named %s went active
5529          // signal: elm,state,%s,passive
5530          //   a "check" item named %s went passive
5531          // default is passive
5532          program { name: "go_active";
5533             signal: "elm,state,selected";
5534             source: "elm";
5535             action: STATE_SET "selected" 0.0;
5536             target: "bg_image";
5537             target: "elm.text.1";
5538             target: "elm.text.2";
5539          }
5540          program { name: "go_passive";
5541             signal: "elm,state,unselected";
5542             source: "elm";
5543             action: STATE_SET "default" 0.0;
5544             target: "bg_image";
5545             target: "elm.text.1";
5546             target: "elm.text.2";
5547             transition: LINEAR 0.1;
5548          }
5549          program { name: "go_disabled";
5550             signal: "elm,state,disabled";
5551             source: "elm";
5552             action: STATE_SET "disabled" 0.0;
5553             target: "disclip";
5554          }
5555          program { name: "go_enabled";
5556             signal: "elm,state,enabled";
5557             source: "elm";
5558             action: STATE_SET "default" 0.0;
5559             target: "disclip";
5560          }
5561          GENLIST_PROGRAM_RENAME_2TEXT_1ICON
5562       }
5563    }
5564
5565    group { name: "elm/genlist/item/2text.2icon.3/default";
5566       alias: "elm/genlist/item_odd/2text.2icon.3/default";
5567       alias: "elm/genlist/item_compress/2text.2icon.3/default";
5568       alias: "elm/genlist/item_compress_odd/2text.2icon.3/default";
5569       data.item: "stacking" "above";
5570       data.item: "selectraise" "on";
5571       data.item: "labels" "elm.text.1 elm.text.2";
5572       data.item: "icons" "elm.icon.1 elm.icon.2";
5573       data.item: "renames" "elm.edit.rename";
5574       images {
5575          image: "00_list_bar_press_1x80.png" COMP;
5576       }
5577       parts {
5578          GENLIST_PART_BASE( 81 )
5579          GENLIST_PART_BG_IMAGE
5580          GENLIST_PART_BOTTOM_LINE
5581          GENLIST_PART_PADDING_TOP( 6 )
5582          GENLIST_PART_PADDING_BOTTOM( 6 )
5583          GENLIST_PART_PADDING_LEFT( 10 )
5584          GENLIST_PART_PADDING_RIGHT( 10 )
5585          part { name: "elm.icon.1";
5586             clip_to: "disclip";
5587             type: SWALLOW;
5588             scale: 1;
5589             description { state: "default" 0.0;
5590                min: 40 40;
5591                max: 40 40;
5592                fixed: 1 1;
5593                rel1 {
5594                   relative: 1.0 1.0;
5595                   to_x: "elm.padding.left";
5596                   to_y: "elm.padding.top";
5597                }
5598                rel2 {
5599                   relative: 1.0 0.0;
5600                   to_x: "elm.padding.left";
5601                   to_y: "elm.padding.bottom";
5602                }
5603                align: 0.0 0.5;
5604             }
5605             GENLIST_DESCRIPTION_RENAME_ENABLED
5606          }
5607          part { name: "elm.padding.icon1.right";
5608             clip_to: "disclip";
5609             type: RECT;
5610             scale: 1;
5611             description { state: "default" 0.0;
5612                min: 10 0;
5613                fixed: 1 0;
5614                rel1 {
5615                   relative: 1.0 0.0;
5616                   to_x: "elm.icon.1";
5617                }
5618                rel2.to_x: "elm.icon.1";
5619                align: 0.0 0.0;
5620                visible: 0;
5621             }
5622          }
5623          part { name: "elm.text.1";
5624             clip_to: "disclip";
5625             type: TEXT;
5626             mouse_events: 0;
5627             scale: 1;
5628             description { state: "default" 0.0;
5629                min: 0 38;
5630                fixed: 0 1;
5631                rel1 {
5632                   relative: 1.0 1.0;
5633                   to_x: "elm.padding.icon1.right";
5634                   to_y: "elm.padding.top";
5635                }
5636                rel2 {
5637                   relative: 0.0 1.0;
5638                   to_x: "elm.padding.icon2.left";
5639                   to_y: "elm.padding.top";
5640                }
5641                align: 0.0 0.0;
5642                color: GENLIST_PART_TEXT_COLOR_INC;
5643                text {
5644                   font: "SLP:style=Roman";
5645                   size: 28;
5646                   min: 0 1;
5647                   align: 0.0 0.5;
5648                }
5649             }
5650             description { state: "selected" 0.0;
5651                inherit: "default" 0.0;
5652                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
5653             }
5654             GENLIST_DESCRIPTION_RENAME_ENABLED
5655          }
5656          part { name: "elm.icon.2";
5657             clip_to: "disclip";
5658             type: SWALLOW;
5659             scale: 1;
5660             description { state: "default" 0.0;
5661                fixed: 1 1;
5662                rel1 {
5663                   relative: 0.0 1.0;
5664                   to_x: "elm.padding.right";
5665                   to_y: "elm.padding.top";
5666                }
5667                rel2 {
5668                   relative: 0.0 1.0;
5669                   to_x: "elm.padding.right";
5670                   to_y: "elm.text.1";
5671                }
5672                align: 1.0 0.5;
5673             }
5674             GENLIST_DESCRIPTION_RENAME_ENABLED
5675          }
5676          part { name: "elm.padding.icon2.left";
5677             clip_to: "disclip";
5678             type: RECT;
5679             scale: 1;
5680             description { state: "default" 0.0;
5681                min: 10 0;
5682                fixed: 1 0;
5683                rel1 {
5684                   relative: 0.0 0.0;
5685                   to_x: "elm.icon.2";
5686                }
5687                rel2.to_x: "elm.icon.2";
5688                align: 1.0 0.0;
5689                visible: 0;
5690             }
5691          }
5692          part { name: "elm.text.2";
5693             clip_to: "disclip";
5694             type: TEXT;
5695             mouse_events: 0;
5696             scale: 1;
5697             description { state: "default" 0.0;
5698                rel1 {
5699                   relative: 1.0 1.0;
5700                   to_x: "elm.padding.icon1.right";
5701                   to_y: "elm.text.1";
5702                }
5703                rel2 {
5704                   relative: 0.0 0.0;
5705                   to_x: "elm.padding.icon2.left";
5706                   to_y: "elm.padding.bottom";
5707                }
5708                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
5709                text {
5710                   font: "SLP:style=Medium";
5711                   size: 20;
5712                   min: 0 1;
5713                   align: 0.0 0.5;
5714                }
5715             }
5716             description { state: "selected" 0.0;
5717                inherit: "default" 0.0;
5718                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
5719             }
5720             GENLIST_DESCRIPTION_RENAME_ENABLED
5721          }
5722          GENLIST_PART_RENAME
5723          GENLIST_PART_DISCLIP
5724       }
5725       programs {
5726          // signal: elm,state,%s,active
5727          //   a "check" item named %s went active
5728          // signal: elm,state,%s,passive
5729          //   a "check" item named %s went passive
5730          // default is passive
5731          program { name: "go_active";
5732             signal: "elm,state,selected";
5733             source: "elm";
5734             action: STATE_SET "selected" 0.0;
5735             target: "bg_image";
5736             target: "elm.text.1";
5737             target: "elm.text.2";
5738          }
5739          program { name: "go_passive";
5740             signal: "elm,state,unselected";
5741             source: "elm";
5742             action: STATE_SET "default" 0.0;
5743             target: "bg_image";
5744             target: "elm.text.1";
5745             target: "elm.text.2";
5746             transition: LINEAR 0.1;
5747          }
5748          program { name: "go_disabled";
5749             signal: "elm,state,disabled";
5750             source: "elm";
5751             action: STATE_SET "disabled" 0.0;
5752             target: "disclip";
5753          }
5754          program { name: "go_enabled";
5755             signal: "elm,state,enabled";
5756             source: "elm";
5757             action: STATE_SET "default" 0.0;
5758             target: "disclip";
5759          }
5760          GENLIST_PROGRAM_RENAME_2TEXT_2ICON
5761       }
5762    }
5763
5764    group { name: "elm/genlist/item/2text.2icon.4/default";
5765       alias: "elm/genlist/item_odd/2text.2icon.4/default";
5766       alias: "elm/genlist/item_compress/2text.2icon.4/default";
5767       alias: "elm/genlist/item_compress_odd/2text.2icon.4/default";
5768       data.item: "stacking" "above";
5769       data.item: "selectraise" "on";
5770       data.item: "labels" "elm.text.1 elm.text.2";
5771       data.item: "icons" "elm.icon.1 elm.icon.2";
5772       data.item: "renames" "elm.edit.rename";
5773       images {
5774          image: "00_list_bar_press_1x80.png" COMP;
5775       }
5776       parts {
5777          GENLIST_PART_BASE( 81 )
5778          GENLIST_PART_BG_IMAGE
5779          GENLIST_PART_BOTTOM_LINE
5780          GENLIST_PART_PADDING_TOP( 6 )
5781          GENLIST_PART_PADDING_BOTTOM( 6 )
5782          GENLIST_PART_PADDING_LEFT( 10 )
5783          GENLIST_PART_PADDING_RIGHT( 10 )
5784          part { name: "elm.icon.1";
5785             clip_to: "disclip";
5786             type: SWALLOW;
5787             scale: 1;
5788             description { state: "default" 0.0;
5789                min: 40 40;
5790                max: 40 40;
5791                fixed: 1 1;
5792                rel1 {
5793                   relative: 1.0 1.0;
5794                   to_x: "elm.padding.left";
5795                   to_y: "elm.padding.top";
5796                }
5797                rel2 {
5798                   relative: 1.0 0.0;
5799                   to_x: "elm.padding.left";
5800                   to_y: "elm.padding.bottom";
5801                }
5802                align: 0.0 0.5;
5803             }
5804             GENLIST_DESCRIPTION_RENAME_ENABLED
5805          }
5806          part { name: "elm.padding.icon1.right";
5807             clip_to: "disclip";
5808             type: RECT;
5809             scale: 1;
5810             description { state: "default" 0.0;
5811                min: 10 0;
5812                fixed: 1 0;
5813                rel1 {
5814                   relative: 1.0 0.0;
5815                   to_x: "elm.icon.1";
5816                }
5817                rel2.to_x: "elm.icon.1";
5818                align: 0.0 0.0;
5819                visible: 0;
5820             }
5821          }
5822          part { name: "elm.icon.2";
5823             clip_to: "disclip";
5824             type: SWALLOW;
5825             scale: 1;
5826             description { state: "default" 0.0;
5827                min: 40 40;
5828                max: 40 40;
5829                fixed: 1 1;
5830                rel1 {
5831                   relative: 0.0 1.0;
5832                   to_x: "elm.padding.right";
5833                   to_y: "elm.padding.top";
5834                }
5835                rel2 {
5836                   relative: 0.0 0.0;
5837                   to_x: "elm.padding.right";
5838                   to_y: "elm.padding.bottom";
5839                }
5840                align: 1.0 0.5;
5841             }
5842             GENLIST_DESCRIPTION_RENAME_ENABLED
5843          }
5844          part { name: "elm.padding.icon2.left";
5845             clip_to: "disclip";
5846             type: RECT;
5847             scale: 1;
5848             description { state: "default" 0.0;
5849                min: 10 0;
5850                fixed: 1 0;
5851                rel1.to_x: "elm.icon.2";
5852                rel2 {
5853                   relative: 0.0 1.0;
5854                   to_x: "elm.icon.2";
5855                }
5856                align: 1.0 0.0;
5857                visible: 0;
5858             }
5859          }
5860          part { name: "elm.text.1";
5861             clip_to: "disclip";
5862             type: TEXT;
5863             mouse_events: 0;
5864             scale: 1;
5865             description { state: "default" 0.0;
5866                min: 0 38;
5867                fixed: 0 1;
5868                rel1 {
5869                   relative: 1.0 1.0;
5870                   to_x: "elm.padding.icon1.right";
5871                   to_y: "elm.padding.top";
5872                }
5873                rel2 {
5874                   relative: 0.0 1.0;
5875                   to_x: "elm.padding.icon2.left";
5876                   to_y: "elm.padding.top";
5877                }
5878                align: 0.0 0.0;
5879                color: GENLIST_PART_TEXT_COLOR_INC;
5880                text {
5881                   font: "SLP:style=Roman";
5882                   size: 28;
5883                   min: 0 1;
5884                   align: 0.0 0.5;
5885                }
5886             }
5887             description { state: "selected" 0.0;
5888                inherit: "default" 0.0;
5889                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
5890             }
5891             GENLIST_DESCRIPTION_RENAME_ENABLED
5892          }
5893          part { name: "elm.text.2";
5894             clip_to: "disclip";
5895             type: TEXT;
5896             mouse_events: 0;
5897             scale: 1;
5898             description { state: "default" 0.0;
5899                rel1 {
5900                   relative: 1.0 1.0;
5901                   to_x: "elm.padding.icon1.right";
5902                   to_y: "elm.text.1";
5903                }
5904                rel2 {
5905                   relative: 0.0 0.0;
5906                   to_x: "elm.padding.icon2.left";
5907                   to_y: "elm.padding.bottom";
5908                }
5909                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
5910                text {
5911                   font: "SLP:style=Medium";
5912                   size: 20;
5913                   min: 0 1;
5914                   align: 0.0 0.5;
5915                }
5916             }
5917             description { state: "selected" 0.0;
5918                inherit: "default" 0.0;
5919                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
5920             }
5921             GENLIST_DESCRIPTION_RENAME_ENABLED
5922          }
5923          GENLIST_PART_RENAME
5924          GENLIST_PART_DISCLIP
5925       }
5926       programs {
5927          // signal: elm,state,%s,active
5928          //   a "check" item named %s went active
5929          // signal: elm,state,%s,passive
5930          //   a "check" item named %s went passive
5931          // default is passive
5932          program { name: "go_active";
5933             signal: "elm,state,selected";
5934             source: "elm";
5935             action: STATE_SET "selected" 0.0;
5936             target: "bg_image";
5937             target: "elm.text.1";
5938             target: "elm.text.2";
5939          }
5940          program { name: "go_passive";
5941             signal: "elm,state,unselected";
5942             source: "elm";
5943             action: STATE_SET "default" 0.0;
5944             target: "bg_image";
5945             target: "elm.text.1";
5946             target: "elm.text.2";
5947             transition: LINEAR 0.1;
5948          }
5949          program { name: "go_disabled";
5950             signal: "elm,state,disabled";
5951             source: "elm";
5952             action: STATE_SET "disabled" 0.0;
5953             target: "disclip";
5954          }
5955          program { name: "go_enabled";
5956             signal: "elm,state,enabled";
5957             source: "elm";
5958             action: STATE_SET "default" 0.0;
5959             target: "disclip";
5960          }
5961          GENLIST_PROGRAM_RENAME_2TEXT_2ICON
5962       }
5963    }
5964
5965    group { name: "elm/genlist/item/2text.1icon.9/default";
5966       alias: "elm/genlist/item_odd/2text.1icon.9/default";
5967       alias: "elm/genlist/item_compress/2text.1icon.9/default";
5968       alias: "elm/genlist/item_compress_odd/2text.1icon.9/default";
5969       data.item: "stacking" "above";
5970       data.item: "selectraise" "on";
5971       data.item: "labels" "elm.text.1 elm.text.2";
5972       data.item: "icons" "elm.icon";
5973       data.item: "renames" "elm.edit.rename";
5974       images {
5975          image: "00_list_bar_press_1x80.png" COMP;
5976       }
5977       parts {
5978          GENLIST_PART_BASE( 81 )
5979          GENLIST_PART_BG_IMAGE
5980          GENLIST_PART_BOTTOM_LINE
5981          GENLIST_PART_PADDING_TOP( 6 )
5982          GENLIST_PART_PADDING_BOTTOM( 6 )
5983          GENLIST_PART_PADDING_LEFT( 10 )
5984          GENLIST_PART_PADDING_RIGHT( 10 )
5985          part { name: "elm.icon";
5986             clip_to: "disclip";
5987             type: SWALLOW;
5988             scale: 1;
5989             description { state: "default" 0.0;
5990                min: 26 26;
5991                max: 26 26;
5992                fixed: 1 1;
5993                rel1 {
5994                   relative: 1.0 1.0;
5995                   to_x: "elm.padding.left";
5996                   to_y: "elm.padding.top";
5997                }
5998                rel2 {
5999                   relative: 1.0 0.0;
6000                   to_x: "elm.padding.left";
6001                   to_y: "elm.padding.bottom";
6002                }
6003                align: 0.0 0.5;
6004             }
6005             GENLIST_DESCRIPTION_RENAME_ENABLED
6006          }
6007          part { name: "elm.padding.icon.right";
6008             clip_to: "disclip";
6009             type: RECT;
6010             scale: 1;
6011             description { state: "default" 0.0;
6012                min: 10 0;
6013                fixed: 1 0;
6014                rel1 {
6015                   relative: 1.0 0.0;
6016                   to_x: "elm.icon";
6017                }
6018                rel2.to_x: "elm.icon";
6019                align: 0.0 0.0;
6020                visible: 0;
6021             }
6022          }
6023          part { name: "elm.text.1";
6024             clip_to: "disclip";
6025             type: TEXT;
6026             mouse_events: 0;
6027             scale: 1;
6028             description { state: "default" 0.0;
6029                min: 0 38;
6030                fixed: 0 1;
6031                rel1 {
6032                   relative: 1.0 1.0;
6033                   to_x: "elm.padding.icon.right";
6034                   to_y: "elm.padding.top";
6035                }
6036                rel2 {
6037                   relative: 0.0 1.0;
6038                   to_x: "elm.padding.right";
6039                   to_y: "elm.padding.top";
6040                }
6041                align: 0.0 0.0;
6042                color: GENLIST_PART_TEXT_COLOR_INC;
6043                text {
6044                   font: "SLP:style=Roman";
6045                   size: 28;
6046                   min: 0 1;
6047                   align: 0.0 0.5;
6048                }
6049             }
6050             description { state: "selected" 0.0;
6051                inherit: "default" 0.0;
6052                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
6053             }
6054             GENLIST_DESCRIPTION_RENAME_ENABLED
6055          }
6056          part { name: "elm.text.2";
6057             clip_to: "disclip";
6058             type: TEXT;
6059             mouse_events: 0;
6060             scale: 1;
6061             description { state: "default" 0.0;
6062                rel1 {
6063                   relative: 1.0 1.0;
6064                   to_x: "elm.padding.icon.right";
6065                   to_y: "elm.text.1";
6066                }
6067                rel2 {
6068                   relative: 0.0 0.0;
6069                   to_x: "elm.padding.right";
6070                   to_y: "elm.padding.bottom";
6071                }
6072                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
6073                text {
6074                   font: "SLP:style=Medium";
6075                   size: 20;
6076                   min: 0 1;
6077                   align: 0.0 0.5;
6078                }
6079             }
6080             description { state: "selected" 0.0;
6081                inherit: "default" 0.0;
6082                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
6083             }
6084             GENLIST_DESCRIPTION_RENAME_ENABLED
6085          }
6086          GENLIST_PART_RENAME
6087          GENLIST_PART_DISCLIP
6088       }
6089       programs {
6090          // signal: elm,state,%s,active
6091          //   a "check" item named %s went active
6092          // signal: elm,state,%s,passive
6093          //   a "check" item named %s went passive
6094          // default is passive
6095          program { name: "go_active";
6096             signal: "elm,state,selected";
6097             source: "elm";
6098             action: STATE_SET "selected" 0.0;
6099             target: "bg_image";
6100             target: "elm.text.1";
6101             target: "elm.text.2";
6102          }
6103          program { name: "go_passive";
6104             signal: "elm,state,unselected";
6105             source: "elm";
6106             action: STATE_SET "default" 0.0;
6107             target: "bg_image";
6108             target: "elm.text.1";
6109             target: "elm.text.2";
6110             transition: LINEAR 0.1;
6111          }
6112          program { name: "go_disabled";
6113             signal: "elm,state,disabled";
6114             source: "elm";
6115             action: STATE_SET "disabled" 0.0;
6116             target: "disclip";
6117          }
6118          program { name: "go_enabled";
6119             signal: "elm,state,enabled";
6120             source: "elm";
6121             action: STATE_SET "default" 0.0;
6122             target: "disclip";
6123          }
6124          GENLIST_PROGRAM_RENAME_2TEXT_1ICON
6125       }
6126    }
6127
6128    group { name: "elm/genlist/item/2text.2icon.7/default";
6129       alias: "elm/genlist/item_odd/2text.2icon.7/default";
6130       alias: "elm/genlist/item_compress/2text.2icon.7/default";
6131       alias: "elm/genlist/item_compress_odd/2text.2icon.7/default";
6132       data.item: "stacking" "above";
6133       data.item: "selectraise" "on";
6134       data.item: "labels" "elm.text.1 elm.text.2";
6135       data.item: "icons" "elm.icon.1 elm.icon.2";
6136       data.item: "renames" "elm.edit.rename";
6137       images {
6138          image: "00_list_bar_press_1x80.png" COMP;
6139       }
6140       parts {
6141          GENLIST_PART_BASE( 81 )
6142          GENLIST_PART_BG_IMAGE
6143          GENLIST_PART_BOTTOM_LINE
6144          GENLIST_PART_PADDING_TOP( 6 )
6145          GENLIST_PART_PADDING_BOTTOM( 6 )
6146          GENLIST_PART_PADDING_LEFT( 10 )
6147          GENLIST_PART_PADDING_RIGHT( 10 )
6148          part { name: "elm.icon.1";
6149             clip_to: "disclip";
6150             type: SWALLOW;
6151             scale: 1;
6152             description { state: "default" 0.0;
6153                min: 26 26;
6154                max: 26 26;
6155                fixed: 1 1;
6156                rel1 {
6157                   relative: 1.0 1.0;
6158                   to_x: "elm.padding.left";
6159                   to_y: "elm.padding.top";
6160                }
6161                rel2 {
6162                   relative: 1.0 0.0;
6163                   to_x: "elm.padding.left";
6164                   to_y: "elm.padding.bottom";
6165                }
6166                align: 0.0 0.5;
6167             }
6168             GENLIST_DESCRIPTION_RENAME_ENABLED
6169          }
6170          part { name: "elm.padding.icon1.right";
6171             clip_to: "disclip";
6172             type: RECT;
6173             scale: 1;
6174             description { state: "default" 0.0;
6175                min: 10 0;
6176                fixed: 1 0;
6177                rel1 {
6178                   relative: 1.0 0.0;
6179                   to_x: "elm.icon.1";
6180                }
6181                rel2.to_x: "elm.icon.1";
6182                align: 0.0 0.0;
6183                visible: 0;
6184             }
6185          }
6186          part { name: "elm.icon.2";
6187             clip_to: "disclip";
6188             type: SWALLOW;
6189             scale: 1;
6190             description { state: "default" 0.0;
6191                min: 40 40;
6192                max: 40 40;
6193                fixed: 1 1;
6194                rel1 {
6195                   relative: 0.0 1.0;
6196                   to_x: "elm.padding.right";
6197                   to_y: "elm.padding.top";
6198                }
6199                rel2 {
6200                   relative: 0.0 0.0;
6201                   to_x: "elm.padding.right";
6202                   to_y: "elm.padding.bottom";
6203                }
6204                align: 1.0 0.5;
6205             }
6206             GENLIST_DESCRIPTION_RENAME_ENABLED
6207          }
6208          part { name: "elm.padding.icon2.left";
6209             clip_to: "disclip";
6210             type: RECT;
6211             scale: 1;
6212             description { state: "default" 0.0;
6213                min: 10 0;
6214                fixed: 1 0;
6215                rel1.to_x: "elm.icon.2";
6216                rel2 {
6217                   relative: 0.0 1.0;
6218                   to_x: "elm.icon.2";
6219                }
6220                align: 1.0 0.0;
6221                visible: 0;
6222             }
6223          }
6224          part { name: "elm.text.1";
6225             clip_to: "disclip";
6226             type: TEXT;
6227             mouse_events: 0;
6228             scale: 1;
6229             description { state: "default" 0.0;
6230                min: 0 38;
6231                fixed: 0 1;
6232                rel1 {
6233                   relative: 1.0 1.0;
6234                   to_x: "elm.padding.icon1.right";
6235                   to_y: "elm.padding.top";
6236                }
6237                rel2 {
6238                   relative: 0.0 1.0;
6239                   to_x: "elm.padding.icon2.left";
6240                   to_y: "elm.padding.top";
6241                }
6242                align: 0.0 0.0;
6243                color: GENLIST_PART_TEXT_COLOR_INC;
6244                text {
6245                   font: "SLP:style=Roman";
6246                   size: 28;
6247                   min: 0 1;
6248                   align: 0.0 0.5;
6249                }
6250             }
6251             description { state: "selected" 0.0;
6252                inherit: "default" 0.0;
6253                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
6254             }
6255             GENLIST_DESCRIPTION_RENAME_ENABLED
6256          }
6257          part { name: "elm.text.2";
6258             clip_to: "disclip";
6259             type: TEXT;
6260             mouse_events: 0;
6261             scale: 1;
6262             description { state: "default" 0.0;
6263                rel1 {
6264                   relative: 1.0 1.0;
6265                   to_x: "elm.padding.icon1.right";
6266                   to_y: "elm.text.1";
6267                }
6268                rel2 {
6269                   relative: 0.0 0.0;
6270                   to_x: "elm.padding.icon2.left";
6271                   to_y: "elm.padding.bottom";
6272                }
6273                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
6274                text {
6275                   font: "SLP:style=Medium";
6276                   size: 20;
6277                   min: 0 1;
6278                   align: 0.0 0.5;
6279                }
6280             }
6281             description { state: "selected" 0.0;
6282                inherit: "default" 0.0;
6283                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
6284             }
6285             GENLIST_DESCRIPTION_RENAME_ENABLED
6286          }
6287          GENLIST_PART_RENAME
6288          GENLIST_PART_DISCLIP
6289       }
6290       programs {
6291          // signal: elm,state,%s,active
6292          //   a "check" item named %s went active
6293          // signal: elm,state,%s,passive
6294          //   a "check" item named %s went passive
6295          // default is passive
6296          program { name: "go_active";
6297             signal: "elm,state,selected";
6298             source: "elm";
6299             action: STATE_SET "selected" 0.0;
6300             target: "bg_image";
6301             target: "elm.text.1";
6302             target: "elm.text.2";
6303          }
6304          program { name: "go_passive";
6305             signal: "elm,state,unselected";
6306             source: "elm";
6307             action: STATE_SET "default" 0.0;
6308             target: "bg_image";
6309             target: "elm.text.1";
6310             target: "elm.text.2";
6311             transition: LINEAR 0.1;
6312          }
6313          program { name: "go_disabled";
6314             signal: "elm,state,disabled";
6315             source: "elm";
6316             action: STATE_SET "disabled" 0.0;
6317             target: "disclip";
6318          }
6319          program { name: "go_enabled";
6320             signal: "elm,state,enabled";
6321             source: "elm";
6322             action: STATE_SET "default" 0.0;
6323             target: "disclip";
6324          }
6325          GENLIST_PROGRAM_RENAME_2TEXT_2ICON
6326       }
6327    }
6328
6329    group { name: "elm/genlist/item/2text.2icon.5/default";
6330       alias: "elm/genlist/item_odd/2text.2icon.5/default";
6331       alias: "elm/genlist/item_compress/2text.2icon.5/default";
6332       alias: "elm/genlist/item_compress_odd/2text.2icon.5/default";
6333       data.item: "stacking" "above";
6334       data.item: "selectraise" "on";
6335       data.item: "labels" "elm.text.1 elm.text.2";
6336       data.item: "icons" "elm.icon.1 elm.icon.2";
6337       data.item: "renames" "elm.edit.rename";
6338       images {
6339          image: "00_list_bar_press_1x80.png" COMP;
6340       }
6341       parts {
6342          GENLIST_PART_BASE( 81 )
6343          GENLIST_PART_BG_IMAGE
6344          GENLIST_PART_BOTTOM_LINE
6345          GENLIST_PART_PADDING_TOP( 6 )
6346          GENLIST_PART_PADDING_BOTTOM( 6 )
6347          GENLIST_PART_PADDING_LEFT( 10 )
6348          GENLIST_PART_PADDING_RIGHT( 10 )
6349          part { name: "elm.icon.1";
6350             clip_to: "disclip";
6351             type: SWALLOW;
6352             scale: 1;
6353             description { state: "default" 0.0;
6354                min: 26 26;
6355                max: 26 26;
6356                fixed: 1 1;
6357                rel1 {
6358                   relative: 1.0 1.0;
6359                   to_x: "elm.padding.left";
6360                   to_y: "elm.padding.top";
6361                }
6362                rel2 {
6363                   relative: 1.0 0.0;
6364                   to_x: "elm.padding.left";
6365                   to_y: "elm.padding.bottom";
6366                }
6367                align: 0.0 0.5;
6368             }
6369             GENLIST_DESCRIPTION_RENAME_ENABLED
6370          }
6371          part { name: "elm.padding.icon1.right";
6372             clip_to: "disclip";
6373             type: RECT;
6374             scale: 1;
6375             description { state: "default" 0.0;
6376                min: 10 0;
6377                fixed: 1 0;
6378                rel1 {
6379                   relative: 1.0 0.0;
6380                   to_x: "elm.icon.1";
6381                }
6382                rel2.to_x: "elm.icon.1";
6383                align: 0.0 0.0;
6384                visible: 0;
6385             }
6386          }
6387          part { name: "elm.icon.2";
6388             clip_to: "disclip";
6389             type: SWALLOW;
6390             scale: 1;
6391             description { state: "default" 0.0;
6392                min: 40 40;
6393                max: 40 40;
6394                fixed: 1 1;
6395                rel1 {
6396                   relative: 1.0 1.0;
6397                   to_x: "elm.padding.icon1.right";
6398                   to_y: "elm.padding.top";
6399                }
6400                rel2 {
6401                   relative: 1.0 0.0;
6402                   to_x: "elm.padding.icon1.right";
6403                   to_y: "elm.padding.bottom";
6404                }
6405                align: 0.0 0.5;
6406             }
6407             GENLIST_DESCRIPTION_RENAME_ENABLED
6408          }
6409          part { name: "elm.padding.icon2.right";
6410             clip_to: "disclip";
6411             type: RECT;
6412             scale: 1;
6413             description { state: "default" 0.0;
6414                min: 10 0;
6415                fixed: 1 0;
6416                rel1 {
6417                   relative: 1.0 0.0;
6418                   to_x: "elm.icon.2";
6419                }
6420                rel2.to_x: "elm.icon.2";
6421                align: 0.0 0.0;
6422                visible: 0;
6423             }
6424          }
6425          part { name: "elm.text.1";
6426             clip_to: "disclip";
6427             type: TEXT;
6428             mouse_events: 0;
6429             scale: 1;
6430             description { state: "default" 0.0;
6431                min: 0 38;
6432                fixed: 0 1;
6433                rel1 {
6434                   relative: 1.0 1.0;
6435                   to_x: "elm.padding.icon2.right";
6436                   to_y: "elm.padding.top";
6437                }
6438                rel2 {
6439                   relative: 0.0 1.0;
6440                   to_x: "elm.padding.right";
6441                   to_y: "elm.padding.top";
6442                }
6443                align: 0.0 0.0;
6444                color: GENLIST_PART_TEXT_COLOR_INC;
6445                text {
6446                   font: "SLP:style=Roman";
6447                   size: 28;
6448                   min: 0 1;
6449                   align: 0.0 0.5;
6450                }
6451             }
6452             description { state: "selected" 0.0;
6453                inherit: "default" 0.0;
6454                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
6455             }
6456             GENLIST_DESCRIPTION_RENAME_ENABLED
6457          }
6458          part { name: "elm.text.2";
6459             clip_to: "disclip";
6460             type: TEXT;
6461             mouse_events: 0;
6462             scale: 1;
6463             description { state: "default" 0.0;
6464                rel1 {
6465                   relative: 1.0 1.0;
6466                   to_x: "elm.padding.icon2.right";
6467                   to_y: "elm.text.1";
6468                }
6469                rel2 {
6470                   relative: 0.0 0.0;
6471                   to_x: "elm.padding.right";
6472                   to_y: "elm.padding.bottom";
6473                }
6474                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
6475                text {
6476                   font: "SLP:style=Medium";
6477                   size: 20;
6478                   min: 0 1;
6479                   align: 0.0 0.5;
6480                }
6481             }
6482             description { state: "selected" 0.0;
6483                inherit: "default" 0.0;
6484                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
6485             }
6486             GENLIST_DESCRIPTION_RENAME_ENABLED
6487          }
6488          GENLIST_PART_RENAME
6489          GENLIST_PART_DISCLIP
6490       }
6491       programs {
6492          // signal: elm,state,%s,active
6493          //   a "check" item named %s went active
6494          // signal: elm,state,%s,passive
6495          //   a "check" item named %s went passive
6496          // default is passive
6497          program { name: "go_active";
6498             signal: "elm,state,selected";
6499             source: "elm";
6500             action: STATE_SET "selected" 0.0;
6501             target: "bg_image";
6502             target: "elm.text.1";
6503             target: "elm.text.2";
6504          }
6505          program { name: "go_passive";
6506             signal: "elm,state,unselected";
6507             source: "elm";
6508             action: STATE_SET "default" 0.0;
6509             target: "bg_image";
6510             target: "elm.text.1";
6511             target: "elm.text.2";
6512             transition: LINEAR 0.1;
6513          }
6514          program { name: "go_disabled";
6515             signal: "elm,state,disabled";
6516             source: "elm";
6517             action: STATE_SET "disabled" 0.0;
6518             target: "disclip";
6519          }
6520          program { name: "go_enabled";
6521             signal: "elm,state,enabled";
6522             source: "elm";
6523             action: STATE_SET "default" 0.0;
6524             target: "disclip";
6525          }
6526          GENLIST_PROGRAM_RENAME_2TEXT_2ICON
6527       }
6528    }
6529
6530    group { name: "elm/genlist/item/3text.5icon/default";
6531       alias: "elm/genlist/item_odd/3text.5icon/default";
6532       alias: "elm/genlist/item_compress/3text.5icon/default";
6533       alias: "elm/genlist/item_compress_odd/3text.5icon/default";
6534       data.item: "stacking" "above";
6535       data.item: "selectraise" "on";
6536       data.item: "labels" "elm.text.1 elm.text.2 elm.text.3";
6537       data.item: "icons" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4 elm.swallow.colorbar";
6538       data.item: "renames" "elm.edit.rename";
6539       images {
6540          image: "00_list_bar_press_1x80.png" COMP;
6541       }
6542       parts {
6543          GENLIST_PART_BASE( 81 )
6544          GENLIST_PART_BG_IMAGE
6545          GENLIST_PART_BOTTOM_LINE
6546          GENLIST_PART_PADDING_TOP( 6 )
6547          GENLIST_PART_PADDING_BOTTOM( 6 )
6548          GENLIST_PART_PADDING_LEFT( 10 )
6549          GENLIST_PART_PADDING_RIGHT( 10 )
6550          part { name: "elm.swallow.colorbar";
6551             clip_to: "disclip";
6552             type: SWALLOW;
6553             scale: 1;
6554             description { state: "default" 0.0;
6555                min: 6 13;
6556                fixed: 1 1;
6557                rel2.relative: 0.0 0.0;
6558                align: 0.0 0.0;
6559             }
6560          }
6561          part { name: "elm.text.3";
6562             clip_to: "disclip";
6563             type: TEXT;
6564             mouse_events: 0;
6565             scale: 1;
6566             description { state: "default" 0.0;
6567                min: 98 38;
6568                fixed: 1 1;
6569                rel1 {
6570                   relative: 0.0 0.0;
6571                   to_x: "elm.padding.right";
6572                   to_y: "elm.padding.bottom";
6573                }
6574                rel2 {
6575                   relative: 0.0 0.0;
6576                   to_x: "elm.padding.right";
6577                   to_y: "elm.padding.bottom";
6578                }
6579                align: 1.0 1.0;
6580                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
6581                text {
6582                   font: "SLP:style=Medium";
6583                   size: 20;
6584                   min: 0 1;
6585                   align: 1.0 0.5;
6586                }
6587             }
6588             description { state: "selected" 0.0;
6589                inherit: "default" 0.0;
6590                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
6591             }
6592             GENLIST_DESCRIPTION_RENAME_ENABLED
6593          }
6594          part { name: "elm.icon.1";
6595             clip_to: "disclip";
6596             type: SWALLOW;
6597             scale: 1;
6598             description { state: "default" 0.0;
6599                rel1 {
6600                   relative: 0.0 1.0;
6601                   to_x: "elm.padding.right";
6602                   to_y: "elm.padding.top";
6603                }
6604                rel2 {
6605                   relative: 0.0 0.0;
6606                   to_x: "elm.padding.right";
6607                   to_y: "elm.text.3";
6608                }
6609                align: 1.0 0.5;
6610             }
6611             GENLIST_DESCRIPTION_RENAME_ENABLED
6612          }
6613          part { name: "elm.padding.icon1.left";
6614             clip_to: "disclip";
6615             type: RECT;
6616             scale: 1;
6617             description { state: "default" 0.0;
6618                min: 10 0;
6619                fixed: 1 0;
6620                rel1.to_x: "elm.icon.1";
6621                rel2 {
6622                   relative: 0.0 1.0;
6623                   to_x: "elm.icon.1";
6624                }
6625                align: 1.0 0.0;
6626                visible: 0;
6627             }
6628          }
6629          part { name: "elm.text.1";
6630             clip_to: "disclip";
6631             type: TEXT;
6632             mouse_events: 0;
6633             scale: 1;
6634             description { state: "default" 0.0;
6635                min: 0 38;
6636                fixed: 0 1;
6637                rel1 {
6638                   relative: 1.0 1.0;
6639                   to_x: "elm.padding.left";
6640                   to_y: "elm.padding.top";
6641                }
6642                rel2 {
6643                   relative: 0.0 1.0;
6644                   to_x: "elm.padding.icon1.left";
6645                   to_y: "elm.padding.top";
6646                }
6647                align: 0.0 0.0;
6648                color: GENLIST_PART_TEXT_COLOR_INC;
6649                text {
6650                   font: "SLP:style=Roman";
6651                   size: 28;
6652                   min: 0 1;
6653                   align: 0.0 0.5;
6654                }
6655             }
6656             description { state: "selected" 0.0;
6657                inherit: "default" 0.0;
6658                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
6659             }
6660             GENLIST_DESCRIPTION_RENAME_ENABLED
6661          }
6662          part { name: "elm.text.2";
6663             clip_to: "disclip";
6664             type: TEXT;
6665             mouse_events: 0;
6666             scale: 1;
6667             description { state: "default" 0.0;
6668                min: 0 0;
6669                max: 280 0;
6670                fixed: 1 0;
6671                rel1 {
6672                   relative: 1.0 1.0;
6673                   to_x: "elm.padding.left";
6674                   to_y: "elm.text.1";
6675                }
6676                rel2 {
6677                   relative: 1.0 0.0;
6678                   to_x: "elm.padding.left";
6679                   to_y: "elm.padding.bottom";
6680                }
6681                align: 0.0 0.5;
6682                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
6683                text {
6684                   font: "SLP:style=Medium";
6685                   size: 20;
6686                   min: 1 1;
6687                   align: 0.0 0.5;
6688                }
6689             }
6690             description { state: "selected" 0.0;
6691                inherit: "default" 0.0;
6692                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
6693             }
6694             GENLIST_DESCRIPTION_RENAME_ENABLED
6695          }
6696          part { name: "elm.padding.icon2.left";
6697             clip_to: "disclip";
6698             type: RECT;
6699             scale: 1;
6700             description { state: "default" 0.0;
6701                min: 10 0;
6702                fixed: 1 0;
6703                rel1 {
6704                   relative: 1.0 0.0;
6705                   to_x: "elm.text.2";
6706                }
6707                rel2.to_x: "elm.text.2";
6708                align: 0.0 0.0;
6709                visible: 0;
6710             }
6711          }
6712          part { name: "elm.icon.2";
6713             clip_to: "disclip";
6714             type: SWALLOW;
6715             scale: 1;
6716             description { state: "default" 0.0;
6717                min: 20 20;
6718                max: 20 20;
6719                fixed: 1 1;
6720                rel1 {
6721                   relative: 1.0 1.0;
6722                   to_x: "elm.padding.icon2.left";
6723                   to_y: "elm.text.1";
6724                }
6725                rel2 {
6726                   relative: 1.0 0.0;
6727                   to_x: "elm.padding.icon2.left";
6728                   to_y: "elm.padding.bottom";
6729                }
6730                align: 0.0 0.5;
6731             }
6732             GENLIST_DESCRIPTION_RENAME_ENABLED
6733          }
6734          part { name: "elm.padding.icon3.left";
6735             clip_to: "disclip";
6736             type: RECT;
6737             scale: 1;
6738             description { state: "default" 0.0;
6739                min: 10 0;
6740                fixed: 1 0;
6741                rel1 {
6742                   relative: 1.0 0.0;
6743                   to_x: "elm.icon.2";
6744                }
6745                rel2.to_x: "elm.icon.2";
6746                align: 0.0 0.0;
6747                visible: 0;
6748             }
6749          }
6750          part { name: "elm.icon.3";
6751             clip_to: "disclip";
6752             type: SWALLOW;
6753             scale: 1;
6754             description { state: "default" 0.0;
6755                min: 20 20;
6756                max: 20 20;
6757                fixed: 1 1;
6758                rel1 {
6759                   relative: 1.0 1.0;
6760                   to_x: "elm.padding.icon3.left";
6761                   to_y: "elm.text.1";
6762                }
6763                rel2 {
6764                   relative: 1.0 0.0;
6765                   to_x: "elm.padding.icon3.left";
6766                   to_y: "elm.padding.bottom";
6767                }
6768                align: 0.0 0.5;
6769             }
6770             GENLIST_DESCRIPTION_RENAME_ENABLED
6771          }
6772          part { name: "elm.padding.icon4.left";
6773             clip_to: "disclip";
6774             type: RECT;
6775             scale: 1;
6776             description { state: "default" 0.0;
6777                min: 10 0;
6778                fixed: 1 0;
6779                rel1 {
6780                   relative: 1.0 0.0;
6781                   to_x: "elm.icon.3";
6782                }
6783                rel2.to_x: "elm.icon.3";
6784                align: 0.0 0.0;
6785                visible: 0;
6786             }
6787          }
6788          part { name: "elm.icon.4";
6789             clip_to: "disclip";
6790             type: SWALLOW;
6791             scale: 1;
6792             description { state: "default" 0.0;
6793                min: 20 20;
6794                max: 20 20;
6795                fixed: 1 1;
6796                rel1 {
6797                   relative: 1.0 1.0;
6798                   to_x: "elm.padding.icon4.left";
6799                   to_y: "elm.text.1";
6800                }
6801                rel2 {
6802                   relative: 1.0 0.0;
6803                   to_x: "elm.padding.icon4.left";
6804                   to_y: "elm.padding.bottom";
6805                }
6806                align: 0.0 0.5;
6807             }
6808             GENLIST_DESCRIPTION_RENAME_ENABLED
6809          }
6810          GENLIST_PART_RENAME
6811          GENLIST_PART_DISCLIP
6812       }
6813       programs {
6814          // signal: elm,state,%s,active
6815          //   a "check" item named %s went active
6816          // signal: elm,state,%s,passive
6817          //   a "check" item named %s went passive
6818          // default is passive
6819          program { name: "go_active";
6820             signal: "elm,state,selected";
6821             source: "elm";
6822             action: STATE_SET "selected" 0.0;
6823             target: "bg_image";
6824             target: "elm.text.1";
6825             target: "elm.text.2";
6826             target: "elm.text.3";
6827          }
6828          program { name: "go_passive";
6829             signal: "elm,state,unselected";
6830             source: "elm";
6831             action: STATE_SET "default" 0.0;
6832             target: "bg_image";
6833             target: "elm.text.1";
6834             target: "elm.text.2";
6835             target: "elm.text.3";
6836             transition: LINEAR 0.1;
6837          }
6838          program { name: "go_disabled";
6839             signal: "elm,state,disabled";
6840             source: "elm";
6841             action: STATE_SET "disabled" 0.0;
6842             target: "disclip";
6843          }
6844          program { name: "go_enabled";
6845             signal: "elm,state,enabled";
6846             source: "elm";
6847             action: STATE_SET "default" 0.0;
6848             target: "disclip";
6849          }
6850          GENLIST_PROGRAM_RENAME_3TEXT_2ICON
6851       }
6852    }
6853
6854    group { name: "elm/genlist/item/2text.3icon.2/default";
6855       alias: "elm/genlist/item_odd/2text.3icon.2/default";
6856       alias: "elm/genlist/item_compress/2text.3icon.2/default";
6857       alias: "elm/genlist/item_compress_odd/2text.3icon.2/default";
6858       data.item: "stacking" "above";
6859       data.item: "selectraise" "on";
6860       data.item: "labels" "elm.text.1 elm.text.2";
6861       data.item: "icons" "elm.icon.1 elm.icon.2 elm.swallow.colorbar";
6862       data.item: "renames" "elm.edit.rename";
6863       images {
6864          image: "00_list_bar_press_1x80.png" COMP;
6865       }
6866       parts {
6867          GENLIST_PART_BASE( 81 )
6868          GENLIST_PART_BG_IMAGE
6869          GENLIST_PART_BOTTOM_LINE
6870          GENLIST_PART_PADDING_TOP( 6 )
6871          GENLIST_PART_PADDING_BOTTOM( 6 )
6872          GENLIST_PART_PADDING_LEFT( 10 )
6873          GENLIST_PART_PADDING_RIGHT( 10 )
6874          part { name: "elm.swallow.colorbar";
6875             clip_to: "disclip";
6876             type: SWALLOW;
6877             scale: 1;
6878             description { state: "default" 0.0;
6879                min: 6 13;
6880                fixed: 1 1;
6881                rel2.relative: 0.0 0.0;
6882                align: 0.0 0.0;
6883             }
6884          }
6885          part { name: "elm.icon.2";
6886             clip_to: "disclip";
6887             type: SWALLOW;
6888             scale: 1;
6889             description { state: "default" 0.0;
6890                fixed: 1 1;
6891                rel1 {
6892                   relative: 0.0 1.0;
6893                   to_x: "elm.padding.right";
6894                   to_y: "elm.padding.top";
6895                }
6896                rel2 {
6897                   relative: 0.0 0.0;
6898                   to_x: "elm.padding.right";
6899                   to_y: "elm.padding.bottom";
6900                }
6901                align: 1.0 0.5;
6902             }
6903             GENLIST_DESCRIPTION_RENAME_ENABLED
6904          }
6905          part { name: "elm.padding.icon2.left";
6906             clip_to: "disclip";
6907             type: RECT;
6908             scale: 1;
6909             description { state: "default" 0.0;
6910                min: 10 0;
6911                fixed: 1 0;
6912                rel1.to_x: "elm.icon.2";
6913                rel2 {
6914                   relative: 0.0 1.0;
6915                   to_x: "elm.icon.2";
6916                }
6917                align: 1.0 0.0;
6918                visible: 0;
6919             }
6920          }
6921          part { name: "elm.text.2";
6922             clip_to: "disclip";
6923             type: TEXT;
6924             mouse_events: 0;
6925             scale: 1;
6926             description { state: "default" 0.0;
6927                min: 0 30;
6928                fixed: 0 1;
6929                rel1 {
6930                   relative: 1.0 0.0;
6931                   to_x: "elm.padding.left";
6932                   to_y: "elm.padding.bottom";
6933                }
6934                rel2 {
6935                   relative: 0.0 0.0;
6936                   to_x: "elm.padding.icon2.left";
6937                   to_y: "elm.padding.bottom";
6938                }
6939                align: 0.0 1.0;
6940                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
6941                text {
6942                   font: "SLP:style=Medium";
6943                   size: 20;
6944                   min: 0 1;
6945                   align: 0.0 0.5;
6946                }
6947             }
6948             description { state: "selected" 0.0;
6949                inherit: "default" 0.0;
6950                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
6951             }
6952             GENLIST_DESCRIPTION_RENAME_ENABLED
6953          }
6954          part { name: "elm.text.1";
6955             clip_to: "disclip";
6956             type: TEXT;
6957             mouse_events: 0;
6958             scale: 1;
6959             description { state: "default" 0.0;
6960                min: 0 0;
6961                max: 340 0;
6962                fixed: 1 0;
6963                rel1 {
6964                   relative: 1.0 1.0;
6965                   to_x: "elm.padding.left";
6966                   to_y: "elm.padding.top";
6967                }
6968                rel2 {
6969                   relative: 1.0 0.0;
6970                   to_x: "elm.padding.left";
6971                   to_y: "elm.text.2";
6972                }
6973                align: 0.0 0.5;
6974                color: GENLIST_PART_TEXT_COLOR_INC;
6975                text {
6976                   font: "SLP:style=Roman";
6977                   size: 28;
6978                   min: 1 1;
6979                   align: 0.0 0.5;
6980                }
6981             }
6982             description { state: "selected" 0.0;
6983                inherit: "default" 0.0;
6984                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
6985             }
6986             GENLIST_DESCRIPTION_RENAME_ENABLED
6987          }
6988          part { name: "elm.padding.icon1.left";
6989             clip_to: "disclip";
6990             type: RECT;
6991             scale: 1;
6992             description { state: "default" 0.0;
6993                min: 10 0;
6994                fixed: 1 0;
6995                rel1 {
6996                   relative: 1.0 0.0;
6997                   to_x: "elm.text.1";
6998                }
6999                rel2.to_x: "elm.text.1";
7000                align: 0.0 0.0;
7001                visible: 0;
7002             }
7003          }
7004          part { name: "elm.icon.1";
7005             clip_to: "disclip";
7006             type: SWALLOW;
7007             scale: 1;
7008             description { state: "default" 0.0;
7009                min: 20 20;
7010                max: 20 20;
7011                fixed: 1 1;
7012                rel1 {
7013                   relative: 1.0 1.0;
7014                   to_x: "elm.padding.icon1.left";
7015                   to_y: "elm.padding.top";
7016                }
7017                rel2 {
7018                   relative: 1.0 0.0;
7019                   to_x: "elm.padding.icon1.left";
7020                   to_y: "elm.text.2";
7021                }
7022                align: 0.0 0.5;
7023             }
7024             GENLIST_DESCRIPTION_RENAME_ENABLED
7025          }
7026          GENLIST_PART_RENAME
7027          GENLIST_PART_DISCLIP
7028       }
7029       programs {
7030          // signal: elm,state,%s,active
7031          //   a "check" item named %s went active
7032          // signal: elm,state,%s,passive
7033          //   a "check" item named %s went passive
7034          // default is passive
7035          program { name: "go_active";
7036             signal: "elm,state,selected";
7037             source: "elm";
7038             action: STATE_SET "selected" 0.0;
7039             target: "bg_image";
7040             target: "elm.text.1";
7041             target: "elm.text.2";
7042          }
7043          program { name: "go_passive";
7044             signal: "elm,state,unselected";
7045             source: "elm";
7046             action: STATE_SET "default" 0.0;
7047             target: "bg_image";
7048             target: "elm.text.1";
7049             target: "elm.text.2";
7050             transition: LINEAR 0.1;
7051          }
7052          program { name: "go_disabled";
7053             signal: "elm,state,disabled";
7054             source: "elm";
7055             action: STATE_SET "disabled" 0.0;
7056             target: "disclip";
7057          }
7058          program { name: "go_enabled";
7059             signal: "elm,state,enabled";
7060             source: "elm";
7061             action: STATE_SET "default" 0.0;
7062             target: "disclip";
7063          }
7064          GENLIST_PROGRAM_RENAME_2TEXT_2ICON
7065       }
7066    }
7067
7068    group { name: "elm/genlist/item/2text.3icon.3/default";
7069       alias: "elm/genlist/item_odd/2text.3icon.3/default";
7070       alias: "elm/genlist/item_compress/2text.3icon.3/default";
7071       alias: "elm/genlist/item_compress_odd/2text.3icon.3/default";
7072       data.item: "stacking" "above";
7073       data.item: "selectraise" "on";
7074       data.item: "labels" "elm.text.1 elm.text.2";
7075       data.item: "icons" "elm.icon.1 elm.icon.2 elm.swallow.colorbar";
7076       data.item: "renames" "elm.edit.rename";
7077       images {
7078          image: "00_list_bar_press_1x80.png" COMP;
7079       }
7080       parts {
7081          GENLIST_PART_BASE( 81 )
7082          GENLIST_PART_BG_IMAGE
7083          GENLIST_PART_BOTTOM_LINE
7084          GENLIST_PART_PADDING_TOP( 6 )
7085          GENLIST_PART_PADDING_BOTTOM( 6 )
7086          GENLIST_PART_PADDING_LEFT( 10 )
7087          GENLIST_PART_PADDING_RIGHT( 10 )
7088          part { name: "elm.swallow.colorbar";
7089             clip_to: "disclip";
7090             type: SWALLOW;
7091             scale: 1;
7092             description { state: "default" 0.0;
7093                min: 6 13;
7094                fixed: 1 1;
7095                rel2.relative: 0.0 0.0;
7096                align: 0.0 0.0;
7097             }
7098          }
7099          part { name: "elm.icon.1";
7100             clip_to: "disclip";
7101             type: SWALLOW;
7102             scale: 1;
7103             description { state: "default" 0.0;
7104                min: 40 40;
7105                max: 40 40;
7106                fixed: 1 1;
7107                rel1 {
7108                   relative: 1.0 1.0;
7109                   to_x: "elm.padding.left";
7110                   to_y: "elm.padding.top";
7111                }
7112                rel2 {
7113                   relative: 1.0 0.0;
7114                   to_x: "elm.padding.left";
7115                   to_y: "elm.padding.bottom";
7116                }
7117                align: 0.0 0.5;
7118             }
7119             GENLIST_DESCRIPTION_RENAME_ENABLED
7120          }
7121          part { name: "elm.padding.icon1.right";
7122             clip_to: "disclip";
7123             type: RECT;
7124             scale: 1;
7125             description { state: "default" 0.0;
7126                min: 10 0;
7127                fixed: 1 0;
7128                rel1 {
7129                   relative: 1.0 0.0;
7130                   to_x: "elm.icon.1";
7131                }
7132                rel2.to_x: "elm.icon.1";
7133                align: 0.0 0.0;
7134                visible: 0;
7135             }
7136          }
7137          part { name: "elm.icon.2";
7138             clip_to: "disclip";
7139             type: SWALLOW;
7140             scale: 1;
7141             description { state: "default" 0.0;
7142                min: 40 40;
7143                max: 40 40;
7144                fixed: 1 1;
7145                rel1 {
7146                   relative: 0.0 1.0;
7147                   to_x: "elm.padding.right";
7148                   to_y: "elm.padding.top";
7149                }
7150                rel2 {
7151                   relative: 0.0 1.0;
7152                   to_x: "elm.padding.right";
7153                   to_y: "elm.padding.bottom";
7154                }
7155                align: 1.0 0.5;
7156             }
7157             GENLIST_DESCRIPTION_RENAME_ENABLED
7158          }
7159          part { name: "elm.padding.icon2.left";
7160             clip_to: "disclip";
7161             type: RECT;
7162             scale: 1;
7163             description { state: "default" 0.0;
7164                min: 10 0;
7165                fixed: 1 0;
7166                rel1 {
7167                   relative: 0.0 0.0;
7168                   to_x: "elm.icon.2";
7169                }
7170                rel2.to_x: "elm.icon.2";
7171                align: 1.0 0.0;
7172                visible: 0;
7173             }
7174          }
7175          part { name: "elm.text.1";
7176             clip_to: "disclip";
7177             type: TEXT;
7178             mouse_events: 0;
7179             scale: 1;
7180             description { state: "default" 0.0;
7181                min: 0 38;
7182                fixed: 1 1;
7183                rel1 {
7184                   relative: 1.0 1.0;
7185                   to_x: "elm.padding.icon1.right";
7186                   to_y: "elm.padding.top";
7187                }
7188                rel2 {
7189                   relative: 0.0 1.0;
7190                   to_x: "elm.padding.icon2.left";
7191                   to_y: "elm.padding.top";
7192                }
7193                align: 0.0 0.0;
7194                color: GENLIST_PART_TEXT_COLOR_INC;
7195                text {
7196                   font: "SLP:style=Roman";
7197                   size: 28;
7198                   min: 0 1;
7199                   align: 0.0 0.5;
7200                }
7201             }
7202             description { state: "selected" 0.0;
7203                inherit: "default" 0.0;
7204                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
7205             }
7206             GENLIST_DESCRIPTION_RENAME_ENABLED
7207          }
7208          part { name: "elm.text.2";
7209             clip_to: "disclip";
7210             type: TEXT;
7211             mouse_events: 0;
7212             scale: 1;
7213             description { state: "default" 0.0;
7214                rel1 {
7215                   relative: 1.0 1.0;
7216                   to_x: "elm.padding.icon1.right";
7217                   to_y: "elm.text.1";
7218                }
7219                rel2 {
7220                   relative: 0.0 0.0;
7221                   to_x: "elm.padding.icon2.left";
7222                   to_y: "elm.padding.bottom";
7223                }
7224                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
7225                text {
7226                   font: "SLP:style=Medium";
7227                   size: 20;
7228                   min: 0 1;
7229                   align: 0.0 0.5;
7230                }
7231             }
7232             description { state: "selected" 0.0;
7233                inherit: "default" 0.0;
7234                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
7235             }
7236             GENLIST_DESCRIPTION_RENAME_ENABLED
7237          }
7238          GENLIST_PART_RENAME
7239          GENLIST_PART_DISCLIP
7240       }
7241       programs {
7242          // signal: elm,state,%s,active
7243          //   a "check" item named %s went active
7244          // signal: elm,state,%s,passive
7245          //   a "check" item named %s went passive
7246          // default is passive
7247          program { name: "go_active";
7248             signal: "elm,state,selected";
7249             source: "elm";
7250             action: STATE_SET "selected" 0.0;
7251             target: "bg_image";
7252             target: "elm.text.1";
7253             target: "elm.text.2";
7254          }
7255          program { name: "go_passive";
7256             signal: "elm,state,unselected";
7257             source: "elm";
7258             action: STATE_SET "default" 0.0;
7259             target: "bg_image";
7260             target: "elm.text.1";
7261             target: "elm.text.2";
7262             transition: LINEAR 0.1;
7263          }
7264          program { name: "go_disabled";
7265             signal: "elm,state,disabled";
7266             source: "elm";
7267             action: STATE_SET "disabled" 0.0;
7268             target: "disclip";
7269          }
7270          program { name: "go_enabled";
7271             signal: "elm,state,enabled";
7272             source: "elm";
7273             action: STATE_SET "default" 0.0;
7274             target: "disclip";
7275          }
7276          GENLIST_PROGRAM_RENAME_2TEXT_2ICON
7277       }
7278    }
7279
7280    group { name: "elm/genlist/item/2text.2icon.6/default";
7281       alias: "elm/genlist/item_odd/2text.2icon.6/default";
7282       alias: "elm/genlist/item_compress/2text.2icon.6/default";
7283       alias: "elm/genlist/item_compress_odd/2text.2icon.6/default";
7284       data.item: "stacking" "above";
7285       data.item: "selectraise" "on";
7286       data.item: "labels" "elm.text.1 elm.text.2";
7287       data.item: "icons" "elm.icon.1 elm.icon.2";
7288       data.item: "renames" "elm.edit.rename";
7289       images {
7290          image: "00_list_bar_press_1x80.png" COMP;
7291       }
7292       parts {
7293          GENLIST_PART_BASE( 81 )
7294          GENLIST_PART_BG_IMAGE
7295          GENLIST_PART_BOTTOM_LINE
7296          GENLIST_PART_PADDING_TOP( 6 )
7297          GENLIST_PART_PADDING_BOTTOM( 6 )
7298          GENLIST_PART_PADDING_LEFT( 10 )
7299          GENLIST_PART_PADDING_RIGHT( 10 )
7300          part { name: "elm.icon.1";
7301             clip_to: "disclip";
7302             type: SWALLOW;
7303             scale: 1;
7304             description { state: "default" 0.0;
7305                min: 40 40;
7306                max: 40 40;
7307                fixed: 1 1;
7308                rel1 {
7309                   relative: 1.0 1.0;
7310                   to_x: "elm.padding.left";
7311                   to_y: "elm.padding.top";
7312                }
7313                rel2 {
7314                   relative: 1.0 0.0;
7315                   to_x: "elm.padding.left";
7316                   to_y: "elm.padding.bottom";
7317                }
7318                align: 0.0 0.5;
7319             }
7320             GENLIST_DESCRIPTION_RENAME_ENABLED
7321          }
7322          part { name: "elm.padding.icon1.right";
7323             clip_to: "disclip";
7324             type: RECT;
7325             scale: 1;
7326             description { state: "default" 0.0;
7327                min: 10 0;
7328                fixed: 1 0;
7329                rel1 {
7330                   relative: 1.0 0.0;
7331                   to_x: "elm.icon.1";
7332                }
7333                rel2.to_x: "elm.icon.1";
7334                align: 0.0 0.0;
7335                visible: 0;
7336             }
7337          }
7338          part { name: "elm.text.1";
7339             clip_to: "disclip";
7340             type: TEXT;
7341             mouse_events: 0;
7342             scale: 1;
7343             description { state: "default" 0.0;
7344                min: 0 38;
7345                fixed: 0 1;
7346                rel1 {
7347                   relative: 1.0 1.0;
7348                   to_x: "elm.padding.icon1.right";
7349                   to_y: "elm.padding.top";
7350                }
7351                rel2 {
7352                   relative: 0.0 1.0;
7353                   to_x: "elm.padding.right";
7354                   to_y: "elm.padding.top";
7355                }
7356                align: 0.0 0.0;
7357                color: GENLIST_PART_TEXT_COLOR_INC;
7358                text {
7359                   font: "SLP:style=Roman";
7360                   size: 28;
7361                   min: 0 1;
7362                   align: 0.0 0.5;
7363                }
7364             }
7365             description { state: "selected" 0.0;
7366                inherit: "default" 0.0;
7367                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
7368             }
7369             GENLIST_DESCRIPTION_RENAME_ENABLED
7370          }
7371          part { name: "elm.icon.2";
7372             clip_to: "disclip";
7373             type: SWALLOW;
7374             scale: 1;
7375             description { state: "default" 0.0;
7376                min: 20 20;
7377                max: 20 20;
7378                fixed: 1 1;
7379                rel1 {
7380                   relative: 0.0 1.0;
7381                   to_x: "elm.padding.right";
7382                   to_y: "elm.text.1";
7383                }
7384                rel2 {
7385                   relative: 0.0 1.0;
7386                   to_x: "elm.padding.right";
7387                   to_y: "elm.padding.bottom";
7388                }
7389                align: 1.0 0.5;
7390             }
7391             GENLIST_DESCRIPTION_RENAME_ENABLED
7392          }
7393          part { name: "elm.padding.icon2.left";
7394             type: RECT;
7395             scale: 1;
7396             description { state: "default" 0.0;
7397                min: 10 0;
7398                fixed: 1 0;
7399                rel1 {
7400                   relative: 0.0 0.0;
7401                   to_x: "elm.icon.2";
7402                }
7403                rel2.to_x: "elm.icon.2";
7404                align: 1.0 0.0;
7405                visible: 0;
7406             }
7407          }
7408          part { name: "elm.text.2";
7409             clip_to: "disclip";
7410             type: TEXT;
7411             mouse_events: 0;
7412             scale: 1;
7413             description { state: "default" 0.0;
7414                rel1 {
7415                   relative: 1.0 1.0;
7416                   to_x: "elm.padding.icon1.right";
7417                   to_y: "elm.text.1";
7418                }
7419                rel2 {
7420                   relative: 0.0 0.0;
7421                   offset: 0 0;
7422                   to_x: "elm.padding.icon2.left";
7423                   to_y: "elm.padding.bottom";
7424                }
7425                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
7426                text {
7427                   font: "SLP:style=Medium";
7428                   size: 20;
7429                   min: 0 1;
7430                   align: 0.0 0.5;
7431                }
7432             }
7433             description { state: "selected" 0.0;
7434                inherit: "default" 0.0;
7435                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
7436             }
7437             GENLIST_DESCRIPTION_RENAME_ENABLED
7438          }
7439          GENLIST_PART_RENAME
7440          GENLIST_PART_DISCLIP
7441       }
7442       programs {
7443          // signal: elm,state,%s,active
7444          //   a "check" item named %s went active
7445          // signal: elm,state,%s,passive
7446          //   a "check" item named %s went passive
7447          // default is passive
7448          program { name: "go_active";
7449             signal: "elm,state,selected";
7450             source: "elm";
7451             action: STATE_SET "selected" 0.0;
7452             target: "bg_image";
7453             target: "elm.text.1";
7454             target: "elm.text.2";
7455          }
7456          program { name: "go_passive";
7457             signal: "elm,state,unselected";
7458             source: "elm";
7459             action: STATE_SET "default" 0.0;
7460             target: "bg_image";
7461             target: "elm.text.1";
7462             target: "elm.text.2";
7463             transition: LINEAR 0.1;
7464          }
7465          program { name: "go_disabled";
7466             signal: "elm,state,disabled";
7467             source: "elm";
7468             action: STATE_SET "disabled" 0.0;
7469             target: "disclip";
7470          }
7471          program { name: "go_enabled";
7472             signal: "elm,state,enabled";
7473             source: "elm";
7474             action: STATE_SET "default" 0.0;
7475             target: "disclip";
7476          }
7477          GENLIST_PROGRAM_RENAME_2TEXT_2ICON
7478       }
7479    }
7480
7481    group { name: "elm/genlist/item/2text.1icon.12/default";
7482       alias: "elm/genlist/item_odd/2text.1icon.12/default";
7483       alias: "elm/genlist/item_compress/2text.1icon.12/default";
7484       alias: "elm/genlist/item_compress_odd/2text.1icon.12/default";
7485       data.item: "stacking" "above";
7486       data.item: "selectraise" "on";
7487       data.item: "labels" "elm.text.1 elm.text.2";
7488       data.item: "icons" "elm.icon";
7489       data.item: "renames" "elm.edit.rename";
7490       images {
7491          image: "00_list_bar_press_1x80.png" COMP;
7492       }
7493       parts {
7494          GENLIST_PART_BASE( 81 )
7495          GENLIST_PART_BG_IMAGE
7496          GENLIST_PART_BOTTOM_LINE
7497          GENLIST_PART_PADDING_TOP( 6 )
7498          GENLIST_PART_PADDING_BOTTOM( 6 )
7499          GENLIST_PART_PADDING_LEFT( 10 )
7500          GENLIST_PART_PADDING_RIGHT( 10 )
7501          part { name: "elm.icon";
7502             clip_to: "disclip";
7503             type: SWALLOW;
7504             scale: 1;
7505             description { state: "default" 0.0;
7506                min: 60 60;
7507                max: 60 60;
7508                fixed: 1 1;
7509                rel1 {
7510                   relative: 0.0 1.0;
7511                   to_x: "elm.padding.right";
7512                   to_y: "elm.padding.top";
7513                }
7514                rel2 {
7515                   relative: 0.0 0.0;
7516                   to_x: "elm.padding.right";
7517                   to_y: "elm.padding.bottom";
7518                }
7519                align: 1.0 0.5;
7520             }
7521             GENLIST_DESCRIPTION_RENAME_ENABLED
7522          }
7523          part { name: "elm.padding.icon.left";
7524             clip_to: "disclip";
7525             type: RECT;
7526             scale: 1;
7527             description { state: "default" 0.0;
7528                min: 10 0;
7529                fixed: 1 0;
7530                rel1.to_x: "elm.icon";
7531                rel2 {
7532                   relative: 0.0 1.0;
7533                   to_x: "elm.icon";
7534                }
7535                align: 1.0 0.0;
7536                visible: 0;
7537             }
7538          }
7539          part { name: "elm.text.1";
7540             clip_to: "disclip";
7541             type: TEXT;
7542             mouse_events: 0;
7543             scale: 1;
7544             description { state: "default" 0.0;
7545                min: 0 38;
7546                fixed: 0 1;
7547                rel1 {
7548                   relative: 1.0 1.0;
7549                   to_x: "elm.padding.left";
7550                   to_y: "elm.padding.top";
7551                }
7552                rel2 {
7553                   relative: 0.0 1.0;
7554                   to_x: "elm.padding.icon.left";
7555                   to_y: "elm.padding.top";
7556                }
7557                align: 0.0 0.0;
7558                color: GENLIST_PART_TEXT_COLOR_INC;
7559                text {
7560                   font: "SLP:style=Roman";
7561                   size: 28;
7562                   min: 0 1;
7563                   align: 0.0 0.5;
7564                }
7565             }
7566             description { state: "selected" 0.0;
7567                inherit: "default" 0.0;
7568                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
7569             }
7570             GENLIST_DESCRIPTION_RENAME_ENABLED
7571          }
7572          part { name: "elm.text.2";
7573             clip_to: "disclip";
7574             type: TEXT;
7575             mouse_events: 0;
7576             scale: 1;
7577             description { state: "default" 0.0;
7578                rel1 {
7579                   relative: 1.0 1.0;
7580                   to_x: "elm.padding.left";
7581                   to_y: "elm.text.1";
7582                }
7583                rel2 {
7584                   relative: 0.0 0.0;
7585                   to_x: "elm.padding.icon.left";
7586                   to_y: "elm.padding.bottom";
7587                }
7588                align: 0.0 0.0;
7589                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
7590                text {
7591                   font: "SLP:style=Medium";
7592                   size: 20;
7593                   min: 0 1;
7594                   align: 0.0 0.5;
7595                }
7596             }
7597             description { state: "selected" 0.0;
7598                inherit: "default" 0.0;
7599                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
7600             }
7601             GENLIST_DESCRIPTION_RENAME_ENABLED
7602          }
7603          GENLIST_PART_RENAME
7604          GENLIST_PART_DISCLIP
7605       }
7606       programs {
7607          // signal: elm,state,%s,active
7608          //   a "check" item named %s went active
7609          // signal: elm,state,%s,passive
7610          //   a "check" item named %s went passive
7611          // default is passive
7612          program { name: "go_active";
7613             signal: "elm,state,selected";
7614             source: "elm";
7615             action: STATE_SET "selected" 0.0;
7616             target: "bg_image";
7617             target: "elm.text.1";
7618             target: "elm.text.2";
7619          }
7620          program { name: "go_passive";
7621             signal: "elm,state,unselected";
7622             source: "elm";
7623             action: STATE_SET "default" 0.0;
7624             target: "bg_image";
7625             target: "elm.text.1";
7626             target: "elm.text.2";
7627             transition: LINEAR 0.1;
7628          }
7629          program { name: "go_disabled";
7630             signal: "elm,state,disabled";
7631             source: "elm";
7632             action: STATE_SET "disabled" 0.0;
7633             target: "disclip";
7634          }
7635          program { name: "go_enabled";
7636             signal: "elm,state,enabled";
7637             source: "elm";
7638             action: STATE_SET "default" 0.0;
7639             target: "disclip";
7640          }
7641          GENLIST_PROGRAM_RENAME_2TEXT_1ICON
7642       }
7643    }
7644
7645    group { name: "elm/genlist/item/2text.3icon/default";
7646       alias: "elm/genlist/item_odd/2text.3icon/default";
7647       alias: "elm/genlist/item_compress/2text.3icon/default";
7648       alias: "elm/genlist/item_compress_odd/2text.3icon/default";
7649       data.item: "stacking" "above";
7650       data.item: "selectraise" "on";
7651       data.item: "labels" "elm.text.1 elm.text.2";
7652       data.item: "icons" "elm.icon.1 elm.icon.2 elm.icon.3";
7653       data.item: "renames" "elm.edit.rename";
7654       images {
7655          image: "00_list_bar_press_1x80.png" COMP;
7656       }
7657       parts {
7658          GENLIST_PART_BASE( 81 )
7659          GENLIST_PART_BG_IMAGE
7660          GENLIST_PART_BOTTOM_LINE
7661          GENLIST_PART_PADDING_TOP( 6 )
7662          GENLIST_PART_PADDING_BOTTOM( 6 )
7663          GENLIST_PART_PADDING_LEFT( 10 )
7664          GENLIST_PART_PADDING_RIGHT( 10 )
7665          part { name: "elm.icon.3";
7666             clip_to: "disclip";
7667             type: SWALLOW;
7668             scale: 1;
7669             description { state: "default" 0.0;
7670                min: 60 60;
7671                max: 60 60;
7672                fixed: 1 1;
7673                rel1 {
7674                   relative: 0.0 1.0;
7675                   to_x: "elm.padding.right";
7676                   to_y: "elm.padding.top";
7677                }
7678                rel2 {
7679                   relative: 0.0 1.0;
7680                   to_x: "elm.padding.right";
7681                   to_y: "elm.padding.bottom";
7682                }
7683                align: 1.0 0.5;
7684             }
7685             GENLIST_DESCRIPTION_RENAME_ENABLED
7686          }
7687          part { name: "elm.padding.icon3.left";
7688             clip_to: "disclip";
7689             type: RECT;
7690             scale: 1;
7691             description { state: "default" 0.0;
7692                min: 10 0;
7693                fixed: 1 0;
7694                rel1.to_x: "elm.icon.3";
7695                rel2 {
7696                   relative: 0.0 1.0;
7697                   to_x: "elm.icon.3";
7698                }
7699                align: 1.0 0.0;
7700                visible: 0;
7701             }
7702          }
7703          part { name: "elm.text.2";
7704             clip_to: "disclip";
7705             type: TEXT;
7706             mouse_events: 0;
7707             scale: 1;
7708             description { state: "default" 0.0;
7709                min: 0 30;
7710                fixed: 1 1;
7711                rel1 {
7712                   relative: 1.0 0.0;
7713                   to_x: "elm.padding.icon2.right";
7714                   to_y: "elm.padding.bottom";
7715                }
7716                rel2 {
7717                   relative: 0.0 0.0;
7718                   to_x: "elm.padding.icon3.left";
7719                   to_y: "elm.padding.bottom";
7720                }
7721                align: 0.0 1.0;
7722                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
7723                text {
7724                   font: "SLP:style=Medium";
7725                   size: 20;
7726                   min: 0 1;
7727                   align: 0.0 0.5;
7728                }
7729             }
7730             description { state: "selected" 0.0;
7731                inherit: "default" 0.0;
7732                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
7733             }
7734             GENLIST_DESCRIPTION_RENAME_ENABLED
7735          }
7736          part { name: "elm.icon.2";
7737             clip_to: "disclip";
7738             type: SWALLOW;
7739             scale: 1;
7740             description { state: "default" 0.0;
7741                min: 20 20;
7742                max: 20 20;
7743                fixed: 1 1;
7744                rel1 {
7745                   relative: 1.0 0.0;
7746                   to_x: "elm.padding.left";
7747                   to_y: "elm.text.2";
7748                }
7749                rel2 {
7750                   relative: 1.0 0.0;
7751                   to_x: "elm.padding.left";
7752                   to_y: "elm.padding.bottom";
7753                }
7754                align: 0.0 0.5;
7755             }
7756             GENLIST_DESCRIPTION_RENAME_ENABLED
7757          }
7758          part { name: "elm.padding.icon2.right";
7759             clip_to: "disclip";
7760             type: RECT;
7761             scale: 1;
7762             description { state: "default" 0.0;
7763                min: 10 0;
7764                fixed: 1 0;
7765                rel1 {
7766                   relative: 1.0 0.0;
7767                   to_x: "elm.icon.2";
7768                }
7769                rel2.to_x: "elm.icon.2";
7770                align: 0.0 0.0;
7771                visible: 0;
7772             }
7773          }
7774          part { name: "elm.text.1";
7775             clip_to: "disclip";
7776             type: TEXT;
7777             mouse_events: 0;
7778             scale: 1;
7779             description { state: "default" 0.0;
7780                min: 0 0;
7781                max: 360 0;
7782                fixed: 1 0;
7783                rel1 {
7784                   relative: 1.0 1.0;
7785                   to_x: "elm.padding.left";
7786                   to_y: "elm.padding.top";
7787                }
7788                rel2 {
7789                   relative: 1.0 0.0;
7790                   to_x: "elm.padding.left";
7791                   to_y: "elm.text.2";
7792                }
7793                align: 0.0 0.5;
7794                color: GENLIST_PART_TEXT_COLOR_INC;
7795                text {
7796                   font: "SLP:style=Roman";
7797                   size: 28;
7798                   min: 1 1;
7799                   align: 0.0 0.5;
7800                }
7801             }
7802             description { state: "selected" 0.0;
7803                inherit: "default" 0.0;
7804                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
7805             }
7806             GENLIST_DESCRIPTION_RENAME_ENABLED
7807          }
7808
7809          part { name: "elm.padding.icon1.left";
7810             type: RECT;
7811             scale: 1;
7812             description { state: "default" 0.0;
7813                min: 10 0;
7814                fixed: 1 0;
7815                rel1 {
7816                   relative: 1.0 0.0;
7817                   to_x: "elm.text.1";
7818                }
7819                rel2.to_x: "elm.text.1";
7820                align: 0.0 0.0;
7821                visible: 0;
7822             }
7823          }
7824          part { name: "elm.icon.1";
7825             clip_to: "disclip";
7826             type: SWALLOW;
7827             scale: 1;
7828             description { state: "default" 0.0;
7829                min: 20 20;
7830                max: 20 20;
7831                fixed: 1 1;
7832                rel1 {
7833                   relative: 1.0 1.0;
7834                   to_x: "elm.padding.icon1.left";
7835                   to_y: "elm.padding.top";
7836                }
7837                rel2 {
7838                   relative: 1.0 0.0;
7839                   to_x: "elm.padding.icon1.left";
7840                   to_y: "elm.text.2";
7841                }
7842                align: 0.0 0.5;
7843             }
7844             GENLIST_DESCRIPTION_RENAME_ENABLED
7845          }
7846          GENLIST_PART_RENAME
7847          GENLIST_PART_DISCLIP
7848       }
7849       programs {
7850          // signal: elm,state,%s,active
7851          //   a "check" item named %s went active
7852          // signal: elm,state,%s,passive
7853          //   a "check" item named %s went passive
7854          // default is passive
7855          program { name: "go_active";
7856             signal: "elm,state,selected";
7857             source: "elm";
7858             action: STATE_SET "selected" 0.0;
7859             target: "bg_image";
7860             target: "elm.text.1";
7861             target: "elm.text.2";
7862          }
7863          program { name: "go_passive";
7864             signal: "elm,state,unselected";
7865             source: "elm";
7866             action: STATE_SET "default" 0.0;
7867             target: "bg_image";
7868             target: "elm.text.1";
7869             target: "elm.text.2";
7870             transition: LINEAR 0.1;
7871          }
7872          program { name: "go_disabled";
7873             signal: "elm,state,disabled";
7874             source: "elm";
7875             action: STATE_SET "disabled" 0.0;
7876             target: "disclip";
7877          }
7878          program { name: "go_enabled";
7879             signal: "elm,state,enabled";
7880             source: "elm";
7881             action: STATE_SET "default" 0.0;
7882             target: "disclip";
7883          }
7884          GENLIST_PROGRAM_RENAME_2TEXT_3ICON
7885       }
7886    }
7887
7888    group { name: "elm/genlist/item/2text.1icon.5/default";
7889       alias: "elm/genlist/item_odd/2text.1icon.5/default";
7890       alias: "elm/genlist/item_compress/2text.1icon.5/default";
7891       alias: "elm/genlist/item_compress_odd/2text.1icon.5/default";
7892       data.item: "stacking" "above";
7893       data.item: "selectraise" "on";
7894       data.item: "labels" "elm.text.1 elm.text.2";
7895       data.item: "icons" "elm.icon";
7896       data.item: "renames" "elm.edit.rename";
7897       images {
7898          image: "00_list_bar_press_1x80.png" COMP;
7899       }
7900       parts {
7901          GENLIST_PART_BASE( 81 )
7902          GENLIST_PART_BG_IMAGE
7903          GENLIST_PART_BOTTOM_LINE
7904          GENLIST_PART_PADDING_TOP( 6 )
7905          GENLIST_PART_PADDING_BOTTOM( 6 )
7906          GENLIST_PART_PADDING_LEFT( 10 )
7907          GENLIST_PART_PADDING_RIGHT( 10 )
7908          part { name: "elm.icon";
7909             clip_to: "disclip";
7910             type: SWALLOW;
7911             scale: 1;
7912             description { state: "default" 0.0;
7913                min: 40 40;
7914                max: 40 40;
7915                fixed: 1 1;
7916                rel1 {
7917                   relative: 0.0 1.0;
7918                   to_x: "elm.padding.right";
7919                   to_y: "elm.padding.top";
7920                }
7921                rel2 {
7922                   relative: 0.0 0.0;
7923                   to_x: "elm.padding.right";
7924                   to_y: "elm.padding.bottom";
7925                }
7926                align: 1.0 0.5;
7927             }
7928             GENLIST_DESCRIPTION_RENAME_ENABLED
7929          }
7930          part { name: "elm.padding.icon.left";
7931             clip_to: "disclip";
7932             type: RECT;
7933             scale: 1;
7934             description { state: "default" 0.0;
7935                min: 10 0;
7936                fixed: 1 0;
7937                rel1.to_x: "elm.icon";
7938                rel2 {
7939                   relative: 0.0 1.0;
7940                   to_x: "elm.icon";
7941                }
7942                align: 1.0 0.0;
7943                visible: 0;
7944             }
7945          }
7946          part { name: "elm.text.1";
7947             clip_to: "disclip";
7948             type: TEXT;
7949             mouse_events: 0;
7950             scale: 1;
7951             description { state: "default" 0.0;
7952                min: 0 38;
7953                fixed: 0 1;
7954                rel1 {
7955                   relative: 1.0 0.0;
7956                   to_x: "elm.padding.left";
7957                   to_y: "elm.padding.bottom";
7958                }
7959                rel2 {
7960                   relative: 0.0 0.0;
7961                   to_x: "elm.padding.icon.left";
7962                   to_y: "elm.padding.bottom";
7963                }
7964                align: 0.0 1.0;
7965                color: GENLIST_PART_TEXT_COLOR_INC;
7966                text {
7967                   font: "SLP:style=Roman";
7968                   size: 28;
7969                   min: 0 1;
7970                   align: 0.0 0.5;
7971                }
7972             }
7973             description { state: "selected" 0.0;
7974                inherit: "default" 0.0;
7975                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
7976             }
7977             GENLIST_DESCRIPTION_RENAME_ENABLED
7978          }
7979          part { name: "elm.text.2";
7980             clip_to: "disclip";
7981             type: TEXT;
7982             mouse_events: 0;
7983             scale: 1;
7984             description { state: "default" 0.0;
7985                rel1 {
7986                   relative: 1.0 1.0;
7987                   to_x: "elm.padding.left";
7988                   to_y: "elm.padding.top";
7989                }
7990                rel2 {
7991                   relative: 0.0 0.0;
7992                   to_x: "elm.padding.icon.left";
7993                   to_y: "elm.text.1";
7994                }
7995                align: 0.0 1.0;
7996                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
7997                text {
7998                   font: "SLP:style=Medium";
7999                   size: 20;
8000                   min: 0 1;
8001                   align: 0.0 0.5;
8002                }
8003             }
8004             description { state: "selected" 0.0;
8005                inherit: "default" 0.0;
8006                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
8007             }
8008             GENLIST_DESCRIPTION_RENAME_ENABLED
8009          }
8010          GENLIST_PART_RENAME
8011          GENLIST_PART_DISCLIP
8012       }
8013       programs {
8014          // signal: elm,state,%s,active
8015          //   a "check" item named %s went active
8016          // signal: elm,state,%s,passive
8017          //   a "check" item named %s went passive
8018          // default is passive
8019          program { name: "go_active";
8020             signal: "elm,state,selected";
8021             source: "elm";
8022             action: STATE_SET "selected" 0.0;
8023             target: "bg_image";
8024             target: "elm.text.1";
8025             target: "elm.text.2";
8026          }
8027          program { name: "go_passive";
8028             signal: "elm,state,unselected";
8029             source: "elm";
8030             action: STATE_SET "default" 0.0;
8031             target: "bg_image";
8032             target: "elm.text.1";
8033             target: "elm.text.2";
8034             transition: LINEAR 0.1;
8035          }
8036          program { name: "go_disabled";
8037             signal: "elm,state,disabled";
8038             source: "elm";
8039             action: STATE_SET "disabled" 0.0;
8040             target: "disclip";
8041          }
8042          program { name: "go_enabled";
8043             signal: "elm,state,enabled";
8044             source: "elm";
8045             action: STATE_SET "default" 0.0;
8046             target: "disclip";
8047          }
8048          GENLIST_PROGRAM_RENAME_2TEXT_1ICON
8049       }
8050    }
8051
8052    group { name: "elm/genlist/item/1text.3icon.3/default";
8053       alias: "elm/genlist/item_odd/1text.3icon.3/default";
8054       alias: "elm/genlist/item_compress/1text.3icon.3/default";
8055       alias: "elm/genlist/item_compress_odd/1text.3icon.3/default";
8056       data.item: "stacking" "above";
8057       data.item: "selectraise" "on";
8058       data.item: "labels" "elm.text.1";
8059       data.item: "icons" "elm.icon.1 elm.icon.2 elm.swallow.progress";
8060       data.item: "renames" "elm.edit.rename";
8061       images {
8062          image: "00_list_bar_press_1x80.png" COMP;
8063       }
8064       parts {
8065          GENLIST_PART_BASE( 81 )
8066          GENLIST_PART_BG_IMAGE
8067          GENLIST_PART_BOTTOM_LINE
8068          GENLIST_PART_PADDING_TOP( 6 )
8069          GENLIST_PART_PADDING_BOTTOM( 6 )
8070          GENLIST_PART_PADDING_LEFT( 10 )
8071          GENLIST_PART_PADDING_RIGHT( 10 )
8072          part { name: "elm.icon.1";
8073             clip_to: "disclip";
8074             type: SWALLOW;
8075             scale: 1;
8076             description { state: "default" 0.0;
8077                min: 40 40;
8078                max: 40 40;
8079                fixed: 1 1;
8080                rel1 {
8081                   relative: 1.0 1.0;
8082                   to_x: "elm.padding.left";
8083                   to_y: "elm.padding.top";
8084                }
8085                rel2 {
8086                   relative: 1.0 0.0;
8087                   to_x: "elm.padding.left";
8088                   to_y: "elm.padding.bottom";
8089                }
8090                align: 0.0 0.5;
8091             }
8092             GENLIST_DESCRIPTION_RENAME_ENABLED
8093          }
8094          part { name: "elm.padding.icon1.right";
8095             clip_to: "disclip";
8096             type: RECT;
8097             scale: 1;
8098             description { state: "default" 0.0;
8099                min: 10 0;
8100                fixed: 1 0;
8101                rel1 {
8102                   relative: 1.0 0.0;
8103                   to_x: "elm.icon.1";
8104                }
8105                rel2.to_x: "elm.icon.1";
8106                align: 0.0 0.0;
8107                visible: 0;
8108             }
8109          }
8110          part { name: "elm.icon.2";
8111             clip_to: "disclip";
8112             type: SWALLOW;
8113             scale: 1;
8114             description { state: "default" 0.0;
8115                fixed: 1 1;
8116                rel1 {
8117                   relative: 0.0 1.0;
8118                   to_x: "elm.padding.right";
8119                   to_y: "elm.padding.top";
8120                }
8121                rel2 {
8122                   relative: 0.0 0.0;
8123                   to_x: "elm.padding.right";
8124                   to_y: "elm.padding.bottom";
8125                }
8126                align: 1.0 0.5;
8127             }
8128             GENLIST_DESCRIPTION_RENAME_ENABLED
8129          }
8130          part { name: "elm.padding.icon2.left";
8131             clip_to: "disclip";
8132             type: RECT;
8133             scale: 1;
8134             description { state: "default" 0.0;
8135                min: 10 0;
8136                fixed: 1 0;
8137                rel1.to_x: "elm.icon.2";
8138                rel2 {
8139                   relative: 0.0 1.0;
8140                   to_x: "elm.icon.2";
8141                }
8142                align: 1.0 0.0;
8143                visible: 0;
8144             }
8145          }
8146          part { name: "elm.text.1";
8147             clip_to: "disclip";
8148             type: TEXT;
8149             mouse_events: 0;
8150             scale: 1;
8151             description { state: "default" 0.0;
8152                min: 0 38;
8153                fixed: 0 1;
8154                rel1 {
8155                   relative: 1.0 1.0;
8156                   to_x: "elm.padding.icon1.right";
8157                   to_y: "elm.padding.top";
8158                }
8159                rel2 {
8160                   relative: 0.0 1.0;
8161                   to_x: "elm.padding.icon2.left";
8162                   to_y: "elm.padding.top";
8163                }
8164                align: 0 0;
8165                color: GENLIST_PART_TEXT_COLOR_INC;
8166                text {
8167                   font: "SLP:style=Roman";
8168                   size: 28;
8169                   min: 0 1;
8170                   align: 0.0 0.5;
8171                }
8172             }
8173             description { state: "selected" 0.0;
8174                inherit: "default" 0.0;
8175                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
8176             }
8177             GENLIST_DESCRIPTION_RENAME_ENABLED
8178          }
8179          part { name: "elm.swallow.progress";
8180             clip_to: "disclip";
8181             type: SWALLOW;
8182             scale: 1;
8183             description { state: "default" 0.0;
8184                fixed: 0 1;
8185                rel1 {
8186                   relative: 1.0 1.0;
8187                   to_x: "elm.padding.icon1.right";
8188                   to_y: "elm.text.1";
8189                }
8190                rel2 {
8191                   relative: 0.0 1.0;
8192                   to_x: "elm.padding.icon2.left";
8193                   to_y: "elm.text.1";
8194                }
8195                align: 0.5 0.0;
8196             }
8197             GENLIST_DESCRIPTION_RENAME_ENABLED
8198          }
8199          GENLIST_PART_RENAME
8200          GENLIST_PART_DISCLIP
8201       }
8202       programs {
8203          // signal: elm,state,%s,active
8204          //   a "check" item named %s went active
8205          // signal: elm,state,%s,passive
8206          //   a "check" item named %s went passive
8207          // default is passive
8208          program { name: "go_active";
8209             signal: "elm,state,selected";
8210             source: "elm";
8211             action: STATE_SET "selected" 0.0;
8212             target: "bg_image";
8213             target: "elm.text.1";
8214          }
8215          program { name: "go_passive";
8216             signal: "elm,state,unselected";
8217             source: "elm";
8218             action: STATE_SET "default" 0.0;
8219             target: "bg_image";
8220             target: "elm.text.1";
8221             transition: LINEAR 0.1;
8222          }
8223          program { name: "go_disabled";
8224             signal: "elm,state,disabled";
8225             source: "elm";
8226             action: STATE_SET "disabled" 0.0;
8227             target: "disclip";
8228          }
8229          program { name: "go_enabled";
8230             signal: "elm,state,enabled";
8231             source: "elm";
8232             action: STATE_SET "default" 0.0;
8233             target: "disclip";
8234          }
8235          program { name: "rename_enabled";
8236             signal: "elm,state,rename,enabled";
8237             source: "elm";
8238             action: STATE_SET "rename_enabled" 0.0;
8239             target: "elm.text.1";
8240             target: "elm.icon.1";
8241             target: "elm.icon.2";
8242             target: "elm.swallow.progress";
8243             target: "elm.edit.rename";
8244          }
8245          program { name: "rename_disabled";
8246             signal: "elm,state,rename,disabled";
8247             source: "elm";
8248             action: STATE_SET "default" 0.0;
8249             target: "elm.text.1";
8250             target: "elm.icon.1";
8251             target: "elm.icon.2";
8252             target: "elm.swallow.progress";
8253             target: "elm.edit.rename";
8254          }
8255       }
8256    }
8257
8258    group { name: "elm/genlist/item/2text.2icon.8/default";
8259       alias: "elm/genlist/item_odd/2text.2icon.8/default";
8260       alias: "elm/genlist/item_compress/2text.2icon.8/default";
8261       alias: "elm/genlist/item_compress_odd/2text.2icon.8/default";
8262       data.item: "stacking" "above";
8263       data.item: "selectraise" "on";
8264       data.item: "labels" "elm.text.1 elm.text.2";
8265       data.item: "icons" "elm.icon.1 elm.icon.2";
8266       data.item: "renames" "elm.edit.rename";
8267       images {
8268          image: "00_list_bar_press_1x80.png" COMP;
8269       }
8270       parts {
8271          GENLIST_PART_BASE( 81 )
8272          GENLIST_PART_BG_IMAGE
8273          GENLIST_PART_BOTTOM_LINE
8274          GENLIST_PART_PADDING_TOP( 6 )
8275          GENLIST_PART_PADDING_BOTTOM( 6 )
8276          GENLIST_PART_PADDING_LEFT( 10 )
8277          GENLIST_PART_PADDING_RIGHT( 10 )
8278          part { name: "elm.icon.1";
8279             clip_to: "disclip";
8280             type: SWALLOW;
8281             scale: 1;
8282             description { state: "default" 0.0;
8283                min: 40 40;
8284                max: 40 40;
8285                fixed: 1 1;
8286                rel1 {
8287                   relative: 1.0 1.0;
8288                   to_x: "elm.padding.left";
8289                   to_y: "elm.padding.top";
8290                }
8291                rel2 {
8292                   relative: 1.0 0.0;
8293                   to_x: "elm.padding.left";
8294                   to_y: "elm.padding.bottom";
8295                }
8296                align: 0.0 0.5;
8297             }
8298             GENLIST_DESCRIPTION_RENAME_ENABLED
8299          }
8300          part { name: "elm.padding.icon1.right";
8301             clip_to: "disclip";
8302             type: RECT;
8303             scale: 1;
8304             description { state: "default" 0.0;
8305                min: 10 0;
8306                fixed: 1 0;
8307                rel1 {
8308                   relative: 1.0 0.0;
8309                   to_x: "elm.icon.1";
8310                }
8311                rel2.to_x: "elm.icon.1";
8312                align: 0.0 0.0;
8313                visible: 0;
8314             }
8315          }
8316          part { name: "elm.icon.2";
8317             clip_to: "disclip";
8318             type: SWALLOW;
8319             scale: 1;
8320             description { state: "default" 0.0;
8321                fixed: 1 1;
8322                rel1 {
8323                   relative: 0.0 1.0;
8324                   to_x: "elm.padding.right";
8325                   to_y: "elm.padding.top";
8326                }
8327                rel2 {
8328                   relative: 0.0 0.0;
8329                   to_x: "elm.padding.right";
8330                   to_y: "elm.padding.bottom";
8331                }
8332                align: 1.0 0.5;
8333             }
8334             GENLIST_DESCRIPTION_RENAME_ENABLED
8335          }
8336          part { name: "elm.padding.icon2.left";
8337             clip_to: "disclip";
8338             type: RECT;
8339             scale: 1;
8340             description { state: "default" 0.0;
8341                min: 10 0;
8342                fixed: 1 0;
8343                rel1.to_x: "elm.icon.2";
8344                rel2 {
8345                   relative: 0.0 1.0;
8346                   to_x: "elm.icon.2";
8347                }
8348                align: 1.0 0.0;
8349                visible: 0;
8350             }
8351          }
8352          part { name: "elm.text.1";
8353             clip_to: "disclip";
8354             type: TEXT;
8355             mouse_events: 0;
8356             scale: 1;
8357             description { state: "default" 0.0;
8358                min: 0 38;
8359                fixed: 0 1;
8360                rel1 {
8361                   relative: 1.0 1.0;
8362                   to_x: "elm.padding.icon1.right";
8363                   to_y: "elm.padding.top";
8364                }
8365                rel2 {
8366                   relative: 0.0 1.0;
8367                   to_x: "elm.padding.icon2.left";
8368                   to_y: "elm.padding.top";
8369                }
8370                align: 0.0 0.0;
8371                color: GENLIST_PART_TEXT_COLOR_INC;
8372                text {
8373                   font: "SLP:style=Roman";
8374                   size: 28;
8375                   min: 0 1;
8376                   align: 0.0 0.5;
8377                }
8378             }
8379             description { state: "selected" 0.0;
8380                inherit: "default" 0.0;
8381                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
8382             }
8383             GENLIST_DESCRIPTION_RENAME_ENABLED
8384          }
8385          part { name: "elm.text.2";
8386             clip_to: "disclip";
8387             type: TEXT;
8388             mouse_events: 0;
8389             scale: 1;
8390             description { state: "default" 0.0;
8391                rel1 {
8392                   relative: 1.0 1.0;
8393                   to_x: "elm.padding.icon1.right";
8394                   to_y: "elm.text.1";
8395                }
8396                rel2 {
8397                   relative: 0.0 0.0;
8398                   to_x: "elm.padding.icon2.left";
8399                   to_y: "elm.padding.bottom";
8400                }
8401                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
8402                text {
8403                   font: "SLP:style=Medium";
8404                   size: 20;
8405                   min: 0 1;
8406                   align: 0.0 0.5;
8407                }
8408             }
8409             description { state: "selected" 0.0;
8410                inherit: "default" 0.0;
8411                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
8412             }
8413             GENLIST_DESCRIPTION_RENAME_ENABLED
8414          }
8415          GENLIST_PART_RENAME
8416          GENLIST_PART_DISCLIP
8417       }
8418       programs {
8419          // signal: elm,state,%s,active
8420          //   a "check" item named %s went active
8421          // signal: elm,state,%s,passive
8422          //   a "check" item named %s went passive
8423          // default is passive
8424          program { name: "go_active";
8425             signal: "elm,state,selected";
8426             source: "elm";
8427             action: STATE_SET "selected" 0.0;
8428             target: "bg_image";
8429             target: "elm.text.1";
8430             target: "elm.text.2";
8431          }
8432          program { name: "go_passive";
8433             signal: "elm,state,unselected";
8434             source: "elm";
8435             action: STATE_SET "default" 0.0;
8436             target: "bg_image";
8437             target: "elm.text.1";
8438             target: "elm.text.2";
8439             transition: LINEAR 0.1;
8440          }
8441          program { name: "go_disabled";
8442             signal: "elm,state,disabled";
8443             source: "elm";
8444             action: STATE_SET "disabled" 0.0;
8445             target: "disclip";
8446          }
8447          program { name: "go_enabled";
8448             signal: "elm,state,enabled";
8449             source: "elm";
8450             action: STATE_SET "default" 0.0;
8451             target: "disclip";
8452          }
8453          GENLIST_PROGRAM_RENAME_2TEXT_2ICON
8454       }
8455    }
8456
8457    group { name: "elm/genlist/item/1text.2icon.5/default";
8458       alias: "elm/genlist/item_odd/1text.2icon.5/default";
8459       alias: "elm/genlist/item_compress/1text.2icon.5/default";
8460       alias: "elm/genlist/item_compress_odd/1text.2icon.5/default";
8461       data.item: "stacking" "above";
8462       data.item: "selectraise" "on";
8463       data.item: "labels" "elm.text.1";
8464       data.item: "icons" "elm.icon.1 elm.swallow.progress";
8465       data.item: "renames" "elm.edit.rename";
8466       images {
8467          image: "00_list_bar_press_1x80.png" COMP;
8468       }
8469       parts {
8470          GENLIST_PART_BASE( 81 )
8471          GENLIST_PART_BG_IMAGE
8472          GENLIST_PART_BOTTOM_LINE
8473          GENLIST_PART_PADDING_TOP( 6 )
8474          GENLIST_PART_PADDING_BOTTOM( 6 )
8475          GENLIST_PART_PADDING_LEFT( 10 )
8476          GENLIST_PART_PADDING_RIGHT( 10 )
8477          part { name: "elm.icon.1";
8478             clip_to: "disclip";
8479             type: SWALLOW;
8480             scale: 1;
8481             description { state: "default" 0.0;
8482                min: 40 40;
8483                max: 40 40;
8484                fixed: 1 1;
8485                rel1 {
8486                   relative: 1.0 1.0;
8487                   to_x: "elm.padding.left";
8488                   to_y: "elm.padding.top";
8489                }
8490                rel2 {
8491                   relative: 1.0 0.0;
8492                   to_x: "elm.padding.left";
8493                   to_y: "elm.padding.bottom";
8494                }
8495                align: 0.0 0.5;
8496             }
8497             GENLIST_DESCRIPTION_RENAME_ENABLED
8498          }
8499          part { name: "elm.padding.icon1.right";
8500             clip_to: "disclip";
8501             type: RECT;
8502             scale: 1;
8503             description { state: "default" 0.0;
8504                min: 10 0;
8505                fixed: 1 0;
8506                rel1 {
8507                   relative: 1.0 0.0;
8508                   to_x: "elm.icon.1";
8509                }
8510                rel2.to_x: "elm.icon.1";
8511                align: 0.0 0.0;
8512                visible: 0;
8513             }
8514          }
8515          part { name: "elm.text.1";
8516             clip_to: "disclip";
8517             type: TEXT;
8518             mouse_events: 0;
8519             scale: 1;
8520             description { state: "default" 0.0;
8521                min: 0 38;
8522                fixed: 0 1;
8523                rel1 {
8524                   relative: 1.0 1.0;
8525                   to_x: "elm.padding.icon1.right";
8526                   to_y: "elm.padding.top";
8527                }
8528                rel2 {
8529                   relative: 0.0 1.0;
8530                   to_x: "elm.padding.right";
8531                   to_y: "elm.padding.top";
8532                }
8533                align: 0 0;
8534                color: GENLIST_PART_TEXT_COLOR_INC;
8535                text {
8536                   font: "SLP:style=Roman";
8537                   size: 28;
8538                   min: 0 1;
8539                   align: 0.0 0.5;
8540                }
8541             }
8542             description { state: "selected" 0.0;
8543                inherit: "default" 0.0;
8544                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
8545             }
8546             GENLIST_DESCRIPTION_RENAME_ENABLED
8547          }
8548          part { name: "elm.swallow.progress";
8549             clip_to: "disclip";
8550             type: SWALLOW;
8551             scale: 1;
8552             description { state: "default" 0.0;
8553                fixed: 0 1;
8554                rel1 {
8555                   relative: 1.0 1.0;
8556                   to_x: "elm.padding.icon1.right";
8557                   to_y: "elm.text.1";
8558                }
8559                rel2 {
8560                   relative: 0.0 1.0;
8561                   to_x: "elm.padding.right";
8562                   to_y: "elm.text.1";
8563                }
8564                align: 0.5 0.0;
8565             }
8566             GENLIST_DESCRIPTION_RENAME_ENABLED
8567          }
8568          GENLIST_PART_RENAME
8569          GENLIST_PART_DISCLIP
8570       }
8571       programs {
8572          // signal: elm,state,%s,active
8573          //   a "check" item named %s went active
8574          // signal: elm,state,%s,passive
8575          //   a "check" item named %s went passive
8576          // default is passive
8577          program { name: "go_active";
8578             signal: "elm,state,selected";
8579             source: "elm";
8580             action: STATE_SET "selected" 0.0;
8581             target: "bg_image";
8582             target: "elm.text.1";
8583          }
8584          program { name: "go_passive";
8585             signal: "elm,state,unselected";
8586             source: "elm";
8587             action: STATE_SET "default" 0.0;
8588             target: "bg_image";
8589             target: "elm.text.1";
8590             transition: LINEAR 0.1;
8591          }
8592          program { name: "go_disabled";
8593             signal: "elm,state,disabled";
8594             source: "elm";
8595             action: STATE_SET "disabled" 0.0;
8596             target: "disclip";
8597          }
8598          program { name: "go_enabled";
8599             signal: "elm,state,enabled";
8600             source: "elm";
8601             action: STATE_SET "default" 0.0;
8602             target: "disclip";
8603          }
8604          program { name: "rename_enabled";
8605             signal: "elm,state,rename,enabled";
8606             source: "elm";
8607             action: STATE_SET "rename_enabled" 0.0;
8608             target: "elm.text.1";
8609             target: "elm.icon.1";
8610             target: "elm.swallow.progress";
8611             target: "elm.edit.rename";
8612          }
8613          program { name: "rename_disabled";
8614             signal: "elm,state,rename,disabled";
8615             source: "elm";
8616             action: STATE_SET "default" 0.0;
8617             target: "elm.text.1";
8618             target: "elm.icon.1";
8619             target: "elm.swallow.progress";
8620             target: "elm.edit.rename";
8621          }
8622       }
8623    }
8624
8625    group { name: "elm/genlist/item_compress/multiline/2text/default";
8626       alias: "elm/genlist/item_compress_odd/multiline/2text/default";
8627       alias: "elm/genlist/item_compress/multiline.2text/default";
8628       alias: "elm/genlist/item_compress_odd/multiline.2text/default";
8629       data.item: "stacking" "above";
8630       data.item: "selectraise" "on";
8631       data.item: "labels" "elm.text.1 elm.text.2";
8632       styles {
8633         style { name: "genlist_textblock_sub_style";
8634           base: "font=SLP:style=Regular font_size=22 color="GENLIST_PART_MULTILINE_TITLE_STYLE_COLOR_INC" wrap=char text_class=list_item";
8635           tag:  "br" "\n";
8636           tag:  "ps" "ps";
8637           tag:  "tab" "\t";
8638         }
8639         style { name: "genlist_textblock_sub_selected_style";
8640           base: "font=SLP:style=Regular font_size=22 color="GENLIST_PART_MULTILINE_TITLE_STYLE_SELECTED_COLOR_INC" wrap=char text_class=list_item";
8641           tag:  "br" "\n";
8642           tag:  "ps" "ps";
8643           tag:  "tab" "\t";
8644         }
8645       }
8646       parts {
8647          part { name: "base";
8648             type: RECT;
8649             repeat_events: 1;
8650             description { state: "default" 0.0;
8651                color: GENLIST_PART_BG_COLOR_INC;
8652             }
8653          }
8654          GENLIST_PART_BG_IMAGE
8655          GENLIST_PART_BOTTOM_LINE
8656          GENLIST_PART_PADDING_TOP( 10 )
8657          GENLIST_PART_PADDING_BOTTOM( 11 )
8658          GENLIST_PART_PADDING_LEFT( 10 )
8659          GENLIST_PART_PADDING_RIGHT( 10 )
8660          part { name: "elm.text.1";
8661             clip_to: "disclip";
8662             type: TEXT;
8663             mouse_events: 0;
8664             scale: 1;
8665             description { state: "default" 0.0;
8666                min: 0 38;
8667                fixed: 0 1;
8668                rel1 {
8669                   relative: 1.0 1.0;
8670                   to_x: "elm.padding.left";
8671                   to_y: "elm.padding.top";
8672                }
8673                rel2 {
8674                   relative: 0.0 1.0;
8675                   to_x: "elm.padding.right";
8676                   to_y: "elm.padding.top";
8677                }
8678                align: 0.0 0.0;
8679                color: GENLIST_PART_TEXT_COLOR_INC;
8680                text {
8681                   font: "SLP:style=Regular";
8682                   size: 26;
8683                   min: 0 1;
8684                   align: 0.0 0.5;
8685                }
8686             }
8687             description { state: "selected" 0.0;
8688                inherit: "default" 0.0;
8689                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
8690             }
8691          }
8692          part { name: "elm.text.2";
8693             clip_to: "disclip";
8694             type: TEXTBLOCK;
8695             mouse_events: 0;
8696             scale: 1;
8697             description { state: "default" 0.0;
8698                rel1 {
8699                   relative: 1.0 1.0;
8700                   to_x: "elm.padding.left";
8701                   to_y: "elm.text.1";
8702                }
8703                rel2 {
8704                   relative: 0.0 0.0;
8705                   to_x: "elm.padding.right";
8706                   to_y: "elm.padding.bottom";
8707                }
8708                text {
8709                   style: "genlist_textblock_sub_style";
8710                   min: 0 1;
8711                   align: 0.0 0.5;
8712                }
8713             }
8714             description { state: "selected" 0.0;
8715                inherit: "default" 0.0;
8716                text.style: "genlist_textblock_sub_selected_style";
8717             }
8718          }
8719          GENLIST_PART_DISCLIP
8720       }
8721       programs {
8722          // signal: elm,state,%s,active
8723          //   a "check" item named %s went active
8724          // signal: elm,state,%s,passive
8725          //   a "check" item named %s went passive
8726          // default is passive
8727          program { name: "go_active";
8728             signal: "elm,state,selected";
8729             source: "elm";
8730             action: STATE_SET "selected" 0.0;
8731             target: "bg_image";
8732             target: "elm.text.1";
8733             target: "elm.text.2";
8734          }
8735          program { name: "go_passive";
8736             signal: "elm,state,unselected";
8737             source: "elm";
8738             action: STATE_SET "default" 0.0;
8739             target: "bg_image";
8740             target: "elm.text.1";
8741             target: "elm.text.2";
8742             transition: LINEAR 0.1;
8743          }
8744          program { name: "go_disabled";
8745             signal: "elm,state,disabled";
8746             source: "elm";
8747             action: STATE_SET "disabled" 0.0;
8748             target: "disclip";
8749          }
8750          program { name: "go_enabled";
8751             signal: "elm,state,enabled";
8752             source: "elm";
8753             action: STATE_SET "default" 0.0;
8754             target: "disclip";
8755          }
8756       }
8757    }
8758
8759    group { name: "elm/genlist/item/multiline/3text.2icon/default";
8760       alias: "elm/genlist/item_odd/multiline/3text.2icon/default";
8761       alias: "elm/genlist/item_compress/multiline/3text.2icon/default";
8762       alias: "elm/genlist/item_compress_odd/multiline/3text.2icon/default";
8763       data.item: "stacking" "above";
8764       data.item: "selectraise" "on";
8765       data.item: "labels" "elm.text.1 elm.text.2 elm.text.3";
8766       data.item: "icons" "elm.icon.1 elm.icon.2";
8767       data.item: "renames" "elm.edit.rename";
8768       images {
8769          image: "00_list_bar_press_1x80.png" COMP;
8770       }
8771       parts {
8772          GENLIST_PART_BASE( 111 )
8773          GENLIST_PART_BG_IMAGE
8774          GENLIST_PART_BOTTOM_LINE
8775          GENLIST_PART_PADDING_TOP( 10 )
8776          GENLIST_PART_PADDING_BOTTOM( 10 )
8777          GENLIST_PART_PADDING_LEFT( 10 )
8778          GENLIST_PART_PADDING_RIGHT( 10 )
8779          part { name: "elm.icon.2";
8780             clip_to: "disclip";
8781             type: SWALLOW;
8782             scale: 1;
8783             description { state: "default" 0.0;
8784                min: 90 90;
8785                max: 90 90;
8786                fixed: 1 1;
8787                rel1 {
8788                   relative: 0.0 1.0;
8789                   to_x: "elm.padding.right";
8790                   to_y: "elm.padding.top";
8791                }
8792                rel2 {
8793                   relative: 0.0 0.0;
8794                   to_x: "elm.padding.right";
8795                   to_y: "elm.padding.bottom";
8796                }
8797                align: 1.0 0.5;
8798             }
8799             GENLIST_DESCRIPTION_RENAME_ENABLED
8800          }
8801          part { name: "elm.padding.icon2.left";
8802             clip_to: "disclip";
8803             type: RECT;
8804             scale: 1;
8805             description { state: "default" 0.0;
8806                min: 10 0;
8807                fixed: 1 0;
8808                rel1.to_x: "elm.icon.2";
8809                rel2 {
8810                   relative: 0.0 1.0;
8811                   to_x: "elm.icon.2";
8812                }
8813                align: 1.0 0.0;
8814                visible: 0;
8815             }
8816          }
8817          part { name: "elm.text.1.rect";
8818             clip_to: "disclip";
8819             type: RECT;
8820             scale: 1;
8821             description { state: "default" 0.0;
8822                min: 0 30;
8823                fixed: 0 1;
8824                rel1 {
8825                   relative: 1.0 1.0;
8826                   to_x: "elm.padding.left";
8827                   to_y: "elm.padding.top";
8828                }
8829                rel2 {
8830                   relative: 0.0 1.0;
8831                   to_x: "elm.padding.icon2.left";
8832                   to_y: "elm.padding.top";
8833                }
8834                align: 0.0 0.0;
8835                visible: 0;
8836             }
8837          }
8838          part { name: "elm.text.1";
8839             clip_to: "disclip";
8840             type: TEXT;
8841             mouse_events: 0;
8842             scale: 1;
8843             description { state: "default" 0.0;
8844                fixed: 1 1;
8845                rel1.to: "elm.text.1.rect";
8846                rel2.to: "elm.text.1.rect";
8847                align: 0.0 0.0;
8848                color: GENLIST_PART_TEXT_COLOR_INC;
8849                text {
8850                   font: "SLP:style=Roman";
8851                   size: 26;
8852                   min: 0 1;
8853                   align: 0.0 0.5;
8854                }
8855             }
8856             description { state: "selected" 0.0;
8857                inherit: "default" 0.0;
8858                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
8859             }
8860             GENLIST_DESCRIPTION_RENAME_ENABLED
8861          }
8862          part { name: "elm.text.2";
8863             clip_to: "disclip";
8864             type: TEXT;
8865             mouse_events: 0;
8866             scale: 1;
8867             description { state: "default" 0.0;
8868                min: 0 30;
8869                fixed: 0 1;
8870                rel1 {
8871                   relative: 1.0 1.0;
8872                   to_x: "elm.padding.left";
8873                   to_y: "elm.text.1.rect";
8874                }
8875                rel2 {
8876                   relative: 0.0 1.0;
8877                   to_x: "elm.padding.icon2.left";
8878                   to_y: "elm.text.1.rect";
8879                }
8880                align: 0.0 0.0;
8881                color: GENLIST_PART_TEXT_COLOR_INC;
8882                text {
8883                   font: "SLP:style=Roman";
8884                   size: 26;
8885                   min: 0 1;
8886                   align: 0.0 0.5;
8887                }
8888             }
8889             description { state: "selected" 0.0;
8890                inherit: "default" 0.0;
8891                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
8892             }
8893             GENLIST_DESCRIPTION_RENAME_ENABLED
8894          }
8895          part { name: "elm.text.3";
8896             clip_to: "disclip";
8897             type: TEXT;
8898             mouse_events: 0;
8899             scale: 1;
8900             description { state: "default" 0.0;
8901                min: 0 22;
8902                fixed: 0 1;
8903                rel1 {
8904                   relative: 1.0 0.0;
8905                   to_x: "elm.padding.icon1.right";
8906                   to_y: "elm.padding.bottom";
8907                }
8908                rel2 {
8909                   relative: 0.0 0.0;
8910                   to_x: "elm.padding.icon2.left";
8911                   to_y: "elm.padding.bottom";
8912                }
8913                align: 0.0 1.0;
8914                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
8915                text {
8916                   font: "SLP:style=Medium";
8917                   size: 20;
8918                   min: 0 1;
8919                   align: 0.0 0.5;
8920                }
8921             }
8922             description { state: "selected" 0.0;
8923                inherit: "default" 0.0;
8924                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
8925             }
8926             GENLIST_DESCRIPTION_RENAME_ENABLED
8927          }
8928          part { name: "elm.icon.1";
8929             clip_to: "disclip";
8930             type: SWALLOW;
8931             scale: 1;
8932             description { state: "default" 0.0;
8933                min: 20 20;
8934                max: 20 20;
8935                fixed: 1 1;
8936                rel1 {
8937                   relative: 1.0 1.0;
8938                   to_x: "elm.padding.left";
8939                   to_y: "elm.text.2";
8940                }
8941                rel2 {
8942                   relative: 1.0 0.0;
8943                   to_x: "elm.padding.left";
8944                   to_y: "elm.padding.bottom";
8945                }
8946                align: 0.0 0.5;
8947             }
8948             GENLIST_DESCRIPTION_RENAME_ENABLED
8949          }
8950          part { name: "elm.padding.icon1.right";
8951             clip_to: "disclip";
8952             type: RECT;
8953             scale: 1;
8954             description { state: "default" 0.0;
8955                min: 10 0;
8956                fixed: 1 0;
8957                rel1 {
8958                   relative: 1.0 0.0;
8959                   to_x: "elm.icon.1";
8960                }
8961                rel2.to_x: "elm.icon.1";
8962                align: 0.0 0.0;
8963                visible: 0;
8964             }
8965          }
8966          GENLIST_PART_RENAME
8967          GENLIST_PART_DISCLIP
8968       }
8969       programs {
8970          // signal: elm,state,%s,active
8971          //   a "check" item named %s went active
8972          // signal: elm,state,%s,passive
8973          //   a "check" item named %s went passive
8974          // default is passive
8975          program { name: "go_active";
8976             signal: "elm,state,selected";
8977             source: "elm";
8978             action: STATE_SET "selected" 0.0;
8979             target: "bg_image";
8980             target: "elm.text.1";
8981             target: "elm.text.2";
8982             target: "elm.text.3";
8983          }
8984          program { name: "go_passive";
8985             signal: "elm,state,unselected";
8986             source: "elm";
8987             action: STATE_SET "default" 0.0;
8988             target: "bg_image";
8989             target: "elm.text.1";
8990             target: "elm.text.2";
8991             target: "elm.text.3";
8992             transition: LINEAR 0.1;
8993          }
8994          program { name: "go_disabled";
8995             signal: "elm,state,disabled";
8996             source: "elm";
8997             action: STATE_SET "disabled" 0.0;
8998             target: "disclip";
8999          }
9000          program { name: "go_enabled";
9001             signal: "elm,state,enabled";
9002             source: "elm";
9003             action: STATE_SET "default" 0.0;
9004             target: "disclip";
9005          }
9006          GENLIST_PROGRAM_RENAME_3TEXT_2ICON
9007       }
9008    }
9009
9010    group { name: "elm/genlist/item/multiline/3text.2icon.2/default";
9011       alias: "elm/genlist/item_odd/multiline/3text.2icon.2/default";
9012       alias: "elm/genlist/item_compress/multiline/3text.2icon.2/default";
9013       alias: "elm/genlist/item_compress_odd/multiline/3text.2icon.2/default";
9014       data.item: "stacking" "above";
9015       data.item: "selectraise" "on";
9016       data.item: "labels" "elm.text.1 elm.text.2 elm.text.3";
9017       data.item: "icons" "elm.icon.1 elm.icon.2";
9018       data.item: "renames" "elm.edit.rename";
9019       images {
9020          image: "00_list_bar_press_1x80.png" COMP;
9021       }
9022       parts {
9023          GENLIST_PART_BASE( 111 )
9024          GENLIST_PART_BG_IMAGE
9025          GENLIST_PART_BOTTOM_LINE
9026          GENLIST_PART_PADDING_TOP( 10 )
9027          GENLIST_PART_PADDING_BOTTOM( 10 )
9028          GENLIST_PART_PADDING_LEFT( 10 )
9029          GENLIST_PART_PADDING_RIGHT( 10 )
9030          part { name: "elm.icon.2";
9031             clip_to: "disclip";
9032             type: SWALLOW;
9033             scale: 1;
9034             description { state: "default" 0.0;
9035                min: 90 90;
9036                max: 90 90;
9037                fixed: 1 1;
9038                rel1 {
9039                   relative: 0.0 1.0;
9040                   to_x: "elm.padding.right";
9041                   to_y: "elm.padding.top";
9042                }
9043                rel2 {
9044                   relative: 0.0 0.0;
9045                   to_x: "elm.padding.right";
9046                   to_y: "elm.padding.bottom";
9047                }
9048                align: 1.0 0.5;
9049             }
9050             GENLIST_DESCRIPTION_RENAME_ENABLED
9051          }
9052          part { name: "elm.padding.icon2.left";
9053             clip_to: "disclip";
9054             type: RECT;
9055             scale: 1;
9056             description { state: "default" 0.0;
9057                min: 10 0;
9058                fixed: 1 0;
9059                rel1.to_x: "elm.icon.2";
9060                rel2 {
9061                   relative: 0.0 1.0;
9062                   to_x: "elm.icon.2";
9063                }
9064                align: 1.0 0.0;
9065                visible: 0;
9066             }
9067          }
9068          part { name: "elm.text.1.rect";
9069             clip_to: "disclip";
9070             type: RECT;
9071             scale: 1;
9072             description { state: "default" 0.0;
9073                min: 0 30;
9074                fixed: 0 1;
9075                rel1 {
9076                   relative: 1.0 1.0;
9077                   to_x: "elm.padding.left";
9078                   to_y: "elm.padding.top";
9079                }
9080                rel2 {
9081                   relative: 0.0 1.0;
9082                   to_x: "elm.padding.icon2.left";
9083                   to_y: "elm.padding.top";
9084                }
9085                align: 0.0 0.0;
9086                visible: 0;
9087             }
9088          }
9089          part { name: "elm.text.1";
9090             clip_to: "disclip";
9091             type: TEXT;
9092             mouse_events: 0;
9093             scale: 1;
9094             description { state: "default" 0.0;
9095                fixed: 1 1;
9096                rel1.to: "elm.text.1.rect";
9097                rel2.to: "elm.text.1.rect";
9098                align: 0.0 0.0;
9099                color: GENLIST_PART_TEXT_COLOR_INC;
9100                text {
9101                   font: "SLP:style=Roman";
9102                   size: 26;
9103                   min: 0 1;
9104                   align: 0.0 0.5;
9105                }
9106             }
9107             description { state: "selected" 0.0;
9108                inherit: "default" 0.0;
9109                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
9110             }
9111             GENLIST_DESCRIPTION_RENAME_ENABLED
9112          }
9113          part { name: "elm.text.2";
9114             clip_to: "disclip";
9115             type: TEXT;
9116             mouse_events: 0;
9117             scale: 1;
9118             description { state: "default" 0.0;
9119                min: 0 30;
9120                fixed: 0 1;
9121                rel1 {
9122                   relative: 1.0 1.0;
9123                   to_x: "elm.padding.left";
9124                   to_y: "elm.text.1.rect";
9125                }
9126                rel2 {
9127                   relative: 0.0 1.0;
9128                   to_x: "elm.padding.icon2.left";
9129                   to_y: "elm.text.1.rect";
9130                }
9131                align: 0.0 0.0;
9132                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
9133                text {
9134                   font: "SLP:style=Roman";
9135                   size: 26;
9136                   min: 0 1;
9137                   align: 0.0 0.5;
9138                }
9139             }
9140             description { state: "selected" 0.0;
9141                inherit: "default" 0.0;
9142                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
9143             }
9144             GENLIST_DESCRIPTION_RENAME_ENABLED
9145          }
9146          part { name: "elm.text.3";
9147             clip_to: "disclip";
9148             type: TEXT;
9149             mouse_events: 0;
9150             scale: 1;
9151             description { state: "default" 0.0;
9152                min: 0 22;
9153                fixed: 0 1;
9154                rel1 {
9155                   relative: 1.0 0.0;
9156                   to_x: "elm.padding.icon1.right";
9157                   to_y: "elm.padding.bottom";
9158                }
9159                rel2 {
9160                   relative: 0.0 0.0;
9161                   to_x: "elm.padding.icon2.left";
9162                   to_y: "elm.padding.bottom";
9163                }
9164                align: 0.0 1.0;
9165                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
9166                text {
9167                   font: "SLP:style=Medium";
9168                   size: 20;
9169                   min: 0 1;
9170                   align: 0.0 0.5;
9171                }
9172             }
9173             description { state: "selected" 0.0;
9174                inherit: "default" 0.0;
9175                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
9176             }
9177             GENLIST_DESCRIPTION_RENAME_ENABLED
9178          }
9179          part { name: "elm.icon.1";
9180             clip_to: "disclip";
9181             type: SWALLOW;
9182             scale: 1;
9183             description { state: "default" 0.0;
9184                min: 20 20;
9185                max: 20 20;
9186                fixed: 1 1;
9187                rel1 {
9188                   relative: 1.0 1.0;
9189                   to_x: "elm.padding.left";
9190                   to_y: "elm.text.2";
9191                }
9192                rel2 {
9193                   relative: 1.0 0.0;
9194                   to_x: "elm.padding.left";
9195                   to_y: "elm.padding.bottom";
9196                }
9197                align: 0.0 0.5;
9198             }
9199             GENLIST_DESCRIPTION_RENAME_ENABLED
9200          }
9201          part { name: "elm.padding.icon1.right";
9202             clip_to: "disclip";
9203             type: RECT;
9204             scale: 1;
9205             description { state: "default" 0.0;
9206                min: 10 0;
9207                fixed: 1 0;
9208                rel1 {
9209                   relative: 1.0 0.0;
9210                   to_x: "elm.icon.1";
9211                }
9212                rel2.to_x: "elm.icon.1";
9213                align: 0.0 0.0;
9214                visible: 0;
9215             }
9216          }
9217          GENLIST_PART_RENAME
9218          GENLIST_PART_DISCLIP
9219       }
9220       programs {
9221          // signal: elm,state,%s,active
9222          //   a "check" item named %s went active
9223          // signal: elm,state,%s,passive
9224          //   a "check" item named %s went passive
9225          // default is passive
9226          program { name: "go_active";
9227             signal: "elm,state,selected";
9228             source: "elm";
9229             action: STATE_SET "selected" 0.0;
9230             target: "bg_image";
9231             target: "elm.text.1";
9232             target: "elm.text.2";
9233             target: "elm.text.3";
9234          }
9235          program { name: "go_passive";
9236             signal: "elm,state,unselected";
9237             source: "elm";
9238             action: STATE_SET "default" 0.0;
9239             target: "bg_image";
9240             target: "elm.text.1";
9241             target: "elm.text.2";
9242             target: "elm.text.3";
9243             transition: LINEAR 0.1;
9244          }
9245          program { name: "go_disabled";
9246             signal: "elm,state,disabled";
9247             source: "elm";
9248             action: STATE_SET "disabled" 0.0;
9249             target: "disclip";
9250          }
9251          program { name: "go_enabled";
9252             signal: "elm,state,enabled";
9253             source: "elm";
9254             action: STATE_SET "default" 0.0;
9255             target: "disclip";
9256          }
9257          GENLIST_PROGRAM_RENAME_3TEXT_2ICON
9258       }
9259    }
9260
9261    group { name: "elm/genlist/item/multiline/3text.1icon/default";
9262       alias: "elm/genlist/item_odd/multiline/3text.1icon/default";
9263       alias: "elm/genlist/item_compress/multiline/3text.1icon/default";
9264       alias: "elm/genlist/item_compress_odd/multiline/3text.1icon/default";
9265       data.item: "stacking" "above";
9266       data.item: "selectraise" "on";
9267       data.item: "labels" "elm.text.1 elm.text.2 elm.text.3";
9268       data.item: "icons" "elm.icon";
9269       data.item: "renames" "elm.edit.rename";
9270       images {
9271          image: "00_list_bar_press_1x80.png" COMP;
9272       }
9273       parts {
9274          GENLIST_PART_BASE( 111 )
9275          GENLIST_PART_BG_IMAGE
9276          GENLIST_PART_BOTTOM_LINE
9277          GENLIST_PART_PADDING_TOP( 10 )
9278          GENLIST_PART_PADDING_BOTTOM( 10 )
9279          GENLIST_PART_PADDING_LEFT( 10 )
9280          GENLIST_PART_PADDING_RIGHT( 10 )
9281          part { name: "elm.text.1.rect";
9282             clip_to: "disclip";
9283             type: RECT;
9284             scale: 1;
9285             description { state: "default" 0.0;
9286                min: 0 30;
9287                fixed: 0 1;
9288                rel1 {
9289                   relative: 1.0 1.0;
9290                   to_x: "elm.padding.left";
9291                   to_y: "elm.padding.top";
9292                }
9293                rel2 {
9294                   relative: 0.0 1.0;
9295                   to_x: "elm.padding.right";
9296                   to_y: "elm.padding.top";
9297                }
9298                align: 0.0 0.0;
9299                visible: 0;
9300             }
9301          }
9302          part { name: "elm.text.1";
9303             clip_to: "disclip";
9304             type: TEXT;
9305             mouse_events: 0;
9306             scale: 1;
9307             description { state: "default" 0.0;
9308                fixed: 1 1;
9309                rel1.to: "elm.text.1.rect";
9310                rel2.to: "elm.text.1.rect";
9311                align: 0.0 0.0;
9312                color: GENLIST_PART_TEXT_COLOR_INC;
9313                text {
9314                   font: "SLP:style=Roman";
9315                   size: 26;
9316                   min: 0 1;
9317                   align: 0.0 0.5;
9318                }
9319             }
9320             description { state: "selected" 0.0;
9321                inherit: "default" 0.0;
9322                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
9323             }
9324             GENLIST_DESCRIPTION_RENAME_ENABLED
9325          }
9326          part { name: "elm.text.2";
9327             clip_to: "disclip";
9328             type: TEXT;
9329             mouse_events: 0;
9330             scale: 1;
9331             description { state: "default" 0.0;
9332                min: 0 30;
9333                fixed: 0 1;
9334                rel1 {
9335                   relative: 1.0 1.0;
9336                   to_x: "elm.padding.left";
9337                   to_y: "elm.text.1.rect";
9338                }
9339                rel2 {
9340                   relative: 0.0 1.0;
9341                   to_x: "elm.padding.right";
9342                   to_y: "elm.text.1.rect";
9343                }
9344                align: 0.0 0.0;
9345                color: GENLIST_PART_TEXT_COLOR_INC;
9346                text {
9347                   font: "SLP:style=Roman";
9348                   size: 26;
9349                   min: 0 1;
9350                   align: 0.0 0.5;
9351                }
9352             }
9353             description { state: "selected" 0.0;
9354                inherit: "default" 0.0;
9355                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
9356             }
9357             GENLIST_DESCRIPTION_RENAME_ENABLED
9358          }
9359          part { name: "elm.text.3";
9360             clip_to: "disclip";
9361             type: TEXT;
9362             mouse_events: 0;
9363             scale: 1;
9364             description { state: "default" 0.0;
9365                min: 0 22;
9366                fixed: 0 1;
9367                rel1 {
9368                   relative: 1.0 0.0;
9369                   to_x: "elm.padding.icon.right";
9370                   to_y: "elm.padding.bottom";
9371                }
9372                rel2 {
9373                   relative: 0.0 0.0;
9374                   to_x: "elm.padding.right";
9375                   to_y: "elm.padding.bottom";
9376                }
9377                align: 0.0 1.0;
9378                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
9379                text {
9380                   font: "SLP:style=Medium";
9381                   size: 20;
9382                   min: 0 1;
9383                   align: 0.0 0.5;
9384                }
9385             }
9386             description { state: "selected" 0.0;
9387                inherit: "default" 0.0;
9388                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
9389             }
9390             GENLIST_DESCRIPTION_RENAME_ENABLED
9391          }
9392          part { name: "elm.icon";
9393             clip_to: "disclip";
9394             type: SWALLOW;
9395             scale: 1;
9396             description { state: "default" 0.0;
9397                min: 20 20;
9398                max: 20 20;
9399                fixed: 1 1;
9400                rel1 {
9401                   relative: 1.0 0.0;
9402                   to_x: "elm.padding.left";
9403                   to_y: "elm.text.3";
9404                }
9405                rel2 {
9406                   relative: 1.0 0.0;
9407                   to_x: "elm.padding.left";
9408                   to_y: "elm.padding.bottom";
9409                }
9410                align: 0.0 0.5;
9411             }
9412             GENLIST_DESCRIPTION_RENAME_ENABLED
9413          }
9414          part { name: "elm.padding.icon.right";
9415             clip_to: "disclip";
9416             type: RECT;
9417             scale: 1;
9418             description { state: "default" 0.0;
9419                min: 10 0;
9420                fixed: 1 0;
9421                rel1 {
9422                   relative: 1.0 0.0;
9423                   to_x: "elm.icon";
9424                }
9425                rel2.to_x: "elm.icon";
9426                align: 0.0 0.0;
9427                visible: 0;
9428             }
9429          }
9430          GENLIST_PART_RENAME
9431          GENLIST_PART_DISCLIP
9432       }
9433       programs {
9434          // signal: elm,state,%s,active
9435          //   a "check" item named %s went active
9436          // signal: elm,state,%s,passive
9437          //   a "check" item named %s went passive
9438          // default is passive
9439          program { name: "go_active";
9440             signal: "elm,state,selected";
9441             source: "elm";
9442             action: STATE_SET "selected" 0.0;
9443             target: "bg_image";
9444             target: "elm.text.1";
9445             target: "elm.text.2";
9446             target: "elm.text.3";
9447          }
9448          program { name: "go_passive";
9449             signal: "elm,state,unselected";
9450             source: "elm";
9451             action: STATE_SET "default" 0.0;
9452             target: "bg_image";
9453             target: "elm.text.1";
9454             target: "elm.text.2";
9455             target: "elm.text.3";
9456             transition: LINEAR 0.1;
9457          }
9458          program { name: "go_disabled";
9459             signal: "elm,state,disabled";
9460             source: "elm";
9461             action: STATE_SET "disabled" 0.0;
9462             target: "disclip";
9463          }
9464          program { name: "go_enabled";
9465             signal: "elm,state,enabled";
9466             source: "elm";
9467             action: STATE_SET "default" 0.0;
9468             target: "disclip";
9469          }
9470          GENLIST_PROGRAM_RENAME_3TEXT_1ICON
9471       }
9472    }
9473
9474    group { name: "elm/genlist/item/multiline/3text.1icon.2/default";
9475       alias: "elm/genlist/item_odd/multiline/3text.1icon.2/default";
9476       alias: "elm/genlist/item_compress/multiline/3text.1icon.2/default";
9477       alias: "elm/genlist/item_compress_odd/multiline/3text.1icon.2/default";
9478       data.item: "stacking" "above";
9479       data.item: "selectraise" "on";
9480       data.item: "labels" "elm.text.1 elm.text.2 elm.text.3";
9481       data.item: "icons" "elm.icon";
9482       data.item: "renames" "elm.edit.rename";
9483       images {
9484          image: "00_list_bar_press_1x80.png" COMP;
9485       }
9486       parts {
9487          GENLIST_PART_BASE( 111 )
9488          GENLIST_PART_BG_IMAGE
9489          GENLIST_PART_BOTTOM_LINE
9490          GENLIST_PART_PADDING_TOP( 10 )
9491          GENLIST_PART_PADDING_BOTTOM( 10 )
9492          GENLIST_PART_PADDING_LEFT( 10 )
9493          GENLIST_PART_PADDING_RIGHT( 10 )
9494          part { name: "elm.text.1.rect";
9495             clip_to: "disclip";
9496             type: RECT;
9497             scale: 1;
9498             description { state: "default" 0.0;
9499                min: 0 30;
9500                fixed: 0 1;
9501                rel1 {
9502                   relative: 1.0 1.0;
9503                   to_x: "elm.padding.left";
9504                   to_y: "elm.padding.top";
9505                }
9506                rel2 {
9507                   relative: 0.0 1.0;
9508                   to_x: "elm.padding.right";
9509                   to_y: "elm.padding.top";
9510                }
9511                align: 0.0 0.0;
9512                visible: 0;
9513             }
9514          }
9515          part { name: "elm.text.1";
9516             clip_to: "disclip";
9517             type: TEXT;
9518             mouse_events: 0;
9519             scale: 1;
9520             description { state: "default" 0.0;
9521                fixed: 1 1;
9522                rel1.to: "elm.text.1.rect";
9523                rel2.to: "elm.text.1.rect";
9524                align: 0.0 0.0;
9525                color: GENLIST_PART_TEXT_COLOR_INC;
9526                text {
9527                   font: "SLP:style=Roman";
9528                   size: 26;
9529                   min: 0 1;
9530                   align: 0.0 0.5;
9531                }
9532             }
9533             description { state: "selected" 0.0;
9534                inherit: "default" 0.0;
9535                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
9536             }
9537             GENLIST_DESCRIPTION_RENAME_ENABLED
9538          }
9539          part { name: "elm.text.2";
9540             clip_to: "disclip";
9541             type: TEXT;
9542             mouse_events: 0;
9543             scale: 1;
9544             description { state: "default" 0.0;
9545                min: 0 30;
9546                fixed: 0 1;
9547                rel1 {
9548                   relative: 1.0 1.0;
9549                   to_x: "elm.padding.left";
9550                   to_y: "elm.text.1.rect";
9551                }
9552                rel2 {
9553                   relative: 0.0 1.0;
9554                   to_x: "elm.padding.right";
9555                   to_y: "elm.text.1.rect";
9556                }
9557                align: 0.0 0.0;
9558                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
9559                text {
9560                   font: "SLP:style=Roman";
9561                   size: 26;
9562                   min: 0 1;
9563                   align: 0.0 0.5;
9564                }
9565             }
9566             description { state: "selected" 0.0;
9567                inherit: "default" 0.0;
9568                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
9569             }
9570             GENLIST_DESCRIPTION_RENAME_ENABLED
9571          }
9572          part { name: "elm.text.3";
9573             clip_to: "disclip";
9574             type: TEXT;
9575             mouse_events: 0;
9576             scale: 1;
9577             description { state: "default" 0.0;
9578                min: 0 22;
9579                fixed: 0 1;
9580                rel1 {
9581                   relative: 1.0 0.0;
9582                   to_x: "elm.padding.icon.right";
9583                   to_y: "elm.padding.bottom";
9584                }
9585                rel2 {
9586                   relative: 0.0 0.0;
9587                   to_x: "elm.padding.right";
9588                   to_y: "elm.padding.bottom";
9589                }
9590                align: 0.0 1.0;
9591                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
9592                text {
9593                   font: "SLP:style=Medium";
9594                   size: 20;
9595                   min: 0 1;
9596                   align: 0.0 0.5;
9597                }
9598             }
9599             description { state: "selected" 0.0;
9600                inherit: "default" 0.0;
9601                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
9602             }
9603             GENLIST_DESCRIPTION_RENAME_ENABLED
9604          }
9605          part { name: "elm.icon";
9606             clip_to: "disclip";
9607             type: SWALLOW;
9608             scale: 1;
9609             description { state: "default" 0.0;
9610                min: 20 20;
9611                max: 20 20;
9612                fixed: 1 1;
9613                rel1 {
9614                   relative: 1.0 0.0;
9615                   to_x: "elm.padding.left";
9616                   to_y: "elm.text.3";
9617                }
9618                rel2 {
9619                   relative: 1.0 0.0;
9620                   to_x: "elm.padding.left";
9621                   to_y: "elm.padding.bottom";
9622                }
9623                align: 0.0 0.5;
9624             }
9625             GENLIST_DESCRIPTION_RENAME_ENABLED
9626          }
9627          part { name: "elm.padding.icon.right";
9628             clip_to: "disclip";
9629             type: RECT;
9630             scale: 1;
9631             description { state: "default" 0.0;
9632                min: 10 0;
9633                fixed: 1 0;
9634                rel1 {
9635                   relative: 1.0 0.0;
9636                   to_x: "elm.icon";
9637                }
9638                rel2.to_x: "elm.icon";
9639                align: 0.0 0.0;
9640                visible: 0;
9641             }
9642          }
9643          GENLIST_PART_RENAME
9644          GENLIST_PART_DISCLIP
9645       }
9646       programs {
9647          // signal: elm,state,%s,active
9648          //   a "check" item named %s went active
9649          // signal: elm,state,%s,passive
9650          //   a "check" item named %s went passive
9651          // default is passive
9652          program { name: "go_active";
9653             signal: "elm,state,selected";
9654             source: "elm";
9655             action: STATE_SET "selected" 0.0;
9656             target: "bg_image";
9657             target: "elm.text.1";
9658             target: "elm.text.2";
9659             target: "elm.text.3";
9660          }
9661          program { name: "go_passive";
9662             signal: "elm,state,unselected";
9663             source: "elm";
9664             action: STATE_SET "default" 0.0;
9665             target: "bg_image";
9666             target: "elm.text.1";
9667             target: "elm.text.2";
9668             target: "elm.text.3";
9669             transition: LINEAR 0.1;
9670          }
9671          program { name: "go_disabled";
9672             signal: "elm,state,disabled";
9673             source: "elm";
9674             action: STATE_SET "disabled" 0.0;
9675             target: "disclip";
9676          }
9677          program { name: "go_enabled";
9678             signal: "elm,state,enabled";
9679             source: "elm";
9680             action: STATE_SET "default" 0.0;
9681             target: "disclip";
9682          }
9683          GENLIST_PROGRAM_RENAME_3TEXT_1ICON
9684       }
9685    }
9686
9687 /*   group { name: "elm/genlist/item/multiline/1title.2text/default";
9688       alias: "elm/genlist/item_odd/multiline/1title.2text/default";
9689       alias: "elm/genlist/item_compress/multiline/1title.2text/default";
9690       alias: "elm/genlist/item_compress_odd/multiline/1title.2text/default";
9691       data.item: "stacking" "above";
9692       data.item: "selectraise" "on";
9693       data.item: "labels" "elm.title elm.text.1 elm.text.2";
9694       parts {
9695          GENLIST_PART_BASE( 142 )
9696          GENLIST_PART_BOTTOM_LINE
9697          GENLIST_PART_PADDING_LEFT( 10 )
9698          GENLIST_PART_PADDING_RIGHT( 10 )
9699          part { name: "vertical_line";
9700             clip_to: "disclip";
9701             type: RECT;
9702             mouse_events: 0;
9703             description { state: "default" 0.0;
9704                min: 1 0;
9705                fixed: 1 0;
9706                rel1 {
9707                   relative: 1.0 0.0;
9708                   to_x: "elm.title";
9709                }
9710                rel2.to_x: "elm.title";
9711                align: 0.0 0.5;
9712                color: GENLIST_PART_BOTTOM_LINE_INC;
9713             }
9714          }
9715          part { name: "center_line";
9716             clip_to: "disclip";
9717             type: RECT;
9718             mouse_events: 0;
9719             description { state: "default" 0.0;
9720                min: 0 1;
9721                fixed: 0 1;
9722                color: GENLIST_PART_BOTTOM_LINE_INC;
9723                rel1 {
9724                   relative: 1.0 0.5;
9725                   to_x: "vertical_line";
9726                }
9727                rel2.relative: 1.0 0.5;
9728                align: 0.5 1.0;
9729             }
9730          }
9731          part { name: "elm.title";
9732             clip_to: "disclip";
9733             type: TEXT;
9734             mouse_events: 0;
9735             scale: 1;
9736             description { state: "default" 0.0;
9737                min: 122 0;
9738                fixed: 1 0;
9739                rel1 {
9740                   relative: 1.0  0.0;
9741                   to_x: "elm.padding.left";
9742                }
9743                rel2.to_x: "elm.padding.left";
9744                align: 0.0 0.5;
9745                color: GENLIST_PART_MULTILINE_TITLE_STYLE_COLOR_INC;
9746                text {
9747                   font: "SLP:style=Medium";
9748                   size: 20;
9749                   min: 0 1;
9750                   align: 0.0 0.5;
9751                }
9752             }
9753          }
9754          part { name: "elm.padding.title.right";
9755             clip_to: "disclip";
9756             type: RECT;
9757             mouse_events: 0;
9758             scale: 1;
9759             description { state: "default" 0.0;
9760                min: 10 0;
9761                fixed: 1 0;
9762                rel1 {
9763                    relative: 1.0 0.0;
9764                    to_x: "elm.title";
9765                }
9766                rel2.to_x: "elm.title";
9767                visible: 0;
9768                align: 0.0 0.5;
9769             }
9770          }
9771          part { name: "elm.text.1";
9772             clip_to: "disclip";
9773             type: TEXT;
9774             mouse_events: 0;
9775             scale: 1;
9776             description { state: "default" 0.0;
9777                rel1 {
9778                   relative: 1.0 0.0;
9779                   to_x: "elm.padding.title.right";
9780                }
9781                rel2 {
9782                   relative: 0.0 0.0;
9783                   to_x: "elm.padding.right";
9784                   to_y: "center_line";
9785                }
9786                color: GENLIST_PART_TEXT_COLOR_INC;
9787                text {
9788                   font: "SLP:style=Roman";
9789                   size: 28;
9790                   min: 0 1;
9791                   align: 0.0 0.5;
9792                }
9793             }
9794          }
9795          part { name: "elm.text.2";
9796             clip_to: "disclip";
9797             type: TEXT;
9798             mouse_events: 0;
9799             scale: 1;
9800             description { state: "default" 0.0;
9801                rel1 {
9802                   relative: 1.0 0.5;
9803                   to_x: "elm.padding.title.right";
9804                }
9805                rel2 {
9806                   relative: 0.0 1.0;
9807                   to_x: "elm.padding.right";
9808                }
9809                color: GENLIST_PART_TEXT_COLOR_INC;
9810                text {
9811                   font: "SLP:style=Roman";
9812                   size: 28;
9813                   min: 0 1;
9814                   align: 0.0 0.5;
9815                }
9816             }
9817          }
9818          GENLIST_PART_DISCLIP
9819       }
9820       programs {
9821          // signal: elm,state,%s,active
9822          //   a "check" item named %s went active
9823          // signal: elm,state,%s,passive
9824          //   a "check" item named %s went passive
9825          // default is passive
9826          program { name: "go_active";
9827             signal: "elm,state,selected";
9828             source: "elm";
9829             action: STATE_SET "selected" 0.0;
9830             target: "elm.title";
9831             target: "elm.text.1";
9832             target: "elm.text.2";
9833          }
9834          program { name: "go_passive";
9835             signal: "elm,state,unselected";
9836             source: "elm";
9837             action: STATE_SET "default" 0.0;
9838             target: "elm.title";
9839             target: "elm.text.1";
9840             target: "elm.text.2";
9841             transition: LINEAR 0.1;
9842          }
9843          program { name: "go_disabled";
9844             signal: "elm,state,disabled";
9845             source: "elm";
9846             action: STATE_SET "disabled" 0.0;
9847             target: "disclip";
9848          }
9849          program { name: "go_enabled";
9850             signal: "elm,state,enabled";
9851             source: "elm";
9852             action: STATE_SET "default" 0.0;
9853             target: "disclip";
9854          }
9855       }
9856    }
9857 */
9858    group { name: "elm/genlist/item_compress/multiline/1title.1text/default";
9859       alias: "elm/genlist/item_compress_odd/multiline/1title.1text/default";
9860       data.item: "stacking" "above";
9861       data.item: "selectraise" "on";
9862       data.item: "labels" "elm.title elm.text";
9863       styles {
9864         style { name: "genlist_textblock_style";
9865           base: "font=SLP:style=Roman font_size=26 color="GENLIST_PART_MULTILINE_TEXT_STYLE_COLOR_INC" wrap=char text_class=list_item";
9866           tag:  "br" "\n";
9867           tag:  "ps" "ps";
9868           tag:  "tab" "\t";
9869         }
9870         style { name: "genlist_textblock_selected_style";
9871           base: "font=SLP:style=Roman font_size=26 color="GENLIST_PART_MULTILINE_TEXT_STYLE_SELECTED_COLOR_INC" wrap=char text_class=list_item";
9872           tag:  "br" "\n";
9873           tag:  "ps" "ps";
9874           tag:  "tab" "\t";
9875         }
9876       }
9877       parts {
9878          part { name: "base";
9879             type: RECT;
9880             repeat_events: 1;
9881             description { state: "default" 0.0;
9882                color: GENLIST_PART_BG_COLOR_INC;
9883             }
9884          }
9885          GENLIST_PART_BG_IMAGE
9886          GENLIST_PART_BOTTOM_LINE
9887          GENLIST_PART_PADDING_TOP( 10 )
9888          GENLIST_PART_PADDING_BOTTOM( 11 )
9889          GENLIST_PART_PADDING_LEFT( 10 )
9890          GENLIST_PART_PADDING_RIGHT( 10 )
9891          part { name: "elm.title";
9892             clip_to: "disclip";
9893             type: TEXT;
9894             mouse_events: 0;
9895             scale: 1;
9896             description { state: "default" 0.0;
9897                min: 122 0;
9898                fixed: 1 0;
9899                rel1 {
9900                   relative: 1.0 0.0;
9901                   to_x: "elm.padding.left";
9902                }
9903                rel2 {
9904                   relative: 1.0 1.0;
9905                   to_x: "elm.padding.left";
9906                }
9907                align: 0.0 0.0;
9908                color: GENLIST_PART_MULTILINE_TITLE_COLOR_INC;
9909                text {
9910                   font: "SLP:style=Medium";
9911                   size: 20;
9912                   min: 0 1;
9913                   align: 0.0 0.5;
9914                }
9915             }
9916             description { state: "selected" 0.0;
9917                inherit: "default" 0.0;
9918                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
9919             }
9920          }
9921          part { name: "elm.padding.title.right";
9922             clip_to: "disclip";
9923             type: RECT;
9924             mouse_events: 0;
9925             description { state: "default" 0.0;
9926                min: 10 0;
9927                fixed: 1 0;
9928                rel1 {
9929                   relative: 1.0 0.0;
9930                   to_x: "elm.title";
9931                }
9932                rel2.to_x: "elm.title";
9933                align: 0.0 0.5;
9934                visible: 0;
9935             }
9936          }
9937          part { name: "vertical_line";
9938             clip_to: "disclip";
9939             type: RECT;
9940             mouse_events: 0;
9941             description { state: "default" 0.0;
9942                min: 1 0;
9943                fixed: 1 0;
9944                rel1 {
9945                   relative: 1.0 0.0;
9946                   to_x: "elm.padding.title.right";
9947                }
9948                rel2.to_x: "elm.padding.title.right";
9949                align: 0.0 0.5;
9950                color: GENLIST_PART_BOTTOM_LINE_INC;
9951             }
9952          }
9953          part { name: "elm.padding.text.left";
9954             clip_to: "disclip";
9955             type: RECT;
9956             mouse_events: 0;
9957             description { state: "default" 0.0;
9958                min: 10 0;
9959                fixed: 1 0;
9960                rel1 {
9961                   relative: 1.0 0.0;
9962                   to_x: "vertical_line";
9963                }
9964                rel2.to_x: "vertical_line";
9965                align: 0.0 0.5;
9966                visible: 0;
9967             }
9968          }
9969          part { name: "elm.text";
9970             clip_to: "disclip";
9971             type: TEXTBLOCK;
9972             mouse_events: 0;
9973             scale: 1;
9974             description { state: "default" 0.0;
9975                rel1 {
9976                   relative: 1.0 1.0;
9977                   to_x: "elm.padding.text.left";
9978                   to_y: "elm.padding.top";
9979                }
9980                rel2 {
9981                   relative: 0.0 0.0;
9982                   to_x: "elm.padding.right";
9983                   to_y: "elm.padding.bottom";
9984                }
9985                text {
9986                   style: "genlist_textblock_style";
9987                   min: 0 1;
9988                   align: 0.0 0.5;
9989                }
9990             }
9991             description { state: "selected" 0.0;
9992                inherit: "default" 0.0;
9993                text.style: "genlist_textblock_selected_style";
9994             }
9995          }
9996          GENLIST_PART_DISCLIP
9997       }
9998       programs {
9999          // signal: elm,state,%s,active
10000          //   a "check" item named %s went active
10001          // signal: elm,state,%s,passive
10002          //   a "check" item named %s went passive
10003          // default is passive
10004          program { name: "go_active";
10005             signal: "elm,state,selected";
10006             source: "elm";
10007             action: STATE_SET "selected" 0.0;
10008             target: "bg_image";
10009             target: "elm.title";
10010             target: "elm.text";
10011          }
10012          program { name: "go_passive";
10013             signal: "elm,state,unselected";
10014             source: "elm";
10015             action: STATE_SET "default" 0.0;
10016             target: "bg_image";
10017             target: "elm.title";
10018             target: "elm.text";
10019             transition: LINEAR 0.1;
10020          }
10021          program { name: "go_disabled";
10022             signal: "elm,state,disabled";
10023             source: "elm";
10024             action: STATE_SET "disabled" 0.0;
10025             target: "disclip";
10026          }
10027          program { name: "go_enabled";
10028             signal: "elm,state,enabled";
10029             source: "elm";
10030             action: STATE_SET "default" 0.0;
10031             target: "disclip";
10032          }
10033       }
10034    }
10035
10036    group { name: "elm/genlist/item_compress/multiline/2text.1icon/default";
10037       alias: "elm/genlist/item_compress_odd/multiline/2text.1icon/default";
10038       data.item: "stacking" "above";
10039       data.item: "selectraise" "on";
10040       data.item: "labels" "elm.text.1 elm.text.2";
10041       data.item: "icons" "elm.icon";
10042       parts {
10043          part { name: "base";
10044             type: RECT;
10045             repeat_events: 1;
10046             description { state: "default" 0.0;
10047                color: GENLIST_PART_BG_COLOR_INC;
10048             }
10049          }
10050          GENLIST_PART_BG_IMAGE
10051          GENLIST_PART_BOTTOM_LINE
10052          GENLIST_PART_PADDING_TOP( 10 )
10053          GENLIST_PART_PADDING_BOTTOM( 11 )
10054          GENLIST_PART_PADDING_LEFT( 10 )
10055          GENLIST_PART_PADDING_RIGHT( 10 )
10056          part { name: "elm.text.1";
10057             clip_to: "disclip";
10058             type: TEXT;
10059             mouse_events: 0;
10060             scale: 1;
10061             description { state: "default" 0.0;
10062                min: 0 30;
10063                fixed: 0 1;
10064                rel1 {
10065                   relative: 1.0 1.0;
10066                   to_x: "elm.padding.left";
10067                   to_y: "elm.padding.top";
10068                }
10069                rel2 {
10070                   relative: 0.0 1.0;
10071                   to_x: "elm.padding.icon.left";
10072                   to_y: "elm.padding.top";
10073                }
10074                align: 0.0 0.0;
10075                color: GENLIST_PART_TEXT_COLOR_INC;
10076                text {
10077                   font: "SLP:style=Regular";
10078                   size: 26;
10079                   min: 0 1;
10080                   align: 0.0 0.5;
10081                }
10082             }
10083             description { state: "selected" 0.0;
10084                inherit: "default" 0.0;
10085                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
10086             }
10087          }
10088          part { name: "elm.icon";
10089             clip_to: "disclip";
10090             type: SWALLOW;
10091             scale: 1;
10092             description { state: "default" 0.0;
10093                fixed: 1 1;
10094                rel1 {
10095                   relative: 0.0 1.0;
10096                   to_x: "elm.padding.right";
10097                   to_y: "elm.padding.top";
10098                }
10099                rel2 {
10100                   relative: 0.0 1.0;
10101                   to_x: "elm.padding.right";
10102                   to_y: "elm.text.1";
10103                }
10104                align: 1.0 0.5;
10105             }
10106             GENLIST_DESCRIPTION_RENAME_ENABLED
10107          }
10108          part { name: "elm.padding.icon.left";
10109             clip_to: "disclip";
10110             type: RECT;
10111             scale: 1;
10112             description { state: "default" 0.0;
10113                min: 10 0;
10114                fixed: 1 0;
10115                rel1.to_x: "elm.icon";
10116                rel2 {
10117                   relative: 0.0 1.0;
10118                   to_x: "elm.icon";
10119                }
10120                align: 1.0 0.0;
10121                visible: 0;
10122             }
10123          }
10124          part { name: "elm.text.2";
10125             clip_to: "disclip";
10126             type: TEXTBLOCK;
10127             mouse_events: 0;
10128             scale: 1;
10129             description { state: "default" 0.0;
10130                rel1 {
10131                   relative: 1.0 1.0;
10132                   to_x: "elm.padding.left";
10133                   to_y: "elm.text.1";
10134                }
10135                rel2 {
10136                   relative: 0.0 0.0;
10137                   to_x: "elm.padding.right";
10138                   to_y: "elm.padding.bottom";
10139                }
10140                text {
10141                   style: "genlist_textblock_sub_style";
10142                   min: 0 1;
10143                   align: 0.0 0.5;
10144                }
10145             }
10146             description { state: "selected" 0.0;
10147                inherit: "default" 0.0;
10148                text.style: "genlist_textblock_sub_selected_style";
10149             }
10150          }
10151          GENLIST_PART_DISCLIP
10152       }
10153       programs {
10154          // signal: elm,state,%s,active
10155          //   a "check" item named %s went active
10156          // signal: elm,state,%s,passive
10157          //   a "check" item named %s went passive
10158          // default is passive
10159          program { name: "go_active";
10160             signal: "elm,state,selected";
10161             source: "elm";
10162             action: STATE_SET "selected" 0.0;
10163             target: "bg_image";
10164             target: "elm.text.1";
10165             target: "elm.text.2";
10166          }
10167          program { name: "go_passive";
10168             signal: "elm,state,unselected";
10169             source: "elm";
10170             action: STATE_SET "default" 0.0;
10171             target: "bg_image";
10172             target: "elm.text.1";
10173             target: "elm.text.2";
10174             transition: LINEAR 0.1;
10175          }
10176          program { name: "go_disabled";
10177             signal: "elm,state,disabled";
10178             source: "elm";
10179             action: STATE_SET "disabled" 0.0;
10180             target: "disclip";
10181          }
10182          program { name: "go_enabled";
10183             signal: "elm,state,enabled";
10184             source: "elm";
10185             action: STATE_SET "default" 0.0;
10186             target: "disclip";
10187          }
10188       }
10189    }
10190
10191    group { name: "elm/genlist/item_compress/multiline/2text.1icon.2/default";
10192       alias: "elm/genlist/item_compress_odd/multiline/2text.1icon.2/default";
10193       data.item: "stacking" "above";
10194       data.item: "selectraise" "on";
10195       data.item: "labels" "elm.text.1 elm.text.2";
10196       data.item: "icons" "elm.icon";
10197       parts {
10198          part { name: "base";
10199             type: RECT;
10200             repeat_events: 1;
10201             description { state: "default" 0.0;
10202                color: GENLIST_PART_BG_COLOR_INC;
10203             }
10204          }
10205          GENLIST_PART_BG_IMAGE
10206          GENLIST_PART_BOTTOM_LINE
10207          GENLIST_PART_PADDING_TOP( 10 )
10208          GENLIST_PART_PADDING_BOTTOM( 11 )
10209          GENLIST_PART_PADDING_LEFT( 10 )
10210          GENLIST_PART_PADDING_RIGHT( 10 )
10211          part { name: "elm.icon";
10212             clip_to: "disclip";
10213             type: SWALLOW;
10214             scale: 1;
10215             description { state: "default" 0.0;
10216                min: 20 20;
10217                max: 20 20;
10218                fixed: 1 1;
10219                rel1 {
10220                   relative: 1.0 1.0;
10221                   to_x: "elm.padding.left";
10222                   to_y: "elm.padding.top";
10223                }
10224                rel2 {
10225                   relative: 1.0 1.0;
10226                   to_x: "elm.padding.left";
10227                   to_y: "elm.text.1";
10228                }
10229                align: 0.0 0.5;
10230             }
10231             GENLIST_DESCRIPTION_RENAME_ENABLED
10232          }
10233          part { name: "elm.padding.icon.right";
10234             clip_to: "disclip";
10235             type: RECT;
10236             scale: 1;
10237             description { state: "default" 0.0;
10238                min: 10 0;
10239                fixed: 1 0;
10240                rel1 {
10241                   relative: 1.0 0.0;
10242                   to_x: "elm.icon";
10243                }
10244                rel2.to_x: "elm.icon";
10245                align: 0.0 0.0;
10246                visible: 0;
10247             }
10248          }
10249          part { name: "elm.text.1";
10250             clip_to: "disclip";
10251             type: TEXT;
10252             mouse_events: 0;
10253             scale: 1;
10254             description { state: "default" 0.0;
10255                min: 0 30;
10256                fixed: 0 1;
10257                rel1 {
10258                   relative: 1.0 1.0;
10259                   to_x: "elm.padding.icon.right";
10260                   to_y: "elm.padding.top";
10261                }
10262                rel2 {
10263                   relative: 0.0 1.0;
10264                   to_x: "elm.padding.right";
10265                   to_y: "elm.padding.top";
10266                }
10267                align: 0.0 0.0;
10268                color: GENLIST_PART_TEXT_COLOR_INC;
10269                text {
10270                   font: "SLP:style=Regular";
10271                   size: 26;
10272                   min: 0 1;
10273                   align: 0.0 0.5;
10274                }
10275             }
10276             description { state: "selected" 0.0;
10277                inherit: "default" 0.0;
10278                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
10279             }
10280          }
10281          part { name: "elm.text.2";
10282             clip_to: "disclip";
10283             type: TEXTBLOCK;
10284             mouse_events: 0;
10285             scale: 1;
10286             description { state: "default" 0.0;
10287                rel1 {
10288                   relative: 1.0 1.0;
10289                   to_x: "elm.padding.left";
10290                   to_y: "elm.text.1";
10291                }
10292                rel2 {
10293                   relative: 0.0 0.0;
10294                   to_x: "elm.padding.right";
10295                   to_y: "elm.padding.bottom";
10296                }
10297                text {
10298                   style: "genlist_textblock_sub_style";
10299                   min: 0 1;
10300                   align: 0.0 0.5;
10301                }
10302             }
10303             description { state: "selected" 0.0;
10304                inherit: "default" 0.0;
10305                text.style: "genlist_textblock_sub_selected_style";
10306             }
10307          }
10308          GENLIST_PART_DISCLIP
10309       }
10310       programs {
10311          // signal: elm,state,%s,active
10312          //   a "check" item named %s went active
10313          // signal: elm,state,%s,passive
10314          //   a "check" item named %s went passive
10315          // default is passive
10316          program { name: "go_active";
10317             signal: "elm,state,selected";
10318             source: "elm";
10319             action: STATE_SET "selected" 0.0;
10320             target: "bg_image";
10321             target: "elm.text.1";
10322             target: "elm.text.2";
10323          }
10324          program { name: "go_passive";
10325             signal: "elm,state,unselected";
10326             source: "elm";
10327             action: STATE_SET "default" 0.0;
10328             target: "bg_image";
10329             target: "elm.text.1";
10330             target: "elm.text.2";
10331             transition: LINEAR 0.1;
10332          }
10333          program { name: "go_disabled";
10334             signal: "elm,state,disabled";
10335             source: "elm";
10336             action: STATE_SET "disabled" 0.0;
10337             target: "disclip";
10338          }
10339          program { name: "go_enabled";
10340             signal: "elm,state,enabled";
10341             source: "elm";
10342             action: STATE_SET "default" 0.0;
10343             target: "disclip";
10344          }
10345       }
10346    }
10347
10348    group { name: "elm/genlist/item/readmessage/default";
10349       alias: "elm/genlist/item_odd/readmessage/default";
10350       alias: "elm/genlist/item_compress/readmessage/default";
10351       alias: "elm/genlist/item_compress_odd/readmessage/default";
10352
10353       data.item: "stacking" "above";
10354       data.item: "selectraise" "on";
10355       data.item: "icons" "elm.icon";
10356       parts {
10357          part { name: "base";
10358             type: RECT;
10359             repeat_events: 1;
10360             description { state: "default" 0.0;
10361                color: GENLIST_BUBBLE_BG_COLOR_INC;
10362             }
10363          }
10364          part { name: "elm.icon";
10365             clip_to: "disclip";
10366             type: SWALLOW;
10367             scale: 1;
10368             description { state: "default" 0.0;
10369                //rel1 { relative: 0.0 1.0; to_y: "elm.rect.top.pad"; }
10370                rel2 {
10371                   relative: 0.76 0.0;
10372                   to_y: "elm.padding.bottom";
10373                }
10374             }
10375          }
10376          GENLIST_PART_PADDING_BOTTOM( 15 )
10377          GENLIST_PART_DISCLIP
10378       }
10379       programs {
10380          // signal: elm,state,%s,active
10381          //   a "check" item named %s went active
10382          // signal: elm,state,%s,passive
10383          //   a "check" item named %s went passive
10384          // default is passive
10385          /*program { name: "go_active";
10386             signal: "elm,state,selected";
10387             source: "elm";
10388             action: STATE_SET "selected" 0.0;
10389             target: "bg_image";
10390          }
10391          program { name: "go_passive";
10392             signal: "elm,state,unselected";
10393             source: "elm";
10394             action: STATE_SET "default" 0.0;
10395             target: "bg_image";
10396             transition: LINEAR 0.1;
10397          }*/
10398          program { name: "go_disabled";
10399             signal: "elm,state,disabled";
10400             source: "elm";
10401             action: STATE_SET "disabled" 0.0;
10402             target: "disclip";
10403          }
10404          program { name: "go_enabled";
10405             signal: "elm,state,enabled";
10406             source: "elm";
10407             action: STATE_SET "default" 0.0;
10408             target: "disclip";
10409          }
10410       }
10411    }
10412
10413    group { name: "elm/genlist/item/sentmessage/default";
10414       alias: "elm/genlist/item_odd/sentmessage/default";
10415       alias: "elm/genlist/item_compress/sentmessage/default";
10416       alias: "elm/genlist/item_compress_odd/sentmessage/default";
10417
10418       data.item: "stacking" "above";
10419       data.item: "selectraise" "on";
10420       data.item: "icons" "elm.icon";
10421       parts {
10422          part { name: "base";
10423             type: RECT;
10424             repeat_events: 1;
10425             description { state: "default" 0.0;
10426                color: GENLIST_BUBBLE_BG_COLOR_INC;
10427             }
10428          }
10429          part { name: "elm.icon";
10430             clip_to: "disclip";
10431             type: SWALLOW;
10432             scale: 1;
10433             description { state: "default" 0.0;
10434                rel1.relative: 0.24 0.0; //to_y: "elm.rect.top.pad"; }
10435                rel2 {
10436                   relative: 1.0 0.0;
10437                   to_y: "elm.padding.bottom";
10438                }
10439             }
10440          }
10441          GENLIST_PART_PADDING_BOTTOM( 15 )
10442          GENLIST_PART_DISCLIP
10443       }
10444       programs {
10445          // signal: elm,state,%s,active
10446          //   a "check" item named %s went active
10447          // signal: elm,state,%s,passive
10448          //   a "check" item named %s went passive
10449          // default is passive
10450          /*program { name: "go_active";
10451             signal: "elm,state,selected";
10452             source: "elm";
10453             action: STATE_SET "selected" 0.0;
10454             target: "bg_image";
10455          }
10456          program { name: "go_passive";
10457             signal: "elm,state,unselected";
10458             source: "elm";
10459             action: STATE_SET "default" 0.0;
10460             target: "bg_image";
10461             transition: LINEAR 0.1;
10462          }*/
10463          program { name: "go_disabled";
10464             signal: "elm,state,disabled";
10465             source: "elm";
10466             action: STATE_SET "disabled" 0.0;
10467             target: "disclip";
10468          }
10469          program { name: "go_enabled";
10470             signal: "elm,state,enabled";
10471             source: "elm";
10472             action: STATE_SET "default" 0.0;
10473             target: "disclip";
10474          }
10475       }
10476    }
10477
10478    group { name : "elm/genlist/item/dialogue/title/default";
10479       alias: "elm/genlist/item_odd/dialogue/title/default";
10480       alias: "elm/genlist/item_compress/dialogue/title/default";
10481       alias: "elm/genlist/item_compress_odd/dialogue/title/default";
10482
10483       data.item: "stacking" "above";
10484       data.item: "selectraise" "on";
10485       data.item: "labels" "elm.text";
10486       data.item: "icons" "elm.icon";
10487       data.item: "treesize" "20";
10488
10489       parts {
10490          GENLIST_PART_DIALOGUE_BASE( 41 )
10491          GENLIST_PART_PADDING_LEFT( 10 )
10492          GENLIST_PART_PADDING_RIGHT( 10 )
10493          GENLIST_PART_BOTTOM_LINE
10494          part { name: "elm.text";
10495             type: TEXT;
10496             scale: 1;
10497             description { state: "default" 0.0;
10498                rel1 {
10499                   relative: 1.0 0.5;
10500                   to_x: "elm.padding.left";
10501                }
10502                rel2 {
10503                   relative: 0.0 1.0;
10504                   to_x: "elm.padding.right";
10505                }
10506                color: GENLIST_PART_DIALOGUE_SUBTITLE_TEXT_COLOR_INC;
10507                text {
10508                   font: "SLP:style=Medium";
10509                   size: 18;
10510                   min: 0 1;
10511                   align: 0.0 0.0;
10512                }
10513             }
10514          }
10515          part { name: "elm.icon";
10516             type: SWALLOW;
10517             scale: 1;
10518             description { state: "default" 0.0;
10519                min: 20 20;
10520                max: 20 20;
10521                fixed: 1 1;
10522                align: 1.0 1.0;
10523                rel1 {
10524                   relative: 0.0 1.0;
10525                   to_x: "elm.padding.right";
10526                }
10527                rel2 {
10528                   relative: 0.0 1.0;
10529                   to_x: "elm.padding.right";
10530                }
10531             }
10532          }
10533          GENLIST_PART_DISCLIP
10534       }
10535    }
10536
10537    group { name : "elm/genlist/item/dialogue/seperator/default";
10538       alias: "elm/genlist/item_odd/dialogue/seperator/default";
10539       alias: "elm/genlist/item_compress/dialogue/seperator/default";
10540       alias: "elm/genlist/item_compress_odd/dialogue/seperator/default";
10541
10542       data.item: "stacking" "above";
10543       data.item: "selectraise" "on";
10544       data.item: "treesize" "20";
10545
10546       parts {
10547          GENLIST_PART_DIALOGUE_BASE( 21 )
10548          GENLIST_PART_BOTTOM_LINE
10549          GENLIST_PART_DISCLIP
10550       }
10551    }
10552
10553    group { name : "elm/genlist/item/dialogue/seperator.2/default";
10554       alias: "elm/genlist/item_odd/dialogue/seperator.2/default";
10555       alias: "elm/genlist/item_compress/dialogue/seperator.2/default";
10556       alias: "elm/genlist/item_compress_odd/dialogue/seperator.2/default";
10557
10558       data.item: "stacking" "above";
10559       data.item: "selectraise" "on";
10560       data.item: "treesize" "20";
10561
10562       parts {
10563          GENLIST_PART_DIALOGUE_BASE( 11 )
10564          GENLIST_PART_BOTTOM_LINE
10565          GENLIST_PART_DISCLIP
10566       }
10567    }
10568
10569    group { name : "elm/genlist/item/dialogue/seperator.3/default";
10570       alias: "elm/genlist/item_odd/dialogue/seperator.3/default";
10571       alias: "elm/genlist/item_compress/dialogue/seperator.3/default";
10572       alias: "elm/genlist/item_compress_odd/dialogue/seperator.3/default";
10573
10574       data.item: "stacking" "above";
10575       data.item: "selectraise" "on";
10576       data.item: "treesize" "20";
10577
10578       parts {
10579          GENLIST_PART_DIALOGUE_BASE( 20 )
10580       }
10581    }
10582
10583    group { name : "elm/genlist/item/dialogue/seperator.4/default";
10584       alias: "elm/genlist/item_odd/dialogue/seperator.4/default";
10585       alias: "elm/genlist/item_compress/dialogue/seperator.4/default";
10586       alias: "elm/genlist/item_compress_odd/dialogue/seperator.4/default";
10587
10588       data.item: "stacking" "above";
10589       data.item: "selectraise" "on";
10590       data.item: "treesize" "20";
10591
10592       parts {
10593          GENLIST_PART_DIALOGUE_BASE( 10 )
10594       }
10595    }
10596
10597    group { name : "elm/genlist/item/dialogue/seperator.5/default";
10598       alias: "elm/genlist/item_odd/dialogue/seperator.5/default";
10599       alias: "elm/genlist/item_compress/dialogue/seperator.5/default";
10600       alias: "elm/genlist/item_compress_odd/dialogue/seperator.5/default";
10601
10602       data.item: "stacking" "above";
10603       data.item: "selectraise" "on";
10604       data.item: "treesize" "20";
10605
10606       parts {
10607          GENLIST_PART_DIALOGUE_BASE( 1 )
10608          GENLIST_PART_BOTTOM_LINE
10609          GENLIST_PART_DISCLIP
10610       }
10611    }
10612
10613    group { name: "elm/genlist/item/dialogue/1text/default";
10614       alias: "elm/genlist/item_odd/dialogue/1text/default";
10615       alias: "elm/genlist/item_compress/dialogue/1text/default";
10616       alias: "elm/genlist/item_compress_odd/dialogue/1text/default";
10617       alias: "elm/genlist/item/dialogue.1text/default";
10618       alias: "elm/genlist/item_odd/dialogue.1text/default";
10619       alias: "elm/genlist/item_compress/dialogue.1text/default";
10620       alias: "elm/genlist/item_compress_odd/dialogue.1text/default";
10621       data.item: "stacking" "above";
10622       data.item: "selectraise" "on";
10623       data.item: "labels" "elm.text";
10624       data.item: "renames" "elm.edit.rename";
10625       parts {
10626          GENLIST_PART_BASE( 71 )
10627          GENLIST_PART_BG_IMAGE
10628          GENLIST_PART_BOTTOM_LINE
10629          GENLIST_PART_PADDING_LEFT( 20 )
10630          GENLIST_PART_PADDING_RIGHT( 10 )
10631          GENLIST_PART_DIALOGUE_ITEM
10632          part { name: "elm.text";
10633             clip_to: "disclip";
10634             type: TEXT;
10635             mouse_events: 0;
10636             scale: 1;
10637             description { state: "default" 0.0;
10638                rel1 {
10639                   relative: 1.0  0.0;
10640                   to_x: "elm.padding.left";
10641                }
10642                rel2 {
10643                   relative: 0.0 1.0;
10644                   to_x: "elm.padding.right";
10645                }
10646                color: GENLIST_PART_TEXT_COLOR_INC;
10647                text {
10648                   font: "SLP:style=Roman";
10649                   size: 28;
10650                   min: 0 1;
10651                   align: 0.0 0.5;
10652                }
10653             }
10654             description { state: "selected" 0.0;
10655                inherit: "default" 0.0;
10656                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
10657             }
10658             GENLIST_DESCRIPTION_RENAME_ENABLED
10659          }
10660          GENLIST_PART_RENAME
10661          GENLIST_PART_DISCLIP
10662       }
10663       programs {
10664          // signal: elm,state,%s,active
10665          //   a "check" item named %s went active
10666          // signal: elm,state,%s,passive
10667          //   a "check" item named %s went passive
10668          // default is passive
10669          program { name: "go_active";
10670             signal: "elm,state,selected";
10671             source: "elm";
10672             action: STATE_SET "selected" 0.0;
10673             target: "bg_image";
10674             target: "elm.text";
10675          }
10676          program { name: "go_passive";
10677             signal: "elm,state,unselected";
10678             source: "elm";
10679             action: STATE_SET "default" 0.0;
10680             target: "bg_image";
10681             target: "elm.text";
10682             transition: LINEAR 0.1;
10683          }
10684          program { name: "go_disabled";
10685             signal: "elm,state,disabled";
10686             source: "elm";
10687             action: STATE_SET "disabled" 0.0;
10688             target: "disclip";
10689          }
10690          program { name: "go_enabled";
10691             signal: "elm,state,enabled";
10692             source: "elm";
10693             action: STATE_SET "default" 0.0;
10694             target: "disclip";
10695          }
10696          GENLIST_PROGRAM_RENAME_1TEXT
10697       }
10698    }
10699
10700    group { name: "elm/genlist/item/dialogue/1text.1icon/default";
10701       alias: "elm/genlist/item_odd/dialogue/1text.1icon/default";
10702       alias: "elm/genlist/item_compress/dialogue/1text.1icon/default";
10703       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon/default";
10704       data.item: "stacking" "above";
10705       data.item: "selectraise" "on";
10706       data.item: "labels" "elm.text";
10707       data.item: "icons" "elm.icon";
10708       data.item: "renames" "elm.edit.rename";
10709       parts {
10710          GENLIST_PART_BASE( 71 )
10711          GENLIST_PART_BG_IMAGE
10712          GENLIST_PART_BOTTOM_LINE
10713          GENLIST_PART_PADDING_LEFT( 20 )
10714          GENLIST_PART_PADDING_RIGHT( 10 )
10715          GENLIST_PART_DIALOGUE_ITEM
10716          part { name: "elm.icon";
10717             clip_to: "disclip";
10718             type: SWALLOW;
10719             scale: 1;
10720             description { state: "default" 0.0;
10721                fixed: 1 1;
10722                rel1.to_x: "elm.padding.right";
10723                rel2 {
10724                   relative: 0.0 1.0;
10725                   to_x: "elm.padding.right";
10726                }
10727                align: 1.0 0.5;
10728             }
10729             GENLIST_DESCRIPTION_RENAME_ENABLED
10730          }
10731          part { name: "elm.padding.icon.left";
10732             clip_to: "disclip";
10733             type: RECT;
10734             scale: 1;
10735             description { state: "default" 0.0;
10736                min: 10 0;
10737                fixed: 1 0;
10738                rel1.to_x: "elm.icon";
10739                rel2 {
10740                   relative: 0.0 1.0;
10741                   to_x: "elm.icon";
10742                }
10743                align: 1.0 0.0;
10744                visible: 0;
10745             }
10746          }
10747          part { name: "elm.text";
10748             clip_to: "disclip";
10749             type: TEXT;
10750             mouse_events: 0;
10751             scale: 1;
10752             description { state: "default" 0.0;
10753                rel1 {
10754                   relative: 1.0 0.0;
10755                   to_x: "elm.padding.left";
10756                }
10757                rel2 {
10758                   relative: 0.0 1.0;
10759                   to_x: "elm.padding.icon.left";
10760                }
10761                align: 0.0 0.0;
10762                color: GENLIST_PART_TEXT_COLOR_INC;
10763                text {
10764                   font: "SLP:style=Roman";
10765                   size: 28;
10766                   min: 0 1;
10767                   align: 0.0 0.5;
10768                }
10769             }
10770             description { state: "selected" 0.0;
10771                inherit: "default" 0.0;
10772                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
10773             }
10774             GENLIST_DESCRIPTION_RENAME_ENABLED
10775          }
10776          GENLIST_PART_RENAME
10777          GENLIST_PART_DISCLIP
10778       }
10779       programs {
10780          program { name: "go_active";
10781             signal: "elm,state,selected";
10782             source: "elm";
10783             action: STATE_SET "selected" 0.0;
10784             target: "bg_image";
10785             target: "elm.text";
10786          }
10787          program { name: "go_passive";
10788             signal: "elm,state,unselected";
10789             source: "elm";
10790             action: STATE_SET "default" 0.0;
10791             target: "bg_image";
10792             target: "elm.text";
10793             transition: LINEAR 0.1;
10794          }
10795          program { name: "go_disabled";
10796             signal: "elm,state,disabled";
10797             source: "elm";
10798             action: STATE_SET "disabled" 0.0;
10799             target: "disclip";
10800          }
10801          program { name: "go_enabled";
10802             signal: "elm,state,enabled";
10803             source: "elm";
10804             action: STATE_SET "default" 0.0;
10805             target: "disclip";
10806          }
10807          GENLIST_PROGRAM_RENAME_1TEXT_1ICON
10808       }
10809    }
10810
10811    group { name: "elm/genlist/item/dialogue/1text.1icon.2/default";
10812       alias: "elm/genlist/item_odd/dialogue/1text.1icon.2/default";
10813       alias: "elm/genlist/item_compress/dialogue/1text.1icon.2/default";
10814       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.2/default";
10815       data.item: "stacking" "above";
10816       data.item: "selectraise" "on";
10817       data.item: "labels" "elm.text";
10818       data.item: "icons" "elm.icon";
10819       data.item: "renames" "elm.edit.rename";
10820       parts {
10821          GENLIST_PART_BASE( 71 )
10822          GENLIST_PART_BG_IMAGE
10823          GENLIST_PART_BOTTOM_LINE
10824          GENLIST_PART_PADDING_LEFT( 20 )
10825          GENLIST_PART_PADDING_RIGHT( 10 )
10826          GENLIST_PART_DIALOGUE_ITEM
10827          part { name: "elm.icon";
10828             clip_to: "disclip";
10829             type: SWALLOW;
10830             scale: 1;
10831             description { state: "default" 0.0;
10832                min: 40 40;
10833                max: 40 40;
10834                fixed: 1 1;
10835                rel1 {
10836                   relative: 1.0 0.0;
10837                   to_x: "elm.padding.left";
10838                }
10839                rel2 {
10840                   relative: 1.0 1.0;
10841                   to_x: "elm.padding.left";
10842                }
10843                align: 0.0 0.5;
10844             }
10845             GENLIST_DESCRIPTION_RENAME_ENABLED
10846          }
10847          part { name: "elm.padding.icon.right";
10848             clip_to: "disclip";
10849             type: RECT;
10850             scale: 1;
10851             description { state: "default" 0.0;
10852                min: 10 0;
10853                fixed: 1 0;
10854                rel1 {
10855                   relative: 1.0 0.0;
10856                   to_x: "elm.icon";
10857                }
10858                rel2.to_x: "elm.icon";
10859                align: 0.0 0.0;
10860                visible: 0;
10861             }
10862          }
10863          part { name: "elm.text";
10864             clip_to: "disclip";
10865             type: TEXT;
10866             mouse_events: 0;
10867             scale: 1;
10868             description { state: "default" 0.0;
10869                rel1 {
10870                   relative: 1.0 0.0;
10871                   to_x: "elm.padding.icon.right";
10872                }
10873                rel2 {
10874                   relative: 0.0 1.0;
10875                   to_x: "elm.padding.right";
10876                }
10877                align: 0.0 0.0;
10878                color: GENLIST_PART_TEXT_COLOR_INC;
10879                text {
10880                   font: "SLP:style=Roman";
10881                   size: 28;
10882                   min: 0 1;
10883                   align: 0.0 0.5;
10884                }
10885             }
10886             description { state: "selected" 0.0;
10887                inherit: "default" 0.0;
10888                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
10889             }
10890             GENLIST_DESCRIPTION_RENAME_ENABLED
10891          }
10892          GENLIST_PART_RENAME
10893          GENLIST_PART_DISCLIP
10894       }
10895       programs {
10896          program { name: "go_active";
10897             signal: "elm,state,selected";
10898             source: "elm";
10899             action: STATE_SET "selected" 0.0;
10900             target: "bg_image";
10901             target: "elm.text";
10902          }
10903          program { name: "go_passive";
10904             signal: "elm,state,unselected";
10905             source: "elm";
10906             action: STATE_SET "default" 0.0;
10907             target: "bg_image";
10908             target: "elm.text";
10909             transition: LINEAR 0.1;
10910          }
10911          program { name: "go_disabled";
10912             signal: "elm,state,disabled";
10913             source: "elm";
10914             action: STATE_SET "disabled" 0.0;
10915             target: "disclip";
10916          }
10917          program { name: "go_enabled";
10918             signal: "elm,state,enabled";
10919             source: "elm";
10920             action: STATE_SET "default" 0.0;
10921             target: "disclip";
10922          }
10923          GENLIST_PROGRAM_RENAME_1TEXT_1ICON
10924       }
10925    }
10926
10927    group { name: "elm/genlist/item/dialogue/1text.2icon/default";
10928       alias: "elm/genlist/item_odd/dialogue/1text.2icon/default";
10929       alias: "elm/genlist/item_compress/dialogue/1text.2icon/default";
10930       alias: "elm/genlist/item_compress_odd/dialogue/1text.2icon/default";
10931       data.item: "stacking" "above";
10932       data.item: "selectraise" "on";
10933       data.item: "labels" "elm.text";
10934       data.item: "icons" "elm.icon.1 elm.icon.2";
10935       data.item: "renames" "elm.edit.rename";
10936       parts {
10937          GENLIST_PART_BASE( 71 )
10938          GENLIST_PART_BG_IMAGE
10939          GENLIST_PART_BOTTOM_LINE
10940          GENLIST_PART_PADDING_LEFT( 20 )
10941          GENLIST_PART_PADDING_RIGHT( 10 )
10942          GENLIST_PART_DIALOGUE_ITEM
10943          part { name: "elm.icon.1";
10944             clip_to: "disclip";
10945             type: SWALLOW;
10946             scale: 1;
10947             description { state: "default" 0.0;
10948                min: 40 40;
10949                max: 40 40;
10950                fixed: 1 1;
10951                rel1 {
10952                   relative: 1.0 0.0;
10953                   to_x: "elm.padding.left";
10954                }
10955                rel2 {
10956                   relative: 1.0 1.0;
10957                   to_x: "elm.padding.left";
10958                }
10959                align: 0.0 0.5;
10960             }
10961             GENLIST_DESCRIPTION_RENAME_ENABLED
10962          }
10963          part { name: "elm.padding.icon.right";
10964             clip_to: "disclip";
10965             type: RECT;
10966             scale: 1;
10967             description { state: "default" 0.0;
10968                min: 10 0;
10969                fixed: 1 0;
10970                rel1 {
10971                   relative: 1.0 0.0;
10972                   to_x: "elm.icon.1";
10973                }
10974                rel2.to_x: "elm.icon.1";
10975                align: 0.0 0.0;
10976                visible: 0;
10977             }
10978          }
10979          part { name: "elm.icon.2";
10980             clip_to: "disclip";
10981             type: SWALLOW;
10982             scale: 1;
10983             description { state: "default" 0.0;
10984                fixed: 1 1;
10985                rel1.to_x: "elm.padding.right";
10986                rel2 {
10987                   relative: 0.0 1.0;
10988                   to_x: "elm.padding.right";
10989                }
10990                align: 1.0 0.5;
10991             }
10992             GENLIST_DESCRIPTION_RENAME_ENABLED
10993          }
10994          part { name: "elm.padding.icon.left";
10995             clip_to: "disclip";
10996             type: RECT;
10997             scale: 1;
10998             description { state: "default" 0.0;
10999                min: 10 0;
11000                fixed: 1 0;
11001                rel1.to_x: "elm.icon.2";
11002                rel2 {
11003                   relative: 0.0 1.0;
11004                   to_x: "elm.icon.2";
11005                }
11006                align: 1.0 0.0;
11007                visible: 0;
11008             }
11009          }
11010          part { name: "elm.text";
11011             clip_to: "disclip";
11012             type: TEXT;
11013             mouse_events: 0;
11014             scale: 1;
11015             description { state: "default" 0.0;
11016                rel1 {
11017                   relative: 1.0 0.0;
11018                   to_x: "elm.padding.icon.right";
11019                }
11020                rel2 {
11021                   relative: 0.0 1.0;
11022                   to_x: "elm.padding.icon.left";
11023                }
11024                align: 0.0 0.0;
11025                color: GENLIST_PART_TEXT_COLOR_INC;
11026                text {
11027                   font: "SLP:style=Roman";
11028                   size: 28;
11029                   min: 0 1;
11030                   align: 0.0 0.5;
11031                }
11032             }
11033             description { state: "selected" 0.0;
11034                inherit: "default" 0.0;
11035                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
11036             }
11037             GENLIST_DESCRIPTION_RENAME_ENABLED
11038          }
11039          GENLIST_PART_RENAME
11040          GENLIST_PART_DISCLIP
11041       }
11042       programs {
11043          program { name: "go_active";
11044             signal: "elm,state,selected";
11045             source: "elm";
11046             action: STATE_SET "selected" 0.0;
11047             target: "bg_image";
11048             target: "elm.text";
11049          }
11050          program { name: "go_passive";
11051             signal: "elm,state,unselected";
11052             source: "elm";
11053             action: STATE_SET "default" 0.0;
11054             target: "bg_image";
11055             target: "elm.text";
11056             transition: LINEAR 0.1;
11057          }
11058          program { name: "go_disabled";
11059             signal: "elm,state,disabled";
11060             source: "elm";
11061             action: STATE_SET "disabled" 0.0;
11062             target: "disclip";
11063          }
11064          program { name: "go_enabled";
11065             signal: "elm,state,enabled";
11066             source: "elm";
11067             action: STATE_SET "default" 0.0;
11068             target: "disclip";
11069          }
11070          GENLIST_PROGRAM_RENAME_1TEXT_2ICON
11071       }
11072    }
11073
11074    group { name: "elm/genlist/item/dialogue/2text.1icon/default";
11075       alias: "elm/genlist/item_odd/dialogue/2text.1icon/default";
11076       alias: "elm/genlist/item_compress/dialogue/2text.1icon/default";
11077       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon/default";
11078       data.item: "stacking" "above";
11079       data.item: "selectraise" "on";
11080       data.item: "labels" "elm.text.1 elm.text.2";
11081       data.item: "icons" "elm.icon";
11082       data.item: "renames" "elm.edit.rename";
11083       parts {
11084          GENLIST_PART_BASE( 71 )
11085          GENLIST_PART_BG_IMAGE
11086          GENLIST_PART_BOTTOM_LINE
11087          GENLIST_PART_PADDING_LEFT( 20 )
11088          GENLIST_PART_PADDING_RIGHT( 10 )
11089          GENLIST_PART_DIALOGUE_ITEM
11090          part { name: "elm.icon";
11091             clip_to: "disclip";
11092             type: SWALLOW;
11093             scale: 1;
11094             description { state: "default" 0.0;
11095                min: 40 40;
11096                max: 40 40;
11097                fixed: 1 1;
11098                rel1 {
11099                   relative: 1.0 0.0;
11100                   to_x: "elm.padding.left";
11101                }
11102                rel2 {
11103                   relative: 1.0 1.0;
11104                   to_x: "elm.padding.left";
11105                }
11106                align: 0.0 0.5;
11107             }
11108             GENLIST_DESCRIPTION_RENAME_ENABLED
11109          }
11110          part { name: "elm.padding.icon.right";
11111             clip_to: "disclip";
11112             type: RECT;
11113             scale: 1;
11114             description { state: "default" 0.0;
11115                min: 10 0;
11116                fixed: 1 0;
11117                rel1 {
11118                   relative: 1.0 0.0;
11119                   to_x: "elm.icon";
11120                }
11121                rel2.to_x: "elm.icon";
11122                align: 0.0 0.0;
11123                visible: 0;
11124             }
11125          }
11126          part { name: "elm.text.2";
11127             clip_to: "disclip";
11128             type: TEXT;
11129             mouse_events: 0;
11130             scale: 1;
11131             description { state: "default" 0.0;
11132                min: 98 0;
11133                fixed: 1 0;
11134                rel1.to_x: "elm.padding.right";
11135                rel2 {
11136                   relative: 0.0 1.0;
11137                   to_x: "elm.padding.right";
11138                }
11139                align: 1.0 0.5;
11140                color: GENLIST_PART_SUB_TEXT_SETTINGS_COLOR_INC;;
11141                text {
11142                   font: "SLP:style=Medium";
11143                   size: 20;
11144                   min: 0 1;
11145                   align: 1.0 0.5;
11146                }
11147             }
11148             description { state: "selected" 0.0;
11149                inherit: "default" 0.0;
11150                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
11151             }
11152             GENLIST_DESCRIPTION_RENAME_ENABLED
11153          }
11154          part { name: "elm.padding.text2.left";
11155             type: RECT;
11156             mouse_events: 0;
11157             scale: 1;
11158             description { state: "default" 0.0;
11159                min: 20 0;
11160                fixed: 1 0;
11161                rel1.to_x: "elm.text.2";
11162                rel2 {
11163                   relative: 0.0 1.0;
11164                   to_x: "elm.text.2";
11165                }
11166                visible: 0;
11167                align: 1.0 0.5;
11168             }
11169          }
11170          part { name: "elm.text.1";
11171             clip_to: "disclip";
11172             type: TEXT;
11173             mouse_events: 0;
11174             scale: 1;
11175             description { state: "default" 0.0;
11176                rel1 {
11177                   relative: 1.0 0.0;
11178                   to_x: "elm.padding.icon.right";
11179                }
11180                rel2 {
11181                   relative: 0.0 1.0;
11182                   to_x: "elm.padding.text2.left";
11183                }
11184                align: 0.0 0.0;
11185                color: GENLIST_PART_TEXT_COLOR_INC;
11186                text {
11187                   font: "SLP:style=Roman";
11188                   size: 28;
11189                   min: 0 1;
11190                   align: 0.0 0.5;
11191                }
11192             }
11193             description { state: "selected" 0.0;
11194                inherit: "default" 0.0;
11195                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
11196             }
11197             GENLIST_DESCRIPTION_RENAME_ENABLED
11198          }
11199          GENLIST_PART_RENAME
11200          GENLIST_PART_DISCLIP
11201       }
11202       programs {
11203          program { name: "go_active";
11204             signal: "elm,state,selected";
11205             source: "elm";
11206             action: STATE_SET "selected" 0.0;
11207             target: "bg_image";
11208             target: "elm.text.1";
11209             target: "elm.text.2";
11210          }
11211          program { name: "go_passive";
11212             signal: "elm,state,unselected";
11213             source: "elm";
11214             action: STATE_SET "default" 0.0;
11215             target: "bg_image";
11216             target: "elm.text.1";
11217             target: "elm.text.2";
11218             transition: LINEAR 0.1;
11219          }
11220          program { name: "go_disabled";
11221             signal: "elm,state,disabled";
11222             source: "elm";
11223             action: STATE_SET "disabled" 0.0;
11224             target: "disclip";
11225          }
11226          program { name: "go_enabled";
11227             signal: "elm,state,enabled";
11228             source: "elm";
11229             action: STATE_SET "default" 0.0;
11230             target: "disclip";
11231          }
11232          GENLIST_PROGRAM_RENAME_2TEXT_1ICON
11233       }
11234    }
11235
11236    group { name: "elm/genlist/item/dialogue/1text.1icon.3/default";
11237       alias: "elm/genlist/item_odd/dialogue/1text.1icon.3/default";
11238       alias: "elm/genlist/item_compress/dialogue/1text.1icon.3/default";
11239       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.3/default";
11240       data.item: "stacking" "above";
11241       data.item: "selectraise" "on";
11242       data.item: "labels" "elm.text";
11243       data.item: "icons" "elm.icon";
11244       data.item: "renames" "elm.edit.rename";
11245       parts {
11246          GENLIST_PART_BASE( 71 )
11247          GENLIST_PART_BG_IMAGE
11248          GENLIST_PART_BOTTOM_LINE
11249          GENLIST_PART_PADDING_LEFT( 20 )
11250          GENLIST_PART_PADDING_RIGHT( 10 )
11251          GENLIST_PART_DIALOGUE_ITEM
11252          part { name: "elm.icon";
11253             clip_to: "disclip";
11254             type: SWALLOW;
11255             scale: 1;
11256             description { state: "default" 0.0;
11257                min: 26 26;
11258                max: 26 26;
11259                fixed: 1 1;
11260                rel1 {
11261                   relative: 1.0 0.0;
11262                   to_x: "elm.padding.left";
11263                }
11264                rel2 {
11265                   relative: 1.0 1.0;
11266                   to_x: "elm.padding.left";
11267                }
11268                align: 0.0 0.5;
11269             }
11270             GENLIST_DESCRIPTION_RENAME_ENABLED
11271          }
11272          part { name: "elm.padding.icon.right";
11273             type: RECT;
11274             scale: 1;
11275             description { state: "default" 0.0;
11276                min: 10 0;
11277                fixed: 1 0;
11278                rel1 {
11279                   relative: 1.0 0.0;
11280                   to_x: "elm.icon";
11281                }
11282                rel2.to_x: "elm.icon";
11283                align: 0.0 0.0;
11284                visible: 0;
11285             }
11286          }
11287          part { name: "elm.text";
11288             clip_to: "disclip";
11289             type: TEXT;
11290             mouse_events: 0;
11291             scale: 1;
11292             description { state: "default" 0.0;
11293                rel1 {
11294                   relative: 1.0 0.0;
11295                   to_x: "elm.padding.icon.right";
11296                }
11297                rel2 {
11298                   relative: 0.0 1.0;
11299                   to_x: "elm.padding.right";
11300                }
11301                align: 0.0 0.0;
11302                color: GENLIST_PART_TEXT_COLOR_INC;
11303                text {
11304                   font: "SLP:style=Roman";
11305                   size: 28;
11306                   min: 0 1;
11307                   align: 0.0 0.5;
11308                }
11309             }
11310             description { state: "selected" 0.0;
11311                inherit: "default" 0.0;
11312                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
11313             }
11314             GENLIST_DESCRIPTION_RENAME_ENABLED
11315          }
11316          GENLIST_PART_RENAME
11317          GENLIST_PART_DISCLIP
11318       }
11319       programs {
11320          program { name: "go_active";
11321             signal: "elm,state,selected";
11322             source: "elm";
11323             action: STATE_SET "selected" 0.0;
11324             target: "bg_image";
11325             target: "elm.text";
11326          }
11327          program { name: "go_passive";
11328             signal: "elm,state,unselected";
11329             source: "elm";
11330             action: STATE_SET "default" 0.0;
11331             target: "bg_image";
11332             target: "elm.text";
11333             transition: LINEAR 0.1;
11334          }
11335          program { name: "go_disabled";
11336             signal: "elm,state,disabled";
11337             source: "elm";
11338             action: STATE_SET "disabled" 0.0;
11339             target: "disclip";
11340          }
11341          program { name: "go_enabled";
11342             signal: "elm,state,enabled";
11343             source: "elm";
11344             action: STATE_SET "default" 0.0;
11345             target: "disclip";
11346          }
11347          GENLIST_PROGRAM_RENAME_1TEXT_1ICON
11348       }
11349    }
11350
11351    group { name: "elm/genlist/item/dialogue/1text.2icon.2/default";
11352       alias: "elm/genlist/item_odd/dialogue/1text.2icon.2/default";
11353       alias: "elm/genlist/item_compress/dialogue/1text.2icon.2/default";
11354       alias: "elm/genlist/item_compress_odd/dialogue/1text.2icon.2/default";
11355       data.item: "stacking" "above";
11356       data.item: "selectraise" "on";
11357       data.item: "labels" "elm.text";
11358       data.item: "icons" "elm.icon.1 elm.icon.2";
11359       data.item: "renames" "elm.edit.rename";
11360       parts {
11361          GENLIST_PART_BASE( 71 )
11362          GENLIST_PART_BG_IMAGE
11363          GENLIST_PART_BOTTOM_LINE
11364          GENLIST_PART_PADDING_LEFT( 20 )
11365          GENLIST_PART_PADDING_RIGHT( 10 )
11366          GENLIST_PART_DIALOGUE_ITEM
11367          part { name: "elm.icon.1";
11368             clip_to: "disclip";
11369             type: SWALLOW;
11370             scale: 1;
11371             description { state: "default" 0.0;
11372                min: 26 26;
11373                max: 26 26;
11374                fixed: 1 1;
11375                rel1 {
11376                   relative: 1.0 0.0;
11377                   to_x: "elm.padding.left";
11378                }
11379                rel2 {
11380                   relative: 1.0 1.0;
11381                   to_x: "elm.padding.left";
11382                }
11383                align: 0.0 0.5;
11384             }
11385             GENLIST_DESCRIPTION_RENAME_ENABLED
11386          }
11387          part { name: "elm.padding.icon1.right";
11388             clip_to: "disclip";
11389             type: RECT;
11390             scale: 1;
11391             description { state: "default" 0.0;
11392                min: 10 0;
11393                fixed: 1 0;
11394                rel1 {
11395                   relative: 1.0 0.0;
11396                   to_x: "elm.icon.1";
11397                }
11398                rel2.to_x: "elm.icon.1";
11399                align: 0.0 0.0;
11400                visible: 0;
11401             }
11402          }
11403          part { name: "elm.icon.2";
11404             clip_to: "disclip";
11405             type: SWALLOW;
11406             scale: 1;
11407             description { state: "default" 0.0;
11408                min: 40 40;
11409                max: 40 40;
11410                fixed: 1 1;
11411                rel1.to_x: "elm.padding.right";
11412                rel2 {
11413                   relative: 0.0 1.0;
11414                   to_x: "elm.padding.right";
11415                }
11416                align: 1.0 0.5;
11417             }
11418             GENLIST_DESCRIPTION_RENAME_ENABLED
11419          }
11420          part { name: "elm.padding.icon2.left";
11421             clip_to: "disclip";
11422             type: RECT;
11423             scale: 1;
11424             description { state: "default" 0.0;
11425                min: 10 0;
11426                fixed: 1 0;
11427                rel1.to_x: "elm.icon.2";
11428                rel2 {
11429                   relative: 0.0 1.0;
11430                   to_x: "elm.icon.2";
11431                }
11432                align: 1.0 0.0;
11433                visible: 0;
11434             }
11435          }
11436          part { name: "elm.text";
11437             clip_to: "disclip";
11438             type: TEXT;
11439             mouse_events: 0;
11440             scale: 1;
11441             description { state: "default" 0.0;
11442                rel1 {
11443                   relative: 1.0 0.0;
11444                   to_x: "elm.padding.icon1.right";
11445                }
11446                rel2 {
11447                   relative: 0.0 1.0;
11448                   to_x: "elm.padding.icon2.left";
11449                }
11450                align: 0.0 0.0;
11451                color: GENLIST_PART_TEXT_COLOR_INC;
11452                text {
11453                   font: "SLP:style=Roman";
11454                   size: 28;
11455                   min: 0 1;
11456                   align: 0.0 0.5;
11457                }
11458             }
11459             description { state: "selected" 0.0;
11460                inherit: "default" 0.0;
11461                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
11462             }
11463             GENLIST_DESCRIPTION_RENAME_ENABLED
11464          }
11465          GENLIST_PART_RENAME
11466          GENLIST_PART_DISCLIP
11467       }
11468       programs {
11469          program { name: "go_active";
11470             signal: "elm,state,selected";
11471             source: "elm";
11472             action: STATE_SET "selected" 0.0;
11473             target: "bg_image";
11474             target: "elm.text";
11475          }
11476          program { name: "go_passive";
11477             signal: "elm,state,unselected";
11478             source: "elm";
11479             action: STATE_SET "default" 0.0;
11480             target: "bg_image";
11481             target: "elm.text";
11482             transition: LINEAR 0.1;
11483          }
11484          program { name: "go_disabled";
11485             signal: "elm,state,disabled";
11486             source: "elm";
11487             action: STATE_SET "disabled" 0.0;
11488             target: "disclip";
11489          }
11490          program { name: "go_enabled";
11491             signal: "elm,state,enabled";
11492             source: "elm";
11493             action: STATE_SET "default" 0.0;
11494             target: "disclip";
11495          }
11496          GENLIST_PROGRAM_RENAME_1TEXT_2ICON
11497       }
11498    }
11499
11500    group { name: "elm/genlist/item/dialogue/1text.3icon/default";
11501       alias: "elm/genlist/item_odd/dialogue/1text.3icon/default";
11502       alias: "elm/genlist/item_compress/dialogue/1text.3icon/default";
11503       alias: "elm/genlist/item_compress_odd/dialogue/1text.3icon/default";
11504       data.item: "stacking" "above";
11505       data.item: "selectraise" "on";
11506       data.item: "labels" "elm.text";
11507       data.item: "icons" "elm.icon.1 elm.icon.2 elm.icon.3";
11508       data.item: "renames" "elm.edit.rename";
11509       parts {
11510          GENLIST_PART_BASE( 71 )
11511          GENLIST_PART_BG_IMAGE
11512          GENLIST_PART_BOTTOM_LINE
11513          GENLIST_PART_PADDING_LEFT( 20 )
11514          GENLIST_PART_PADDING_RIGHT( 10 )
11515          GENLIST_PART_DIALOGUE_ITEM
11516          part { name: "elm.icon.1";
11517             clip_to: "disclip";
11518             type: SWALLOW;
11519             scale: 1;
11520             description { state: "default" 0.0;
11521                min: 26 26;
11522                max: 26 26;
11523                fixed: 1 1;
11524                rel1 {
11525                   relative: 1.0 0.0;
11526                   to_x: "elm.padding.left";
11527                }
11528                rel2 {
11529                   relative: 1.0 1.0;
11530                   to_x: "elm.padding.left";
11531                }
11532                align: 0.0 0.5;
11533             }
11534             GENLIST_DESCRIPTION_RENAME_ENABLED
11535          }
11536          part { name: "elm.padding.icon1.right";
11537             clip_to: "disclip";
11538             type: RECT;
11539             scale: 1;
11540             description { state: "default" 0.0;
11541                min: 10 0;
11542                fixed: 1 0;
11543                rel1 {
11544                   relative: 1.0 0.0;
11545                   to_x: "elm.icon.1";
11546                }
11547                rel2.to_x: "elm.icon.1";
11548                align: 0.0 0.0;
11549                visible: 0;
11550             }
11551          }
11552          part { name: "elm.icon.3";
11553             clip_to: "disclip";
11554             type: SWALLOW;
11555             scale: 1;
11556             description { state: "default" 0.0;
11557                min: 40 40;
11558                max: 40 40;
11559                fixed: 1 1;
11560                rel1.to_x: "elm.padding.right";
11561                rel2 {
11562                   relative: 0.0 1.0;
11563                   to_x: "elm.padding.right";
11564                }
11565                align: 1.0 0.5;
11566             }
11567             GENLIST_DESCRIPTION_RENAME_ENABLED
11568          }
11569          part { name: "elm.padding.icon3.left";
11570             clip_to: "disclip";
11571             type: RECT;
11572             scale: 1;
11573             description { state: "default" 0.0;
11574                min: 10 0;
11575                fixed: 1 0;
11576                rel1.to_x: "elm.icon.3";
11577                rel2 {
11578                   relative: 0.0 1.0;
11579                   to_x: "elm.icon.3";
11580                }
11581                align: 1.0 0.0;
11582                visible: 0;
11583             }
11584          }
11585          part { name: "elm.icon.2";
11586             clip_to: "disclip";
11587             type: SWALLOW;
11588             scale: 1;
11589             description { state: "default" 0.0;
11590                min: 40 40;
11591                max: 40 40;
11592                fixed: 1 1;
11593                rel1.to_x: "elm.padding.icon3.left";
11594                rel2 {
11595                   relative: 0.0 1.0;
11596                   to_x: "elm.padding.icon3.left";
11597                }
11598                align: 1.0 0.5;
11599             }
11600             GENLIST_DESCRIPTION_RENAME_ENABLED
11601          }
11602          part { name: "elm.padding.icon2.left";
11603             clip_to: "disclip";
11604             type: RECT;
11605             scale: 1;
11606             description { state: "default" 0.0;
11607                min: 10 0;
11608                fixed: 1 0;
11609                rel1.to_x: "elm.icon.2";
11610                rel2 {
11611                   relative: 0.0 1.0;
11612                   to_x: "elm.icon.2";
11613                }
11614                align: 0.0 0.0;
11615                visible: 0;
11616             }
11617          }
11618          part { name: "elm.text";
11619             clip_to: "disclip";
11620             type: TEXT;
11621             mouse_events: 0;
11622             scale: 1;
11623             description { state: "default" 0.0;
11624                rel1 {
11625                   relative: 1.0 0.0;
11626                   to_x: "elm.padding.icon1.right";
11627                }
11628                rel2 {
11629                   relative: 0.0 1.0;
11630                   to_x: "elm.padding.icon2.left";
11631                }
11632                align: 0.0 0.5;
11633                color: GENLIST_PART_TEXT_COLOR_INC;
11634                text {
11635                   font: "SLP:style=Roman";
11636                   size: 28;
11637                   min: 0 1;
11638                   align: 0.0 0.5;
11639                }
11640             }
11641             description { state: "selected" 0.0;
11642                inherit: "default" 0.0;
11643                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
11644             }
11645             GENLIST_DESCRIPTION_RENAME_ENABLED
11646          }
11647          GENLIST_PART_RENAME
11648          GENLIST_PART_DISCLIP
11649       }
11650       programs {
11651          // signal: elm,state,%s,active
11652          //   a "check" item named %s went active
11653          // signal: elm,state,%s,passive
11654          //   a "check" item named %s went passive
11655          // default is passive
11656          program { name: "go_active";
11657             signal: "elm,state,selected";
11658             source: "elm";
11659             action: STATE_SET "selected" 0.0;
11660             target: "bg_image";
11661             target: "elm.text";
11662          }
11663          program { name: "go_passive";
11664             signal: "elm,state,unselected";
11665             source: "elm";
11666             action: STATE_SET "default" 0.0;
11667             target: "bg_image";
11668             target: "elm.text";
11669             transition: LINEAR 0.1;
11670          }
11671          program { name: "go_disabled";
11672             signal: "elm,state,disabled";
11673             source: "elm";
11674             action: STATE_SET "disabled" 0.0;
11675             target: "disclip";
11676          }
11677          program { name: "go_enabled";
11678             signal: "elm,state,enabled";
11679             source: "elm";
11680             action: STATE_SET "default" 0.0;
11681             target: "disclip";
11682          }
11683          GENLIST_PROGRAM_RENAME_1TEXT_3ICON
11684       }
11685    }
11686
11687    group { name: "elm/genlist/item/dialogue/3icon/default";
11688       alias: "elm/genlist/item_odd/dialogue/3icon/default";
11689       alias: "elm/genlist/item_compress/dialogue/3icon/default";
11690       alias: "elm/genlist/item_compress_odd/dialogue/3icon/default";
11691       data.item: "stacking" "above";
11692       data.item: "selectraise" "on";
11693       data.item: "icons" "elm.icon.1 elm.icon.2 elm.icon.3";
11694       parts {
11695          GENLIST_PART_BASE( 71 )
11696          GENLIST_PART_BG_IMAGE
11697          GENLIST_PART_BOTTOM_LINE
11698          GENLIST_PART_PADDING_LEFT( 20 )
11699          GENLIST_PART_PADDING_RIGHT( 10 )
11700          GENLIST_PART_DIALOGUE_ITEM
11701          part { name: "elm.icon.1";
11702             clip_to: "disclip";
11703             type: SWALLOW;
11704             scale: 1;
11705             description { state: "default" 0.0;
11706                min: 50 50;
11707                max: 50 50;
11708                fixed: 1 1;
11709                rel1 {
11710                   relative: 1.0 0.0;
11711                   to_x: "elm.padding.left";
11712                }
11713                rel2 {
11714                   relative: 1.0 1.0;
11715                   to_x: "elm.padding.left";
11716                }
11717                align: 0.0 0.5;
11718             }
11719             GENLIST_DESCRIPTION_RENAME_ENABLED
11720          }
11721          part { name: "elm.padding.icon1.right";
11722             clip_to: "disclip";
11723             type: RECT;
11724             scale: 1;
11725             description { state: "default" 0.0;
11726                min: 10 0;
11727                fixed: 1 0;
11728                rel1 {
11729                   relative: 1.0 0.0;
11730                   to_x: "elm.icon.1";
11731                }
11732                rel2.to_x: "elm.icon.1";
11733                align: 0.0 0.0;
11734                visible: 0;
11735             }
11736          }
11737          part { name: "elm.icon.3";
11738             clip_to: "disclip";
11739             type: SWALLOW;
11740             scale: 1;
11741             description { state: "default" 0.0;
11742                min: 50 50;
11743                max: 50 50;
11744                fixed: 1 1;
11745                rel1.to_x: "elm.padding.right";
11746                rel2 {
11747                   relative: 0.0 1.0;
11748                   to_x: "elm.padding.right";
11749                }
11750                align: 1.0 0.5;
11751             }
11752             GENLIST_DESCRIPTION_RENAME_ENABLED
11753          }
11754          part { name: "elm.padding.icon3.left";
11755             clip_to: "disclip";
11756             type: RECT;
11757             scale: 1;
11758             description { state: "default" 0.0;
11759                min: 10 0;
11760                fixed: 1 0;
11761                rel1.to_x: "elm.icon.3";
11762                rel2 {
11763                   relative: 0.0 1.0;
11764                   to_x: "elm.icon.3";
11765                }
11766                align: 1.0 0.0;
11767                visible: 0;
11768             }
11769          }
11770          part { name: "elm.icon.2";
11771             clip_to: "disclip";
11772             type: SWALLOW;
11773             scale: 1;
11774             description { state: "default" 0.0;
11775                rel1 {
11776                   relative: 1.0 0.0;
11777                   to_x: "elm.padding.icon1.right";
11778                }
11779                rel2 {
11780                   relative: 0.0 1.0;
11781                   to_x: "elm.padding.icon3.left";
11782                }
11783                align: 0.0 0.5;
11784             }
11785             GENLIST_DESCRIPTION_RENAME_ENABLED
11786          }
11787          GENLIST_PART_DISCLIP
11788       }
11789       programs {
11790          // signal: elm,state,%s,active
11791          //   a "check" item named %s went active
11792          // signal: elm,state,%s,passive
11793          //   a "check" item named %s went passive
11794          // default is passive
11795          program { name: "go_disabled";
11796             signal: "elm,state,disabled";
11797             source: "elm";
11798             action: STATE_SET "disabled" 0.0;
11799             target: "disclip";
11800          }
11801          program { name: "go_enabled";
11802             signal: "elm,state,enabled";
11803             source: "elm";
11804             action: STATE_SET "default" 0.0;
11805             target: "disclip";
11806          }
11807       }
11808    }
11809
11810    group { name: "elm/genlist/item/dialogue/2text.1icon.4/default";
11811       alias: "elm/genlist/item_odd/dialogue/2text.1icon.4/default";
11812       alias: "elm/genlist/item_compress/dialogue/2text.1icon.4/default";
11813       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.4/default";
11814       data.item: "stacking" "above";
11815       data.item: "selectraise" "on";
11816       data.item: "labels" "elm.text.1 elm.text.2";
11817       data.item: "icons" "elm.icon";
11818       data.item: "renames" "elm.edit.rename";
11819       parts {
11820          GENLIST_PART_BASE( 71 )
11821          GENLIST_PART_BG_IMAGE
11822          GENLIST_PART_BOTTOM_LINE
11823          GENLIST_PART_PADDING_TOP( 7 )
11824          GENLIST_PART_PADDING_BOTTOM( 10 )
11825          GENLIST_PART_PADDING_LEFT( 20 )
11826          GENLIST_PART_PADDING_RIGHT( 10 )
11827          GENLIST_PART_DIALOGUE_ITEM
11828          part { name: "elm.text.2";
11829             clip_to: "disclip";
11830             type: TEXT;
11831             mouse_events: 0;
11832             scale: 1;
11833             description { state: "default" 0.0;
11834                min: 98 38;
11835                fixed: 1 1;
11836                rel1 {
11837                   relative: 0.0 1.0;
11838                   to_x: "elm.padding.right";
11839                   to_y: "elm.padding.top";
11840                }
11841                rel2 {
11842                   relative: 0.0 1.0;
11843                   to_x: "elm.padding.right";
11844                   to_y: "elm.padding.top";
11845                }
11846                align: 1.0 0.0;
11847                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
11848                text {
11849                   font: "SLP:style=Medium";
11850                   size: 20;
11851                   min: 0 1;
11852                   align: 1.0 0.5;
11853                }
11854             }
11855             description { state: "selected" 0.0;
11856                inherit: "default" 0.0;
11857                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
11858             }
11859             GENLIST_DESCRIPTION_RENAME_ENABLED
11860          }
11861          part { name: "elm.padding.text2.left";
11862             clip_to: "disclip";
11863             type: RECT;
11864             mouse_events: 0;
11865             scale: 1;
11866             description { state: "default" 0.0;
11867                min: 20 0;
11868                fixed: 1 0;
11869                rel1.to_x: "elm.text.2";
11870                rel2 {
11871                   relative: 0.0 1.0;
11872                   to_x: "elm.text.2";
11873                }
11874                align: 1.0 0.5;
11875                visible: 0;
11876             }
11877          }
11878          part { name: "elm.text.1";
11879             clip_to: "disclip";
11880             type: TEXT;
11881             mouse_events: 0;
11882             scale: 1;
11883             description { state: "default" 0.0;
11884                rel1 {
11885                   relative: 1.0 1.0;
11886                   to_x: "elm.padding.left";
11887                   to_y: "elm.padding.top";
11888                }
11889                rel2 {
11890                   relative: 0.0 1.0;
11891                   to_x: "elm.padding.text2.left";
11892                   to_y: "elm.text.2";
11893                }
11894                align: 0.0 0.5;
11895                color: GENLIST_PART_TEXT_COLOR_INC;
11896                text {
11897                   font: "SLP:style=Roman";
11898                   size: 28;
11899                   min: 0 1;
11900                   align: 0.0 0.5;
11901                }
11902             }
11903             description { state: "selected" 0.0;
11904                inherit: "default" 0.0;
11905                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
11906             }
11907             GENLIST_DESCRIPTION_RENAME_ENABLED
11908          }
11909          part { name: "elm.icon";
11910             clip_to: "disclip";
11911             type: SWALLOW;
11912             scale: 1;
11913             description { state: "default" 0.0;
11914                min: 0 10;
11915                fixed: 0 1;
11916                rel1 {
11917                   relative: 1.0 0.0;
11918                   to_x: "elm.padding.left";
11919                   to_y: "elm.padding.bottom";
11920                }
11921                rel2 {
11922                   relative: 0.0 0.0;
11923                   to_x: "elm.padding.right";
11924                   to_y: "elm.padding.bottom";
11925                }
11926                align: 0.0 1.0;
11927             }
11928             GENLIST_DESCRIPTION_RENAME_ENABLED
11929          }
11930          GENLIST_PART_RENAME
11931          GENLIST_PART_DISCLIP
11932       }
11933       programs {
11934          // signal: elm,state,%s,active
11935          //   a "check" item named %s went active
11936          // signal: elm,state,%s,passive
11937          //   a "check" item named %s went passive
11938          // default is passive
11939          program { name: "go_active";
11940             signal: "elm,state,selected";
11941             source: "elm";
11942             action: STATE_SET "selected" 0.0;
11943             target: "bg_image";
11944             target: "elm.text.1";
11945             target: "elm.text.2";
11946          }
11947          program { name: "go_passive";
11948             signal: "elm,state,unselected";
11949             source: "elm";
11950             action: STATE_SET "default" 0.0;
11951             target: "bg_image";
11952             target: "elm.text.1";
11953             target: "elm.text.2";
11954             transition: LINEAR 0.1;
11955          }
11956          program { name: "go_disabled";
11957             signal: "elm,state,disabled";
11958             source: "elm";
11959             action: STATE_SET "disabled" 0.0;
11960             target: "disclip";
11961          }
11962          program { name: "go_enabled";
11963             signal: "elm,state,enabled";
11964             source: "elm";
11965             action: STATE_SET "default" 0.0;
11966             target: "disclip";
11967          }
11968          GENLIST_PROGRAM_RENAME_2TEXT_1ICON
11969       }
11970    }
11971
11972    group { name: "elm/genlist/item/dialogue/1title.1text/default";
11973       alias: "elm/genlist/item_odd/dialogue/1title.1text/default";
11974       alias: "elm/genlist/item_compress/dialogue/1title.1text/default";
11975       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text/default";
11976       alias: "elm/genlist/item/dialogue.1title.1text/default";
11977       alias: "elm/genlist/item_odd/dialogue.1title.1text/default";
11978       alias: "elm/genlist/item_compress/dialogue.1title.1text/default";
11979       alias: "elm/genlist/item_compress_odd/dialogue.1title.1text/default";
11980       data.item: "stacking" "above";
11981       data.item: "selectraise" "on";
11982       data.item: "labels" "elm.title elm.text";
11983       data.item: "renames" "elm.edit.rename";
11984       parts {
11985          GENLIST_PART_BASE( 71 )
11986          GENLIST_PART_BOTTOM_LINE
11987          GENLIST_PART_PADDING_LEFT( 17 )
11988          GENLIST_PART_PADDING_RIGHT( 10 )
11989          GENLIST_PART_DIALOGUE_ITEM
11990          part { name: "elm.title";
11991             clip_to: "disclip";
11992             type: TEXT;
11993             mouse_events: 0;
11994             scale: 1;
11995             description { state: "default" 0.0;
11996                min: 102 0;
11997                fixed: 1 0;
11998                rel1 {
11999                   relative: 1.0 0.0;
12000                   to_x: "elm.padding.left";
12001                }
12002                rel2.to_x: "elm.padding.left";
12003                align: 0.0 0.5;
12004                color: GENLIST_PART_MULTILINE_TITLE_COLOR_INC;
12005                text {
12006                   font: "SLP:style=Medium";
12007                   size: 20;
12008                   min: 0 1;
12009                   align: 0.0 0.5;
12010                }
12011             }
12012          }
12013          part { name: "vertical_line";
12014             type: RECT;
12015             mouse_events: 0;
12016             description { state: "default" 0.0;
12017                min: 1 0;
12018                fixed: 1 0;
12019                rel1 {
12020                   relative: 1.0 0.0;
12021                   to_x: "elm.title";
12022                }
12023                rel2.to_x: "elm.title";
12024                align: 0.0 0.5;
12025                color: GENLIST_PART_BOTTOM_LINE_INC;
12026             }
12027          }
12028          part { name: "elm.padding.text.left";
12029             clip_to: "disclip";
12030             type: RECT;
12031             mouse_events: 0;
12032             scale: 1;
12033             description { state: "default" 0.0;
12034                min: 10 0;
12035                fixed: 1 0;
12036                rel1 {
12037                    relative: 1.0 0.0;
12038                    to_x: "vertical_line";
12039                }
12040                rel2.to_x: "vertical_line";
12041                align: 0.0 0.5;
12042                visible: 0;
12043             }
12044          }
12045          part { name: "elm.text";
12046             clip_to: "disclip";
12047             type: TEXT;
12048             mouse_events: 0;
12049             scale: 1;
12050             description { state: "default" 0.0;
12051                rel1 {
12052                   relative: 1.0 0.0;
12053                   to_x: "elm.padding.text.left";
12054                }
12055                rel2 {
12056                   relative: 0.0 1.0;
12057                   to_x: "elm.padding.right";
12058                }
12059                color: GENLIST_PART_TEXT_COLOR_INC;
12060                text {
12061                   font: "SLP:style=Roman";
12062                   size: 28;
12063                   min: 0 1;
12064                   align: 0.0 0.5;
12065                }
12066             }
12067             GENLIST_DESCRIPTION_RENAME_ENABLED
12068          }
12069          part { name: "elm.edit.rename";
12070             clip_to: "disclip";
12071             type: SWALLOW;
12072             mouse_events: 1;
12073             scale: 1;
12074             description { state: "default" 0.0;
12075                fixed: 1 1;
12076                rel1 {
12077                   relative: 0.0 0.5;
12078                   to_x: "elm.text";
12079                }
12080                rel2 {
12081                   relative: 0.0 0.5;
12082                   to_x: "elm.padding.right";
12083                }
12084                visible: 0;
12085             }
12086             description { state: "rename_enabled" 0.0;
12087                inherit: "default" 0.0;
12088                visible: 1;
12089             }
12090          }
12091          GENLIST_PART_DISCLIP
12092       }
12093       programs {
12094          // signal: elm,state,%s,active
12095          //   a "check" item named %s went active
12096          // signal: elm,state,%s,passive
12097          //   a "check" item named %s went passive
12098          // default is passive
12099          /*program { name: "go_active";
12100             signal: "elm,state,selected";
12101             source: "elm";
12102             action: STATE_SET "selected" 0.0;
12103             target: "elm.text";
12104          }
12105          program { name: "go_passive";
12106             signal: "elm,state,unselected";
12107             source: "elm";
12108             action: STATE_SET "default" 0.0;
12109             target: "elm.text";
12110             transition: LINEAR 0.1;
12111          }*/
12112          program { name: "go_disabled";
12113             signal: "elm,state,disabled";
12114             source: "elm";
12115             action: STATE_SET "disabled" 0.0;
12116             target: "disclip";
12117          }
12118          program { name: "go_enabled";
12119             signal: "elm,state,enabled";
12120             source: "elm";
12121             action: STATE_SET "default" 0.0;
12122             target: "disclip";
12123          }
12124          GENLIST_PROGRAM_RENAME_1TEXT
12125       }
12126    }
12127
12128    group { name: "elm/genlist/item/dialogue/1title.1text.3/default";
12129       alias: "elm/genlist/item_odd/dialogue/1title.1text.3/default";
12130       alias: "elm/genlist/item_compress/dialogue/1title.1text.3/default";
12131       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.3/default";
12132       alias: "elm/genlist/item/dialogue.1title.1text.3/default";
12133       alias: "elm/genlist/item_odd/dialogue.1title.1text.3/default";
12134       alias: "elm/genlist/item_compress/dialogue.1title.1text.3/default";
12135       alias: "elm/genlist/item_compress_odd/dialogue.1title.1text.3/default";
12136       data.item: "stacking" "above";
12137       data.item: "selectraise" "on";
12138       data.item: "labels" "elm.title elm.text";
12139       data.item: "renames" "elm.edit.rename.title elm.edit.rename";
12140       parts {
12141          GENLIST_PART_BASE( 71 )
12142          GENLIST_PART_BOTTOM_LINE
12143          GENLIST_PART_PADDING_LEFT( 17 )
12144          GENLIST_PART_PADDING_RIGHT( 10 )
12145          GENLIST_PART_DIALOGUE_ITEM
12146          part { name: "elm.title";
12147             clip_to: "disclip";
12148             type: TEXT;
12149             mouse_events: 0;
12150             scale: 1;
12151             description { state: "default" 0.0;
12152                min: 102 0;
12153                fixed: 1 0;
12154                rel1 {
12155                   relative: 1.0 0.0;
12156                   to_x: "elm.padding.left";
12157                }
12158                rel2.to_x: "elm.padding.left";
12159                align: 0.0 0.5;
12160                color: GENLIST_PART_MULTILINE_TITLE_COLOR_INC;
12161                text {
12162                   font: "SLP:style=Medium";
12163                   size: 20;
12164                   min: 0 1;
12165                   align: 0.0 0.5;
12166                }
12167             }
12168             GENLIST_DESCRIPTION_RENAME_ENABLED
12169          }
12170          part { name: "elm.edit.rename.title";
12171             clip_to: "disclip";
12172             type: SWALLOW;
12173             description { state: "default" 0.0;
12174                visible: 0;
12175                fixed: 1 1;
12176                rel1.to: "elm.title";
12177                rel2.to: "elm.title";
12178             }
12179             description { state: "rename_enabled" 0.0;
12180                inherit: "default" 0.0;
12181                visible: 1;
12182             }
12183          }
12184          part { name: "vertical_line";
12185             type: RECT;
12186             mouse_events: 0;
12187             description { state: "default" 0.0;
12188                min: 1 0;
12189                fixed: 1 0;
12190                rel1 {
12191                   relative: 1.0 0.0;
12192                   to_x: "elm.title";
12193                }
12194                rel2.to_x: "elm.title";
12195                align: 0.0 0.5;
12196                color: GENLIST_PART_BOTTOM_LINE_INC;
12197             }
12198          }
12199          part { name: "elm.padding.text.left";
12200             clip_to: "disclip";
12201             type: RECT;
12202             mouse_events: 0;
12203             scale: 1;
12204             description { state: "default" 0.0;
12205                min: 10 0;
12206                fixed: 1 0;
12207                rel1 {
12208                    relative: 1.0 0.0;
12209                    to_x: "vertical_line";
12210                }
12211                rel2.to_x: "vertical_line";
12212                align: 0.0 0.5;
12213                visible: 0;
12214             }
12215          }
12216          part { name: "elm.text";
12217             clip_to: "disclip";
12218             type: TEXT;
12219             mouse_events: 0;
12220             scale: 1;
12221             description { state: "default" 0.0;
12222                rel1 {
12223                   relative: 1.0 0.0;
12224                   to_x: "elm.padding.text.left";
12225                }
12226                rel2 {
12227                   relative: 0.0 1.0;
12228                   to_x: "elm.padding.right";
12229                }
12230                color: GENLIST_PART_TEXT_COLOR_INC;
12231                text {
12232                   font: "SLP:style=Roman";
12233                   size: 28;
12234                   min: 0 1;
12235                   align: 0.0 0.5;
12236                }
12237             }
12238             GENLIST_DESCRIPTION_RENAME_ENABLED
12239          }
12240          part { name: "elm.edit.rename";
12241             clip_to: "disclip";
12242             type: SWALLOW;
12243             mouse_events: 1;
12244             scale: 1;
12245             description { state: "default" 0.0;
12246                fixed: 1 1;
12247                rel1 {
12248                   relative: 0.0 0.5;
12249                   to_x: "elm.text";
12250                }
12251                rel2 {
12252                   relative: 0.0 0.5;
12253                   to_x: "elm.padding.right";
12254                }
12255                visible: 0;
12256             }
12257             description { state: "rename_enabled" 0.0;
12258                inherit: "default" 0.0;
12259                visible: 1;
12260             }
12261          }
12262          GENLIST_PART_DISCLIP
12263       }
12264       programs {
12265          // signal: elm,state,%s,active
12266          //   a "check" item named %s went active
12267          // signal: elm,state,%s,passive
12268          //   a "check" item named %s went passive
12269          // default is passive
12270          /*program { name: "go_active";
12271             signal: "elm,state,selected";
12272             source: "elm";
12273             action: STATE_SET "selected" 0.0;
12274             target: "elm.text";
12275          }
12276          program { name: "go_passive";
12277             signal: "elm,state,unselected";
12278             source: "elm";
12279             action: STATE_SET "default" 0.0;
12280             target: "elm.text";
12281             transition: LINEAR 0.1;
12282          }*/
12283          program { name: "go_disabled";
12284             signal: "elm,state,disabled";
12285             source: "elm";
12286             action: STATE_SET "disabled" 0.0;
12287             target: "disclip";
12288          }
12289          program { name: "go_enabled";
12290             signal: "elm,state,enabled";
12291             source: "elm";
12292             action: STATE_SET "default" 0.0;
12293             target: "disclip";
12294          }
12295          program { name: "rename_enabled";
12296             signal: "elm,state,rename,enabled";
12297             source: "elm";
12298             action: STATE_SET "rename_enabled" 0.0;
12299             target: "elm.title";
12300             target: "elm.text";
12301             target: "elm.edit.rename.title";
12302             target: "elm.edit.rename";
12303          }
12304          program { name: "rename_disabled";
12305             signal: "elm,state,rename,disabled";
12306             source: "elm";
12307             action: STATE_SET "default" 0.0;
12308             target: "elm.title";
12309             target: "elm.text";
12310             target: "elm.edit.rename.title";
12311             target: "elm.edit.rename";
12312          }
12313       }
12314    }
12315
12316    group { name: "elm/genlist/item/dialogue/1title.1text.1icon/default";
12317       alias: "elm/genlist/item_odd/dialogue/1title.1text.1icon/default";
12318       alias: "elm/genlist/item_compress/dialogue/1title.1text.1icon/default";
12319       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.1icon/default";
12320       data.item: "stacking" "above";
12321       data.item: "selectraise" "on";
12322       data.item: "labels" "elm.title elm.text";
12323       data.item: "icons" "elm.icon";
12324       data.item: "renames" "elm.edit.rename";
12325       parts {
12326          GENLIST_PART_BASE( 71 )
12327          GENLIST_PART_BOTTOM_LINE
12328          GENLIST_PART_PADDING_LEFT( 17 )
12329          GENLIST_PART_PADDING_RIGHT( 10 )
12330          GENLIST_PART_DIALOGUE_ITEM
12331          part { name: "elm.title";
12332             clip_to: "disclip";
12333             type: TEXT;
12334             mouse_events: 0;
12335             scale: 1;
12336             description { state: "default" 0.0;
12337                min: 102 0;
12338                fixed: 1 0;
12339                rel1 {
12340                   relative: 1.0 0.0;
12341                   to_x: "elm.padding.left";
12342                }
12343                rel2.to_x: "elm.padding.left";
12344                align: 0.0 0.5;
12345                color: GENLIST_PART_MULTILINE_TITLE_COLOR_INC;
12346                text {
12347                   font: "SLP:style=Medium";
12348                   size: 20;
12349                   min: 0 1;
12350                   align: 0.0 0.5;
12351                }
12352             }
12353          }
12354          part { name: "vertical_line";
12355             type: RECT;
12356             mouse_events: 0;
12357             description { state: "default" 0.0;
12358                min: 1 0;
12359                fixed: 1 0;
12360                rel1 {
12361                   relative: 1.0 0.0;
12362                   to_x: "elm.title";
12363                }
12364                rel2.to_x: "elm.title";
12365                align: 0.0 0.5;
12366                color: GENLIST_PART_BOTTOM_LINE_INC;
12367             }
12368          }
12369          part { name: "elm.padding.text.left";
12370             clip_to: "disclip";
12371             type: RECT;
12372             mouse_events: 0;
12373             scale: 1;
12374             description { state: "default" 0.0;
12375                min: 10 0;
12376                fixed: 1 0;
12377                rel1 {
12378                    relative: 1.0 0.0;
12379                    to_x: "vertical_line";
12380                }
12381                rel2.to_x: "vertical_line";
12382                align: 0.0 0.5;
12383                visible: 0;
12384             }
12385          }
12386          part { name: "elm.icon";
12387            clip_to: "disclip";
12388             type: SWALLOW;
12389             mouse_events: 0;
12390             scale: 1;
12391             description { state: "default" 0.0;
12392                min: 20 20;
12393                max: 20 20;
12394                fixed: 1 1;
12395                rel1.to_x: "elm.padding.right";
12396                rel2 {
12397                   relative: 0.0 1.0;
12398                   to_x: "elm.padding.right";
12399                }
12400                align: 1.0 0.5;
12401             }
12402          }
12403          part { name: "elm.padding.icon.left";
12404             clip_to: "disclip";
12405             type: RECT;
12406             mouse_events: 0;
12407             scale: 1;
12408             description { state: "default" 0.0;
12409                min: 10 0;
12410                fixed: 1 0;
12411                rel1.to_x: "elm.icon";
12412                rel2 {
12413                    relative: 0.0 1.0;
12414                    to_x: "elm.icon";
12415                }
12416                rel2.to_x: "elm.icon";
12417                align: 1.0 0.5;
12418                visible: 0;
12419             }
12420          }
12421          part { name: "elm.text";
12422             clip_to: "disclip";
12423             type: TEXT;
12424             mouse_events: 0;
12425             scale: 1;
12426             description { state: "default" 0.0;
12427                rel1 {
12428                   relative: 1.0 0.0;
12429                   to_x: "elm.padding.text.left";
12430                }
12431                rel2 {
12432                   relative: 0.0 1.0;
12433                   to_x: "elm.padding.icon.left";
12434                }
12435                color: GENLIST_PART_SUB_TEXT_SETTINGS_COLOR_INC;
12436                text {
12437                   font: "SLP:style=Roman";
12438                   size: 28;
12439                   min: 0 1;
12440                   align: 0.0 0.5;
12441                }
12442             }
12443             GENLIST_DESCRIPTION_RENAME_ENABLED
12444          }
12445          part { name: "elm.edit.rename";
12446             clip_to: "disclip";
12447             type: SWALLOW;
12448             mouse_events: 1;
12449             scale: 1;
12450             description { state: "default" 0.0;
12451                fixed: 1 1;
12452                rel1 {
12453                   relative: 0.0 0.5;
12454                   to_x: "elm.text";
12455                }
12456                rel2 {
12457                   relative: 0.0 0.5;
12458                   to_x: "elm.padding.right";
12459                }
12460                visible: 0;
12461             }
12462             description { state: "rename_enabled" 0.0;
12463                inherit: "default" 0.0;
12464                visible: 1;
12465             }
12466          }
12467          GENLIST_PART_DISCLIP
12468       }
12469       programs {
12470          // signal: elm,state,%s,active
12471          //   a "check" item named %s went active
12472          // signal: elm,state,%s,passive
12473          //   a "check" item named %s went passive
12474          // default is passive
12475          /*program { name: "go_active";
12476             signal: "elm,state,selected";
12477             source: "elm";
12478             action: STATE_SET "selected" 0.0;
12479             target: "elm.text";
12480          }
12481          program { name: "go_passive";
12482             signal: "elm,state,unselected";
12483             source: "elm";
12484             action: STATE_SET "default" 0.0;
12485             target: "elm.text";
12486             transition: LINEAR 0.1;
12487          }*/
12488          program { name: "go_disabled";
12489             signal: "elm,state,disabled";
12490             source: "elm";
12491             action: STATE_SET "disabled" 0.0;
12492             target: "disclip";
12493          }
12494          program { name: "go_enabled";
12495             signal: "elm,state,enabled";
12496             source: "elm";
12497             action: STATE_SET "default" 0.0;
12498             target: "disclip";
12499          }
12500          GENLIST_PROGRAM_RENAME_1TEXT
12501       }
12502    }
12503
12504    group { name: "elm/genlist/item/dialogue/1title.1text.1icon.2/default";
12505       alias: "elm/genlist/item_odd/dialogue/1title.1text.1icon.2/default";
12506       alias: "elm/genlist/item_compress/dialogue/1title.1text.1icon.2/default";
12507       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.1icon.2/default";
12508       data.item: "stacking" "above";
12509       data.item: "selectraise" "on";
12510       data.item: "labels" "elm.title elm.text";
12511       data.item: "icons" "elm.icon";
12512       data.item: "renames" "elm.edit.rename.title elm.edit.rename";
12513       parts {
12514          GENLIST_PART_BASE( 71 )
12515          GENLIST_PART_BOTTOM_LINE
12516          GENLIST_PART_PADDING_LEFT( 17 )
12517          GENLIST_PART_PADDING_RIGHT( 10 )
12518          GENLIST_PART_DIALOGUE_ITEM
12519          part { name: "elm.title";
12520             clip_to: "disclip";
12521             type: TEXT;
12522             mouse_events: 0;
12523             scale: 1;
12524             description { state: "default" 0.0;
12525                min: 102 0;
12526                fixed: 1 0;
12527                rel1 {
12528                   relative: 1.0 0.0;
12529                   to_x: "elm.padding.left";
12530                }
12531                rel2.to_x: "elm.padding.left";
12532                align: 0.0 0.5;
12533                color: GENLIST_PART_MULTILINE_TITLE_COLOR_INC;
12534                text {
12535                   font: "SLP:style=Medium";
12536                   size: 20;
12537                   min: 0 1;
12538                   align: 0.0 0.5;
12539                }
12540             }
12541             GENLIST_DESCRIPTION_RENAME_ENABLED
12542          }
12543          part { name: "elm.edit.rename.title";
12544             clip_to: "disclip";
12545             type: SWALLOW;
12546             description { state: "default" 0.0;
12547                visible: 0;
12548                fixed: 1 1;
12549                rel1.to: "elm.title";
12550                rel2.to: "elm.title";
12551             }
12552             description { state: "rename_enabled" 0.0;
12553                inherit: "default" 0.0;
12554                visible: 1;
12555             }
12556          }
12557          part { name: "vertical_line";
12558             type: RECT;
12559             mouse_events: 0;
12560             description { state: "default" 0.0;
12561                min: 1 0;
12562                fixed: 1 0;
12563                rel1 {
12564                   relative: 1.0 0.0;
12565                   to_x: "elm.title";
12566                }
12567                rel2.to_x: "elm.title";
12568                align: 0.0 0.5;
12569                color: GENLIST_PART_BOTTOM_LINE_INC;
12570             }
12571          }
12572          part { name: "elm.padding.text.left";
12573             clip_to: "disclip";
12574             type: RECT;
12575             mouse_events: 0;
12576             scale: 1;
12577             description { state: "default" 0.0;
12578                min: 10 0;
12579                fixed: 1 0;
12580                rel1 {
12581                    relative: 1.0 0.0;
12582                    to_x: "vertical_line";
12583                }
12584                rel2.to_x: "vertical_line";
12585                align: 0.0 0.5;
12586                visible: 0;
12587             }
12588          }
12589          part { name: "elm.icon";
12590            clip_to: "disclip";
12591             type: SWALLOW;
12592             mouse_events: 0;
12593             scale: 1;
12594             description { state: "default" 0.0;
12595                min: 20 20;
12596                max: 20 20;
12597                fixed: 1 1;
12598                rel1.to_x: "elm.padding.right";
12599                rel2 {
12600                   relative: 0.0 1.0;
12601                   to_x: "elm.padding.right";
12602                }
12603                align: 1.0 0.5;
12604             }
12605          }
12606          part { name: "elm.padding.icon.left";
12607             clip_to: "disclip";
12608             type: RECT;
12609             mouse_events: 0;
12610             scale: 1;
12611             description { state: "default" 0.0;
12612                min: 10 0;
12613                fixed: 1 0;
12614                rel1.to_x: "elm.icon";
12615                rel2 {
12616                    relative: 0.0 1.0;
12617                    to_x: "elm.icon";
12618                }
12619                rel2.to_x: "elm.icon";
12620                align: 1.0 0.5;
12621                visible: 0;
12622             }
12623          }
12624          part { name: "elm.text";
12625             clip_to: "disclip";
12626             type: TEXT;
12627             mouse_events: 0;
12628             scale: 1;
12629             description { state: "default" 0.0;
12630                rel1 {
12631                   relative: 1.0 0.0;
12632                   to_x: "elm.padding.text.left";
12633                }
12634                rel2 {
12635                   relative: 0.0 1.0;
12636                   to_x: "elm.padding.icon.left";
12637                }
12638                color: GENLIST_PART_SUB_TEXT_SETTINGS_COLOR_INC;
12639                text {
12640                   font: "SLP:style=Roman";
12641                   size: 28;
12642                   min: 0 1;
12643                   align: 0.0 0.5;
12644                }
12645             }
12646             GENLIST_DESCRIPTION_RENAME_ENABLED
12647          }
12648          part { name: "elm.edit.rename";
12649             clip_to: "disclip";
12650             type: SWALLOW;
12651             mouse_events: 1;
12652             scale: 1;
12653             description { state: "default" 0.0;
12654                fixed: 1 1;
12655                rel1 {
12656                   relative: 0.0 0.5;
12657                   to_x: "elm.text";
12658                }
12659                rel2 {
12660                   relative: 1.0 0.5;
12661                   to_x: "elm.padding.icon.left";
12662                }
12663                visible: 0;
12664             }
12665             description { state: "rename_enabled" 0.0;
12666                inherit: "default" 0.0;
12667                visible: 1;
12668             }
12669          }
12670          GENLIST_PART_DISCLIP
12671       }
12672       programs {
12673          // signal: elm,state,%s,active
12674          //   a "check" item named %s went active
12675          // signal: elm,state,%s,passive
12676          //   a "check" item named %s went passive
12677          // default is passive
12678          /*program { name: "go_active";
12679             signal: "elm,state,selected";
12680             source: "elm";
12681             action: STATE_SET "selected" 0.0;
12682             target: "elm.text";
12683          }
12684          program { name: "go_passive";
12685             signal: "elm,state,unselected";
12686             source: "elm";
12687             action: STATE_SET "default" 0.0;
12688             target: "elm.text";
12689             transition: LINEAR 0.1;
12690          }*/
12691          program { name: "go_disabled";
12692             signal: "elm,state,disabled";
12693             source: "elm";
12694             action: STATE_SET "disabled" 0.0;
12695             target: "disclip";
12696          }
12697          program { name: "go_enabled";
12698             signal: "elm,state,enabled";
12699             source: "elm";
12700             action: STATE_SET "default" 0.0;
12701             target: "disclip";
12702          }
12703          program { name: "rename_enabled";
12704             signal: "elm,state,rename,enabled";
12705             source: "elm";
12706             action: STATE_SET "rename_enabled" 0.0;
12707             target: "elm.title";
12708             target: "elm.text";
12709             target: "elm.edit.rename.title";
12710             target: "elm.edit.rename";
12711          }
12712          program { name: "rename_disabled";
12713             signal: "elm,state,rename,disabled";
12714             source: "elm";
12715             action: STATE_SET "default" 0.0;
12716             target: "elm.title";
12717             target: "elm.text";
12718             target: "elm.edit.rename.title";
12719             target: "elm.edit.rename";
12720          }
12721       }
12722    }
12723
12724    group { name: "elm/genlist/item/dialogue/2text.4/default";
12725       alias: "elm/genlist/item_odd/dialogue/2text.4/default";
12726       alias: "elm/genlist/item_compress/dialogue/2text.4/default";
12727       alias: "elm/genlist/item_compress_odd/dialogue/2text.4/default";
12728       data.item: "stacking" "above";
12729       data.item: "selectraise" "on";
12730       data.item: "labels" "elm.text.1 elm.text.2";
12731       data.item: "renames" "elm.edit.rename";
12732       parts {
12733          GENLIST_PART_BASE( 61 )
12734          GENLIST_PART_BOTTOM_LINE
12735          GENLIST_PART_PADDING_LEFT( 10 )
12736          GENLIST_PART_PADDING_RIGHT( 10 )
12737          GENLIST_PART_DIALOGUE_ITEM
12738          part { name: "elm.text.2";
12739             clip_to: "disclip";
12740             type: TEXT;
12741             mouse_events: 0;
12742             scale: 1;
12743             description { state: "default" 0.0;
12744                min: 129 0;
12745                fixed: 1 0;
12746                rel1.to_x: "elm.padding.right";
12747                rel2 {
12748                   relative: 0.0 1.0;
12749                   to_x: "elm.padding.right";
12750                }
12751                rel2.to_x: "elm.padding.right";
12752                align: 1.0 0.5;
12753                color: GENLIST_PART_MULTILINE_TITLE_COLOR_INC;
12754                text {
12755                   font: "SLP:style=Medium";
12756                   size: 20;
12757                   min: 0 1;
12758                   align: 0.0 0.5;
12759                }
12760             }
12761          }
12762          part { name: "elm.padding.text2.left";
12763             type: RECT;
12764             mouse_events: 0;
12765             scale: 1;
12766             description { state: "default" 0.0;
12767                min: 10 0;
12768                fixed: 1 0;
12769                rel1.to_x: "elm.text.2";
12770                rel2 {
12771                   relative: 0.0 1.0;
12772                   to_x: "elm.text.2";
12773                }
12774                align: 1.0 0.5;
12775                visible: 0;
12776             }
12777          }
12778          part { name: "vertical_line";
12779             type: RECT;
12780             mouse_events: 0;
12781             description { state: "default" 0.0;
12782                min: 1 0;
12783                fixed: 1 0;
12784                rel1.to_x: "elm.padding.text2.left";
12785                rel2 {
12786                   relative: 0.0 1.0;
12787                   to_x: "elm.padding.text2.left";
12788                }
12789                align: 1.0 0.5;
12790                color: GENLIST_PART_BOTTOM_LINE_INC;
12791             }
12792          }
12793          part { name: "elm.padding.text1.right";
12794             type: RECT;
12795             mouse_events: 0;
12796             scale: 1;
12797             description { state: "default" 0.0;
12798                min: 10 0;
12799                fixed: 1 0;
12800                rel1.to_x: "vertical_line";
12801                rel2 {
12802                   relative: 0.0 1.0;
12803                   to_x: "vertical_line";
12804                }
12805                align: 1.0 0.5;
12806                visible: 0;
12807             }
12808          }
12809          part { name: "elm.text.1";
12810             clip_to: "disclip";
12811             type: TEXT;
12812             mouse_events: 0;
12813             scale: 1;
12814             description { state: "default" 0.0;
12815                rel1 {
12816                   relative: 1.0 0.0;
12817                   to_x: "elm.padding.left";
12818                }
12819                rel2 {
12820                   relative: 0.0  1.0;
12821                   to_x: "elm.padding.text1.right";
12822                }
12823                color: GENLIST_PART_TEXT_COLOR_INC;
12824                text {
12825                   font: "SLP:style=Roman";
12826                   size: 26;
12827                   min: 0 1;
12828                   align: 1.0 0.5;
12829                }
12830             }
12831             description { state: "selected" 0.0;
12832                inherit: "default" 0.0;
12833                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
12834             }
12835             GENLIST_DESCRIPTION_RENAME_ENABLED
12836          }
12837          part { name: "elm.edit.rename";
12838             clip_to: "disclip";
12839             type: SWALLOW;
12840             mouse_events: 1;
12841             scale: 1;
12842             description { state: "default" 0.0;
12843                fixed: 1 1;
12844                rel1 {
12845                   relative: 1.0 0.5;
12846                   to_x: "vertical_line";
12847                }
12848                rel2 {
12849                   relative: 0.0 0.5;
12850                   to_x: "elm.padding.right";
12851                }
12852                visible: 0;
12853             }
12854             description { state: "rename_enabled" 0.0;
12855                inherit: "default" 0.0;
12856                visible: 1;
12857             }
12858          }
12859          GENLIST_PART_DISCLIP
12860       }
12861       programs {
12862          // signal: elm,state,%s,active
12863          //   a "check" item named %s went active
12864          // signal: elm,state,%s,passive
12865          //   a "check" item named %s went passive
12866          // default is passive
12867          /*program { name: "go_active";
12868             signal: "elm,state,selected";
12869             source: "elm";
12870             action: STATE_SET "selected" 0.0;
12871             target: "elm.text";
12872          }
12873          program { name: "go_passive";
12874             signal: "elm,state,unselected";
12875             source: "elm";
12876             action: STATE_SET "default" 0.0;
12877             target: "elm.text";
12878             transition: LINEAR 0.1;
12879          }*/
12880          program { name: "go_disabled";
12881             signal: "elm,state,disabled";
12882             source: "elm";
12883             action: STATE_SET "disabled" 0.0;
12884             target: "disclip";
12885          }
12886          program { name: "go_enabled";
12887             signal: "elm,state,enabled";
12888             source: "elm";
12889             action: STATE_SET "default" 0.0;
12890             target: "disclip";
12891          }
12892          GENLIST_PROGRAM_RENAME_2TEXT
12893       }
12894    }
12895
12896    group { name: "elm/genlist/item/dialogue/2text/default";
12897       alias: "elm/genlist/item_odd/dialogue/2text/default";
12898       alias: "elm/genlist/item_compress/dialogue/2text/default";
12899       alias: "elm/genlist/item_compress_odd/dialogue/2text/default";
12900       data.item: "stacking" "above";
12901       data.item: "selectraise" "on";
12902       data.item: "labels" "elm.text.1 elm.text.2";
12903       data.item: "renames" "elm.edit.rename";
12904       parts {
12905          GENLIST_PART_BASE( 81 )
12906          GENLIST_PART_BG_IMAGE
12907          GENLIST_PART_BOTTOM_LINE
12908          GENLIST_PART_PADDING_TOP( 6 )
12909          GENLIST_PART_PADDING_BOTTOM( 6 )
12910          GENLIST_PART_PADDING_LEFT( 20 )
12911          GENLIST_PART_PADDING_RIGHT( 10 )
12912          GENLIST_PART_DIALOGUE_ITEM
12913          part { name: "elm.text.1";
12914             clip_to: "disclip";
12915             type: TEXT;
12916             mouse_events: 0;
12917             scale: 1;
12918             description { state: "default" 0.0;
12919                min: 0 38;
12920                fixed: 0 1;
12921                rel1 {
12922                   relative: 1.0 1.0;
12923                   to_x: "elm.padding.left";
12924                   to_y: "elm.padding.top";
12925                }
12926                rel2 {
12927                   relative: 0.0 1.0;
12928                   to_x: "elm.padding.right";
12929                   to_y: "elm.padding.top";
12930                }
12931                align: 0.0 0.0;
12932                color: GENLIST_PART_TEXT_COLOR_INC;
12933                text {
12934                   font: "SLP:style=Regular";
12935                   size: 28;
12936                   min: 0 1;
12937                   align: 0.0 0.5;
12938                }
12939             }
12940             description { state: "selected" 0.0;
12941                inherit: "default" 0.0;
12942                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
12943             }
12944             GENLIST_DESCRIPTION_RENAME_ENABLED
12945          }
12946          part { name: "elm.text.2";
12947             clip_to: "disclip";
12948             type: TEXT;
12949             mouse_events: 0;
12950             scale: 1;
12951             description { state: "default" 0.0;
12952                rel1 {
12953                   relative: 1.0 1.0;
12954                   to_x: "elm.padding.left";
12955                   to_y: "elm.text.1";
12956                }
12957                rel2 {
12958                   relative: 0.0 0.0;
12959                   to_x: "elm.padding.right";
12960                   to_y: "elm.padding.bottom";
12961                }
12962                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
12963                text {
12964                   font: "SLP:style=Medium";
12965                   size: 20;
12966                   min: 0 1;
12967                   align: 0.0 0.5;
12968                }
12969             }
12970             description { state: "selected" 0.0;
12971                inherit: "default" 0.0;
12972                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
12973             }
12974             GENLIST_DESCRIPTION_RENAME_ENABLED
12975          }
12976          GENLIST_PART_RENAME
12977          GENLIST_PART_DISCLIP
12978       }
12979       programs {
12980          // signal: elm,state,%s,active
12981          //   a "check" item named %s went active
12982          // signal: elm,state,%s,passive
12983          //   a "check" item named %s went passive
12984          // default is passive
12985          program { name: "go_active";
12986             signal: "elm,state,selected";
12987             source: "elm";
12988             action: STATE_SET "selected" 0.0;
12989             target: "bg_image";
12990             target: "elm.text.1";
12991             target: "elm.text.2";
12992          }
12993          program { name: "go_passive";
12994             signal: "elm,state,unselected";
12995             source: "elm";
12996             action: STATE_SET "default" 0.0;
12997             target: "bg_image";
12998             target: "elm.text.1";
12999             target: "elm.text.2";
13000             transition: LINEAR 0.1;
13001          }
13002          program { name: "go_disabled";
13003             signal: "elm,state,disabled";
13004             source: "elm";
13005             action: STATE_SET "disabled" 0.0;
13006             target: "disclip";
13007          }
13008          program { name: "go_enabled";
13009             signal: "elm,state,enabled";
13010             source: "elm";
13011             action: STATE_SET "default" 0.0;
13012             target: "disclip";
13013          }
13014          GENLIST_PROGRAM_RENAME_2TEXT
13015       }
13016    }
13017
13018    group { name: "elm/genlist/item/dialogue/2text.2/default";
13019       alias: "elm/genlist/item_odd/dialogue/2text.2/default";
13020       alias: "elm/genlist/item_compress/dialogue/2text.2/default";
13021       alias: "elm/genlist/item_compress_odd/dialogue/2text.2/default";
13022       data.item: "stacking" "above";
13023       data.item: "selectraise" "on";
13024       data.item: "labels" "elm.text.1 elm.text.2";
13025       data.item: "renames" "elm.edit.rename";
13026       parts {
13027          GENLIST_PART_BASE( 81 )
13028          GENLIST_PART_BG_IMAGE
13029          GENLIST_PART_BOTTOM_LINE
13030          GENLIST_PART_PADDING_TOP( 6 )
13031          GENLIST_PART_PADDING_BOTTOM( 6 )
13032          GENLIST_PART_PADDING_LEFT( 20 )
13033          GENLIST_PART_PADDING_RIGHT( 10 )
13034          GENLIST_PART_DIALOGUE_ITEM
13035          part { name: "elm.text.1";
13036             clip_to: "disclip";
13037             type: TEXT;
13038             mouse_events: 0;
13039             scale: 1;
13040             description { state: "default" 0.0;
13041                min: 0 38;
13042                fixed: 0 1;
13043                rel1 {
13044                   relative: 1.0 0.0;
13045                   to_x: "elm.padding.left";
13046                   to_y: "elm.padding.bottom";
13047                }
13048                rel2 {
13049                   relative: 0.0 0.0;
13050                   to_x: "elm.padding.right";
13051                   to_y: "elm.padding.bottom";
13052                }
13053                align: 0.0 1.0;
13054                color: GENLIST_PART_TEXT_COLOR_INC;
13055                text {
13056                   font: "SLP:style=Roman";
13057                   size: 28;
13058                   min: 0 1;
13059                   align: 0.0 0.5;
13060                }
13061             }
13062             description { state: "selected" 0.0;
13063                inherit: "default" 0.0;
13064                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
13065             }
13066             GENLIST_DESCRIPTION_RENAME_ENABLED
13067          }
13068          part { name: "elm.text.2";
13069             clip_to: "disclip";
13070             type: TEXT;
13071             mouse_events: 0;
13072             scale: 1;
13073             description { state: "default" 0.0;
13074                rel1 {
13075                   relative: 1.0 1.0;
13076                   to_x: "elm.padding.left";
13077                   to_y: "elm.padding.top";
13078                }
13079                rel2 {
13080                   relative: 0.0 0.0;
13081                   to_x: "elm.padding.right";
13082                   to_y: "elm.text.1";
13083                }
13084                align: 0.0 1.0;
13085                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
13086                text {
13087                   font: "SLP:style=Medium";
13088                   size: 20;
13089                   min: 0 1;
13090                   align: 0.0 0.5;
13091                }
13092             }
13093             description { state: "selected" 0.0;
13094                inherit: "default" 0.0;
13095                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
13096             }
13097             GENLIST_DESCRIPTION_RENAME_ENABLED
13098          }
13099          GENLIST_PART_RENAME
13100          GENLIST_PART_DISCLIP
13101       }
13102       programs {
13103          // signal: elm,state,%s,active
13104          //   a "check" item named %s went active
13105          // signal: elm,state,%s,passive
13106          //   a "check" item named %s went passive
13107          // default is passive
13108          program { name: "go_active";
13109             signal: "elm,state,selected";
13110             source: "elm";
13111             action: STATE_SET "selected" 0.0;
13112             target: "bg_image";
13113             target: "elm.text.1";
13114             target: "elm.text.2";
13115          }
13116          program { name: "go_passive";
13117             signal: "elm,state,unselected";
13118             source: "elm";
13119             action: STATE_SET "default" 0.0;
13120             target: "bg_image";
13121             target: "elm.text.1";
13122             target: "elm.text.2";
13123             transition: LINEAR 0.1;
13124          }
13125          program { name: "go_disabled";
13126             signal: "elm,state,disabled";
13127             source: "elm";
13128             action: STATE_SET "disabled" 0.0;
13129             target: "disclip";
13130          }
13131          program { name: "go_enabled";
13132             signal: "elm,state,enabled";
13133             source: "elm";
13134             action: STATE_SET "default" 0.0;
13135             target: "disclip";
13136          }
13137          GENLIST_PROGRAM_RENAME_2TEXT
13138       }
13139    }
13140
13141    group { name: "elm/genlist/item/dialogue/2text.3/default";
13142       alias: "elm/genlist/item_odd/dialogue/2text.3/default";
13143       alias: "elm/genlist/item_compress/dialogue/2text.3/default";
13144       alias: "elm/genlist/item_compress_odd/dialogue/2text.3/default";
13145       data.item: "stacking" "above";
13146       data.item: "selectraise" "on";
13147       data.item: "labels" "elm.text.1 elm.text.2";
13148       data.item: "renames" "elm.edit.rename";
13149       parts {
13150          GENLIST_PART_BASE( 81 )
13151          GENLIST_PART_BG_IMAGE
13152          GENLIST_PART_BOTTOM_LINE
13153          GENLIST_PART_PADDING_TOP( 6 )
13154          GENLIST_PART_PADDING_BOTTOM( 6 )
13155          GENLIST_PART_PADDING_LEFT( 20 )
13156          GENLIST_PART_PADDING_RIGHT( 10 )
13157          GENLIST_PART_DIALOGUE_ITEM
13158          part { name: "elm.text.1";
13159             clip_to: "disclip";
13160             type: TEXT;
13161             mouse_events: 0;
13162             scale: 1;
13163             description { state: "default" 0.0;
13164                min: 0 38;
13165                fixed: 0 1;
13166                rel1 {
13167                   relative: 1.0 1.0;
13168                   to_x: "elm.padding.left";
13169                   to_y: "elm.padding.top";
13170                }
13171                rel2 {
13172                   relative: 0.0 1.0;
13173                   to_x: "elm.padding.right";
13174                   to_y: "elm.padding.top";
13175                }
13176                align: 0.0 0.0;
13177                color: GENLIST_PART_TEXT_COLOR_INC;
13178                text {
13179                   font: "SLP:style=Regular";
13180                   size: 28;
13181                   min: 0 1;
13182                   align: 0.0 0.5;
13183                }
13184             }
13185             description { state: "selected" 0.0;
13186                inherit: "default" 0.0;
13187                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
13188             }
13189             GENLIST_DESCRIPTION_RENAME_ENABLED
13190          }
13191          part { name: "elm.text.2";
13192             clip_to: "disclip";
13193             type: TEXT;
13194             mouse_events: 0;
13195             scale: 1;
13196             description { state: "default" 0.0;
13197                rel1 {
13198                   relative: 1.0 1.0;
13199                   to_x: "elm.padding.left";
13200                   to_y: "elm.text.1";
13201                }
13202                rel2 {
13203                   relative: 0.0 0.0;
13204                   to_x: "elm.padding.right";
13205                   to_y: "elm.padding.bottom";
13206                }
13207                color: GENLIST_PART_SUB_TEXT_SETTINGS_COLOR_INC;
13208                text {
13209                   font: "SLP:style=Medium";
13210                   size: 20;
13211                   min: 0 1;
13212                   align: 0.0 0.5;
13213                }
13214             }
13215             description { state: "selected" 0.0;
13216                inherit: "default" 0.0;
13217                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
13218             }
13219             GENLIST_DESCRIPTION_RENAME_ENABLED
13220          }
13221          GENLIST_PART_RENAME
13222          GENLIST_PART_DISCLIP
13223       }
13224       programs {
13225          // signal: elm,state,%s,active
13226          //   a "check" item named %s went active
13227          // signal: elm,state,%s,passive
13228          //   a "check" item named %s went passive
13229          // default is passive
13230          program { name: "go_active";
13231             signal: "elm,state,selected";
13232             source: "elm";
13233             action: STATE_SET "selected" 0.0;
13234             target: "bg_image";
13235             target: "elm.text.1";
13236             target: "elm.text.2";
13237          }
13238          program { name: "go_passive";
13239             signal: "elm,state,unselected";
13240             source: "elm";
13241             action: STATE_SET "default" 0.0;
13242             target: "bg_image";
13243             target: "elm.text.1";
13244             target: "elm.text.2";
13245             transition: LINEAR 0.1;
13246          }
13247          program { name: "go_disabled";
13248             signal: "elm,state,disabled";
13249             source: "elm";
13250             action: STATE_SET "disabled" 0.0;
13251             target: "disclip";
13252          }
13253          program { name: "go_enabled";
13254             signal: "elm,state,enabled";
13255             source: "elm";
13256             action: STATE_SET "default" 0.0;
13257             target: "disclip";
13258          }
13259          GENLIST_PROGRAM_RENAME_2TEXT
13260       }
13261    }
13262
13263    group { name: "elm/genlist/item/dialogue/2text.1icon.2/default";
13264       alias: "elm/genlist/item_odd/dialogue/2text.1icon.2/default";
13265       alias: "elm/genlist/item_compress/dialogue/2text.1icon.2/default";
13266       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.2/default";
13267       data.item: "stacking" "above";
13268       data.item: "selectraise" "on";
13269       data.item: "labels" "elm.text.1 elm.text.2";
13270       data.item: "icons" "elm.icon";
13271       data.item: "renames" "elm.edit.rename";
13272       parts {
13273          GENLIST_PART_BASE( 81 )
13274          GENLIST_PART_BG_IMAGE
13275          GENLIST_PART_BOTTOM_LINE
13276          GENLIST_PART_PADDING_TOP( 6 )
13277          GENLIST_PART_PADDING_BOTTOM( 6 )
13278          GENLIST_PART_PADDING_LEFT( 20 )
13279          GENLIST_PART_PADDING_RIGHT( 10 )
13280          GENLIST_PART_DIALOGUE_ITEM
13281          part { name: "elm.icon";
13282             clip_to: "disclip";
13283             type: SWALLOW;
13284             scale: 1;
13285             description { state: "default" 0.0;
13286                min: 40 40;
13287                max: 40 40;
13288                fixed: 1 1;
13289                rel1 {
13290                   relative: 1.0 0.0;
13291                   to_x: "elm.padding.left";
13292                }
13293                rel2.to_x: "elm.padding.left";
13294                align: 0.0 0.5;
13295             }
13296             GENLIST_DESCRIPTION_RENAME_ENABLED
13297          }
13298          part { name: "elm.padding.icon.right";
13299             clip_to: "disclip";
13300             type: RECT;
13301             scale: 1;
13302             description { state: "default" 0.0;
13303                min: 10 0;
13304                fixed: 1 0;
13305                rel1 {
13306                   relative: 1.0 0.0;
13307                   to_x: "elm.icon";
13308                }
13309                rel2.to_x: "elm.icon";
13310                align: 0.0 0.0;
13311                visible: 0;
13312             }
13313          }
13314          part { name: "elm.text.1";
13315             clip_to: "disclip";
13316             type: TEXT;
13317             mouse_events: 0;
13318             scale: 1;
13319             description { state: "default" 0.0;
13320                min: 0 38;
13321                fixed: 0 1;
13322                rel1 {
13323                   relative: 1.0 1.0;
13324                   to_x: "elm.padding.icon.right";
13325                   to_y: "elm.padding.top";
13326                }
13327                rel2 {
13328                   relative: 0.0 1.0;
13329                   to_x: "elm.padding.right";
13330                   to_y: "elm.padding.top";
13331                }
13332                align: 0.0 0.0;
13333                color: GENLIST_PART_TEXT_COLOR_INC;
13334                text {
13335                   font: "SLP:style=Roman";
13336                   size: 28;
13337                   min: 0 1;
13338                   align: 0.0 0.5;
13339                }
13340             }
13341             description { state: "selected" 0.0;
13342                inherit: "default" 0.0;
13343                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
13344             }
13345             GENLIST_DESCRIPTION_RENAME_ENABLED
13346          }
13347          part { name: "elm.text.2";
13348             clip_to: "disclip";
13349             type: TEXT;
13350             mouse_events: 0;
13351             scale: 1;
13352             description { state: "default" 0.0;
13353                rel1 {
13354                   relative: 1.0 1.0;
13355                   to_x: "elm.padding.icon.right";
13356                   to_y: "elm.text.1";
13357                }
13358                rel2 {
13359                   relative: 0.0 0.0;
13360                   to_x: "elm.padding.right";
13361                   to_y: "elm.padding.bottom";
13362                }
13363                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
13364                text {
13365                   font: "SLP:style=Medium";
13366                   size: 20;
13367                   min: 0 1;
13368                   align: 0.0 0.5;
13369                }
13370             }
13371             description { state: "selected" 0.0;
13372                inherit: "default" 0.0;
13373                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
13374             }
13375             GENLIST_DESCRIPTION_RENAME_ENABLED
13376          }
13377          GENLIST_PART_RENAME
13378          GENLIST_PART_DISCLIP
13379       }
13380       programs {
13381          // signal: elm,state,%s,active
13382          //   a "check" item named %s went active
13383          // signal: elm,state,%s,passive
13384          //   a "check" item named %s went passive
13385          // default is passive
13386          program { name: "go_active";
13387             signal: "elm,state,selected";
13388             source: "elm";
13389             action: STATE_SET "selected" 0.0;
13390             target: "bg_image";
13391             target: "elm.text.1";
13392             target: "elm.text.2";
13393          }
13394          program { name: "go_passive";
13395             signal: "elm,state,unselected";
13396             source: "elm";
13397             action: STATE_SET "default" 0.0;
13398             target: "bg_image";
13399             target: "elm.text.1";
13400             target: "elm.text.2";
13401             transition: LINEAR 0.1;
13402          }
13403          program { name: "go_disabled";
13404             signal: "elm,state,disabled";
13405             source: "elm";
13406             action: STATE_SET "disabled" 0.0;
13407             target: "disclip";
13408          }
13409          program { name: "go_enabled";
13410             signal: "elm,state,enabled";
13411             source: "elm";
13412             action: STATE_SET "default" 0.0;
13413             target: "disclip";
13414          }
13415          GENLIST_PROGRAM_RENAME_2TEXT_1ICON
13416       }
13417    }
13418
13419    group { name: "elm/genlist/item/dialogue/2text.1icon.3/default";
13420       alias: "elm/genlist/item_odd/dialogue/2text.1icon.3/default";
13421       alias: "elm/genlist/item_compress/dialogue/2text.1icon.3/default";
13422       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.3/default";
13423       data.item: "stacking" "above";
13424       data.item: "selectraise" "on";
13425       data.item: "labels" "elm.text.1 elm.text.2";
13426       data.item: "icons" "elm.icon";
13427       data.item: "renames" "elm.edit.rename";
13428       parts {
13429          GENLIST_PART_BASE( 81 )
13430          GENLIST_PART_BG_IMAGE
13431          GENLIST_PART_BOTTOM_LINE
13432          GENLIST_PART_PADDING_TOP( 6 )
13433          GENLIST_PART_PADDING_BOTTOM( 6 )
13434          GENLIST_PART_PADDING_LEFT( 20 )
13435          GENLIST_PART_PADDING_RIGHT( 10 )
13436          GENLIST_PART_DIALOGUE_ITEM
13437          part { name: "elm.icon";
13438             clip_to: "disclip";
13439             type: SWALLOW;
13440             scale: 1;
13441             description { state: "default" 0.0;
13442                min: 40 40;
13443                max: 40 40;
13444                fixed: 1 1;
13445                rel1 {
13446                   relative: 1.0 0.0;
13447                   to_x: "elm.padding.left";
13448                }
13449                rel2.to_x: "elm.padding.left";
13450                align: 0.0 0.5;
13451             }
13452             GENLIST_DESCRIPTION_RENAME_ENABLED
13453          }
13454          part { name: "elm.padding.icon.right";
13455             clip_to: "disclip";
13456             type: RECT;
13457             scale: 1;
13458             description { state: "default" 0.0;
13459                min: 10 0;
13460                fixed: 1 0;
13461                rel1 {
13462                   relative: 1.0 0.0;
13463                   to_x: "elm.icon";
13464                }
13465                rel2.to_x: "elm.icon";
13466                align: 0.0 0.0;
13467                visible: 0;
13468             }
13469          }
13470          part { name: "elm.text.1";
13471             clip_to: "disclip";
13472             type: TEXT;
13473             mouse_events: 0;
13474             scale: 1;
13475             description { state: "default" 0.0;
13476                min: 0 38;
13477                fixed: 0 1;
13478                rel1 {
13479                   relative: 1.0 1.0;
13480                   to_x: "elm.padding.icon.right";
13481                   to_y: "elm.padding.top";
13482                }
13483                rel2 {
13484                   relative: 0.0 1.0;
13485                   to_x: "elm.padding.right";
13486                   to_y: "elm.padding.top";
13487                }
13488                align: 0.0 0.0;
13489                color: GENLIST_PART_TEXT_COLOR_INC;
13490                text {
13491                   font: "SLP:style=Roman";
13492                   size: 28;
13493                   min: 0 1;
13494                   align: 0.0 0.5;
13495                }
13496             }
13497             description { state: "selected" 0.0;
13498                inherit: "default" 0.0;
13499                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
13500             }
13501             GENLIST_DESCRIPTION_RENAME_ENABLED
13502          }
13503          part { name: "elm.text.2";
13504             clip_to: "disclip";
13505             type: TEXT;
13506             mouse_events: 0;
13507             scale: 1;
13508             description { state: "default" 0.0;
13509                rel1 {
13510                   relative: 1.0 1.0;
13511                   to_x: "elm.padding.icon.right";
13512                   to_y: "elm.text.1";
13513                }
13514                rel2 {
13515                   relative: 0.0 0.0;
13516                   to_x: "elm.padding.right";
13517                   to_y: "elm.padding.bottom";
13518                }
13519                color: GENLIST_PART_SUB_TEXT_SETTINGS_COLOR_INC;
13520                text {
13521                   font: "SLP:style=Medium";
13522                   size: 20;
13523                   min: 0 1;
13524                   align: 0.0 0.5;
13525                }
13526             }
13527             description { state: "selected" 0.0;
13528                inherit: "default" 0.0;
13529                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
13530             }
13531             GENLIST_DESCRIPTION_RENAME_ENABLED
13532          }
13533          GENLIST_PART_RENAME
13534          GENLIST_PART_DISCLIP
13535       }
13536       programs {
13537          // signal: elm,state,%s,active
13538          //   a "check" item named %s went active
13539          // signal: elm,state,%s,passive
13540          //   a "check" item named %s went passive
13541          // default is passive
13542          program { name: "go_active";
13543             signal: "elm,state,selected";
13544             source: "elm";
13545             action: STATE_SET "selected" 0.0;
13546             target: "bg_image";
13547             target: "elm.text.1";
13548             target: "elm.text.2";
13549          }
13550          program { name: "go_passive";
13551             signal: "elm,state,unselected";
13552             source: "elm";
13553             action: STATE_SET "default" 0.0;
13554             target: "bg_image";
13555             target: "elm.text.1";
13556             target: "elm.text.2";
13557             transition: LINEAR 0.1;
13558          }
13559          program { name: "go_disabled";
13560             signal: "elm,state,disabled";
13561             source: "elm";
13562             action: STATE_SET "disabled" 0.0;
13563             target: "disclip";
13564          }
13565          program { name: "go_enabled";
13566             signal: "elm,state,enabled";
13567             source: "elm";
13568             action: STATE_SET "default" 0.0;
13569             target: "disclip";
13570          }
13571          GENLIST_PROGRAM_RENAME_2TEXT_1ICON
13572       }
13573    }
13574
13575    group { name: "elm/genlist/item/dialogue/2text.3icon/default";
13576       alias: "elm/genlist/item_odd/dialogue/2text.3icon/default";
13577       alias: "elm/genlist/item_compress/dialogue/2text.3icon/default";
13578       alias: "elm/genlist/item_compress_odd/dialogue/2text.3icon/default";
13579       data.item: "stacking" "above";
13580       data.item: "selectraise" "on";
13581       data.item: "labels" "elm.text.1 elm.text.2";
13582       data.item: "icons" "elm.icon.1 elm.icon.2 elm.swallow.colorbar";
13583       data.item: "renames" "elm.edit.rename";
13584       parts {
13585          GENLIST_PART_BASE( 81 )
13586          GENLIST_PART_BG_IMAGE
13587          GENLIST_PART_BOTTOM_LINE
13588          GENLIST_PART_PADDING_TOP( 6 )
13589          GENLIST_PART_PADDING_BOTTOM( 6 )
13590          GENLIST_PART_PADDING_LEFT( 20 )
13591          GENLIST_PART_PADDING_RIGHT( 10 )
13592          GENLIST_PART_DIALOGUE_ITEM
13593          part { name: "elm.swallow.colorbar";
13594             clip_to: "disclip";
13595             type: SWALLOW;
13596             scale: 1;
13597             description { state: "default" 0.0;
13598                min: 6 13;
13599                fixed: 1 1;
13600                rel1 {
13601                   relative: 1.0 0.0;
13602                   to_x: "elm.rect.dialogue";
13603                }
13604                rel2 {
13605                   relative: 1.0 0.0;
13606                   to_x: "elm.rect.dialogue";
13607                }
13608                align: 0.0 0.0;
13609             }
13610          }
13611          part { name: "elm.icon.1";
13612             clip_to: "disclip";
13613             type: SWALLOW;
13614             scale: 1;
13615             description { state: "default" 0.0;
13616                min: 40 40;
13617                max: 40 40;
13618                fixed: 1 1;
13619                rel1 {
13620                   relative: 1.0 0.0;
13621                   to_x: "elm.padding.left";
13622                }
13623                rel2 {
13624                   relative: 1.0 1.0;
13625                   to_x: "elm.padding.left";
13626                }
13627                align: 0.0 0.5;
13628             }
13629             GENLIST_DESCRIPTION_RENAME_ENABLED
13630          }
13631          part { name: "elm.padding.icon1.right";
13632             type: RECT;
13633             scale: 1;
13634             description { state: "default" 0.0;
13635                min: 10 0;
13636                fixed: 1 0;
13637                rel1 {
13638                   relative: 1.0 0.0;
13639                   to_x: "elm.icon.1";
13640                }
13641                rel2.to_x: "elm.icon.1";
13642                align: 0.0 0.0;
13643                visible: 0;
13644             }
13645          }
13646          part { name: "elm.icon.2";
13647             clip_to: "disclip";
13648             type: SWALLOW;
13649             scale: 1;
13650             description { state: "default" 0.0;
13651                min: 40 40;
13652                max: 40 40;
13653                fixed: 1 1;
13654                rel1.to_x: "elm.padding.right";
13655                rel2 {
13656                   relative: 0.0 1.0;
13657                   to_x: "elm.padding.right";
13658                }
13659                align: 1.0 0.5;
13660             }
13661             GENLIST_DESCRIPTION_RENAME_ENABLED
13662          }
13663          part { name: "elm.padding.icon2.left";
13664             type: RECT;
13665             scale: 1;
13666             description { state: "default" 0.0;
13667                min: 10 0;
13668                fixed: 1 0;
13669                rel1.to_x: "elm.icon.2";
13670                rel2 {
13671                   relative: 0.0 1.0;
13672                   to_x: "elm.icon.2";
13673                }
13674                align: 1.0 0.0;
13675                visible: 0;
13676             }
13677          }
13678          part { name: "elm.text.1";
13679             clip_to: "disclip";
13680             type: TEXT;
13681             mouse_events: 0;
13682             scale: 1;
13683             description { state: "default" 0.0;
13684                min: 0 38;
13685                fixed: 0 1;
13686                rel1 {
13687                   relative: 1.0 1.0;
13688                   to_x: "elm.padding.icon1.right";
13689                   to_y: "elm.padding.top";
13690                }
13691                rel2 {
13692                   relative: 0.0 1.0;
13693                   to_x: "elm.padding.icon2.left";
13694                   to_y: "elm.padding.top";
13695                }
13696                align: 0.0 0.0;
13697                color: GENLIST_PART_TEXT_COLOR_INC;
13698                text {
13699                   font: "SLP:style=Roman";
13700                   size: 28;
13701                   min: 0 1;
13702                   align: 0.0 0.5;
13703                }
13704             }
13705             description { state: "selected" 0.0;
13706                inherit: "default" 0.0;
13707                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
13708             }
13709             GENLIST_DESCRIPTION_RENAME_ENABLED
13710          }
13711          part { name: "elm.text.2";
13712             clip_to: "disclip";
13713             type: TEXT;
13714             mouse_events: 0;
13715             scale: 1;
13716             description { state: "default" 0.0;
13717                rel1 {
13718                   relative: 1.0 1.0;
13719                   to_x: "elm.padding.icon1.right";
13720                   to_y: "elm.text.1";
13721                }
13722                rel2 {
13723                   relative: 0.0 0.0;
13724                   to_x: "elm.padding.icon2.left";
13725                   to_y: "elm.padding.bottom";
13726                }
13727                color: GENLIST_PART_SUB_TEXT_SETTINGS_COLOR_INC;
13728                text {
13729                   font: "SLP:style=Medium";
13730                   size: 20;
13731                   min: 0 1;
13732                   align: 0.0 0.5;
13733                }
13734             }
13735             description { state: "selected" 0.0;
13736                inherit: "default" 0.0;
13737                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
13738             }
13739             GENLIST_DESCRIPTION_RENAME_ENABLED
13740          }
13741          GENLIST_PART_RENAME
13742          GENLIST_PART_DISCLIP
13743       }
13744       programs {
13745          // signal: elm,state,%s,active
13746          //   a "check" item named %s went active
13747          // signal: elm,state,%s,passive
13748          //   a "check" item named %s went passive
13749          // default is passive
13750          program { name: "go_active";
13751             signal: "elm,state,selected";
13752             source: "elm";
13753             action: STATE_SET "selected" 0.0;
13754             target: "bg_image";
13755             target: "elm.text.1";
13756             target: "elm.text.2";
13757          }
13758          program { name: "go_passive";
13759             signal: "elm,state,unselected";
13760             source: "elm";
13761             action: STATE_SET "default" 0.0;
13762             target: "bg_image";
13763             target: "elm.text.1";
13764             target: "elm.text.2";
13765             transition: LINEAR 0.1;
13766          }
13767          program { name: "go_disabled";
13768             signal: "elm,state,disabled";
13769             source: "elm";
13770             action: STATE_SET "disabled" 0.0;
13771             target: "disclip";
13772          }
13773          program { name: "go_enabled";
13774             signal: "elm,state,enabled";
13775             source: "elm";
13776             action: STATE_SET "default" 0.0;
13777             target: "disclip";
13778          }
13779          GENLIST_PROGRAM_RENAME_2TEXT_2ICON
13780       }
13781    }
13782
13783    group { name: "elm/genlist/item/dialogue/2text.2icon/default";
13784       alias: "elm/genlist/item_odd/dialogue/2text.2icon/default";
13785       alias: "elm/genlist/item_compress/dialogue/2text.2icon/default";
13786       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon/default";
13787       data.item: "stacking" "above";
13788       data.item: "selectraise" "on";
13789       data.item: "labels" "elm.text.1 elm.text.2";
13790       data.item: "icons" "elm.icon.1 elm.icon.2";
13791       data.item: "renames" "elm.edit.rename";
13792       parts {
13793          GENLIST_PART_BASE( 81 )
13794          GENLIST_PART_BG_IMAGE
13795          GENLIST_PART_BOTTOM_LINE
13796          GENLIST_PART_PADDING_TOP( 6 )
13797          GENLIST_PART_PADDING_BOTTOM( 6 )
13798          GENLIST_PART_PADDING_LEFT( 20 )
13799          GENLIST_PART_PADDING_RIGHT( 10 )
13800          GENLIST_PART_DIALOGUE_ITEM
13801          part { name: "elm.icon.1";
13802             clip_to: "disclip";
13803             type: SWALLOW;
13804             scale: 1;
13805             description { state: "default" 0.0;
13806                min: 26 26;
13807                max: 26 26;
13808                fixed: 1 1;
13809                rel1 {
13810                   relative: 1.0 1.0;
13811                   to_x: "elm.padding.left";
13812                   to_y: "elm.padding.top";
13813                }
13814                rel2 {
13815                   relative: 1.0 0.0;
13816                   to_x: "elm.padding.left";
13817                   to_y: "elm.padding.bottom";
13818                }
13819                align: 0.0 0.5;
13820             }
13821             GENLIST_DESCRIPTION_RENAME_ENABLED
13822          }
13823          part { name: "elm.padding.icon1.right";
13824             clip_to: "disclip";
13825             type: RECT;
13826             scale: 1;
13827             description { state: "default" 0.0;
13828                min: 10 0;
13829                fixed: 1 0;
13830                rel1 {
13831                   relative: 1.0 0.0;
13832                   to_x: "elm.icon.1";
13833                }
13834                rel2.to_x: "elm.icon.1";
13835                align: 0.0 0.0;
13836                visible: 0;
13837             }
13838          }
13839          part { name: "elm.icon.2";
13840             clip_to: "disclip";
13841             type: SWALLOW;
13842             scale: 1;
13843             description { state: "default" 0.0;
13844                min: 40 40;
13845                max: 40 40;
13846                fixed: 1 1;
13847                rel1 {
13848                   relative: 1.0 1.0;
13849                   to_x: "elm.padding.icon1.right";
13850                   to_y: "elm.padding.top";
13851                }
13852                rel2 {
13853                   relative: 1.0 0.0;
13854                   to_x: "elm.padding.icon1.right";
13855                   to_y: "elm.padding.bottom";
13856                }
13857                align: 0.0 0.5;
13858             }
13859             GENLIST_DESCRIPTION_RENAME_ENABLED
13860          }
13861          part { name: "elm.padding.icon2.right";
13862             clip_to: "disclip";
13863             type: RECT;
13864             scale: 1;
13865             description { state: "default" 0.0;
13866                min: 10 0;
13867                fixed: 1 0;
13868                rel1 {
13869                   relative: 1.0 0.0;
13870                   to_x: "elm.icon.2";
13871                }
13872                rel2.to_x: "elm.icon.2";
13873                align: 0.0 0.0;
13874                visible: 0;
13875             }
13876          }
13877          part { name: "elm.text.1";
13878             clip_to: "disclip";
13879             type: TEXT;
13880             mouse_events: 0;
13881             scale: 1;
13882             description { state: "default" 0.0;
13883                min: 0 38;
13884                fixed: 0 1;
13885                rel1 {
13886                   relative: 1.0 1.0;
13887                   to_x: "elm.padding.icon2.right";
13888                   to_y: "elm.padding.top";
13889                }
13890                rel2 {
13891                   relative: 0.0 1.0;
13892                   to_x: "elm.padding.right";
13893                   to_y: "elm.padding.top";
13894                }
13895                align: 0.0 0.0;
13896                color: GENLIST_PART_TEXT_COLOR_INC;
13897                text {
13898                   font: "SLP:style=Roman";
13899                   size: 28;
13900                   min: 0 1;
13901                   align: 0.0 0.5;
13902                }
13903             }
13904             description { state: "selected" 0.0;
13905                inherit: "default" 0.0;
13906                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
13907             }
13908             GENLIST_DESCRIPTION_RENAME_ENABLED
13909          }
13910          part { name: "elm.text.2";
13911             clip_to: "disclip";
13912             type: TEXT;
13913             mouse_events: 0;
13914             scale: 1;
13915             description { state: "default" 0.0;
13916                rel1 {
13917                   relative: 1.0 1.0;
13918                   to_x: "elm.padding.icon2.right";
13919                   to_y: "elm.text.1";
13920                }
13921                rel2 {
13922                   relative: 0.0 0.0;
13923                   to_x: "elm.padding.right";
13924                   to_y: "elm.padding.bottom";
13925                }
13926                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
13927                text {
13928                   font: "SLP:style=Medium";
13929                   size: 20;
13930                   min: 0 1;
13931                   align: 0.0 0.5;
13932                }
13933             }
13934             description { state: "selected" 0.0;
13935                inherit: "default" 0.0;
13936                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
13937             }
13938             GENLIST_DESCRIPTION_RENAME_ENABLED
13939          }
13940          GENLIST_PART_RENAME
13941          GENLIST_PART_DISCLIP
13942       }
13943       programs {
13944          // signal: elm,state,%s,active
13945          //   a "check" item named %s went active
13946          // signal: elm,state,%s,passive
13947          //   a "check" item named %s went passive
13948          // default is passive
13949          program { name: "go_active";
13950             signal: "elm,state,selected";
13951             source: "elm";
13952             action: STATE_SET "selected" 0.0;
13953             target: "bg_image";
13954             target: "elm.text.1";
13955             target: "elm.text.2";
13956          }
13957          program { name: "go_passive";
13958             signal: "elm,state,unselected";
13959             source: "elm";
13960             action: STATE_SET "default" 0.0;
13961             target: "bg_image";
13962             target: "elm.text.1";
13963             target: "elm.text.2";
13964             transition: LINEAR 0.1;
13965          }
13966          program { name: "go_disabled";
13967             signal: "elm,state,disabled";
13968             source: "elm";
13969             action: STATE_SET "disabled" 0.0;
13970             target: "disclip";
13971          }
13972          program { name: "go_enabled";
13973             signal: "elm,state,enabled";
13974             source: "elm";
13975             action: STATE_SET "default" 0.0;
13976             target: "disclip";
13977          }
13978          GENLIST_PROGRAM_RENAME_2TEXT_2ICON
13979       }
13980    }
13981
13982    group { name: "elm/genlist/item/dialogue/2text.2icon.2/default";
13983       alias: "elm/genlist/item_odd/dialogue/2text.2icon.2/default";
13984       alias: "elm/genlist/item_compress/dialogue/2text.2icon.2/default";
13985       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon.2/default";
13986       data.item: "stacking" "above";
13987       data.item: "selectraise" "on";
13988       data.item: "labels" "elm.text.1 elm.text.2";
13989       data.item: "icons" "elm.icon.1 elm.icon.2";
13990       data.item: "renames" "elm.edit.rename";
13991       parts {
13992          GENLIST_PART_BASE( 81 )
13993          GENLIST_PART_BG_IMAGE
13994          GENLIST_PART_BOTTOM_LINE
13995          GENLIST_PART_PADDING_TOP( 6 )
13996          GENLIST_PART_PADDING_BOTTOM( 6 )
13997          GENLIST_PART_PADDING_LEFT( 20 )
13998          GENLIST_PART_PADDING_RIGHT( 10 )
13999          GENLIST_PART_DIALOGUE_ITEM
14000          part { name: "elm.icon.1";
14001             clip_to: "disclip";
14002             type: SWALLOW;
14003             scale: 1;
14004             description { state: "default" 0.0;
14005                min: 40 40;
14006                max: 40 40;
14007                fixed: 1 1;
14008                rel1 {
14009                   relative: 1.0 1.0;
14010                   to_x: "elm.padding.left";
14011                   to_y: "elm.padding.top";
14012                }
14013                rel2 {
14014                   relative: 1.0 0.0;
14015                   to_x: "elm.padding.left";
14016                   to_y: "elm.padding.bottom";
14017                }
14018                align: 0.0 0.5;
14019             }
14020             GENLIST_DESCRIPTION_RENAME_ENABLED
14021          }
14022          part { name: "elm.padding.icon1.right";
14023             clip_to: "disclip";
14024             type: RECT;
14025             scale: 1;
14026             description { state: "default" 0.0;
14027                min: 10 0;
14028                fixed: 1 0;
14029                rel1 {
14030                   relative: 1.0 0.0;
14031                   to_x: "elm.icon.1";
14032                }
14033                rel2.to_x: "elm.icon.1";
14034                align: 0.0 0.0;
14035                visible: 0;
14036             }
14037          }
14038          part { name: "elm.text.1";
14039             clip_to: "disclip";
14040             type: TEXT;
14041             mouse_events: 0;
14042             scale: 1;
14043             description { state: "default" 0.0;
14044                min: 0 38;
14045                fixed: 0 1;
14046                rel1 {
14047                   relative: 1.0 1.0;
14048                   to_x: "elm.padding.icon1.right";
14049                   to_y: "elm.padding.top";
14050                }
14051                rel2 {
14052                   relative: 0.0 1.0;
14053                   to_x: "elm.padding.right";
14054                   to_y: "elm.padding.top";
14055                }
14056                align: 0.0 0.0;
14057                color: GENLIST_PART_TEXT_COLOR_INC;
14058                text {
14059                   font: "SLP:style=Roman";
14060                   size: 28;
14061                   min: 0 1;
14062                   align: 0.0 0.5;
14063                }
14064             }
14065             description { state: "selected" 0.0;
14066                inherit: "default" 0.0;
14067                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
14068             }
14069             GENLIST_DESCRIPTION_RENAME_ENABLED
14070          }
14071          part { name: "elm.icon.2";
14072             clip_to: "disclip";
14073             type: SWALLOW;
14074             scale: 1;
14075             description { state: "default" 0.0;
14076                min: 20 20;
14077                max: 20 20;
14078                fixed: 1 1;
14079                rel1 {
14080                   relative: 0.0 1.0;
14081                   to_x: "elm.padding.right";
14082                   to_y: "elm.text.1";
14083                }
14084                rel2 {
14085                   relative: 0.0 0.0;
14086                   to_x: "elm.padding.right";
14087                   to_y: "elm.padding.bottom";
14088                }
14089                align: 1.0 0.5;
14090             }
14091             GENLIST_DESCRIPTION_RENAME_ENABLED
14092          }
14093          part { name: "elm.padding.icon2.left";
14094             clip_to: "disclip";
14095             type: RECT;
14096             scale: 1;
14097             description { state: "default" 0.0;
14098                min: 10 0;
14099                fixed: 1 0;
14100                rel1 {
14101                   relative: 0.0 0.0;
14102                   to_x: "elm.icon.2";
14103                }
14104                rel2.to_x: "elm.icon.2";
14105                align: 1.0 0.0;
14106                visible: 0;
14107             }
14108          }
14109          part { name: "elm.text.2";
14110             clip_to: "disclip";
14111             type: TEXT;
14112             mouse_events: 0;
14113             scale: 1;
14114             description { state: "default" 0.0;
14115                rel1 {
14116                   relative: 1.0 1.0;
14117                   to_x: "elm.padding.icon1.right";
14118                   to_y: "elm.text.1";
14119                }
14120                rel2 {
14121                   relative: 0.0 0.0;
14122                   to_x: "elm.padding.icon2.left";
14123                   to_y: "elm.padding.bottom";
14124                }
14125                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
14126                text {
14127                   font: "SLP:style=Medium";
14128                   size: 20;
14129                   min: 0 1;
14130                   align: 0.0 0.5;
14131                }
14132             }
14133             description { state: "selected" 0.0;
14134                inherit: "default" 0.0;
14135                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
14136             }
14137             GENLIST_DESCRIPTION_RENAME_ENABLED
14138          }
14139          GENLIST_PART_RENAME
14140          GENLIST_PART_DISCLIP
14141       }
14142       programs {
14143          // signal: elm,state,%s,active
14144          //   a "check" item named %s went active
14145          // signal: elm,state,%s,passive
14146          //   a "check" item named %s went passive
14147          // default is passive
14148          program { name: "go_active";
14149             signal: "elm,state,selected";
14150             source: "elm";
14151             action: STATE_SET "selected" 0.0;
14152             target: "bg_image";
14153             target: "elm.text.1";
14154             target: "elm.text.2";
14155          }
14156          program { name: "go_passive";
14157             signal: "elm,state,unselected";
14158             source: "elm";
14159             action: STATE_SET "default" 0.0;
14160             target: "bg_image";
14161             target: "elm.text.1";
14162             target: "elm.text.2";
14163             transition: LINEAR 0.1;
14164          }
14165          program { name: "go_disabled";
14166             signal: "elm,state,disabled";
14167             source: "elm";
14168             action: STATE_SET "disabled" 0.0;
14169             target: "disclip";
14170          }
14171          program { name: "go_enabled";
14172             signal: "elm,state,enabled";
14173             source: "elm";
14174             action: STATE_SET "default" 0.0;
14175             target: "disclip";
14176          }
14177          GENLIST_PROGRAM_RENAME_2TEXT_2ICON
14178       }
14179    }
14180
14181    group { name: "elm/genlist/item/dialogue/2text.2icon.3/default";
14182       alias: "elm/genlist/item_odd/dialogue/2text.2icon.3/default";
14183       alias: "elm/genlist/item_compress/dialogue/2text.2icon.3/default";
14184       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon.3/default";
14185       data.item: "stacking" "above";
14186       data.item: "selectraise" "on";
14187       data.item: "labels" "elm.text.1 elm.text.2";
14188       data.item: "icons" "elm.icon.1 elm.icon.2";
14189       data.item: "renames" "elm.edit.rename";
14190       parts {
14191          GENLIST_PART_BASE( 81 )
14192          GENLIST_PART_BG_IMAGE
14193          GENLIST_PART_BOTTOM_LINE
14194          GENLIST_PART_PADDING_TOP( 6 )
14195          GENLIST_PART_PADDING_BOTTOM( 6 )
14196          GENLIST_PART_PADDING_LEFT( 20 )
14197          GENLIST_PART_PADDING_RIGHT( 10 )
14198          GENLIST_PART_DIALOGUE_ITEM
14199          part { name: "elm.icon.1";
14200             clip_to: "disclip";
14201             type: SWALLOW;
14202             scale: 1;
14203             description { state: "default" 0.0;
14204                min: 40 40;
14205                max: 40 40;
14206                fixed: 1 1;
14207                rel1 {
14208                   relative: 1.0 1.0;
14209                   to_x: "elm.padding.left";
14210                   to_y: "elm.padding.top";
14211                }
14212                rel2 {
14213                   relative: 1.0 0.0;
14214                   to_x: "elm.padding.left";
14215                   to_y: "elm.padding.bottom";
14216                }
14217                align: 0.0 0.5;
14218             }
14219             GENLIST_DESCRIPTION_RENAME_ENABLED
14220          }
14221          part { name: "elm.padding.icon1.right";
14222             clip_to: "disclip";
14223             type: RECT;
14224             scale: 1;
14225             description { state: "default" 0.0;
14226                min: 10 0;
14227                fixed: 1 0;
14228                rel1 {
14229                   relative: 1.0 0.0;
14230                   to_x: "elm.icon.1";
14231                }
14232                rel2.to_x: "elm.icon.1";
14233                align: 0.0 0.0;
14234                visible: 0;
14235             }
14236          }
14237          part { name: "elm.icon.2";
14238             clip_to: "disclip";
14239             type: SWALLOW;
14240             scale: 1;
14241             description { state: "default" 0.0;
14242                min: 40 40;
14243                max: 40 40;
14244                fixed: 1 1;
14245                rel1 {
14246                   relative: 0.0 1.0;
14247                   to_x: "elm.padding.right";
14248                   to_y: "elm.padding.top";
14249                }
14250                rel2 {
14251                   relative: 0.0 0.0;
14252                   to_x: "elm.padding.right";
14253                   to_y: "elm.padding.bottom";
14254                }
14255                align: 1.0 0.5;
14256             }
14257             GENLIST_DESCRIPTION_RENAME_ENABLED
14258          }
14259          part { name: "elm.padding.icon2.left";
14260             clip_to: "disclip";
14261             type: RECT;
14262             scale: 1;
14263             description { state: "default" 0.0;
14264                min: 10 0;
14265                fixed: 1 0;
14266                rel1.to_x: "elm.icon.2";
14267                rel2 {
14268                   relative: 0.0 1.0;
14269                   to_x: "elm.icon.2";
14270                }
14271                align: 1.0 0.0;
14272                visible: 0;
14273             }
14274          }
14275          part { name: "elm.text.1";
14276             clip_to: "disclip";
14277             type: TEXT;
14278             mouse_events: 0;
14279             scale: 1;
14280             description { state: "default" 0.0;
14281                min: 0 38;
14282                fixed: 0 1;
14283                rel1 {
14284                   relative: 1.0 1.0;
14285                   to_x: "elm.padding.icon1.right";
14286                   to_y: "elm.padding.top";
14287                }
14288                rel2 {
14289                   relative: 0.0 1.0;
14290                   to_x: "elm.padding.icon2.left";
14291                   to_y: "elm.padding.top";
14292                }
14293                align: 0.0 0.0;
14294                color: GENLIST_PART_TEXT_COLOR_INC;
14295                text {
14296                   font: "SLP:style=Roman";
14297                   size: 28;
14298                   min: 0 1;
14299                   align: 0.0 0.5;
14300                }
14301             }
14302             description { state: "selected" 0.0;
14303                inherit: "default" 0.0;
14304                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
14305             }
14306             GENLIST_DESCRIPTION_RENAME_ENABLED
14307          }
14308          part { name: "elm.text.2";
14309             clip_to: "disclip";
14310             type: TEXT;
14311             mouse_events: 0;
14312             scale: 1;
14313             description { state: "default" 0.0;
14314                rel1 {
14315                   relative: 1.0 1.0;
14316                   to_x: "elm.padding.icon1.right";
14317                   to_y: "elm.text.1";
14318                }
14319                rel2 {
14320                   relative: 0.0 0.0;
14321                   to_x: "elm.padding.icon2.left";
14322                   to_y: "elm.padding.bottom";
14323                }
14324                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
14325                text {
14326                   font: "SLP:style=Medium";
14327                   size: 20;
14328                   min: 0 1;
14329                   align: 0.0 0.5;
14330                }
14331             }
14332             description { state: "selected" 0.0;
14333                inherit: "default" 0.0;
14334                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
14335             }
14336             GENLIST_DESCRIPTION_RENAME_ENABLED
14337          }
14338          GENLIST_PART_RENAME
14339          GENLIST_PART_DISCLIP
14340       }
14341       programs {
14342          // signal: elm,state,%s,active
14343          //   a "check" item named %s went active
14344          // signal: elm,state,%s,passive
14345          //   a "check" item named %s went passive
14346          // default is passive
14347          program { name: "go_active";
14348             signal: "elm,state,selected";
14349             source: "elm";
14350             action: STATE_SET "selected" 0.0;
14351             target: "bg_image";
14352             target: "elm.text.1";
14353             target: "elm.text.2";
14354          }
14355          program { name: "go_passive";
14356             signal: "elm,state,unselected";
14357             source: "elm";
14358             action: STATE_SET "default" 0.0;
14359             target: "bg_image";
14360             target: "elm.text.1";
14361             target: "elm.text.2";
14362             transition: LINEAR 0.1;
14363          }
14364          program { name: "go_disabled";
14365             signal: "elm,state,disabled";
14366             source: "elm";
14367             action: STATE_SET "disabled" 0.0;
14368             target: "disclip";
14369          }
14370          program { name: "go_enabled";
14371             signal: "elm,state,enabled";
14372             source: "elm";
14373             action: STATE_SET "default" 0.0;
14374             target: "disclip";
14375          }
14376          GENLIST_PROGRAM_RENAME_2TEXT_2ICON
14377       }
14378    }
14379
14380    group { name: "elm/genlist/item/dialogue/2text.1icon.5/default";
14381       alias: "elm/genlist/item_odd/dialogue/2text.1icon.5/default";
14382       alias: "elm/genlist/item_compress/dialogue/2text.1icon.5/default";
14383       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.5/default";
14384       data.item: "stacking" "above";
14385       data.item: "selectraise" "on";
14386       data.item: "labels" "elm.text.1 elm.text.2";
14387       data.item: "icons" "elm.icon";
14388       data.item: "renames" "elm.edit.rename";
14389       parts {
14390          GENLIST_PART_BASE( 81 )
14391          GENLIST_PART_BG_IMAGE
14392          GENLIST_PART_BOTTOM_LINE
14393          GENLIST_PART_PADDING_TOP( 6 )
14394          GENLIST_PART_PADDING_BOTTOM( 6 )
14395          GENLIST_PART_PADDING_LEFT( 20 )
14396          GENLIST_PART_PADDING_RIGHT( 10 )
14397          GENLIST_PART_DIALOGUE_ITEM
14398          part { name: "elm.icon";
14399             clip_to: "disclip";
14400             type: SWALLOW;
14401             scale: 1;
14402             description { state: "default" 0.0;
14403                min: 40 40;
14404                max: 40 40;
14405                fixed: 1 1;
14406                rel1 {
14407                   relative: 0.0 1.0;
14408                   to_x: "elm.padding.right";
14409                   to_y: "elm.padding.top";
14410                }
14411                rel2 {
14412                   relative: 0.0 0.0;
14413                   to_x: "elm.padding.right";
14414                   to_y: "elm.padding.bottom";
14415                }
14416                align: 1.0 0.5;
14417             }
14418             GENLIST_DESCRIPTION_RENAME_ENABLED
14419          }
14420          part { name: "elm.padding.icon.left";
14421             clip_to: "disclip";
14422             type: RECT;
14423             scale: 1;
14424             description { state: "default" 0.0;
14425                min: 10 0;
14426                fixed: 1 0;
14427                rel1.to_x: "elm.icon";
14428                rel2 {
14429                   relative: 0.0 1.0;
14430                   to_x: "elm.icon";
14431                }
14432                align: 1.0 0.0;
14433                visible: 0;
14434             }
14435          }
14436          part { name: "elm.text.1";
14437             clip_to: "disclip";
14438             type: TEXT;
14439             mouse_events: 0;
14440             scale: 1;
14441             description { state: "default" 0.0;
14442                min: 0 38;
14443                fixed: 0 1;
14444                rel1 {
14445                   relative: 1.0 0.0;
14446                   to_x: "elm.padding.left";
14447                   to_y: "elm.padding.bottom";
14448                }
14449                rel2 {
14450                   relative: 0.0 0.0;
14451                   to_x: "elm.padding.icon.left";
14452                   to_y: "elm.padding.bottom";
14453                }
14454                align: 0.0 1.0;
14455                color: GENLIST_PART_TEXT_COLOR_INC;
14456                text {
14457                   font: "SLP:style=Roman";
14458                   size: 28;
14459                   min: 0 1;
14460                   align: 0.0 0.5;
14461                }
14462             }
14463             description { state: "selected" 0.0;
14464                inherit: "default" 0.0;
14465                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
14466             }
14467             GENLIST_DESCRIPTION_RENAME_ENABLED
14468          }
14469          part { name: "elm.text.2";
14470             clip_to: "disclip";
14471             type: TEXT;
14472             mouse_events: 0;
14473             scale: 1;
14474             description { state: "default" 0.0;
14475                rel1 {
14476                   relative: 1.0 1.0;
14477                   to_x: "elm.padding.left";
14478                   to_y: "elm.padding.top";
14479                }
14480                rel2 {
14481                   relative: 0.0 0.0;
14482                   to_x: "elm.padding.icon.left";
14483                   to_y: "elm.text.1";
14484                }
14485                align: 0.0 0.0;
14486                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
14487                text {
14488                   font: "SLP:style=Medium";
14489                   size: 20;
14490                   min: 0 1;
14491                   align: 0.0 0.5;
14492                }
14493             }
14494             description { state: "selected" 0.0;
14495                inherit: "default" 0.0;
14496                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
14497             }
14498             GENLIST_DESCRIPTION_RENAME_ENABLED
14499          }
14500          GENLIST_PART_RENAME
14501          GENLIST_PART_DISCLIP
14502       }
14503       programs {
14504          // signal: elm,state,%s,active
14505          //   a "check" item named %s went active
14506          // signal: elm,state,%s,passive
14507          //   a "check" item named %s went passive
14508          // default is passive
14509          program { name: "go_active";
14510             signal: "elm,state,selected";
14511             source: "elm";
14512             action: STATE_SET "selected" 0.0;
14513             target: "bg_image";
14514             target: "elm.text.1";
14515             target: "elm.text.2";
14516          }
14517          program { name: "go_passive";
14518             signal: "elm,state,unselected";
14519             source: "elm";
14520             action: STATE_SET "default" 0.0;
14521             target: "bg_image";
14522             target: "elm.text.1";
14523             target: "elm.text.2";
14524             transition: LINEAR 0.1;
14525          }
14526          program { name: "go_disabled";
14527             signal: "elm,state,disabled";
14528             source: "elm";
14529             action: STATE_SET "disabled" 0.0;
14530             target: "disclip";
14531          }
14532          program { name: "go_enabled";
14533             signal: "elm,state,enabled";
14534             source: "elm";
14535             action: STATE_SET "default" 0.0;
14536             target: "disclip";
14537          }
14538          GENLIST_PROGRAM_RENAME_2TEXT_1ICON
14539       }
14540    }
14541
14542    group { name: "elm/genlist/item_compress/dialogue/1title.1text.2/default";
14543       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.2/default";
14544       data.item: "stacking" "above";
14545       data.item: "selectraise" "on";
14546       data.item: "labels" "elm.title elm.text";
14547       parts {
14548          part { name: "base";
14549             type: RECT;
14550             repeat_events: 1;
14551             description { state: "default" 0.0;
14552                color: GENLIST_PART_BG_COLOR_INC;
14553             }
14554          }
14555          GENLIST_PART_BG_IMAGE
14556          GENLIST_PART_BOTTOM_LINE
14557          GENLIST_PART_PADDING_TOP( 13 )
14558          GENLIST_PART_PADDING_BOTTOM( 14 )
14559          GENLIST_PART_PADDING_LEFT( 17 )
14560          GENLIST_PART_PADDING_RIGHT( 10 )
14561          GENLIST_PART_DIALOGUE_ITEM
14562          part { name: "elm.title";
14563             clip_to: "disclip";
14564             type: TEXT;
14565             mouse_events: 0;
14566             scale: 1;
14567             description { state: "default" 0.0;
14568                min: 102 0;
14569                fixed: 1 0;
14570                rel1 {
14571                   relative: 1.0 0.0;
14572                   to_x: "elm.padding.left";
14573                }
14574                rel2 {
14575                   relative: 1.0 1.0;
14576                   to_x: "elm.padding.left";
14577                }
14578                align: 0.0 0.0;
14579                color: GENLIST_PART_MULTILINE_TITLE_COLOR_INC;
14580                text {
14581                   font: "SLP:style=Medium";
14582                   size: 20;
14583                   min: 0 1;
14584                   align: 0.0 0.5;
14585                }
14586             }
14587             description { state: "selected" 0.0;
14588                inherit: "default" 0.0;
14589                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
14590             }
14591          }
14592          part { name: "vertical_line";
14593             clip_to: "disclip";
14594             type: RECT;
14595             mouse_events: 0;
14596             description { state: "default" 0.0;
14597                min: 1 0;
14598                fixed: 1 0;
14599                rel1 {
14600                   relative: 1.0 0.0;
14601                   to_x: "elm.title";
14602                }
14603                rel2.to_x: "elm.title";
14604                align: 0.0 0.5;
14605                color: GENLIST_PART_BOTTOM_LINE_INC;
14606             }
14607          }
14608          part { name: "elm.padding.text.left";
14609             clip_to: "disclip";
14610             type: RECT;
14611             mouse_events: 0;
14612             description { state: "default" 0.0;
14613                min: 10 0;
14614                fixed: 1 0;
14615                rel1 {
14616                   relative: 1.0 0.0;
14617                   to_x: "vertical_line";
14618                }
14619                rel2.to_x: "vertical_line";
14620                align: 0.0 0.5;
14621                visible: 0;
14622             }
14623          }
14624          part { name: "elm.text";
14625             clip_to: "disclip";
14626             type: TEXTBLOCK;
14627             mouse_events: 0;
14628             scale: 1;
14629             description { state: "default" 0.0;
14630                rel1 {
14631                   relative: 1.0 1.0;
14632                   to_x: "elm.padding.text.left";
14633                   to_y: "elm.padding.top";
14634                }
14635                rel2 {
14636                   relative: 0.0 0.0;
14637                   to_x: "elm.padding.right";
14638                   to_y: "elm.padding.bottom";
14639                }
14640                text {
14641                   style: "genlist_textblock_style";
14642                   min: 0 1;
14643                   align: 0.0 0.5;
14644                }
14645             }
14646             description { state: "selected" 0.0;
14647                inherit: "default" 0.0;
14648                text.style: "genlist_textblock_selected_style";
14649             }
14650          }
14651          GENLIST_PART_DISCLIP
14652       }
14653       programs {
14654          // signal: elm,state,%s,active
14655          //   a "check" item named %s went active
14656          // signal: elm,state,%s,passive
14657          //   a "check" item named %s went passive
14658          // default is passive
14659          program { name: "go_active";
14660             signal: "elm,state,selected";
14661             source: "elm";
14662             action: STATE_SET "selected" 0.0;
14663             target: "bg_image";
14664             target: "elm.title";
14665             target: "elm.text";
14666          }
14667          program { name: "go_passive";
14668             signal: "elm,state,unselected";
14669             source: "elm";
14670             action: STATE_SET "default" 0.0;
14671             target: "bg_image";
14672             target: "elm.title";
14673             target: "elm.text";
14674             transition: LINEAR 0.1;
14675          }
14676          program { name: "go_disabled";
14677             signal: "elm,state,disabled";
14678             source: "elm";
14679             action: STATE_SET "disabled" 0.0;
14680             target: "disclip";
14681          }
14682          program { name: "go_enabled";
14683             signal: "elm,state,enabled";
14684             source: "elm";
14685             action: STATE_SET "default" 0.0;
14686             target: "disclip";
14687          }
14688       }
14689    }
14690
14691 /*   group { name: "elm/genlist/item/dialogue/1title.2text/default";
14692       alias: "elm/genlist/item_odd/dialogue/1title.2text/default";
14693       alias: "elm/genlist/item_compress/dialogue/1title.2text/default";
14694       alias: "elm/genlist/item_compress_odd/dialogue/1title.2text/default";
14695       data.item: "stacking" "above";
14696       data.item: "selectraise" "on";
14697       data.item: "labels" "elm.title elm.text.1 elm.text.2";
14698       parts {
14699          GENLIST_PART_BASE( 142 )
14700          GENLIST_PART_BOTTOM_LINE
14701          GENLIST_PART_PADDING_LEFT( 17 )
14702          GENLIST_PART_PADDING_RIGHT( 10 )
14703          GENLIST_PART_DIALOGUE_ITEM
14704          part { name: "vertical_line";
14705             clip_to: "disclip";
14706             type: RECT;
14707             mouse_events: 0;
14708             description { state: "default" 0.0;
14709                min: 1 0;
14710                fixed: 1 0;
14711                rel1 {
14712                   relative: 1.0 0.0;
14713                   to_x: "elm.title";
14714                }
14715                rel2.to_x: "elm.title";
14716                align: 0.0 0.5;
14717                color: GENLIST_PART_BOTTOM_LINE_INC;
14718             }
14719          }
14720          part { name: "center_line";
14721             clip_to: "disclip";
14722             type: RECT;
14723             mouse_events: 0;
14724             description { state: "default" 0.0;
14725                min: 0 1;
14726                fixed: 0 1;
14727                color: GENLIST_PART_BOTTOM_LINE_INC;
14728                rel1 {
14729                   relative: 1.0 0.5;
14730                   to_x: "vertical_line";
14731                }
14732                rel2.relative: 1.0 0.5;
14733                align: 0.5 1.0;
14734             }
14735          }
14736          part { name: "elm.title";
14737             clip_to: "disclip";
14738             type: TEXT;
14739             mouse_events: 0;
14740             scale: 1;
14741             description { state: "default" 0.0;
14742                min: 102 0;
14743                fixed: 1 0;
14744                rel1 {
14745                   relative: 1.0  0.0;
14746                   to_x: "elm.padding.left";
14747                }
14748                rel2.to_x: "elm.padding.left";
14749                align: 0.0 0.5;
14750                color: GENLIST_PART_MULTILINE_TITLE_COLOR_INC;
14751                text {
14752                   font: "SLP:style=Medium";
14753                   size: 20;
14754                   min: 0 1;
14755                   align: 0.0 0.5;
14756                }
14757             }
14758          }
14759          part { name: "elm.padding.title.right";
14760             clip_to: "disclip";
14761             type: RECT;
14762             mouse_events: 0;
14763             scale: 1;
14764             description { state: "default" 0.0;
14765                min: 10 0;
14766                fixed: 1 0;
14767                rel1 {
14768                    relative: 1.0 0.0;
14769                    to_x: "elm.title";
14770                }
14771                rel2.to_x: "elm.title";
14772                visible: 0;
14773                align: 0.0 0.5;
14774             }
14775          }
14776          part { name: "elm.text.1";
14777             clip_to: "disclip";
14778             type: TEXT;
14779             mouse_events: 0;
14780             scale: 1;
14781             description { state: "default" 0.0;
14782                rel1 {
14783                   relative: 1.0 0.0;
14784                   to_x: "elm.padding.title.right";
14785                }
14786                rel2 {
14787                   relative: 0.0 0.0;
14788                   to_x: "elm.padding.right";
14789                   to_y: "center_line";
14790                }
14791                color: GENLIST_PART_TEXT_COLOR_INC;
14792                text {
14793                   font: "SLP:style=Roman";
14794                   size: 28;
14795                   min: 0 1;
14796                   align: 0.0 0.5;
14797                }
14798             }
14799          }
14800          part { name: "elm.text.2";
14801             clip_to: "disclip";
14802             type: TEXT;
14803             mouse_events: 0;
14804             scale: 1;
14805             description { state: "default" 0.0;
14806                rel1 {
14807                   relative: 1.0 0.5;
14808                   to_x: "elm.padding.title.right";
14809                }
14810                rel2 {
14811                   relative: 0.0 1.0;
14812                   to_x: "elm.padding.right";
14813                }
14814                color: GENLIST_PART_TEXT_COLOR_INC;
14815                text {
14816                   font: "SLP:style=Roman";
14817                   size: 28;
14818                   min: 0 1;
14819                   align: 0.0 0.5;
14820                }
14821             }
14822          }
14823          GENLIST_PART_DISCLIP
14824       }
14825       programs {
14826          // signal: elm,state,%s,active
14827          //   a "check" item named %s went active
14828          // signal: elm,state,%s,passive
14829          //   a "check" item named %s went passive
14830          // default is passive
14831          program { name: "go_active";
14832             signal: "elm,state,selected";
14833             source: "elm";
14834             action: STATE_SET "selected" 0.0;
14835             target: "elm.title";
14836             target: "elm.text.1";
14837             target: "elm.text.2";
14838          }
14839          program { name: "go_passive";
14840             signal: "elm,state,unselected";
14841             source: "elm";
14842             action: STATE_SET "default" 0.0;
14843             target: "elm.title";
14844             target: "elm.text.1";
14845             target: "elm.text.2";
14846             transition: LINEAR 0.1;
14847          }
14848          program { name: "go_disabled";
14849             signal: "elm,state,disabled";
14850             source: "elm";
14851             action: STATE_SET "disabled" 0.0;
14852             target: "disclip";
14853          }
14854          program { name: "go_enabled";
14855             signal: "elm,state,enabled";
14856             source: "elm";
14857             action: STATE_SET "default" 0.0;
14858             target: "disclip";
14859          }
14860       }
14861    }*/
14862
14863    group { name: "elm/genlist/item/dialogue/4icon/default";
14864       alias: "elm/genlist/item_odd/dialogue/4icon/default";
14865       alias: "elm/genlist/item_compress/dialogue/4icon/default";
14866       alias: "elm/genlist/item_compress_odd/dialogue/4icon/default";
14867       data.item: "stacking" "above";
14868       data.item: "selectraise" "on";
14869       data.item: "icons" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4";
14870       images {
14871          image : "00_input_bg.png" COMP;
14872       }
14873       parts {
14874          GENLIST_PART_BASE( 129 )
14875          GENLIST_PART_BG_IMAGE
14876          GENLIST_PART_BOTTOM_LINE
14877          GENLIST_PART_PADDING_TOP( 6 )
14878          GENLIST_PART_PADDING_BOTTOM( 15 )
14879          GENLIST_PART_PADDING_LEFT( 20 )
14880          GENLIST_PART_PADDING_RIGHT( 10 )
14881          GENLIST_PART_DIALOGUE_ITEM
14882          part { name: "text";
14883             clip_to: "disclip";
14884             type: TEXT;
14885             mouse_events: 0;
14886             scale: 1;
14887             description { state: "default" 0.0;
14888                min: 0 30;
14889                fixed: 0 1;
14890                rel1 {
14891                   relative: 1.0 1.0;
14892                   to_x: "elm.padding.left";
14893                   to_y: "elm.padding.top";
14894                }
14895                rel2 {
14896                   relative: 0.0 1.0;
14897                   to_x: "elm.padding.right";
14898                   to_y: "elm.padding.top";
14899                }
14900                align: 0.0 0.0;
14901                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
14902                text {
14903                   font: "SLP:style=Medium";
14904                   size: 20;
14905                   min: 0 1;
14906                   align: 0.0 0.5;
14907                   text: "Password";
14908                }
14909             }
14910             description { state: "selected" 0.0;
14911                inherit: "default" 0.0;
14912                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
14913             }
14914          }
14915          part { name: "elm.padding.icon1.left";
14916             clip_to: "disclip";
14917             type: RECT;
14918             scale: 1;
14919             description { state: "default" 0.0;
14920                min: 66 0;
14921                fixed: 1 0;
14922                rel1 {
14923                   relative: 1.0 0.0;
14924                   to_x: "elm.padding.left";
14925                   to_y: "elm.padding.bottom";
14926                }
14927                rel2 {
14928                   relative: 1.0 0.0;
14929                   to_x: "elm.padding.left";
14930                   to_y: "elm.padding.bottom";
14931                }
14932                align: 0.0 1.0;
14933                visible: 0;
14934             }
14935          }
14936          part { name: "elm.icon1.bg";
14937             clip_to: "disclip";
14938             type: IMAGE;
14939             scale: 1;
14940             description { state: "default" 0.0;
14941                min: 72 72;
14942                fixed: 1 1;
14943                rel1 {
14944                   relative: 1.0 0.0;
14945                   to_x: "elm.padding.icon1.left";
14946                   to_y: "elm.padding.bottom";
14947                }
14948                rel2 {
14949                   relative: 1.0 0.0;
14950                   to_x: "elm.padding.icon1.left";
14951                   to_y: "elm.padding.bottom";
14952                }
14953                align: 0.0 1.0;
14954                image.normal: "00_input_bg.png";
14955                image.border: 4 4 4 4;
14956                image.border_scale: 1;
14957             }
14958          }
14959          part { name: "elm.icon.1";
14960             clip_to: "disclip";
14961             type: SWALLOW;
14962             scale: 1;
14963             description { state: "default" 0.0;
14964                rel1.to: "elm.icon1.bg";
14965                rel2.to: "elm.icon1.bg";
14966                align: 0.5 0.5;
14967             }
14968          }
14969          part { name: "elm.padding.icon2.left";
14970             clip_to: "disclip";
14971             type: RECT;
14972             scale: 1;
14973             description { state: "default" 0.0;
14974                min: 20 0;
14975                fixed: 1 0;
14976                rel1 {
14977                   relative: 1.0 0.0;
14978                   to_x: "elm.icon1.bg";
14979                   to_y: "elm.padding.bottom";
14980                }
14981                rel2 {
14982                   relative: 1.0 0.0;
14983                   to_x: "elm.icon1.bg";
14984                   to_y: "elm.padding.bottom";
14985                }
14986                align: 0.0 1.0;
14987                visible: 0;
14988             }
14989          }
14990          part { name: "elm.icon2.bg";
14991             clip_to: "disclip";
14992             type: IMAGE;
14993             scale: 1;
14994             description { state: "default" 0.0;
14995                min: 72 72;
14996                fixed: 1 1;
14997                rel1 {
14998                   relative: 1.0 0.0;
14999                   to_x: "elm.padding.icon2.left";
15000                   to_y: "elm.padding.bottom";
15001                }
15002                rel2 {
15003                   relative: 1.0 0.0;
15004                   to_x: "elm.padding.icon2.left";
15005                   to_y: "elm.padding.bottom";
15006                }
15007                align: 0.0 1.0;
15008                image.normal: "00_input_bg.png";
15009                image.border: 4 4 4 4;
15010                image.border_scale: 1;
15011             }
15012          }
15013          part { name: "elm.icon.2";
15014             clip_to: "disclip";
15015             type: SWALLOW;
15016             scale: 1;
15017             description { state: "default" 0.0;
15018                rel1.to: "elm.icon2.bg";
15019                rel2.to: "elm.icon2.bg";
15020                align: 0.5 0.5;
15021             }
15022          }
15023          part { name: "elm.padding.icon3.left";
15024             clip_to: "disclip";
15025             type: RECT;
15026             scale: 1;
15027             description { state: "default" 0.0;
15028                min: 20 0;
15029                fixed: 1 0;
15030                rel1 {
15031                   relative: 1.0 0.0;
15032                   to_x: "elm.icon2.bg";
15033                   to_y: "elm.padding.bottom";
15034                }
15035                rel2 {
15036                   relative: 1.0 0.0;
15037                   to_x: "elm.icon2.bg";
15038                   to_y: "elm.padding.bottom";
15039                }
15040                align: 0.0 1.0;
15041                visible: 0;
15042             }
15043          }
15044          part { name: "elm.icon3.bg";
15045             clip_to: "disclip";
15046             type: IMAGE;
15047             scale: 1;
15048             description { state: "default" 0.0;
15049                min: 72 72;
15050                fixed: 1 1;
15051                rel1 {
15052                   relative: 1.0 0.0;
15053                   to_x: "elm.padding.icon3.left";
15054                   to_y: "elm.padding.bottom";
15055                }
15056                rel2 {
15057                   relative: 1.0 0.0;
15058                   to_x: "elm.padding.icon3.left";
15059                   to_y: "elm.padding.bottom";
15060                }
15061                align: 0.0 1.0;
15062                image.normal: "00_input_bg.png";
15063                image.border: 4 4 4 4;
15064                image.border_scale: 1;
15065             }
15066          }
15067          part { name: "elm.icon.3";
15068             clip_to: "disclip";
15069             type: SWALLOW;
15070             scale: 1;
15071             description { state: "default" 0.0;
15072                rel1.to: "elm.icon3.bg";
15073                rel2.to: "elm.icon3.bg";
15074                align: 0.5 0.5;
15075             }
15076          }
15077          part { name: "elm.padding.icon4.left";
15078             clip_to: "disclip";
15079             type: RECT;
15080             scale: 1;
15081             description { state: "default" 0.0;
15082                min: 20 0;
15083                fixed: 1 0;
15084                rel1 {
15085                   relative: 1.0 0.0;
15086                   to_x: "elm.icon3.bg";
15087                   to_y: "elm.padding.bottom";
15088                }
15089                rel2 {
15090                   relative: 1.0 0.0;
15091                   to_x: "elm.icon3.bg";
15092                   to_y: "elm.padding.bottom";
15093                }
15094                align: 0.0 1.0;
15095                visible: 0;
15096             }
15097          }
15098          part { name: "elm.icon4.bg";
15099             clip_to: "disclip";
15100             type: IMAGE;
15101             scale: 1;
15102             description { state: "default" 0.0;
15103                min: 72 72;
15104                fixed: 1 1;
15105                rel1 {
15106                   relative: 1.0 0.0;
15107                   to_x: "elm.padding.icon4.left";
15108                   to_y: "elm.padding.bottom";
15109                }
15110                rel2 {
15111                   relative: 1.0 0.0;
15112                   to_x: "elm.padding.icon4.left";
15113                   to_y: "elm.padding.bottom";
15114                }
15115                align: 0.0 1.0;
15116                image.normal: "00_input_bg.png";
15117                image.border: 4 4 4 4;
15118                image.border_scale: 1;
15119             }
15120          }
15121          part { name: "elm.icon.4";
15122             clip_to: "disclip";
15123             type: SWALLOW;
15124             scale: 1;
15125             description { state: "default" 0.0;
15126                rel1.to: "elm.icon4.bg";
15127                rel2.to: "elm.icon4.bg";
15128                align: 0.5 0.5;
15129             }
15130          }
15131          GENLIST_PART_DISCLIP
15132       }
15133       programs {
15134          // signal: elm,state,%s,active
15135          //   a "check" item named %s went active
15136          // signal: elm,state,%s,passive
15137          //   a "check" item named %s went passive
15138          // default is passive
15139          /*program { name: "go_active";
15140             signal: "elm,state,selected";
15141             source: "elm";
15142             action: STATE_SET "selected" 0.0;
15143             target: "bg_image";
15144             target: "elm.text.1";
15145             target: "elm.text.2";
15146          }
15147          program { name: "go_passive";
15148             signal: "elm,state,unselected";
15149             source: "elm";
15150             action: STATE_SET "default" 0.0;
15151             target: "bg_image";
15152             target: "elm.text.1";
15153             target: "elm.text.2";
15154             transition: LINEAR 0.1;
15155          }*/
15156          program { name: "go_disabled";
15157             signal: "elm,state,disabled";
15158             source: "elm";
15159             action: STATE_SET "disabled" 0.0;
15160             target: "disclip";
15161          }
15162          program { name: "go_enabled";
15163             signal: "elm,state,enabled";
15164             source: "elm";
15165             action: STATE_SET "default" 0.0;
15166             target: "disclip";
15167          }
15168       }
15169    }
15170
15171    group { name: "elm/genlist/item/dialogue/2text.2icon.4/default";
15172       alias: "elm/genlist/item_odd/dialogue/2text.2icon.4/default";
15173       alias: "elm/genlist/item_compress/dialogue/2text.2icon.4/default";
15174       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon.4/default";
15175       data.item: "stacking" "above";
15176       data.item: "selectraise" "on";
15177       data.item: "labels" "elm.text.1 elm.text.2";
15178       data.item: "icons" "elm.icon.1 elm.icon.2";
15179       data.item: "renames" "elm.edit.rename";
15180       images {
15181          image: "00_list_bar_press_1x80.png" COMP;
15182       }
15183       parts {
15184          GENLIST_PART_BASE( 81 )
15185          GENLIST_PART_BG_IMAGE
15186          GENLIST_PART_BOTTOM_LINE
15187          GENLIST_PART_PADDING_TOP( 6 )
15188          GENLIST_PART_PADDING_BOTTOM( 6 )
15189          GENLIST_PART_PADDING_LEFT( 20 )
15190          GENLIST_PART_PADDING_RIGHT( 10 )
15191          GENLIST_PART_DIALOGUE_ITEM
15192          part { name: "elm.icon.1";
15193             clip_to: "disclip";
15194             type: SWALLOW;
15195             scale: 1;
15196             description { state: "default" 0.0;
15197                min: 20 20;
15198                max: 20 20;
15199                fixed: 1 1;
15200                rel1 {
15201                   relative: 1.0 1.0;
15202                   to_x: "elm.padding.left";
15203                   to_y: "elm.text.1";
15204                }
15205                rel2 {
15206                   relative: 1.0 0.0;
15207                   to_x: "elm.padding.left";
15208                   to_y: "elm.padding.bottom";
15209                }
15210                align: 0.0 0.5;
15211             }
15212             GENLIST_DESCRIPTION_RENAME_ENABLED
15213          }
15214          part { name: "elm.padding.icon1.right";
15215             clip_to: "disclip";
15216             type: RECT;
15217             scale: 1;
15218             description { state: "default" 0.0;
15219                min: 10 0;
15220                fixed: 1 0;
15221                rel1 {
15222                   relative: 1.0 0.0;
15223                   to_x: "elm.icon.1";
15224                }
15225                rel2.to_x: "elm.icon.1";
15226                align: 0.0 0.0;
15227                visible: 0;
15228             }
15229          }
15230          part { name: "elm.icon.2";
15231             clip_to: "disclip";
15232             type: SWALLOW;
15233             scale: 1;
15234             description { state: "default" 0.0;
15235                min: 20 20;
15236                max: 20 20;
15237                fixed: 1 1;
15238                rel1 {
15239                   relative: 0.0 1.0;
15240                   to_x: "elm.padding.right";
15241                   to_y: "elm.padding.top";
15242                }
15243                rel2 {
15244                   relative: 0.0 1.0;
15245                   to_x: "elm.padding.right";
15246                   to_y: "elm.text.1";
15247                }
15248                align: 1.0 0.5;
15249             }
15250             GENLIST_DESCRIPTION_RENAME_ENABLED
15251          }
15252          part { name: "elm.padding.icon2.left";
15253             clip_to: "disclip";
15254             type: RECT;
15255             scale: 1;
15256             description { state: "default" 0.0;
15257                min: 10 0;
15258                fixed: 1 0;
15259                rel1 {
15260                   relative: 0.0 0.0;
15261                   to_x: "elm.icon.2";
15262                }
15263                rel2.to_x: "elm.icon.2";
15264                align: 1.0 0.0;
15265                visible: 0;
15266             }
15267          }
15268          part { name: "elm.text.1";
15269             clip_to: "disclip";
15270             type: TEXT;
15271             mouse_events: 0;
15272             scale: 1;
15273             description { state: "default" 0.0;
15274                min: 0 38;
15275                fixed: 0 1;
15276                rel1 {
15277                   relative: 1.0 1.0;
15278                   to_x: "elm.padding.left";
15279                   to_y: "elm.padding.top";
15280                }
15281                rel2 {
15282                   relative: 0.0 1.0;
15283                   to_x: "elm.padding.icon2.left";
15284                   to_y: "elm.padding.top";
15285                }
15286                align: 0.0 0.0;
15287                color: GENLIST_PART_TEXT_COLOR_INC;
15288                text {
15289                   font: "SLP:style=Roman";
15290                   size: 28;
15291                   min: 0 1;
15292                   align: 0.0 0.5;
15293                }
15294             }
15295             description { state: "selected" 0.0;
15296                inherit: "default" 0.0;
15297                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
15298             }
15299             GENLIST_DESCRIPTION_RENAME_ENABLED
15300          }
15301          part { name: "elm.text.2";
15302             clip_to: "disclip";
15303             type: TEXT;
15304             mouse_events: 0;
15305             scale: 1;
15306             description { state: "default" 0.0;
15307                rel1 {
15308                   relative: 1.0 1.0;
15309                   to_x: "elm.padding.icon1.right";
15310                   to_y: "elm.text.1";
15311                }
15312                rel2 {
15313                   relative: 0.0 0.0;
15314                   to_x: "elm.padding.right";
15315                   to_y: "elm.padding.bottom";
15316                }
15317                color: GENLIST_PART_SUB_TEXT_COLOR_INC;
15318                text {
15319                   font: "SLP:style=Medium";
15320                   size: 20;
15321                   min: 0 1;
15322                   align: 0.0 0.5;
15323                }
15324             }
15325             description { state: "selected" 0.0;
15326                inherit: "default" 0.0;
15327                color: GENLIST_PART_TEXT_SELECTED_COLOR_INC;
15328             }
15329             GENLIST_DESCRIPTION_RENAME_ENABLED
15330          }
15331          GENLIST_PART_RENAME
15332          GENLIST_PART_DISCLIP
15333       }
15334       programs {
15335          // signal: elm,state,%s,active
15336          //   a "check" item named %s went active
15337          // signal: elm,state,%s,passive
15338          //   a "check" item named %s went passive
15339          // default is passive
15340          program { name: "go_active";
15341             signal: "elm,state,selected";
15342             source: "elm";
15343             action: STATE_SET "selected" 0.0;
15344             target: "bg_image";
15345             target: "elm.text.1";
15346             target: "elm.text.2";
15347          }
15348          program { name: "go_passive";
15349             signal: "elm,state,unselected";
15350             source: "elm";
15351             action: STATE_SET "default" 0.0;
15352             target: "bg_image";
15353             target: "elm.text.1";
15354             target: "elm.text.2";
15355             transition: LINEAR 0.1;
15356          }
15357          program { name: "go_disabled";
15358             signal: "elm,state,disabled";
15359             source: "elm";
15360             action: STATE_SET "disabled" 0.0;
15361             target: "disclip";
15362          }
15363          program { name: "go_enabled";
15364             signal: "elm,state,enabled";
15365             source: "elm";
15366             action: STATE_SET "default" 0.0;
15367             target: "disclip";
15368          }
15369          GENLIST_PROGRAM_RENAME_2TEXT_2ICON
15370       }
15371    }
15372
15373    group { name: "elm/genlist/item/dialogue/bg/2text.2icon/default";
15374       alias: "elm/genlist/item_odd/dialogue/bg/2text.2icon/default";
15375       alias: "elm/genlist/item_compress/dialogue/bg/2text.2icon/default";
15376       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.2icon/default";
15377       data.item: "stacking" "above";
15378       data.item: "selectraise" "on";
15379       data.item: "labels" "elm.text.1 elm.text.2";
15380       data.item: "icons" "elm.icon.1 elm.icon.2";
15381       images {
15382           image: "00_list_thumbnail_bg.png" COMP;
15383       }
15384       parts {
15385          GENLIST_PART_DIALOGUE_BASE( 118 )
15386          GENLIST_PART_PADDING_TOP( 29 )
15387          GENLIST_PART_PADDING_BOTTOM( 30 )
15388          GENLIST_PART_PADDING_LEFT( 20 )
15389          GENLIST_PART_PADDING_RIGHT( 10 )
15390          part { name: "elm.icon1.bg";
15391             scale: 1;
15392             description { state: "default" 0.0;
15393                min: 80 80;
15394                fixed: 1 1;
15395                align: 0.0 0.5;
15396                rel1 {
15397                   relative: 1.0 0.5;
15398                   to_x: "elm.padding.left";
15399                }
15400                rel2 {
15401                   relative: 1.0 0.5;
15402                   to_x: "elm.padding.left";
15403                }
15404                image {
15405                   normal: "00_list_thumbnail_bg.png";
15406                   border: 1 1 1 1;
15407                   border_scale: 1;
15408                   middle: NONE;
15409                }
15410             }
15411          }
15412          part { name: "elm.icon.1";
15413             type: SWALLOW;
15414             description { state: "default" 0.0;
15415                rel1.to: "elm.icon1.bg";
15416                rel2.to: "elm.icon1.bg";
15417             }
15418          }
15419          part { name: "elm.padding.icon1.right";
15420             type: RECT;
15421             mouse_events: 0;
15422             scale: 1;
15423             description { state: "default" 0.0;
15424                min: 15 0;
15425                fixed: 1 0;
15426                rel1 {
15427                    relative: 1.0 0.0;
15428                    to_x: "elm.icon1.bg";
15429                }
15430                rel2.to_x: "elm.icon1.bg";
15431                visible: 0;
15432                align: 0.0 0.5;
15433             }
15434          }
15435          part { name: "elm.icon.2";
15436             type: SWALLOW;
15437             scale: 1;
15438             description { state: "default" 0.0;
15439                min: 40 40;
15440                max: 40 40;
15441                fixed: 1 1;
15442                rel1 {
15443                   relative: 0.0 0.5;
15444                   to_x: "elm.padding.right";
15445                }
15446                rel2 {
15447                   relative: 0.0 0.5;
15448                   to_x: "elm.padding.right";
15449                }
15450                align: 1.0 0.5;
15451             }
15452          }
15453          part { name: "elm.padding.icon2.right";
15454             type: RECT;
15455             mouse_events: 0;
15456             scale: 1;
15457             description { state: "default" 0.0;
15458                min: 10 0;
15459                fixed: 1 0;
15460                rel1.to_x: "elm.icon.2";
15461                rel2 {
15462                   relative: 0.0 1.0;
15463                   to_x: "elm.icon.2";
15464                }
15465                rel2.to_x: "elm.icon.2";
15466                visible: 0;
15467                align: 1.0 0.5;
15468             }
15469          }
15470          part { name: "elm.text.1";
15471             clip_to: "disclip";
15472             type: TEXT;
15473             mouse_events: 0;
15474             scale: 1;
15475             description { state: "default" 0.0;
15476                min: 0 34;
15477                fixed: 0 1;
15478                align: 0 0;
15479                rel1 {
15480                   relative: 1.0 1.0;
15481                   to_x: "elm.padding.icon1.right";
15482                   to_y: "elm.padding.top";
15483                }
15484                rel2 {
15485                   relative: 0.0 1.0;
15486                   to_x: "elm.padding.icon2.right";
15487                   to_y: "elm.padding.top";
15488                }
15489                color: GENLIST_PART_TEXT_COLOR_INC;
15490                text {
15491                   font: "SLP:style=Regular";
15492                   size: 30;
15493                   align: 0.0 0.0;
15494                }
15495             }
15496          }
15497          part { name: "elm.text.2";
15498             clip_to: "disclip";
15499             type: TEXT;
15500             mouse_events: 0;
15501             scale: 1;
15502             description { state: "default" 0.0;
15503                rel1 {
15504                   relative: 1.0 1.0;
15505                   to_x: "elm.padding.icon1.right";
15506                   to_y: "elm.text.1";
15507                }
15508                rel2 {
15509                   relative: 0.0 0.0;
15510                   to_x: "elm.padding.icon2.right";
15511                   to_y: "elm.padding.bottom";
15512                }
15513                color: 156 142 125 255;
15514                text {
15515                   font: "SLP:style=Medium";
15516                   size: 17;
15517                   align: 0.0 1.0;
15518                }
15519             }
15520          }
15521          GENLIST_PART_DISCLIP
15522       }
15523       programs {
15524          // signal: elm,state,%s,active
15525          //   a "check" item named %s went active
15526          // signal: elm,state,%s,passive
15527          //   a "check" item named %s went passive
15528          // default is passive
15529          /*program { name: "go_active";
15530             signal: "elm,state,selected";
15531             source: "elm";
15532             action: STATE_SET "selected" 0.0;
15533             target: "elm.text";
15534             target: "elm.text.sub";
15535          }
15536          program { name: "go_passive";
15537             signal: "elm,state,unselected";
15538             source: "elm";
15539             action: STATE_SET "default" 0.0;
15540             target: "elm.text";
15541             target: "elm.text.sub";
15542             transition: LINEAR 0.1;
15543          }*/
15544          program { name: "go_disabled";
15545             signal: "elm,state,disabled";
15546             source: "elm";
15547             action: STATE_SET "disabled" 0.0;
15548             target: "disclip";
15549          }
15550          program { name: "go_enabled";
15551             signal: "elm,state,enabled";
15552             source: "elm";
15553             action: STATE_SET "default" 0.0;
15554             target: "disclip";
15555          }
15556       }
15557    }
15558
15559    group { name: "elm/genlist/item/dialogue/bg/3text.2icon/default";
15560       alias: "elm/genlist/item_odd/dialogue/bg/3text.2icon/default";
15561       alias: "elm/genlist/item_compress/dialogue/bg/3text.2icon/default";
15562       alias: "elm/genlist/item_compress_odd/dialogue/bg/3text.2icon/default";
15563       data.item: "stacking" "above";
15564       data.item: "selectraise" "on";
15565       data.item: "labels" "elm.text.1 elm.text.2 elm.text.3";
15566       data.item: "icons" "elm.icon.1 elm.icon.2";
15567       images {
15568           image: "00_list_thumbnail_bg.png" COMP;
15569       }
15570       parts {
15571          GENLIST_PART_DIALOGUE_BASE( 118 )
15572          GENLIST_PART_PADDING_TOP( 21 )
15573          GENLIST_PART_PADDING_BOTTOM( 21 )
15574          GENLIST_PART_PADDING_LEFT( 20 )
15575          GENLIST_PART_PADDING_RIGHT( 10 )
15576          part { name: "elm.icon1.bg";
15577             scale: 1;
15578             description { state: "default" 0.0;
15579                min: 80 80;
15580                fixed: 1 1;
15581                align: 0.0 0.5;
15582                rel1 {
15583                   relative: 1.0 0.5;
15584                   to_x: "elm.padding.left";
15585                }
15586                rel2 {
15587                   relative: 1.0 0.5;
15588                   to_x: "elm.padding.left";
15589                }
15590                image {
15591                   normal: "00_list_thumbnail_bg.png";
15592                   border: 1 1 1 1;
15593                   border_scale: 1;
15594                   middle: NONE;
15595                }
15596             }
15597          }
15598          part { name: "elm.icon.1";
15599             type: SWALLOW;
15600             description { state: "default" 0.0;
15601                rel1.to: "elm.icon1.bg";
15602                rel2.to: "elm.icon1.bg";
15603             }
15604          }
15605          part { name: "elm.padding.icon1.right";
15606             type: RECT;
15607             mouse_events: 0;
15608             scale: 1;
15609             description { state: "default" 0.0;
15610                min: 15 0;
15611                fixed: 1 0;
15612                rel1 {
15613                    relative: 1.0 0.0;
15614                    to_x: "elm.icon1.bg";
15615                }
15616                rel2.to_x: "elm.icon1.bg";
15617                visible: 0;
15618                align: 0.0 0.5;
15619             }
15620          }
15621          part { name: "elm.icon.2";
15622             type: SWALLOW;
15623             scale: 1;
15624             description { state: "default" 0.0;
15625                min: 40 40;
15626                max: 40 40;
15627                fixed: 1 1;
15628                rel1 {
15629                   relative: 0.0 0.5;
15630                   to_x: "elm.padding.right";
15631                }
15632                rel2 {
15633                   relative: 0.0 0.5;
15634                   to_x: "elm.padding.right";
15635                }
15636                align: 1.0 0.5;
15637             }
15638          }
15639          part { name: "elm.padding.icon2.right";
15640             type: RECT;
15641             mouse_events: 0;
15642             scale: 1;
15643             description { state: "default" 0.0;
15644                min: 10 0;
15645                fixed: 1 0;
15646                rel1.to_x: "elm.icon.2";
15647                rel2 {
15648                   relative: 0.0 1.0;
15649                   to_x: "elm.icon.2";
15650                }
15651                rel2.to_x: "elm.icon.2";
15652                visible: 0;
15653                align: 1.0 0.5;
15654             }
15655          }
15656          part { name: "elm.text.1";
15657             clip_to: "disclip";
15658             type: TEXT;
15659             mouse_events: 0;
15660             scale: 1;
15661             description { state: "default" 0.0;
15662                min: 0 34;
15663                fixed: 0 1;
15664                align: 0 0;
15665                rel1 {
15666                   relative: 1.0 1.0;
15667                   to_x: "elm.padding.icon1.right";
15668                   to_y: "elm.padding.top";
15669                }
15670                rel2 {
15671                   relative: 0.0 1.0;
15672                   to_x: "elm.padding.icon2.right";
15673                   to_y: "elm.padding.top";
15674                }
15675                color: GENLIST_PART_TEXT_COLOR_INC;
15676                text {
15677                   font: "SLP:style=Regular";
15678                   size: 30;
15679                   align: 0.0 0.0;
15680                }
15681             }
15682          }
15683          part { name: "elm.text.2";
15684             clip_to: "disclip";
15685             type: TEXT;
15686             mouse_events: 0;
15687             scale: 1;
15688             description { state: "default" 0.0;
15689                rel1 {
15690                   relative: 1.0 1.0;
15691                   to_x: "elm.padding.icon1.right";
15692                   to_y: "elm.text.1";
15693                }
15694                rel2 {
15695                   relative: 0.0 0.0;
15696                   to_x: "elm.padding.icon2.right";
15697                   to_y: "elm.text.3";
15698                }
15699                color: 156 142 125 255;
15700                text {
15701                   font: "SLP:style=Medium";
15702                   size: 17;
15703                   align: 0.0 1.0;
15704                }
15705             }
15706          }
15707          part { name: "elm.text.3";
15708             clip_to: "disclip";
15709             type: TEXT;
15710             mouse_events: 0;
15711             scale: 1;
15712             description { state: "default" 0.0;
15713                min: 0 20;
15714                fixed: 0 1;
15715                align: 0 1;
15716                rel1 {
15717                   relative: 1.0 0.0;
15718                   to_x: "elm.padding.icon1.right";
15719                   to_y: "elm.padding.bottom";
15720                }
15721                rel2 {
15722                   relative: 0.0 0.0;
15723                   to_x: "elm.padding.icon2.right";
15724                   to_y: "elm.padding.bottom";
15725                }
15726                color: 156 142 125 255;
15727                text {
15728                   font: "SLP:style=Medium";
15729                   size: 17;
15730                   align: 0.0 1.0;
15731                }
15732             }
15733          }
15734          GENLIST_PART_DISCLIP
15735       }
15736       programs {
15737          // signal: elm,state,%s,active
15738          //   a "check" item named %s went active
15739          // signal: elm,state,%s,passive
15740          //   a "check" item named %s went passive
15741          // default is passive
15742          /*program { name: "go_active";
15743             signal: "elm,state,selected";
15744             source: "elm";
15745             action: STATE_SET "selected" 0.0;
15746             target: "elm.text";
15747             target: "elm.text.sub";
15748          }
15749          program { name: "go_passive";
15750             signal: "elm,state,unselected";
15751             source: "elm";
15752             action: STATE_SET "default" 0.0;
15753             target: "elm.text";
15754             target: "elm.text.sub";
15755             transition: LINEAR 0.1;
15756          }*/
15757          program { name: "go_disabled";
15758             signal: "elm,state,disabled";
15759             source: "elm";
15760             action: STATE_SET "disabled" 0.0;
15761             target: "disclip";
15762          }
15763          program { name: "go_enabled";
15764             signal: "elm,state,enabled";
15765             source: "elm";
15766             action: STATE_SET "default" 0.0;
15767             target: "disclip";
15768          }
15769       }
15770    }
15771
15772    group { name: "elm/genlist/item/dialogue/bg/5text.2icon/default";
15773       alias: "elm/genlist/item_odd/dialogue/bg/5text.2icon/default";
15774       alias: "elm/genlist/item_compress/dialogue/bg/5text.2icon/default";
15775       alias: "elm/genlist/item_compress_odd/dialogue/bg/5text.2icon/default";
15776       data.item: "stacking" "above";
15777       data.item: "selectraise" "on";
15778       data.item: "labels" "elm.text.1 elm.text.2 elm.text.3 elm.text.4 elm.text.5";
15779       data.item: "icons" "elm.icon.1 elm.icon.2";
15780       images {
15781           image: "00_list_thumbnail_bg.png" COMP;
15782       }
15783       parts {
15784          GENLIST_PART_DIALOGUE_BASE( 114 )
15785          GENLIST_PART_PADDING_TOP( 9 )
15786          GENLIST_PART_PADDING_BOTTOM( 9 )
15787          GENLIST_PART_PADDING_LEFT( 10 )
15788          GENLIST_PART_PADDING_RIGHT( 10 )
15789          part { name: "elm.icon1.bg";
15790             scale: 1;
15791             description { state: "default" 0.0;
15792                min: 88 88;
15793                fixed: 1 1;
15794                align: 0.0 0.5;
15795                rel1 {
15796                   relative: 1.0 0.5;
15797                   to_x: "elm.padding.left";
15798                }
15799                rel2 {
15800                   relative: 1.0 0.5;
15801                   to_x: "elm.padding.left";
15802                }
15803                image {
15804                   normal: "00_list_thumbnail_bg.png";
15805                   border: 1 1 1 1;
15806                   border_scale: 1;
15807                   middle: NONE;
15808                }
15809             }
15810          }
15811          part { name: "elm.icon.1";
15812             type: SWALLOW;
15813             description { state: "default" 0.0;
15814                rel1.to: "elm.icon1.bg";
15815                rel2.to: "elm.icon1.bg";
15816             }
15817          }
15818          part { name: "elm.padding.icon1.right";
15819             type: RECT;
15820             mouse_events: 0;
15821             scale: 1;
15822             description { state: "default" 0.0;
15823                min: 10 0;
15824                fixed: 1 0;
15825                rel1 {
15826                    relative: 1.0 0.0;
15827                    to_x: "elm.icon1.bg";
15828                }
15829                rel2.to_x: "elm.icon1.bg";
15830                visible: 0;
15831                align: 0.0 0.5;
15832             }
15833          }
15834          part { name: "elm.text.1";
15835             clip_to: "disclip";
15836             type: TEXT;
15837             mouse_events: 0;
15838             scale: 1;
15839             description { state: "default" 0.0;
15840                min: 0 24;
15841                fixed: 0 1;
15842                rel1 {
15843                   relative: 1.0 1.0;
15844                   to_x: "elm.padding.icon1.right";
15845                   to_y: "elm.padding.top";
15846                }
15847                rel2 {
15848                   relative: 0.0 1.0;
15849                   to_x: "elm.padding.right";
15850                   to_y: "elm.padding.top";
15851                }
15852                align: 0.0 0.0;
15853                color: GENLIST_PART_TEXT_COLOR_INC;
15854                text {
15855                   font: "SLP:style=Medium";
15856                   size: 22;
15857                   align: 0.0 0.5;
15858                }
15859             }
15860          }
15861          part { name: "elm.text.2";
15862             clip_to: "disclip";
15863             type: TEXT;
15864             mouse_events: 0;
15865             scale: 1;
15866             description { state: "default" 0.0;
15867                min: 0 24;
15868                fixed: 0 1;
15869                rel1 {
15870                   relative: 1.0 1.0;
15871                   to_x: "elm.padding.icon1.right";
15872                   to_y: "elm.text.1";
15873                }
15874                rel2 {
15875                   relative: 0.0 1.0;
15876                   to_x: "elm.padding.right";
15877                   to_y: "elm.text.1";
15878                }
15879                align: 0.0 0.0;
15880                color: 156 142 125 255;
15881                text {
15882                   font: "SLP:style=Medium";
15883                   size: 18;
15884                   align: 0.0 0.5;
15885                }
15886             }
15887          }
15888          part { name: "elm.icon.2";
15889             clip_to: "disclip";
15890             type: SWALLOW;
15891             mouse_events: 0;
15892             scale: 1;
15893             description { state: "default" 0.0;
15894                fixed: 1 1;
15895                rel1 {
15896                   relative: 1.0 0.0;
15897                   to_x: "elm.padding.icon1.right";
15898                   to_y: "elm.text.3";
15899                }
15900                rel2 {
15901                   relative: 1.0 1.0;
15902                   to_x: "elm.padding.icon1.right";
15903                   to_y: "elm.text.3";
15904                }
15905                align: 0.0 0.5;
15906             }
15907          }
15908          part { name: "elm.padding.icon2.right";
15909             type: RECT;
15910             mouse_events: 0;
15911             scale: 1;
15912             description { state: "default" 0.0;
15913                min: 10 0;
15914                fixed: 1 0;
15915                rel1 {
15916                    relative: 1.0 0.0;
15917                    to_x: "elm.icon.2";
15918                }
15919                rel2.to_x: "elm.icon.2";
15920                visible: 0;
15921                align: 0.0 0.5;
15922             }
15923          }
15924          part { name: "elm.text.3";
15925             clip_to: "disclip";
15926             type: TEXT;
15927             mouse_events: 0;
15928             scale: 1;
15929             description { state: "default" 0.0;
15930                min: 0 24;
15931                fixed: 0 1;
15932                rel1 {
15933                   relative: 1.0 1.0;
15934                   to_x: "elm.padding.icon2.right";
15935                   to_y: "elm.text.2";
15936                }
15937                rel2 {
15938                   relative: 0.0 1.0;
15939                   to_x: "elm.padding.right";
15940                   to_y: "elm.text.2";
15941                }
15942                align: 0.0 0.0;
15943                color: 156 142 125 255;
15944                text {
15945                   font: "SLP:style=Medium";
15946                   size: 18;
15947                   align: 0.0 0.5;
15948                }
15949             }
15950          }
15951          part { name: "elm.text.4";
15952             clip_to: "disclip";
15953             type: TEXT;
15954             mouse_events: 0;
15955             scale: 1;
15956             description { state: "default" 0.0;
15957                min: 60 24;
15958                fixed: 1 1;
15959                align: 0 1;
15960                rel1 {
15961                   relative: 1.0 0.0;
15962                   to_x: "elm.padding.icon1.right";
15963                   to_y: "elm.padding.bottom";
15964                }
15965                rel2 {
15966                   relative: 1.0 0.0;
15967                   to_x: "elm.padding.icon1.right";
15968                   to_y: "elm.padding.bottom";
15969                }
15970                color: 221 134 21 255;
15971                text {
15972                   font: "SLP:style=Medium";
15973                   size: 18;
15974                   align: 0.0 0.5;
15975                }
15976             }
15977          }
15978          part { name: "elm.padding.text4.right";
15979             type: RECT;
15980             mouse_events: 0;
15981             scale: 1;
15982             description { state: "default" 0.0;
15983                min: 10 0;
15984                fixed: 1 0;
15985                rel1 {
15986                    relative: 1.0 0.0;
15987                    to_x: "elm.text.4";
15988                }
15989                rel2.to_x: "elm.text.4";
15990                visible: 0;
15991                align: 0.0 0.5;
15992             }
15993          }
15994          part { name: "elm.text.5";
15995             clip_to: "disclip";
15996             type: TEXT;
15997             mouse_events: 0;
15998             scale: 1;
15999             description { state: "default" 0.0;
16000                min: 60 24;
16001                fixed: 1 1;
16002                align: 0 1;
16003                rel1 {
16004                   relative: 1.0 0.0;
16005                   to_x: "elm.padding.text4.right";
16006                   to_y: "elm.padding.bottom";
16007                }
16008                rel2 {
16009                   relative: 1.0 0.0;
16010                   to_x: "elm.padding.text4.right";
16011                   to_y: "elm.padding.bottom";
16012                }
16013                color: 34 129 157 255;
16014                text {
16015                   font: "SLP:style=Medium";
16016                   size: 18;
16017                   align: 0.0 0.5;
16018                }
16019             }
16020          }
16021          GENLIST_PART_DISCLIP
16022       }
16023       programs {
16024          // signal: elm,state,%s,active
16025          //   a "check" item named %s went active
16026          // signal: elm,state,%s,passive
16027          //   a "check" item named %s went passive
16028          // default is passive
16029          /*program { name: "go_active";
16030             signal: "elm,state,selected";
16031             source: "elm";
16032             action: STATE_SET "selected" 0.0;
16033             target: "elm.text";
16034             target: "elm.text.sub";
16035          }
16036          program { name: "go_passive";
16037             signal: "elm,state,unselected";
16038             source: "elm";
16039             action: STATE_SET "default" 0.0;
16040             target: "elm.text";
16041             target: "elm.text.sub";
16042             transition: LINEAR 0.1;
16043          }*/
16044          program { name: "go_disabled";
16045             signal: "elm,state,disabled";
16046             source: "elm";
16047             action: STATE_SET "disabled" 0.0;
16048             target: "disclip";
16049          }
16050          program { name: "go_enabled";
16051             signal: "elm,state,enabled";
16052             source: "elm";
16053             action: STATE_SET "default" 0.0;
16054             target: "disclip";
16055          }
16056       }
16057    }
16058
16059    // 4.1.9
16060    group { name: "elm/genlist/item/dialogue/1icon/default";
16061       alias: "elm/genlist/item_odd/dialogue/1icon/default";
16062       alias: "elm/genlist/item_compress/dialogue/1icon/default";
16063       alias: "elm/genlist/item_compress_odd/dialogue/1icon/default";
16064
16065       data.item: "stacking" "above";
16066       data.item: "selectraise" "on";
16067       data.item: "icons" "elm.icon";
16068
16069       parts {
16070          GENLIST_PART_DIALOGUE_BASE( 71 )
16071          GENLIST_PART_BOTTOM_LINE
16072          GENLIST_PART_PADDING_LEFT( 20 )
16073          GENLIST_PART_PADDING_RIGHT( 10 )
16074          GENLIST_PART_DIALOGUE_ITEM
16075          part { name: "elm.icon";
16076             clip_to: "disclip";
16077             type: SWALLOW;
16078             scale: 1;
16079             description { state: "default" 0.0;
16080                rel1 {
16081                   relative: 1.0 0.0;
16082                   to_x: "elm.padding.left";
16083                }
16084                rel2 {
16085                   relative: 0.0 1.0;
16086                   to_x: "elm.padding.right";
16087                }
16088             }
16089          }
16090          GENLIST_PART_DISCLIP
16091       }
16092       programs {
16093          // signal: elm,state,%s,active
16094          //   a "check" item named %s went active
16095          // signal: elm,state,%s,passive
16096          //   a "check" item named %s went passive
16097          // default is passive
16098          /*program { name: "go_active";
16099             signal: "elm,state,selected";
16100             source: "elm";
16101             action: STATE_SET "selected" 0.0;
16102             target: "bg_image";
16103             target: "elm.text";
16104          }
16105          program { name: "go_passive";
16106             signal: "elm,state,unselected";
16107             source: "elm";
16108             action: STATE_SET "default" 0.0;
16109             target: "bg_image";
16110             target: "elm.text";
16111             transition: LINEAR 0.1;
16112          }*/
16113          program { name: "go_disabled";
16114             signal: "elm,state,disabled";
16115             source: "elm";
16116             action: STATE_SET "disabled" 0.0;
16117             target: "disclip";
16118          }
16119          program { name: "go_enabled";
16120             signal: "elm,state,enabled";
16121             source: "elm";
16122             action: STATE_SET "default" 0.0;
16123             target: "disclip";
16124          }
16125       }
16126    }
16127
16128    group { name: "elm/genlist/item/dialogue/bg/1icon/default";
16129       alias: "elm/genlist/item_odd/dialogue/bg/1icon/default";
16130       alias: "elm/genlist/item_compress/dialogue/bg/1icon/default";
16131       alias: "elm/genlist/item_compress_odd/dialogue/bg/1icon/default";
16132
16133       data.item: "stacking" "above";
16134       data.item: "selectraise" "on";
16135       data.item: "icons" "elm.icon";
16136
16137       parts {
16138          GENLIST_PART_DIALOGUE_BASE( 46 )
16139          GENLIST_PART_PADDING_LEFT( 10 )
16140          GENLIST_PART_PADDING_RIGHT( 10 )
16141          part { name: "elm.icon";
16142             clip_to: "disclip";
16143             type: SWALLOW;
16144             scale: 1;
16145             description { state: "default" 0.0;
16146                rel1 {
16147                   relative: 1.0 0.0;
16148                   to_x: "elm.padding.left";
16149                }
16150                rel2 {
16151                   relative: 0.0 1.0;
16152                   to_x: "elm.padding.right";
16153                }
16154             }
16155          }
16156          GENLIST_PART_DISCLIP
16157       }
16158       programs {
16159          // signal: elm,state,%s,active
16160          //   a "check" item named %s went active
16161          // signal: elm,state,%s,passive
16162          //   a "check" item named %s went passive
16163          // default is passive
16164          program { name: "go_disabled";
16165             signal: "elm,state,disabled";
16166             source: "elm";
16167             action: STATE_SET "disabled" 0.0;
16168             target: "disclip";
16169          }
16170          program { name: "go_enabled";
16171             signal: "elm,state,enabled";
16172             source: "elm";
16173             action: STATE_SET "default" 0.0;
16174             target: "disclip";
16175          }
16176       }
16177    }
16178
16179    group { name: "elm/genlist/item/dialogue/bg/2icon/default";
16180       alias: "elm/genlist/item_odd/dialogue/bg/2icon/default";
16181       alias: "elm/genlist/item_compress/dialogue/bg/2icon/default";
16182       alias: "elm/genlist/item_compress_odd/dialogue/bg/2icon/default";
16183
16184       data.item: "stacking" "above";
16185       data.item: "selectraise" "on";
16186       data.item: "icons" "elm.icon.1 elm.icon.2";
16187
16188       parts {
16189          GENLIST_PART_DIALOGUE_BASE( 46 )
16190          part { name: "elm.icon.1";
16191             clip_to: "disclip";
16192             type: SWALLOW;
16193             description { state: "default" 0.0;
16194                rel1.relative: 0.021 0.0;
16195                rel2.relative: 0.492 1.0;
16196             }
16197          }
16198          part { name: "elm.icon.2";
16199             clip_to: "disclip";
16200             type: SWALLOW;
16201             description { state: "default" 0.0;
16202                rel1.relative: 0.51 0.0;
16203                rel2.relative: 0.979 1.0;
16204             }
16205          }
16206          GENLIST_PART_DISCLIP
16207       }
16208       programs {
16209          // signal: elm,state,%s,active
16210          //   a "check" item named %s went active
16211          // signal: elm,state,%s,passive
16212          //   a "check" item named %s went passive
16213          // default is passive
16214          program { name: "go_disabled";
16215             signal: "elm,state,disabled";
16216             source: "elm";
16217             action: STATE_SET "disabled" 0.0;
16218             target: "disclip";
16219          }
16220          program { name: "go_enabled";
16221             signal: "elm,state,enabled";
16222             source: "elm";
16223             action: STATE_SET "default" 0.0;
16224             target: "disclip";
16225          }
16226       }
16227    }
16228
16229    group { name: "elm/genlist/item/dialogue/bg/3icon/default";
16230       alias: "elm/genlist/item_odd/dialogue/bg/3icon/default";
16231       alias: "elm/genlist/item_compress/dialogue/bg/3icon/default";
16232       alias: "elm/genlist/item_compress_odd/dialogue/bg/3icon/default";
16233
16234       alias: "elm/genlist/item/dialogue.3icon/default";
16235       alias: "elm/genlist/item_odd/dialogue.3icon/default";
16236       alias: "elm/genlist/item_compress/dialogue.3icon/default";
16237       alias: "elm/genlist/item_compress_odd/dialogue.3icon/default";
16238
16239       data.item: "stacking" "above";
16240       data.item: "selectraise" "on";
16241       data.item: "icons" "elm.icon.1 elm.icon.2 elm.icon.3";
16242
16243       parts {
16244          GENLIST_PART_DIALOGUE_BASE( 46 )
16245          part { name: "elm.icon.1";
16246             clip_to: "disclip";
16247             type: SWALLOW;
16248             description { state: "default" 0.0;
16249                rel1.relative: 0.021 0.0;
16250                rel2.relative: 0.327 1.0;
16251             }
16252          }
16253          part { name: "elm.icon.2";
16254             clip_to: "disclip";
16255             type: SWALLOW;
16256             description { state: "default" 0.0;
16257                rel1.relative: 0.348 0.0;
16258                rel2.relative: 0.652 1.0;
16259             }
16260          }
16261          part { name: "elm.icon.3";
16262             clip_to: "disclip";
16263             type: SWALLOW;
16264             description { state: "default" 0.0;
16265                rel1.relative: 0.673 0.0;
16266                rel2.relative: 0.979 1.0;
16267             }
16268          }
16269          GENLIST_PART_DISCLIP
16270       }
16271       programs {
16272          // signal: elm,state,%s,active
16273          //   a "check" item named %s went active
16274          // signal: elm,state,%s,passive
16275          //   a "check" item named %s went passive
16276          // default is passive
16277          program { name: "go_disabled";
16278             signal: "elm,state,disabled";
16279             source: "elm";
16280             action: STATE_SET "disabled" 0.0;
16281             target: "disclip";
16282          }
16283          program { name: "go_enabled";
16284             signal: "elm,state,enabled";
16285             source: "elm";
16286             action: STATE_SET "default" 0.0;
16287             target: "disclip";
16288          }
16289       }
16290    }
16291
16292    group { name: "elm/genlist/item/dialogue.3icon.2/default";
16293       alias: "elm/genlist/item_odd/dialogue.3icon.2/default";
16294       alias: "elm/genlist/item_compress/dialogue.3icon.2/default";
16295       alias: "elm/genlist/item_compress_odd/dialogue.3icon.2/default";
16296
16297       data.item: "stacking" "above";
16298       data.item: "selectraise" "on";
16299       data.item: "icons" "elm.icon.1 elm.icon.2 elm.icon.3";
16300
16301       parts {
16302          GENLIST_PART_DIALOGUE_BASE( 56 )
16303          GENLIST_PART_PADDING_LEFT( 10 )
16304          GENLIST_PART_PADDING_RIGHT( 10 )
16305          GENLIST_PART_PADDING_TOP( 10 )
16306          part { name: "elm.icon.1";
16307             clip_to: "disclip";
16308             type: SWALLOW;
16309             description { state: "default" 0.0;
16310                min: 146 0;
16311                fixed: 1 0;
16312                rel1 {
16313                   relative: 0.0 1.0;
16314                   to_x: "elm.padding.right";
16315                   to_y: "elm.padding.top";
16316                }
16317                rel2 {
16318                   relative: 0.0 1.0;
16319                   to_x: "elm.padding.right";
16320                }
16321                align: 1.0 0.5;
16322             }
16323          }
16324          part { name: "elm.padding.icon.1.left";
16325             clip_to: "disclip";
16326             type: RECT;
16327             mouse_events: 0;
16328             scale: 1;
16329             description { state: "default" 0.0;
16330                min: 10 0;
16331                fixed: 1 0;
16332                rel1.to_x: "elm.icon.1";
16333                rel2 {
16334                   relative: 0.0 1.0;
16335                   to_x: "elm.icon.1";
16336                }
16337                visible: 0;
16338                align: 1.0 0.5;
16339             }
16340          }
16341          part { name: "elm.icon.2";
16342             clip_to: "disclip";
16343             type: SWALLOW;
16344             description { state: "default" 0.0;
16345                min: 146 0;
16346                fixed: 1 0;
16347                rel1 {
16348                   relative: 0.0 1.0;
16349                   to_x: "elm.padding.icon.1.left";
16350                   to_y: "elm.padding.top";
16351                }
16352                rel2 {
16353                   relative: 0.0 1.0;
16354                   to_x: "elm.padding.icon.1.left";
16355                }
16356                align: 1.0 0.5;
16357             }
16358          }
16359          part { name: "elm.padding.icon.2.left";
16360             clip_to: "disclip";
16361             type: RECT;
16362             mouse_events: 0;
16363             scale: 1;
16364             description { state: "default" 0.0;
16365                min: 10 0;
16366                fixed: 1 0;
16367                rel1.to_x: "elm.icon.2";
16368                rel2 {
16369                   relative: 0.0 1.0;
16370                   to_x: "elm.icon.2";
16371                }
16372                visible: 0;
16373                align: 1.0 0.5;
16374             }
16375          }
16376          part { name: "elm.icon.3";
16377             clip_to: "disclip";
16378             type: SWALLOW;
16379             description { state: "default" 0.0;
16380                min: 146 0;
16381                fixed: 1 0;
16382                rel1 {
16383                   relative: 0.0 1.0;
16384                   to_x: "elm.padding.icon.2.left";
16385                   to_y: "elm.padding.top";
16386                }
16387                rel2 {
16388                   relative: 0.0 1.0;
16389                   to_x: "elm.padding.icon.2.left";
16390                }
16391                align: 1.0 0.5;
16392             }
16393          }
16394          GENLIST_PART_DISCLIP
16395       }
16396       programs {
16397          // signal: elm,state,%s,active
16398          //   a "check" item named %s went active
16399          // signal: elm,state,%s,passive
16400          //   a "check" item named %s went passive
16401          // default is passive
16402          program { name: "go_disabled";
16403             signal: "elm,state,disabled";
16404             source: "elm";
16405             action: STATE_SET "disabled" 0.0;
16406             target: "disclip";
16407          }
16408          program { name: "go_enabled";
16409             signal: "elm,state,enabled";
16410             source: "elm";
16411             action: STATE_SET "default" 0.0;
16412             target: "disclip";
16413          }
16414       }
16415    }
16416
16417    group { name: "elm/genlist/item/dialogue.1title.1text.2/default";
16418       alias: "elm/genlist/item_odd/dialogue.1title.1text.2/default";
16419       alias: "elm/genlist/item_compress/dialogue.1title.1text.2/default";
16420       alias: "elm/genlist/item_compress_odd/dialogue.1title.1text.2/default";
16421
16422       data.item: "stacking" "above";
16423       data.item: "selectraise" "on";
16424       data.item: "labels" "elm.title elm.text";
16425
16426       images {
16427           image: "00_list_img_check.png" COMP;
16428       }
16429
16430       parts {
16431          GENLIST_PART_BASE( 71 )
16432          GENLIST_PART_BOTTOM_LINE
16433          GENLIST_PART_PADDING_LEFT( 17 )
16434          GENLIST_PART_PADDING_RIGHT( 10 )
16435          GENLIST_PART_DIALOGUE_ITEM
16436          part { name: "vertical_line";
16437             type: RECT;
16438             mouse_events: 0;
16439             description { state: "default" 0.0;
16440                min: 1 0;
16441                fixed: 1 0;
16442                color: GENLIST_PART_BOTTOM_LINE_INC;
16443                rel1 {
16444                   relative: 1.0 0.0;
16445                   to_x: "elm.title";
16446                }
16447                rel2.to_x: "elm.title";
16448                align: 0.0 0.5;
16449             }
16450          }
16451          part { name: "elm.title";
16452             type: TEXT;
16453             mouse_events: 0;
16454             scale: 1;
16455             description { state: "default" 0.0;
16456                min: 102 0;
16457                fixed: 1 0;
16458                rel1 {
16459                   relative: 1.0  0.0;
16460                   to_x: "elm.padding.left";
16461                }
16462                rel2.to_x: "elm.padding.left";
16463                align: 0.0 0.5;
16464                color: GENLIST_PART_MULTILINE_TITLE_COLOR_INC;
16465                text {
16466                   font: "SLP:style=Medium";
16467                   size: 20;
16468                   min: 0 1;
16469                   align: 0.0 0.5;
16470                }
16471             }
16472          }
16473          part { name: "elm.padding.title.right";
16474             type: RECT;
16475             mouse_events: 0;
16476             scale: 1;
16477             description { state: "default" 0.0;
16478                min: 10 0;
16479                fixed: 1 0;
16480                rel1 {
16481                    relative: 1.0 0.0;
16482                    to_x: "vertical_line";
16483                }
16484                rel2.to_x: "vertical_line";
16485                visible: 0;
16486                align: 0.0 0.5;
16487             }
16488          }
16489          part { name: "elm.text";
16490             clip_to: "disclip";
16491             type: TEXT;
16492             mouse_events: 0;
16493             scale: 1;
16494             description { state: "default" 0.0;
16495                rel1 {
16496                   relative: 1.0  0.0;
16497                   to_x: "elm.padding.title.right";
16498                }
16499                rel2.to_x: "elm.padding.title.right";
16500                align: 0.0 0.5;
16501                fixed: 1 1;
16502                color: GENLIST_PART_TEXT_COLOR_INC;
16503                text {
16504                   font: "SLP:style=Roman";
16505                   size: 28;
16506                   min: 1 1;
16507                   max: 1 1;
16508                   align: 0.0 0.5;
16509                }
16510             }
16511             description { state: "selected" 0.0;
16512                inherit: "default" 0.0;
16513                color: 217 147 26 255;
16514             }
16515          }
16516          part { name: "elm.padding.text.right";
16517             type: RECT;
16518             mouse_events: 0;
16519             scale: 1;
16520             description { state: "default" 0.0;
16521                min: 7 0;
16522                fixed: 1 0;
16523                rel1 {
16524                    relative: 1.0 0.0;
16525                    to_x: "elm.text";
16526                }
16527                rel2.to_x: "elm.text";
16528                visible: 0;
16529                align: 0.0 0.5;
16530             }
16531          }
16532          part { name: "elm.image.check";
16533             clip_to: "disclip";
16534             mouse_events: 0;
16535             scale: 1;
16536             description { state: "default" 0.0;
16537                image.normal: "00_list_img_check.png";
16538                rel1 {
16539                   relative: 1.0 0.366;
16540                   to_x: "elm.padding.text.right";
16541                }
16542                rel2 {
16543                   relative: 3.857 0.648;
16544                   to_x: "elm.padding.text.right";
16545                }
16546                visible: 0;
16547             }
16548             description { state: "selected" 0.0;
16549                inherit: "default" 0.0;
16550                visible: 1;
16551             }
16552          }
16553          GENLIST_PART_DISCLIP
16554       }
16555       programs {
16556          // signal: elm,state,%s,active
16557          //   a "check" item named %s went active
16558          // signal: elm,state,%s,passive
16559          //   a "check" item named %s went passive
16560          // default is passive
16561          program { name: "go_active";
16562             signal: "elm,state,selected";
16563             source: "elm";
16564             action: STATE_SET "selected" 0.0;
16565             target: "elm.text";
16566             target: "elm.image.check";
16567          }
16568          program { name: "go_passive";
16569             signal: "elm,state,unselected";
16570             source: "elm";
16571             action: STATE_SET "default" 0.0;
16572             target: "elm.text";
16573             target: "elm.image.check";
16574             transition: LINEAR 0.1;
16575          }
16576          program { name: "go_disabled";
16577             signal: "elm,state,disabled";
16578             source: "elm";
16579             action: STATE_SET "disabled" 0.0;
16580             target: "disclip";
16581          }
16582          program { name: "go_enabled";
16583             signal: "elm,state,enabled";
16584             source: "elm";
16585             action: STATE_SET "default" 0.0;
16586             target: "disclip";
16587          }
16588       }
16589    }
16590
16591    group { name: "elm/genlist/item/dialogue/1title.4text/default";
16592       alias: "elm/genlist/item_odd/dialogue/1title.4text/default";
16593       alias: "elm/genlist/item_compress/dialogue/1title.4text/default";
16594       alias: "elm/genlist/item_compress_odd/dialogue/1title.4text/default";
16595
16596       alias: "elm/genlist/item/dialogue.1title.4text/default";
16597       alias: "elm/genlist/item_odd/dialogue.1title.4text/default";
16598       alias: "elm/genlist/item_compress/dialogue.1title.4text/default";
16599       alias: "elm/genlist/item_compress_odd/dialogue.1title.4text/default";
16600
16601       data.item: "stacking" "above";
16602       data.item: "selectraise" "on";
16603       data.item: "labels" "elm.title elm.text.1 elm.text.2 elm.text.3 elm.text.4";
16604
16605       parts {
16606          GENLIST_PART_BASE( 284 )
16607          GENLIST_PART_BOTTOM_LINE
16608          GENLIST_PART_PADDING_LEFT( 17 )
16609          GENLIST_PART_PADDING_RIGHT( 10 )
16610          GENLIST_PART_DIALOGUE_ITEM
16611          part { name: "vertical_line";
16612             type: RECT;
16613             mouse_events: 0;
16614             description { state: "default" 0.0;
16615                min: 1 0;
16616                fixed: 1 0;
16617                color: GENLIST_PART_BOTTOM_LINE_INC;
16618                rel1 {
16619                   relative: 1.0 0.0;
16620                   to_x: "elm.title";
16621                }
16622                rel2.to_x: "elm.title";
16623                align: 0.0 0.5;
16624             }
16625          }
16626          part { name: "center1_line";
16627             type: RECT;
16628             mouse_events: 0;
16629             description { state: "default" 0.0;
16630                min: 0 1;
16631                fixed: 0 1;
16632                color: GENLIST_PART_BOTTOM_LINE_INC;
16633                rel1 {
16634                   relative: 1.0 0.25;
16635                   to_x: "vertical_line";
16636                }
16637                rel2.relative: 1.0 0.25;
16638                align: 0.5 1.0;
16639             }
16640          }
16641          part { name: "center2_line";
16642             type: RECT;
16643             mouse_events: 0;
16644             description { state: "default" 0.0;
16645                min: 0 1;
16646                fixed: 0 1;
16647                color: GENLIST_PART_BOTTOM_LINE_INC;
16648                rel1 {
16649                   relative: 1.0 0.5;
16650                   to_x: "vertical_line";
16651                }
16652                rel2.relative: 1.0 0.5;
16653                align: 0.5 1.0;
16654             }
16655          }
16656          part { name: "center3_line";
16657             type: RECT;
16658             mouse_events: 0;
16659             description { state: "default" 0.0;
16660                min: 0 1;
16661                fixed: 0 1;
16662                color: GENLIST_PART_BOTTOM_LINE_INC;
16663                rel1 {
16664                   relative: 1.0 0.75;
16665                   to_x: "vertical_line";
16666                }
16667                rel2.relative: 1.0 0.75;
16668                align: 0.5 1.0;
16669             }
16670          }
16671          part { name: "elm.title";
16672             type: TEXT;
16673             mouse_events: 0;
16674             scale: 1;
16675             description { state: "default" 0.0;
16676                min: 102 0;
16677                fixed: 1 0;
16678                rel1 {
16679                   relative: 1.0  0.0;
16680                   to_x: "elm.padding.left";
16681                }
16682                rel2.to_x: "elm.padding.left";
16683                align: 0.0 0.5;
16684                color: GENLIST_PART_MULTILINE_TITLE_COLOR_INC;
16685                text {
16686                   font: "SLP:style=Medium";
16687                   size: 20;
16688                   min: 0 1;
16689                   align: 0.0 0.5;
16690                }
16691             }
16692          }
16693          part { name: "elm.padding.title.right";
16694             type: RECT;
16695             mouse_events: 0;
16696             scale: 1;
16697             description { state: "default" 0.0;
16698                min: 10 0;
16699                fixed: 1 0;
16700                rel1 {
16701                    relative: 1.0 0.0;
16702                    to_x: "elm.title";
16703                }
16704                rel2.to_x: "elm.title";
16705                visible: 0;
16706                align: 0.0 0.5;
16707             }
16708          }
16709          part { name: "elm.text.1";
16710             clip_to: "disclip";
16711             type: TEXT;
16712             mouse_events: 0;
16713             scale: 1;
16714             description { state: "default" 0.0;
16715                rel1 {
16716                   relative: 1.0 0.0;
16717                   to_x: "elm.padding.title.right";
16718                }
16719                rel2 {
16720                   relative: 0.0 0.0;
16721                   to_x: "elm.padding.right";
16722                   to_y: "center1_line";
16723                }
16724                color: GENLIST_PART_TEXT_COLOR_INC;
16725                text {
16726                   font: "SLP:style=Roman";
16727                   size: 28;
16728                   min: 0 1;
16729                   align: 0.0 0.5;
16730                }
16731             }
16732          }
16733          part { name: "elm.text.2";
16734             clip_to: "disclip";
16735             type: TEXT;
16736             mouse_events: 0;
16737             scale: 1;
16738             description { state: "default" 0.0;
16739                rel1 {
16740                   relative: 1.0 0.25;
16741                   to_x: "elm.padding.title.right";
16742                }
16743                rel2 {
16744                   relative: 0.0 0.0;
16745                   to_x: "elm.padding.right";
16746                   to_y: "center2_line";
16747                }
16748                color: GENLIST_PART_TEXT_COLOR_INC;
16749                text {
16750                   font: "SLP:style=Roman";
16751                   size: 28;
16752                   min: 0 1;
16753                   align: 0.0 0.5;
16754                }
16755             }
16756          }
16757          part { name: "elm.text.3";
16758             clip_to: "disclip";
16759             type: TEXT;
16760             mouse_events: 0;
16761             scale: 1;
16762             description { state: "default" 0.0;
16763                rel1 {
16764                   relative: 1.0  0.5;
16765                   to_x: "elm.padding.title.right";
16766                }
16767                rel2 {
16768                   relative: 0.0 0.0;
16769                   to_x: "elm.padding.right";
16770                   to_y: "center3_line";
16771                }
16772                color: GENLIST_PART_TEXT_COLOR_INC;
16773                text {
16774                   font: "SLP:style=Roman";
16775                   size: 28;
16776                   min: 0 1;
16777                   align: 0.0 0.5;
16778                }
16779             }
16780          }
16781          part { name: "elm.text.4";
16782             clip_to: "disclip";
16783             type: TEXT;
16784             mouse_events: 0;
16785             scale: 1;
16786             description { state: "default" 0.0;
16787                rel1 {
16788                   relative: 1.0  0.75;
16789                   to_x: "elm.padding.title.right";
16790                }
16791                rel2 {
16792                   relative: 0.0 0.0;
16793                   to_x: "elm.padding.right";
16794                   to_y: "bottom_line";
16795                }
16796                color: GENLIST_PART_TEXT_COLOR_INC;
16797                text {
16798                   font: "SLP:style=Roman";
16799                   size: 28;
16800                   min: 0 1;
16801                   align: 0.0 0.5;
16802                }
16803             }
16804          }
16805          GENLIST_PART_DISCLIP
16806       }
16807       programs {
16808          // signal: elm,state,%s,active
16809          //   a "check" item named %s went active
16810          // signal: elm,state,%s,passive
16811          //   a "check" item named %s went passive
16812          // default is passive
16813          /*program { name: "go_active";
16814             signal: "elm,state,selected";
16815             source: "elm";
16816             action: STATE_SET "selected" 0.0;
16817             target: "elm.text";
16818          }
16819          program { name: "go_passive";
16820             signal: "elm,state,unselected";
16821             source: "elm";
16822             action: STATE_SET "default" 0.0;
16823             target: "elm.text";
16824             transition: LINEAR 0.1;
16825          }*/
16826          program { name: "go_disabled";
16827             signal: "elm,state,disabled";
16828             source: "elm";
16829             action: STATE_SET "disabled" 0.0;
16830             target: "disclip";
16831          }
16832          program { name: "go_enabled";
16833             signal: "elm,state,enabled";
16834             source: "elm";
16835             action: STATE_SET "default" 0.0;
16836             target: "disclip";
16837          }
16838       }
16839    }
16840
16841    group { name: "elm/genlist/item/dialogue/1title.5text/default";
16842       alias: "elm/genlist/item_odd/dialogue/1title.5text/default";
16843       alias: "elm/genlist/item_compress/dialogue/1title.5text/default";
16844       alias: "elm/genlist/item_compress_odd/dialogue/1title.5text/default";
16845
16846       data.item: "stacking" "above";
16847       data.item: "selectraise" "on";
16848       data.item: "labels" "elm.title elm.text.1 elm.text.2 elm.text.3 elm.text.4 elm.text.5";
16849       data.item: "renames" "elm.edit.rename.title elm.edit.rename.1 elm.edit.rename.2 elm.edit.rename.3 elm.edit.rename.4 elm.edit.rename.5";
16850
16851       parts {
16852          GENLIST_PART_BASE( 354 )
16853          GENLIST_PART_BOTTOM_LINE
16854          GENLIST_PART_PADDING_LEFT( 17 )
16855          GENLIST_PART_PADDING_RIGHT( 10 )
16856          GENLIST_PART_DIALOGUE_ITEM
16857          part { name: "vertical_line";
16858             type: RECT;
16859             mouse_events: 0;
16860             description { state: "default" 0.0;
16861                min: 1 0;
16862                fixed: 1 0;
16863                color: GENLIST_PART_BOTTOM_LINE_INC;
16864                rel1 {
16865                   relative: 1.0 0.0;
16866                   to_x: "elm.title";
16867                }
16868                rel2.to_x: "elm.title";
16869                align: 0.0 0.5;
16870             }
16871          }
16872          part { name: "center1_line";
16873             type: RECT;
16874             mouse_events: 0;
16875             description { state: "default" 0.0;
16876                min: 0 1;
16877                fixed: 0 1;
16878                color: GENLIST_PART_BOTTOM_LINE_INC;
16879                rel1 {
16880                   relative: 1.0 0.2;
16881                   to_x: "vertical_line";
16882                }
16883                rel2.relative: 1.0 0.2;
16884                align: 0.5 1.0;
16885             }
16886          }
16887          part { name: "center2_line";
16888             type: RECT;
16889             mouse_events: 0;
16890             description { state: "default" 0.0;
16891                min: 0 1;
16892                fixed: 0 1;
16893                color: GENLIST_PART_BOTTOM_LINE_INC;
16894                rel1 {
16895                   relative: 1.0 0.4;
16896                   to_x: "vertical_line";
16897                }
16898                rel2.relative: 1.0 0.4;
16899                align: 0.5 1.0;
16900             }
16901          }
16902          part { name: "center3_line";
16903             type: RECT;
16904             mouse_events: 0;
16905             description { state: "default" 0.0;
16906                min: 0 1;
16907                fixed: 0 1;
16908                color: GENLIST_PART_BOTTOM_LINE_INC;
16909                rel1 {
16910                   relative: 1.0 0.6;
16911                   to_x: "vertical_line";
16912                }
16913                rel2.relative: 1.0 0.6;
16914                align: 0.5 1.0;
16915             }
16916          }
16917          part { name: "center4_line";
16918             type: RECT;
16919             mouse_events: 0;
16920             description { state: "default" 0.0;
16921                min: 0 1;
16922                fixed: 0 1;
16923                color: GENLIST_PART_BOTTOM_LINE_INC;
16924                rel1 {
16925                   relative: 1.0 0.8;
16926                   to_x: "vertical_line";
16927                }
16928                rel2.relative: 1.0 0.8;
16929                align: 0.5 1.0;
16930             }
16931          }
16932          part { name: "elm.title";
16933             type: TEXT;
16934             mouse_events: 0;
16935             scale: 1;
16936             description { state: "default" 0.0;
16937                min: 102 0;
16938                fixed: 1 0;
16939                rel1 {
16940                   relative: 1.0  0.0;
16941                   to_x: "elm.padding.left";
16942                }
16943                rel2.to_x: "elm.padding.left";
16944                align: 0.0 0.5;
16945                color: GENLIST_PART_MULTILINE_TITLE_COLOR_INC;
16946                text {
16947                   font: "SLP:style=Medium";
16948                   size: 20;
16949                   min: 0 1;
16950                   align: 0.0 0.5;
16951                }
16952             }
16953             GENLIST_DESCRIPTION_RENAME_ENABLED
16954          }
16955          part { name: "elm.edit.rename.title";
16956             clip_to: "disclip";
16957             type: SWALLOW;
16958             description { state: "default" 0.0;
16959                visible: 0;
16960                fixed: 1 1;
16961                rel1.to: "elm.title";
16962                rel2.to: "elm.title";
16963             }
16964             description { state: "rename_enabled" 0.0;
16965                inherit: "default" 0.0;
16966                visible: 1;
16967             }
16968          }
16969          part { name: "elm.padding.title.right";
16970             type: RECT;
16971             mouse_events: 0;
16972             scale: 1;
16973             description { state: "default" 0.0;
16974                min: 10 0;
16975                fixed: 1 0;
16976                rel1 {
16977                    relative: 1.0 0.0;
16978                    to_x: "elm.title";
16979                }
16980                rel2.to_x: "elm.title";
16981                visible: 0;
16982                align: 0.0 0.5;
16983             }
16984          }
16985          part { name: "elm.text.1";
16986             clip_to: "disclip";
16987             type: TEXT;
16988             mouse_events: 0;
16989             scale: 1;
16990             description { state: "default" 0.0;
16991                rel1 {
16992                   relative: 1.0 0.0;
16993                   to_x: "elm.padding.title.right";
16994                }
16995                rel2 {
16996                   relative: 0.0 0.0;
16997                   to_x: "elm.padding.right";
16998                   to_y: "center1_line";
16999                }
17000                color: GENLIST_PART_TEXT_COLOR_INC;
17001                text {
17002                   font: "SLP:style=Roman";
17003                   size: 28;
17004                   min: 0 1;
17005                   align: 0.0 0.5;
17006                }
17007             }
17008             GENLIST_DESCRIPTION_RENAME_ENABLED
17009          }
17010          part { name: "elm.edit.rename.1";
17011             clip_to: "disclip";
17012             type: SWALLOW;
17013             description { state: "default" 0.0;
17014                visible: 0;
17015                fixed: 1 1;
17016                rel1.to: "elm.text.1";
17017                rel2.to: "elm.text.1";
17018             }
17019             description { state: "rename_enabled" 0.0;
17020                inherit: "default" 0.0;
17021                visible: 1;
17022             }
17023          }
17024          part { name: "elm.text.2";
17025             clip_to: "disclip";
17026             type: TEXT;
17027             mouse_events: 0;
17028             scale: 1;
17029             description { state: "default" 0.0;
17030                rel1 {
17031                   relative: 1.0 0.2;
17032                   to_x: "elm.padding.title.right";
17033                }
17034                rel2 {
17035                   relative: 0.0 0.0;
17036                   to_x: "elm.padding.right";
17037                   to_y: "center2_line";
17038                }
17039                color: GENLIST_PART_TEXT_COLOR_INC;
17040                text {
17041                   font: "SLP:style=Roman";
17042                   size: 28;
17043                   min: 0 1;
17044                   align: 0.0 0.5;
17045                }
17046             }
17047             GENLIST_DESCRIPTION_RENAME_ENABLED
17048          }
17049          part { name: "elm.edit.rename.2";
17050             clip_to: "disclip";
17051             type: SWALLOW;
17052             description { state: "default" 0.0;
17053                visible: 0;
17054                fixed: 1 1;
17055                rel1.to: "elm.text.2";
17056                rel2.to: "elm.text.2";
17057             }
17058             description { state: "rename_enabled" 0.0;
17059                inherit: "default" 0.0;
17060                visible: 1;
17061             }
17062          }
17063          part { name: "elm.text.3";
17064             clip_to: "disclip";
17065             type: TEXT;
17066             mouse_events: 0;
17067             scale: 1;
17068             description { state: "default" 0.0;
17069                rel1 {
17070                   relative: 1.0  0.4;
17071                   to_x: "elm.padding.title.right";
17072                }
17073                rel2 {
17074                   relative: 0.0 0.0;
17075                   to_x: "elm.padding.right";
17076                   to_y: "center3_line";
17077                }
17078                color: GENLIST_PART_TEXT_COLOR_INC;
17079                text {
17080                   font: "SLP:style=Roman";
17081                   size: 28;
17082                   min: 0 1;
17083                   align: 0.0 0.5;
17084                }
17085             }
17086             GENLIST_DESCRIPTION_RENAME_ENABLED
17087          }
17088          part { name: "elm.edit.rename.3";
17089             clip_to: "disclip";
17090             type: SWALLOW;
17091             description { state: "default" 0.0;
17092                visible: 0;
17093                fixed: 1 1;
17094                rel1.to: "elm.text.3";
17095                rel2.to: "elm.text.3";
17096             }
17097             description { state: "rename_enabled" 0.0;
17098                inherit: "default" 0.0;
17099                visible: 1;
17100             }
17101          }
17102          part { name: "elm.text.4";
17103             clip_to: "disclip";
17104             type: TEXT;
17105             mouse_events: 0;
17106             scale: 1;
17107             description { state: "default" 0.0;
17108                rel1 {
17109                   relative: 1.0 0.6;
17110                   to_x: "elm.padding.title.right";
17111                }
17112                rel2 {
17113                   relative: 0.0 0.0;
17114                   to_x: "elm.padding.right";
17115                   to_y: "center4_line";
17116                }
17117                color: GENLIST_PART_TEXT_COLOR_INC;
17118                text {
17119                   font: "SLP:style=Roman";
17120                   size: 28;
17121                   min: 0 1;
17122                   align: 0.0 0.5;
17123                }
17124             }
17125             GENLIST_DESCRIPTION_RENAME_ENABLED
17126          }
17127          part { name: "elm.edit.rename.4";
17128             clip_to: "disclip";
17129             type: SWALLOW;
17130             description { state: "default" 0.0;
17131                visible: 0;
17132                fixed: 1 1;
17133                rel1.to: "elm.text.4";
17134                rel2.to: "elm.text.4";
17135             }
17136             description { state: "rename_enabled" 0.0;
17137                inherit: "default" 0.0;
17138                visible: 1;
17139             }
17140          }
17141          part { name: "elm.text.5";
17142             clip_to: "disclip";
17143             type: TEXT;
17144             mouse_events: 0;
17145             scale: 1;
17146             description { state: "default" 0.0;
17147                rel1 {
17148                   relative: 1.0  0.8;
17149                   to_x: "elm.padding.title.right";
17150                }
17151                rel2 {
17152                   relative: 0.0 0.0;
17153                   to_x: "elm.padding.right";
17154                   to_y: "bottom_line";
17155                }
17156                color: GENLIST_PART_TEXT_COLOR_INC;
17157                text {
17158                   font: "SLP:style=Roman";
17159                   size: 28;
17160                   min: 0 1;
17161                   align: 0.0 0.5;
17162                }
17163             }
17164             GENLIST_DESCRIPTION_RENAME_ENABLED
17165          }
17166          part { name: "elm.edit.rename.5";
17167             clip_to: "disclip";
17168             type: SWALLOW;
17169             description { state: "default" 0.0;
17170                visible: 0;
17171                fixed: 1 1;
17172                rel1.to: "elm.text.5";
17173                rel2.to: "elm.text.5";
17174             }
17175             description { state: "rename_enabled" 0.0;
17176                inherit: "default" 0.0;
17177                visible: 1;
17178             }
17179          }
17180          GENLIST_PART_DISCLIP
17181       }
17182       programs {
17183          // signal: elm,state,%s,active
17184          //   a "check" item named %s went active
17185          // signal: elm,state,%s,passive
17186          //   a "check" item named %s went passive
17187          // default is passive
17188          /*program { name: "go_active";
17189             signal: "elm,state,selected";
17190             source: "elm";
17191             action: STATE_SET "selected" 0.0;
17192             target: "elm.text";
17193          }
17194          program { name: "go_passive";
17195             signal: "elm,state,unselected";
17196             source: "elm";
17197             action: STATE_SET "default" 0.0;
17198             target: "elm.text";
17199             transition: LINEAR 0.1;
17200          }*/
17201          program { name: "go_disabled";
17202             signal: "elm,state,disabled";
17203             source: "elm";
17204             action: STATE_SET "disabled" 0.0;
17205             target: "disclip";
17206          }
17207          program { name: "go_enabled";
17208             signal: "elm,state,enabled";
17209             source: "elm";
17210             action: STATE_SET "default" 0.0;
17211             target: "disclip";
17212          }
17213          program { name: "rename_enabled";
17214             signal: "elm,state,rename,enabled";
17215             source: "elm";
17216             action: STATE_SET "rename_enabled" 0.0;
17217             target: "elm.title";
17218             target: "elm.text.1";
17219             target: "elm.text.2";
17220             target: "elm.text.3";
17221             target: "elm.text.4";
17222             target: "elm.text.5";
17223             target: "elm.edit.rename.title";
17224             target: "elm.edit.rename.1";
17225             target: "elm.edit.rename.2";
17226             target: "elm.edit.rename.3";
17227             target: "elm.edit.rename.4";
17228             target: "elm.edit.rename.5";
17229          }
17230          program { name: "rename_disabled";
17231             signal: "elm,state,rename,disabled";
17232             source: "elm";
17233             action: STATE_SET "default" 0.0;
17234             target: "elm.title";
17235             target: "elm.text.1";
17236             target: "elm.text.2";
17237             target: "elm.text.3";
17238             target: "elm.text.4";
17239             target: "elm.text.5";
17240             target: "elm.edit.rename.title";
17241             target: "elm.edit.rename.1";
17242             target: "elm.edit.rename.2";
17243             target: "elm.edit.rename.3";
17244             target: "elm.edit.rename.4";
17245             target: "elm.edit.rename.5";
17246          }
17247       }
17248    }
17249
17250 /* extended item of bg/2text.1icon.3 */
17251    group { name: "elm/genlist/item/dialogue/bg/1text/default";
17252       alias: "elm/genlist/item_odd/dialogue/bg/1text/default";
17253       alias: "elm/genlist/item_compress/dialogue/bg/1text/default";
17254       alias: "elm/genlist/item_compress_odd/dialogue/bg/1text/default";
17255       data.item: "stacking" "above";
17256       data.item: "selectraise" "on";
17257       data.item: "labels" "elm.text";
17258       data.item: "renames" "elm.edit.rename";
17259       parts {
17260          GENLIST_PART_DIALOGUE_BASE( 71 )
17261          GENLIST_PART_PADDING_TOP( 0 )
17262          GENLIST_PART_PADDING_BOTTOM( 0 )
17263          GENLIST_PART_PADDING_LEFT( 10 )
17264          GENLIST_PART_PADDING_RIGHT( 10 )
17265          part { name: "elm.icon.bg";
17266             type: RECT;
17267             scale: 1;
17268             description { state: "default" 0.0;
17269                min: 100 0;
17270                fixed: 1 0;
17271                align: 0.0 0.5;
17272                rel1 {
17273                   relative: 1.0 0.5;
17274                   to_x: "elm.padding.left";
17275                }
17276                rel2 {
17277                   relative: 1.0 0.5;
17278                   to_x: "elm.padding.left";
17279                }
17280                color: 0 0 0 0;
17281             }
17282          }
17283          part { name: "elm.padding.icon.right";
17284             type: RECT;
17285             mouse_events: 0;
17286             scale: 1;
17287             description { state: "default" 0.0;
17288                min: 11 0;
17289                fixed: 1 0;
17290                rel1 {
17291                    relative: 1.0 0.0;
17292                    to_x: "elm.icon.bg";
17293                }
17294                rel2.to_x: "elm.icon.bg";
17295                color: GENLIST_PART_BOTTOM_LINE_INC;
17296                align: 0.0 0.5;
17297             }
17298          }
17299          part { name: "elm.padding.text.left";
17300             type: RECT;
17301             mouse_events: 0;
17302             scale: 1;
17303             description { state: "default" 0.0;
17304                min: 10 0;
17305                fixed: 1 0;
17306                rel1 {
17307                    relative: 1.0 1.0;
17308                    to_x: "elm.padding.icon.right";
17309                    to_y: "elm.padding.top";
17310                }
17311                rel2.to_x: "elm.padding.icon.right";
17312                visible: 0;
17313                align: 0.0 0.5;
17314             }
17315          }
17316          part { name: "vertical_line";
17317             type: RECT;
17318             mouse_events: 0;
17319             description { state: "default" 0.0;
17320                min: 1 0;
17321                fixed: 1 0;
17322                rel1 {
17323                   relative: 1.0 0.0;
17324                   to_x: "elm.padding.icon.right";
17325                }
17326                rel2.to_x: "elm.padding.icon.right";
17327                align: 0.0 0.5;
17328                color: GENLIST_PART_BOTTOM_LINE_INC;
17329             }
17330          }
17331          part { name: "elm.text.bg";
17332             clip_to: "disclip";
17333             type: RECT;
17334             mouse_events: 0;
17335             scale: 1;
17336             description { state: "default" 0.0;
17337                rel1 {
17338                   relative: 1.0 0.0;
17339                   to_x: "elm.padding.icon.right";
17340                }
17341                rel2 {
17342                   relative: 1.0 1.0;
17343                   to_x: "elm.padding.right";
17344                }
17345                color: GENLIST_PART_BG_COLOR_INC;
17346             }
17347          }
17348          part { name: "elm.text";
17349             clip_to: "disclip";
17350             type: TEXT;
17351             mouse_events: 0;
17352             scale: 1;
17353             description { state: "default" 0.0;
17354                rel1 {
17355                   relative: 1.0 0.0;
17356                   to_x: "elm.padding.text.left";
17357                   to_y: "elm.text.bg";
17358                }
17359                rel2 {
17360                   relative: 0.0 1.0;
17361                   to_x: "elm.padding.right";
17362                   to_y: "elm.text.bg";
17363                }
17364                color: GENLIST_PART_TEXT_COLOR_INC;
17365                text {
17366                   font: "SLP:style=Roman";
17367                   size: 28;
17368                   min: 0 1;
17369                   align: 0.0 0.5;
17370                }
17371             }
17372             GENLIST_DESCRIPTION_RENAME_ENABLED
17373          }
17374          part { name: "elm.edit.rename";
17375             clip_to: "disclip";
17376             type: SWALLOW;
17377             mouse_events: 1;
17378             scale: 1;
17379             description { state: "default" 0.0;
17380                fixed: 1 1;
17381                rel1 {
17382                   relative: 1.0 0.0;
17383                   to_x: "elm.padding.text.left";
17384                   to_y: "elm.text.bg";
17385                }
17386                rel2 {
17387                   relative: 0.0 1.0;
17388                   to_x: "elm.padding.right";
17389                   to_y: "elm.text.bg";
17390                }
17391                visible: 0;
17392             }
17393             description { state: "rename_enabled" 0.0;
17394                inherit: "default" 0.0;
17395                visible: 1;
17396             }
17397          }
17398          GENLIST_PART_DISCLIP
17399       }
17400       programs {
17401          // signal: elm,state,%s,active
17402          //   a "check" item named %s went active
17403          // signal: elm,state,%s,passive
17404          //   a "check" item named %s went passive
17405          // default is passive
17406          /*program { name: "go_active";
17407             signal: "elm,state,selected";
17408             source: "elm";
17409             action: STATE_SET "selected" 0.0;
17410             target: "elm.text";
17411          }
17412          program { name: "go_passive";
17413             signal: "elm,state,unselected";
17414             source: "elm";
17415             action: STATE_SET "default" 0.0;
17416             target: "elm.text";
17417             transition: LINEAR 0.1;
17418          }*/
17419          program { name: "go_disabled";
17420             signal: "elm,state,disabled";
17421             source: "elm";
17422             action: STATE_SET "disabled" 0.0;
17423             target: "disclip";
17424          }
17425          program { name: "go_enabled";
17426             signal: "elm,state,enabled";
17427             source: "elm";
17428             action: STATE_SET "default" 0.0;
17429             target: "disclip";
17430          }
17431          program { name: "rename_enabled";
17432             signal: "elm,state,rename,enabled";
17433             source: "elm";
17434             action: STATE_SET "rename_enabled" 0.0;
17435             target: "elm.text";
17436             target: "elm.edit.rename";
17437          }
17438          program { name: "rename_disabled";
17439             signal: "elm,state,rename,disabled";
17440             source: "elm";
17441             action: STATE_SET "default" 0.0;
17442             target: "elm.text";
17443             target: "elm.edit.rename";
17444          }
17445       }
17446    }
17447
17448    group { name: "elm/genlist/item/dialogue/bg/2text.1icon.2/default";
17449       alias: "elm/genlist/item_odd/dialogue/bg/2text.1icon.2/default";
17450       alias: "elm/genlist/item_compress/dialogue/bg/2text.1icon.2/default";
17451       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.1icon.2/default";
17452       alias: "elm/genlist/item/dialogue.2text.1icon.2/default";
17453       alias: "elm/genlist/item_odd/dialogue.2text.1icon.2/default";
17454       alias: "elm/genlist/item_compress/dialogue.2text.1icon.2/default";
17455       alias: "elm/genlist/item_compress_odd/dialogue.2text.1icon.2/default";
17456       data.item: "stacking" "above";
17457       data.item: "selectraise" "on";
17458       data.item: "labels" "elm.text.1 elm.text.2";
17459       data.item: "icons" "elm.icon";
17460       data.item: "renames" "elm.edit.rename.1 elm.edit.rename.2";
17461       images {
17462           image: "00_list_thumbnail_bg.png" COMP;
17463       }
17464       parts {
17465          GENLIST_PART_DIALOGUE_BASE( 182 )
17466          GENLIST_PART_PADDING_TOP( 20 )
17467          GENLIST_PART_PADDING_BOTTOM( 20 )
17468          GENLIST_PART_PADDING_LEFT( 10 )
17469          GENLIST_PART_PADDING_RIGHT( 10 )
17470          part { name: "elm.icon.bg";
17471             scale: 1;
17472             description { state: "default" 0.0;
17473                min: 90 90;
17474                fixed: 1 1;
17475                align: 0.0 0.8;
17476                rel1 {
17477                   relative: 1.0 0.5;
17478                   to_x: "elm.padding.left";
17479                }
17480                rel2 {
17481                   relative: 1.0 0.5;
17482                   to_x: "elm.padding.left";
17483                }
17484                image {
17485                   normal: "00_list_thumbnail_bg.png";
17486                   border: 1 1 1 1;
17487                   border_scale: 1;
17488                   middle: NONE;
17489                }
17490             }
17491          }
17492          part { name: "elm.icon";
17493             type: SWALLOW;
17494             description { state: "default" 0.0;
17495                rel1.to: "elm.icon.bg";
17496                rel2.to: "elm.icon.bg";
17497             }
17498          }
17499          part { name: "elm.padding.icon.right";
17500             type: RECT;
17501             mouse_events: 0;
17502             scale: 1;
17503             description { state: "default" 0.0;
17504                min: 10 0;
17505                fixed: 1 0;
17506                rel1 {
17507                    relative: 1.0 0.0;
17508                    to_x: "elm.icon.bg";
17509                }
17510                rel2.to_x: "elm.icon.bg";
17511                visible: 0;
17512                align: 0.0 0.5;
17513             }
17514          }
17515          part { name: "elm.padding.text.left";
17516             type: RECT;
17517             mouse_events: 0;
17518             scale: 1;
17519             description { state: "default" 0.0;
17520                min: 10 0;
17521                fixed: 1 0;
17522                rel1 {
17523                    relative: 1.0 1.0;
17524                    to_x: "elm.padding.icon.right";
17525                    to_y: "elm.padding.top";
17526                }
17527                rel2.to_x: "elm.padding.icon.right";
17528                visible: 0;
17529                align: 1.0 0.5;
17530             }
17531          }
17532          part { name: "vertical_line";
17533             type: RECT;
17534             mouse_events: 0;
17535             description { state: "default" 0.0;
17536                min: 1 0;
17537                fixed: 1 0;
17538                color: GENLIST_PART_BOTTOM_LINE_INC;
17539                rel1 {
17540                   relative: 1.0 1.0;
17541                   to_x: "elm.padding.text.left";
17542                   to_y: "elm.padding.top";
17543                }
17544                rel2 {
17545                   relative: 1.0 0.0;
17546                   to_x: "elm.padding.text.left";
17547                   to_y: "elm.padding.bottom";
17548                }
17549                align: 0.0 0.5;
17550             }
17551          }
17552          part { name: "text_vertical_rect";
17553             type: RECT;
17554             mouse_events: 0;
17555             description { state: "default" 0.0;
17556                min: 10 0;
17557                fixed: 1 0;
17558                color: GENLIST_PART_DIALOGUE_INDICATOR_BG_COLOR_INC;
17559                rel1 {
17560                   relative: 1.0 1.0;
17561                   to_x: "vertical_line";
17562                   to_y: "elm.padding.top";
17563                }
17564                rel2 {
17565                   relative: 1.0 0.0;
17566                   to_x: "elm.padding.text.left";
17567                   to_y: "elm.padding.bottom";
17568                }
17569                align: 0.0 0.5;
17570             }
17571          }
17572          part { name: "elm.padding.text.right";
17573             type: RECT;
17574             mouse_events: 0;
17575             scale: 1;
17576             description { state: "default" 0.0;
17577                min: 10 0;
17578                fixed: 1 0;
17579                rel1 {
17580                    relative: 1.0 0.0;
17581                    to_x: "text_vertical_rect";
17582                }
17583                rel2.to_x: "text_vertical_rect";
17584                visible: 0;
17585                align: 0.0 0.5;
17586             }
17587          }
17588          part { name: "text_top_line";
17589             type: RECT;
17590             mouse_events: 0;
17591             description { state: "default" 0.0;
17592                min: 0 1;
17593                fixed: 0 1;
17594                color: GENLIST_PART_BOTTOM_LINE_INC;
17595                rel1 {
17596                   relative: 1.0 0.0;
17597                   to_x: "text_vertical_rect";
17598                   to_y: "text_vertical_rect";
17599                }
17600                rel2 {
17601                   relative: 1.0 0.0;
17602                   to_y: "text_vertical_rect";
17603                }
17604                align: 0.0 0.0;
17605             }
17606          }
17607          part { name: "text_center_line";
17608             type: RECT;
17609             mouse_events: 0;
17610             description { state: "default" 0.0;
17611                min: 0 1;
17612                fixed: 0 1;
17613                color: GENLIST_PART_BOTTOM_LINE_INC;
17614                rel1 {
17615                   relative: 1.0 0.5;
17616                   to_x: "text_vertical_rect";
17617                }
17618                rel2.relative: 1.0 0.5;
17619                align: 0.5 0.5;
17620             }
17621          }
17622          part { name: "text_bottom_line";
17623             type: RECT;
17624             mouse_events: 0;
17625             description { state: "default" 0.0;
17626                min: 0 1;
17627                fixed: 0 1;
17628                color: GENLIST_PART_BOTTOM_LINE_INC;
17629                rel1 {
17630                   relative: 1.0 1.0;
17631                   to_x: "text_vertical_rect";
17632                   to_y: "text_vertical_rect";
17633                }
17634                rel2 {
17635                   relative: 1.0 1.0;
17636                   to_y: "text_vertical_rect";
17637                }
17638                align: 0.0 1.0;
17639             }
17640          }
17641          part { name: "elm.text.bg.1";
17642             clip_to: "disclip";
17643             type: RECT;
17644             mouse_events: 0;
17645             scale: 1;
17646             description { state: "default" 0.0;
17647                rel1 {
17648                   relative: 1.0 1.0;
17649                   to_x: "text_vertical_rect";
17650                   to_y: "text_top_line";
17651                }
17652                rel2 {
17653                   relative: 1.0 0.0;
17654                   to_x: "elm.padding.right";
17655                   to_y: "text_center_line";
17656                }
17657                color: GENLIST_PART_BG_COLOR_INC;
17658             }
17659          }
17660          part { name: "elm.text.1";
17661             type: TEXT;
17662             mouse_events: 0;
17663             scale: 1;
17664             description { state: "default" 0.0;
17665                min: 0 34;
17666                rel1 {
17667                   relative: 1.0 0.0;
17668                   to_x: "elm.padding.text.right";
17669                   to_y: "elm.text.bg.1";
17670                }
17671                rel2 {
17672                   relative: 0.0 1.0;
17673                   to_x: "elm.padding.right";
17674                   to_y: "elm.text.bg.1";
17675                }
17676                color: GENLIST_PART_TEXT_COLOR_INC;
17677                text {
17678                   font: "SLP:style=Regular";
17679                   size: 30;
17680                   align: 0.0 0.5;
17681                }
17682             }
17683             GENLIST_DESCRIPTION_RENAME_ENABLED
17684          }
17685          part { name: "elm.edit.rename.1";
17686             clip_to: "disclip";
17687             type: SWALLOW;
17688             description { state: "default" 0.0;
17689                visible: 0;
17690                fixed: 1 1;
17691                rel1.to: "elm.text.1";
17692                rel2.to: "elm.text.1";
17693             }
17694             description { state: "rename_enabled" 0.0;
17695                inherit: "default" 0.0;
17696                visible: 1;
17697             }
17698          }
17699          part { name: "elm.text.bg.2";
17700             clip_to: "disclip";
17701             type: RECT;
17702             mouse_events: 0;
17703             scale: 1;
17704             description { state: "default" 0.0;
17705                rel1 {
17706                   relative: 1.0 1.0;
17707                   to_x: "text_vertical_rect";
17708                   to_y: "text_center_line";
17709                }
17710                rel2 {
17711                   relative: 1.0 0.0;
17712                   to_x: "elm.padding.right";
17713                   to_y: "text_bottom_line";
17714                }
17715                color: GENLIST_PART_BG_COLOR_INC;
17716             }
17717          }
17718          part { name: "elm.text.2";
17719             clip_to: "disclip";
17720             type: TEXT;
17721             mouse_events: 0;
17722             scale: 1;
17723             description { state: "default" 0.0;
17724                min: 0 34;
17725                rel1 {
17726                   relative: 1.0 0.0;
17727                   to_x: "elm.padding.text.right";
17728                   to_y: "elm.text.bg.2";
17729                }
17730                rel2 {
17731                   relative: 0.0 1.0;
17732                   to_x: "elm.padding.right";
17733                   to_y: "elm.text.bg.2";
17734                }
17735                color: GENLIST_PART_TEXT_COLOR_INC;
17736                text {
17737                   font: "SLP:style=Regular";
17738                   size: 30;
17739                   align: 0.0 0.5;
17740                }
17741             }
17742             GENLIST_DESCRIPTION_RENAME_ENABLED
17743          }
17744          part { name: "elm.edit.rename.2";
17745             clip_to: "disclip";
17746             type: SWALLOW;
17747             description { state: "default" 0.0;
17748                visible: 0;
17749                fixed: 1 1;
17750                rel1.to: "elm.text.2";
17751                rel2.to: "elm.text.2";
17752             }
17753             description { state: "rename_enabled" 0.0;
17754                inherit: "default" 0.0;
17755                visible: 1;
17756             }
17757          }
17758          GENLIST_PART_DISCLIP
17759       }
17760       programs {
17761          // signal: elm,state,%s,active
17762          //   a "check" item named %s went active
17763          // signal: elm,state,%s,passive
17764          //   a "check" item named %s went passive
17765          // default is passive
17766          /*program { name: "go_active";
17767             signal: "elm,state,selected";
17768             source: "elm";
17769             action: STATE_SET "selected" 0.0;
17770             target: "elm.text";
17771             target: "elm.text.sub";
17772          }
17773          program { name: "go_passive";
17774             signal: "elm,state,unselected";
17775             source: "elm";
17776             action: STATE_SET "default" 0.0;
17777             target: "elm.text";
17778             target: "elm.text.sub";
17779             transition: LINEAR 0.1;
17780          }*/
17781          program { name: "go_disabled";
17782             signal: "elm,state,disabled";
17783             source: "elm";
17784             action: STATE_SET "disabled" 0.0;
17785             target: "disclip";
17786          }
17787          program { name: "go_enabled";
17788             signal: "elm,state,enabled";
17789             source: "elm";
17790             action: STATE_SET "default" 0.0;
17791             target: "disclip";
17792          }
17793          program { name: "rename_enabled";
17794             signal: "elm,state,rename,enabled";
17795             source: "elm";
17796             action: STATE_SET "rename_enabled" 0.0;
17797             target: "elm.text.1";
17798             target: "elm.text.2";
17799             target: "elm.edit.rename.1";
17800             target: "elm.edit.rename.2";
17801          }
17802          program { name: "rename_disabled";
17803             signal: "elm,state,rename,disabled";
17804             source: "elm";
17805             action: STATE_SET "default" 0.0;
17806             target: "elm.text.1";
17807             target: "elm.text.2";
17808             target: "elm.edit.rename.1";
17809             target: "elm.edit.rename.2";
17810          }
17811       }
17812    }
17813
17814 /* non-bottom-border-area version of 2text.1icon.2 */
17815    group { name: "elm/genlist/item/dialogue/bg/2text.1icon.3/default";
17816       alias: "elm/genlist/item_odd/dialogue/bg/2text.1icon.3/default";
17817       alias: "elm/genlist/item_compress/dialogue/bg/2text.1icon.3/default";
17818       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.1icon.3/default";
17819       data.item: "stacking" "above";
17820       data.item: "selectraise" "on";
17821       data.item: "labels" "elm.text.1 elm.text.2";
17822       data.item: "icons" "elm.icon";
17823       data.item: "renames" "elm.edit.rename.1 elm.edit.rename.2";
17824       images {
17825           image: "00_list_thumbnail_bg.png" COMP;
17826       }
17827       parts {
17828          GENLIST_PART_DIALOGUE_BASE( 162 )
17829          GENLIST_PART_PADDING_TOP( 20 )
17830          GENLIST_PART_PADDING_BOTTOM( 0 )
17831          GENLIST_PART_PADDING_LEFT( 10 )
17832          GENLIST_PART_PADDING_RIGHT( 10 )
17833          part { name: "elm.icon.bg";
17834             scale: 1;
17835             description { state: "default" 0.0;
17836                min: 90 90;
17837                fixed: 1 1;
17838                align: 0.0 0.7;
17839                rel1 {
17840                   relative: 1.0 0.5;
17841                   to_x: "elm.padding.left";
17842                }
17843                rel2 {
17844                   relative: 1.0 0.5;
17845                   to_x: "elm.padding.left";
17846                }
17847                image {
17848                   normal: "00_list_thumbnail_bg.png";
17849                   border: 1 1 1 1;
17850                   border_scale: 1;
17851                   middle: NONE;
17852                }
17853             }
17854          }
17855          part { name: "elm.icon";
17856             type: SWALLOW;
17857             description { state: "default" 0.0;
17858                rel1.to: "elm.icon.bg";
17859                rel2.to: "elm.icon.bg";
17860             }
17861          }
17862          part { name: "elm.padding.icon.right";
17863             type: RECT;
17864             mouse_events: 0;
17865             scale: 1;
17866             description { state: "default" 0.0;
17867                min: 10 0;
17868                fixed: 1 0;
17869                rel1 {
17870                    relative: 1.0 0.0;
17871                    to_x: "elm.icon.bg";
17872                }
17873                rel2.to_x: "elm.icon.bg";
17874                visible: 0;
17875                align: 0.0 0.5;
17876             }
17877          }
17878          part { name: "elm.padding.text.left";
17879             type: RECT;
17880             mouse_events: 0;
17881             scale: 1;
17882             description { state: "default" 0.0;
17883                min: 10 0;
17884                fixed: 1 0;
17885                rel1 {
17886                    relative: 1.0 1.0;
17887                    to_x: "elm.padding.icon.right";
17888                    to_y: "elm.padding.top";
17889                }
17890                rel2.to_x: "elm.padding.icon.right";
17891                visible: 0;
17892                align: 1.0 0.5;
17893             }
17894          }
17895          part { name: "vertical_line";
17896             type: RECT;
17897             mouse_events: 0;
17898             description { state: "default" 0.0;
17899                min: 1 0;
17900                fixed: 1 0;
17901                color: GENLIST_PART_BOTTOM_LINE_INC;
17902                rel1 {
17903                   relative: 1.0 1.0;
17904                   to_x: "elm.padding.text.left";
17905                   to_y: "elm.padding.top";
17906                }
17907                rel2 {
17908                   relative: 1.0 0.0;
17909                   to_x: "elm.padding.text.left";
17910                   to_y: "elm.padding.bottom";
17911                }
17912                align: 0.0 0.5;
17913             }
17914          }
17915          part { name: "text_vertical_rect";
17916             type: RECT;
17917             mouse_events: 0;
17918             description { state: "default" 0.0;
17919                min: 10 0;
17920                fixed: 1 0;
17921                color: GENLIST_PART_DIALOGUE_INDICATOR_BG_COLOR_INC;
17922                rel1 {
17923                   relative: 1.0 1.0;
17924                   to_x: "vertical_line";
17925                   to_y: "elm.padding.top";
17926                }
17927                rel2 {
17928                   relative: 1.0 0.0;
17929                   to_x: "elm.padding.text.left";
17930                   to_y: "elm.padding.bottom";
17931                }
17932                align: 0.0 0.5;
17933             }
17934          }
17935          part { name: "elm.padding.text.right";
17936             type: RECT;
17937             mouse_events: 0;
17938             scale: 1;
17939             description { state: "default" 0.0;
17940                min: 10 0;
17941                fixed: 1 0;
17942                rel1 {
17943                    relative: 1.0 0.0;
17944                    to_x: "text_vertical_rect";
17945                }
17946                rel2.to_x: "text_vertical_rect";
17947                visible: 0;
17948                align: 0.0 0.5;
17949             }
17950          }
17951          part { name: "text_top_line";
17952             type: RECT;
17953             mouse_events: 0;
17954             description { state: "default" 0.0;
17955                min: 0 1;
17956                fixed: 0 1;
17957                color: GENLIST_PART_BOTTOM_LINE_INC;
17958                rel1 {
17959                   relative: 1.0 0.0;
17960                   to_x: "text_vertical_rect";
17961                   to_y: "text_vertical_rect";
17962                }
17963                rel2 {
17964                   relative: 1.0 0.0;
17965                   to_y: "text_vertical_rect";
17966                }
17967                align: 0.0 0.0;
17968             }
17969          }
17970          part { name: "text_center_line";
17971             type: RECT;
17972             mouse_events: 0;
17973             description { state: "default" 0.0;
17974                min: 0 1;
17975                fixed: 0 1;
17976                color: GENLIST_PART_BOTTOM_LINE_INC;
17977                rel1 {
17978                   relative: 1.0 0.5;
17979                   to_x: "text_vertical_rect";
17980                }
17981                rel2.relative: 1.0 0.5;
17982                align: 0.5 0.5;
17983             }
17984          }
17985          part { name: "text_bottom_line";
17986             type: RECT;
17987             mouse_events: 0;
17988             description { state: "default" 0.0;
17989                min: 0 1;
17990                fixed: 0 1;
17991                color: GENLIST_PART_BOTTOM_LINE_INC;
17992                rel1 {
17993                   relative: 1.0 1.0;
17994                   to_x: "text_vertical_rect";
17995                   to_y: "text_vertical_rect";
17996                }
17997                rel2 {
17998                   relative: 1.0 1.0;
17999                   to_y: "text_vertical_rect";
18000                }
18001                align: 0.0 1.0;
18002             }
18003          }
18004          part { name: "elm.text.bg.1";
18005             clip_to: "disclip";
18006             type: RECT;
18007             mouse_events: 0;
18008             scale: 1;
18009             description { state: "default" 0.0;
18010                rel1 {
18011                   relative: 1.0 1.0;
18012                   to_x: "text_vertical_rect";
18013                   to_y: "text_top_line";
18014                }
18015                rel2 {
18016                   relative: 1.0 0.0;
18017                   to_x: "elm.padding.right";
18018                   to_y: "text_center_line";
18019                }
18020                color: GENLIST_PART_BG_COLOR_INC;
18021             }
18022          }
18023          part { name: "elm.text.1";
18024             type: TEXT;
18025             mouse_events: 0;
18026             scale: 1;
18027             description { state: "default" 0.0;
18028                min: 0 34;
18029                rel1 {
18030                   relative: 1.0 0.0;
18031                   to_x: "elm.padding.text.right";
18032                   to_y: "elm.text.bg.1";
18033                }
18034                rel2 {
18035                   relative: 0.0 1.0;
18036                   to_x: "elm.padding.right";
18037                   to_y: "elm.text.bg.1";
18038                }
18039                color: GENLIST_PART_TEXT_COLOR_INC;
18040                text {
18041                   font: "SLP:style=Regular";
18042                   size: 30;
18043                   align: 0.0 0.5;
18044                }
18045             }
18046             GENLIST_DESCRIPTION_RENAME_ENABLED
18047          }
18048          part { name: "elm.edit.rename.1";
18049             clip_to: "disclip";
18050             type: SWALLOW;
18051             description { state: "default" 0.0;
18052                visible: 0;
18053                fixed: 1 1;
18054                rel1.to: "elm.text.1";
18055                rel2.to: "elm.text.1";
18056             }
18057             description { state: "rename_enabled" 0.0;
18058                inherit: "default" 0.0;
18059                visible: 1;
18060             }
18061          }
18062          part { name: "elm.text.bg.2";
18063             clip_to: "disclip";
18064             type: RECT;
18065             mouse_events: 0;
18066             scale: 1;
18067             description { state: "default" 0.0;
18068                rel1 {
18069                   relative: 1.0 1.0;
18070                   to_x: "text_vertical_rect";
18071                   to_y: "text_center_line";
18072                }
18073                rel2 {
18074                   relative: 1.0 0.0;
18075                   to_x: "elm.padding.right";
18076                   to_y: "text_bottom_line";
18077                }
18078                color: GENLIST_PART_BG_COLOR_INC;
18079             }
18080          }
18081          part { name: "elm.text.2";
18082             clip_to: "disclip";
18083             type: TEXT;
18084             mouse_events: 0;
18085             scale: 1;
18086             description { state: "default" 0.0;
18087                min: 0 34;
18088                rel1 {
18089                   relative: 1.0 0.0;
18090                   to_x: "elm.padding.text.right";
18091                   to_y: "elm.text.bg.2";
18092                }
18093                rel2 {
18094                   relative: 0.0 1.0;
18095                   to_x: "elm.padding.right";
18096                   to_y: "elm.text.bg.2";
18097                }
18098                color: GENLIST_PART_TEXT_COLOR_INC;
18099                text {
18100                   font: "SLP:style=Regular";
18101                   size: 30;
18102                   align: 0.0 0.5;
18103                }
18104             }
18105             GENLIST_DESCRIPTION_RENAME_ENABLED
18106          }
18107          part { name: "elm.edit.rename.2";
18108             clip_to: "disclip";
18109             type: SWALLOW;
18110             description { state: "default" 0.0;
18111                visible: 0;
18112                fixed: 1 1;
18113                rel1.to: "elm.text.2";
18114                rel2.to: "elm.text.2";
18115             }
18116             description { state: "rename_enabled" 0.0;
18117                inherit: "default" 0.0;
18118                visible: 1;
18119             }
18120          }
18121          GENLIST_PART_DISCLIP
18122       }
18123       programs {
18124          // signal: elm,state,%s,active
18125          //   a "check" item named %s went active
18126          // signal: elm,state,%s,passive
18127          //   a "check" item named %s went passive
18128          // default is passive
18129          /*program { name: "go_active";
18130             signal: "elm,state,selected";
18131             source: "elm";
18132             action: STATE_SET "selected" 0.0;
18133             target: "elm.text";
18134             target: "elm.text.sub";
18135          }
18136          program { name: "go_passive";
18137             signal: "elm,state,unselected";
18138             source: "elm";
18139             action: STATE_SET "default" 0.0;
18140             target: "elm.text";
18141             target: "elm.text.sub";
18142             transition: LINEAR 0.1;
18143          }*/
18144          program { name: "go_disabled";
18145             signal: "elm,state,disabled";
18146             source: "elm";
18147             action: STATE_SET "disabled" 0.0;
18148             target: "disclip";
18149          }
18150          program { name: "go_enabled";
18151             signal: "elm,state,enabled";
18152             source: "elm";
18153             action: STATE_SET "default" 0.0;
18154             target: "disclip";
18155          }
18156          program { name: "rename_enabled";
18157             signal: "elm,state,rename,enabled";
18158             source: "elm";
18159             action: STATE_SET "rename_enabled" 0.0;
18160             target: "elm.text.1";
18161             target: "elm.text.2";
18162             target: "elm.edit.rename.1";
18163             target: "elm.edit.rename.2";
18164          }
18165          program { name: "rename_disabled";
18166             signal: "elm,state,rename,disabled";
18167             source: "elm";
18168             action: STATE_SET "default" 0.0;
18169             target: "elm.text.1";
18170             target: "elm.text.2";
18171             target: "elm.edit.rename.1";
18172             target: "elm.edit.rename.2";
18173          }
18174       }
18175    }
18176
18177    ///////// will be removed /////////
18178    group { name: "elm/genlist/item/dialogue/1icon.2/default";
18179       alias: "elm/genlist/item_odd/dialogue/1icon.2/default";
18180       alias: "elm/genlist/item_compress/dialogue/1icon.2/default";
18181       alias: "elm/genlist/item_compress_odd/dialogue/1icon.2/default";
18182
18183       data.item: "stacking" "above";
18184       data.item: "selectraise" "on";
18185       data.item: "icons" "elm.icon";
18186
18187       parts {
18188          GENLIST_PART_BASE( 71 )
18189          GENLIST_PART_BOTTOM_LINE
18190          GENLIST_PART_PADDING_LEFT( 20 )
18191          GENLIST_PART_PADDING_RIGHT( 10 )
18192          GENLIST_PART_DIALOGUE_ITEM
18193          part { name: "elm.icon";
18194             clip_to: "disclip";
18195             type: SWALLOW;
18196             scale: 1;
18197             description { state: "default" 0.0;
18198                rel1 {
18199                   relative: 1.0 0.0;
18200                   to_x: "elm.padding.left";
18201                }
18202                rel2 {
18203                   relative: 0.0 1.0;
18204                   to_x: "elm.padding.right";
18205                }
18206             }
18207          }
18208          GENLIST_PART_DISCLIP
18209       }
18210       programs {
18211          // signal: elm,state,%s,active
18212          //   a "check" item named %s went active
18213          // signal: elm,state,%s,passive
18214          //   a "check" item named %s went passive
18215          // default is passive
18216          /*program { name: "go_active";
18217             signal: "elm,state,selected";
18218             source: "elm";
18219             action: STATE_SET "selected" 0.0;
18220             target: "bg_image";
18221             target: "elm.text";
18222          }
18223          program { name: "go_passive";
18224             signal: "elm,state,unselected";
18225             source: "elm";
18226             action: STATE_SET "default" 0.0;
18227             target: "bg_image";
18228             target: "elm.text";
18229             transition: LINEAR 0.1;
18230          }*/
18231          program { name: "go_disabled";
18232             signal: "elm,state,disabled";
18233             source: "elm";
18234             action: STATE_SET "disabled" 0.0;
18235             target: "disclip";
18236          }
18237          program { name: "go_enabled";
18238             signal: "elm,state,enabled";
18239             source: "elm";
18240             action: STATE_SET "default" 0.0;
18241             target: "disclip";
18242          }
18243       }
18244    }
18245
18246    //////////////////////// will be removed //////////////////////////
18247    group { name: "elm/genlist/item/dialogue/bg/2text.1icon/default";
18248       alias: "elm/genlist/item_odd/dialogue/bg/2text.1icon/default";
18249       alias: "elm/genlist/item_compress/dialogue/bg/2text.1icon/default";
18250       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.1icon/default";
18251       alias: "elm/genlist/item/dialogue.1icon.2text/default";
18252       alias: "elm/genlist/item_odd/dialogue.1icon.2text/default";
18253       alias: "elm/genlist/item_compress/dialogue.1icon.2text/default";
18254       alias: "elm/genlist/item_compress_odd/dialogue.1icon.2text/default";
18255       data.item: "stacking" "above";
18256       data.item: "selectraise" "on";
18257       data.item: "labels" "elm.text.1 elm.text.2";
18258       data.item: "icons" "elm.icon";
18259       images {
18260           image: "00_list_thumbnail_bg.png" COMP;
18261       }
18262       parts {
18263          GENLIST_PART_DIALOGUE_BASE( 118 )
18264          GENLIST_PART_PADDING_TOP( 29 )
18265          GENLIST_PART_PADDING_BOTTOM( 30 )
18266          GENLIST_PART_PADDING_LEFT( 20 )
18267          GENLIST_PART_PADDING_RIGHT( 10 )
18268          part { name: "elm.icon.bg";
18269             scale: 1;
18270             description { state: "default" 0.0;
18271                min: 80 80;
18272                fixed: 1 1;
18273                align: 0.0 0.5;
18274                rel1 {
18275                   relative: 1.0 0.5;
18276                   to_x: "elm.padding.left";
18277                }
18278                rel2 {
18279                   relative: 1.0 0.5;
18280                   to_x: "elm.padding.left";
18281                }
18282                image {
18283                   normal: "00_list_thumbnail_bg.png";
18284                   border: 1 1 1 1;
18285                   border_scale: 1;
18286                   middle: NONE;
18287                }
18288             }
18289          }
18290          part { name: "elm.icon";
18291             type: SWALLOW;
18292             description { state: "default" 0.0;
18293                rel1.to: "elm.icon.bg";
18294                rel2.to: "elm.icon.bg";
18295             }
18296          }
18297          part { name: "elm.padding.icon.right";
18298             type: RECT;
18299             mouse_events: 0;
18300             scale: 1;
18301             description { state: "default" 0.0;
18302                min: 15 0;
18303                fixed: 1 0;
18304                rel1 {
18305                    relative: 1.0 0.0;
18306                    to_x: "elm.icon.bg";
18307                }
18308                rel2.to_x: "elm.icon.bg";
18309                visible: 0;
18310                align: 0.0 0.5;
18311             }
18312          }
18313          part { name: "elm.text.1";
18314             clip_to: "disclip";
18315             type: TEXT;
18316             mouse_events: 0;
18317             scale: 1;
18318             description { state: "default" 0.0;
18319                min: 0 34;
18320                fixed: 0 1;
18321                align: 0 0;
18322                rel1 {
18323                   relative: 1.0 1.0;
18324                   to_x: "elm.padding.icon.right";
18325                   to_y: "elm.padding.top";
18326                }
18327                rel2 {
18328                   relative: 0.0 1.0;
18329                   to_x: "elm.padding.right";
18330                   to_y: "elm.padding.top";
18331                }
18332                color: GENLIST_PART_TEXT_COLOR_INC;
18333                text {
18334                   font: "SLP:style=Regular";
18335                   size: 30;
18336                   align: 0.0 0.0;
18337                }
18338             }
18339          }
18340          part { name: "elm.text.2";
18341             clip_to: "disclip";
18342             type: TEXT;
18343             mouse_events: 0;
18344             scale: 1;
18345             description { state: "default" 0.0;
18346                rel1 {
18347                   relative: 1.0 1.0;
18348                   to_x: "elm.padding.icon.right";
18349                   to_y: "elm.text.1";
18350                }
18351                rel2 {
18352                   relative: 0.0 0.0;
18353                   to_x: "elm.padding.right";
18354                   to_y: "elm.padding.bottom";
18355                }
18356                color: 156 142 125 255;
18357                text {
18358                   font: "SLP:style=Medium";
18359                   size: 17;
18360                   align: 0.0 1.0;
18361                }
18362             }
18363          }
18364          GENLIST_PART_DISCLIP
18365       }
18366       programs {
18367          // signal: elm,state,%s,active
18368          //   a "check" item named %s went active
18369          // signal: elm,state,%s,passive
18370          //   a "check" item named %s went passive
18371          // default is passive
18372          /*program { name: "go_active";
18373             signal: "elm,state,selected";
18374             source: "elm";
18375             action: STATE_SET "selected" 0.0;
18376             target: "elm.text";
18377             target: "elm.text.sub";
18378          }
18379          program { name: "go_passive";
18380             signal: "elm,state,unselected";
18381             source: "elm";
18382             action: STATE_SET "default" 0.0;
18383             target: "elm.text";
18384             target: "elm.text.sub";
18385             transition: LINEAR 0.1;
18386          }*/
18387          program { name: "go_disabled";
18388             signal: "elm,state,disabled";
18389             source: "elm";
18390             action: STATE_SET "disabled" 0.0;
18391             target: "disclip";
18392          }
18393          program { name: "go_enabled";
18394             signal: "elm,state,enabled";
18395             source: "elm";
18396             action: STATE_SET "default" 0.0;
18397             target: "disclip";
18398          }
18399       }
18400    }
18401
18402
18403    group { name: "elm/genlist/item/dialogue/bg/3text.1icon/default";
18404       alias: "elm/genlist/item_odd/dialogue/bg/3text.1icon/default";
18405       alias: "elm/genlist/item_compress/dialogue/bg/3text.1icon/default";
18406       alias: "elm/genlist/item_compress_odd/dialogue/bg/3text.1icon/default";
18407       data.item: "stacking" "above";
18408       data.item: "selectraise" "on";
18409       data.item: "labels" "elm.text.1 elm.text.2 elm.text.3";
18410       data.item: "icons" "elm.icon";
18411       images {
18412           image: "00_list_thumbnail_bg.png" COMP;
18413       }
18414       parts {
18415          GENLIST_PART_DIALOGUE_BASE( 118 )
18416          GENLIST_PART_PADDING_TOP( 21 )
18417          GENLIST_PART_PADDING_BOTTOM( 21 )
18418          GENLIST_PART_PADDING_LEFT( 20 )
18419          GENLIST_PART_PADDING_RIGHT( 10 )
18420          part { name: "elm.icon.bg";
18421             scale: 1;
18422             description { state: "default" 0.0;
18423                min: 80 80;
18424                fixed: 1 1;
18425                align: 0.0 0.5;
18426                rel1 {
18427                   relative: 1.0 0.5;
18428                   to_x: "elm.padding.left";
18429                }
18430                rel2 {
18431                   relative: 1.0 0.5;
18432                   to_x: "elm.padding.left";
18433                }
18434                image {
18435                   normal: "00_list_thumbnail_bg.png";
18436                   border: 1 1 1 1;
18437                   border_scale: 1;
18438                   middle: NONE;
18439                }
18440             }
18441          }
18442          part { name: "elm.icon";
18443             type: SWALLOW;
18444             description { state: "default" 0.0;
18445                rel1.to: "elm.icon.bg";
18446                rel2.to: "elm.icon.bg";
18447             }
18448          }
18449          part { name: "elm.padding.icon.right";
18450             type: RECT;
18451             mouse_events: 0;
18452             scale: 1;
18453             description { state: "default" 0.0;
18454                min: 15 0;
18455                fixed: 1 0;
18456                rel1 {
18457                    relative: 1.0 0.0;
18458                    to_x: "elm.icon.bg";
18459                }
18460                rel2.to_x: "elm.icon.bg";
18461                visible: 0;
18462                align: 0.0 0.5;
18463             }
18464          }
18465          part { name: "elm.text.1";
18466             clip_to: "disclip";
18467             type: TEXT;
18468             mouse_events: 0;
18469             scale: 1;
18470             description { state: "default" 0.0;
18471                min: 0 34;
18472                fixed: 0 1;
18473                align: 0 0;
18474                rel1 {
18475                   relative: 1.0 1.0;
18476                   to_x: "elm.padding.icon.right";
18477                   to_y: "elm.padding.top";
18478                }
18479                rel2 {
18480                   relative: 0.0 1.0;
18481                   to_x: "elm.padding.right";
18482                   to_y: "elm.padding.top";
18483                }
18484                color: GENLIST_PART_TEXT_COLOR_INC;
18485                text {
18486                   font: "SLP:style=Regular";
18487                   size: 30;
18488                   align: 0.0 0.0;
18489                }
18490             }
18491          }
18492          part { name: "elm.text.2";
18493             clip_to: "disclip";
18494             type: TEXT;
18495             mouse_events: 0;
18496             scale: 1;
18497             description { state: "default" 0.0;
18498                rel1 {
18499                   relative: 1.0 1.0;
18500                   to_x: "elm.padding.icon.right";
18501                   to_y: "elm.text.1";
18502                }
18503                rel2 {
18504                   relative: 0.0 0.0;
18505                   to_x: "elm.padding.right";
18506                   to_y: "elm.text.3";
18507                }
18508                color: 156 142 125 255;
18509                text {
18510                   font: "SLP:style=Medium";
18511                   size: 17;
18512                   align: 0.0 1.0;
18513                }
18514             }
18515          }
18516          part { name: "elm.text.3";
18517             clip_to: "disclip";
18518             type: TEXT;
18519             mouse_events: 0;
18520             scale: 1;
18521             description { state: "default" 0.0;
18522                min: 0 20;
18523                fixed: 0 1;
18524                align: 0 1;
18525                rel1 {
18526                   relative: 1.0 0.0;
18527                   to_x: "elm.padding.icon.right";
18528                   to_y: "elm.padding.bottom";
18529                }
18530                rel2 {
18531                   relative: 0.0 0.0;
18532                   to_x: "elm.padding.right";
18533                   to_y: "elm.padding.bottom";
18534                }
18535                color: 156 142 125 255;
18536                text {
18537                   font: "SLP:style=Medium";
18538                   size: 17;
18539                   align: 0.0 1.0;
18540                }
18541             }
18542          }
18543          GENLIST_PART_DISCLIP
18544       }
18545       programs {
18546          // signal: elm,state,%s,active
18547          //   a "check" item named %s went active
18548          // signal: elm,state,%s,passive
18549          //   a "check" item named %s went passive
18550          // default is passive
18551          /*program { name: "go_active";
18552             signal: "elm,state,selected";
18553             source: "elm";
18554             action: STATE_SET "selected" 0.0;
18555             target: "elm.text";
18556             target: "elm.text.sub";
18557          }
18558          program { name: "go_passive";
18559             signal: "elm,state,unselected";
18560             source: "elm";
18561             action: STATE_SET "default" 0.0;
18562             target: "elm.text";
18563             target: "elm.text.sub";
18564             transition: LINEAR 0.1;
18565          }*/
18566          program { name: "go_disabled";
18567             signal: "elm,state,disabled";
18568             source: "elm";
18569             action: STATE_SET "disabled" 0.0;
18570             target: "disclip";
18571          }
18572          program { name: "go_enabled";
18573             signal: "elm,state,enabled";
18574             source: "elm";
18575             action: STATE_SET "default" 0.0;
18576             target: "disclip";
18577          }
18578       }
18579    }
18580 ////////////////////////////////////////////////////////