Merge "[Button]Naviframe_control style macro's modified."
[profile/ivi/efl-theme-tizen.git] / themes / widgets / genlist / genlist_normal.edc
1 /*
2  * Copyright (c) 2010 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * PROPRIETARY/CONFIDENTIAL
5  *
6  * This software is the confidential and proprietary information of SAMSUNG
7  * ELECTRONICS ("Confidential Information"). You agree and acknowledge that this
8  * software is owned by Samsung and you shall not disclose such Confidential
9  * Information and shall use it only in accordance with the terms of the license
10  * agreement you entered into with SAMSUNG ELECTRONICS. SAMSUNG make no
11  * representations or warranties about the suitability of the software, either
12  * express or implied, including but not limited to the implied warranties of
13  * merchantability, fitness for a particular purpose, or non-infringement.
14  * SAMSUNG shall not be liable for any damages suffered by licensee arising out
15  * of or releated to this software.
16  *
17  */
18 /*
19  * vim:ts=3
20 */
21
22 /* genlist multisense sample/tone listing */
23    sounds {
24       sample {
25          name: "button-pressed" RAW;
26          source: "button-pressed.wav";
27       }
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: "texts" "elm.text";
37       data.item: "contents" "elm.swallow.icon elm.swallow.end";
38       images {
39          image: "00_list_bar_press_1x80.png" COMP;
40       }
41       parts {
42          GENLIST_PART_BASE( GENLIST_HEIGHT_93_INC )
43          GENLIST_PART_BG_IMAGE
44          GENLIST_PART_BOTTOM_LINE
45          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
46          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
47          part { name: "elm.swallow.end";
48             clip_to: "disclip";
49             type: SWALLOW;
50             scale: 1;
51             description { state: "default" 0.0;
52                fixed: 1 0;
53                align: 1.0 0.5;
54                rel1.to_x: "elm.padding.right";
55                rel2 {
56                   relative: 0.0  1.0;
57                   to_x: "elm.padding.right";
58                }
59             }
60          }
61          part { name: "elm.text";
62             clip_to: "disclip";
63             type: TEXTBLOCK;
64             mouse_events: 0;
65             scale: 1;
66             description { state: "default" 0.0;
67                rel1 {
68                   relative: 1.0  0.2;
69                   offset: 0 0;
70                   to_x: "elm.swallow.icon";
71                }
72                rel2 {
73                   to_x: "elm.swallow.end";
74                   relative: 0.0  1.0;
75                   offset:   0   0;
76                }
77                text {
78                   style: "text_style";
79                }
80             }
81             description { state: "selected" 0.0;
82                inherit: "default" 0.0;
83                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
84             }
85          }
86          part { name: "elm.swallow.icon";
87             clip_to: "disclip";
88             type: SWALLOW;
89             description { state: "default" 0.0;
90                fixed: 1 0;
91                align: 0.0 0.5;
92                rel1 {
93                   relative: 1.0 0.0;
94                   to_x: "elm.padding.left";
95                }
96                rel2.to_x: "elm.padding.left";
97             }
98          }
99          GENLIST_PART_DISCLIP
100       }
101       programs {
102          // signal: elm,state,%s,active
103          //   a "check" item named %s went active
104          // signal: elm,state,%s,passive
105          //   a "check" item named %s went passive
106          // default is passive
107          program { name: "go_active";
108             signal: "elm,state,selected";
109             source: "elm";
110             action: STATE_SET "selected" 0.0;
111             target: "bg_image";
112             target: "elm.text";
113             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
114          }
115          program { name: "go_passive";
116             signal: "elm,state,unselected";
117             source: "elm";
118             action: STATE_SET "default" 0.0;
119             target: "bg_image";
120             target: "elm.text";
121             transition: LINEAR 0.1;
122          }
123          program { name: "go_disabled";
124             signal: "elm,state,disabled";
125             source: "elm";
126             action: STATE_SET "disabled" 0.0;
127             target: "disclip";
128          }
129          program { name: "go_enabled";
130             signal: "elm,state,enabled";
131             source: "elm";
132             action: STATE_SET "default" 0.0;
133             target: "disclip";
134          }
135          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
136       }
137    }
138
139    group { name: "elm/genlist/item/default/default";
140       alias: "elm/genlist/item_odd/default/default";
141       alias: "elm/genlist/item_compress/default/default";
142       alias: "elm/genlist/item_compress_odd/default/default";
143       alias: "elm/list/item/default";
144       alias: "elm/list/item_odd/default";
145       alias: "elm/list/item_compress/default";
146       alias: "elm/list/item_compress_odd/default";
147       data.item: "stacking" "above";
148       data.item: "selectraise" "on";
149       data.item: "texts" "elm.text";
150       data.item: "contents" "elm.swallow.icon elm.swallow.end";
151       images {
152          image: "00_list_bar_press_1x80.png" COMP;
153       }
154       parts {
155          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
156          GENLIST_PART_BG_IMAGE
157          GENLIST_PART_BOTTOM_LINE
158          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
159          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
160          part { name: "elm.swallow.end";
161             clip_to: "disclip";
162             type: SWALLOW;
163             scale: 1;
164             description { state: "default" 0.0;
165                fixed: 1 0;
166                align: 1.0 0.5;
167                rel1.to_x: "elm.padding.right";
168                rel2 {
169                   relative: 0.0  1.0;
170                   to_x: "elm.padding.right";
171                }
172             }
173          }
174          part { name: "elm.text";
175             clip_to: "disclip";
176             type: TEXT;
177             mouse_events: 0;
178             scale: 1;
179             description { state: "default" 0.0;
180                rel1 {
181                   relative: 1.0  0.0;
182                   offset: 0 0;
183                   to_x: "elm.swallow.icon";
184                }
185                rel2 {
186                   to_x: "elm.swallow.end";
187                   relative: 0.0  1.0;
188                   offset:   0   0;
189                }
190                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
191                text {
192                   font: "SLP:style=Roman";
193                   size: GENLIST_FONT_44_INC;
194                   min: 0 1;
195                   align: 0.0 0.5;
196                   text_class: "list_item";
197                }
198             }
199             description { state: "selected" 0.0;
200                inherit: "default" 0.0;
201                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
202             }
203          }
204          part { name: "elm.swallow.icon";
205             clip_to: "disclip";
206             type: SWALLOW;
207             description { state: "default" 0.0;
208                fixed: 1 0;
209                align: 0.0 0.5;
210                rel1 {
211                   relative: 1.0 0.0;
212                   to_x: "elm.padding.left";
213                }
214                rel2.to_x: "elm.padding.left";
215             }
216          }
217          GENLIST_PART_DISCLIP
218       }
219       programs {
220          // signal: elm,state,%s,active
221          //   a "check" item named %s went active
222          // signal: elm,state,%s,passive
223          //   a "check" item named %s went passive
224          // default is passive
225          program { name: "go_active";
226             signal: "elm,state,selected";
227             source: "elm";
228             action: STATE_SET "selected" 0.0;
229             target: "bg_image";
230             target: "elm.text";
231             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
232          }
233          program { name: "go_passive";
234             signal: "elm,state,unselected";
235             source: "elm";
236             action: STATE_SET "default" 0.0;
237             target: "bg_image";
238             target: "elm.text";
239             transition: LINEAR 0.1;
240          }
241          program { name: "go_disabled";
242             signal: "elm,state,disabled";
243             source: "elm";
244             action: STATE_SET "disabled" 0.0;
245             target: "disclip";
246          }
247          program { name: "go_enabled";
248             signal: "elm,state,enabled";
249             source: "elm";
250             action: STATE_SET "default" 0.0;
251             target: "disclip";
252          }
253          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
254       }
255    }
256
257    group { name: "elm/genlist/item/1icon/with_no_line/default";
258       alias: "elm/genlist/item_odd/1icon/with_no_line/default";
259       alias: "elm/genlist/item_compress/1icon/with_no_line/default";
260       alias: "elm/genlist/item_compress_odd/1icon/with_no_line/default";
261       data.item: "stacking" "above";
262       data.item: "selectraise" "on";
263       data.item: "contents" "elm.icon";
264       parts {
265          part { name: "base";
266             type: RECT;
267             repeat_events: 1;
268             scale: 1;
269             description { state: "default" 0.0;
270                color: GENLIST_PART_BG_COLOR_INC;
271             }
272          }
273          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
274          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
275          part { name: "elm.icon";
276             clip_to: "disclip";
277             type: SWALLOW;
278             description { state: "default" 0.0;
279                rel1 {
280                   relative: 1.0 0.0;
281                   to_x: "elm.padding.left";
282                }
283                rel2 {
284                   relative: 0.0 1.0;
285                   to_x: "elm.padding.right";
286                }
287             }
288          }
289          GENLIST_PART_DISCLIP
290       }
291       programs {
292          // signal: elm,state,%s,active
293          //   a "check" item named %s went active
294          // signal: elm,state,%s,passive
295          //   a "check" item named %s went passive
296          // default is passive
297          program { name: "go_disabled";
298             signal: "elm,state,disabled";
299             source: "elm";
300             action: STATE_SET "disabled" 0.0;
301             target: "disclip";
302          }
303          program { name: "go_enabled";
304             signal: "elm,state,enabled";
305             source: "elm";
306             action: STATE_SET "default" 0.0;
307             target: "disclip";
308          }
309       }
310    }
311
312    group { name: "elm/genlist/item/1icon/default";
313       alias: "elm/genlist/item_odd/1icon/default";
314       alias: "elm/genlist/item_compress/1icon/default";
315       alias: "elm/genlist/item_compress_odd/1icon/default";
316       inherit: "elm/genlist/item/1icon/with_no_line/default";
317       parts {
318          part { name: "bottom_line";
319             insert_after: "elm.padding.right";
320             type: RECT;
321             mouse_events: 0;
322             description { state: "default" 0.0;
323                min: 0 1;
324                fixed: 0 1;
325                visible: 1;
326                color: GENLIST_PART_LIST_LINE_COLOR_INC;
327                rel1 {
328                   relative: 0.0 1.0;
329                   offset: 0 -1;
330                }
331             }
332          }
333       }
334    }
335
336 // 3.1.1
337    group { name: "elm/genlist/item/1text/default";
338       alias: "elm/genlist/item_odd/1text/default";
339       alias: "elm/genlist/item_compress/1text/default";
340       alias: "elm/genlist/item_compress_odd/1text/default";
341       data.item: "stacking" "above";
342       data.item: "selectraise" "on";
343       data.item: "texts" "elm.text";
344       data.item: "flips" "elm.flip.icon elm.flip.content";
345       images {
346          image: "00_list_bar_press_1x80.png" COMP;
347       }
348       parts {
349          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
350          GENLIST_PART_BG_IMAGE
351          GENLIST_PART_BOTTOM_LINE
352          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
353          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
354          part { name: "elm.text";
355             clip_to: "disclip";
356             type: TEXT;
357             mouse_events: 0;
358             scale: 1;
359             description { state: "default" 0.0;
360                rel1 {
361                   relative: 1.0 0.0;
362                   to_x: "elm.padding.left";
363                }
364                rel2 {
365                   relative: 0.0 1.0;
366                   to_x: "elm.padding.right";
367                }
368                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
369                text {
370                   font: "SLP:style=Roman";
371                   size: GENLIST_FONT_44_INC;
372                   min: 0 1;
373                   align: 0.0 0.5;
374                   text_class: "list_item";
375                }
376             }
377             description { state: "selected" 0.0;
378                inherit: "default" 0.0;
379                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
380             }
381             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
382             GENLIST_DESCRIPTION_FLIP_ENABLED
383          }
384          GENLIST_PART_FLIP
385          GENLIST_PART_DISCLIP
386       }
387       programs {
388          // signal: elm,state,%s,active
389          //   a "check" item named %s went active
390          // signal: elm,state,%s,passive
391          //   a "check" item named %s went passive
392          // default is passive
393          program { name: "go_active";
394             signal: "elm,state,selected";
395             source: "elm";
396             action: STATE_SET "selected" 0.0;
397             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_1TEXT
398             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
399          }
400          program { name: "go_passive";
401             signal: "elm,state,unselected";
402             source: "elm";
403             action: STATE_SET "default" 0.0;
404             target: "bg_image";
405             target: "elm.text";
406             transition: LINEAR 0.1;
407          }
408          program { name: "go_disabled";
409             signal: "elm,state,disabled";
410             source: "elm";
411             action: STATE_SET "disabled" 0.0;
412             target: "disclip";
413          }
414          program { name: "go_enabled";
415             signal: "elm,state,enabled";
416             source: "elm";
417             action: STATE_SET "default" 0.0;
418             target: "disclip";
419          }
420          GENLIST_PROGRAM_FLIP_1TEXT
421          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
422       }
423    }
424
425    group { name: "elm/genlist/item_compress/1text.tb/default";
426       inherit: "elm/genlist/item/1text/default";
427       parts {
428          part { name: "elm.text";
429             clip_to: "disclip";
430             type: TEXTBLOCK;
431             mouse_events: 0;
432             scale: 1;
433             description { state: "default" 0.0;
434                rel1 {
435                   relative: 1.0 0.0;
436                   to_x: "elm.padding.left";
437                }
438                rel2 {
439                   relative: 0.0 1.0;
440                   to_x: "elm.padding.right";
441                }
442                align: 0.0 0.5;
443                text {
444                   style: "genlist_default_textblock_style";
445                   size: GENLIST_FONT_44_INC;
446                   min: 0 1;
447                   align: 0.0 0.5;
448                }
449             }
450             description { state: "selected" 0.0;
451                inherit: "default" 0.0;
452                text.style: "genlist_default_textblock_selected_style";
453             }
454             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
455             GENLIST_DESCRIPTION_FLIP_ENABLED
456          }
457       }
458    }
459
460    group { name: "elm/genlist/item/1text.2/default";
461       alias: "elm/genlist/item_odd/1text.2/default";
462       alias: "elm/genlist/item_compress/1text.2/default";
463       alias: "elm/genlist/item_compress_odd/1text.2/default";
464       data.item: "stacking" "above";
465       data.item: "selectraise" "on";
466       data.item: "texts" "elm.text";
467       data.item: "flips" "elm.flip.content";
468       images {
469          image: "00_list_bar_press_1x80.png" COMP;
470       }
471       parts {
472          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
473          GENLIST_PART_BG_IMAGE
474          GENLIST_PART_BOTTOM_LINE
475          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
476          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
477          part { name: "temp_center_line"; //temporary
478             clip_to: "disclip";
479             type: RECT;
480             mouse_events: 0;
481             scale: 1;
482             description { state: "default" 0.0;
483                rel1 {
484                   relative: 0.0 0.5;
485                   to: "base";
486                }
487                rel2 {
488                   relative: 1.0 0.5;
489                   to: "base";
490                }
491             }
492          }
493          part { name: "elm.text";
494             clip_to: "disclip";
495             type: TEXTBLOCK;
496             mouse_events: 0;
497             scale: 1;
498             multiline: 0;
499             description { state: "default" 0.0;
500                fixed: 1 1;
501                rel1 {
502                   relative: 1.0 0.5;
503                   to_x: "elm.padding.left";
504                   to_y: "temp_center_line";
505                }
506                rel2 {
507                   relative: 0.0 0.5;
508                   to_x: "elm.padding.right";
509                   to_y: "temp_center_line";
510                }
511                align: 0.0 0.5;
512                text {
513                   style: "genlist_default_textblock_style";
514                   min: 0 1;
515                   align: 0.0 0.5;
516                }
517             }
518             description { state: "selected" 0.0;
519                inherit: "default" 0.0;
520                text.style: "genlist_default_textblock_selected_style";
521             }
522             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
523             GENLIST_DESCRIPTION_FLIP_ENABLED
524          }
525          GENLIST_PART_FLIP
526          GENLIST_PART_DISCLIP
527       }
528       programs {
529          // signal: elm,state,%s,active
530          //   a "check" item named %s went active
531          // signal: elm,state,%s,passive
532          //   a "check" item named %s went passive
533          // default is passive
534          program { name: "go_active";
535             signal: "elm,state,selected";
536             source: "elm";
537             action: STATE_SET "selected" 0.0;
538             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_1TEXT
539             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
540          }
541          program { name: "go_passive";
542             signal: "elm,state,unselected";
543             source: "elm";
544             action: STATE_SET "default" 0.0;
545             target: "bg_image";
546             target: "elm.text";
547             transition: LINEAR 0.1;
548          }
549          program { name: "go_disabled";
550             signal: "elm,state,disabled";
551             source: "elm";
552             action: STATE_SET "disabled" 0.0;
553             target: "disclip";
554          }
555          program { name: "go_enabled";
556             signal: "elm,state,enabled";
557             source: "elm";
558             action: STATE_SET "default" 0.0;
559             target: "disclip";
560          }
561          GENLIST_PROGRAM_FLIP_1TEXT
562          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
563       }
564    }
565
566 // 3.1.2
567    group { name: "elm/genlist/item/2text/default";
568       alias: "elm/genlist/item_odd/2text/default";
569       alias: "elm/genlist/item_compress/2text/default";
570       alias: "elm/genlist/item_compress_odd/2text/default";
571       data.item: "stacking" "above";
572       data.item: "selectraise" "on";
573       data.item: "texts" "elm.text.1 elm.text.2";
574       data.item: "flips" "elm.flip.content";
575       images {
576          image: "00_list_bar_press_1x80.png" COMP;
577       }
578       parts {
579          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
580          GENLIST_PART_BG_IMAGE
581          GENLIST_PART_BOTTOM_LINE
582          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
583          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
584          part { name: "elm.text.2";
585             clip_to: "disclip";
586             type: TEXT;
587             mouse_events: 0;
588             scale: 1;
589             description { state: "default" 0.0;
590                min: GENLIST_SIZE_133_INC 0;
591                fixed: 1 0;
592                rel1.to_x: "elm.padding.right";
593                rel2 {
594                   relative: 0.0 1.0;
595                   to_x: "elm.padding.right";
596                }
597                align: 1.0 0.5;
598                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
599                text {
600                   font: "SLP:style=Medium";
601                   size: GENLIST_FONT_32_INC;
602                   min: 0 1;
603                   align: 1.0 0.5;
604                   text_class: "slp_medium";
605                }
606             }
607             description { state: "selected" 0.0;
608                inherit: "default" 0.0;
609                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
610             }
611             GENLIST_DESCRIPTION_FLIP_ENABLED
612          }
613          part { name: "elm.padding.text2.left";
614             clip_to: "disclip";
615             type: RECT;
616             mouse_events: 0;
617             scale: 1;
618             description { state: "default" 0.0;
619                min: GENLIST_SIZE_32_INC 0;
620                fixed: 1 0;
621                rel1.to_x: "elm.text.2";
622                rel2 {
623                   relative: 0.0 1.0;
624                   to_x: "elm.text.2";
625                }
626                visible: 0;
627                align: 1.0 0.5;
628             }
629          }
630          part { name: "elm.text.1";
631             clip_to: "disclip";
632             type: TEXT;
633             mouse_events: 0;
634             scale: 1;
635             description { state: "default" 0.0;
636                rel1 {
637                   relative: 1.0 0.0;
638                   to_x: "elm.padding.left";
639                }
640                rel2 {
641                   relative: 0.0 1.0;
642                   to_x: "elm.padding.text2.left";
643                }
644                align: 0.0 0.5;
645                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
646                text {
647                   font: "SLP:style=Roman";
648                   size: GENLIST_FONT_44_INC;
649                   min: 0 1;
650                   align: 0.0 0.5;
651                   text_class: "list_item";
652                }
653             }
654             description { state: "selected" 0.0;
655                inherit: "default" 0.0;
656                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
657             }
658             GENLIST_DESCRIPTION_FLIP_ENABLED
659          }
660          GENLIST_PART_FLIP
661          GENLIST_PART_DISCLIP
662       }
663       programs {
664          // signal: elm,state,%s,active
665          //   a "check" item named %s went active
666          // signal: elm,state,%s,passive
667          //   a "check" item named %s went passive
668          // default is passive
669          program { name: "go_active";
670             signal: "elm,state,selected";
671             source: "elm";
672             action: STATE_SET "selected" 0.0;
673             target: "bg_image";
674             target: "elm.text.1";
675             target: "elm.text.2";
676             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
677          }
678          program { name: "go_passive";
679             signal: "elm,state,unselected";
680             source: "elm";
681             action: STATE_SET "default" 0.0;
682             target: "bg_image";
683             target: "elm.text.1";
684             target: "elm.text.2";
685             transition: LINEAR 0.1;
686          }
687          program { name: "go_disabled";
688             signal: "elm,state,disabled";
689             source: "elm";
690             action: STATE_SET "disabled" 0.0;
691             target: "disclip";
692          }
693          program { name: "go_enabled";
694             signal: "elm,state,enabled";
695             source: "elm";
696             action: STATE_SET "default" 0.0;
697             target: "disclip";
698          }
699          GENLIST_PROGRAM_FLIP_2TEXT
700          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
701       }
702    }
703
704 // 3.1.3
705    group { name: "elm/genlist/item/2text.6/default";
706       alias: "elm/genlist/item_odd/2text.6/default";
707       alias: "elm/genlist/item_compress/2text.6/default";
708       alias: "elm/genlist/item_compress_odd/2text.6/default";
709       data.item: "stacking" "above";
710       data.item: "selectraise" "on";
711       data.item: "texts" "elm.text.1 elm.text.2";
712       data.item: "flips" "elm.flip.content";
713       images {
714          image: "00_list_bar_press_1x80.png" COMP;
715       }
716       parts {
717          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
718          GENLIST_PART_BG_IMAGE
719          GENLIST_PART_BOTTOM_LINE
720          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
721          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
722          part { name: "elm.text.2";
723             clip_to: "disclip";
724             type: TEXT;
725             mouse_events: 0;
726             scale: 1;
727             description { state: "default" 0.0;
728                min: GENLIST_SIZE_133_INC 0;
729                fixed: 1 0;
730                rel1.to_x: "elm.padding.right";
731                rel2 {
732                   relative: 0.0 1.0;
733                   to_x: "elm.padding.right";
734                }
735                align: 1.0 0.5;
736                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
737                text {
738                   font: "SLP:style=Medium";
739                   size: GENLIST_FONT_32_INC;
740                   min: 0 1;
741                   align: 1.0 0.5;
742                   text_class: "slp_medium";
743                }
744             }
745             description { state: "selected" 0.0;
746                inherit: "default" 0.0;
747                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
748             }
749             GENLIST_DESCRIPTION_FLIP_ENABLED
750          }
751          part { name: "elm.padding.text2.left";
752             clip_to: "disclip";
753             type: RECT;
754             mouse_events: 0;
755             scale: 1;
756             description { state: "default" 0.0;
757                min: GENLIST_SIZE_32_INC 0;
758                fixed: 1 0;
759                rel1.to_x: "elm.text.2";
760                rel2 {
761                   relative: 0.0 1.0;
762                   to_x: "elm.text.2";
763                }
764                visible: 0;
765                align: 1.0 0.5;
766             }
767          }
768          part { name: "elm.text.1";
769             clip_to: "disclip";
770             type: TEXT;
771             mouse_events: 0;
772             scale: 1;
773             description { state: "default" 0.0;
774                rel1 {
775                   relative: 1.0 0.0;
776                   to_x: "elm.padding.left";
777                }
778                rel2 {
779                   relative: 0.0 1.0;
780                   to_x: "elm.padding.text2.left";
781                }
782                align: 0.0 0.5;
783                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
784                text {
785                   font: "SLP:style=Roman";
786                   size: GENLIST_FONT_44_INC;
787                   min: 0 1;
788                   align: 0.0 0.5;
789                   text_class: "list_item";
790                }
791             }
792             description { state: "selected" 0.0;
793                inherit: "default" 0.0;
794                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
795             }
796             GENLIST_DESCRIPTION_FLIP_ENABLED
797          }
798          GENLIST_PART_FLIP
799          GENLIST_PART_DISCLIP
800       }
801       programs {
802          // signal: elm,state,%s,active
803          //   a "check" item named %s went active
804          // signal: elm,state,%s,passive
805          //   a "check" item named %s went passive
806          // default is passive
807          program { name: "go_active";
808             signal: "elm,state,selected";
809             source: "elm";
810             action: STATE_SET "selected" 0.0;
811             target: "bg_image";
812             target: "elm.text.1";
813             target: "elm.text.2";
814             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
815          }
816          program { name: "go_passive";
817             signal: "elm,state,unselected";
818             source: "elm";
819             action: STATE_SET "default" 0.0;
820             target: "bg_image";
821             target: "elm.text.1";
822             target: "elm.text.2";
823             transition: LINEAR 0.1;
824          }
825          program { name: "go_disabled";
826             signal: "elm,state,disabled";
827             source: "elm";
828             action: STATE_SET "disabled" 0.0;
829             target: "disclip";
830          }
831          program { name: "go_enabled";
832             signal: "elm,state,enabled";
833             source: "elm";
834             action: STATE_SET "default" 0.0;
835             target: "disclip";
836          }
837          GENLIST_PROGRAM_FLIP_2TEXT
838          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
839       }
840    }
841
842 //3.1.4
843    group { name: "elm/genlist/item/1text.1icon/default";
844       alias: "elm/genlist/item_odd/1text.1icon/default";
845       alias: "elm/genlist/item_compress/1text.1icon/default";
846       alias: "elm/genlist/item_compress_odd/1text.1icon/default";
847       data.item: "stacking" "above";
848       data.item: "selectraise" "on";
849       data.item: "texts" "elm.text";
850       data.item: "contents" "elm.icon";
851       data.item: "flips" "elm.flip.content";
852       images {
853          image: "00_list_bar_press_1x80.png" COMP;
854       }
855       parts {
856          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
857          GENLIST_PART_BG_IMAGE
858          GENLIST_PART_BOTTOM_LINE
859          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
860          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
861          part { name: "elm.icon";
862             clip_to: "disclip";
863             type: SWALLOW;
864             scale: 1;
865             description { state: "default" 0.0;
866                fixed: 1 1;
867                rel1.to_x: "elm.padding.right";
868                rel2 {
869                   relative: 0.0 1.0;
870                   to_x: "elm.padding.right";
871                }
872                align: 1.0 0.5;
873             }
874             GENLIST_DESCRIPTION_FLIP_ENABLED
875          }
876          part { name: "elm.padding.icon.left";
877             clip_to: "disclip";
878             type: RECT;
879             scale: 1;
880             description { state: "default" 0.0;
881                min: GENLIST_PADDING_16_INC 0;
882                fixed: 1 0;
883                rel1.to_x: "elm.icon";
884                rel2 {
885                   relative: 0.0 1.0;
886                   to_x: "elm.icon";
887                }
888                align: 1.0 0.0;
889                visible: 0;
890             }
891          }
892          part { name: "elm.text";
893             clip_to: "disclip";
894             type: TEXT;
895             mouse_events: 0;
896             scale: 1;
897             description { state: "default" 0.0;
898                rel1 {
899                   relative: 1.0 0.0;
900                   to_x: "elm.padding.left";
901                }
902                rel2 {
903                   relative: 0.0 1.0;
904                   to_x: "elm.padding.icon.left";
905                }
906                align: 0.0 0.5;
907                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
908                text {
909                   font: "SLP:style=Roman";
910                   size: GENLIST_FONT_44_INC;
911                   min: 0 1;
912                   align: 0.0 0.5;
913                   text_class: "list_item";
914                }
915             }
916             description { state: "selected" 0.0;
917                inherit: "default" 0.0;
918                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
919             }
920             GENLIST_DESCRIPTION_FLIP_ENABLED
921          }
922          GENLIST_PART_FLIP
923          GENLIST_PART_DISCLIP
924       }
925       programs {
926          program { name: "go_active";
927             signal: "elm,state,selected";
928             source: "elm";
929             action: STATE_SET "selected" 0.0;
930             target: "bg_image";
931             target: "elm.text";
932             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
933          }
934          program { name: "go_passive";
935             signal: "elm,state,unselected";
936             source: "elm";
937             action: STATE_SET "default" 0.0;
938             target: "bg_image";
939             target: "elm.text";
940             transition: LINEAR 0.1;
941          }
942          program { name: "go_disabled";
943             signal: "elm,state,disabled";
944             source: "elm";
945             action: STATE_SET "disabled" 0.0;
946             target: "disclip";
947          }
948          program { name: "go_enabled";
949             signal: "elm,state,enabled";
950             source: "elm";
951             action: STATE_SET "default" 0.0;
952             target: "disclip";
953          }
954          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
955          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
956       }
957    }
958
959 // 3.1.5
960    group { name: "elm/genlist/item/1text.1icon.4/default";
961       alias: "elm/genlist/item_odd/1text.1icon.4/default";
962       alias: "elm/genlist/item_compress/1text.1icon.4/default";
963       alias: "elm/genlist/item_compress_odd/1text.1icon.4/default";
964       data.item: "stacking" "above";
965       data.item: "selectraise" "on";
966       data.item: "texts" "elm.text";
967       data.item: "contents" "elm.icon";
968       data.item: "flips" "elm.flip.content";
969       images {
970          image: "00_list_bar_press_1x80.png" COMP;
971       }
972       parts {
973          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
974          GENLIST_PART_BG_IMAGE
975          GENLIST_PART_BOTTOM_LINE
976          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
977          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
978          part { name: "elm.icon";
979             clip_to: "disclip";
980             type: SWALLOW;
981             scale: 1;
982             description { state: "default" 0.0;
983                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
984                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
985                fixed: 1 1;
986                rel1.to_x: "elm.padding.right";
987                rel2 {
988                   relative: 0.0 1.0;
989                   to_x: "elm.padding.right";
990                }
991                align: 1.0 0.5;
992             }
993             GENLIST_DESCRIPTION_FLIP_ENABLED
994          }
995          part { name: "elm.padding.icon.left";
996             clip_to: "disclip";
997             type: RECT;
998             scale: 1;
999             description { state: "default" 0.0;
1000                min: GENLIST_PADDING_16_INC 0;
1001                fixed: 1 0;
1002                rel1.to_x: "elm.icon";
1003                rel2 {
1004                   relative: 0.0 1.0;
1005                   to_x: "elm.icon";
1006                }
1007                align: 1.0 0.0;
1008                visible: 0;
1009             }
1010          }
1011          part { name: "elm.text";
1012             clip_to: "disclip";
1013             type: TEXT;
1014             mouse_events: 0;
1015             scale: 1;
1016             description { state: "default" 0.0;
1017                rel1 {
1018                   relative: 1.0 0.0;
1019                   to_x: "elm.padding.left";
1020                }
1021                rel2 {
1022                   relative: 0.0 1.0;
1023                   to_x: "elm.padding.icon.left";
1024                }
1025                align: 0.0 0.5;
1026                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
1027                text {
1028                   font: "SLP:style=Roman";
1029                   size: GENLIST_FONT_44_INC;
1030                   min: 0 1;
1031                   align: 0.0 0.5;
1032                   text_class: "list_item";
1033                }
1034             }
1035             description { state: "selected" 0.0;
1036                inherit: "default" 0.0;
1037                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
1038             }
1039             GENLIST_DESCRIPTION_FLIP_ENABLED
1040          }
1041          GENLIST_PART_FLIP
1042          GENLIST_PART_DISCLIP
1043       }
1044       programs {
1045          program { name: "go_active";
1046             signal: "elm,state,selected";
1047             source: "elm";
1048             action: STATE_SET "selected" 0.0;
1049             target: "bg_image";
1050             target: "elm.text";
1051             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1052          }
1053          program { name: "go_passive";
1054             signal: "elm,state,unselected";
1055             source: "elm";
1056             action: STATE_SET "default" 0.0;
1057             target: "bg_image";
1058             target: "elm.text";
1059             transition: LINEAR 0.1;
1060          }
1061          program { name: "go_disabled";
1062             signal: "elm,state,disabled";
1063             source: "elm";
1064             action: STATE_SET "disabled" 0.0;
1065             target: "disclip";
1066          }
1067          program { name: "go_enabled";
1068             signal: "elm,state,enabled";
1069             source: "elm";
1070             action: STATE_SET "default" 0.0;
1071             target: "disclip";
1072          }
1073          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
1074          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1075       }
1076    }
1077
1078 // 3.1.8
1079    group { name: "elm/genlist/item/1text.1icon.5/default";
1080       alias: "elm/genlist/item_odd/1text.1icon.5/default";
1081       alias: "elm/genlist/item_compress/1text.1icon.5/default";
1082       alias: "elm/genlist/item_compress_odd/1text.1icon.5/default";
1083       data.item: "stacking" "above";
1084       data.item: "selectraise" "on";
1085       data.item: "texts" "elm.text";
1086       data.item: "contents" "elm.icon";
1087       data.item: "flips" "elm.flip.content";
1088       images {
1089          image: "00_list_bar_press_1x80.png" COMP;
1090       }
1091       parts {
1092          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
1093          GENLIST_PART_BG_IMAGE
1094          GENLIST_PART_BOTTOM_LINE
1095          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
1096          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
1097          part { name: "elm.icon";
1098             clip_to: "disclip";
1099             type: SWALLOW;
1100             scale: 1;
1101             description { state: "default" 0.0;
1102                min: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
1103                max: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
1104                fixed: 1 1;
1105                rel1.to_x: "elm.padding.right";
1106                rel2 {
1107                   relative: 0.0 1.0;
1108                   to_x: "elm.padding.right";
1109                }
1110                align: 1.0 0.5;
1111             }
1112             GENLIST_DESCRIPTION_FLIP_ENABLED
1113          }
1114          part { name: "elm.padding.icon.left";
1115             clip_to: "disclip";
1116             type: RECT;
1117             scale: 1;
1118             description { state: "default" 0.0;
1119                min: GENLIST_PADDING_16_INC 0;
1120                fixed: 1 0;
1121                rel1.to_x: "elm.icon";
1122                rel2 {
1123                   relative: 0.0 1.0;
1124                   to_x: "elm.icon";
1125                }
1126                align: 1.0 0.0;
1127                visible: 0;
1128             }
1129          }
1130          part { name: "elm.text";
1131             clip_to: "disclip";
1132             type: TEXT;
1133             mouse_events: 0;
1134             scale: 1;
1135             description { state: "default" 0.0;
1136                rel1 {
1137                   relative: 1.0 0.0;
1138                   to_x: "elm.padding.left";
1139                }
1140                rel2 {
1141                   relative: 0.0 1.0;
1142                   to_x: "elm.padding.icon.left";
1143                }
1144                align: 0.0 0.5;
1145                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
1146                text {
1147                   font: "SLP:style=Roman";
1148                   size: GENLIST_FONT_44_INC;
1149                   min: 0 1;
1150                   align: 0.0 0.5;
1151                   text_class: "list_item";
1152                }
1153             }
1154             description { state: "selected" 0.0;
1155                inherit: "default" 0.0;
1156                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
1157             }
1158             GENLIST_DESCRIPTION_FLIP_ENABLED
1159          }
1160          GENLIST_PART_FLIP
1161          GENLIST_PART_DISCLIP
1162       }
1163       programs {
1164          program { name: "go_active";
1165             signal: "elm,state,selected";
1166             source: "elm";
1167             action: STATE_SET "selected" 0.0;
1168             target: "bg_image";
1169             target: "elm.text";
1170             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1171          }
1172          program { name: "go_passive";
1173             signal: "elm,state,unselected";
1174             source: "elm";
1175             action: STATE_SET "default" 0.0;
1176             target: "bg_image";
1177             target: "elm.text";
1178             transition: LINEAR 0.1;
1179          }
1180          program { name: "go_disabled";
1181             signal: "elm,state,disabled";
1182             source: "elm";
1183             action: STATE_SET "disabled" 0.0;
1184             target: "disclip";
1185          }
1186          program { name: "go_enabled";
1187             signal: "elm,state,enabled";
1188             source: "elm";
1189             action: STATE_SET "default" 0.0;
1190             target: "disclip";
1191          }
1192          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
1193          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1194       }
1195    }
1196
1197 // 3.1.9
1198    group { name: "elm/genlist/item/1text.2icon.3/default";
1199       alias: "elm/genlist/item_odd/1text.2icon.3/default";
1200       alias: "elm/genlist/item_compress/1text.2icon.3/default";
1201       alias: "elm/genlist/item_compress_odd/1text.2icon.3/default";
1202       data.item: "stacking" "above";
1203       data.item: "selectraise" "on";
1204       data.item: "texts" "elm.text";
1205       data.item: "contents" "elm.icon.1 elm.icon.2";
1206       data.item: "flips" "elm.flip.content";
1207       images {
1208          image: "00_list_bar_press_1x80.png" COMP;
1209       }
1210       parts {
1211          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
1212          GENLIST_PART_BG_IMAGE
1213          GENLIST_PART_BOTTOM_LINE
1214          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
1215          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
1216          part { name: "elm.icon.1";
1217             type: SWALLOW;
1218             clip_to: "disclip";
1219             scale: 1;
1220             description { state: "default" 0.0;
1221                min: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
1222                max: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
1223                fixed: 1 1;
1224                rel1 {
1225                   relative: 0.0 0.0;
1226                   to_x: "elm.padding.right";
1227                }
1228                rel2 {
1229                   relative: 0.0 1.0;
1230                   to_x: "elm.padding.right";
1231                }
1232                align: 1.0 0.5;
1233             }
1234             GENLIST_DESCRIPTION_FLIP_ENABLED
1235          }
1236          part { name: "elm.padding.icon1.left";
1237             type: RECT;
1238             clip_to: "disclip";
1239             scale: 1;
1240             description { state: "default" 0.0;
1241                min: GENLIST_PADDING_16_INC 0;
1242                fixed: 1 0;
1243                visible: 0;
1244                rel1.to_x: "elm.icon.1";
1245                rel2 {
1246                   relative: 0.0 1.0;
1247                   to_x: "elm.icon.1";
1248                }
1249                align: 1.0 0.0;
1250             }
1251          }
1252          part { name: "elm.padding.icon1.left2";
1253             type: RECT;
1254             clip_to: "disclip";
1255             scale: 1;
1256             description { state: "default" 0.0;
1257                min: GENLIST_PADDING_64_INC 0;
1258                fixed: 1 0;
1259                visible: 0;
1260                rel1.to_x: "elm.icon.1";
1261                rel2 {
1262                   relative: 0.0 1.0;
1263                   to_x: "elm.icon.1";
1264                }
1265                align: 1.0 0.0;
1266             }
1267          }
1268          part { name: "elm.text";
1269             type: TEXT;
1270             clip_to: "disclip";
1271             mouse_events: 0;
1272             scale: 1;
1273             description { state: "default" 0.0;
1274                rel1 {
1275                   relative: 1.0 0.0;
1276                   to_x: "elm.padding.left";
1277                }
1278                rel2 {
1279                   relative: 0.0 1.0;
1280                   to_x: "elm.padding.icon1.left2";
1281                }
1282                align: 0.0 0.5;
1283                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
1284                text {
1285                   font: "SLP:style=Roman";
1286                   size: GENLIST_FONT_44_INC;
1287                   min: 0 1;
1288                   max: 1 0;
1289                   align: 0.0 0.5;
1290                   text_class: "list_item";
1291                }
1292             }
1293             description { state: "selected" 0.0;
1294                inherit: "default" 0.0;
1295                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
1296             }
1297             GENLIST_DESCRIPTION_FLIP_ENABLED
1298          }
1299          part { name: "elm.padding.text.right";
1300             type: RECT;
1301             clip_to: "disclip";
1302             scale: 1;
1303             description { state: "default" 0.0;
1304                min: GENLIST_PADDING_16_INC 0;
1305                fixed: 1 0;
1306                rel1 {
1307                   relative: 1.0 0.0;
1308                   to_x: "elm.text";
1309                }
1310                rel2.to_x: "elm.text";
1311                align: 0.0 0.0;
1312                visible: 0;
1313             }
1314          }
1315          part { name: "elm.icon.2.rect";
1316             type: RECT;
1317             clip_to: "disclip";
1318             scale: 1;
1319             description { state: "default" 0.0;
1320                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
1321                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
1322                rel1 {
1323                   relative: 1.0 0.0;
1324                   to_x: "elm.padding.text.right";
1325                }
1326                rel2 {
1327                   relative: 0.0 1.0;
1328                   to_x: "elm.padding.icon1.left";
1329                }
1330                align: 0.0 0.5;
1331                color: 0 0 0 0;
1332             }
1333             GENLIST_DESCRIPTION_FLIP_ENABLED
1334          }
1335          part { name: "elm.icon.2";
1336             type: SWALLOW;
1337             clip_to: "disclip";
1338             description { state: "default" 0.0;
1339                rel1.to: "elm.icon.2.rect";
1340                rel2.to: "elm.icon.2.rect";
1341             }
1342             GENLIST_DESCRIPTION_FLIP_ENABLED
1343          }
1344          GENLIST_PART_FLIP
1345          GENLIST_PART_DISCLIP
1346       }
1347       programs {
1348          program { name: "go_active";
1349             signal: "elm,state,selected";
1350             source: "elm";
1351             action: STATE_SET "selected" 0.0;
1352             target: "bg_image";
1353             target: "elm.text";
1354             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1355          }
1356          program { name: "go_passive";
1357             signal: "elm,state,unselected";
1358             source: "elm";
1359             action: STATE_SET "default" 0.0;
1360             target: "bg_image";
1361             target: "elm.text";
1362             transition: LINEAR 0.1;
1363          }
1364          program { name: "go_disabled";
1365             signal: "elm,state,disabled";
1366             source: "elm";
1367             action: STATE_SET "disabled" 0.0;
1368             target: "disclip";
1369          }
1370          program { name: "go_enabled";
1371             signal: "elm,state,enabled";
1372             source: "elm";
1373             action: STATE_SET "default" 0.0;
1374             target: "disclip";
1375          }
1376          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
1377          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1378       }
1379    }
1380
1381    group { name: "elm/genlist/item_compress/1text.2icon.3.tb/default";
1382       inherit: "elm/genlist/item/1text.2icon.3/default";
1383       parts {
1384          part { name: "elm.text";
1385             type: TEXTBLOCK;
1386             clip_to: "disclip";
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.left";
1393                }
1394                rel2 {
1395                   relative: 0.0 1.0;
1396                   to_x: "elm.padding.icon1.left2";
1397                }
1398                align: 0.0 0.5;
1399                text {
1400                   style: "genlist_default_textblock_style";
1401                   min: 0 1;
1402                   max: 1 0;
1403                   align: 0.0 0.5;
1404                }
1405             }
1406             description { state: "selected" 0.0;
1407                inherit: "default" 0.0;
1408                text.style: "genlist_default_textblock_selected_style";
1409             }
1410             GENLIST_DESCRIPTION_FLIP_ENABLED
1411          }
1412       }
1413    }
1414
1415 // 3.1.10
1416    group { name: "elm/genlist/item/1text.1icon.2/default";
1417       alias: "elm/genlist/item_odd/1text.1icon.2/default";
1418       alias: "elm/genlist/item_compress/1text.1icon.2/default";
1419       alias: "elm/genlist/item_compress_odd/1text.1icon.2/default";
1420       data.item: "stacking" "above";
1421       data.item: "selectraise" "on";
1422       data.item: "texts" "elm.text";
1423       data.item: "contents" "elm.icon";
1424       data.item: "flips" "elm.flip.content";
1425       images {
1426          image: "00_list_bar_press_1x80.png" COMP;
1427       }
1428       parts {
1429          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
1430          GENLIST_PART_BG_IMAGE
1431          GENLIST_PART_BOTTOM_LINE
1432          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
1433          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
1434          part { name: "elm.icon";
1435             clip_to: "disclip";
1436             type: SWALLOW;
1437             scale: 1;
1438             description { state: "default" 0.0;
1439                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
1440                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
1441                fixed: 1 1;
1442                rel1 {
1443                   relative: 1.0 0.0;
1444                   to_x: "elm.padding.left";
1445                }
1446                rel2 {
1447                   relative: 1.0 1.0;
1448                   to_x: "elm.padding.left";
1449                }
1450                align: 0.0 0.5;
1451             }
1452             GENLIST_DESCRIPTION_FLIP_ENABLED
1453          }
1454          part { name: "elm.padding.icon.right";
1455             clip_to: "disclip";
1456             type: RECT;
1457             scale: 1;
1458             description { state: "default" 0.0;
1459                min: GENLIST_PADDING_16_INC 0;
1460                fixed: 1 0;
1461                rel1 {
1462                   relative: 1.0 0.0;
1463                   to_x: "elm.icon";
1464                }
1465                rel2.to_x: "elm.icon";
1466                visible: 0;
1467             }
1468          }
1469          part { name: "elm.text";
1470             clip_to: "disclip";
1471             type: TEXT;
1472             mouse_events: 0;
1473             scale: 1;
1474             description { state: "default" 0.0;
1475                rel1 {
1476                   relative: 1.0 0.0;
1477                   to_x: "elm.padding.icon.right";
1478                }
1479                rel2 {
1480                   relative: 0.0 1.0;
1481                   to_x: "elm.padding.right";
1482                }
1483                align: 0.0 0.5;
1484                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
1485                text {
1486                   font: "SLP:style=Roman";
1487                   size: GENLIST_FONT_44_INC;
1488                   min: 0 1;
1489                   align: 0.0 0.5;
1490                   text_class: "list_item";
1491                }
1492             }
1493             description { state: "selected" 0.0;
1494                inherit: "default" 0.0;
1495                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
1496             }
1497             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
1498             GENLIST_DESCRIPTION_FLIP_ENABLED
1499          }
1500          GENLIST_PART_FLIP
1501          GENLIST_PART_DISCLIP
1502       }
1503       programs {
1504          program { name: "go_active";
1505             signal: "elm,state,selected";
1506             source: "elm";
1507             action: STATE_SET "selected" 0.0;
1508             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_1TEXT
1509             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1510          }
1511          program { name: "go_passive";
1512             signal: "elm,state,unselected";
1513             source: "elm";
1514             action: STATE_SET "default" 0.0;
1515             target: "bg_image";
1516             target: "elm.text";
1517             transition: LINEAR 0.1;
1518          }
1519          program { name: "go_disabled";
1520             signal: "elm,state,disabled";
1521             source: "elm";
1522             action: STATE_SET "disabled" 0.0;
1523             target: "disclip";
1524          }
1525          program { name: "go_enabled";
1526             signal: "elm,state,enabled";
1527             source: "elm";
1528             action: STATE_SET "default" 0.0;
1529             target: "disclip";
1530          }
1531          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
1532          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1533       }
1534    }
1535
1536    group { name: "elm/genlist/item_compress/1text.1icon.2.tb/default";
1537       inherit: "elm/genlist/item/1text.1icon.2/default";
1538       parts {
1539          part { name: "elm.text";
1540             clip_to: "disclip";
1541             type: TEXTBLOCK;
1542             mouse_events: 0;
1543             scale: 1;
1544             description { state: "default" 0.0;
1545                rel1 {
1546                   relative: 1.0 0.0;
1547                   to_x: "elm.padding.icon.right";
1548                }
1549                rel2 {
1550                   relative: 0.0 1.0;
1551                   to_x: "elm.padding.right";
1552                }
1553                align: 0.0 0.5;
1554                text {
1555                   style: "genlist_default_textblock_style";
1556                   min: 0 1;
1557                   align: 0.0 0.5;
1558                }
1559             }
1560             description { state: "selected" 0.0;
1561                inherit: "default" 0.0;
1562                text.style: "genlist_default_textblock_selected_style";
1563             }
1564             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
1565             GENLIST_DESCRIPTION_FLIP_ENABLED
1566          }
1567       }
1568    }
1569
1570
1571 // 3.1.11
1572    group { name: "elm/genlist/item/2text.1icon/default";
1573       alias: "elm/genlist/item_odd/2text.1icon/default";
1574       alias: "elm/genlist/item_compress/2text.1icon/default";
1575       alias: "elm/genlist/item_compress_odd/2text.1icon/default";
1576       data.item: "stacking" "above";
1577       data.item: "selectraise" "on";
1578       data.item: "texts" "elm.text.1 elm.text.2";
1579       data.item: "contents" "elm.icon";
1580       data.item: "flips" "elm.flip.content";
1581       images {
1582          image: "00_list_bar_press_1x80.png" COMP;
1583       }
1584       parts {
1585          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
1586          GENLIST_PART_BG_IMAGE
1587          GENLIST_PART_BOTTOM_LINE
1588          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
1589          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
1590          part { name: "elm.icon";
1591             clip_to: "disclip";
1592             type: SWALLOW;
1593             scale: 1;
1594             description { state: "default" 0.0;
1595                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
1596                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
1597                fixed: 1 1;
1598                rel1 {
1599                   relative: 1.0 0.0;
1600                   to_x: "elm.padding.left";
1601                }
1602                rel2 {
1603                   relative: 1.0 1.0;
1604                   to_x: "elm.padding.left";
1605                }
1606                align: 0.0 0.5;
1607             }
1608             GENLIST_DESCRIPTION_FLIP_ENABLED
1609          }
1610          part { name: "elm.padding.icon.right";
1611             clip_to: "disclip";
1612             type: RECT;
1613             scale: 1;
1614             description { state: "default" 0.0;
1615                min: GENLIST_PADDING_16_INC 0;
1616                fixed: 1 0;
1617                rel1 {
1618                   relative: 1.0 0.0;
1619                   to_x: "elm.icon";
1620                }
1621                rel2.to_x: "elm.icon";
1622                visible: 0;
1623             }
1624          }
1625          part { name: "elm.text.2";
1626             clip_to: "disclip";
1627             type: TEXT;
1628             mouse_events: 0;
1629             scale: 1;
1630             description { state: "default" 0.0;
1631                min: GENLIST_SIZE_133_INC 0;
1632                fixed: 1 0;
1633                rel1.to_x: "elm.padding.right";
1634                rel2 {
1635                   relative: 0.0 1.0;
1636                   to_x: "elm.padding.right";
1637                }
1638                align: 1.0 0.5;
1639                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
1640                text {
1641                   font: "SLP:style=Medium";
1642                   size: GENLIST_FONT_32_INC;
1643                   min: 0 1;
1644                   align: 1.0 0.5;
1645                   text_class: "slp_medium";
1646                }
1647             }
1648             description { state: "selected" 0.0;
1649                inherit: "default" 0.0;
1650                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
1651             }
1652             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
1653             GENLIST_DESCRIPTION_FLIP_ENABLED
1654          }
1655          part { name: "elm.padding.text2.left";
1656             clip_to: "disclip";
1657             type: RECT;
1658             mouse_events: 0;
1659             scale: 1;
1660             description { state: "default" 0.0;
1661                min: GENLIST_SIZE_32_INC 0;
1662                fixed: 1 0;
1663                rel1.to_x: "elm.text.2";
1664                rel2 {
1665                   relative: 0.0 1.0;
1666                   to_x: "elm.text.2";
1667                }
1668                visible: 0;
1669                align: 1.0 0.5;
1670             }
1671          }
1672          part { name: "elm.text.1";
1673             clip_to: "disclip";
1674             type: TEXT;
1675             mouse_events: 0;
1676             scale: 1;
1677             description { state: "default" 0.0;
1678                rel1 {
1679                   relative: 1.0 0.0;
1680                   to_x: "elm.padding.icon.right";
1681                }
1682                rel2 {
1683                   relative: 0.0 1.0;
1684                   to_x: "elm.padding.text2.left";
1685                }
1686                align: 0.0 0.5;
1687                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
1688                text {
1689                   font: "SLP:style=Roman";
1690                   size: GENLIST_FONT_44_INC;
1691                   min: 0 1;
1692                   align: 0.0 0.5;
1693                   text_class: "list_item";
1694                }
1695             }
1696             description { state: "selected" 0.0;
1697                inherit: "default" 0.0;
1698                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
1699             }
1700             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
1701             GENLIST_DESCRIPTION_FLIP_ENABLED
1702          }
1703          GENLIST_PART_FLIP
1704          GENLIST_PART_DISCLIP
1705       }
1706       programs {
1707          program { name: "go_active";
1708             signal: "elm,state,selected";
1709             source: "elm";
1710             action: STATE_SET "selected" 0.0;
1711             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_2TEXT
1712             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1713          }
1714          program { name: "go_passive";
1715             signal: "elm,state,unselected";
1716             source: "elm";
1717             action: STATE_SET "default" 0.0;
1718             target: "bg_image";
1719             target: "elm.text.1";
1720             target: "elm.text.2";
1721             transition: LINEAR 0.1;
1722          }
1723          program { name: "go_disabled";
1724             signal: "elm,state,disabled";
1725             source: "elm";
1726             action: STATE_SET "disabled" 0.0;
1727             target: "disclip";
1728          }
1729          program { name: "go_enabled";
1730             signal: "elm,state,enabled";
1731             source: "elm";
1732             action: STATE_SET "default" 0.0;
1733             target: "disclip";
1734          }
1735          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
1736          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1737       }
1738    }
1739
1740 // 3.1.12
1741    group { name: "elm/genlist/item/2text.1icon.6/default";
1742       alias: "elm/genlist/item_odd/2text.1icon.6/default";
1743       alias: "elm/genlist/item_compress/2text.1icon.6/default";
1744       alias: "elm/genlist/item_compress_odd/2text.1icon.6/default";
1745       data.item: "stacking" "above";
1746       data.item: "selectraise" "on";
1747       data.item: "texts" "elm.text.1 elm.text.2";
1748       data.item: "contents" "elm.icon";
1749       data.item: "flips" "elm.flip.content";
1750       images {
1751          image: "00_list_bar_press_1x80.png" COMP;
1752       }
1753       parts {
1754          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
1755          GENLIST_PART_BG_IMAGE
1756          GENLIST_PART_BOTTOM_LINE
1757          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
1758          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
1759          part { name: "elm.icon";
1760             clip_to: "disclip";
1761             type: SWALLOW;
1762             scale: 1;
1763             description { state: "default" 0.0;
1764                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
1765                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
1766                fixed: 1 1;
1767                rel1 {
1768                   relative: 1.0 0.0;
1769                   to_x: "elm.padding.left";
1770                }
1771                rel2 {
1772                   relative: 1.0 1.0;
1773                   to_x: "elm.padding.left";
1774                }
1775                align: 0.0 0.5;
1776             }
1777             GENLIST_DESCRIPTION_FLIP_ENABLED
1778          }
1779          part { name: "elm.padding.icon.right";
1780             clip_to: "disclip";
1781             type: RECT;
1782             scale: 1;
1783             description { state: "default" 0.0;
1784                min: GENLIST_PADDING_16_INC 0;
1785                fixed: 1 0;
1786                rel1 {
1787                   relative: 1.0 0.0;
1788                   to_x: "elm.icon";
1789                }
1790                rel2.to_x: "elm.icon";
1791                visible: 0;
1792             }
1793          }
1794          part { name: "elm.text.2";
1795             clip_to: "disclip";
1796             type: TEXT;
1797             mouse_events: 0;
1798             scale: 1;
1799             description { state: "default" 0.0;
1800                min: GENLIST_SIZE_133_INC 0;
1801                fixed: 1 0;
1802                rel1.to_x: "elm.padding.right";
1803                rel2 {
1804                   relative: 0.0 1.0;
1805                   to_x: "elm.padding.right";
1806                }
1807                align: 1.0 0.5;
1808                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
1809                text {
1810                   font: "SLP:style=Medium";
1811                   size: GENLIST_FONT_32_INC;
1812                   min: 0 1;
1813                   align: 1.0 0.5;
1814                   text_class: "slp_medium";
1815                }
1816             }
1817             description { state: "selected" 0.0;
1818                inherit: "default" 0.0;
1819                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
1820             }
1821             GENLIST_DESCRIPTION_FLIP_ENABLED
1822          }
1823          part { name: "elm.padding.text2.left";
1824             clip_to: "disclip";
1825             type: RECT;
1826             mouse_events: 0;
1827             scale: 1;
1828             description { state: "default" 0.0;
1829                min: GENLIST_SIZE_32_INC 0;
1830                fixed: 1 0;
1831                rel1.to_x: "elm.text.2";
1832                rel2 {
1833                   relative: 0.0 1.0;
1834                   to_x: "elm.text.2";
1835                }
1836                visible: 0;
1837                align: 1.0 0.5;
1838             }
1839          }
1840          part { name: "elm.text.1";
1841             clip_to: "disclip";
1842             type: TEXT;
1843             mouse_events: 0;
1844             scale: 1;
1845             description { state: "default" 0.0;
1846                rel1 {
1847                   relative: 1.0 0.0;
1848                   to_x: "elm.padding.icon.right";
1849                }
1850                rel2 {
1851                   relative: 0.0 1.0;
1852                   to_x: "elm.padding.text2.left";
1853                }
1854                align: 0.0 0.5;
1855                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
1856                text {
1857                   font: "SLP:style=Roman";
1858                   size: GENLIST_FONT_44_INC;
1859                   min: 0 1;
1860                   align: 0.0 0.5;
1861                   text_class: "list_item";
1862                }
1863             }
1864             description { state: "selected" 0.0;
1865                inherit: "default" 0.0;
1866                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
1867             }
1868             GENLIST_DESCRIPTION_FLIP_ENABLED
1869          }
1870          GENLIST_PART_FLIP
1871          GENLIST_PART_DISCLIP
1872       }
1873       programs {
1874          program { name: "go_active";
1875             signal: "elm,state,selected";
1876             source: "elm";
1877             action: STATE_SET "selected" 0.0;
1878             target: "bg_image";
1879             target: "elm.text.1";
1880             target: "elm.text.2";
1881             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1882          }
1883          program { name: "go_passive";
1884             signal: "elm,state,unselected";
1885             source: "elm";
1886             action: STATE_SET "default" 0.0;
1887             target: "bg_image";
1888             target: "elm.text.1";
1889             target: "elm.text.2";
1890             transition: LINEAR 0.1;
1891          }
1892          program { name: "go_disabled";
1893             signal: "elm,state,disabled";
1894             source: "elm";
1895             action: STATE_SET "disabled" 0.0;
1896             target: "disclip";
1897          }
1898          program { name: "go_enabled";
1899             signal: "elm,state,enabled";
1900             source: "elm";
1901             action: STATE_SET "default" 0.0;
1902             target: "disclip";
1903          }
1904          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
1905          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1906       }
1907    }
1908
1909 // 3.1.13
1910    group { name: "elm/genlist/item/1text.2icon/default";
1911       alias: "elm/genlist/item_odd/1text.2icon/default";
1912       alias: "elm/genlist/item_compress/1text.2icon/default";
1913       alias: "elm/genlist/item_compress_odd/1text.2icon/default";
1914       data.item: "stacking" "above";
1915       data.item: "selectraise" "on";
1916       data.item: "texts" "elm.text";
1917       data.item: "contents" "elm.icon.1 elm.icon.2";
1918       data.item: "flips" "elm.flip.content";
1919       images {
1920          image: "00_list_bar_press_1x80.png" COMP;
1921       }
1922       parts {
1923          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
1924          GENLIST_PART_BG_IMAGE
1925          GENLIST_PART_BOTTOM_LINE
1926          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
1927          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
1928          part { name: "elm.icon.1";
1929             clip_to: "disclip";
1930             type: SWALLOW;
1931             scale: 1;
1932             description { state: "default" 0.0;
1933                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
1934                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
1935                fixed: 1 1;
1936                rel1 {
1937                   relative: 1.0 0.0;
1938                   to_x: "elm.padding.left";
1939                }
1940                rel2 {
1941                   relative: 1.0 1.0;
1942                   to_x: "elm.padding.left";
1943                }
1944                align: 0.0 0.5;
1945             }
1946             GENLIST_DESCRIPTION_FLIP_ENABLED
1947          }
1948          part { name: "elm.padding.icon1.right";
1949             clip_to: "disclip";
1950             type: RECT;
1951             scale: 1;
1952             description { state: "default" 0.0;
1953                min: GENLIST_SIZE_16_INC 0;
1954                fixed: 1 0;
1955                rel1 {
1956                   relative: 1.0 0.0;
1957                   to_x: "elm.icon.1";
1958                }
1959                rel2.to_x: "elm.icon.1";
1960                visible: 0;
1961             }
1962          }
1963          part { name: "elm.icon.2";
1964             clip_to: "disclip";
1965             type: SWALLOW;
1966             scale: 1;
1967             description { state: "default" 0.0;
1968                fixed: 1 1;
1969                rel1 {
1970                   relative: 0.0 0.0;
1971                   to_x: "elm.padding.right";
1972                }
1973                rel2 {
1974                   relative: 0.0 1.0;
1975                   to_x: "elm.padding.right";
1976                }
1977                align: 1.0 0.5;
1978             }
1979             GENLIST_DESCRIPTION_FLIP_ENABLED
1980          }
1981          part { name: "elm.padding.icon2.left";
1982             clip_to: "disclip";
1983             type: RECT;
1984             scale: 1;
1985             description { state: "default" 0.0;
1986                min: GENLIST_PADDING_16_INC 0;
1987                fixed: 1 0;
1988                rel1.to_x: "elm.icon.2";
1989                rel2 {
1990                   relative: 0.0 1.0;
1991                   to_x: "elm.icon.2";
1992                }
1993                align: 1.0 0.0;
1994                visible: 0;
1995             }
1996          }
1997          part { name: "elm.text";
1998             clip_to: "disclip";
1999             type: TEXT;
2000             mouse_events: 0;
2001             scale: 1;
2002             description { state: "default" 0.0;
2003                rel1 {
2004                   relative: 1.0 0.0;
2005                   to_x: "elm.padding.icon1.right";
2006                }
2007                rel2 {
2008                   relative: 0.0 1.0;
2009                   to_x: "elm.padding.icon2.left";
2010                }
2011                align: 0.0 0.5;
2012                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
2013                text {
2014                   font: "SLP:style=Roman";
2015                   size: GENLIST_FONT_44_INC;
2016                   min: 0 1;
2017                   align: 0.0 0.5;
2018                   text_class: "list_item";
2019                }
2020             }
2021             description { state: "selected" 0.0;
2022                inherit: "default" 0.0;
2023                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
2024             }
2025             GENLIST_DESCRIPTION_FLIP_ENABLED
2026          }
2027          GENLIST_PART_FLIP
2028          GENLIST_PART_DISCLIP
2029       }
2030       programs {
2031          program { name: "go_active";
2032             signal: "elm,state,selected";
2033             source: "elm";
2034             action: STATE_SET "selected" 0.0;
2035             target: "bg_image";
2036             target: "elm.text";
2037             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2038          }
2039          program { name: "go_passive";
2040             signal: "elm,state,unselected";
2041             source: "elm";
2042             action: STATE_SET "default" 0.0;
2043             target: "bg_image";
2044             target: "elm.text";
2045             transition: LINEAR 0.1;
2046          }
2047          program { name: "go_disabled";
2048             signal: "elm,state,disabled";
2049             source: "elm";
2050             action: STATE_SET "disabled" 0.0;
2051             target: "disclip";
2052          }
2053          program { name: "go_enabled";
2054             signal: "elm,state,enabled";
2055             source: "elm";
2056             action: STATE_SET "default" 0.0;
2057             target: "disclip";
2058          }
2059          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
2060          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2061       }
2062    }
2063
2064 // 3.1.14
2065    group { name: "elm/genlist/item/1text.2icon.6/default";
2066       alias: "elm/genlist/item_odd/1text.2icon.6/default";
2067       alias: "elm/genlist/item_compress/1text.2icon.6/default";
2068       alias: "elm/genlist/item_compress_odd/1text.2icon.6/default";
2069       data.item: "stacking" "above";
2070       data.item: "selectraise" "on";
2071       data.item: "texts" "elm.text";
2072       data.item: "contents" "elm.icon.1 elm.icon.2";
2073       data.item: "flips" "elm.flip.content";
2074       images {
2075          image: "00_list_bar_press_1x80.png" COMP;
2076       }
2077       parts {
2078          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
2079          GENLIST_PART_BG_IMAGE
2080          GENLIST_PART_BOTTOM_LINE
2081          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
2082          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
2083          part { name: "elm.icon.1";
2084             clip_to: "disclip";
2085             type: SWALLOW;
2086             scale: 1;
2087             description { state: "default" 0.0;
2088                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
2089                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
2090                fixed: 1 1;
2091                rel1 {
2092                   relative: 1.0 0.0;
2093                   to_x: "elm.padding.left";
2094                }
2095                rel2 {
2096                   relative: 1.0 1.0;
2097                   to_x: "elm.padding.left";
2098                }
2099                align: 0.0 0.5;
2100             }
2101             GENLIST_DESCRIPTION_FLIP_ENABLED
2102          }
2103          part { name: "elm.padding.icon1.right";
2104             clip_to: "disclip";
2105             type: RECT;
2106             scale: 1;
2107             description { state: "default" 0.0;
2108                min: GENLIST_PADDING_16_INC 0;
2109                fixed: 1 0;
2110                rel1 {
2111                   relative: 1.0 0.0;
2112                   to_x: "elm.icon.1";
2113                }
2114                rel2.to_x: "elm.icon.1";
2115                visible: 0;
2116             }
2117          }
2118          part { name: "elm.icon.2";
2119             clip_to: "disclip";
2120             type: SWALLOW;
2121             scale: 1;
2122             description { state: "default" 0.0;
2123                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
2124                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
2125                fixed: 1 1;
2126                rel1 {
2127                   relative: 0.0 0.0;
2128                   to_x: "elm.padding.right";
2129                }
2130                rel2 {
2131                   relative: 0.0 1.0;
2132                   to_x: "elm.padding.right";
2133                }
2134                align: 1.0 0.5;
2135             }
2136             GENLIST_DESCRIPTION_FLIP_ENABLED
2137          }
2138          part { name: "elm.padding.icon2.left";
2139             clip_to: "disclip";
2140             type: RECT;
2141             scale: 1;
2142             description { state: "default" 0.0;
2143                min: GENLIST_PADDING_16_INC 0;
2144                fixed: 1 0;
2145                rel1.to_x: "elm.icon.2";
2146                rel2 {
2147                   relative: 0.0 1.0;
2148                   to_x: "elm.icon.2";
2149                }
2150                align: 1.0 0.0;
2151                visible: 0;
2152             }
2153          }
2154          part { name: "elm.text";
2155             clip_to: "disclip";
2156             type: TEXT;
2157             mouse_events: 0;
2158             scale: 1;
2159             description { state: "default" 0.0;
2160                rel1 {
2161                   relative: 1.0 0.0;
2162                   to_x: "elm.padding.icon1.right";
2163                }
2164                rel2 {
2165                   relative: 0.0 1.0;
2166                   to_x: "elm.padding.icon2.left";
2167                }
2168                align: 0.0 0.5;
2169                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
2170                text {
2171                   font: "SLP:style=Roman";
2172                   size: GENLIST_FONT_44_INC;
2173                   min: 0 1;
2174                   align: 0.0 0.5;
2175                   text_class: "list_item";
2176                }
2177             }
2178             description { state: "selected" 0.0;
2179                inherit: "default" 0.0;
2180                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
2181             }
2182             GENLIST_DESCRIPTION_FLIP_ENABLED
2183          }
2184          GENLIST_PART_FLIP
2185          GENLIST_PART_DISCLIP
2186       }
2187       programs {
2188          program { name: "go_active";
2189             signal: "elm,state,selected";
2190             source: "elm";
2191             action: STATE_SET "selected" 0.0;
2192             target: "bg_image";
2193             target: "elm.text";
2194             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2195          }
2196          program { name: "go_passive";
2197             signal: "elm,state,unselected";
2198             source: "elm";
2199             action: STATE_SET "default" 0.0;
2200             target: "bg_image";
2201             target: "elm.text";
2202             transition: LINEAR 0.1;
2203          }
2204          program { name: "go_disabled";
2205             signal: "elm,state,disabled";
2206             source: "elm";
2207             action: STATE_SET "disabled" 0.0;
2208             target: "disclip";
2209          }
2210          program { name: "go_enabled";
2211             signal: "elm,state,enabled";
2212             source: "elm";
2213             action: STATE_SET "default" 0.0;
2214             target: "disclip";
2215          }
2216          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
2217          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2218       }
2219    }
2220
2221    group { name: "elm/genlist/item_compress/1text.2icon.6.tb/default";
2222       inherit: "elm/genlist/item/1text.2icon.6/default";
2223       parts {
2224          part { name: "elm.text";
2225             clip_to: "disclip";
2226             type: TEXTBLOCK;
2227             mouse_events: 0;
2228             scale: 1;
2229             description { state: "default" 0.0;
2230                rel1 {
2231                   relative: 1.0 0.0;
2232                   to_x: "elm.padding.icon1.right";
2233                }
2234                rel2 {
2235                   relative: 0.0 1.0;
2236                   to_x: "elm.padding.icon2.left";
2237                }
2238                align: 0.0 0.5;
2239                text {
2240                   style: "genlist_default_textblock_style";
2241                   min: 0 1;
2242                   align: 0.0 0.5;
2243                }
2244             }
2245             description { state: "selected" 0.0;
2246                inherit: "default" 0.0;
2247                text.style: "genlist_default_textblock_selected_style";
2248             }
2249             GENLIST_DESCRIPTION_FLIP_ENABLED
2250          }
2251       }
2252    }
2253
2254    group { name: "elm/genlist/item/1text.1icon.3/default";
2255       alias: "elm/genlist/item_odd/1text.1icon.3/default";
2256       alias: "elm/genlist/item_compress/1text.1icon.3/default";
2257       alias: "elm/genlist/item_compress_odd/1text.1icon.3/default";
2258       data.item: "stacking" "above";
2259       data.item: "selectraise" "on";
2260       data.item: "texts" "elm.text";
2261       data.item: "contents" "elm.icon";
2262       data.item: "flips" "elm.flip.content";
2263       images {
2264          image: "00_list_bar_press_1x80.png" COMP;
2265       }
2266       parts {
2267          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
2268          GENLIST_PART_BG_IMAGE
2269          GENLIST_PART_BOTTOM_LINE
2270          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
2271          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
2272          part { name: "elm.icon";
2273             clip_to: "disclip";
2274             type: SWALLOW;
2275             scale: 1;
2276             description { state: "default" 0.0;
2277                min: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
2278                max: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
2279                fixed: 1 1;
2280                rel1 {
2281                   relative: 1.0 0.0;
2282                   to_x: "elm.padding.left";
2283                }
2284                rel2.to_x: "elm.padding.left";
2285                align: 0.0 0.5;
2286             }
2287             GENLIST_DESCRIPTION_FLIP_ENABLED
2288          }
2289          part { name: "elm.padding.icon.right";
2290             clip_to: "disclip";
2291             type: RECT;
2292             scale: 1;
2293             description { state: "default" 0.0;
2294                min: GENLIST_PADDING_16_INC 0;
2295                fixed: 1 0;
2296                rel1 {
2297                   relative: 1.0 0.0;
2298                   to_x: "elm.icon";
2299                }
2300                rel2.to_x: "elm.icon";
2301                visible: 0;
2302             }
2303          }
2304          part { name: "elm.text";
2305             clip_to: "disclip";
2306             type: TEXT;
2307             mouse_events: 0;
2308             scale: 1;
2309             description { state: "default" 0.0;
2310                rel1 {
2311                   relative: 1.0 0.0;
2312                   to_x: "elm.padding.icon.right";
2313                }
2314                rel2 {
2315                   relative: 0.0 1.0;
2316                   to_x: "elm.padding.right";
2317                }
2318                align: 0.0 0.5;
2319                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
2320                text {
2321                   font: "SLP:style=Roman";
2322                   size: GENLIST_FONT_44_INC;
2323                   min: 0 1;
2324                   align: 0.0 0.5;
2325                   text_class: "list_item";
2326                }
2327             }
2328             description { state: "selected" 0.0;
2329                inherit: "default" 0.0;
2330                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
2331             }
2332             GENLIST_DESCRIPTION_FLIP_ENABLED
2333          }
2334          GENLIST_PART_FLIP
2335          GENLIST_PART_DISCLIP
2336       }
2337       programs {
2338          program { name: "go_active";
2339             signal: "elm,state,selected";
2340             source: "elm";
2341             action: STATE_SET "selected" 0.0;
2342             target: "bg_image";
2343             target: "elm.text";
2344             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2345          }
2346          program { name: "go_passive";
2347             signal: "elm,state,unselected";
2348             source: "elm";
2349             action: STATE_SET "default" 0.0;
2350             target: "bg_image";
2351             target: "elm.text";
2352             transition: LINEAR 0.1;
2353          }
2354          program { name: "go_disabled";
2355             signal: "elm,state,disabled";
2356             source: "elm";
2357             action: STATE_SET "disabled" 0.0;
2358             target: "disclip";
2359          }
2360          program { name: "go_enabled";
2361             signal: "elm,state,enabled";
2362             source: "elm";
2363             action: STATE_SET "default" 0.0;
2364             target: "disclip";
2365          }
2366          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
2367          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2368       }
2369    }
2370
2371 // 3.1.17
2372    group { name: "elm/genlist/item/1text.2icon.4/default";
2373       alias: "elm/genlist/item_odd/1text.2icon.4/default";
2374       alias: "elm/genlist/item_compress/1text.2icon.4/default";
2375       alias: "elm/genlist/item_compress_odd/1text.2icon.4/default";
2376       data.item: "stacking" "above";
2377       data.item: "selectraise" "on";
2378       data.item: "texts" "elm.text";
2379       data.item: "contents" "elm.icon.1 elm.icon.2";
2380       data.item: "flips" "elm.flip.content";
2381       images {
2382          image: "00_list_bar_press_1x80.png" COMP;
2383       }
2384       parts {
2385          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
2386          GENLIST_PART_BG_IMAGE
2387          GENLIST_PART_BOTTOM_LINE
2388          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
2389          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
2390          part { name: "elm.icon.1";
2391             clip_to: "disclip";
2392             type: SWALLOW;
2393             scale: 1;
2394             description { state: "default" 0.0;
2395                min: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
2396                max: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
2397                fixed: 1 1;
2398                rel1 {
2399                   relative: 1.0 0.0;
2400                   to_x: "elm.padding.left";
2401                }
2402                rel2.to_x: "elm.padding.left";
2403                align: 0.0 0.5;
2404             }
2405             GENLIST_DESCRIPTION_FLIP_ENABLED
2406          }
2407          part { name: "elm.padding.icon1.right";
2408             clip_to: "disclip";
2409             type: RECT;
2410             scale: 1;
2411             description { state: "default" 0.0;
2412                min: GENLIST_PADDING_16_INC 0;
2413                fixed: 1 0;
2414                rel1 {
2415                   relative: 1.0 0.0;
2416                   to_x: "elm.icon.1";
2417                }
2418                rel2.to_x: "elm.icon.1";
2419                visible: 0;
2420             }
2421          }
2422          part { name: "elm.icon.2";
2423             clip_to: "disclip";
2424             type: SWALLOW;
2425             scale: 1;
2426             description { state: "default" 0.0;
2427                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
2428                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
2429                fixed: 1 1;
2430                rel1 {
2431                   relative: 0.0 0.0;
2432                   to_x: "elm.padding.right";
2433                }
2434                rel2 {
2435                   relative: 0.0 1.0;
2436                   to_x: "elm.padding.right";
2437                }
2438                align: 1.0 0.5;
2439             }
2440             GENLIST_DESCRIPTION_FLIP_ENABLED
2441          }
2442          part { name: "elm.padding.icon2.left";
2443             clip_to: "disclip";
2444             type: RECT;
2445             scale: 1;
2446             description { state: "default" 0.0;
2447                min: GENLIST_PADDING_16_INC 0;
2448                fixed: 1 0;
2449                rel1.to_x: "elm.icon.2";
2450                rel2 {
2451                   relative: 0.0 1.0;
2452                   to_x: "elm.icon.2";
2453                }
2454                align: 1.0 0.0;
2455                visible: 0;
2456             }
2457          }
2458          part { name: "elm.text";
2459             clip_to: "disclip";
2460             type: TEXT;
2461             mouse_events: 0;
2462             scale: 1;
2463             description { state: "default" 0.0;
2464                rel1 {
2465                   relative: 1.0 0.0;
2466                   to_x: "elm.padding.icon1.right";
2467                }
2468                rel2 {
2469                   relative: 0.0 1.0;
2470                   to_x: "elm.padding.icon2.left";
2471                }
2472                align: 0.0 0.5;
2473                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
2474                text {
2475                   font: "SLP:style=Roman";
2476                   size: GENLIST_FONT_44_INC;
2477                   min: 0 1;
2478                   align: 0.0 0.5;
2479                   text_class: "list_item";
2480                }
2481             }
2482             description { state: "selected" 0.0;
2483                inherit: "default" 0.0;
2484                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
2485             }
2486             GENLIST_DESCRIPTION_FLIP_ENABLED
2487          }
2488          GENLIST_PART_FLIP
2489          GENLIST_PART_DISCLIP
2490       }
2491       programs {
2492          program { name: "go_active";
2493             signal: "elm,state,selected";
2494             source: "elm";
2495             action: STATE_SET "selected" 0.0;
2496             target: "bg_image";
2497             target: "elm.text";
2498             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2499          }
2500          program { name: "go_passive";
2501             signal: "elm,state,unselected";
2502             source: "elm";
2503             action: STATE_SET "default" 0.0;
2504             target: "bg_image";
2505             target: "elm.text";
2506             transition: LINEAR 0.1;
2507          }
2508          program { name: "go_disabled";
2509             signal: "elm,state,disabled";
2510             source: "elm";
2511             action: STATE_SET "disabled" 0.0;
2512             target: "disclip";
2513          }
2514          program { name: "go_enabled";
2515             signal: "elm,state,enabled";
2516             source: "elm";
2517             action: STATE_SET "default" 0.0;
2518             target: "disclip";
2519          }
2520          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
2521          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2522       }
2523    }
2524
2525 // 3.1.18
2526    group { name: "elm/genlist/item/1text.2icon.2/default";
2527       alias: "elm/genlist/item_odd/1text.2icon.2/default";
2528       alias: "elm/genlist/item_compress/1text.2icon.2/default";
2529       alias: "elm/genlist/item_compress_odd/1text.2icon.2/default";
2530       data.item: "stacking" "above";
2531       data.item: "selectraise" "on";
2532       data.item: "texts" "elm.text";
2533       data.item: "contents" "elm.icon.1 elm.icon.2";
2534       data.item: "flips" "elm.flip.content";
2535       images {
2536          image: "00_list_bar_press_1x80.png" COMP;
2537       }
2538       parts {
2539          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
2540          GENLIST_PART_BG_IMAGE
2541          GENLIST_PART_BOTTOM_LINE
2542          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
2543          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
2544          part { name: "elm.icon.1";
2545             clip_to: "disclip";
2546             type: SWALLOW;
2547             scale: 1;
2548             description { state: "default" 0.0;
2549                min: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
2550                max: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
2551                fixed: 1 1;
2552                rel1 {
2553                   relative: 1.0 0.0;
2554                   to_x: "elm.padding.left";
2555                }
2556                rel2.to_x: "elm.padding.left";
2557                align: 0.0 0.5;
2558             }
2559             GENLIST_DESCRIPTION_FLIP_ENABLED
2560          }
2561          part { name: "elm.padding.icon1.right";
2562             clip_to: "disclip";
2563             type: RECT;
2564             scale: 1;
2565             description { state: "default" 0.0;
2566                min: GENLIST_PADDING_16_INC 0;
2567                fixed: 1 0;
2568                rel1 {
2569                   relative: 1.0 0.0;
2570                   to_x: "elm.icon.1";
2571                }
2572                rel2.to_x: "elm.icon.1";
2573                align: 0.0 0.0;
2574                visible: 0;
2575             }
2576          }
2577          part { name: "elm.icon.2";
2578             clip_to: "disclip";
2579             type: SWALLOW;
2580             scale: 1;
2581             description { state: "default" 0.0;
2582                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
2583                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
2584                fixed: 1 1;
2585                rel1 {
2586                   relative: 1.0 0.0;
2587                   to_x: "elm.padding.icon1.right";
2588                }
2589                rel2.to_x: "elm.padding.icon1.right";
2590                align: 0.0 0.5;
2591             }
2592             GENLIST_DESCRIPTION_FLIP_ENABLED
2593          }
2594          part { name: "elm.padding.icon2.right";
2595             type: RECT;
2596             scale: 1;
2597             description { state: "default" 0.0;
2598                min: GENLIST_PADDING_16_INC 0;
2599                fixed: 1 0;
2600                rel1 {
2601                   relative: 1.0 0.0;
2602                   to_x: "elm.icon.2";
2603                }
2604                rel2.to_x: "elm.icon.2";
2605                align: 0.0 0.5;
2606                visible: 0;
2607             }
2608          }
2609          part { name: "elm.text";
2610             clip_to: "disclip";
2611             type: TEXT;
2612             mouse_events: 0;
2613             scale: 1;
2614             description { state: "default" 0.0;
2615                rel1 {
2616                   relative: 1.0 0.0;
2617                   to_x: "elm.padding.icon2.right";
2618                }
2619                rel2 {
2620                   relative: 0.0 1.0;
2621                   to_x: "elm.padding.right";
2622                }
2623                align: 0.0 0.5;
2624                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
2625                text {
2626                   font: "SLP:style=Roman";
2627                   size: GENLIST_FONT_44_INC;
2628                   min: 0 1;
2629                   align: 0.0 0.5;
2630                   text_class: "list_item";
2631                }
2632             }
2633             description { state: "selected" 0.0;
2634                inherit: "default" 0.0;
2635                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
2636             }
2637             GENLIST_DESCRIPTION_FLIP_ENABLED
2638          }
2639          GENLIST_PART_FLIP
2640          GENLIST_PART_DISCLIP
2641       }
2642       programs {
2643          program { name: "go_active";
2644             signal: "elm,state,selected";
2645             source: "elm";
2646             action: STATE_SET "selected" 0.0;
2647             target: "bg_image";
2648             target: "elm.text";
2649             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2650          }
2651          program { name: "go_passive";
2652             signal: "elm,state,unselected";
2653             source: "elm";
2654             action: STATE_SET "default" 0.0;
2655             target: "bg_image";
2656             target: "elm.text";
2657             transition: LINEAR 0.1;
2658          }
2659          program { name: "go_disabled";
2660             signal: "elm,state,disabled";
2661             source: "elm";
2662             action: STATE_SET "disabled" 0.0;
2663             target: "disclip";
2664          }
2665          program { name: "go_enabled";
2666             signal: "elm,state,enabled";
2667             source: "elm";
2668             action: STATE_SET "default" 0.0;
2669             target: "disclip";
2670          }
2671          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
2672          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2673       }
2674    }
2675
2676 // 3.1.19
2677    group { name: "elm/genlist/item/1text.3icon/default";
2678       alias: "elm/genlist/item_odd/1text.3icon/default";
2679       alias: "elm/genlist/item_compress/1text.3icon/default";
2680       alias: "elm/genlist/item_compress_odd/1text.3icon/default";
2681       data.item: "stacking" "above";
2682       data.item: "selectraise" "on";
2683       data.item: "texts" "elm.text";
2684       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
2685       data.item: "flips" "elm.flip.content";
2686       images {
2687          image: "00_list_bar_press_1x80.png" COMP;
2688       }
2689       parts {
2690          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
2691          GENLIST_PART_BG_IMAGE
2692          GENLIST_PART_BOTTOM_LINE
2693          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
2694          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
2695          part { name: "elm.icon.1";
2696             clip_to: "disclip";
2697             type: SWALLOW;
2698             scale: 1;
2699             description { state: "default" 0.0;
2700                min: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
2701                max: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
2702                fixed: 1 1;
2703                rel1 {
2704                   relative: 1.0 0.0;
2705                   to_x: "elm.padding.left";
2706                }
2707                rel2.to_x: "elm.padding.left";
2708                align: 0.0 0.5;
2709             }
2710             GENLIST_DESCRIPTION_FLIP_ENABLED
2711          }
2712          part { name: "elm.padding.icon1.right";
2713             clip_to: "disclip";
2714             type: RECT;
2715             scale: 1;
2716             description { state: "default" 0.0;
2717                min: GENLIST_PADDING_16_INC 0;
2718                fixed: 1 0;
2719                rel1 {
2720                   relative: 1.0 0.0;
2721                   to_x: "elm.icon.1";
2722                }
2723                rel2.to_x: "elm.icon.1";
2724                align: 0.0 0.0;
2725                visible: 0;
2726             }
2727          }
2728          part { name: "elm.icon.2";
2729             clip_to: "disclip";
2730             type: SWALLOW;
2731             scale: 1;
2732             description { state: "default" 0.0;
2733                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
2734                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
2735                fixed: 1 1;
2736                rel1 {
2737                   relative: 1.0 0.0;
2738                   to_x: "elm.padding.icon1.right";
2739                }
2740                rel2.to_x: "elm.padding.icon1.right";
2741                align: 0.0 0.5;
2742             }
2743             GENLIST_DESCRIPTION_FLIP_ENABLED
2744          }
2745          part { name: "elm.padding.icon2.right";
2746             clip_to: "disclip";
2747             type: RECT;
2748             scale: 1;
2749             description { state: "default" 0.0;
2750                min: GENLIST_PADDING_16_INC 0;
2751                fixed: 1 0;
2752                rel1 {
2753                   relative: 1.0 0.0;
2754                   to_x: "elm.icon.2";
2755                }
2756                rel2.to_x: "elm.icon.2";
2757                visible: 0;
2758             }
2759          }
2760          part { name: "elm.icon.3";
2761             clip_to: "disclip";
2762             type: SWALLOW;
2763             scale: 1;
2764             description { state: "default" 0.0;
2765                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
2766                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
2767                fixed: 1 1;
2768                rel1 {
2769                   relative: 0.0 0.0;
2770                   to_x: "elm.padding.right";
2771                }
2772                rel2 {
2773                   relative: 0.0 1.0;
2774                   to_x: "elm.padding.right";
2775                }
2776                align: 1.0 0.5;
2777             }
2778             GENLIST_DESCRIPTION_FLIP_ENABLED
2779          }
2780          part { name: "elm.padding.icon3.left";
2781             clip_to: "disclip";
2782             type: RECT;
2783             scale: 1;
2784             description { state: "default" 0.0;
2785                min: GENLIST_PADDING_16_INC 0;
2786                fixed: 1 0;
2787                rel1.to_x: "elm.icon.3";
2788                rel2 {
2789                   relative: 0.0 1.0;
2790                   to_x: "elm.icon.3";
2791                }
2792                align: 1.0 0.0;
2793                visible: 0;
2794             }
2795          }
2796          part { name: "elm.text";
2797             clip_to: "disclip";
2798             type: TEXT;
2799             mouse_events: 0;
2800             scale: 1;
2801             description { state: "default" 0.0;
2802                rel1 {
2803                   relative: 1.0 0.0;
2804                   to_x: "elm.padding.icon2.right";
2805                }
2806                rel2 {
2807                   relative: 0.0 1.0;
2808                   to_x: "elm.padding.icon3.left";
2809                }
2810                align: 0.0 0.5;
2811                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
2812                text {
2813                   font: "SLP:style=Roman";
2814                   size: GENLIST_FONT_44_INC;
2815                   min: 0 1;
2816                   align: 0.0 0.5;
2817                   text_class: "list_item";
2818                }
2819             }
2820             description { state: "selected" 0.0;
2821                inherit: "default" 0.0;
2822                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
2823             }
2824             GENLIST_DESCRIPTION_FLIP_ENABLED
2825          }
2826          GENLIST_PART_FLIP
2827          GENLIST_PART_DISCLIP
2828       }
2829       programs {
2830          program { name: "go_active";
2831             signal: "elm,state,selected";
2832             source: "elm";
2833             action: STATE_SET "selected" 0.0;
2834             target: "bg_image";
2835             target: "elm.text";
2836             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2837          }
2838          program { name: "go_passive";
2839             signal: "elm,state,unselected";
2840             source: "elm";
2841             action: STATE_SET "default" 0.0;
2842             target: "bg_image";
2843             target: "elm.text";
2844             transition: LINEAR 0.1;
2845          }
2846          program { name: "go_disabled";
2847             signal: "elm,state,disabled";
2848             source: "elm";
2849             action: STATE_SET "disabled" 0.0;
2850             target: "disclip";
2851          }
2852          program { name: "go_enabled";
2853             signal: "elm,state,enabled";
2854             source: "elm";
2855             action: STATE_SET "default" 0.0;
2856             target: "disclip";
2857          }
2858          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
2859          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2860       }
2861    }
2862
2863 // 3.1.24
2864    group { name: "elm/genlist/item/1text.3icon.2/default";
2865       alias: "elm/genlist/item_odd/1text.3icon.2/default";
2866       alias: "elm/genlist/item_compress/1text.3icon.2/default";
2867       alias: "elm/genlist/item_compress_odd/1text.3icon.2/default";
2868       data.item: "stacking" "above";
2869       data.item: "selectraise" "on";
2870       data.item: "texts" "elm.text";
2871       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
2872       data.item: "flips" "elm.flip.content";
2873       images {
2874          image: "00_list_bar_press_1x80.png" COMP;
2875       }
2876       parts {
2877          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
2878          GENLIST_PART_BG_IMAGE
2879          GENLIST_PART_BOTTOM_LINE
2880          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
2881          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
2882          part { name: "elm.icon.1";
2883             clip_to: "disclip";
2884             type: SWALLOW;
2885             scale: 1;
2886             description { state: "default" 0.0;
2887                min: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
2888                max: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
2889                fixed: 1 1;
2890                rel1 {
2891                   relative: 1.0 0.0;
2892                   to_x: "elm.padding.left";
2893                }
2894                rel2.to_x: "elm.padding.left";
2895                align: 0.0 0.5;
2896             }
2897             GENLIST_DESCRIPTION_FLIP_ENABLED
2898          }
2899          part { name: "elm.padding.icon1.right";
2900             clip_to: "disclip";
2901             type: RECT;
2902             scale: 1;
2903             description { state: "default" 0.0;
2904                min: GENLIST_PADDING_16_INC 0;
2905                fixed: 1 0;
2906                rel1 {
2907                   relative: 1.0 0.0;
2908                   to_x: "elm.icon.1";
2909                }
2910                rel2.to_x: "elm.icon.1";
2911                align: 0.0 0.5;
2912                visible: 0;
2913             }
2914          }
2915          part { name: "elm.icon.3";
2916             clip_to: "disclip";
2917             type: SWALLOW;
2918             scale: 1;
2919             description { state: "default" 0.0;
2920                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
2921                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
2922                fixed: 1 1;
2923                rel1.to_x: "elm.padding.right";
2924                rel2 {
2925                   relative: 0.0 1.0;
2926                   to_x: "elm.padding.right";
2927                }
2928                align: 1.0 0.5;
2929             }
2930             GENLIST_DESCRIPTION_FLIP_ENABLED
2931          }
2932          part { name: "elm.padding.icon3.left";
2933             clip_to: "disclip";
2934             type: RECT;
2935             scale: 1;
2936             description { state: "default" 0.0;
2937                min: GENLIST_PADDING_16_INC 0;
2938                fixed: 1 0;
2939                rel1 {
2940                   relative: 0.0 0.0;
2941                   to_x: "elm.icon.3";
2942                }
2943                rel2.to_x: "elm.icon.3";
2944                align: 1.0 0.0;
2945                visible: 0;
2946             }
2947          }
2948          part { name: "elm.icon.2";
2949             clip_to: "disclip";
2950             type: SWALLOW;
2951             scale: 1;
2952             description { state: "default" 0.0;
2953                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
2954                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
2955                fixed: 1 1;
2956                rel1.to_x: "elm.padding.icon3.left";
2957                rel2 {
2958                   relative: 0.0 1.0;
2959                   to_x: "elm.padding.icon3.left";
2960                }
2961                align: 1.0 0.5;
2962             }
2963             GENLIST_DESCRIPTION_FLIP_ENABLED
2964          }
2965          part { name: "elm.padding.icon2.left";
2966             clip_to: "disclip";
2967             type: RECT;
2968             scale: 1;
2969             description { state: "default" 0.0;
2970                min: GENLIST_PADDING_16_INC 0;
2971                fixed: 1 0;
2972                rel1 {
2973                   relative: 0.0 0.0;
2974                   to_x: "elm.icon.2";
2975                }
2976                rel2.to_x: "elm.icon.2";
2977                align: 0.0 0.5;
2978                visible: 0;
2979             }
2980          }
2981          part { name: "elm.text";
2982             clip_to: "disclip";
2983             type: TEXT;
2984             mouse_events: 0;
2985             scale: 1;
2986             description { state: "default" 0.0;
2987                rel1 {
2988                   relative: 1.0 0.0;
2989                   to_x: "elm.padding.icon1.right";
2990                }
2991                rel2 {
2992                   relative: 0.0 1.0;
2993                   to_x: "elm.padding.icon2.left";
2994                }
2995                align: 0.0 0.5;
2996                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
2997                text {
2998                   font: "SLP:style=Roman";
2999                   size: GENLIST_FONT_44_INC;
3000                   min: 0 1;
3001                   align: 0.0 0.5;
3002                   text_class: "list_item";
3003                }
3004             }
3005             description { state: "selected" 0.0;
3006                inherit: "default" 0.0;
3007                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3008             }
3009             GENLIST_DESCRIPTION_FLIP_ENABLED
3010          }
3011          GENLIST_PART_FLIP
3012          GENLIST_PART_DISCLIP
3013       }
3014       programs {
3015          program { name: "go_active";
3016             signal: "elm,state,selected";
3017             source: "elm";
3018             action: STATE_SET "selected" 0.0;
3019             target: "bg_image";
3020             target: "elm.text";
3021             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
3022          }
3023          program { name: "go_passive";
3024             signal: "elm,state,unselected";
3025             source: "elm";
3026             action: STATE_SET "default" 0.0;
3027             target: "bg_image";
3028             target: "elm.text";
3029             transition: LINEAR 0.1;
3030          }
3031          program { name: "go_disabled";
3032             signal: "elm,state,disabled";
3033             source: "elm";
3034             action: STATE_SET "disabled" 0.0;
3035             target: "disclip";
3036          }
3037          program { name: "go_enabled";
3038             signal: "elm,state,enabled";
3039             source: "elm";
3040             action: STATE_SET "default" 0.0;
3041             target: "disclip";
3042          }
3043          GENLIST_PROGRAM_FLIP_1TEXT_3ICON
3044          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
3045       }
3046    }
3047
3048 // 3.1.26
3049    group { name: "elm/genlist/item/2text.4/default";
3050       alias: "elm/genlist/item_odd/2text.4/default";
3051       alias: "elm/genlist/item_compress/2text.4/default";
3052       alias: "elm/genlist/item_compress_odd/2text.4/default";
3053       data.item: "stacking" "above";
3054       data.item: "selectraise" "on";
3055       data.item: "texts" "elm.text.1 elm.text.2";
3056       data.item: "flips" "elm.flip.content";
3057       images {
3058          image: "00_list_bar_press_1x80.png" COMP;
3059       }
3060       parts {
3061          GENLIST_PART_BASE( GENLIST_HEIGHT_97_INC )
3062          GENLIST_PART_BG_IMAGE
3063          GENLIST_PART_BOTTOM_LINE
3064          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
3065          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
3066          part { name: "elm.text.2";
3067             clip_to: "disclip";
3068             type: TEXT;
3069             mouse_events: 0;
3070             scale: 1;
3071             description { state: "default" 0.0;
3072                min: GENLIST_SIZE_206_INC 0;
3073                fixed: 1 0;
3074                rel1.to_x: "elm.padding.right";
3075                rel2 {
3076                   relative: 0.0 1.0;
3077                   to_x: "elm.padding.right";
3078                }
3079                align: 1.0 0.5;
3080                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
3081                text {
3082                   font: "SLP:style=Medium";
3083                   size: GENLIST_FONT_32_INC;
3084                   min: 0 1;
3085                   align: 0.0 0.5;
3086                   text_class: "slp_medium";
3087                }
3088             }
3089             description { state: "selected" 0.0;
3090                inherit: "default" 0.0;
3091                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3092             }
3093             GENLIST_DESCRIPTION_FLIP_ENABLED
3094          }
3095          part { name: "elm.padding.text2.left";
3096             type: RECT;
3097             mouse_events: 0;
3098             scale: 1;
3099             description { state: "default" 0.0;
3100                min: GENLIST_PADDING_16_INC 0;
3101                fixed: 1 0;
3102                rel1.to_x: "elm.text.2";
3103                rel2 {
3104                   relative: 0.0 1.0;
3105                   to_x: "elm.text.2";
3106                }
3107                align: 1.0 0.5;
3108                visible: 0;
3109             }
3110          }
3111          part { name: "vertical_line";
3112             type: RECT;
3113             mouse_events: 0;
3114             description { state: "default" 0.0;
3115                min: 1 0;
3116                fixed: 1 0;
3117                rel1.to_x: "elm.padding.text2.left";
3118                rel2 {
3119                   relative: 0.0 1.0;
3120                   to_x: "elm.padding.text2.left";
3121                }
3122                align: 1.0 0.5;
3123                color: GENLIST_PART_LIST_LINE_COLOR_INC;
3124             }
3125          }
3126          part { name: "elm.padding.text1.right";
3127             type: RECT;
3128             mouse_events: 0;
3129             scale: 1;
3130             description { state: "default" 0.0;
3131                min: GENLIST_PADDING_16_INC 0;
3132                fixed: 1 0;
3133                rel1.to_x: "vertical_line";
3134                rel2 {
3135                   relative: 0.0 1.0;
3136                   to_x: "vertical_line";
3137                }
3138                align: 1.0 0.5;
3139                visible: 0;
3140             }
3141          }
3142          part { name: "elm.text.1";
3143             clip_to: "disclip";
3144             type: TEXT;
3145             mouse_events: 0;
3146             scale: 1;
3147             description { state: "default" 0.0;
3148                rel1 {
3149                   relative: 1.0 0.0;
3150                   to_x: "elm.padding.left";
3151                }
3152                rel2 {
3153                   relative: 0.0  1.0;
3154                   to_x: "elm.padding.text1.right";
3155                }
3156                color: GENLIST_PART_FONT_CONVERTOR_STYLE_COLOR_INC;
3157                text {
3158                   font: "SLP:style=Roman";
3159                   size: GENLIST_FONT_40_INC;
3160                   min: 0 1;
3161                   align: 1.0 0.5;
3162                   text_class: "list_item";
3163                }
3164             }
3165             description { state: "selected" 0.0;
3166                inherit: "default" 0.0;
3167                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3168             }
3169             GENLIST_DESCRIPTION_FLIP_ENABLED
3170          }
3171          GENLIST_PART_FLIP
3172          GENLIST_PART_DISCLIP
3173       }
3174       programs {
3175          // signal: elm,state,%s,active
3176          //   a "check" item named %s went active
3177          // signal: elm,state,%s,passive
3178          //   a "check" item named %s went passive
3179          // default is passive
3180          program { name: "go_active";
3181             signal: "elm,state,selected";
3182             source: "elm";
3183             action: STATE_SET "selected" 0.0;
3184             target: "bg_image";
3185             target: "elm.text.1";
3186             target: "elm.text.2";
3187             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
3188          }
3189          program { name: "go_passive";
3190             signal: "elm,state,unselected";
3191             source: "elm";
3192             action: STATE_SET "default" 0.0;
3193             target: "bg_image";
3194             target: "elm.text.1";
3195             target: "elm.text.2";
3196             transition: LINEAR 0.1;
3197          }
3198          program { name: "go_disabled";
3199             signal: "elm,state,disabled";
3200             source: "elm";
3201             action: STATE_SET "disabled" 0.0;
3202             target: "disclip";
3203          }
3204          program { name: "go_enabled";
3205             signal: "elm,state,enabled";
3206             source: "elm";
3207             action: STATE_SET "default" 0.0;
3208             target: "disclip";
3209          }
3210          program { name: "flip_enabled";
3211             signal: "elm,state,flip,enabled";
3212             source: "elm";
3213             action: STATE_SET "flip_enabled" 0.0;
3214             target: "elm.text.1";
3215             target: "elm.flip.content";
3216          }
3217          program { name: "flip_disabled";
3218             signal: "elm,state,flip,disabled";
3219             source: "elm";
3220             action: STATE_SET "default" 0.0;
3221             target: "elm.text.1";
3222             target: "elm.flip.content";
3223          }
3224          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
3225       }
3226    }
3227
3228 // 3.1.27
3229    group { name: "elm/genlist/item/2text.5/default";
3230       alias: "elm/genlist/item_odd/2text.5/default";
3231       alias: "elm/genlist/item_compress/2text.5/default";
3232       alias: "elm/genlist/item_compress_odd/2text.5/default";
3233       data.item: "stacking" "above";
3234       data.item: "selectraise" "on";
3235       data.item: "texts" "elm.text.1 elm.text.2";
3236       data.item: "flips" "elm.flip.content";
3237       images {
3238          image: "00_list_bar_press_1x80.png" COMP;
3239       }
3240       parts {
3241          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
3242          GENLIST_PART_BG_IMAGE
3243          GENLIST_PART_BOTTOM_LINE
3244          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
3245          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
3246          part { name: "elm.text.1";
3247             clip_to: "disclip";
3248             type: TEXT;
3249             mouse_events: 0;
3250             scale: 1;
3251             description { state: "default" 0.0;
3252                min: GENLIST_SIZE_133_INC 0;
3253                fixed: 1 0;
3254                rel1 {
3255                   relative: 1.0 0.0;
3256                   to_x: "elm.padding.left";
3257                }
3258                rel2.to_x: "elm.padding.left";
3259                align: 0.0 0.5;
3260                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
3261                text {
3262                   font: "SLP:style=Medium";
3263                   size: GENLIST_FONT_32_INC;
3264                   min: 0 1;
3265                   align: 0.0 0.5;
3266                   text_class: "slp_medium";
3267                }
3268             }
3269             description { state: "selected" 0.0;
3270                inherit: "default" 0.0;
3271                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3272             }
3273          }
3274          part { name: "elm.padding.text1.right";
3275             type: RECT;
3276             mouse_events: 0;
3277             scale: 1;
3278             description { state: "default" 0.0;
3279                min: GENLIST_PADDING_16_INC 0;
3280                fixed: 1 0;
3281                rel1 {
3282                    relative: 1.0 0.0;
3283                    to_x: "elm.text.1";
3284                }
3285                rel2.to_x: "elm.text.1";
3286                align: 0.0 0.5;
3287                visible: 0;
3288             }
3289          }
3290          part { name: "vertical_line";
3291             type: RECT;
3292             mouse_events: 0;
3293             description { state: "default" 0.0;
3294                min: 1 0;
3295                fixed: 1 0;
3296                rel1.to_x: "elm.padding.text1.right";
3297                rel2 {
3298                   relative: 0.0 1.0;
3299                   to_x: "elm.padding.text1.right";
3300                }
3301                align: 0.0 0.5;
3302                color: GENLIST_PART_LIST_LINE_COLOR_INC;
3303             }
3304          }
3305          part { name: "elm.padding.text2.left";
3306             type: RECT;
3307             mouse_events: 0;
3308             scale: 1;
3309             description { state: "default" 0.0;
3310                min: GENLIST_PADDING_16_INC 0;
3311                fixed: 1 0;
3312                rel1 {
3313                    relative: 1.0 0.0;
3314                    to_x: "vertical_line";
3315                }
3316                rel2.to_x: "vertical_line";
3317                align: 0.0 0.5;
3318                visible: 0;
3319             }
3320          }
3321          part { name: "elm.text.2";
3322             clip_to: "disclip";
3323             type: TEXT;
3324             mouse_events: 0;
3325             scale: 1;
3326             description { state: "default" 0.0;
3327                rel1 {
3328                   relative: 1.0 0.0;
3329                   to_x: "elm.padding.text2.left";
3330                }
3331                rel2 {
3332                   relative: 0.0  1.0;
3333                   to_x: "elm.padding.right";
3334                }
3335                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
3336                text {
3337                   font: "SLP:style=Roman";
3338                   size: GENLIST_FONT_44_INC;
3339                   min: 0 1;
3340                   align: 0.0 0.5;
3341                   text_class: "list_item";
3342                }
3343             }
3344             description { state: "selected" 0.0;
3345                inherit: "default" 0.0;
3346                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3347             }
3348             GENLIST_DESCRIPTION_FLIP_ENABLED
3349          }
3350          GENLIST_PART_FLIP
3351          GENLIST_PART_DISCLIP
3352       }
3353       programs {
3354          // signal: elm,state,%s,active
3355          //   a "check" item named %s went active
3356          // signal: elm,state,%s,passive
3357          //   a "check" item named %s went passive
3358          // default is passive
3359          program { name: "go_active";
3360             signal: "elm,state,selected";
3361             source: "elm";
3362             action: STATE_SET "selected" 0.0;
3363             target: "bg_image";
3364             target: "elm.text.1";
3365             target: "elm.text.2";
3366             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
3367          }
3368          program { name: "go_passive";
3369             signal: "elm,state,unselected";
3370             source: "elm";
3371             action: STATE_SET "default" 0.0;
3372             target: "bg_image";
3373             target: "elm.text.1";
3374             target: "elm.text.2";
3375             transition: LINEAR 0.1;
3376          }
3377          program { name: "go_disabled";
3378             signal: "elm,state,disabled";
3379             source: "elm";
3380             action: STATE_SET "disabled" 0.0;
3381             target: "disclip";
3382          }
3383          program { name: "go_enabled";
3384             signal: "elm,state,enabled";
3385             source: "elm";
3386             action: STATE_SET "default" 0.0;
3387             target: "disclip";
3388          }
3389          program { name: "flip_enabled";
3390             signal: "elm,state,flip,enabled";
3391             source: "elm";
3392             action: STATE_SET "flip_enabled" 0.0;
3393             target: "elm.text.2";
3394             target: "elm.flip.content";
3395          }
3396          program { name: "flip_disabled";
3397             signal: "elm,state,flip,disabled";
3398             source: "elm";
3399             action: STATE_SET "default" 0.0;
3400             target: "elm.text.2";
3401             target: "elm.flip.content";
3402          }
3403          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
3404       }
3405    }
3406
3407 // 3.2.1
3408    group { name: "elm/genlist/item/2text.2/default";
3409       alias: "elm/genlist/item_odd/2text.2/default";
3410       alias: "elm/genlist/item_compress/2text.2/default";
3411       alias: "elm/genlist/item_compress_odd/2text.2/default";
3412       data.item: "stacking" "above";
3413       data.item: "selectraise" "on";
3414       data.item: "texts" "elm.text.1 elm.text.2";
3415       data.item: "flips" "elm.flip.content";
3416       images {
3417          image: "00_list_bar_press_1x80.png" COMP;
3418       }
3419       parts {
3420          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
3421          GENLIST_PART_BG_IMAGE
3422          GENLIST_PART_BOTTOM_LINE
3423          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
3424          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
3425          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
3426          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
3427          part { name: "elm.text.1";
3428             clip_to: "disclip";
3429             type: TEXT;
3430             mouse_events: 0;
3431             scale: 1;
3432             description { state: "default" 0.0;
3433                min: 0 GENLIST_SIZE_61_INC;
3434                fixed: 0 1;
3435                rel1 {
3436                   relative: 1.0 1.0;
3437                   to_x: "elm.padding.left";
3438                   to_y: "elm.padding.top";
3439                }
3440                rel2 {
3441                   relative: 0.0 1.0;
3442                   to_x: "elm.padding.right";
3443                   to_y: "elm.padding.top";
3444                }
3445                align: 0.0 0.0;
3446                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
3447                text {
3448                   font: "SLP:style=Roman";
3449                   size: GENLIST_FONT_44_INC;
3450                   min: 0 1;
3451                   align: 0.0 0.5;
3452                   text_class: "list_item";
3453                }
3454             }
3455             description { state: "selected" 0.0;
3456                inherit: "default" 0.0;
3457                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3458             }
3459             GENLIST_DESCRIPTION_FLIP_ENABLED
3460          }
3461          part { name: "elm.text.2";
3462             clip_to: "disclip";
3463             type: TEXT;
3464             mouse_events: 0;
3465             scale: 1;
3466             description { state: "default" 0.0;
3467                rel1 {
3468                   relative: 1.0 1.0;
3469                   to_x: "elm.padding.left";
3470                   to_y: "elm.text.1";
3471                }
3472                rel2 {
3473                   relative: 0.0 0.0;
3474                   to_x: "elm.padding.right";
3475                   to_y: "elm.padding.bottom";
3476                }
3477                align: 0.0 0.0;
3478                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
3479                text {
3480                   font: "SLP:style=Medium";
3481                   size: GENLIST_FONT_32_INC;
3482                   min: 0 1;
3483                   align: 0.0 0.5;
3484                   text_class: "slp_medium";
3485                }
3486             }
3487             description { state: "selected" 0.0;
3488                inherit: "default" 0.0;
3489                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3490             }
3491             GENLIST_DESCRIPTION_FLIP_ENABLED
3492          }
3493          GENLIST_PART_FLIP
3494          GENLIST_PART_DISCLIP
3495       }
3496       programs {
3497          // signal: elm,state,%s,active
3498          //   a "check" item named %s went active
3499          // signal: elm,state,%s,passive
3500          //   a "check" item named %s went passive
3501          // default is passive
3502          program { name: "go_active";
3503             signal: "elm,state,selected";
3504             source: "elm";
3505             action: STATE_SET "selected" 0.0;
3506             target: "bg_image";
3507             target: "elm.text.1";
3508             target: "elm.text.2";
3509             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
3510          }
3511          program { name: "go_passive";
3512             signal: "elm,state,unselected";
3513             source: "elm";
3514             action: STATE_SET "default" 0.0;
3515             target: "bg_image";
3516             target: "elm.text.1";
3517             target: "elm.text.2";
3518             transition: LINEAR 0.1;
3519          }
3520          program { name: "go_disabled";
3521             signal: "elm,state,disabled";
3522             source: "elm";
3523             action: STATE_SET "disabled" 0.0;
3524             target: "disclip";
3525          }
3526          program { name: "go_enabled";
3527             signal: "elm,state,enabled";
3528             source: "elm";
3529             action: STATE_SET "default" 0.0;
3530             target: "disclip";
3531          }
3532          GENLIST_PROGRAM_FLIP_2TEXT
3533          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
3534       }
3535    }
3536
3537    group { name: "elm/genlist/item_compress/2text.2.tb/default";
3538       inherit: "elm/genlist/item/2text.2/default";
3539       parts {
3540          part { name: "elm.text.2";
3541             clip_to: "disclip";
3542             type: TEXTBLOCK;
3543             mouse_events: 0;
3544             scale: 1;
3545             description { state: "default" 0.0;
3546                rel1 {
3547                   relative: 1.0 1.0;
3548                   to_x: "elm.padding.left";
3549                   to_y: "elm.text.1";
3550                }
3551                rel2 {
3552                   relative: 0.0 0.0;
3553                   to_x: "elm.padding.right";
3554                   to_y: "elm.padding.bottom";
3555                }
3556                align: 0.0 0.5;
3557                text {
3558                   style: "genlist_default_textblock_style";
3559                   min: 0 1;
3560                   align: 0.0 0.5;
3561                }
3562             }
3563             description { state: "selected" 0.0;
3564                inherit: "default" 0.0;
3565                text.style: "genlist_default_textblock_selected_style";
3566             }
3567             GENLIST_DESCRIPTION_FLIP_ENABLED
3568          }
3569       }
3570    }
3571
3572 //
3573    group { name: "elm/genlist/item/2text.8/default";
3574       alias: "elm/genlist/item_odd/2text.8/default";
3575       alias: "elm/genlist/item_compress/2text.8/default";
3576       alias: "elm/genlist/item_compress_odd/2text.8/default";
3577       data.item: "stacking" "above";
3578       data.item: "selectraise" "on";
3579       data.item: "texts" "elm.text.1 elm.text.2";
3580       data.item: "flips" "elm.flip.content";
3581       images {
3582          image: "00_list_bar_press_1x80.png" COMP;
3583       }
3584       parts {
3585          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
3586          GENLIST_PART_BG_IMAGE
3587          GENLIST_PART_BOTTOM_LINE
3588          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
3589          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
3590          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
3591          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
3592          part { name: "elm.text.1";
3593             clip_to: "disclip";
3594             type: TEXTBLOCK;
3595             mouse_events: 0;
3596             scale: 1;
3597             description { state: "default" 0.0;
3598                min: 0 GENLIST_SIZE_61_INC;
3599                fixed: 1 1;
3600                rel1 {
3601                   relative: 1.0 1.0;
3602                   to_x: "elm.padding.left";
3603                   to_y: "elm.padding.top";
3604                }
3605                rel2 {
3606                   relative: 0.0 1.0;
3607                   to_x: "elm.padding.right";
3608                   to_y: "elm.padding.top";
3609                }
3610                align: 0.0 0.0;
3611                text {
3612                   style: "genlist_default_textblock_style";
3613                   min: 0 1;
3614                   align: 0.0 0.5;
3615                }
3616             }
3617             description { state: "selected" 0.0;
3618                inherit: "default" 0.0;
3619                text.style: "genlist_default_textblock_selected_style";
3620             }
3621             GENLIST_DESCRIPTION_FLIP_ENABLED
3622          }
3623          part { name: "elm.text.2";
3624             clip_to: "disclip";
3625             type: TEXTBLOCK;
3626             mouse_events: 0;
3627             scale: 1;
3628             description { state: "default" 0.0;
3629                fixed: 1 0;
3630                rel1 {
3631                   relative: 1.0 1.0;
3632                   to_x: "elm.padding.left";
3633                   to_y: "elm.text.1";
3634                }
3635                rel2 {
3636                   relative: 0.0 0.0;
3637                   to_x: "elm.padding.right";
3638                   to_y: "elm.padding.bottom";
3639                }
3640                align: 0.0 0.0;
3641                text {
3642                   style: "genlist_sub_textblock_style";
3643                   min: 0 1;
3644                   align: 0.0 0.5;
3645                }
3646             }
3647             description { state: "selected" 0.0;
3648                inherit: "default" 0.0;
3649                text.style: "genlist_sub_textblock_selected_style";
3650             }
3651             GENLIST_DESCRIPTION_FLIP_ENABLED
3652          }
3653          GENLIST_PART_FLIP
3654          GENLIST_PART_DISCLIP
3655       }
3656       programs {
3657          // signal: elm,state,%s,active
3658          //   a "check" item named %s went active
3659          // signal: elm,state,%s,passive
3660          //   a "check" item named %s went passive
3661          // default is passive
3662          program { name: "go_active";
3663             signal: "elm,state,selected";
3664             source: "elm";
3665             action: STATE_SET "selected" 0.0;
3666             target: "bg_image";
3667             target: "elm.text.1";
3668             target: "elm.text.2";
3669             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
3670          }
3671          program { name: "go_passive";
3672             signal: "elm,state,unselected";
3673             source: "elm";
3674             action: STATE_SET "default" 0.0;
3675             target: "bg_image";
3676             target: "elm.text.1";
3677             target: "elm.text.2";
3678             transition: LINEAR 0.1;
3679          }
3680          program { name: "go_disabled";
3681             signal: "elm,state,disabled";
3682             source: "elm";
3683             action: STATE_SET "disabled" 0.0;
3684             target: "disclip";
3685          }
3686          program { name: "go_enabled";
3687             signal: "elm,state,enabled";
3688             source: "elm";
3689             action: STATE_SET "default" 0.0;
3690             target: "disclip";
3691          }
3692          GENLIST_PROGRAM_FLIP_2TEXT
3693          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
3694       }
3695    }
3696
3697 // 3.2.2
3698    group { name: "elm/genlist/item/2text.3/default";
3699       alias: "elm/genlist/item_odd/2text.3/default";
3700       alias: "elm/genlist/item_compress/2text.3/default";
3701       alias: "elm/genlist/item_compress_odd/2text.3/default";
3702       data.item: "stacking" "above";
3703       data.item: "selectraise" "on";
3704       data.item: "texts" "elm.text.1 elm.text.2";
3705       data.item: "flips" "elm.flip.content";
3706       images {
3707          image: "00_list_bar_press_1x80.png" COMP;
3708       }
3709       parts {
3710          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
3711          GENLIST_PART_BG_IMAGE
3712          GENLIST_PART_BOTTOM_LINE
3713          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
3714          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
3715          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
3716          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
3717          part { name: "elm.text.1";
3718             clip_to: "disclip";
3719             type: TEXT;
3720             mouse_events: 0;
3721             scale: 1;
3722             description { state: "default" 0.0;
3723                min: 0 GENLIST_SIZE_61_INC;
3724                fixed: 0 1;
3725                rel1 {
3726                   relative: 1.0 0.0;
3727                   to_x: "elm.padding.left";
3728                   to_y: "elm.padding.bottom";
3729                }
3730                rel2 {
3731                   relative: 0.0 0.0;
3732                   to_x: "elm.padding.right";
3733                   to_y: "elm.padding.bottom";
3734                }
3735                align: 0.0 1.0;
3736                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
3737                text {
3738                   font: "SLP:style=Roman";
3739                   size: GENLIST_FONT_44_INC;
3740                   min: 0 1;
3741                   align: 0.0 0.5;
3742                   text_class: "slp_roman";
3743                }
3744             }
3745             description { state: "selected" 0.0;
3746                inherit: "default" 0.0;
3747                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3748             }
3749             GENLIST_DESCRIPTION_FLIP_ENABLED
3750          }
3751          part { name: "elm.text.2";
3752             clip_to: "disclip";
3753             type: TEXT;
3754             mouse_events: 0;
3755             scale: 1;
3756             description { state: "default" 0.0;
3757                rel1 {
3758                   relative: 1.0 1.0;
3759                   to_x: "elm.padding.left";
3760                   to_y: "elm.padding.top";
3761                }
3762                rel2 {
3763                   relative: 0.0 0.0;
3764                   to_x: "elm.padding.right";
3765                   to_y: "elm.text.1";
3766                }
3767                align: 0.0 1.0;
3768                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
3769                text {
3770                   font: "SLP:style=Medium";
3771                   size: GENLIST_FONT_32_INC;
3772                   min: 0 1;
3773                   align: 0.0 0.5;
3774                   text_class: "list_item";
3775                }
3776             }
3777             description { state: "selected" 0.0;
3778                inherit: "default" 0.0;
3779                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3780             }
3781             GENLIST_DESCRIPTION_FLIP_ENABLED
3782          }
3783          GENLIST_PART_FLIP
3784          GENLIST_PART_DISCLIP
3785       }
3786       programs {
3787          // signal: elm,state,%s,active
3788          //   a "check" item named %s went active
3789          // signal: elm,state,%s,passive
3790          //   a "check" item named %s went passive
3791          // default is passive
3792          program { name: "go_active";
3793             signal: "elm,state,selected";
3794             source: "elm";
3795             action: STATE_SET "selected" 0.0;
3796             target: "bg_image";
3797             target: "elm.text.1";
3798             target: "elm.text.2";
3799             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
3800          }
3801          program { name: "go_passive";
3802             signal: "elm,state,unselected";
3803             source: "elm";
3804             action: STATE_SET "default" 0.0;
3805             target: "bg_image";
3806             target: "elm.text.1";
3807             target: "elm.text.2";
3808             transition: LINEAR 0.1;
3809          }
3810          program { name: "go_disabled";
3811             signal: "elm,state,disabled";
3812             source: "elm";
3813             action: STATE_SET "disabled" 0.0;
3814             target: "disclip";
3815          }
3816          program { name: "go_enabled";
3817             signal: "elm,state,enabled";
3818             source: "elm";
3819             action: STATE_SET "default" 0.0;
3820             target: "disclip";
3821          }
3822          GENLIST_PROGRAM_FLIP_2TEXT
3823          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
3824       }
3825    }
3826
3827 // 3.2.3
3828    group { name: "elm/genlist/item/3text/default";
3829       alias: "elm/genlist/item_odd/3text/default";
3830       alias: "elm/genlist/item_compress/3text/default";
3831       alias: "elm/genlist/item_compress_odd/3text/default";
3832       data.item: "stacking" "above";
3833       data.item: "selectraise" "on";
3834       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
3835       data.item: "flips" "elm.flip.content";
3836       images {
3837          image: "00_list_bar_press_1x80.png" COMP;
3838       }
3839       parts {
3840          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
3841          GENLIST_PART_BG_IMAGE
3842          GENLIST_PART_BOTTOM_LINE
3843          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
3844          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
3845          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
3846          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
3847          part { name: "elm.text.3";
3848             clip_to: "disclip";
3849             type: TEXT;
3850             mouse_events: 0;
3851             scale: 1;
3852             description { state: "default" 0.0;
3853                min: GENLIST_SIZE_133_INC GENLIST_SIZE_61_INC;
3854                fixed: 1 1;
3855                rel1 {
3856                   relative: 0.0 1.0;
3857                   to_x: "elm.padding.right";
3858                   to_y: "elm.padding.top";
3859                }
3860                rel2 {
3861                   relative: 0.0 1.0;
3862                   to_x: "elm.padding.right";
3863                   to_y: "elm.padding.top";
3864                }
3865                align: 1.0 0.0;
3866                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
3867                text {
3868                   font: "SLP:style=Medium";
3869                   size: GENLIST_FONT_32_INC;
3870                   min: 0 1;
3871                   align: 1.0 0.5;
3872                   text_class: "slp_medium";
3873                }
3874             }
3875             description { state: "selected" 0.0;
3876                inherit: "default" 0.0;
3877                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3878             }
3879             GENLIST_DESCRIPTION_FLIP_ENABLED
3880          }
3881          part { name: "elm.padding.text3.left";
3882             clip_to: "disclip";
3883             type: RECT;
3884             mouse_events: 0;
3885             scale: 1;
3886             description { state: "default" 0.0;
3887                min: GENLIST_SIZE_32_INC 0;
3888                fixed: 1 0;
3889                rel1.to_x: "elm.text.3";
3890                rel2 {
3891                   relative: 0.0 1.0;
3892                   to_x: "elm.text.3";
3893                }
3894                align: 1.0 0.5;
3895                visible: 0;
3896             }
3897          }
3898          part { name: "elm.text.1";
3899             clip_to: "disclip";
3900             type: TEXT;
3901             mouse_events: 0;
3902             scale: 1;
3903             description { state: "default" 0.0;
3904                rel1 {
3905                   relative: 1.0 1.0;
3906                   to_x: "elm.padding.left";
3907                   to_y: "elm.padding.top";
3908                }
3909                rel2 {
3910                   relative: 0.0 1.0;
3911                   to_x: "elm.padding.text3.left";
3912                   to_y: "elm.text.3";
3913                }
3914                align: 0.0 0.5;
3915                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
3916                text {
3917                   font: "SLP:style=Roman";
3918                   size: GENLIST_FONT_44_INC;
3919                   min: 0 1;
3920                   align: 0.0 0.5;
3921                   text_class: "list_item";
3922                }
3923             }
3924             description { state: "selected" 0.0;
3925                inherit: "default" 0.0;
3926                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3927             }
3928             GENLIST_DESCRIPTION_FLIP_ENABLED
3929          }
3930          part { name: "elm.text.2";
3931             clip_to: "disclip";
3932             type: TEXT;
3933             mouse_events: 0;
3934             scale: 1;
3935             description { state: "default" 0.0;
3936                rel1 {
3937                   relative: 1.0 1.0;
3938                   to_x: "elm.padding.left";
3939                   to_y: "elm.text.1";
3940                }
3941                rel2 {
3942                   relative: 0.0 0.0;
3943                   to_x: "elm.padding.right";
3944                   to_y: "elm.padding.bottom";
3945                }
3946                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
3947                text {
3948                   font: "SLP:style=Medium";
3949                   size: GENLIST_FONT_32_INC;
3950                   min: 0 1;
3951                   align: 0.0 0.5;
3952                   text_class: "slp_medium";
3953                }
3954             }
3955             description { state: "selected" 0.0;
3956                inherit: "default" 0.0;
3957                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3958             }
3959             GENLIST_DESCRIPTION_FLIP_ENABLED
3960          }
3961          GENLIST_PART_FLIP
3962          GENLIST_PART_DISCLIP
3963       }
3964       programs {
3965          // signal: elm,state,%s,active
3966          //   a "check" item named %s went active
3967          // signal: elm,state,%s,passive
3968          //   a "check" item named %s went passive
3969          // default is passive
3970          program { name: "go_active";
3971             signal: "elm,state,selected";
3972             source: "elm";
3973             action: STATE_SET "selected" 0.0;
3974             target: "bg_image";
3975             target: "elm.text.1";
3976             target: "elm.text.2";
3977             target: "elm.text.3";
3978             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
3979          }
3980          program { name: "go_passive";
3981             signal: "elm,state,unselected";
3982             source: "elm";
3983             action: STATE_SET "default" 0.0;
3984             target: "bg_image";
3985             target: "elm.text.1";
3986             target: "elm.text.2";
3987             target: "elm.text.3";
3988             transition: LINEAR 0.1;
3989          }
3990          program { name: "go_disabled";
3991             signal: "elm,state,disabled";
3992             source: "elm";
3993             action: STATE_SET "disabled" 0.0;
3994             target: "disclip";
3995          }
3996          program { name: "go_enabled";
3997             signal: "elm,state,enabled";
3998             source: "elm";
3999             action: STATE_SET "default" 0.0;
4000             target: "disclip";
4001          }
4002          GENLIST_PROGRAM_FLIP_3TEXT
4003          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
4004       }
4005    }
4006
4007    group { name: "elm/genlist/item_compress/3text.tb/default";
4008       inherit: "elm/genlist/item/3text/default";
4009       parts {
4010          part { name: "elm.text.2";
4011             clip_to: "disclip";
4012             type: TEXTBLOCK;
4013             mouse_events: 0;
4014             scale: 1;
4015             description { state: "default" 0.0;
4016                rel1 {
4017                   relative: 1.0 1.0;
4018                   to_x: "elm.padding.left";
4019                   to_y: "elm.text.1";
4020                }
4021                rel2 {
4022                   relative: 0.0 0.0;
4023                   to_x: "elm.padding.right";
4024                   to_y: "elm.padding.bottom";
4025                }
4026                align: 0.0 0.5;
4027                text {
4028                   style: "genlist_default_textblock_style";
4029                   min: 0 1;
4030                   align: 0.0 0.5;
4031                }
4032             }
4033             description { state: "selected" 0.0;
4034                inherit: "default" 0.0;
4035                text.style: "genlist_default_textblock_selected_style";
4036             }
4037             GENLIST_DESCRIPTION_FLIP_ENABLED
4038          }
4039       }
4040    }
4041
4042 // 3.2.4
4043    group { name: "elm/genlist/item/2text.1icon.2/default";
4044       alias: "elm/genlist/item_odd/2text.1icon.2/default";
4045       alias: "elm/genlist/item_compress/2text.1icon.2/default";
4046       alias: "elm/genlist/item_compress_odd/2text.1icon.2/default";
4047       data.item: "stacking" "above";
4048       data.item: "selectraise" "on";
4049       data.item: "texts" "elm.text.1 elm.text.2";
4050       data.item: "contents" "elm.icon";
4051       data.item: "flips" "elm.flip.content";
4052       images {
4053          image: "00_list_bar_press_1x80.png" COMP;
4054       }
4055       parts {
4056          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
4057          GENLIST_PART_BG_IMAGE
4058          GENLIST_PART_BOTTOM_LINE
4059          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
4060          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
4061          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
4062          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
4063          part { name: "elm.icon";
4064             clip_to: "disclip";
4065             type: SWALLOW;
4066             scale: 1;
4067             description { state: "default" 0.0;
4068                fixed: 1 1;
4069                rel1 {
4070                   relative: 0.0 1.0;
4071                   to_x: "elm.padding.right";
4072                   to_y: "elm.padding.top";
4073                }
4074                rel2 {
4075                   relative: 0.0 0.0;
4076                   to_x: "elm.padding.right";
4077                   to_y: "elm.padding.bottom";
4078                }
4079                align: 1.0 0.5;
4080             }
4081             GENLIST_DESCRIPTION_FLIP_ENABLED
4082          }
4083          part { name: "elm.padding.icon.left";
4084             clip_to: "disclip";
4085             type: RECT;
4086             scale: 1;
4087             description { state: "default" 0.0;
4088                min: GENLIST_PADDING_16_INC 0;
4089                fixed: 1 0;
4090                rel1.to_x: "elm.icon";
4091                rel2 {
4092                   relative: 0.0 1.0;
4093                   to_x: "elm.icon";
4094                }
4095                align: 1.0 0.0;
4096                visible: 0;
4097             }
4098          }
4099          part { name: "elm.text.1";
4100             clip_to: "disclip";
4101             type: TEXT;
4102             mouse_events: 0;
4103             scale: 1;
4104             description { state: "default" 0.0;
4105                min: 0 GENLIST_SIZE_61_INC;
4106                fixed: 0 1;
4107                rel1 {
4108                   relative: 1.0 1.0;
4109                   to_x: "elm.padding.left";
4110                   to_y: "elm.padding.top";
4111                }
4112                rel2 {
4113                   relative: 0.0 1.0;
4114                   to_x: "elm.padding.icon.left";
4115                   to_y: "elm.padding.top";
4116                }
4117                align: 0.0 0.0;
4118                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
4119                text {
4120                   font: "SLP:style=Roman";
4121                   size: GENLIST_FONT_44_INC;
4122                   min: 0 1;
4123                   align: 0.0 0.5;
4124                   text_class: "list_item";
4125                }
4126             }
4127             description { state: "selected" 0.0;
4128                inherit: "default" 0.0;
4129                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4130             }
4131             GENLIST_DESCRIPTION_FLIP_ENABLED
4132          }
4133          part { name: "elm.text.2";
4134             clip_to: "disclip";
4135             type: TEXT;
4136             mouse_events: 0;
4137             scale: 1;
4138             description { state: "default" 0.0;
4139                rel1 {
4140                   relative: 1.0 1.0;
4141                   to_x: "elm.padding.left";
4142                   to_y: "elm.text.1";
4143                }
4144                rel2 {
4145                   relative: 0.0 0.0;
4146                   to_x: "elm.padding.icon.left";
4147                   to_y: "elm.padding.bottom";
4148                }
4149                align: 0.0 0.0;
4150                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
4151                text {
4152                   font: "SLP:style=Medium";
4153                   size: GENLIST_FONT_32_INC;
4154                   min: 0 1;
4155                   align: 0.0 0.5;
4156                   text_class: "slp_medium";
4157                }
4158             }
4159             description { state: "selected" 0.0;
4160                inherit: "default" 0.0;
4161                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4162             }
4163             GENLIST_DESCRIPTION_FLIP_ENABLED
4164          }
4165          GENLIST_PART_FLIP
4166          GENLIST_PART_DISCLIP
4167       }
4168       programs {
4169          // signal: elm,state,%s,active
4170          //   a "check" item named %s went active
4171          // signal: elm,state,%s,passive
4172          //   a "check" item named %s went passive
4173          // default is passive
4174          program { name: "go_active";
4175             signal: "elm,state,selected";
4176             source: "elm";
4177             action: STATE_SET "selected" 0.0;
4178             target: "bg_image";
4179             target: "elm.text.1";
4180             target: "elm.text.2";
4181             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
4182          }
4183          program { name: "go_passive";
4184             signal: "elm,state,unselected";
4185             source: "elm";
4186             action: STATE_SET "default" 0.0;
4187             target: "bg_image";
4188             target: "elm.text.1";
4189             target: "elm.text.2";
4190             transition: LINEAR 0.1;
4191          }
4192          program { name: "go_disabled";
4193             signal: "elm,state,disabled";
4194             source: "elm";
4195             action: STATE_SET "disabled" 0.0;
4196             target: "disclip";
4197          }
4198          program { name: "go_enabled";
4199             signal: "elm,state,enabled";
4200             source: "elm";
4201             action: STATE_SET "default" 0.0;
4202             target: "disclip";
4203          }
4204          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
4205          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
4206       }
4207    }
4208
4209 // 3.2.5
4210    group { name: "elm/genlist/item/2text.1icon.10/default";
4211       alias: "elm/genlist/item_odd/2text.1icon.10/default";
4212       alias: "elm/genlist/item_compress/2text.1icon.10/default";
4213       alias: "elm/genlist/item_compress_odd/2text.1icon.10/default";
4214       data.item: "stacking" "above";
4215       data.item: "selectraise" "on";
4216       data.item: "texts" "elm.text.1 elm.text.2";
4217       data.item: "contents" "elm.icon";
4218       data.item: "flips" "elm.flip.content";
4219       images {
4220          image: "00_list_bar_press_1x80.png" COMP;
4221       }
4222       parts {
4223          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
4224          GENLIST_PART_BG_IMAGE
4225          GENLIST_PART_BOTTOM_LINE
4226          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
4227          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
4228          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
4229          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
4230          part { name: "elm.icon";
4231             clip_to: "disclip";
4232             type: SWALLOW;
4233             scale: 1;
4234             description { state: "default" 0.0;
4235                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
4236                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
4237                fixed: 1 1;
4238                rel1 {
4239                   relative: 0.0 1.0;
4240                   to_x: "elm.padding.right";
4241                   to_y: "elm.padding.top";
4242                }
4243                rel2 {
4244                   relative: 0.0 0.0;
4245                   to_x: "elm.padding.right";
4246                   to_y: "elm.padding.bottom";
4247                }
4248                align: 1.0 0.5;
4249             }
4250             GENLIST_DESCRIPTION_FLIP_ENABLED
4251          }
4252          part { name: "elm.padding.icon.left";
4253             clip_to: "disclip";
4254             type: RECT;
4255             scale: 1;
4256             description { state: "default" 0.0;
4257                min: GENLIST_PADDING_16_INC 0;
4258                fixed: 1 0;
4259                rel1.to_x: "elm.icon";
4260                rel2 {
4261                   relative: 0.0 1.0;
4262                   to_x: "elm.icon";
4263                }
4264                align: 1.0 0.0;
4265                visible: 0;
4266             }
4267          }
4268          part { name: "elm.text.1";
4269             clip_to: "disclip";
4270             type: TEXT;
4271             mouse_events: 0;
4272             scale: 1;
4273             description { state: "default" 0.0;
4274                min: 0 GENLIST_SIZE_61_INC;
4275                fixed: 0 1;
4276                rel1 {
4277                   relative: 1.0 1.0;
4278                   to_x: "elm.padding.left";
4279                   to_y: "elm.padding.top";
4280                }
4281                rel2 {
4282                   relative: 0.0 1.0;
4283                   to_x: "elm.padding.icon.left";
4284                   to_y: "elm.padding.top";
4285                }
4286                align: 0.0 0.0;
4287                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
4288                text {
4289                   font: "SLP:style=Roman";
4290                   size: GENLIST_FONT_44_INC;
4291                   min: 0 1;
4292                   align: 0.0 0.5;
4293                   text_class: "list_item";
4294                }
4295             }
4296             description { state: "selected" 0.0;
4297                inherit: "default" 0.0;
4298                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4299             }
4300             GENLIST_DESCRIPTION_FLIP_ENABLED
4301          }
4302          part { name: "elm.text.2";
4303             clip_to: "disclip";
4304             type: TEXT;
4305             mouse_events: 0;
4306             scale: 1;
4307             description { state: "default" 0.0;
4308                rel1 {
4309                   relative: 1.0 1.0;
4310                   to_x: "elm.padding.left";
4311                   to_y: "elm.text.1";
4312                }
4313                rel2 {
4314                   relative: 0.0 0.0;
4315                   to_x: "elm.padding.icon.left";
4316                   to_y: "elm.padding.bottom";
4317                }
4318                align: 0.0 0.0;
4319                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
4320                text {
4321                   font: "SLP:style=Medium";
4322                   size: GENLIST_FONT_32_INC;
4323                   min: 0 1;
4324                   align: 0.0 0.5;
4325                   text_class: "slp_medium";
4326                }
4327             }
4328             description { state: "selected" 0.0;
4329                inherit: "default" 0.0;
4330                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4331             }
4332             GENLIST_DESCRIPTION_FLIP_ENABLED
4333          }
4334          GENLIST_PART_FLIP
4335          GENLIST_PART_DISCLIP
4336       }
4337       programs {
4338          // signal: elm,state,%s,active
4339          //   a "check" item named %s went active
4340          // signal: elm,state,%s,passive
4341          //   a "check" item named %s went passive
4342          // default is passive
4343          program { name: "go_active";
4344             signal: "elm,state,selected";
4345             source: "elm";
4346             action: STATE_SET "selected" 0.0;
4347             target: "bg_image";
4348             target: "elm.text.1";
4349             target: "elm.text.2";
4350             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
4351          }
4352          program { name: "go_passive";
4353             signal: "elm,state,unselected";
4354             source: "elm";
4355             action: STATE_SET "default" 0.0;
4356             target: "bg_image";
4357             target: "elm.text.1";
4358             target: "elm.text.2";
4359             transition: LINEAR 0.1;
4360          }
4361          program { name: "go_disabled";
4362             signal: "elm,state,disabled";
4363             source: "elm";
4364             action: STATE_SET "disabled" 0.0;
4365             target: "disclip";
4366          }
4367          program { name: "go_enabled";
4368             signal: "elm,state,enabled";
4369             source: "elm";
4370             action: STATE_SET "default" 0.0;
4371             target: "disclip";
4372          }
4373          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
4374          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
4375       }
4376    }
4377
4378    group { name: "elm/genlist/item_compress/2text.1icon.10.tb/default";
4379       inherit: "elm/genlist/item/2text.1icon.10/default";
4380       parts {
4381          part { name: "elm.text.2";
4382             clip_to: "disclip";
4383             type: TEXTBLOCK;
4384             mouse_events: 0;
4385             scale: 1;
4386             description { state: "default" 0.0;
4387                rel1 {
4388                   relative: 1.0 1.0;
4389                   to_x: "elm.padding.left";
4390                   to_y: "elm.text.1";
4391                }
4392                rel2 {
4393                   relative: 0.0 0.0;
4394                   to_x: "elm.padding.icon.left";
4395                   to_y: "elm.padding.bottom";
4396                }
4397                align: 0.0 0.5;
4398                text {
4399                   style: "genlist_default_textblock_style";
4400                   min: 0 1;
4401                   align: 0.0 0.5;
4402                }
4403             }
4404             description { state: "selected" 0.0;
4405                inherit: "default" 0.0;
4406                text.style: "genlist_default_textblock_selected_style";
4407             }
4408             GENLIST_DESCRIPTION_FLIP_ENABLED
4409          }
4410       }
4411    }
4412
4413 // 3.2.6
4414    group { name: "elm/genlist/item/2text.1icon.3/default";
4415       alias: "elm/genlist/item_odd/2text.1icon.3/default";
4416       alias: "elm/genlist/item_compress/2text.1icon.3/default";
4417       alias: "elm/genlist/item_compress_odd/2text.1icon.3/default";
4418       data.item: "stacking" "above";
4419       data.item: "selectraise" "on";
4420       data.item: "texts" "elm.text.1 elm.text.2";
4421       data.item: "contents" "elm.icon";
4422       data.item: "flips" "elm.flip.content";
4423       images {
4424          image: "00_list_bar_press_1x80.png" COMP;
4425       }
4426       parts {
4427          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
4428          GENLIST_PART_BG_IMAGE
4429          GENLIST_PART_BOTTOM_LINE
4430          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
4431          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
4432          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
4433          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
4434          part { name: "elm.text.1";
4435             clip_to: "disclip";
4436             type: TEXT;
4437             mouse_events: 0;
4438             scale: 1;
4439             description { state: "default" 0.0;
4440                min: 0 GENLIST_SIZE_61_INC;
4441                fixed: 0 1;
4442                rel1 {
4443                   relative: 1.0 1.0;
4444                   to_x: "elm.padding.left";
4445                   to_y: "elm.padding.top";
4446                }
4447                rel2 {
4448                   relative: 0.0 1.0;
4449                   to_x: "elm.padding.icon.left";
4450                   to_y: "elm.padding.top";
4451                }
4452                align: 0.0 0.0;
4453                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
4454                text {
4455                   font: "SLP:style=Roman";
4456                   size: GENLIST_FONT_44_INC;
4457                   min: 0 1;
4458                   align: 0.0 0.5;
4459                   text_class: "list_item";
4460                }
4461             }
4462             description { state: "selected" 0.0;
4463                inherit: "default" 0.0;
4464                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4465             }
4466             GENLIST_DESCRIPTION_FLIP_ENABLED
4467          }
4468          part { name: "elm.icon";
4469             clip_to: "disclip";
4470             type: SWALLOW;
4471             scale: 1;
4472             description { state: "default" 0.0;
4473                fixed: 1 1;
4474                rel1 {
4475                   relative: 0.0 1.0;
4476                   to_x: "elm.padding.right";
4477                   to_y: "elm.padding.top";
4478                }
4479                rel2 {
4480                   relative: 0.0 1.0;
4481                   to_x: "elm.padding.right";
4482                   to_y: "elm.text.1";
4483                }
4484                align: 1.0 0.5;
4485             }
4486             GENLIST_DESCRIPTION_FLIP_ENABLED
4487          }
4488          part { name: "elm.padding.icon.left";
4489             clip_to: "disclip";
4490             type: RECT;
4491             scale: 1;
4492             description { state: "default" 0.0;
4493                min: GENLIST_PADDING_16_INC 0;
4494                fixed: 1 0;
4495                rel1.to_x: "elm.icon";
4496                rel2 {
4497                   relative: 0.0 1.0;
4498                   to_x: "elm.icon";
4499                }
4500                align: 1.0 0.0;
4501                visible: 0;
4502             }
4503          }
4504          part { name: "elm.text.2";
4505             clip_to: "disclip";
4506             type: TEXT;
4507             mouse_events: 0;
4508             scale: 1;
4509             description { state: "default" 0.0;
4510                rel1 {
4511                   relative: 1.0 1.0;
4512                   to_x: "elm.padding.left";
4513                   to_y: "elm.text.1";
4514                }
4515                rel2 {
4516                   relative: 0.0 0.0;
4517                   to_x: "elm.padding.icon.left";
4518                   to_y: "elm.padding.bottom";
4519                }
4520                align: 0.0 0.0;
4521                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
4522                text {
4523                   font: "SLP:style=Medium";
4524                   size: GENLIST_FONT_32_INC;
4525                   min: 0 1;
4526                   align: 0.0 0.5;
4527                   text_class: "slp_medium";
4528                }
4529             }
4530             description { state: "selected" 0.0;
4531                inherit: "default" 0.0;
4532                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4533             }
4534             GENLIST_DESCRIPTION_FLIP_ENABLED
4535          }
4536          GENLIST_PART_FLIP
4537          GENLIST_PART_DISCLIP
4538       }
4539       programs {
4540          // signal: elm,state,%s,active
4541          //   a "check" item named %s went active
4542          // signal: elm,state,%s,passive
4543          //   a "check" item named %s went passive
4544          // default is passive
4545          program { name: "go_active";
4546             signal: "elm,state,selected";
4547             source: "elm";
4548             action: STATE_SET "selected" 0.0;
4549             target: "bg_image";
4550             target: "elm.text.1";
4551             target: "elm.text.2";
4552             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
4553          }
4554          program { name: "go_passive";
4555             signal: "elm,state,unselected";
4556             source: "elm";
4557             action: STATE_SET "default" 0.0;
4558             target: "bg_image";
4559             target: "elm.text.1";
4560             target: "elm.text.2";
4561             transition: LINEAR 0.1;
4562          }
4563          program { name: "go_disabled";
4564             signal: "elm,state,disabled";
4565             source: "elm";
4566             action: STATE_SET "disabled" 0.0;
4567             target: "disclip";
4568          }
4569          program { name: "go_enabled";
4570             signal: "elm,state,enabled";
4571             source: "elm";
4572             action: STATE_SET "default" 0.0;
4573             target: "disclip";
4574          }
4575          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
4576          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
4577       }
4578    }
4579
4580 // 3.2.7
4581    group { name: "elm/genlist/item/3text.1icon/default";
4582       alias: "elm/genlist/item_odd/3text.1icon/default";
4583       alias: "elm/genlist/item_compress/3text.1icon/default";
4584       alias: "elm/genlist/item_compress_odd/3text.1icon/default";
4585       data.item: "stacking" "above";
4586       data.item: "selectraise" "on";
4587       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
4588       data.item: "contents" "elm.icon";
4589       data.item: "flips" "elm.flip.content";
4590       images {
4591          image: "00_list_bar_press_1x80.png" COMP;
4592       }
4593       parts {
4594          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
4595          GENLIST_PART_BG_IMAGE
4596          GENLIST_PART_BOTTOM_LINE
4597          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
4598          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
4599          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
4600          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
4601          part { name: "elm.text.3";
4602             clip_to: "disclip";
4603             type: TEXT;
4604             mouse_events: 0;
4605             scale: 1;
4606             description { state: "default" 0.0;
4607                min: GENLIST_SIZE_133_INC GENLIST_SIZE_48_INC;
4608                fixed: 1 1;
4609                rel1 {
4610                   relative: 0.0 0.0;
4611                   to_x: "elm.padding.right";
4612                   to_y: "elm.padding.bottom";
4613                }
4614                rel2 {
4615                   relative: 0.0 0.0;
4616                   to_x: "elm.padding.right";
4617                   to_y: "elm.padding.bottom";
4618                }
4619                align: 1.0 1.0;
4620                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
4621                text {
4622                   font: "SLP:style=Medium";
4623                   size: GENLIST_FONT_32_INC;
4624                   min: 0 1;
4625                   align: 1.0 0.5;
4626                   text_class: "slp_medium";
4627                }
4628             }
4629             description { state: "selected" 0.0;
4630                inherit: "default" 0.0;
4631                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4632             }
4633             GENLIST_DESCRIPTION_FLIP_ENABLED
4634          }
4635          part { name: "elm.padding.text3.left";
4636             clip_to: "disclip";
4637             type: RECT;
4638             mouse_events: 0;
4639             scale: 1;
4640             description { state: "default" 0.0;
4641                min: GENLIST_SIZE_32_INC 0;
4642                fixed: 1 0;
4643                rel1.to_x: "elm.text.3";
4644                rel2 {
4645                   relative: 0.0 1.0;
4646                   to_x: "elm.text.3";
4647                }
4648                align: 1.0 0.5;
4649                visible: 0;
4650             }
4651          }
4652          part { name: "elm.icon";
4653             clip_to: "disclip";
4654             type: SWALLOW;
4655             scale: 1;
4656             description { state: "default" 0.0;
4657                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
4658                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
4659                fixed: 1 1;
4660                rel1 {
4661                   relative: 0.0 1.0;
4662                   to_x: "elm.padding.right";
4663                   to_y: "elm.padding.top";
4664                }
4665                rel2 {
4666                   relative: 0.0 0.0;
4667                   to_x: "elm.padding.right";
4668                   to_y: "elm.text.3";
4669                }
4670                align: 1.0 0.5;
4671             }
4672             GENLIST_DESCRIPTION_FLIP_ENABLED
4673          }
4674          part { name: "elm.padding.icon.left";
4675             clip_to: "disclip";
4676             type: RECT;
4677             scale: 1;
4678             description { state: "default" 0.0;
4679                min: GENLIST_PADDING_16_INC 0;
4680                fixed: 1 0;
4681                rel1.to_x: "elm.icon";
4682                rel2 {
4683                   relative: 0.0 1.0;
4684                   to_x: "elm.icon";
4685                }
4686                align: 1.0 0.0;
4687                visible: 0;
4688             }
4689          }
4690          part { name: "elm.text.1";
4691             clip_to: "disclip";
4692             type: TEXT;
4693             mouse_events: 0;
4694             scale: 1;
4695             description { state: "default" 0.0;
4696                rel1 {
4697                   relative: 1.0 1.0;
4698                   to_x: "elm.padding.left";
4699                   to_y: "elm.padding.top";
4700                }
4701                rel2 {
4702                   relative: 0.0 0.0;
4703                   to_x: "elm.padding.icon.left";
4704                   to_y: "elm.text.3";
4705                }
4706                align: 0.0 0.5;
4707                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
4708                text {
4709                   font: "SLP:style=Roman";
4710                   size: GENLIST_FONT_44_INC;
4711                   min: 0 1;
4712                   align: 0.0 0.5;
4713                   text_class: "list_item";
4714                }
4715             }
4716             description { state: "selected" 0.0;
4717                inherit: "default" 0.0;
4718                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4719             }
4720             GENLIST_DESCRIPTION_FLIP_ENABLED
4721          }
4722          part { name: "elm.text.2";
4723             clip_to: "disclip";
4724             type: TEXT;
4725             mouse_events: 0;
4726             scale: 1;
4727             description { state: "default" 0.0;
4728                rel1 {
4729                   relative: 1.0 1.0;
4730                   to_x: "elm.padding.left";
4731                   to_y: "elm.text.1";
4732                }
4733                rel2 {
4734                   relative: 0.0 0.0;
4735                   to_x: "elm.padding.text3.left";
4736                   to_y: "elm.padding.bottom";
4737                }
4738                align: 0.0 0.5;
4739                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
4740                text {
4741                   font: "SLP:style=Medium";
4742                   size: GENLIST_FONT_32_INC;
4743                   min: 0 1;
4744                   align: 0.0 0.5;
4745                   text_class: "slp_medium";
4746                }
4747             }
4748             description { state: "selected" 0.0;
4749                inherit: "default" 0.0;
4750                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4751             }
4752             GENLIST_DESCRIPTION_FLIP_ENABLED
4753          }
4754          GENLIST_PART_FLIP
4755          GENLIST_PART_DISCLIP
4756       }
4757       programs {
4758          // signal: elm,state,%s,active
4759          //   a "check" item named %s went active
4760          // signal: elm,state,%s,passive
4761          //   a "check" item named %s went passive
4762          // default is passive
4763          program { name: "go_active";
4764             signal: "elm,state,selected";
4765             source: "elm";
4766             action: STATE_SET "selected" 0.0;
4767             target: "bg_image";
4768             target: "elm.text.1";
4769             target: "elm.text.2";
4770             target: "elm.text.3";
4771             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
4772          }
4773          program { name: "go_passive";
4774             signal: "elm,state,unselected";
4775             source: "elm";
4776             action: STATE_SET "default" 0.0;
4777             target: "bg_image";
4778             target: "elm.text.1";
4779             target: "elm.text.2";
4780             target: "elm.text.3";
4781             transition: LINEAR 0.1;
4782          }
4783          program { name: "go_disabled";
4784             signal: "elm,state,disabled";
4785             source: "elm";
4786             action: STATE_SET "disabled" 0.0;
4787             target: "disclip";
4788          }
4789          program { name: "go_enabled";
4790             signal: "elm,state,enabled";
4791             source: "elm";
4792             action: STATE_SET "default" 0.0;
4793             target: "disclip";
4794          }
4795          GENLIST_PROGRAM_FLIP_3TEXT_1ICON
4796          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
4797       }
4798    }
4799
4800 // 3.2.8
4801    group { name: "elm/genlist/item/2text.2icon/default";
4802       alias: "elm/genlist/item_odd/2text.2icon/default";
4803       alias: "elm/genlist/item_compress/2text.2icon/default";
4804       alias: "elm/genlist/item_compress_odd/2text.2icon/default";
4805       data.item: "stacking" "above";
4806       data.item: "selectraise" "on";
4807       data.item: "texts" "elm.text.1 elm.text.2";
4808       data.item: "contents" "elm.icon.1 elm.icon.2";
4809       data.item: "flips" "elm.flip.content";
4810       images {
4811          image: "00_list_bar_press_1x80.png" COMP;
4812       }
4813       parts {
4814          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
4815          GENLIST_PART_BG_IMAGE
4816          GENLIST_PART_BOTTOM_LINE
4817          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
4818          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
4819          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
4820          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
4821          part { name: "elm.icon.1";
4822             clip_to: "disclip";
4823             type: SWALLOW;
4824             scale: 1;
4825             description { state: "default" 0.0;
4826                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
4827                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
4828                fixed: 1 1;
4829                rel1 {
4830                   relative: 1.0 1.0;
4831                   to_x: "elm.padding.left";
4832                   to_y: "elm.text.1";
4833                }
4834                rel2 {
4835                   relative: 1.0 0.0;
4836                   to_x: "elm.padding.left";
4837                   to_y: "elm.padding.bottom";
4838                }
4839                align: 0.0 0.5;
4840             }
4841             GENLIST_DESCRIPTION_FLIP_ENABLED
4842          }
4843          part { name: "elm.padding.icon1.right";
4844             clip_to: "disclip";
4845             type: RECT;
4846             scale: 1;
4847             description { state: "default" 0.0;
4848                min: GENLIST_PADDING_16_INC 0;
4849                fixed: 1 0;
4850                rel1 {
4851                   relative: 1.0 0.0;
4852                   to_x: "elm.icon.1";
4853                }
4854                rel2.to_x: "elm.icon.1";
4855                align: 0.0 0.0;
4856                visible: 0;
4857             }
4858          }
4859          part { name: "elm.icon.2";
4860             clip_to: "disclip";
4861             type: SWALLOW;
4862             scale: 1;
4863             description { state: "default" 0.0;
4864                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
4865                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
4866                fixed: 1 1;
4867                rel1 {
4868                   relative: 0.0 1.0;
4869                   to_x: "elm.padding.right";
4870                   to_y: "elm.padding.top";
4871                }
4872                rel2 {
4873                   relative: 0.0 1.0;
4874                   to_x: "elm.padding.right";
4875                   to_y: "elm.text.1";
4876                }
4877                align: 1.0 0.5;
4878             }
4879             GENLIST_DESCRIPTION_FLIP_ENABLED
4880          }
4881          part { name: "elm.padding.icon2.left";
4882             clip_to: "disclip";
4883             type: RECT;
4884             scale: 1;
4885             description { state: "default" 0.0;
4886                min: GENLIST_PADDING_16_INC 0;
4887                fixed: 1 0;
4888                rel1 {
4889                   relative: 0.0 0.0;
4890                   to_x: "elm.icon.2";
4891                }
4892                rel2.to_x: "elm.icon.2";
4893                align: 1.0 0.0;
4894                visible: 0;
4895             }
4896          }
4897          part { name: "elm.text.1";
4898             clip_to: "disclip";
4899             type: TEXT;
4900             mouse_events: 0;
4901             scale: 1;
4902             description { state: "default" 0.0;
4903                min: 0 GENLIST_SIZE_61_INC;
4904                fixed: 0 1;
4905                rel1 {
4906                   relative: 1.0 1.0;
4907                   to_x: "elm.padding.left";
4908                   to_y: "elm.padding.top";
4909                }
4910                rel2 {
4911                   relative: 0.0 1.0;
4912                   to_x: "elm.padding.icon2.left";
4913                   to_y: "elm.padding.top";
4914                }
4915                align: 0.0 0.0;
4916                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
4917                text {
4918                   font: "SLP:style=Roman";
4919                   size: GENLIST_FONT_44_INC;
4920                   min: 0 1;
4921                   align: 0.0 0.5;
4922                   text_class: "list_item";
4923                }
4924             }
4925             description { state: "selected" 0.0;
4926                inherit: "default" 0.0;
4927                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4928             }
4929             GENLIST_DESCRIPTION_FLIP_ENABLED
4930          }
4931          part { name: "elm.text.2";
4932             clip_to: "disclip";
4933             type: TEXT;
4934             mouse_events: 0;
4935             scale: 1;
4936             description { state: "default" 0.0;
4937                rel1 {
4938                   relative: 1.0 1.0;
4939                   to_x: "elm.padding.icon1.right";
4940                   to_y: "elm.text.1";
4941                }
4942                rel2 {
4943                   relative: 0.0 0.0;
4944                   to_x: "elm.padding.right";
4945                   to_y: "elm.padding.bottom";
4946                }
4947                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
4948                text {
4949                   font: "SLP:style=Medium";
4950                   size: GENLIST_FONT_32_INC;
4951                   min: 0 1;
4952                   align: 0.0 0.5;
4953                   text_class: "slp_medium";
4954                }
4955             }
4956             description { state: "selected" 0.0;
4957                inherit: "default" 0.0;
4958                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4959             }
4960             GENLIST_DESCRIPTION_FLIP_ENABLED
4961          }
4962          GENLIST_PART_FLIP
4963          GENLIST_PART_DISCLIP
4964       }
4965       programs {
4966          // signal: elm,state,%s,active
4967          //   a "check" item named %s went active
4968          // signal: elm,state,%s,passive
4969          //   a "check" item named %s went passive
4970          // default is passive
4971          program { name: "go_active";
4972             signal: "elm,state,selected";
4973             source: "elm";
4974             action: STATE_SET "selected" 0.0;
4975             target: "bg_image";
4976             target: "elm.text.1";
4977             target: "elm.text.2";
4978             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
4979          }
4980          program { name: "go_passive";
4981             signal: "elm,state,unselected";
4982             source: "elm";
4983             action: STATE_SET "default" 0.0;
4984             target: "bg_image";
4985             target: "elm.text.1";
4986             target: "elm.text.2";
4987             transition: LINEAR 0.1;
4988          }
4989          program { name: "go_disabled";
4990             signal: "elm,state,disabled";
4991             source: "elm";
4992             action: STATE_SET "disabled" 0.0;
4993             target: "disclip";
4994          }
4995          program { name: "go_enabled";
4996             signal: "elm,state,enabled";
4997             source: "elm";
4998             action: STATE_SET "default" 0.0;
4999             target: "disclip";
5000          }
5001          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
5002          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
5003       }
5004    }
5005
5006 // 3.2.9
5007    group { name: "elm/genlist/item/2text.7/default";
5008       alias: "elm/genlist/item_odd/2text.7/default";
5009       alias: "elm/genlist/item_compress/2text.7/default";
5010       alias: "elm/genlist/item_compress_odd/2text.7/default";
5011       data.item: "stacking" "above";
5012       data.item: "selectraise" "on";
5013       data.item: "texts" "elm.text.1 elm.text.2";
5014       data.item: "flips" "elm.flip.content";
5015       images {
5016          image: "00_list_bar_press_1x80.png" COMP;
5017       }
5018       parts {
5019          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
5020          GENLIST_PART_BG_IMAGE
5021          GENLIST_PART_BOTTOM_LINE
5022          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
5023          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
5024          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
5025          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
5026          part { name: "elm.text.1";
5027             clip_to: "disclip";
5028             type: TEXT;
5029             mouse_events: 0;
5030             scale: 1;
5031             description { state: "default" 0.0;
5032                min: 0 GENLIST_SIZE_61_INC;
5033                fixed: 0 1;
5034                rel1 {
5035                   relative: 1.0 1.0;
5036                   to_x: "elm.padding.left";
5037                   to_y: "elm.padding.top";
5038                }
5039                rel2 {
5040                   relative: 0.0 1.0;
5041                   to_x: "elm.padding.right";
5042                   to_y: "elm.padding.top";
5043                }
5044                align: 0.0 0.0;
5045                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
5046                text {
5047                   font: "SLP:style=Roman";
5048                   size: GENLIST_FONT_44_INC;
5049                   min: 0 1;
5050                   align: 0.0 0.5;
5051                   text_class: "list_item";
5052                }
5053             }
5054             description { state: "selected" 0.0;
5055                inherit: "default" 0.0;
5056                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5057             }
5058             GENLIST_DESCRIPTION_FLIP_ENABLED
5059          }
5060          part { name: "elm.text.2";
5061             clip_to: "disclip";
5062             type: TEXT;
5063             mouse_events: 0;
5064             scale: 1;
5065             description { state: "default" 0.0;
5066                rel1 {
5067                   relative: 1.0 1.0;
5068                   to_x: "elm.padding.left";
5069                   to_y: "elm.text.1";
5070                }
5071                rel2 {
5072                   relative: 0.0 0.0;
5073                   to_x: "elm.padding.right";
5074                   to_y: "elm.padding.bottom";
5075                }
5076                align: 0.0 0.0;
5077                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
5078                text {
5079                   font: "SLP:style=Medium";
5080                   size: GENLIST_FONT_32_INC;
5081                   min: 0 1;
5082                   align: 0.0 0.5;
5083                   text_class: "slp_medium";
5084                }
5085             }
5086             description { state: "selected" 0.0;
5087                inherit: "default" 0.0;
5088                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5089             }
5090             GENLIST_DESCRIPTION_FLIP_ENABLED
5091          }
5092          GENLIST_PART_FLIP
5093          GENLIST_PART_DISCLIP
5094       }
5095       programs {
5096          // signal: elm,state,%s,active
5097          //   a "check" item named %s went active
5098          // signal: elm,state,%s,passive
5099          //   a "check" item named %s went passive
5100          // default is passive
5101          program { name: "go_active";
5102             signal: "elm,state,selected";
5103             source: "elm";
5104             action: STATE_SET "selected" 0.0;
5105             target: "bg_image";
5106             target: "elm.text.1";
5107             target: "elm.text.2";
5108             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
5109          }
5110          program { name: "go_passive";
5111             signal: "elm,state,unselected";
5112             source: "elm";
5113             action: STATE_SET "default" 0.0;
5114             target: "bg_image";
5115             target: "elm.text.1";
5116             target: "elm.text.2";
5117             transition: LINEAR 0.1;
5118          }
5119          program { name: "go_disabled";
5120             signal: "elm,state,disabled";
5121             source: "elm";
5122             action: STATE_SET "disabled" 0.0;
5123             target: "disclip";
5124          }
5125          program { name: "go_enabled";
5126             signal: "elm,state,enabled";
5127             source: "elm";
5128             action: STATE_SET "default" 0.0;
5129             target: "disclip";
5130          }
5131          GENLIST_PROGRAM_FLIP_2TEXT
5132          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
5133       }
5134    }
5135
5136 // 3.2.10
5137    group { name: "elm/genlist/item/2text.1icon.7/default";
5138       alias: "elm/genlist/item_odd/2text.1icon.7/default";
5139       alias: "elm/genlist/item_compress/2text.1icon.7/default";
5140       alias: "elm/genlist/item_compress_odd/2text.1icon.7/default";
5141       data.item: "stacking" "above";
5142       data.item: "selectraise" "on";
5143       data.item: "texts" "elm.text.1 elm.text.2";
5144       data.item: "contents" "elm.icon";
5145       data.item: "flips" "elm.flip.content";
5146       images {
5147          image: "00_list_bar_press_1x80.png" COMP;
5148       }
5149       parts {
5150          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
5151          GENLIST_PART_BG_IMAGE
5152          GENLIST_PART_BOTTOM_LINE
5153          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
5154          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
5155          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
5156          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
5157          part { name: "elm.icon";
5158             clip_to: "disclip";
5159             type: SWALLOW;
5160             scale: 1;
5161             description { state: "default" 0.0;
5162                fixed: 1 1;
5163                rel1 {
5164                   relative: 0.0 1.0;
5165                   to_x: "elm.padding.right";
5166                   to_y: "elm.padding.top";
5167                }
5168                rel2 {
5169                   relative: 0.0 0.0;
5170                   to_x: "elm.padding.right";
5171                   to_y: "elm.padding.bottom";
5172                }
5173                align: 1.0 0.5;
5174             }
5175             GENLIST_DESCRIPTION_FLIP_ENABLED
5176          }
5177          part { name: "elm.padding.icon.left";
5178             clip_to: "disclip";
5179             type: RECT;
5180             scale: 1;
5181             description { state: "default" 0.0;
5182                min: GENLIST_PADDING_16_INC 0;
5183                fixed: 1 0;
5184                rel1.to_x: "elm.icon";
5185                rel2 {
5186                   relative: 0.0 1.0;
5187                   to_x: "elm.icon";
5188                }
5189                align: 1.0 0.0;
5190                visible: 0;
5191             }
5192          }
5193          part { name: "elm.text.1";
5194             clip_to: "disclip";
5195             type: TEXT;
5196             mouse_events: 0;
5197             scale: 1;
5198             description { state: "default" 0.0;
5199                min: 0 GENLIST_SIZE_61_INC;
5200                fixed: 0 1;
5201                rel1 {
5202                   relative: 1.0 1.0;
5203                   to_x: "elm.padding.left";
5204                   to_y: "elm.padding.top";
5205                }
5206                rel2 {
5207                   relative: 0.0 1.0;
5208                   to_x: "elm.padding.icon.left";
5209                   to_y: "elm.padding.top";
5210                }
5211                align: 0.0 0.0;
5212                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
5213                text {
5214                   font: "SLP:style=Roman";
5215                   size: GENLIST_FONT_44_INC;
5216                   min: 0 1;
5217                   align: 0.0 0.5;
5218                   text_class: "list_item";
5219                }
5220             }
5221             description { state: "selected" 0.0;
5222                inherit: "default" 0.0;
5223                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5224             }
5225             GENLIST_DESCRIPTION_FLIP_ENABLED
5226          }
5227          part { name: "elm.text.2";
5228             clip_to: "disclip";
5229             type: TEXT;
5230             mouse_events: 0;
5231             scale: 1;
5232             description { state: "default" 0.0;
5233                rel1 {
5234                   relative: 1.0 1.0;
5235                   to_x: "elm.padding.left";
5236                   to_y: "elm.text.1";
5237                }
5238                rel2 {
5239                   relative: 0.0 0.0;
5240                   to_x: "elm.padding.icon.left";
5241                   to_y: "elm.padding.bottom";
5242                }
5243                align: 0.0 0.0;
5244                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
5245                text {
5246                   font: "SLP:style=Medium";
5247                   size: GENLIST_FONT_32_INC;
5248                   min: 0 1;
5249                   align: 0.0 0.5;
5250                   text_class: "slp_medium";
5251                }
5252             }
5253             description { state: "selected" 0.0;
5254                inherit: "default" 0.0;
5255                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5256             }
5257             GENLIST_DESCRIPTION_FLIP_ENABLED
5258          }
5259          GENLIST_PART_FLIP
5260          GENLIST_PART_DISCLIP
5261       }
5262       programs {
5263          // signal: elm,state,%s,active
5264          //   a "check" item named %s went active
5265          // signal: elm,state,%s,passive
5266          //   a "check" item named %s went passive
5267          // default is passive
5268          program { name: "go_active";
5269             signal: "elm,state,selected";
5270             source: "elm";
5271             action: STATE_SET "selected" 0.0;
5272             target: "bg_image";
5273             target: "elm.text.1";
5274             target: "elm.text.2";
5275             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
5276          }
5277          program { name: "go_passive";
5278             signal: "elm,state,unselected";
5279             source: "elm";
5280             action: STATE_SET "default" 0.0;
5281             target: "bg_image";
5282             target: "elm.text.1";
5283             target: "elm.text.2";
5284             transition: LINEAR 0.1;
5285          }
5286          program { name: "go_disabled";
5287             signal: "elm,state,disabled";
5288             source: "elm";
5289             action: STATE_SET "disabled" 0.0;
5290             target: "disclip";
5291          }
5292          program { name: "go_enabled";
5293             signal: "elm,state,enabled";
5294             source: "elm";
5295             action: STATE_SET "default" 0.0;
5296             target: "disclip";
5297          }
5298          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
5299          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
5300       }
5301    }
5302
5303    group { name: "elm/genlist/item_compress/2text.1icon.7.tb/default";
5304       inherit: "elm/genlist/item/2text.1icon.7/default";
5305       parts {
5306          part { name: "elm.text.2";
5307             clip_to: "disclip";
5308             type: TEXTBLOCK;
5309             mouse_events: 0;
5310             scale: 1;
5311             description { state: "default" 0.0;
5312                rel1 {
5313                   relative: 1.0 1.0;
5314                   to_x: "elm.padding.left";
5315                   to_y: "elm.text.1";
5316                }
5317                rel2 {
5318                   relative: 0.0 0.0;
5319                   to_x: "elm.padding.icon.left";
5320                   to_y: "elm.padding.bottom";
5321                }
5322                align: 0.0 0.5;
5323                text {
5324                   style: "genlist_default_textblock_style";
5325                   min: 0 1;
5326                   align: 0.0 0.5;
5327                }
5328             }
5329             description { state: "selected" 0.0;
5330                inherit: "default" 0.0;
5331                text.style: "genlist_default_textblock_selected_style";
5332             }
5333             GENLIST_DESCRIPTION_FLIP_ENABLED
5334          }
5335       }
5336    }
5337
5338 // 3.2.11
5339    group { name: "elm/genlist/item/2text.1icon.11/default";
5340       alias: "elm/genlist/item_odd/2text.1icon.11/default";
5341       alias: "elm/genlist/item_compress/2text.1icon.11/default";
5342       alias: "elm/genlist/item_compress_odd/2text.1icon.11/default";
5343       data.item: "stacking" "above";
5344       data.item: "selectraise" "on";
5345       data.item: "texts" "elm.text.1 elm.text.2";
5346       data.item: "contents" "elm.icon";
5347       data.item: "flips" "elm.flip.content";
5348       images {
5349          image: "00_list_bar_press_1x80.png" COMP;
5350       }
5351       parts {
5352          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
5353          GENLIST_PART_BG_IMAGE
5354          GENLIST_PART_BOTTOM_LINE
5355          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
5356          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
5357          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
5358          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
5359          part { name: "elm.icon";
5360             clip_to: "disclip";
5361             type: SWALLOW;
5362             scale: 1;
5363             description { state: "default" 0.0;
5364                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
5365                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
5366                fixed: 1 1;
5367                rel1 {
5368                   relative: 0.0 1.0;
5369                   to_x: "elm.padding.right";
5370                   to_y: "elm.padding.top";
5371                }
5372                rel2 {
5373                   relative: 0.0 0.0;
5374                   to_x: "elm.padding.right";
5375                   to_y: "elm.padding.bottom";
5376                }
5377                align: 1.0 0.5;
5378             }
5379             GENLIST_DESCRIPTION_FLIP_ENABLED
5380          }
5381          part { name: "elm.padding.icon.left";
5382             clip_to: "disclip";
5383             type: RECT;
5384             scale: 1;
5385             description { state: "default" 0.0;
5386                min: GENLIST_PADDING_16_INC 0;
5387                fixed: 1 0;
5388                rel1.to_x: "elm.icon";
5389                rel2 {
5390                   relative: 0.0 1.0;
5391                   to_x: "elm.icon";
5392                }
5393                align: 1.0 0.0;
5394                visible: 0;
5395             }
5396          }
5397          part { name: "elm.text.1";
5398             clip_to: "disclip";
5399             type: TEXT;
5400             mouse_events: 0;
5401             scale: 1;
5402             description { state: "default" 0.0;
5403                min: 0 GENLIST_SIZE_61_INC;
5404                fixed: 0 1;
5405                rel1 {
5406                   relative: 1.0 1.0;
5407                   to_x: "elm.padding.left";
5408                   to_y: "elm.padding.top";
5409                }
5410                rel2 {
5411                   relative: 0.0 1.0;
5412                   to_x: "elm.padding.icon.left";
5413                   to_y: "elm.padding.top";
5414                }
5415                align: 0.0 0.0;
5416                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
5417                text {
5418                   font: "SLP:style=Roman";
5419                   size: GENLIST_FONT_44_INC;
5420                   min: 0 1;
5421                   align: 0.0 0.5;
5422                   text_class: "list_item";
5423                }
5424             }
5425             description { state: "selected" 0.0;
5426                inherit: "default" 0.0;
5427                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5428             }
5429             GENLIST_DESCRIPTION_FLIP_ENABLED
5430          }
5431          part { name: "elm.text.2";
5432             clip_to: "disclip";
5433             type: TEXT;
5434             mouse_events: 0;
5435             scale: 1;
5436             description { state: "default" 0.0;
5437                rel1 {
5438                   relative: 1.0 1.0;
5439                   to_x: "elm.padding.left";
5440                   to_y: "elm.text.1";
5441                }
5442                rel2 {
5443                   relative: 0.0 0.0;
5444                   to_x: "elm.padding.icon.left";
5445                   to_y: "elm.padding.bottom";
5446                }
5447                align: 0.0 0.0;
5448                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
5449                text {
5450                   font: "SLP:style=Medium";
5451                   size: GENLIST_FONT_32_INC;
5452                   min: 0 1;
5453                   align: 0.0 0.5;
5454                   text_class: "slp_medium";
5455                }
5456             }
5457             description { state: "selected" 0.0;
5458                inherit: "default" 0.0;
5459                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5460             }
5461             GENLIST_DESCRIPTION_FLIP_ENABLED
5462          }
5463          GENLIST_PART_FLIP
5464          GENLIST_PART_DISCLIP
5465       }
5466       programs {
5467          // signal: elm,state,%s,active
5468          //   a "check" item named %s went active
5469          // signal: elm,state,%s,passive
5470          //   a "check" item named %s went passive
5471          // default is passive
5472          program { name: "go_active";
5473             signal: "elm,state,selected";
5474             source: "elm";
5475             action: STATE_SET "selected" 0.0;
5476             target: "bg_image";
5477             target: "elm.text.1";
5478             target: "elm.text.2";
5479             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
5480          }
5481          program { name: "go_passive";
5482             signal: "elm,state,unselected";
5483             source: "elm";
5484             action: STATE_SET "default" 0.0;
5485             target: "bg_image";
5486             target: "elm.text.1";
5487             target: "elm.text.2";
5488             transition: LINEAR 0.1;
5489          }
5490          program { name: "go_disabled";
5491             signal: "elm,state,disabled";
5492             source: "elm";
5493             action: STATE_SET "disabled" 0.0;
5494             target: "disclip";
5495          }
5496          program { name: "go_enabled";
5497             signal: "elm,state,enabled";
5498             source: "elm";
5499             action: STATE_SET "default" 0.0;
5500             target: "disclip";
5501          }
5502          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
5503          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
5504       }
5505    }
5506
5507 // 3.2.12
5508    group { name: "elm/genlist/item/2text.2icon.2/default";
5509       alias: "elm/genlist/item_odd/2text.2icon.2/default";
5510       alias: "elm/genlist/item_compress/2text.2icon.2/default";
5511       alias: "elm/genlist/item_compress_odd/2text.2icon.2/default";
5512       data.item: "stacking" "above";
5513       data.item: "selectraise" "on";
5514       data.item: "texts" "elm.text.1 elm.text.2";
5515       data.item: "contents" "elm.icon.1 elm.icon.2";
5516       data.item: "flips" "elm.flip.content";
5517       images {
5518          image: "00_list_bar_press_1x80.png" COMP;
5519       }
5520       parts {
5521          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
5522          GENLIST_PART_BG_IMAGE
5523          GENLIST_PART_BOTTOM_LINE
5524          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
5525          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
5526          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
5527          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
5528          part { name: "elm.icon.2";
5529             clip_to: "disclip";
5530             type: SWALLOW;
5531             scale: 1;
5532             description { state: "default" 0.0;
5533                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
5534                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
5535                fixed: 1 1;
5536                rel1 {
5537                   relative: 0.0 1.0;
5538                   to_x: "elm.padding.right";
5539                   to_y: "elm.padding.top";
5540                }
5541                rel2 {
5542                   relative: 0.0 0.0;
5543                   to_x: "elm.padding.right";
5544                   to_y: "elm.padding.bottom";
5545                }
5546                align: 1.0 0.5;
5547             }
5548             GENLIST_DESCRIPTION_FLIP_ENABLED
5549          }
5550          part { name: "elm.padding.icon2.left";
5551             clip_to: "disclip";
5552             type: RECT;
5553             scale: 1;
5554             description { state: "default" 0.0;
5555                min: GENLIST_PADDING_16_INC 0;
5556                fixed: 1 0;
5557                rel1.to_x: "elm.icon.2";
5558                rel2 {
5559                   relative: 0.0 1.0;
5560                   to_x: "elm.icon.2";
5561                }
5562                align: 1.0 0.0;
5563                visible: 0;
5564             }
5565          }
5566         part { name: "elm.text.1";
5567             clip_to: "disclip";
5568             type: TEXT;
5569             mouse_events: 0;
5570             scale: 1;
5571             description { state: "default" 0.0;
5572                min: 0 GENLIST_SIZE_61_INC;
5573                fixed: 0 1;
5574                rel1 {
5575                   relative: 1.0 1.0;
5576                   to_x: "elm.padding.left";
5577                   to_y: "elm.padding.top";
5578                }
5579                rel2 {
5580                   relative: 0.0 1.0;
5581                   to_x: "elm.padding.icon2.left";
5582                   to_y: "elm.padding.top";
5583                }
5584                align: 0.0 0.0;
5585                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
5586                text {
5587                   font: "SLP:style=Roman";
5588                   size: GENLIST_FONT_44_INC;
5589                   min: 0 1;
5590                   align: 0.0 0.5;
5591                   text_class: "list_item";
5592                }
5593             }
5594             description { state: "selected" 0.0;
5595                inherit: "default" 0.0;
5596                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5597             }
5598             GENLIST_DESCRIPTION_FLIP_ENABLED
5599          }
5600          part { name: "elm.text.2";
5601             clip_to: "disclip";
5602             type: TEXT;
5603             mouse_events: 0;
5604             scale: 1;
5605             description { state: "default" 0.0;
5606                min: 0 0;
5607                max: GENLIST_SIZE_576_INC 0;
5608                fixed: 1 0;
5609                rel1 {
5610                   relative: 1.0 1.0;
5611                   to_x: "elm.padding.left";
5612                   to_y: "elm.text.1";
5613                }
5614                rel2 {
5615                   relative: 1.0 0.0;
5616                   to_x: "elm.padding.left";
5617                   to_y: "elm.padding.bottom";
5618                }
5619                align: 0.0 0.5;
5620                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
5621                text {
5622                   font: "SLP:style=Medium";
5623                   size: GENLIST_FONT_32_INC;
5624                   min: 1 1;
5625                   align: 0.0 0.5;
5626                   text_class: "slp_medium";
5627                }
5628             }
5629             description { state: "selected" 0.0;
5630                inherit: "default" 0.0;
5631                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5632             }
5633             GENLIST_DESCRIPTION_FLIP_ENABLED
5634          }
5635          part { name: "elm.padding.text2.right";
5636             clip_to: "disclip";
5637             type: RECT;
5638             scale: 1;
5639             description { state: "default" 0.0;
5640                min: GENLIST_PADDING_16_INC 0;
5641                fixed: 1 0;
5642                visible: 0;
5643                rel1 {
5644                   relative: 1.0 0.0;
5645                   to_x: "elm.text.2";
5646                }
5647                rel2.to_x: "elm.text.2";
5648                align: 0.0 0.0;
5649             }
5650          }
5651          part { name: "elm.icon.1";
5652             clip_to: "disclip";
5653             type: SWALLOW;
5654             scale: 1;
5655             description { state: "default" 0.0;
5656                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
5657                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
5658                fixed: 1 1;
5659                rel1 {
5660                   relative: 1.0 1.0;
5661                   to_x: "elm.padding.text2.right";
5662                   to_y: "elm.text.1";
5663                }
5664                rel2 {
5665                   relative: 1.0 0.0;
5666                   to_x: "elm.padding.text2.right";
5667                   to_y: "elm.padding.bottom";
5668                }
5669                align: 0.0 0.5;
5670             }
5671             GENLIST_DESCRIPTION_FLIP_ENABLED
5672          }
5673          GENLIST_PART_FLIP
5674          GENLIST_PART_DISCLIP
5675       }
5676       programs {
5677          // signal: elm,state,%s,active
5678          //   a "check" item named %s went active
5679          // signal: elm,state,%s,passive
5680          //   a "check" item named %s went passive
5681          // default is passive
5682          program { name: "go_active";
5683             signal: "elm,state,selected";
5684             source: "elm";
5685             action: STATE_SET "selected" 0.0;
5686             target: "bg_image";
5687             target: "elm.text.1";
5688             target: "elm.text.2";
5689             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
5690          }
5691          program { name: "go_passive";
5692             signal: "elm,state,unselected";
5693             source: "elm";
5694             action: STATE_SET "default" 0.0;
5695             target: "bg_image";
5696             target: "elm.text.1";
5697             target: "elm.text.2";
5698             transition: LINEAR 0.1;
5699          }
5700          program { name: "go_disabled";
5701             signal: "elm,state,disabled";
5702             source: "elm";
5703             action: STATE_SET "disabled" 0.0;
5704             target: "disclip";
5705          }
5706          program { name: "go_enabled";
5707             signal: "elm,state,enabled";
5708             source: "elm";
5709             action: STATE_SET "default" 0.0;
5710             target: "disclip";
5711          }
5712          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
5713          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
5714       }
5715    }
5716
5717 // 3.2.13
5718    group { name: "elm/genlist/item/2text.1icon.4/default";
5719       alias: "elm/genlist/item_odd/2text.1icon.4/default";
5720       alias: "elm/genlist/item_compress/2text.1icon.4/default";
5721       alias: "elm/genlist/item_compress_odd/2text.1icon.4/default";
5722       data.item: "stacking" "above";
5723       data.item: "selectraise" "on";
5724       data.item: "texts" "elm.text.1 elm.text.2";
5725       data.item: "contents" "elm.icon";
5726       data.item: "flips" "elm.flip.content";
5727       images {
5728          image: "00_list_bar_press_1x80.png" COMP;
5729       }
5730       parts {
5731          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
5732          GENLIST_PART_BG_IMAGE
5733          GENLIST_PART_BOTTOM_LINE
5734          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
5735          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
5736          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
5737          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
5738          part { name: "elm.icon";
5739             clip_to: "disclip";
5740             type: SWALLOW;
5741             scale: 1;
5742             description { state: "default" 0.0;
5743                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
5744                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
5745                fixed: 1 1;
5746                rel1 {
5747                   relative: 1.0 1.0;
5748                   to_x: "elm.padding.left";
5749                   to_y: "elm.padding.top";
5750                }
5751                rel2 {
5752                   relative: 1.0 0.0;
5753                   to_x: "elm.padding.left";
5754                   to_y: "elm.padding.bottom";
5755                }
5756                align: 0.0 0.5;
5757             }
5758             GENLIST_DESCRIPTION_FLIP_ENABLED
5759          }
5760          part { name: "elm.padding.icon.right";
5761             clip_to: "disclip";
5762             type: RECT;
5763             scale: 1;
5764             description { state: "default" 0.0;
5765                min: GENLIST_PADDING_16_INC 0;
5766                fixed: 1 0;
5767                rel1 {
5768                   relative: 1.0 0.0;
5769                   to_x: "elm.icon";
5770                }
5771                rel2.to_x: "elm.icon";
5772                align: 0.0 0.0;
5773                visible: 0;
5774             }
5775          }
5776          part { name: "elm.text.1";
5777             clip_to: "disclip";
5778             type: TEXT;
5779             mouse_events: 0;
5780             scale: 1;
5781             description { state: "default" 0.0;
5782                min: 0 GENLIST_SIZE_61_INC;
5783                fixed: 0 1;
5784                rel1 {
5785                   relative: 1.0 1.0;
5786                   to_x: "elm.padding.icon.right";
5787                   to_y: "elm.padding.top";
5788                }
5789                rel2 {
5790                   relative: 0.0 1.0;
5791                   to_x: "elm.padding.right";
5792                   to_y: "elm.padding.top";
5793                }
5794                align: 0.0 0.0;
5795                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
5796                text {
5797                   font: "SLP:style=Roman";
5798                   size: GENLIST_FONT_44_INC;
5799                   min: 0 1;
5800                   align: 0.0 0.5;
5801                   text_class: "list_item";
5802                }
5803             }
5804             description { state: "selected" 0.0;
5805                inherit: "default" 0.0;
5806                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5807             }
5808             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
5809             GENLIST_DESCRIPTION_FLIP_ENABLED
5810          }
5811          part { name: "elm.text.2";
5812             clip_to: "disclip";
5813             type: TEXT;
5814             mouse_events: 0;
5815             scale: 1;
5816             description { state: "default" 0.0;
5817                rel1 {
5818                   relative: 1.0 1.0;
5819                   to_x: "elm.padding.icon.right";
5820                   to_y: "elm.text.1";
5821                }
5822                rel2 {
5823                   relative: 0.0 0.0;
5824                   to_x: "elm.padding.right";
5825                   to_y: "elm.padding.bottom";
5826                }
5827                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
5828                text {
5829                   font: "SLP:style=Medium";
5830                   size: GENLIST_FONT_32_INC;
5831                   min: 0 1;
5832                   align: 0.0 0.5;
5833                   text_class: "slp_medium";
5834                }
5835             }
5836             description { state: "selected" 0.0;
5837                inherit: "default" 0.0;
5838                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5839             }
5840             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
5841             GENLIST_DESCRIPTION_FLIP_ENABLED
5842          }
5843          GENLIST_PART_FLIP
5844          GENLIST_PART_DISCLIP
5845       }
5846       programs {
5847          // signal: elm,state,%s,active
5848          //   a "check" item named %s went active
5849          // signal: elm,state,%s,passive
5850          //   a "check" item named %s went passive
5851          // default is passive
5852          program { name: "go_active";
5853             signal: "elm,state,selected";
5854             source: "elm";
5855             action: STATE_SET "selected" 0.0;
5856             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_2TEXT
5857             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
5858          }
5859          program { name: "go_passive";
5860             signal: "elm,state,unselected";
5861             source: "elm";
5862             action: STATE_SET "default" 0.0;
5863             target: "bg_image";
5864             target: "elm.text.1";
5865             target: "elm.text.2";
5866             transition: LINEAR 0.1;
5867          }
5868          program { name: "go_disabled";
5869             signal: "elm,state,disabled";
5870             source: "elm";
5871             action: STATE_SET "disabled" 0.0;
5872             target: "disclip";
5873          }
5874          program { name: "go_enabled";
5875             signal: "elm,state,enabled";
5876             source: "elm";
5877             action: STATE_SET "default" 0.0;
5878             target: "disclip";
5879          }
5880          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
5881          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
5882       }
5883    }
5884
5885    group { name: "elm/genlist/item_compress/2text.1icon.4.tb/default";
5886       inherit: "elm/genlist/item/2text.1icon.4/default";
5887       parts {
5888          part { name: "elm.text.1";
5889             clip_to: "disclip";
5890             type: TEXTBLOCK;
5891             mouse_events: 0;
5892             scale: 1;
5893             description { state: "default" 0.0;
5894                min: 0 GENLIST_SIZE_61_INC;
5895                fixed: 0 1;
5896                rel1 {
5897                   relative: 1.0 1.0;
5898                   to_x: "elm.padding.icon.right";
5899                   to_y: "elm.padding.top";
5900                }
5901                rel2 {
5902                   relative: 0.0 1.0;
5903                   to_x: "elm.padding.right";
5904                   to_y: "elm.padding.top";
5905                }
5906                align: 0.0 0.0;
5907                text {
5908                   style: "genlist_default_textblock_style";
5909                   size: GENLIST_FONT_44_INC;
5910                   min: 0 1;
5911                   align: 0.0 0.5;
5912                   text_class: "list_item";
5913                }
5914             }
5915             description { state: "selected" 0.0;
5916                inherit: "default" 0.0;
5917                text.style: "genlist_default_textblock_selected_style";
5918             }
5919             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
5920             GENLIST_DESCRIPTION_FLIP_ENABLED
5921          }
5922          part { name: "elm.text.2";
5923             clip_to: "disclip";
5924             type: TEXTBLOCK;
5925             mouse_events: 0;
5926             scale: 1;
5927             description { state: "default" 0.0;
5928                rel1 {
5929                   relative: 1.0 1.0;
5930                   to_x: "elm.padding.icon.right";
5931                   to_y: "elm.text.1";
5932                }
5933                rel2 {
5934                   relative: 0.0 0.0;
5935                   to_x: "elm.padding.right";
5936                   to_y: "elm.padding.bottom";
5937                }
5938                align: 0.0 0.5;
5939                text {
5940                   style: "genlist_default_textblock_style";
5941                   size: GENLIST_FONT_32_INC;
5942                   min: 0 1;
5943                   align: 0.0 0.5;
5944                }
5945             }
5946             description { state: "selected" 0.0;
5947                inherit: "default" 0.0;
5948                text.style: "genlist_default_textblock_selected_style";
5949             }
5950             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
5951             GENLIST_DESCRIPTION_FLIP_ENABLED
5952          }
5953       }
5954    }
5955
5956 // 3.2.14
5957    group { name: "elm/genlist/item/3text.1icon.2/default";
5958       alias: "elm/genlist/item_odd/3text.1icon.2/default";
5959       alias: "elm/genlist/item_compress/3text.1icon.2/default";
5960       alias: "elm/genlist/item_compress_odd/3text.1icon.2/default";
5961       data.item: "stacking" "above";
5962       data.item: "selectraise" "on";
5963       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
5964       data.item: "contents" "elm.icon";
5965       data.item: "flips" "elm.flip.content";
5966       images {
5967          image: "00_list_bar_press_1x80.png" COMP;
5968       }
5969       parts {
5970          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
5971          GENLIST_PART_BG_IMAGE
5972          GENLIST_PART_BOTTOM_LINE
5973          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
5974          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
5975          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
5976          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
5977          part { name: "elm.icon";
5978             clip_to: "disclip";
5979             type: SWALLOW;
5980             scale: 1;
5981             description { state: "default" 0.0;
5982                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
5983                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
5984                fixed: 1 1;
5985                rel1 {
5986                   relative: 1.0 1.0;
5987                   offset: 0 0;
5988                   to_x: "elm.padding.left";
5989                   to_y: "elm.padding.top";
5990                }
5991                rel2 {
5992                   relative: 1.0 0.0;
5993                   to_x: "elm.padding.left";
5994                   to_y: "elm.padding.bottom";
5995                }
5996                align: 0.0 0.5;
5997             }
5998             GENLIST_DESCRIPTION_FLIP_ENABLED
5999          }
6000          part { name: "elm.padding.icon.right";
6001             clip_to: "disclip";
6002             type: RECT;
6003             scale: 1;
6004             description { state: "default" 0.0;
6005                min: GENLIST_PADDING_16_INC 0;
6006                fixed: 1 0;
6007                rel1 {
6008                   relative: 1.0 0.0;
6009                   to_x: "elm.icon";
6010                }
6011                rel2.to_x: "elm.icon";
6012                align: 0.0 0.0;
6013                visible: 0;
6014             }
6015          }
6016          part { name: "elm.text.3";
6017             clip_to: "disclip";
6018             type: TEXT;
6019             mouse_events: 0;
6020             scale: 1;
6021             description { state: "default" 0.0;
6022                min: GENLIST_SIZE_192_INC GENLIST_SIZE_61_INC;
6023                fixed: 1 1;
6024                rel1 {
6025                   relative: 0.0 1.0;
6026                   to_x: "elm.padding.right";
6027                   to_y: "elm.padding.top";
6028                }
6029                rel2 {
6030                   relative: 0.0 1.0;
6031                   to_x: "elm.padding.right";
6032                   to_y: "elm.padding.top";
6033                }
6034                align: 1.0 0.0;
6035                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
6036                text {
6037                   font: "SLP:style=Medium";
6038                   size: GENLIST_FONT_32_INC;
6039                   min: 0 1;
6040                   align: 1.0 0.5;
6041                   text_class: "slp_medium";
6042                }
6043             }
6044             description { state: "selected" 0.0;
6045                inherit: "default" 0.0;
6046                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6047             }
6048             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
6049             GENLIST_DESCRIPTION_FLIP_ENABLED
6050          }
6051          part { name: "elm.padding.text3.left";
6052             clip_to: "disclip";
6053             type: RECT;
6054             mouse_events: 0;
6055             scale: 1;
6056             description { state: "default" 0.0;
6057                min: GENLIST_SIZE_32_INC 0;
6058                fixed: 1 0;
6059                rel1.to_x: "elm.text.3";
6060                rel2 {
6061                   relative: 0.0 1.0;
6062                   to_x: "elm.text.3";
6063                }
6064                align: 1.0 0.5;
6065                visible: 0;
6066             }
6067          }
6068          part { name: "elm.text.1";
6069             clip_to: "disclip";
6070             type: TEXT;
6071             mouse_events: 0;
6072             scale: 1;
6073             description { state: "default" 0.0;
6074                rel1 {
6075                   relative: 1.0 1.0;
6076                   to_x: "elm.padding.icon.right";
6077                   to_y: "elm.padding.top";
6078                }
6079                rel2 {
6080                   relative: 0.0 1.0;
6081                   to_x: "elm.padding.text3.left";
6082                   to_y: "elm.text.3";
6083                }
6084                align: 0.0 0.5;
6085                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
6086                text {
6087                   font: "SLP:style=Roman";
6088                   size: GENLIST_FONT_44_INC;
6089                   min: 0 1;
6090                   align: 0.0 0.5;
6091                   text_class: "list_item";
6092                }
6093             }
6094             description { state: "selected" 0.0;
6095                inherit: "default" 0.0;
6096                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6097             }
6098             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
6099             GENLIST_DESCRIPTION_FLIP_ENABLED
6100          }
6101          part { name: "elm.text.2";
6102             clip_to: "disclip";
6103             type: TEXT;
6104             mouse_events: 0;
6105             scale: 1;
6106             description { state: "default" 0.0;
6107                rel1 {
6108                   relative: 1.0 1.0;
6109                   to_x: "elm.padding.icon.right";
6110                   to_y: "elm.text.1";
6111                }
6112                rel2 {
6113                   relative: 0.0 0.0;
6114                   to_x: "elm.padding.right";
6115                   to_y: "elm.padding.bottom";
6116                }
6117                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
6118                text {
6119                   font: "SLP:style=Medium";
6120                   size: GENLIST_FONT_32_INC;
6121                   min: 0 1;
6122                   align: 0.0 0.5;
6123                   text_class: "slp_medium";
6124                }
6125             }
6126             description { state: "selected" 0.0;
6127                inherit: "default" 0.0;
6128                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6129             }
6130             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
6131             GENLIST_DESCRIPTION_FLIP_ENABLED
6132          }
6133          GENLIST_PART_FLIP
6134          GENLIST_PART_DISCLIP
6135       }
6136       programs {
6137          // signal: elm,state,%s,active
6138          //   a "check" item named %s went active
6139          // signal: elm,state,%s,passive
6140          //   a "check" item named %s went passive
6141          // default is passive
6142          program { name: "go_active";
6143             signal: "elm,state,selected";
6144             source: "elm";
6145             action: STATE_SET "selected" 0.0;
6146             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_3TEXT
6147             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
6148          }
6149          program { name: "go_passive";
6150             signal: "elm,state,unselected";
6151             source: "elm";
6152             action: STATE_SET "default" 0.0;
6153             target: "bg_image";
6154             target: "elm.text.1";
6155             target: "elm.text.2";
6156             target: "elm.text.3";
6157             transition: LINEAR 0.1;
6158          }
6159          program { name: "go_disabled";
6160             signal: "elm,state,disabled";
6161             source: "elm";
6162             action: STATE_SET "disabled" 0.0;
6163             target: "disclip";
6164          }
6165          program { name: "go_enabled";
6166             signal: "elm,state,enabled";
6167             source: "elm";
6168             action: STATE_SET "default" 0.0;
6169             target: "disclip";
6170          }
6171          GENLIST_PROGRAM_FLIP_3TEXT_1ICON
6172          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
6173       }
6174    }
6175
6176 // 3.2.15
6177    group { name: "elm/genlist/item/2text.1icon.8/default";
6178       alias: "elm/genlist/item_odd/2text.1icon.8/default";
6179       alias: "elm/genlist/item_compress/2text.1icon.8/default";
6180       alias: "elm/genlist/item_compress_odd/2text.1icon.8/default";
6181       data.item: "stacking" "above";
6182       data.item: "selectraise" "on";
6183       data.item: "texts" "elm.text.1 elm.text.2";
6184       data.item: "contents" "elm.icon";
6185       data.item: "flips" "elm.flip.content";
6186       images {
6187          image: "00_list_bar_press_1x80.png" COMP;
6188       }
6189       parts {
6190          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
6191          GENLIST_PART_BG_IMAGE
6192          GENLIST_PART_BOTTOM_LINE
6193          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
6194          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
6195          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
6196          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
6197          part { name: "elm.icon";
6198             clip_to: "disclip";
6199             type: SWALLOW;
6200             scale: 1;
6201             description { state: "default" 0.0;
6202                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
6203                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
6204                fixed: 1 1;
6205                rel1 {
6206                   relative: 1.0 1.0;
6207                   to_x: "elm.padding.left";
6208                   to_y: "elm.padding.top";
6209                }
6210                rel2 {
6211                   relative: 1.0 0.0;
6212                   to_x: "elm.padding.left";
6213                   to_y: "elm.padding.bottom";
6214                }
6215                align: 0.0 0.5;
6216             }
6217             GENLIST_DESCRIPTION_FLIP_ENABLED
6218          }
6219          part { name: "elm.padding.icon.right";
6220             clip_to: "disclip";
6221             type: RECT;
6222             scale: 1;
6223             description { state: "default" 0.0;
6224                min: GENLIST_PADDING_16_INC 0;
6225                fixed: 1 0;
6226                rel1 {
6227                   relative: 1.0 0.0;
6228                   to_x: "elm.icon";
6229                }
6230                rel2.to_x: "elm.icon";
6231                align: 0.0 0.0;
6232                visible: 0;
6233             }
6234          }
6235          part { name: "elm.text.1";
6236             clip_to: "disclip";
6237             type: TEXT;
6238             mouse_events: 0;
6239             scale: 1;
6240             description { state: "default" 0.0;
6241                min: 0 GENLIST_SIZE_61_INC;
6242                fixed: 0 1;
6243                rel1 {
6244                   relative: 1.0 1.0;
6245                   to_x: "elm.padding.icon.right";
6246                   to_y: "elm.padding.top";
6247                }
6248                rel2 {
6249                   relative: 0.0 1.0;
6250                   to_x: "elm.padding.right";
6251                   to_y: "elm.padding.top";
6252                }
6253                align: 0.0 0.0;
6254                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
6255                text {
6256                   font: "SLP:style=Roman";
6257                   size: GENLIST_FONT_44_INC;
6258                   min: 0 1;
6259                   align: 0.0 0.5;
6260                   text_class: "list_item";
6261                }
6262             }
6263             description { state: "selected" 0.0;
6264                inherit: "default" 0.0;
6265                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6266             }
6267             GENLIST_DESCRIPTION_FLIP_ENABLED
6268          }
6269          part { name: "elm.text.2";
6270             clip_to: "disclip";
6271             type: TEXT;
6272             mouse_events: 0;
6273             scale: 1;
6274             description { state: "default" 0.0;
6275                rel1 {
6276                   relative: 1.0 1.0;
6277                   to_x: "elm.padding.icon.right";
6278                   to_y: "elm.text.1";
6279                }
6280                rel2 {
6281                   relative: 0.0 0.0;
6282                   to_x: "elm.padding.right";
6283                   to_y: "elm.padding.bottom";
6284                }
6285                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
6286                text {
6287                   font: "SLP:style=Medium";
6288                   size: GENLIST_FONT_32_INC;
6289                   min: 0 1;
6290                   align: 0.0 0.5;
6291                   text_class: "slp_medium";
6292                }
6293             }
6294             description { state: "selected" 0.0;
6295                inherit: "default" 0.0;
6296                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6297             }
6298             GENLIST_DESCRIPTION_FLIP_ENABLED
6299          }
6300          GENLIST_PART_FLIP
6301          GENLIST_PART_DISCLIP
6302       }
6303       programs {
6304          // signal: elm,state,%s,active
6305          //   a "check" item named %s went active
6306          // signal: elm,state,%s,passive
6307          //   a "check" item named %s went passive
6308          // default is passive
6309          program { name: "go_active";
6310             signal: "elm,state,selected";
6311             source: "elm";
6312             action: STATE_SET "selected" 0.0;
6313             target: "bg_image";
6314             target: "elm.text.1";
6315             target: "elm.text.2";
6316             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
6317          }
6318          program { name: "go_passive";
6319             signal: "elm,state,unselected";
6320             source: "elm";
6321             action: STATE_SET "default" 0.0;
6322             target: "bg_image";
6323             target: "elm.text.1";
6324             target: "elm.text.2";
6325             transition: LINEAR 0.1;
6326          }
6327          program { name: "go_disabled";
6328             signal: "elm,state,disabled";
6329             source: "elm";
6330             action: STATE_SET "disabled" 0.0;
6331             target: "disclip";
6332          }
6333          program { name: "go_enabled";
6334             signal: "elm,state,enabled";
6335             source: "elm";
6336             action: STATE_SET "default" 0.0;
6337             target: "disclip";
6338          }
6339          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
6340          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
6341       }
6342    }
6343
6344 // 3.2.16
6345    group { name: "elm/genlist/item/2text.2icon.3/default";
6346       alias: "elm/genlist/item_odd/2text.2icon.3/default";
6347       alias: "elm/genlist/item_compress/2text.2icon.3/default";
6348       alias: "elm/genlist/item_compress_odd/2text.2icon.3/default";
6349       data.item: "stacking" "above";
6350       data.item: "selectraise" "on";
6351       data.item: "texts" "elm.text.1 elm.text.2";
6352       data.item: "contents" "elm.icon.1 elm.icon.2";
6353       data.item: "flips" "elm.flip.content";
6354       images {
6355          image: "00_list_bar_press_1x80.png" COMP;
6356       }
6357       parts {
6358          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
6359          GENLIST_PART_BG_IMAGE
6360          GENLIST_PART_BOTTOM_LINE
6361          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
6362          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
6363          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
6364          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
6365          part { name: "elm.icon.1";
6366             clip_to: "disclip";
6367             type: SWALLOW;
6368             scale: 1;
6369             description { state: "default" 0.0;
6370                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
6371                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
6372                fixed: 1 1;
6373                rel1 {
6374                   relative: 1.0 1.0;
6375                   to_x: "elm.padding.left";
6376                   to_y: "elm.padding.top";
6377                }
6378                rel2 {
6379                   relative: 1.0 0.0;
6380                   to_x: "elm.padding.left";
6381                   to_y: "elm.padding.bottom";
6382                }
6383                align: 0.0 0.5;
6384             }
6385             GENLIST_DESCRIPTION_FLIP_ENABLED
6386          }
6387          part { name: "elm.padding.icon1.right";
6388             clip_to: "disclip";
6389             type: RECT;
6390             scale: 1;
6391             description { state: "default" 0.0;
6392                min: GENLIST_PADDING_16_INC 0;
6393                fixed: 1 0;
6394                rel1 {
6395                   relative: 1.0 0.0;
6396                   to_x: "elm.icon.1";
6397                }
6398                rel2.to_x: "elm.icon.1";
6399                align: 0.0 0.0;
6400                visible: 0;
6401             }
6402          }
6403          part { name: "elm.text.1";
6404             clip_to: "disclip";
6405             type: TEXT;
6406             mouse_events: 0;
6407             scale: 1;
6408             description { state: "default" 0.0;
6409                min: 0 GENLIST_SIZE_61_INC;
6410                fixed: 0 1;
6411                rel1 {
6412                   relative: 1.0 1.0;
6413                   to_x: "elm.padding.icon1.right";
6414                   to_y: "elm.padding.top";
6415                }
6416                rel2 {
6417                   relative: 0.0 1.0;
6418                   to_x: "elm.padding.icon2.left";
6419                   to_y: "elm.padding.top";
6420                }
6421                align: 0.0 0.0;
6422                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
6423                text {
6424                   font: "SLP:style=Roman";
6425                   size: GENLIST_FONT_44_INC;
6426                   min: 0 1;
6427                   align: 0.0 0.5;
6428                   text_class: "list_item";
6429                }
6430             }
6431             description { state: "selected" 0.0;
6432                inherit: "default" 0.0;
6433                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6434             }
6435             GENLIST_DESCRIPTION_FLIP_ENABLED
6436          }
6437          part { name: "elm.icon.2";
6438             clip_to: "disclip";
6439             type: SWALLOW;
6440             scale: 1;
6441             description { state: "default" 0.0;
6442                fixed: 1 1;
6443                rel1 {
6444                   relative: 0.0 1.0;
6445                   to_x: "elm.padding.right";
6446                   to_y: "elm.padding.top";
6447                }
6448                rel2 {
6449                   relative: 0.0 1.0;
6450                   to_x: "elm.padding.right";
6451                   to_y: "elm.text.1";
6452                }
6453                align: 1.0 0.5;
6454             }
6455             GENLIST_DESCRIPTION_FLIP_ENABLED
6456          }
6457          part { name: "elm.padding.icon2.left";
6458             clip_to: "disclip";
6459             type: RECT;
6460             scale: 1;
6461             description { state: "default" 0.0;
6462                min: GENLIST_PADDING_16_INC 0;
6463                fixed: 1 0;
6464                rel1 {
6465                   relative: 0.0 0.0;
6466                   to_x: "elm.icon.2";
6467                }
6468                rel2.to_x: "elm.icon.2";
6469                align: 1.0 0.0;
6470                visible: 0;
6471             }
6472          }
6473          part { name: "elm.text.2";
6474             clip_to: "disclip";
6475             type: TEXT;
6476             mouse_events: 0;
6477             scale: 1;
6478             description { state: "default" 0.0;
6479                rel1 {
6480                   relative: 1.0 1.0;
6481                   to_x: "elm.padding.icon1.right";
6482                   to_y: "elm.text.1";
6483                }
6484                rel2 {
6485                   relative: 0.0 0.0;
6486                   to_x: "elm.padding.icon2.left";
6487                   to_y: "elm.padding.bottom";
6488                }
6489                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
6490                text {
6491                   font: "SLP:style=Medium";
6492                   size: GENLIST_FONT_32_INC;
6493                   min: 0 1;
6494                   align: 0.0 0.5;
6495                   text_class: "slp_medium";
6496                }
6497             }
6498             description { state: "selected" 0.0;
6499                inherit: "default" 0.0;
6500                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6501             }
6502             GENLIST_DESCRIPTION_FLIP_ENABLED
6503          }
6504          GENLIST_PART_FLIP
6505          GENLIST_PART_DISCLIP
6506       }
6507       programs {
6508          // signal: elm,state,%s,active
6509          //   a "check" item named %s went active
6510          // signal: elm,state,%s,passive
6511          //   a "check" item named %s went passive
6512          // default is passive
6513          program { name: "go_active";
6514             signal: "elm,state,selected";
6515             source: "elm";
6516             action: STATE_SET "selected" 0.0;
6517             target: "bg_image";
6518             target: "elm.text.1";
6519             target: "elm.text.2";
6520             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
6521          }
6522          program { name: "go_passive";
6523             signal: "elm,state,unselected";
6524             source: "elm";
6525             action: STATE_SET "default" 0.0;
6526             target: "bg_image";
6527             target: "elm.text.1";
6528             target: "elm.text.2";
6529             transition: LINEAR 0.1;
6530          }
6531          program { name: "go_disabled";
6532             signal: "elm,state,disabled";
6533             source: "elm";
6534             action: STATE_SET "disabled" 0.0;
6535             target: "disclip";
6536          }
6537          program { name: "go_enabled";
6538             signal: "elm,state,enabled";
6539             source: "elm";
6540             action: STATE_SET "default" 0.0;
6541             target: "disclip";
6542          }
6543          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
6544          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
6545       }
6546    }
6547
6548    group { name: "elm/genlist/item_compress/2text.2icon.3.tb/default";
6549       inherit: "elm/genlist/item/2text.2icon.3/default";
6550       parts {
6551          part { name: "elm.text.2";
6552             clip_to: "disclip";
6553             type: TEXTBLOCK;
6554             mouse_events: 0;
6555             scale: 1;
6556             description { state: "default" 0.0;
6557                rel1 {
6558                   relative: 1.0 1.0;
6559                   to_x: "elm.padding.icon1.right";
6560                   to_y: "elm.text.1";
6561                }
6562                rel2 {
6563                   relative: 0.0 0.0;
6564                   to_x: "elm.padding.icon2.left";
6565                   to_y: "elm.padding.bottom";
6566                }
6567                align: 0.0 0.5;
6568                text {
6569                   style: "genlist_default_textblock_style";
6570                   min: 0 1;
6571                   align: 0.0 0.5;
6572                }
6573             }
6574             description { state: "selected" 0.0;
6575                inherit: "default" 0.0;
6576                text.style: "genlist_default_textblock_selected_style";
6577             }
6578             GENLIST_DESCRIPTION_FLIP_ENABLED
6579          }
6580       }
6581    }
6582
6583 // 3.2.17
6584    group { name: "elm/genlist/item/2text.2icon.4/default";
6585       alias: "elm/genlist/item_odd/2text.2icon.4/default";
6586       alias: "elm/genlist/item_compress/2text.2icon.4/default";
6587       alias: "elm/genlist/item_compress_odd/2text.2icon.4/default";
6588       data.item: "stacking" "above";
6589       data.item: "selectraise" "on";
6590       data.item: "texts" "elm.text.1 elm.text.2";
6591       data.item: "contents" "elm.icon.1 elm.icon.2";
6592       data.item: "flips" "elm.flip.content";
6593       images {
6594          image: "00_list_bar_press_1x80.png" COMP;
6595       }
6596       parts {
6597          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
6598          GENLIST_PART_BG_IMAGE
6599          GENLIST_PART_BOTTOM_LINE
6600          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
6601          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
6602          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
6603          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
6604          part { name: "elm.icon.1";
6605             clip_to: "disclip";
6606             type: SWALLOW;
6607             scale: 1;
6608             description { state: "default" 0.0;
6609                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
6610                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
6611                fixed: 1 1;
6612                rel1 {
6613                   relative: 1.0 1.0;
6614                   to_x: "elm.padding.left";
6615                   to_y: "elm.padding.top";
6616                }
6617                rel2 {
6618                   relative: 1.0 0.0;
6619                   to_x: "elm.padding.left";
6620                   to_y: "elm.padding.bottom";
6621                }
6622                align: 0.0 0.5;
6623             }
6624             GENLIST_DESCRIPTION_FLIP_ENABLED
6625          }
6626          part { name: "elm.padding.icon1.right";
6627             clip_to: "disclip";
6628             type: RECT;
6629             scale: 1;
6630             description { state: "default" 0.0;
6631                min: GENLIST_PADDING_16_INC 0;
6632                fixed: 1 0;
6633                rel1 {
6634                   relative: 1.0 0.0;
6635                   to_x: "elm.icon.1";
6636                }
6637                rel2.to_x: "elm.icon.1";
6638                align: 0.0 0.0;
6639                visible: 0;
6640             }
6641          }
6642          part { name: "elm.icon.2";
6643             clip_to: "disclip";
6644             type: SWALLOW;
6645             scale: 1;
6646             description { state: "default" 0.0;
6647                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
6648                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
6649                fixed: 1 1;
6650                rel1 {
6651                   relative: 0.0 1.0;
6652                   to_x: "elm.padding.right";
6653                   to_y: "elm.padding.top";
6654                }
6655                rel2 {
6656                   relative: 0.0 0.0;
6657                   to_x: "elm.padding.right";
6658                   to_y: "elm.padding.bottom";
6659                }
6660                align: 1.0 0.5;
6661             }
6662             GENLIST_DESCRIPTION_FLIP_ENABLED
6663          }
6664          part { name: "elm.padding.icon2.left";
6665             clip_to: "disclip";
6666             type: RECT;
6667             scale: 1;
6668             description { state: "default" 0.0;
6669                min: GENLIST_PADDING_16_INC 0;
6670                fixed: 1 0;
6671                rel1.to_x: "elm.icon.2";
6672                rel2 {
6673                   relative: 0.0 1.0;
6674                   to_x: "elm.icon.2";
6675                }
6676                align: 1.0 0.0;
6677                visible: 0;
6678             }
6679          }
6680          part { name: "elm.text.1";
6681             clip_to: "disclip";
6682             type: TEXT;
6683             mouse_events: 0;
6684             scale: 1;
6685             description { state: "default" 0.0;
6686                min: 0 GENLIST_SIZE_61_INC;
6687                fixed: 0 1;
6688                rel1 {
6689                   relative: 1.0 1.0;
6690                   to_x: "elm.padding.icon1.right";
6691                   to_y: "elm.padding.top";
6692                }
6693                rel2 {
6694                   relative: 0.0 1.0;
6695                   to_x: "elm.padding.icon2.left";
6696                   to_y: "elm.padding.top";
6697                }
6698                align: 0.0 0.0;
6699                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
6700                text {
6701                   font: "SLP:style=Roman";
6702                   size: GENLIST_FONT_44_INC;
6703                   min: 0 1;
6704                   align: 0.0 0.5;
6705                   text_class: "list_item";
6706                }
6707             }
6708             description { state: "selected" 0.0;
6709                inherit: "default" 0.0;
6710                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6711             }
6712             GENLIST_DESCRIPTION_FLIP_ENABLED
6713          }
6714          part { name: "elm.text.2";
6715             clip_to: "disclip";
6716             type: TEXT;
6717             mouse_events: 0;
6718             scale: 1;
6719             description { state: "default" 0.0;
6720                rel1 {
6721                   relative: 1.0 1.0;
6722                   to_x: "elm.padding.icon1.right";
6723                   to_y: "elm.text.1";
6724                }
6725                rel2 {
6726                   relative: 0.0 0.0;
6727                   to_x: "elm.padding.icon2.left";
6728                   to_y: "elm.padding.bottom";
6729                }
6730                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
6731                text {
6732                   font: "SLP:style=Medium";
6733                   size: GENLIST_FONT_32_INC;
6734                   min: 0 1;
6735                   align: 0.0 0.5;
6736                   text_class: "slp_medium";
6737                }
6738             }
6739             description { state: "selected" 0.0;
6740                inherit: "default" 0.0;
6741                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6742             }
6743             GENLIST_DESCRIPTION_FLIP_ENABLED
6744          }
6745          GENLIST_PART_FLIP
6746          GENLIST_PART_DISCLIP
6747       }
6748       programs {
6749          // signal: elm,state,%s,active
6750          //   a "check" item named %s went active
6751          // signal: elm,state,%s,passive
6752          //   a "check" item named %s went passive
6753          // default is passive
6754          program { name: "go_active";
6755             signal: "elm,state,selected";
6756             source: "elm";
6757             action: STATE_SET "selected" 0.0;
6758             target: "bg_image";
6759             target: "elm.text.1";
6760             target: "elm.text.2";
6761             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
6762          }
6763          program { name: "go_passive";
6764             signal: "elm,state,unselected";
6765             source: "elm";
6766             action: STATE_SET "default" 0.0;
6767             target: "bg_image";
6768             target: "elm.text.1";
6769             target: "elm.text.2";
6770             transition: LINEAR 0.1;
6771          }
6772          program { name: "go_disabled";
6773             signal: "elm,state,disabled";
6774             source: "elm";
6775             action: STATE_SET "disabled" 0.0;
6776             target: "disclip";
6777          }
6778          program { name: "go_enabled";
6779             signal: "elm,state,enabled";
6780             source: "elm";
6781             action: STATE_SET "default" 0.0;
6782             target: "disclip";
6783          }
6784          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
6785          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
6786       }
6787    }
6788
6789    group { name: "elm/genlist/item_compress/2text.2icon.4.tb/default";
6790       inherit: "elm/genlist/item/2text.2icon.4/default";
6791       parts {
6792          part { name: "elm.text.1";
6793             clip_to: "disclip";
6794             type: TEXTBLOCK;
6795             mouse_events: 0;
6796             scale: 1;
6797             description { state: "default" 0.0;
6798                min: 0 GENLIST_SIZE_61_INC;
6799                fixed: 0 1;
6800                rel1 {
6801                   relative: 1.0 1.0;
6802                   to_x: "elm.padding.icon1.right";
6803                   to_y: "elm.padding.top";
6804                }
6805                rel2 {
6806                   relative: 0.0 1.0;
6807                   to_x: "elm.padding.icon2.left";
6808                   to_y: "elm.padding.top";
6809                }
6810                align: 0.0 0.0;
6811                text {
6812                   style: "genlist_default_textblock_style";
6813                   size: GENLIST_FONT_44_INC;
6814                   min: 0 1;
6815                   align: 0.0 0.5;
6816                   text_class: "list_item";
6817                }
6818             }
6819             description { state: "selected" 0.0;
6820                inherit: "default" 0.0;
6821                text.style: "genlist_default_textblock_selected_style";
6822             }
6823             GENLIST_DESCRIPTION_FLIP_ENABLED
6824          }
6825          part { name: "elm.text.2";
6826             clip_to: "disclip";
6827             type: TEXTBLOCK;
6828             mouse_events: 0;
6829             scale: 1;
6830             description { state: "default" 0.0;
6831                rel1 {
6832                   relative: 1.0 1.0;
6833                   to_x: "elm.padding.icon1.right";
6834                   to_y: "elm.text.1";
6835                }
6836                rel2 {
6837                   relative: 0.0 0.0;
6838                   to_x: "elm.padding.icon2.left";
6839                   to_y: "elm.padding.bottom";
6840                }
6841                text {
6842                   style: "genlist_default_textblock_style";
6843                   size: GENLIST_FONT_32_INC;
6844                   min: 0 1;
6845                   align: 0.0 0.5;
6846                   text_class: "slp_medium";
6847                }
6848             }
6849             description { state: "selected" 0.0;
6850                inherit: "default" 0.0;
6851                text.style: "genlist_default_textblock_selected_style";
6852             }
6853             GENLIST_DESCRIPTION_FLIP_ENABLED
6854          }
6855       }
6856    }
6857
6858 // 3.2.18
6859    group { name: "elm/genlist/item/2text.1icon.9/default";
6860       alias: "elm/genlist/item_odd/2text.1icon.9/default";
6861       alias: "elm/genlist/item_compress/2text.1icon.9/default";
6862       alias: "elm/genlist/item_compress_odd/2text.1icon.9/default";
6863       data.item: "stacking" "above";
6864       data.item: "selectraise" "on";
6865       data.item: "texts" "elm.text.1 elm.text.2";
6866       data.item: "contents" "elm.icon";
6867       data.item: "flips" "elm.flip.content";
6868       images {
6869          image: "00_list_bar_press_1x80.png" COMP;
6870       }
6871       parts {
6872          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
6873          GENLIST_PART_BG_IMAGE
6874          GENLIST_PART_BOTTOM_LINE
6875          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
6876          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
6877          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
6878          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
6879          part { name: "elm.icon";
6880             clip_to: "disclip";
6881             type: SWALLOW;
6882             scale: 1;
6883             description { state: "default" 0.0;
6884                min: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
6885                max: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
6886                fixed: 1 1;
6887                rel1 {
6888                   relative: 1.0 1.0;
6889                   to_x: "elm.padding.left";
6890                   to_y: "elm.padding.top";
6891                }
6892                rel2 {
6893                   relative: 1.0 0.0;
6894                   to_x: "elm.padding.left";
6895                   to_y: "elm.padding.bottom";
6896                }
6897                align: 0.0 0.5;
6898             }
6899             GENLIST_DESCRIPTION_FLIP_ENABLED
6900          }
6901          part { name: "elm.padding.icon.right";
6902             clip_to: "disclip";
6903             type: RECT;
6904             scale: 1;
6905             description { state: "default" 0.0;
6906                min: GENLIST_PADDING_16_INC 0;
6907                fixed: 1 0;
6908                rel1 {
6909                   relative: 1.0 0.0;
6910                   to_x: "elm.icon";
6911                }
6912                rel2.to_x: "elm.icon";
6913                align: 0.0 0.0;
6914                visible: 0;
6915             }
6916          }
6917          part { name: "elm.text.1";
6918             clip_to: "disclip";
6919             type: TEXT;
6920             mouse_events: 0;
6921             scale: 1;
6922             description { state: "default" 0.0;
6923                min: 0 GENLIST_SIZE_61_INC;
6924                fixed: 0 1;
6925                rel1 {
6926                   relative: 1.0 1.0;
6927                   to_x: "elm.padding.icon.right";
6928                   to_y: "elm.padding.top";
6929                }
6930                rel2 {
6931                   relative: 0.0 1.0;
6932                   to_x: "elm.padding.right";
6933                   to_y: "elm.padding.top";
6934                }
6935                align: 0.0 0.0;
6936                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
6937                text {
6938                   font: "SLP:style=Roman";
6939                   size: GENLIST_FONT_44_INC;
6940                   min: 0 1;
6941                   align: 0.0 0.5;
6942                   text_class: "list_item";
6943                }
6944             }
6945             description { state: "selected" 0.0;
6946                inherit: "default" 0.0;
6947                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6948             }
6949             GENLIST_DESCRIPTION_FLIP_ENABLED
6950          }
6951          part { name: "elm.text.2";
6952             clip_to: "disclip";
6953             type: TEXT;
6954             mouse_events: 0;
6955             scale: 1;
6956             description { state: "default" 0.0;
6957                rel1 {
6958                   relative: 1.0 1.0;
6959                   to_x: "elm.padding.icon.right";
6960                   to_y: "elm.text.1";
6961                }
6962                rel2 {
6963                   relative: 0.0 0.0;
6964                   to_x: "elm.padding.right";
6965                   to_y: "elm.padding.bottom";
6966                }
6967                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
6968                text {
6969                   font: "SLP:style=Medium";
6970                   size: GENLIST_FONT_32_INC;
6971                   min: 0 1;
6972                   align: 0.0 0.5;
6973                   text_class: "slp_medium";
6974                }
6975             }
6976             description { state: "selected" 0.0;
6977                inherit: "default" 0.0;
6978                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6979             }
6980             GENLIST_DESCRIPTION_FLIP_ENABLED
6981          }
6982          GENLIST_PART_FLIP
6983          GENLIST_PART_DISCLIP
6984       }
6985       programs {
6986          // signal: elm,state,%s,active
6987          //   a "check" item named %s went active
6988          // signal: elm,state,%s,passive
6989          //   a "check" item named %s went passive
6990          // default is passive
6991          program { name: "go_active";
6992             signal: "elm,state,selected";
6993             source: "elm";
6994             action: STATE_SET "selected" 0.0;
6995             target: "bg_image";
6996             target: "elm.text.1";
6997             target: "elm.text.2";
6998             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
6999          }
7000          program { name: "go_passive";
7001             signal: "elm,state,unselected";
7002             source: "elm";
7003             action: STATE_SET "default" 0.0;
7004             target: "bg_image";
7005             target: "elm.text.1";
7006             target: "elm.text.2";
7007             transition: LINEAR 0.1;
7008          }
7009          program { name: "go_disabled";
7010             signal: "elm,state,disabled";
7011             source: "elm";
7012             action: STATE_SET "disabled" 0.0;
7013             target: "disclip";
7014          }
7015          program { name: "go_enabled";
7016             signal: "elm,state,enabled";
7017             source: "elm";
7018             action: STATE_SET "default" 0.0;
7019             target: "disclip";
7020          }
7021          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
7022          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
7023       }
7024    }
7025
7026 // ???
7027    group { name: "elm/genlist/item_compress/multiline/dialogue/2text/default";
7028       alias: "elm/genlist/item_compress_odd/multiline/dialogue/2text/default";
7029       data.item: "stacking" "above";
7030       data.item: "selectraise" "on";
7031       data.item: "texts" "elm.text.1 elm.text.2";
7032       parts {
7033          part { name: "base";
7034             type: RECT;
7035             repeat_events: 1;
7036             description { state: "default" 0.0;
7037                color: GENLIST_PART_BG_COLOR_INC;
7038             }
7039          }
7040          GENLIST_PART_BG_IMAGE
7041          GENLIST_PART_BOTTOM_LINE
7042          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
7043          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
7044          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
7045          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
7046          GENLIST_PART_DIALOGUE_ITEM
7047          part { name: "elm.text.1";
7048             clip_to: "disclip";
7049             type: TEXT;
7050             mouse_events: 0;
7051             scale: 1;
7052             description { state: "default" 0.0;
7053                min: 0 GENLIST_SIZE_48_INC;
7054                fixed: 0 1;
7055                rel1 {
7056                   relative: 1.0 1.0;
7057                   to_x: "elm.padding.left";
7058                   to_y: "elm.padding.top";
7059                }
7060                rel2 {
7061                   relative: 0.0 1.0;
7062                   to_x: "elm.padding.right";
7063                   to_y: "elm.padding.top";
7064                }
7065                align: 0.0 0.0;
7066                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
7067                text {
7068                   font: "SLP:style=Roman";
7069                   size: GENLIST_FONT_44_INC;
7070                   min: 0 1;
7071                   align: 0.0 0.5;
7072                   text_class: "list_item";
7073                }
7074             }
7075             description { state: "selected" 0.0;
7076                inherit: "default" 0.0;
7077                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
7078             }
7079          }
7080          part { name: "elm.text.2";
7081             clip_to: "disclip";
7082             type: TEXTBLOCK;
7083             mouse_events: 0;
7084             scale: 1;
7085             description { state: "default" 0.0;
7086                rel1 {
7087                   relative: 1.0 1.0;
7088                   to_x: "elm.padding.left";
7089                   to_y: "elm.text.1";
7090                }
7091                rel2 {
7092                   relative: 0.0 0.0;
7093                   to_x: "elm.padding.right";
7094                   to_y: "elm.padding.bottom";
7095                }
7096                text {
7097                   style: "genlist_textblock_sub_style";
7098                   min: 0 1;
7099                   align: 0.0 0.5;
7100                }
7101             }
7102             description { state: "selected" 0.0;
7103                inherit: "default" 0.0;
7104                text.style: "genlist_textblock_sub_selected_style";
7105             }
7106          }
7107          GENLIST_PART_DISCLIP
7108       }
7109       programs {
7110          // signal: elm,state,%s,active
7111          //   a "check" item named %s went active
7112          // signal: elm,state,%s,passive
7113          //   a "check" item named %s went passive
7114          // default is passive
7115          program { name: "go_active";
7116             signal: "elm,state,selected";
7117             source: "elm";
7118             action: STATE_SET "selected" 0.0;
7119             target: "bg_image";
7120             target: "elm.text.1";
7121             target: "elm.text.2";
7122             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
7123          }
7124          program { name: "go_passive";
7125             signal: "elm,state,unselected";
7126             source: "elm";
7127             action: STATE_SET "default" 0.0;
7128             target: "bg_image";
7129             target: "elm.text.1";
7130             target: "elm.text.2";
7131             transition: LINEAR 0.1;
7132          }
7133          program { name: "go_disabled";
7134             signal: "elm,state,disabled";
7135             source: "elm";
7136             action: STATE_SET "disabled" 0.0;
7137             target: "disclip";
7138          }
7139          program { name: "go_enabled";
7140             signal: "elm,state,enabled";
7141             source: "elm";
7142             action: STATE_SET "default" 0.0;
7143             target: "disclip";
7144          }
7145          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
7146       }
7147    }
7148
7149 // 3.2.19
7150    group { name: "elm/genlist/item/2text.2icon.7/default";
7151       alias: "elm/genlist/item_odd/2text.2icon.7/default";
7152       alias: "elm/genlist/item_compress/2text.2icon.7/default";
7153       alias: "elm/genlist/item_compress_odd/2text.2icon.7/default";
7154       data.item: "stacking" "above";
7155       data.item: "selectraise" "on";
7156       data.item: "texts" "elm.text.1 elm.text.2";
7157       data.item: "contents" "elm.icon.1 elm.icon.2";
7158       data.item: "flips" "elm.flip.content";
7159       images {
7160          image: "00_list_bar_press_1x80.png" COMP;
7161       }
7162       parts {
7163          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
7164          GENLIST_PART_BG_IMAGE
7165          GENLIST_PART_BOTTOM_LINE
7166          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
7167          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
7168          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
7169          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
7170          part { name: "elm.icon.1";
7171             clip_to: "disclip";
7172             type: SWALLOW;
7173             scale: 1;
7174             description { state: "default" 0.0;
7175                min: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
7176                max: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
7177                fixed: 1 1;
7178                rel1 {
7179                   relative: 1.0 1.0;
7180                   to_x: "elm.padding.left";
7181                   to_y: "elm.padding.top";
7182                }
7183                rel2 {
7184                   relative: 1.0 0.0;
7185                   to_x: "elm.padding.left";
7186                   to_y: "elm.padding.bottom";
7187                }
7188                align: 0.0 0.5;
7189             }
7190             GENLIST_DESCRIPTION_FLIP_ENABLED
7191          }
7192          part { name: "elm.padding.icon1.right";
7193             clip_to: "disclip";
7194             type: RECT;
7195             scale: 1;
7196             description { state: "default" 0.0;
7197                min: GENLIST_PADDING_16_INC 0;
7198                fixed: 1 0;
7199                rel1 {
7200                   relative: 1.0 0.0;
7201                   to_x: "elm.icon.1";
7202                }
7203                rel2.to_x: "elm.icon.1";
7204                align: 0.0 0.0;
7205                visible: 0;
7206             }
7207          }
7208          part { name: "elm.icon.2";
7209             clip_to: "disclip";
7210             type: SWALLOW;
7211             scale: 1;
7212             description { state: "default" 0.0;
7213                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
7214                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
7215                fixed: 1 1;
7216                rel1 {
7217                   relative: 0.0 1.0;
7218                   to_x: "elm.padding.right";
7219                   to_y: "elm.padding.top";
7220                }
7221                rel2 {
7222                   relative: 0.0 0.0;
7223                   to_x: "elm.padding.right";
7224                   to_y: "elm.padding.bottom";
7225                }
7226                align: 1.0 0.5;
7227             }
7228             GENLIST_DESCRIPTION_FLIP_ENABLED
7229          }
7230          part { name: "elm.padding.icon2.left";
7231             clip_to: "disclip";
7232             type: RECT;
7233             scale: 1;
7234             description { state: "default" 0.0;
7235                min: GENLIST_PADDING_16_INC 0;
7236                fixed: 1 0;
7237                rel1.to_x: "elm.icon.2";
7238                rel2 {
7239                   relative: 0.0 1.0;
7240                   to_x: "elm.icon.2";
7241                }
7242                align: 1.0 0.0;
7243                visible: 0;
7244             }
7245          }
7246          part { name: "elm.text.1";
7247             clip_to: "disclip";
7248             type: TEXT;
7249             mouse_events: 0;
7250             scale: 1;
7251             description { state: "default" 0.0;
7252                min: 0 GENLIST_SIZE_61_INC;
7253                fixed: 0 1;
7254                rel1 {
7255                   relative: 1.0 1.0;
7256                   to_x: "elm.padding.icon1.right";
7257                   to_y: "elm.padding.top";
7258                }
7259                rel2 {
7260                   relative: 0.0 1.0;
7261                   to_x: "elm.padding.icon2.left";
7262                   to_y: "elm.padding.top";
7263                }
7264                align: 0.0 0.0;
7265                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
7266                text {
7267                   font: "SLP:style=Roman";
7268                   size: GENLIST_FONT_44_INC;
7269                   min: 0 1;
7270                   align: 0.0 0.5;
7271                   text_class: "list_item";
7272                }
7273             }
7274             description { state: "selected" 0.0;
7275                inherit: "default" 0.0;
7276                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
7277             }
7278             GENLIST_DESCRIPTION_FLIP_ENABLED
7279          }
7280          part { name: "elm.text.2";
7281             clip_to: "disclip";
7282             type: TEXT;
7283             mouse_events: 0;
7284             scale: 1;
7285             description { state: "default" 0.0;
7286                rel1 {
7287                   relative: 1.0 1.0;
7288                   to_x: "elm.padding.icon1.right";
7289                   to_y: "elm.text.1";
7290                }
7291                rel2 {
7292                   relative: 0.0 0.0;
7293                   to_x: "elm.padding.icon2.left";
7294                   to_y: "elm.padding.bottom";
7295                }
7296                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
7297                text {
7298                   font: "SLP:style=Medium";
7299                   size: GENLIST_FONT_32_INC;
7300                   min: 0 1;
7301                   align: 0.0 0.5;
7302                   text_class: "slp_medium";
7303                }
7304             }
7305             description { state: "selected" 0.0;
7306                inherit: "default" 0.0;
7307                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
7308             }
7309             GENLIST_DESCRIPTION_FLIP_ENABLED
7310          }
7311          GENLIST_PART_FLIP
7312          GENLIST_PART_DISCLIP
7313       }
7314       programs {
7315          // signal: elm,state,%s,active
7316          //   a "check" item named %s went active
7317          // signal: elm,state,%s,passive
7318          //   a "check" item named %s went passive
7319          // default is passive
7320          program { name: "go_active";
7321             signal: "elm,state,selected";
7322             source: "elm";
7323             action: STATE_SET "selected" 0.0;
7324             target: "bg_image";
7325             target: "elm.text.1";
7326             target: "elm.text.2";
7327             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
7328          }
7329          program { name: "go_passive";
7330             signal: "elm,state,unselected";
7331             source: "elm";
7332             action: STATE_SET "default" 0.0;
7333             target: "bg_image";
7334             target: "elm.text.1";
7335             target: "elm.text.2";
7336             transition: LINEAR 0.1;
7337          }
7338          program { name: "go_disabled";
7339             signal: "elm,state,disabled";
7340             source: "elm";
7341             action: STATE_SET "disabled" 0.0;
7342             target: "disclip";
7343          }
7344          program { name: "go_enabled";
7345             signal: "elm,state,enabled";
7346             source: "elm";
7347             action: STATE_SET "default" 0.0;
7348             target: "disclip";
7349          }
7350          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
7351          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
7352       }
7353    }
7354
7355 // 3.2.20
7356    group { name: "elm/genlist/item/2text.2icon.5/default";
7357       alias: "elm/genlist/item_odd/2text.2icon.5/default";
7358       alias: "elm/genlist/item_compress/2text.2icon.5/default";
7359       alias: "elm/genlist/item_compress_odd/2text.2icon.5/default";
7360       data.item: "stacking" "above";
7361       data.item: "selectraise" "on";
7362       data.item: "texts" "elm.text.1 elm.text.2";
7363       data.item: "contents" "elm.icon.1 elm.icon.2";
7364       data.item: "flips" "elm.flip.content";
7365       images {
7366          image: "00_list_bar_press_1x80.png" COMP;
7367       }
7368       parts {
7369          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
7370          GENLIST_PART_BG_IMAGE
7371          GENLIST_PART_BOTTOM_LINE
7372          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
7373          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
7374          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
7375          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
7376          part { name: "elm.icon.1";
7377             clip_to: "disclip";
7378             type: SWALLOW;
7379             scale: 1;
7380             description { state: "default" 0.0;
7381                min: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
7382                max: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
7383                fixed: 1 1;
7384                rel1 {
7385                   relative: 1.0 1.0;
7386                   to_x: "elm.padding.left";
7387                   to_y: "elm.padding.top";
7388                }
7389                rel2 {
7390                   relative: 1.0 0.0;
7391                   to_x: "elm.padding.left";
7392                   to_y: "elm.padding.bottom";
7393                }
7394                align: 0.0 0.5;
7395             }
7396             GENLIST_DESCRIPTION_FLIP_ENABLED
7397          }
7398          part { name: "elm.padding.icon1.right";
7399             clip_to: "disclip";
7400             type: RECT;
7401             scale: 1;
7402             description { state: "default" 0.0;
7403                min: GENLIST_PADDING_16_INC 0;
7404                fixed: 1 0;
7405                rel1 {
7406                   relative: 1.0 0.0;
7407                   to_x: "elm.icon.1";
7408                }
7409                rel2.to_x: "elm.icon.1";
7410                align: 0.0 0.0;
7411                visible: 0;
7412             }
7413          }
7414          part { name: "elm.icon.2";
7415             clip_to: "disclip";
7416             type: SWALLOW;
7417             scale: 1;
7418             description { state: "default" 0.0;
7419                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
7420                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
7421                fixed: 1 1;
7422                rel1 {
7423                   relative: 1.0 1.0;
7424                   to_x: "elm.padding.icon1.right";
7425                   to_y: "elm.padding.top";
7426                }
7427                rel2 {
7428                   relative: 1.0 0.0;
7429                   to_x: "elm.padding.icon1.right";
7430                   to_y: "elm.padding.bottom";
7431                }
7432                align: 0.0 0.5;
7433             }
7434             GENLIST_DESCRIPTION_FLIP_ENABLED
7435          }
7436          part { name: "elm.padding.icon2.right";
7437             clip_to: "disclip";
7438             type: RECT;
7439             scale: 1;
7440             description { state: "default" 0.0;
7441                min: GENLIST_PADDING_16_INC 0;
7442                fixed: 1 0;
7443                rel1 {
7444                   relative: 1.0 0.0;
7445                   to_x: "elm.icon.2";
7446                }
7447                rel2.to_x: "elm.icon.2";
7448                align: 0.0 0.0;
7449                visible: 0;
7450             }
7451          }
7452          part { name: "elm.text.1";
7453             clip_to: "disclip";
7454             type: TEXT;
7455             mouse_events: 0;
7456             scale: 1;
7457             description { state: "default" 0.0;
7458                min: 0 GENLIST_SIZE_61_INC;
7459                fixed: 0 1;
7460                rel1 {
7461                   relative: 1.0 1.0;
7462                   to_x: "elm.padding.icon2.right";
7463                   to_y: "elm.padding.top";
7464                }
7465                rel2 {
7466                   relative: 0.0 1.0;
7467                   to_x: "elm.padding.right";
7468                   to_y: "elm.padding.top";
7469                }
7470                align: 0.0 0.0;
7471                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
7472                text {
7473                   font: "SLP:style=Roman";
7474                   size: GENLIST_FONT_44_INC;
7475                   min: 0 1;
7476                   align: 0.0 0.5;
7477                   text_class: "list_item";
7478                }
7479             }
7480             description { state: "selected" 0.0;
7481                inherit: "default" 0.0;
7482                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
7483             }
7484             GENLIST_DESCRIPTION_FLIP_ENABLED
7485          }
7486          part { name: "elm.text.2";
7487             clip_to: "disclip";
7488             type: TEXT;
7489             mouse_events: 0;
7490             scale: 1;
7491             description { state: "default" 0.0;
7492                rel1 {
7493                   relative: 1.0 1.0;
7494                   to_x: "elm.padding.icon2.right";
7495                   to_y: "elm.text.1";
7496                }
7497                rel2 {
7498                   relative: 0.0 0.0;
7499                   to_x: "elm.padding.right";
7500                   to_y: "elm.padding.bottom";
7501                }
7502                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
7503                text {
7504                   font: "SLP:style=Medium";
7505                   size: GENLIST_FONT_32_INC;
7506                   min: 0 1;
7507                   align: 0.0 0.5;
7508                   text_class: "slp_medium";
7509                }
7510             }
7511             description { state: "selected" 0.0;
7512                inherit: "default" 0.0;
7513                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
7514             }
7515             GENLIST_DESCRIPTION_FLIP_ENABLED
7516          }
7517          GENLIST_PART_FLIP
7518          GENLIST_PART_DISCLIP
7519       }
7520       programs {
7521          // signal: elm,state,%s,active
7522          //   a "check" item named %s went active
7523          // signal: elm,state,%s,passive
7524          //   a "check" item named %s went passive
7525          // default is passive
7526          program { name: "go_active";
7527             signal: "elm,state,selected";
7528             source: "elm";
7529             action: STATE_SET "selected" 0.0;
7530             target: "bg_image";
7531             target: "elm.text.1";
7532             target: "elm.text.2";
7533             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
7534          }
7535          program { name: "go_passive";
7536             signal: "elm,state,unselected";
7537             source: "elm";
7538             action: STATE_SET "default" 0.0;
7539             target: "bg_image";
7540             target: "elm.text.1";
7541             target: "elm.text.2";
7542             transition: LINEAR 0.1;
7543          }
7544          program { name: "go_disabled";
7545             signal: "elm,state,disabled";
7546             source: "elm";
7547             action: STATE_SET "disabled" 0.0;
7548             target: "disclip";
7549          }
7550          program { name: "go_enabled";
7551             signal: "elm,state,enabled";
7552             source: "elm";
7553             action: STATE_SET "default" 0.0;
7554             target: "disclip";
7555          }
7556          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
7557          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
7558       }
7559    }
7560
7561 // ???
7562    group { name: "elm/genlist/item/3text.5icon/default";
7563       alias: "elm/genlist/item_odd/3text.5icon/default";
7564       alias: "elm/genlist/item_compress/3text.5icon/default";
7565       alias: "elm/genlist/item_compress_odd/3text.5icon/default";
7566       data.item: "stacking" "above";
7567       data.item: "selectraise" "on";
7568       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
7569       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4 elm.swallow.colorbar";
7570       data.item: "flips" "elm.flip.content";
7571       images {
7572          image: "00_list_bar_press_1x80.png" COMP;
7573       }
7574       parts {
7575          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
7576          GENLIST_PART_BG_IMAGE
7577          GENLIST_PART_BOTTOM_LINE
7578          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
7579          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
7580          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
7581          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
7582          part { name: "elm.swallow.colorbar";
7583             clip_to: "disclip";
7584             type: SWALLOW;
7585             scale: 1;
7586             description { state: "default" 0.0;
7587                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
7588                fixed: 1 1;
7589                rel2.relative: 0.0 0.0;
7590                align: 0.0 0.0;
7591             }
7592          }
7593          part { name: "elm.text.3";
7594             clip_to: "disclip";
7595             type: TEXT;
7596             mouse_events: 0;
7597             scale: 1;
7598             description { state: "default" 0.0;
7599                min: GENLIST_SIZE_133_INC GENLIST_SIZE_61_INC;
7600                fixed: 1 1;
7601                rel1 {
7602                   relative: 0.0 0.0;
7603                   to_x: "elm.padding.right";
7604                   to_y: "elm.padding.bottom";
7605                }
7606                rel2 {
7607                   relative: 0.0 0.0;
7608                   to_x: "elm.padding.right";
7609                   to_y: "elm.padding.bottom";
7610                }
7611                align: 1.0 1.0;
7612                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
7613                text {
7614                   font: "SLP:style=Medium";
7615                   size: GENLIST_FONT_32_INC;
7616                   min: 0 1;
7617                   align: 1.0 0.5;
7618                   text_class: "slp_medium";
7619                }
7620             }
7621             description { state: "selected" 0.0;
7622                inherit: "default" 0.0;
7623                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
7624             }
7625             GENLIST_DESCRIPTION_FLIP_ENABLED
7626          }
7627          part { name: "elm.icon.1";
7628             clip_to: "disclip";
7629             type: SWALLOW;
7630             scale: 1;
7631             description { state: "default" 0.0;
7632                rel1 {
7633                   relative: 0.0 1.0;
7634                   to_x: "elm.padding.right";
7635                   to_y: "elm.padding.top";
7636                }
7637                rel2 {
7638                   relative: 0.0 0.0;
7639                   to_x: "elm.padding.right";
7640                   to_y: "elm.text.3";
7641                }
7642                align: 1.0 0.5;
7643             }
7644             GENLIST_DESCRIPTION_FLIP_ENABLED
7645          }
7646          part { name: "elm.padding.icon1.left";
7647             clip_to: "disclip";
7648             type: RECT;
7649             scale: 1;
7650             description { state: "default" 0.0;
7651                min: GENLIST_PADDING_16_INC 0;
7652                fixed: 1 0;
7653                rel1.to_x: "elm.icon.1";
7654                rel2 {
7655                   relative: 0.0 1.0;
7656                   to_x: "elm.icon.1";
7657                }
7658                align: 1.0 0.0;
7659                visible: 0;
7660             }
7661          }
7662          part { name: "elm.text.1";
7663             clip_to: "disclip";
7664             type: TEXT;
7665             mouse_events: 0;
7666             scale: 1;
7667             description { state: "default" 0.0;
7668                min: 0 GENLIST_SIZE_61_INC;
7669                fixed: 0 1;
7670                rel1 {
7671                   relative: 1.0 1.0;
7672                   to_x: "elm.padding.left";
7673                   to_y: "elm.padding.top";
7674                }
7675                rel2 {
7676                   relative: 0.0 1.0;
7677                   to_x: "elm.padding.icon1.left";
7678                   to_y: "elm.padding.top";
7679                }
7680                align: 0.0 0.0;
7681                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
7682                text {
7683                   font: "SLP:style=Roman";
7684                   size: GENLIST_FONT_44_INC;
7685                   min: 0 1;
7686                   align: 0.0 0.5;
7687                   text_class: "list_item";
7688                }
7689             }
7690             description { state: "selected" 0.0;
7691                inherit: "default" 0.0;
7692                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
7693             }
7694             GENLIST_DESCRIPTION_FLIP_ENABLED
7695          }
7696          part { name: "elm.padding.text3.left";
7697             clip_to: "disclip";
7698             type: RECT;
7699             scale: 1;
7700             description { state: "default" 0.0;
7701                min: GENLIST_PADDING_16_INC 0;
7702                fixed: 1 0;
7703                rel1.to: "elm.text.3";
7704                rel2 {
7705                   relative: 0.0 1.0;
7706                   to: "elm.text.3";
7707                }
7708                align: 1.0 1.0;
7709                visible: 0;
7710             }
7711          }
7712          part { name: "elm.text.2";
7713             clip_to: "disclip";
7714             type: TEXT;
7715             mouse_events: 0;
7716             scale: 1;
7717             description { state: "default" 0.0;
7718                rel1 {
7719                   relative: 1.0 1.0;
7720                   to_x: "elm.padding.left";
7721                   to_y: "elm.text.1";
7722                }
7723                rel2 {
7724                   relative: 0.0 0.0;
7725                   to_x: "elm.padding.text3.left";
7726                   to_y: "elm.padding.bottom";
7727                }
7728                align: 0.0 0.5;
7729                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
7730                text {
7731                   font: "SLP:style=Medium";
7732                   size: GENLIST_FONT_32_INC;
7733                   min: 0 1;
7734                   align: 0.0 0.5;
7735                   text_class: "slp_medium";
7736                }
7737             }
7738             description { state: "selected" 0.0;
7739                inherit: "default" 0.0;
7740                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
7741             }
7742             GENLIST_DESCRIPTION_FLIP_ENABLED
7743          }
7744          part { name: "elm.padding.icon2.left";
7745             clip_to: "disclip";
7746             type: RECT;
7747             scale: 1;
7748             description { state: "default" 0.0;
7749                min: GENLIST_PADDING_16_INC 0;
7750                fixed: 1 0;
7751                rel1 {
7752                   relative: 1.0 0.0;
7753                   to_x: "elm.text.2";
7754                }
7755                rel2.to_x: "elm.text.2";
7756                align: 0.0 0.0;
7757                visible: 0;
7758             }
7759          }
7760          part { name: "elm.icon.2";
7761             clip_to: "disclip";
7762             type: SWALLOW;
7763             scale: 1;
7764             description { state: "default" 0.0;
7765                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
7766                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
7767                fixed: 1 1;
7768                rel1 {
7769                   relative: 1.0 1.0;
7770                   to_x: "elm.padding.icon2.left";
7771                   to_y: "elm.text.1";
7772                }
7773                rel2 {
7774                   relative: 1.0 0.0;
7775                   to_x: "elm.padding.icon2.left";
7776                   to_y: "elm.padding.bottom";
7777                }
7778                align: 0.0 0.5;
7779             }
7780             GENLIST_DESCRIPTION_FLIP_ENABLED
7781          }
7782          part { name: "elm.padding.icon3.left";
7783             clip_to: "disclip";
7784             type: RECT;
7785             scale: 1;
7786             description { state: "default" 0.0;
7787                min: GENLIST_PADDING_16_INC 0;
7788                fixed: 1 0;
7789                rel1 {
7790                   relative: 1.0 0.0;
7791                   to_x: "elm.icon.2";
7792                }
7793                rel2.to_x: "elm.icon.2";
7794                align: 0.0 0.0;
7795                visible: 0;
7796             }
7797          }
7798          part { name: "elm.icon.3";
7799             clip_to: "disclip";
7800             type: SWALLOW;
7801             scale: 1;
7802             description { state: "default" 0.0;
7803                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
7804                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
7805                fixed: 1 1;
7806                rel1 {
7807                   relative: 1.0 1.0;
7808                   to_x: "elm.padding.icon3.left";
7809                   to_y: "elm.text.1";
7810                }
7811                rel2 {
7812                   relative: 1.0 0.0;
7813                   to_x: "elm.padding.icon3.left";
7814                   to_y: "elm.padding.bottom";
7815                }
7816                align: 0.0 0.5;
7817             }
7818             GENLIST_DESCRIPTION_FLIP_ENABLED
7819          }
7820          part { name: "elm.padding.icon4.left";
7821             clip_to: "disclip";
7822             type: RECT;
7823             scale: 1;
7824             description { state: "default" 0.0;
7825                min: GENLIST_PADDING_16_INC 0;
7826                fixed: 1 0;
7827                rel1 {
7828                   relative: 1.0 0.0;
7829                   to_x: "elm.icon.3";
7830                }
7831                rel2.to_x: "elm.icon.3";
7832                align: 0.0 0.0;
7833                visible: 0;
7834             }
7835          }
7836          part { name: "elm.icon.4";
7837             clip_to: "disclip";
7838             type: SWALLOW;
7839             scale: 1;
7840             description { state: "default" 0.0;
7841                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
7842                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
7843                fixed: 1 1;
7844                rel1 {
7845                   relative: 1.0 1.0;
7846                   to_x: "elm.padding.icon4.left";
7847                   to_y: "elm.text.1";
7848                }
7849                rel2 {
7850                   relative: 1.0 0.0;
7851                   to_x: "elm.padding.icon4.left";
7852                   to_y: "elm.padding.bottom";
7853                }
7854                align: 0.0 0.5;
7855             }
7856             GENLIST_DESCRIPTION_FLIP_ENABLED
7857          }
7858          GENLIST_PART_FLIP
7859          GENLIST_PART_DISCLIP
7860       }
7861       programs {
7862          // signal: elm,state,%s,active
7863          //   a "check" item named %s went active
7864          // signal: elm,state,%s,passive
7865          //   a "check" item named %s went passive
7866          // default is passive
7867          program { name: "go_active";
7868             signal: "elm,state,selected";
7869             source: "elm";
7870             action: STATE_SET "selected" 0.0;
7871             target: "bg_image";
7872             target: "elm.text.1";
7873             target: "elm.text.2";
7874             target: "elm.text.3";
7875             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
7876          }
7877          program { name: "go_passive";
7878             signal: "elm,state,unselected";
7879             source: "elm";
7880             action: STATE_SET "default" 0.0;
7881             target: "bg_image";
7882             target: "elm.text.1";
7883             target: "elm.text.2";
7884             target: "elm.text.3";
7885             transition: LINEAR 0.1;
7886          }
7887          program { name: "go_disabled";
7888             signal: "elm,state,disabled";
7889             source: "elm";
7890             action: STATE_SET "disabled" 0.0;
7891             target: "disclip";
7892          }
7893          program { name: "go_enabled";
7894             signal: "elm,state,enabled";
7895             source: "elm";
7896             action: STATE_SET "default" 0.0;
7897             target: "disclip";
7898          }
7899          GENLIST_PROGRAM_FLIP_3TEXT_2ICON
7900          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
7901       }
7902    }
7903
7904 // ???
7905    /* NOTE: This style is new mailbox style for email application. Otherwise do not use this. */
7906    group { name: "elm/genlist/item/3text.5icon.2/default";
7907       alias: "elm/genlist/item_odd/3text.5icon.2/default";
7908       alias: "elm/genlist/item_compress/3text.5icon.2/default";
7909       alias: "elm/genlist/item_compress_odd/3text.5icon.2/default";
7910       data.item: "stacking" "above";
7911       data.item: "selectraise" "on";
7912       data.item: "texts" "elm.text.subject elm.text.name elm.text.date";
7913       data.item: "contents" "elm.icon.important elm.icon.num elm.icon.attach elm.icon.colorbar elm.swallow.outbox.progress elm.icon.checkbox";
7914       data.item: "flips" "elm.flip.content";
7915       images {
7916          image: "00_list_bar_press_1x80.png" COMP;
7917       }
7918       parts {
7919          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
7920          GENLIST_PART_BG
7921          GENLIST_PART_BG_IMAGE
7922          GENLIST_PART_BOTTOM_LINE
7923          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
7924          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
7925          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
7926          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
7927          part { name: "elm.icon.colorbar";
7928             clip_to: "disclip";
7929             type: SWALLOW;
7930             scale: 1;
7931             description { state: "default" 0.0;
7932                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
7933                fixed: 1 1;
7934                rel2.relative: 0.0 0.0;
7935                align: 0.0 0.0;
7936             }
7937          }
7938          part { name: "elm.icon.checkbox";
7939             clip_to: "disclip";
7940             type: SWALLOW;
7941             mouse_events: 1;
7942             scale: 1;
7943             description { state: "default" 0.0;
7944                max: GENLIST_SIZE_42_INC 0;
7945                fixed: 1 1;
7946                rel1 {
7947                   relative: 1.0 0.0;
7948                   to_x: "elm.padding.left";
7949                   to_y: "elm.padding.top";
7950                }
7951                rel2 {
7952                   relative: 0.0 0.0;
7953                   to_x: "elm.padding.right";
7954                   to_y: "elm.padding.bottom";
7955                }
7956                align: 0.0 0.5;
7957             }
7958          }
7959          part { name: "elm.text.date";
7960             clip_to: "disclip";
7961             type: TEXT;
7962             mouse_events: 0;
7963             scale: 1;
7964             description { state: "default" 0.0;
7965                min: GENLIST_SIZE_154_INC GENLIST_SIZE_61_INC;
7966                fixed: 1 1;
7967                rel1 {
7968                   to_x: "elm.padding.right";
7969                   to_y: "elm.padding.bottom";
7970                }
7971                rel2 {
7972                   relative: 0.0 0.0;
7973                   to_x: "elm.padding.right";
7974                   to_y: "elm.padding.bottom";
7975                }
7976                align: 1.0 1.0;
7977                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
7978                text {
7979                   font: "SLP:style=Medium";
7980                   size: GENLIST_FONT_32_INC;
7981                   min: 0 1;
7982                   align: 1.0 0.5;
7983                   text_class: "slp_medium";
7984                }
7985             }
7986             description { state: "selected" 0.0;
7987                inherit: "default" 0.0;
7988                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
7989             }
7990             GENLIST_DESCRIPTION_FLIP_ENABLED
7991          }
7992          part { name: "elm.icon.important";
7993             clip_to: "disclip";
7994             type: SWALLOW;
7995             mouse_events: 1;
7996             scale: 1;
7997             description { state: "default" 0.0;
7998                min: GENLIST_SIZE_56_INC GENLIST_SIZE_61_INC;
7999                fixed: 1 1;
8000                rel1 {
8001                   relative: 0.0 1.0;
8002                   to_x: "elm.padding.right";
8003                   to_y: "elm.padding.top";
8004                }
8005                rel2 {
8006                   relative: 0.0 0.0;
8007                   to_x: "elm.padding.right";
8008                   to_y: "elm.text.date";
8009                }
8010                align: 1.0 0.5;
8011             }
8012             GENLIST_DESCRIPTION_FLIP_ENABLED
8013          }
8014          part { name: "elm.padding.icon.important.left";
8015             clip_to: "disclip";
8016             type: RECT;
8017             scale: 1;
8018             description { state: "default" 0.0;
8019                min: GENLIST_PADDING_16_INC 0;
8020                fixed: 1 0;
8021                rel1{
8022                   relative: 0.0 1.0;
8023                   to_x: "elm.icon.important";
8024                }
8025                rel2 {
8026                   relative: 0.0 1.0;
8027                   to_x: "elm.icon.important";
8028                }
8029                align: 1.0 0.0;
8030                visible: 0;
8031             }
8032          }
8033          part { name: "elm.padding.icon.checkbox.right";
8034             clip_to: "disclip";
8035             type: RECT;
8036             scale: 1;
8037             description { state: "default" 0.0;
8038                min: GENLIST_PADDING_16_INC 0;
8039                fixed: 1 0;
8040                rel1 {
8041                   relative: 1.0 0.0;
8042                   to_x: "elm.icon.checkbox";
8043                   to_y: "elm.padding.top";
8044                }
8045                rel2 {
8046                   relative: 1.0 0.0;
8047                   to_x:  "elm.icon.checkbox";
8048                   to_y: "elm.padding.bottom";
8049                }
8050                align: 1.0 0.0;
8051                visible: 0;
8052             }
8053          }
8054          part { name: "elm.text.subject.rect";
8055             clip_to: "disclip";
8056             type: RECT;
8057             scale: 1;
8058             description { state: "default" 0.0;
8059                min: 0 GENLIST_SIZE_61_INC;
8060                fixed: 1 1;
8061                rel1 {
8062                   relative: 1.0 1.0;
8063                   to_x: "elm.padding.icon.checkbox.right";
8064                   to_y: "elm.padding.top";
8065                }
8066                rel2 {
8067                   relative: 0.0 0.0;
8068                   to_x: "elm.padding.icon.important.left";
8069                   to_y: "elm.padding.top";
8070                }
8071                align: 0.0 0.0;
8072                visible: 0;
8073             }
8074          }
8075          part { name: "elm.text.subject";
8076             clip_to: "disclip";
8077             type: TEXTBLOCK;
8078             mouse_events: 0;
8079             scale: 1;
8080             description { state: "default" 0.0;
8081                fixed: 1 1;
8082                rel1.to: "elm.text.subject.rect";
8083                rel2.to: "elm.text.subject.rect";
8084                align: 0.0 0.0;
8085                text {
8086                   style: "genlist_email_textblock_unread_style";
8087                   min: 0 1;
8088                   max: 0 1;
8089                   align: 0.0 0.5;
8090                }
8091             }
8092             description { state: "selected" 0.0;
8093                inherit: "default" 0.0;
8094                text.style: "genlist_email_textblock_selected_style";
8095             }
8096             description { state: "read" 0.0;
8097                inherit: "default" 0.0;
8098                text.style: "genlist_email_textblock_read_style";
8099             }
8100             description { state: "unread" 0.0;
8101                inherit: "default" 0.0;
8102                text.style: "genlist_email_textblock_unread_style";
8103             }
8104             description { state: "urgency_read" 0.0;
8105                inherit: "default" 0.0;
8106                text.style: "genlist_email_textblock_urgency_read_style";
8107             }
8108             description { state: "urgency_unread" 0.0;
8109                inherit: "default" 0.0;
8110                text.style: "genlist_email_textblock_urgency_unread_style";
8111             }
8112             GENLIST_DESCRIPTION_FLIP_ENABLED
8113          }
8114          part { name: "elm.text.name";
8115             clip_to: "disclip";
8116             type: TEXTBLOCK;
8117             scale: 1;
8118             description { state: "default" 0.0;
8119                fixed: 1 1;
8120                rel1 {
8121                   relative: 1.0 1.0;
8122                   to_x: "elm.padding.icon.checkbox.right";
8123                   to_y: "elm.text.subject";
8124                }
8125                rel2 {
8126                   relative: 0.0 0.0;
8127                   to_x: "elm.padding.icon.num.left";
8128                   to_y: "elm.padding.bottom";
8129                }
8130                align: 0.0 0.5;
8131                text {
8132                   style: "genlist_email_textblock2_style";
8133                   min: 0 1;
8134                   align: 0.0 0.5;
8135                }
8136             }
8137             description { state: "selected" 0.0;
8138                inherit: "default" 0.0;
8139                text.style: "genlist_email_textblock2_selected_style";
8140             }
8141             GENLIST_DESCRIPTION_FLIP_ENABLED
8142          }
8143          part { name: "elm.padding.icon.num.left";
8144             clip_to: "disclip";
8145             type: RECT;
8146             scale: 1;
8147             description { state: "default" 0.0;
8148                min: GENLIST_PADDING_16_INC 0;
8149                fixed: 1 0;
8150                rel1 {
8151                   relative: 0.0 1.0;
8152                   to_x: "elm.icon.num";
8153                   to_y: "elm.text.subject";
8154                }
8155                rel2 {
8156                   relative: 0.0 0.0;
8157                   to_x: "elm.icon.num";
8158                   to_y: "elm.padding.bottom";
8159                }
8160                align: 1.0 0.0;
8161                visible: 0;
8162             }
8163          }
8164          part { name: "elm.icon.num";
8165             clip_to: "disclip";
8166             type: SWALLOW;
8167             mouse_events: 0;
8168             scale: 1;
8169             description { state: "default" 0.0;
8170                min: GENLIST_SIZE_112_INC GENLIST_SIZE_45_INC;
8171                max: GENLIST_SIZE_112_INC GENLIST_SIZE_45_INC;
8172                fixed: 1 1;
8173                rel1 {
8174                   relative: 0.0 1.0;
8175                   to_x: "elm.padding.icon.attach.left";
8176                   to_y: "elm.text.subject";
8177                }
8178                rel2 {
8179                   relative: 0.0 0.0;
8180                   to_x: "elm.padding.icon.attach.left";
8181                   to_y: "elm.padding.bottom";
8182                }
8183                align: 1.0 0.5;
8184             }
8185             GENLIST_DESCRIPTION_FLIP_ENABLED
8186          }
8187          part { name: "elm.padding.icon.attach.left";
8188             clip_to: "disclip";
8189             type: RECT;
8190             scale: 1;
8191             description { state: "default" 0.0;
8192                min: GENLIST_PADDING_16_INC 0;
8193                fixed: 1 0;
8194                rel1 {
8195                   relative: 0.0 1.0;
8196                   to_x: "elm.icon.attach";
8197                   to_y: "elm.text.subject";
8198                }
8199                rel2 {
8200                   relative: 0.0 0.0;
8201                   to_x: "elm.icon.attach";
8202                   to_y: "elm.padding.bottom";
8203                }
8204                align: 1.0 0.0;
8205                visible: 0;
8206             }
8207          }
8208          part { name: "elm.icon.attach";
8209             clip_to: "disclip";
8210             type: SWALLOW;
8211             scale: 1;
8212             description { state: "default" 0.0;
8213                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
8214                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
8215                fixed: 1 1;
8216                rel1 {
8217                   relative: 0.0 1.0;
8218                   to_x: "elm.text.date";
8219                   to_y: "elm.text.subject";
8220                }
8221                rel2 {
8222                   relative: 0.0 0.0;
8223                   to_x: "elm.text.date";
8224                   to_y: "elm.padding.bottom";
8225                }
8226                align: 1.0 0.5;
8227             }
8228             GENLIST_DESCRIPTION_FLIP_ENABLED
8229          }
8230          part { name: "elm.swallow.outbox.progress";
8231             type: SWALLOW;
8232             scale: 1;
8233             mouse_events: 1;
8234             repeat_events: 0;
8235             description { state: "default" 0.0;
8236                min: GENLIST_SIZE_168_INC 0;
8237                fixed: 1 1;
8238                color: 0 0 0 0;
8239                align: 1.0 0.5;
8240                rel1 {
8241                   relative: 0.0 1.0;
8242                   offset: 0 0;
8243                   to_x: "elm.padding.right";
8244                   to_y: "elm.padding.top";
8245                }
8246                rel2 {
8247                   relative: 0.0 0.0;
8248                   offset: 0 0;
8249                   to_x: "elm.padding.right";
8250                   to_y: "elm.padding.bottom";
8251                }
8252             }
8253          }
8254          GENLIST_PART_FLIP
8255          GENLIST_PART_DISCLIP
8256       }
8257       programs {
8258          // signal: elm,state,%s,active
8259          //   a "check" item named %s went active
8260          // signal: elm,state,%s,passive
8261          //   a "check" item named %s went passive
8262          // default is passive
8263          program { name: "go_active";
8264             signal: "elm,state,selected";
8265             source: "elm";
8266             action: STATE_SET "selected" 0.0;
8267             target: "bg_image";
8268             target: "elm.text.subject";
8269             target: "elm.text.name";
8270             target: "elm.text.date";
8271             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
8272          }
8273          program { name: "go_passive";
8274             signal: "elm,state,unselected";
8275             source: "elm";
8276             action: STATE_SET "default" 0.0;
8277             target: "bg_image";
8278             target: "elm.text.subject";
8279             target: "elm.text.name";
8280             target: "elm.text.date";
8281             transition: LINEAR 0.1;
8282          }
8283          program { name: "go_disabled";
8284             signal: "elm,state,disabled";
8285             source: "elm";
8286             action: STATE_SET "disabled" 0.0;
8287             target: "disclip";
8288          }
8289          program { name: "go_enabled";
8290             signal: "elm,state,enabled";
8291             source: "elm";
8292             action: STATE_SET "default" 0.0;
8293             target: "disclip";
8294          }
8295          program { name: "go_read";
8296             signal: "elm,state,read";
8297             source: "elm";
8298             action: STATE_SET "read" 0.0;
8299             target: "elm.text.subject";
8300          }
8301          program { name: "go_unread";
8302             signal: "elm,state,unread";
8303             source: "elm";
8304             action: STATE_SET "unread" 0.0;
8305             target: "elm.text.subject";
8306          }
8307          program { name: "go_urgeny_unread";
8308             signal: "elm,state,urgency_unread";
8309             source: "elm";
8310             action: STATE_SET "urgency_unread" 0.0;
8311             target: "elm.text.subject";
8312          }
8313          program { name: "go_urgency_read";
8314             signal: "elm,state,urgency_read";
8315             source: "elm";
8316             action: STATE_SET "urgency_read" 0.0;
8317             target: "elm.text.subject";
8318          }
8319          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
8320       }
8321    }
8322
8323 // ???
8324    /* NOTE: This style is a temporary style for email application. Otherwise do not use this. */
8325    group { name: "elm/genlist/item/4text.8icon/default";
8326       alias: "elm/genlist/item_odd/4text.8icon/default";
8327       alias: "elm/genlist/item_compress/4text.8icon/default";
8328       alias: "elm/genlist/item_compress_odd/4text.8icon/default";
8329       data.item: "stacking" "above";
8330       data.item: "selectraise" "on";
8331       data.item: "texts" "elm.text.subject elm.text.name elm.text.date elm.text.preview elm.text.num";
8332       data.item: "contents" "elm.icon.important elm.icon.important.touch elm.icon.num elm.icon.attach elm.icon.colorbar elm.swallow.outbox.progress elm.icon.checkbox elm.icon.checkbox.touch elm.icon.priority elm.icon.lastverb elm.icon.appointment";
8333       data.item: "flips" "elm.flip.content";
8334       images {
8335          image: "00_list_bar_press_1x80.png" COMP;
8336          image: "M02_button_06_normal.png" COMP;
8337       }
8338       parts {
8339          GENLIST_PART_BASE( GENLIST_SIZE_160_INC )
8340          GENLIST_PART_BG
8341          GENLIST_PART_BG_IMAGE
8342          GENLIST_PART_BOTTOM_LINE
8343          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_8_INC )
8344          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_8_INC )
8345          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
8346          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
8347          part { name: "elm.icon.colorbar";
8348             clip_to: "disclip";
8349             type: SWALLOW;
8350             scale: 1;
8351             description { state: "default" 0.0;
8352                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
8353                fixed: 1 1;
8354                rel2.relative: 0.0 0.0;
8355                align: 0.0 0.0;
8356             }
8357          }
8358
8359          part { name: "elm.icon.checkbox.touch";
8360             clip_to: "disclip";
8361             type: SWALLOW;
8362             mouse_events: 1;
8363             scale: 1;
8364             description { state: "default" 0.0;
8365                max: GENLIST_PADDING_74_INC GENLIST_SIZE_160_INC;
8366                fixed: 1 1;
8367                rel1 {
8368                   relative: 0.0 0.0;
8369                   to_x: "elm.padding.left";
8370                   to_y: "elm.padding.top";
8371                }
8372                rel2 {
8373                   relative: 0.0 0.0;
8374                   to_x: "elm.padding.right";
8375                   to_y: "elm.padding.bottom";
8376                }
8377                align: 0.0 0.5;
8378             }
8379          }
8380          part { name: "elm.icon.checkbox";
8381             clip_to: "disclip";
8382             type: SWALLOW;
8383             mouse_events: 1;
8384             scale: 1;
8385             description { state: "default" 0.0;
8386                max: GENLIST_SIZE_42_INC 0;
8387                fixed: 1 1;
8388                rel1 {
8389                   relative: 1.0 0.0;
8390                   to_x: "elm.padding.left";
8391                   to_y: "elm.padding.top";
8392                }
8393                rel2 {
8394                   relative: 0.0 0.0;
8395                   to_x: "elm.padding.right";
8396                   to_y: "elm.padding.bottom";
8397                }
8398                align: 0.0 0.5;
8399             }
8400          }
8401          part { name: "elm.padding.icon.checkbox.right";
8402             clip_to: "disclip";
8403             type: RECT;
8404             scale: 1;
8405             description { state: "default" 0.0;
8406                min: GENLIST_PADDING_16_INC 0;
8407                fixed: 1 0;
8408                rel1 {
8409                   relative: 1.0 0.0;
8410                   to_x: "elm.icon.checkbox";
8411                   to_y: "elm.padding.top";
8412                }
8413                rel2 {
8414                   relative: 1.0 0.0;
8415                   to_x:  "elm.icon.checkbox";
8416                   to_y: "elm.padding.bottom";
8417                }
8418                align: 1.0 0.0;
8419                visible: 0;
8420             }
8421          }
8422
8423          part { name: "elm.icon.important";
8424             clip_to: "disclip";
8425             type: SWALLOW;
8426             mouse_events: 1;
8427             scale: 1;
8428             description { state: "default" 0.0;
8429                min: GENLIST_SIZE_56_INC GENLIST_SIZE_SLIDE_60_INC;
8430                fixed: 1 1;
8431                rel1 {
8432                   relative: 0.0 1.0;
8433                   to_x: "elm.padding.right";
8434                   to_y: "elm.padding.top";
8435                }
8436                rel2 {
8437                   relative: 0.0 1.0;
8438                   to_x: "elm.padding.right";
8439                   to_y: "elm.padding.top";
8440                }
8441                align: 1.0 0.0;
8442             }
8443             GENLIST_DESCRIPTION_FLIP_ENABLED
8444          }
8445
8446          part { name: "elm.icon.important.touch";
8447             clip_to: "disclip";
8448             type: SWALLOW;
8449             mouse_events: 1;
8450             scale: 1;
8451             description { state: "default" 0.0;
8452                min: GENLIST_SIZE_56_INC GENLIST_SIZE_SLIDE_60_INC;
8453                fixed: 1 1;
8454                rel1 {
8455                   relative: 0.0 1.0;
8456                   to_x: "elm.padding.right";
8457                   to_y: "elm.padding.top";
8458                }
8459                rel2 {
8460                   relative: 0.0 1.0;
8461                   to_x: "elm.padding.right";
8462                   to_y: "elm.padding.top";
8463                }
8464                align: 1.0 0.0;
8465             }
8466             GENLIST_DESCRIPTION_FLIP_ENABLED
8467          }
8468
8469          part { name: "elm.padding.icon.important.left";
8470             clip_to: "disclip";
8471             type: RECT;
8472             scale: 1;
8473             description { state: "default" 0.0;
8474                min: GENLIST_PADDING_16_INC 0;
8475                fixed: 1 0;
8476                rel1{
8477                   relative: 0.0 1.0;
8478                   to_x: "elm.icon.important";
8479                }
8480                rel2 {
8481                   relative: 0.0 1.0;
8482                   to_x: "elm.icon.important";
8483                }
8484                align: 1.0 0.0;
8485                visible: 0;
8486             }
8487          }
8488          part { name: "elm.icon.num";
8489             clip_to: "disclip";
8490             type: IMAGE;
8491             mouse_events: 0;
8492             scale: 1;
8493             description { state: "default" 0.0;
8494                max: 0 GENLIST_SIZE_SLIDE_60_INC;
8495                fixed: 1 1;
8496                rel1 {
8497                   relative: 0.0 1.0;
8498                   offset: 0 GENLIST_SIZE_8_INC;
8499                   to_x: "elm.padding.icon.important.left";
8500                   to_y: "elm.padding.top";
8501                }
8502                rel2 {
8503                   relative: 0.0 1.0;
8504                   offset: 0 GENLIST_SIZE_8_INC;
8505                   to_x: "elm.padding.icon.important.left";
8506                   to_y: "elm.padding.top";
8507                }
8508                align: 1.0 0.0;
8509                image.normal: "M02_button_06_normal.png";
8510                image.border: 5 5 5 5;
8511             }
8512             description { state: "num_enable" 0.0;
8513                inherit: "default" 0.0;
8514                max: GENLIST_HEIGHT_62_INC GENLIST_SIZE_SLIDE_60_INC;
8515                min: GENLIST_SIZE_46_INC GENLIST_SIZE_44_INC;
8516             }
8517             GENLIST_DESCRIPTION_FLIP_ENABLED
8518          }
8519
8520          part { name: "elm.text.num";
8521             clip_to: "disclip";
8522             type: TEXT;
8523             mouse_events: 0;
8524             scale: 1;
8525             description { state: "default" 0.0;
8526                max: 0 GENLIST_SIZE_SLIDE_60_INC;
8527                fixed: 1 1;
8528                rel1 {
8529                   relative: 0.0 1.0;
8530                   offset: 0 GENLIST_SIZE_8_INC;
8531                   to_x: "elm.padding.icon.important.left";
8532                   to_y: "elm.padding.top";
8533                }
8534                rel2 {
8535                   relative: 0.0 1.0;
8536                   offset: 0 GENLIST_SIZE_8_INC;
8537                   to_x: "elm.padding.icon.important.left";
8538                   to_y: "elm.padding.top";
8539                }
8540                align: 1.0 0.0;
8541             }
8542             description { state: "num_enable" 0.0;
8543                inherit: "default" 0.0;
8544                max: GENLIST_HEIGHT_62_INC GENLIST_SIZE_SLIDE_60_INC;
8545                min: GENLIST_SIZE_46_INC GENLIST_SIZE_44_INC;
8546                text {
8547                   font: "SLP:style=Medium";
8548                   size: GENLIST_FONT_32_INC;
8549                   min: 1 1;
8550                   align: 0.5 0.5;
8551                   text_class: "slp_medium";
8552                }
8553                color: GENLIST_PART_FONT_CONVERTOR_STYLE_COLOR_INC;
8554             }
8555             GENLIST_DESCRIPTION_FLIP_ENABLED
8556          }
8557
8558          part { name: "elm.icon.attach";
8559             clip_to: "disclip";
8560             type: SWALLOW;
8561             scale: 1;
8562             description { state: "default" 0.0;
8563                min: 0 GENLIST_SIZE_SLIDE_60_INC;
8564                fixed: 1 1;
8565                rel1 {
8566                   relative: 0.0 1.0;
8567                   to_x: "elm.icon.num";
8568                   to_y: "elm.padding.top";
8569                }
8570                rel2 {
8571                   relative: 0.0 1.0;
8572                   to_x: "elm.icon.num";
8573                   to_y: "elm.padding.top";
8574                }
8575                align: 1.0 0.0;
8576             }
8577             description { state: "attach_enable" 0.0;
8578                inherit: "default" 0.0;
8579                min: GENLIST_SIZE_48_INC GENLIST_SIZE_SLIDE_60_INC;
8580             }
8581             GENLIST_DESCRIPTION_FLIP_ENABLED
8582          }
8583          part { name: "elm.text.subject";
8584             clip_to: "disclip";
8585             type: TEXTBLOCK;
8586             mouse_events: 0;
8587             scale: 1;
8588             description { state: "default" 0.0;
8589                min: 0 GENLIST_SIZE_SLIDE_60_INC;
8590                fixed: 1 1;
8591                rel1 {
8592                   relative: 1.0 1.0;
8593                   to_x: "elm.padding.icon.checkbox.right";
8594                   to_y: "elm.padding.top";
8595                }
8596                rel2{
8597                   relative: 0.0 1.0;
8598                   to_x: "elm.icon.attach";
8599                   to_y: "elm.padding.top";
8600                }
8601                align: 0.0 0.0;
8602                text {
8603                   style: "genlist_email_textblock_unread_style";
8604                   min: 0 1;
8605                   max: 0 1;
8606                   align: 0.0 0.5;
8607                }
8608             }
8609             description { state: "selected" 0.0;
8610                inherit: "default" 0.0;
8611                text.style: "genlist_email_textblock_selected_style";
8612             }
8613             description { state: "read" 0.0;
8614                inherit: "default" 0.0;
8615                text.style: "genlist_email_textblock_read_style";
8616             }
8617             description { state: "unread" 0.0;
8618                inherit: "default" 0.0;
8619                text.style: "genlist_email_textblock_unread_style";
8620             }
8621             GENLIST_DESCRIPTION_FLIP_ENABLED
8622          }
8623
8624          part { name: "elm.padding.intermediate";
8625             clip_to: "disclip";
8626             type: RECT;
8627             scale: 1;
8628             description { state: "default" 0.0;
8629                min: 0 GENLIST_PADDING_4_INC;
8630                fixed: 0 1;
8631                rel1 {
8632                   relative: 1.0 1.0;
8633                   to_x: "elm.padding.icon.checkbox.right";
8634                   to_y: "elm.icon.attach";
8635                }
8636                rel2 {
8637                   relative: 1.0 1.0;
8638                   to_x:  "elm.padding.icon.checkbox.right";
8639                   to_y: "elm.icon.attach";
8640                }
8641                align: 1.0 0.0;
8642                visible: 0;
8643             }
8644          }
8645
8646          part { name: "elm.icon.priority";
8647             clip_to: "disclip";
8648             type: SWALLOW;
8649             scale: 1;
8650             description { state: "default" 0.0;
8651                min: 0 GENLIST_SIZE_40_INC;
8652                fixed: 1 1;
8653                rel1 {
8654                   relative: 1.0 1.0;
8655                   to_x: "elm.padding.icon.checkbox.right";
8656                   to_y: "elm.padding.intermediate";
8657                }
8658                rel2 {
8659                   relative: 1.0 1.0;
8660                   to_x: "elm.padding.icon.checkbox.right";
8661                   to_y: "elm.padding.intermediate";
8662                }
8663                align: 0.0 0.0;
8664             }
8665             description { state: "priority_enable" 0.0;
8666                inherit: "default" 0.0;
8667                min: GENLIST_SIZE_48_INC GENLIST_SIZE_40_INC;
8668             }
8669             GENLIST_DESCRIPTION_FLIP_ENABLED
8670          }
8671          part { name: "elm.icon.lastverb";
8672             clip_to: "disclip";
8673             type: SWALLOW;
8674             scale: 1;
8675             description { state: "default" 0.0;
8676                min: 0 GENLIST_SIZE_40_INC;
8677                fixed: 1 1;
8678                rel1 {
8679                   relative: 1.0 1.0;
8680                   to_x: "elm.padding.icon.checkbox.right";
8681                   to_y: "elm.icon.priority";
8682                }
8683                rel2 {
8684                   relative: 1.0 1.0;
8685                   to_x: "elm.padding.icon.checkbox.right";
8686                   to_y: "elm.icon.priority";
8687                }
8688                align: 0.0 0.0;
8689             }
8690             description { state: "lastverb_enable" 0.0;
8691                inherit: "default" 0.0;
8692                min: GENLIST_SIZE_48_INC GENLIST_SIZE_40_INC;
8693             }
8694             GENLIST_DESCRIPTION_FLIP_ENABLED
8695          }
8696
8697          part { name: "elm.text.date";
8698             clip_to: "disclip";
8699             type: TEXT;
8700             mouse_events: 0;
8701             scale: 1;
8702             description { state: "default" 0.0;
8703                min: GENLIST_SIZE_154_INC GENLIST_SIZE_40_INC;
8704                fixed: 1 1;
8705                rel1 {
8706                   to_x: "elm.padding.right";
8707                   to_y: "elm.padding.bottom";
8708                }
8709                rel2 {
8710                   relative: 0.0 0.0;
8711                   to_x: "elm.padding.right";
8712                   to_y: "elm.padding.bottom";
8713                }
8714                align: 1.0 1.0;
8715                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
8716                text {
8717                   font: "SLP:style=Medium";
8718                   size: GENLIST_FONT_32_INC;
8719                   min: 0 1;
8720                   align: 1.0 0.5;
8721                   text_class: "slp_medium";
8722                }
8723             }
8724             description { state: "selected" 0.0;
8725                inherit: "default" 0.0;
8726                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
8727             }
8728             GENLIST_DESCRIPTION_FLIP_ENABLED
8729          }
8730
8731          part { name: "elm.icon.appointment";
8732             clip_to: "disclip";
8733             type: SWALLOW;
8734             mouse_events: 0;
8735             scale: 1;
8736             description { state: "default" 0.0;
8737                min: 0 GENLIST_SIZE_40_INC;
8738                fixed: 1 1;
8739                rel1 {
8740                   relative: 0.0 1.0;
8741                   to_x: "elm.padding.right";
8742                   to_y: "elm.padding.intermediate";
8743                }
8744                rel2 {
8745                   relative: 0.0 1.0;
8746                   to_x: "elm.padding.right";
8747                   to_y: "elm.padding.intermediate";
8748                }
8749                align: 1.0 0.0;
8750             }
8751             GENLIST_DESCRIPTION_FLIP_ENABLED
8752          }
8753          part { name: "elm.text.name";
8754             clip_to: "disclip";
8755             type: TEXTBLOCK;
8756             scale: 1;
8757             description { state: "default" 0.0;
8758                min: 0 GENLIST_SIZE_40_INC;
8759                fixed: 1 1;
8760                rel1 {
8761                   relative: 1.0 1.0;
8762                   to_x: "elm.icon.priority";
8763                   to_y: "elm.padding.intermediate";
8764                }
8765                rel2 {
8766                   relative: 0.0 1.0;
8767                   to_x: "elm.icon.appointment";
8768                   to_y: "elm.padding.intermediate";
8769                }
8770                align: 0.0 0.0;
8771                text {
8772                   style: "genlist_email_textblock2_style";
8773                   min: 0 1;
8774                   align: 0.0 0.5;
8775                }
8776             }
8777             description { state: "selected" 0.0;
8778                inherit: "default" 0.0;
8779                text.style: "genlist_email_textblock2_selected_style";
8780             }
8781             GENLIST_DESCRIPTION_FLIP_ENABLED
8782          }
8783          part { name: "elm.text.preview";
8784             clip_to: "disclip";
8785             type: TEXT;
8786             scale: 1;
8787             description { state: "default" 0.0;
8788                min: 0 GENLIST_SIZE_40_INC;
8789                fixed: 1 1;
8790                rel1 {
8791                   relative: 1.0 0.0;
8792                   to_x: "elm.icon.lastverb";
8793                   to_y: "elm.padding.bottom";
8794                }
8795                rel2 {
8796                   relative: 0.0 0.0;
8797                   to_x: "elm.text.date";
8798                   to_y: "elm.padding.bottom";
8799                }
8800                align: 0.0 1.0;
8801                color: GENLIST_PART_FONT_CONTENTS_TEXT_COLOR_INC;
8802                text {
8803                   font: "SLP:style=Medium";
8804                   size: GENLIST_FONT_30_INC;
8805                   min: 0 1;
8806                   align: 0.0 0.5;
8807                   text_class: "slp_medium";
8808                }
8809             }
8810             description { state: "selected" 0.0;
8811                inherit: "default" 0.0;
8812                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
8813             }
8814             GENLIST_DESCRIPTION_FLIP_ENABLED
8815          }
8816          part { name: "elm.swallow.outbox.progress";
8817             type: SWALLOW;
8818             scale: 1;
8819             mouse_events: 1;
8820             repeat_events: 0;
8821             description { state: "default" 0.0;
8822                min: GENLIST_SIZE_168_INC 0;
8823                fixed: 1 1;
8824                color: 0 0 0 0;
8825                align: 1.0 0.5;
8826                rel1 {
8827                   relative: 0.0 1.0;
8828                   offset: 0 0;
8829                   to_x: "elm.padding.right";
8830                   to_y: "elm.padding.top";
8831                }
8832                rel2 {
8833                   relative: 0.0 0.0;
8834                   offset: 0 0;
8835                   to_x: "elm.padding.right";
8836                   to_y: "elm.padding.bottom";
8837                }
8838             }
8839          }
8840          GENLIST_PART_FLIP
8841          GENLIST_PART_DISCLIP
8842       }
8843       programs {
8844          // signal: elm,state,%s,active
8845          //   a "check" item named %s went active
8846          // signal: elm,state,%s,passive
8847          //   a "check" item named %s went passive
8848          // default is passive
8849          program { name: "go_active";
8850             signal: "elm,state,selected";
8851             source: "elm";
8852             action: STATE_SET "selected" 0.0;
8853             target: "bg_image";
8854             target: "elm.text.subject";
8855             target: "elm.text.name";
8856             target: "elm.text.date";
8857             target: "elm.text.preview";
8858             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
8859          }
8860          program { name: "go_passive";
8861             signal: "elm,state,unselected";
8862             source: "elm";
8863             action: STATE_SET "default" 0.0;
8864             target: "bg_image";
8865             target: "elm.text.subject";
8866             target: "elm.text.name";
8867             target: "elm.text.date";
8868             target: "elm.text.preview";
8869             transition: LINEAR 0.1;
8870          }
8871          program { name: "go_disabled";
8872             signal: "elm,state,disabled";
8873             source: "elm";
8874             action: STATE_SET "disabled" 0.0;
8875             target: "disclip";
8876          }
8877          program { name: "go_enabled";
8878             signal: "elm,state,enabled";
8879             source: "elm";
8880             action: STATE_SET "default" 0.0;
8881             target: "disclip";
8882          }
8883          program { name: "go_read";
8884             signal: "elm,state,read";
8885             source: "elm";
8886             action: STATE_SET "read" 0.0;
8887             target: "elm.text.subject";
8888          }
8889          program { name: "go_unread";
8890             signal: "elm,state,unread";
8891             source: "elm";
8892             action: STATE_SET "unread" 0.0;
8893             target: "elm.text.subject";
8894          }
8895          program { name: "go_attach";
8896             signal: "elm,state,attach";
8897             source: "elm";
8898             action: STATE_SET "attach_enable" 0.0;
8899             target: "elm.icon.attach";
8900          }
8901          program { name: "go_priority";
8902             signal: "elm,state,priority";
8903             source: "elm";
8904             action: STATE_SET "priority_enable" 0.0;
8905             target: "elm.icon.priority";
8906          }
8907          program { name: "go_lastverb";
8908             signal: "elm,state,lastverb";
8909             source: "elm";
8910             action: STATE_SET "lastverb_enable" 0.0;
8911             target: "elm.icon.lastverb";
8912          }
8913          program { name: "go_num";
8914             signal: "elm,state,num";
8915             source: "elm";
8916             action: STATE_SET "num_enable" 0.0;
8917             target: "elm.icon.num";
8918             target: "elm.text.num";
8919          }
8920          program { name: "click";
8921             signal: "mouse,up,1";
8922             source: "elm.icon.checkbox.touch";
8923             action: SIGNAL_EMIT "elm,action,check,toggle" "";
8924          }
8925          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
8926       }
8927    }
8928
8929
8930 // ???
8931    /* NOTE: This style is a temporary style for email application. Otherwise do not use this. */
8932    group { name: "elm/genlist/item/3text.6icon/default";
8933       alias: "elm/genlist/item_odd/3text.6icon/default";
8934       alias: "elm/genlist/item_compress/3text.6icon/default";
8935       alias: "elm/genlist/item_compress_odd/3text.6icon/default";
8936       data.item: "stacking" "above";
8937       data.item: "selectraise" "on";
8938       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
8939       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4 elm.swallow.colorbar elm.swallow.outbox.progress";
8940       data.item: "flips" "elm.flip.content";
8941       images {
8942          image: "00_list_bar_press_1x80.png" COMP;
8943       }
8944       parts {
8945          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
8946          GENLIST_PART_BG
8947          GENLIST_PART_BG_IMAGE
8948          GENLIST_PART_BOTTOM_LINE
8949          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
8950          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
8951          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
8952          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
8953          part { name: "elm.swallow.colorbar";
8954             clip_to: "disclip";
8955             type: SWALLOW;
8956             scale: 1;
8957             description { state: "default" 0.0;
8958                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
8959                rel2.relative: 0.0 0.0;
8960                align: 0.0 0.0;
8961             }
8962          }
8963          part { name: "elm.text.3";
8964             clip_to: "disclip";
8965             type: TEXT;
8966             mouse_events: 0;
8967             scale: 1;
8968             description { state: "default" 0.0;
8969                min: GENLIST_SIZE_154_INC GENLIST_SIZE_61_INC;
8970                rel1 {
8971                   relative: 0.0 0.0;
8972                   to_x: "elm.padding.right";
8973                   to_y: "elm.padding.bottom";
8974                }
8975                rel2 {
8976                   relative: 0.0 0.0;
8977                   to_x: "elm.padding.right";
8978                   to_y: "elm.padding.bottom";
8979                }
8980                align: 1.0 1.0;
8981                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
8982                text {
8983                   font: "SLP:style=Medium";
8984                   size: GENLIST_FONT_32_INC;
8985                   min: 0 1;
8986                   align: 1.0 0.5;
8987                   text_class: "slp_medium";
8988                }
8989             }
8990             description { state: "selected" 0.0;
8991                inherit: "default" 0.0;
8992                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
8993             }
8994             GENLIST_DESCRIPTION_FLIP_ENABLED
8995          }
8996          part { name: "elm.icon.1";
8997             clip_to: "disclip";
8998             type: SWALLOW;
8999             mouse_events: 0;
9000             scale: 1;
9001             description { state: "default" 0.0;
9002                rel1 {
9003                   relative: 0.0 1.0;
9004                   to_x: "elm.padding.right";
9005                   to_y: "elm.padding.top";
9006                }
9007                rel2 {
9008                   relative: 0.0 0.0;
9009                   to_x: "elm.padding.right";
9010                   to_y: "elm.text.3";
9011                }
9012                align: 1.0 0.0;
9013             }
9014             GENLIST_DESCRIPTION_FLIP_ENABLED
9015          }
9016          part { name: "elm.padding.icon1.left";
9017             clip_to: "disclip";
9018             type: RECT;
9019             scale: 1;
9020             description { state: "default" 0.0;
9021                min: GENLIST_PADDING_16_INC 0;
9022                rel1.to_x: "elm.icon.1";
9023                rel2 {
9024                   relative: 0.0 1.0;
9025                   to_x: "elm.icon.1";
9026                }
9027                align: 1.0 0.0;
9028                visible: 0;
9029             }
9030          }
9031          part { name: "elm.text1.rect";
9032             clip_to: "disclip";
9033             type: RECT;
9034             scale: 1;
9035             description { state: "default" 0.0;
9036                min: 0 GENLIST_SIZE_61_INC;
9037                rel1 {
9038                   relative: 1.0 1.0;
9039                   to_x: "elm.swallow.colorbar";
9040                   to_y: "elm.padding.top";
9041                }
9042                rel2 {
9043                   relative: 0.0 0.0;
9044                   to_x: "elm.padding.icon1.left";
9045                   to_y: "elm.padding.top";
9046                }
9047                align: 0.0 0.0;
9048                visible: 0;
9049             }
9050          }
9051          part { name: "elm.text.1";
9052             clip_to: "disclip";
9053             type: TEXTBLOCK;
9054             mouse_events: 0;
9055             scale: 1;
9056             description { state: "default" 0.0;
9057                rel1.to: "elm.text1.rect";
9058                rel2.to: "elm.text1.rect";
9059                align: 0.0 0.0;
9060                text {
9061                   style: "genlist_email_textblock_unread_style";
9062                   min: 0 1;
9063                   max: 0 1;
9064                   align: 0.0 0.5;
9065                }
9066             }
9067             description { state: "selected" 0.0;
9068                inherit: "default" 0.0;
9069                text.style: "genlist_email_textblock_selected_style";
9070             }
9071             description { state: "read" 0.0;
9072                inherit: "default" 0.0;
9073                text.style: "genlist_email_textblock_read_style";
9074             }
9075             description { state: "unread" 0.0;
9076                inherit: "default" 0.0;
9077                text.style: "genlist_email_textblock_unread_style";
9078             }
9079             description { state: "urgency_read" 0.0;
9080                inherit: "default" 0.0;
9081                text.style: "genlist_email_textblock_urgency_read_style";
9082             }
9083             description { state: "urgency_unread" 0.0;
9084                inherit: "default" 0.0;
9085                text.style: "genlist_email_textblock_urgency_unread_style";
9086             }
9087             GENLIST_DESCRIPTION_FLIP_ENABLED
9088          }
9089          part { name: "elm.text.2";
9090             clip_to: "disclip";
9091             type: TEXTBLOCK;
9092             scale: 1;
9093             description { state: "default" 0.0;
9094                rel1 {
9095                   relative: 1.0 1.0;
9096                   to_x: "elm.padding.left";
9097                   to_y: "elm.text.1";
9098                }
9099                rel2 {
9100                   relative: 0.0 0.0;
9101                   to_x: "elm.padding.icon2.left";
9102                   to_y: "elm.padding.bottom";
9103                }
9104                align: 0.0 0.5;
9105                text {
9106                   style: "genlist_email_textblock2_style";
9107                   min: 0 1;
9108                   align: 0.0 0.5;
9109                }
9110             }
9111             description { state: "selected" 0.0;
9112                inherit: "default" 0.0;
9113                text.style: "genlist_email_textblock2_selected_style";
9114             }
9115             GENLIST_DESCRIPTION_FLIP_ENABLED
9116          }
9117          part { name: "elm.padding.icon2.left";
9118             clip_to: "disclip";
9119             type: RECT;
9120             scale: 1;
9121             description { state: "default" 0.0;
9122                min: GENLIST_PADDING_16_INC 0;
9123                rel1 {
9124                   relative: 0.0 1.0;
9125                   to_x: "elm.icon.2";
9126                   to_y: "elm.text.1";
9127                }
9128                rel2 {
9129                   relative: 0.0 0.0;
9130                   to_x: "elm.icon.2";
9131                   to_y: "elm.padding.bottom";
9132                }
9133                align: 1.0 0.0;
9134                visible: 0;
9135             }
9136          }
9137          part { name: "elm.icon.2";
9138             clip_to: "disclip";
9139             type: SWALLOW;
9140             scale: 1;
9141             description { state: "default" 0.0;
9142                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
9143                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
9144                rel1 {
9145                   relative: 0.0 1.0;
9146                   to_x: "elm.padding.icon3.left";
9147                   to_y: "elm.text.1";
9148                }
9149                rel2 {
9150                   relative: 0.0 0.0;
9151                   to_x: "elm.padding.icon3.left";
9152                   to_y: "elm.padding.bottom";
9153                }
9154                align: 1.0 0.5;
9155             }
9156             GENLIST_DESCRIPTION_FLIP_ENABLED
9157          }
9158          part { name: "elm.padding.icon3.left";
9159             clip_to: "disclip";
9160             type: RECT;
9161             scale: 1;
9162             description { state: "default" 0.0;
9163                min: GENLIST_PADDING_16_INC 0;
9164                rel1 {
9165                   relative: 0.0 1.0;
9166                   to_x: "elm.icon.3";
9167                   to_y: "elm.text.1";
9168                }
9169                rel2 {
9170                   relative: 0.0 0.0;
9171                   to_x: "elm.icon.3";
9172                   to_y: "elm.padding.bottom";
9173                }
9174                align: 1.0 0.0;
9175                visible: 0;
9176             }
9177          }
9178          part { name: "elm.icon.3";
9179             clip_to: "disclip";
9180             type: SWALLOW;
9181             scale: 1;
9182             description { state: "default" 0.0;
9183                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
9184                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
9185                rel1 {
9186                   relative: 0.0 1.0;
9187                   to_x: "elm.padding.icon4.left";
9188                   to_y: "elm.text.1";
9189                }
9190                rel2 {
9191                   relative: 0.0 0.0;
9192                   to_x: "elm.padding.icon4.left";
9193                   to_y: "elm.padding.bottom";
9194                }
9195                align: 1.0 0.5;
9196             }
9197             GENLIST_DESCRIPTION_FLIP_ENABLED
9198          }
9199          part { name: "elm.padding.icon4.left";
9200             clip_to: "disclip";
9201             type: RECT;
9202             scale: 1;
9203             description { state: "default" 0.0;
9204                min: GENLIST_PADDING_16_INC 0;
9205                rel1 {
9206                   relative: 0.0 1.0;
9207                   to_x: "elm.icon.4";
9208                   to_y: "elm.text.1";
9209                }
9210                rel2 {
9211                   relative: 0.0 0.0;
9212                   to_x: "elm.icon.4";
9213                   to_y: "elm.padding.bottom";
9214                }
9215                align: 1.0 0.0;
9216                visible: 0;
9217             }
9218          }
9219          part { name: "elm.icon.4";
9220             clip_to: "disclip";
9221             type: SWALLOW;
9222             scale: 1;
9223             description { state: "default" 0.0;
9224                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
9225                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
9226                rel1 {
9227                   relative: 0.0 1.0;
9228                   to_x: "elm.text.3";
9229                   to_y: "elm.text.1";
9230                }
9231                rel2 {
9232                   relative: 0.0 0.0;
9233                   to_x: "elm.text.3";
9234                   to_y: "elm.padding.bottom";
9235                }
9236                align: 1.0 0.5;
9237             }
9238             GENLIST_DESCRIPTION_FLIP_ENABLED
9239          }
9240          part { name: "elm.swallow.outbox.progress";
9241             type: SWALLOW;
9242             scale: 1;
9243             mouse_events: 1;
9244             repeat_events: 0;
9245             description { state: "default" 0.0;
9246                min: GENLIST_SIZE_168_INC 0;
9247                color: 0 0 0 0;
9248                align: 1.0 0.5;
9249                rel1 {
9250                   relative: 0.0 1.0;
9251                   offset: 0 0;
9252                   to_x: "elm.padding.right";
9253                   to_y: "elm.padding.top";
9254                }
9255                rel2 {
9256                   relative: 0.0 0.0;
9257                   offset: 0 0;
9258                   to_x: "elm.padding.right";
9259                   to_y: "elm.padding.bottom";
9260                }
9261             }
9262          }
9263          GENLIST_PART_FLIP
9264          GENLIST_PART_DISCLIP
9265       }
9266       programs {
9267          // signal: elm,state,%s,active
9268          //   a "check" item named %s went active
9269          // signal: elm,state,%s,passive
9270          //   a "check" item named %s went passive
9271          // default is passive
9272          program { name: "go_active";
9273             signal: "elm,state,selected";
9274             source: "elm";
9275             action: STATE_SET "selected" 0.0;
9276             target: "bg_image";
9277             target: "elm.text.1";
9278             target: "elm.text.2";
9279             target: "elm.text.3";
9280             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
9281          }
9282          program { name: "go_passive";
9283             signal: "elm,state,unselected";
9284             source: "elm";
9285             action: STATE_SET "default" 0.0;
9286             target: "bg_image";
9287             target: "elm.text.1";
9288             target: "elm.text.2";
9289             target: "elm.text.3";
9290             transition: LINEAR 0.1;
9291          }
9292          program { name: "go_disabled";
9293             signal: "elm,state,disabled";
9294             source: "elm";
9295             action: STATE_SET "disabled" 0.0;
9296             target: "disclip";
9297          }
9298          program { name: "go_enabled";
9299             signal: "elm,state,enabled";
9300             source: "elm";
9301             action: STATE_SET "default" 0.0;
9302             target: "disclip";
9303          }
9304          GENLIST_PROGRAM_FLIP_3TEXT_2ICON
9305          program { name: "go_read";
9306             signal: "elm,state,read";
9307             source: "elm";
9308             action: STATE_SET "read" 0.0;
9309             target: "elm.text.1";
9310          }
9311          program { name: "go_unread";
9312             signal: "elm,state,unread";
9313             source: "elm";
9314             action: STATE_SET "unread" 0.0;
9315             target: "elm.text.1";
9316          }
9317          program { name: "go_urgeny_unread";
9318             signal: "elm,state,urgency_unread";
9319             source: "elm";
9320             action: STATE_SET "urgency_unread" 0.0;
9321             target: "elm.text.1";
9322          }
9323          program { name: "go_urgency_read";
9324             signal: "elm,state,urgency_read";
9325             source: "elm";
9326             action: STATE_SET "urgency_read" 0.0;
9327             target: "elm.text.1";
9328          }
9329          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
9330       }
9331    }
9332
9333 // 3.2.24
9334    group { name: "elm/genlist/item/2text.3icon.2/default";
9335       alias: "elm/genlist/item_odd/2text.3icon.2/default";
9336       alias: "elm/genlist/item_compress/2text.3icon.2/default";
9337       alias: "elm/genlist/item_compress_odd/2text.3icon.2/default";
9338       data.item: "stacking" "above";
9339       data.item: "selectraise" "on";
9340       data.item: "texts" "elm.text.1 elm.text.2";
9341       data.item: "contents" "elm.icon.1 elm.icon.2 elm.swallow.colorbar";
9342       data.item: "flips" "elm.flip.content";
9343       images {
9344          image: "00_list_bar_press_1x80.png" COMP;
9345       }
9346       parts {
9347          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
9348          GENLIST_PART_BG_IMAGE
9349          GENLIST_PART_BOTTOM_LINE
9350          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
9351          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
9352          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
9353          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
9354          part { name: "elm.swallow.colorbar";
9355             clip_to: "disclip";
9356             type: SWALLOW;
9357             scale: 1;
9358             description { state: "default" 0.0;
9359                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
9360                fixed: 1 1;
9361                rel2.relative: 0.0 0.0;
9362                align: 0.0 0.0;
9363             }
9364          }
9365          part { name: "elm.icon.2";
9366             clip_to: "disclip";
9367             type: SWALLOW;
9368             scale: 1;
9369             description { state: "default" 0.0;
9370                fixed: 1 1;
9371                rel1 {
9372                   relative: 0.0 1.0;
9373                   to_x: "elm.padding.right";
9374                   to_y: "elm.padding.top";
9375                }
9376                rel2 {
9377                   relative: 0.0 0.0;
9378                   to_x: "elm.padding.right";
9379                   to_y: "elm.padding.bottom";
9380                }
9381                align: 1.0 0.5;
9382             }
9383             GENLIST_DESCRIPTION_FLIP_ENABLED
9384          }
9385          part { name: "elm.padding.icon2.left";
9386             clip_to: "disclip";
9387             type: RECT;
9388             scale: 1;
9389             description { state: "default" 0.0;
9390                min: GENLIST_PADDING_16_INC 0;
9391                fixed: 1 0;
9392                rel1.to_x: "elm.icon.2";
9393                rel2 {
9394                   relative: 0.0 1.0;
9395                   to_x: "elm.icon.2";
9396                }
9397                align: 1.0 0.0;
9398                visible: 0;
9399             }
9400          }
9401          part { name: "elm.text.2";
9402             clip_to: "disclip";
9403             type: TEXT;
9404             mouse_events: 0;
9405             scale: 1;
9406             description { state: "default" 0.0;
9407                min: 0 GENLIST_SIZE_48_INC;
9408                fixed: 0 1;
9409                rel1 {
9410                   relative: 1.0 0.0;
9411                   to_x: "elm.padding.left";
9412                   to_y: "elm.padding.bottom";
9413                }
9414                rel2 {
9415                   relative: 0.0 0.0;
9416                   to_x: "elm.padding.icon2.left";
9417                   to_y: "elm.padding.bottom";
9418                }
9419                align: 0.0 1.0;
9420                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
9421                text {
9422                   font: "SLP:style=Medium";
9423                   size: GENLIST_FONT_32_INC;
9424                   min: 0 1;
9425                   align: 0.0 0.5;
9426                   text_class: "slp_medium";
9427                }
9428             }
9429             description { state: "selected" 0.0;
9430                inherit: "default" 0.0;
9431                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
9432             }
9433             GENLIST_DESCRIPTION_FLIP_ENABLED
9434          }
9435          part { name: "elm.text.1";
9436             clip_to: "disclip";
9437             type: TEXT;
9438             mouse_events: 0;
9439             scale: 1;
9440             description { state: "default" 0.0;
9441                min: 0 0;
9442                max: GENLIST_SIZE_560_INC 0;
9443                fixed: 1 0;
9444                rel1 {
9445                   relative: 1.0 1.0;
9446                   to_x: "elm.padding.left";
9447                   to_y: "elm.padding.top";
9448                }
9449                rel2 {
9450                   relative: 1.0 0.0;
9451                   to_x: "elm.padding.left";
9452                   to_y: "elm.text.2";
9453                }
9454                align: 0.0 0.5;
9455                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
9456                text {
9457                   font: "SLP:style=Roman";
9458                   size: GENLIST_FONT_44_INC;
9459                   min: 1 1;
9460                   align: 0.0 0.5;
9461                   text_class: "list_item";
9462                }
9463             }
9464             description { state: "selected" 0.0;
9465                inherit: "default" 0.0;
9466                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
9467             }
9468             GENLIST_DESCRIPTION_FLIP_ENABLED
9469          }
9470          part { name: "elm.padding.icon1.left";
9471             clip_to: "disclip";
9472             type: RECT;
9473             scale: 1;
9474             description { state: "default" 0.0;
9475                min: GENLIST_PADDING_16_INC 0;
9476                fixed: 1 0;
9477                rel1 {
9478                   relative: 1.0 0.0;
9479                   to_x: "elm.text.1";
9480                }
9481                rel2.to_x: "elm.text.1";
9482                align: 0.0 0.0;
9483                visible: 0;
9484             }
9485          }
9486          part { name: "elm.icon.1";
9487             clip_to: "disclip";
9488             type: SWALLOW;
9489             scale: 1;
9490             description { state: "default" 0.0;
9491                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
9492                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
9493                fixed: 1 1;
9494                rel1 {
9495                   relative: 1.0 1.0;
9496                   to_x: "elm.padding.icon1.left";
9497                   to_y: "elm.padding.top";
9498                }
9499                rel2 {
9500                   relative: 1.0 0.0;
9501                   to_x: "elm.padding.icon1.left";
9502                   to_y: "elm.text.2";
9503                }
9504                align: 0.0 0.5;
9505             }
9506             GENLIST_DESCRIPTION_FLIP_ENABLED
9507          }
9508          GENLIST_PART_FLIP
9509          GENLIST_PART_DISCLIP
9510       }
9511       programs {
9512          // signal: elm,state,%s,active
9513          //   a "check" item named %s went active
9514          // signal: elm,state,%s,passive
9515          //   a "check" item named %s went passive
9516          // default is passive
9517          program { name: "go_active";
9518             signal: "elm,state,selected";
9519             source: "elm";
9520             action: STATE_SET "selected" 0.0;
9521             target: "bg_image";
9522             target: "elm.text.1";
9523             target: "elm.text.2";
9524             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
9525          }
9526          program { name: "go_passive";
9527             signal: "elm,state,unselected";
9528             source: "elm";
9529             action: STATE_SET "default" 0.0;
9530             target: "bg_image";
9531             target: "elm.text.1";
9532             target: "elm.text.2";
9533             transition: LINEAR 0.1;
9534          }
9535          program { name: "go_disabled";
9536             signal: "elm,state,disabled";
9537             source: "elm";
9538             action: STATE_SET "disabled" 0.0;
9539             target: "disclip";
9540          }
9541          program { name: "go_enabled";
9542             signal: "elm,state,enabled";
9543             source: "elm";
9544             action: STATE_SET "default" 0.0;
9545             target: "disclip";
9546          }
9547          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
9548          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
9549       }
9550    }
9551
9552 // 3.2.25
9553    group { name: "elm/genlist/item/2text.3icon.3/default";
9554       alias: "elm/genlist/item_odd/2text.3icon.3/default";
9555       alias: "elm/genlist/item_compress/2text.3icon.3/default";
9556       alias: "elm/genlist/item_compress_odd/2text.3icon.3/default";
9557       data.item: "stacking" "above";
9558       data.item: "selectraise" "on";
9559       data.item: "texts" "elm.text.1 elm.text.2";
9560       data.item: "contents" "elm.icon.1 elm.icon.2 elm.swallow.colorbar";
9561       data.item: "flips" "elm.flip.content";
9562       images {
9563          image: "00_list_bar_press_1x80.png" COMP;
9564       }
9565       parts {
9566          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
9567          GENLIST_PART_BG_IMAGE
9568          GENLIST_PART_BOTTOM_LINE
9569          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
9570          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
9571          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
9572          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
9573          part { name: "elm.swallow.colorbar";
9574             clip_to: "disclip";
9575             type: SWALLOW;
9576             scale: 1;
9577             description { state: "default" 0.0;
9578                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
9579                fixed: 1 1;
9580                rel2.relative: 0.0 0.0;
9581                align: 0.0 0.0;
9582             }
9583          }
9584          part { name: "elm.icon.1";
9585             clip_to: "disclip";
9586             type: SWALLOW;
9587             scale: 1;
9588             description { state: "default" 0.0;
9589                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
9590                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
9591                fixed: 1 1;
9592                rel1 {
9593                   relative: 1.0 1.0;
9594                   to_x: "elm.padding.left";
9595                   to_y: "elm.padding.top";
9596                }
9597                rel2 {
9598                   relative: 1.0 0.0;
9599                   to_x: "elm.padding.left";
9600                   to_y: "elm.padding.bottom";
9601                }
9602                align: 0.0 0.5;
9603             }
9604             GENLIST_DESCRIPTION_FLIP_ENABLED
9605          }
9606          part { name: "elm.padding.icon1.right";
9607             clip_to: "disclip";
9608             type: RECT;
9609             scale: 1;
9610             description { state: "default" 0.0;
9611                min: GENLIST_PADDING_16_INC 0;
9612                fixed: 1 0;
9613                rel1 {
9614                   relative: 1.0 0.0;
9615                   to_x: "elm.icon.1";
9616                }
9617                rel2.to_x: "elm.icon.1";
9618                align: 0.0 0.0;
9619                visible: 0;
9620             }
9621          }
9622          part { name: "elm.icon.2";
9623             clip_to: "disclip";
9624             type: SWALLOW;
9625             scale: 1;
9626             description { state: "default" 0.0;
9627                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
9628                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
9629                fixed: 1 1;
9630                rel1 {
9631                   relative: 0.0 1.0;
9632                   to_x: "elm.padding.right";
9633                   to_y: "elm.padding.top";
9634                }
9635                rel2 {
9636                   relative: 0.0 1.0;
9637                   to_x: "elm.padding.right";
9638                   to_y: "elm.padding.bottom";
9639                }
9640                align: 1.0 0.5;
9641             }
9642             GENLIST_DESCRIPTION_FLIP_ENABLED
9643          }
9644          part { name: "elm.padding.icon2.left";
9645             clip_to: "disclip";
9646             type: RECT;
9647             scale: 1;
9648             description { state: "default" 0.0;
9649                min: GENLIST_PADDING_16_INC 0;
9650                fixed: 1 0;
9651                rel1 {
9652                   relative: 0.0 0.0;
9653                   to_x: "elm.icon.2";
9654                }
9655                rel2.to_x: "elm.icon.2";
9656                align: 1.0 0.0;
9657                visible: 0;
9658             }
9659          }
9660          part { name: "elm.text.1";
9661             clip_to: "disclip";
9662             type: TEXT;
9663             mouse_events: 0;
9664             scale: 1;
9665             description { state: "default" 0.0;
9666                min: 0 GENLIST_SIZE_61_INC;
9667                fixed: 1 1;
9668                rel1 {
9669                   relative: 1.0 1.0;
9670                   to_x: "elm.padding.icon1.right";
9671                   to_y: "elm.padding.top";
9672                }
9673                rel2 {
9674                   relative: 0.0 1.0;
9675                   to_x: "elm.padding.icon2.left";
9676                   to_y: "elm.padding.top";
9677                }
9678                align: 0.0 0.0;
9679                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
9680                text {
9681                   font: "SLP:style=Roman";
9682                   size: GENLIST_FONT_44_INC;
9683                   min: 0 1;
9684                   align: 0.0 0.5;
9685                   text_class: "list_item";
9686                }
9687             }
9688             description { state: "selected" 0.0;
9689                inherit: "default" 0.0;
9690                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
9691             }
9692             GENLIST_DESCRIPTION_FLIP_ENABLED
9693          }
9694          part { name: "elm.text.2";
9695             clip_to: "disclip";
9696             type: TEXT;
9697             mouse_events: 0;
9698             scale: 1;
9699             description { state: "default" 0.0;
9700                rel1 {
9701                   relative: 1.0 1.0;
9702                   to_x: "elm.padding.icon1.right";
9703                   to_y: "elm.text.1";
9704                }
9705                rel2 {
9706                   relative: 0.0 0.0;
9707                   to_x: "elm.padding.icon2.left";
9708                   to_y: "elm.padding.bottom";
9709                }
9710                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
9711                text {
9712                   font: "SLP:style=Medium";
9713                   size: GENLIST_FONT_32_INC;
9714                   min: 0 1;
9715                   align: 0.0 0.5;
9716                   text_class: "slp_medium";
9717                }
9718             }
9719             description { state: "selected" 0.0;
9720                inherit: "default" 0.0;
9721                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
9722             }
9723             GENLIST_DESCRIPTION_FLIP_ENABLED
9724          }
9725          GENLIST_PART_FLIP
9726          GENLIST_PART_DISCLIP
9727       }
9728       programs {
9729          // signal: elm,state,%s,active
9730          //   a "check" item named %s went active
9731          // signal: elm,state,%s,passive
9732          //   a "check" item named %s went passive
9733          // default is passive
9734          program { name: "go_active";
9735             signal: "elm,state,selected";
9736             source: "elm";
9737             action: STATE_SET "selected" 0.0;
9738             target: "bg_image";
9739             target: "elm.text.1";
9740             target: "elm.text.2";
9741             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
9742          }
9743          program { name: "go_passive";
9744             signal: "elm,state,unselected";
9745             source: "elm";
9746             action: STATE_SET "default" 0.0;
9747             target: "bg_image";
9748             target: "elm.text.1";
9749             target: "elm.text.2";
9750             transition: LINEAR 0.1;
9751          }
9752          program { name: "go_disabled";
9753             signal: "elm,state,disabled";
9754             source: "elm";
9755             action: STATE_SET "disabled" 0.0;
9756             target: "disclip";
9757          }
9758          program { name: "go_enabled";
9759             signal: "elm,state,enabled";
9760             source: "elm";
9761             action: STATE_SET "default" 0.0;
9762             target: "disclip";
9763          }
9764          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
9765          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
9766       }
9767    }
9768
9769 // 3.2.26
9770    group { name: "elm/genlist/item/2text.2icon.6/default";
9771       alias: "elm/genlist/item_odd/2text.2icon.6/default";
9772       alias: "elm/genlist/item_compress/2text.2icon.6/default";
9773       alias: "elm/genlist/item_compress_odd/2text.2icon.6/default";
9774       data.item: "stacking" "above";
9775       data.item: "selectraise" "on";
9776       data.item: "texts" "elm.text.1 elm.text.2";
9777       data.item: "contents" "elm.icon.1 elm.icon.2";
9778       data.item: "flips" "elm.flip.content";
9779       images {
9780          image: "00_list_bar_press_1x80.png" COMP;
9781       }
9782       parts {
9783          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
9784          GENLIST_PART_BG_IMAGE
9785          GENLIST_PART_BOTTOM_LINE
9786          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
9787          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
9788          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
9789          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
9790          part { name: "elm.icon.1";
9791             clip_to: "disclip";
9792             type: SWALLOW;
9793             scale: 1;
9794             description { state: "default" 0.0;
9795                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
9796                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
9797                fixed: 1 1;
9798                rel1 {
9799                   relative: 1.0 1.0;
9800                   to_x: "elm.padding.left";
9801                   to_y: "elm.padding.top";
9802                }
9803                rel2 {
9804                   relative: 1.0 0.0;
9805                   to_x: "elm.padding.left";
9806                   to_y: "elm.padding.bottom";
9807                }
9808                align: 0.0 0.5;
9809             }
9810             GENLIST_DESCRIPTION_FLIP_ENABLED
9811          }
9812          part { name: "elm.padding.icon1.right";
9813             clip_to: "disclip";
9814             type: RECT;
9815             scale: 1;
9816             description { state: "default" 0.0;
9817                min: GENLIST_PADDING_16_INC 0;
9818                fixed: 1 0;
9819                rel1 {
9820                   relative: 1.0 0.0;
9821                   to_x: "elm.icon.1";
9822                }
9823                rel2.to_x: "elm.icon.1";
9824                align: 0.0 0.0;
9825                visible: 0;
9826             }
9827          }
9828          part { name: "elm.text.1";
9829             clip_to: "disclip";
9830             type: TEXT;
9831             mouse_events: 0;
9832             scale: 1;
9833             description { state: "default" 0.0;
9834                min: 0 GENLIST_SIZE_61_INC;
9835                fixed: 0 1;
9836                rel1 {
9837                   relative: 1.0 1.0;
9838                   to_x: "elm.padding.icon1.right";
9839                   to_y: "elm.padding.top";
9840                }
9841                rel2 {
9842                   relative: 0.0 1.0;
9843                   to_x: "elm.padding.right";
9844                   to_y: "elm.padding.top";
9845                }
9846                align: 0.0 0.0;
9847                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
9848                text {
9849                   font: "SLP:style=Roman";
9850                   size: GENLIST_FONT_44_INC;
9851                   min: 0 1;
9852                   align: 0.0 0.5;
9853                   text_class: "list_item";
9854                }
9855             }
9856             description { state: "selected" 0.0;
9857                inherit: "default" 0.0;
9858                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
9859             }
9860             GENLIST_DESCRIPTION_FLIP_ENABLED
9861          }
9862          part { name: "elm.icon.2";
9863             clip_to: "disclip";
9864             type: SWALLOW;
9865             scale: 1;
9866             description { state: "default" 0.0;
9867                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
9868                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
9869                fixed: 1 1;
9870                rel1 {
9871                   relative: 0.0 1.0;
9872                   to_x: "elm.padding.right";
9873                   to_y: "elm.text.1";
9874                }
9875                rel2 {
9876                   relative: 0.0 1.0;
9877                   to_x: "elm.padding.right";
9878                   to_y: "elm.padding.bottom";
9879                }
9880                align: 1.0 0.5;
9881             }
9882             GENLIST_DESCRIPTION_FLIP_ENABLED
9883          }
9884          part { name: "elm.padding.icon2.left";
9885             type: RECT;
9886             scale: 1;
9887             description { state: "default" 0.0;
9888                min: GENLIST_PADDING_16_INC 0;
9889                fixed: 1 0;
9890                rel1 {
9891                   relative: 0.0 0.0;
9892                   to_x: "elm.icon.2";
9893                }
9894                rel2.to_x: "elm.icon.2";
9895                align: 1.0 0.0;
9896                visible: 0;
9897             }
9898          }
9899          part { name: "elm.text.2";
9900             clip_to: "disclip";
9901             type: TEXT;
9902             mouse_events: 0;
9903             scale: 1;
9904             description { state: "default" 0.0;
9905                rel1 {
9906                   relative: 1.0 1.0;
9907                   to_x: "elm.padding.icon1.right";
9908                   to_y: "elm.text.1";
9909                }
9910                rel2 {
9911                   relative: 0.0 0.0;
9912                   offset: 0 0;
9913                   to_x: "elm.padding.icon2.left";
9914                   to_y: "elm.padding.bottom";
9915                }
9916                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
9917                text {
9918                   font: "SLP:style=Medium";
9919                   size: GENLIST_FONT_32_INC;
9920                   min: 0 1;
9921                   align: 0.0 0.5;
9922                   text_class: "slp_medium";
9923                }
9924             }
9925             description { state: "selected" 0.0;
9926                inherit: "default" 0.0;
9927                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
9928             }
9929             GENLIST_DESCRIPTION_FLIP_ENABLED
9930          }
9931          GENLIST_PART_FLIP
9932          GENLIST_PART_DISCLIP
9933       }
9934       programs {
9935          // signal: elm,state,%s,active
9936          //   a "check" item named %s went active
9937          // signal: elm,state,%s,passive
9938          //   a "check" item named %s went passive
9939          // default is passive
9940          program { name: "go_active";
9941             signal: "elm,state,selected";
9942             source: "elm";
9943             action: STATE_SET "selected" 0.0;
9944             target: "bg_image";
9945             target: "elm.text.1";
9946             target: "elm.text.2";
9947             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
9948          }
9949          program { name: "go_passive";
9950             signal: "elm,state,unselected";
9951             source: "elm";
9952             action: STATE_SET "default" 0.0;
9953             target: "bg_image";
9954             target: "elm.text.1";
9955             target: "elm.text.2";
9956             transition: LINEAR 0.1;
9957          }
9958          program { name: "go_disabled";
9959             signal: "elm,state,disabled";
9960             source: "elm";
9961             action: STATE_SET "disabled" 0.0;
9962             target: "disclip";
9963          }
9964          program { name: "go_enabled";
9965             signal: "elm,state,enabled";
9966             source: "elm";
9967             action: STATE_SET "default" 0.0;
9968             target: "disclip";
9969          }
9970          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
9971          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
9972       }
9973    }
9974
9975    group { name: "elm/genlist/item_compress/2text.2icon.6.tb/default";
9976       inherit: "elm/genlist/item/2text.2icon.6/default";
9977       parts {
9978          part { name: "elm.text.1";
9979             clip_to: "disclip";
9980             type: TEXTBLOCK;
9981             mouse_events: 0;
9982             scale: 1;
9983             description { state: "default" 0.0;
9984                min: 0 GENLIST_SIZE_61_INC;
9985                fixed: 0 1;
9986                rel1 {
9987                   relative: 1.0 1.0;
9988                   to_x: "elm.padding.icon1.right";
9989                   to_y: "elm.padding.top";
9990                }
9991                rel2 {
9992                   relative: 0.0 1.0;
9993                   to_x: "elm.padding.right";
9994                   to_y: "elm.padding.top";
9995                }
9996                align: 0.0 0.0;
9997                text {
9998                   style: "genlist_default_textblock_style";
9999                   size: GENLIST_FONT_44_INC;
10000                   min: 0 1;
10001                   align: 0.0 0.5;
10002                   text_class: "list_item";
10003                }
10004             }
10005             description { state: "selected" 0.0;
10006                inherit: "default" 0.0;
10007                text.style: "genlist_default_textblock_selected_style";
10008             }
10009             GENLIST_DESCRIPTION_FLIP_ENABLED
10010          }
10011          part { name: "elm.text.2";
10012             clip_to: "disclip";
10013             type: TEXTBLOCK;
10014             mouse_events: 0;
10015             scale: 1;
10016             description { state: "default" 0.0;
10017                rel1 {
10018                   relative: 1.0 1.0;
10019                   to_x: "elm.padding.icon1.right";
10020                   to_y: "elm.text.1";
10021                }
10022                rel2 {
10023                   relative: 0.0 0.0;
10024                   offset: 0 0;
10025                   to_x: "elm.padding.icon2.left";
10026                   to_y: "elm.padding.bottom";
10027                }
10028                text {
10029                   style: "genlist_default_textblock_style";
10030                   size: GENLIST_FONT_32_INC;
10031                   min: 0 1;
10032                   align: 0.0 0.5;
10033                   text_class: "slp_medium";
10034                }
10035             }
10036             description { state: "selected" 0.0;
10037                inherit: "default" 0.0;
10038                text.style: "genlist_default_textblock_selected_style";
10039             }
10040             GENLIST_DESCRIPTION_FLIP_ENABLED
10041          }
10042       }
10043    }
10044
10045 // 3.2.27
10046    group { name: "elm/genlist/item/2text.1icon.12/default";
10047       alias: "elm/genlist/item_odd/2text.1icon.12/default";
10048       alias: "elm/genlist/item_compress/2text.1icon.12/default";
10049       alias: "elm/genlist/item_compress_odd/2text.1icon.12/default";
10050       data.item: "stacking" "above";
10051       data.item: "selectraise" "on";
10052       data.item: "texts" "elm.text.1 elm.text.2";
10053       data.item: "contents" "elm.icon";
10054       data.item: "flips" "elm.flip.content";
10055       images {
10056          image: "00_list_bar_press_1x80.png" COMP;
10057       }
10058       parts {
10059          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
10060          GENLIST_PART_BG_IMAGE
10061          GENLIST_PART_BOTTOM_LINE
10062          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
10063          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
10064          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
10065          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
10066          part { name: "elm.icon";
10067             clip_to: "disclip";
10068             type: SWALLOW;
10069             scale: 1;
10070             description { state: "default" 0.0;
10071                min: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
10072                max: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
10073                fixed: 1 1;
10074                rel1 {
10075                   relative: 0.0 1.0;
10076                   to_x: "elm.padding.right";
10077                   to_y: "elm.padding.top";
10078                }
10079                rel2 {
10080                   relative: 0.0 0.0;
10081                   to_x: "elm.padding.right";
10082                   to_y: "elm.padding.bottom";
10083                }
10084                align: 1.0 0.5;
10085             }
10086             GENLIST_DESCRIPTION_FLIP_ENABLED
10087          }
10088          part { name: "elm.padding.icon.left";
10089             clip_to: "disclip";
10090             type: RECT;
10091             scale: 1;
10092             description { state: "default" 0.0;
10093                min: GENLIST_PADDING_16_INC 0;
10094                fixed: 1 0;
10095                rel1.to_x: "elm.icon";
10096                rel2 {
10097                   relative: 0.0 1.0;
10098                   to_x: "elm.icon";
10099                }
10100                align: 1.0 0.0;
10101                visible: 0;
10102             }
10103          }
10104          part { name: "elm.text.1";
10105             clip_to: "disclip";
10106             type: TEXT;
10107             mouse_events: 0;
10108             scale: 1;
10109             description { state: "default" 0.0;
10110                min: 0 GENLIST_SIZE_61_INC;
10111                fixed: 0 1;
10112                rel1 {
10113                   relative: 1.0 1.0;
10114                   to_x: "elm.padding.left";
10115                   to_y: "elm.padding.top";
10116                }
10117                rel2 {
10118                   relative: 0.0 1.0;
10119                   to_x: "elm.padding.icon.left";
10120                   to_y: "elm.padding.top";
10121                }
10122                align: 0.0 0.0;
10123                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
10124                text {
10125                   font: "SLP:style=Roman";
10126                   size: GENLIST_FONT_44_INC;
10127                   min: 0 1;
10128                   align: 0.0 0.5;
10129                   text_class: "list_item";
10130                }
10131             }
10132             description { state: "selected" 0.0;
10133                inherit: "default" 0.0;
10134                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
10135             }
10136             GENLIST_DESCRIPTION_FLIP_ENABLED
10137          }
10138          part { name: "elm.text.2";
10139             clip_to: "disclip";
10140             type: TEXT;
10141             mouse_events: 0;
10142             scale: 1;
10143             description { state: "default" 0.0;
10144                rel1 {
10145                   relative: 1.0 1.0;
10146                   to_x: "elm.padding.left";
10147                   to_y: "elm.text.1";
10148                }
10149                rel2 {
10150                   relative: 0.0 0.0;
10151                   to_x: "elm.padding.icon.left";
10152                   to_y: "elm.padding.bottom";
10153                }
10154                align: 0.0 0.0;
10155                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
10156                text {
10157                   font: "SLP:style=Medium";
10158                   size: GENLIST_FONT_32_INC;
10159                   min: 0 1;
10160                   align: 0.0 0.5;
10161                   text_class: "slp_medium";
10162                }
10163             }
10164             description { state: "selected" 0.0;
10165                inherit: "default" 0.0;
10166                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
10167             }
10168             GENLIST_DESCRIPTION_FLIP_ENABLED
10169          }
10170          GENLIST_PART_FLIP
10171          GENLIST_PART_DISCLIP
10172       }
10173       programs {
10174          // signal: elm,state,%s,active
10175          //   a "check" item named %s went active
10176          // signal: elm,state,%s,passive
10177          //   a "check" item named %s went passive
10178          // default is passive
10179          program { name: "go_active";
10180             signal: "elm,state,selected";
10181             source: "elm";
10182             action: STATE_SET "selected" 0.0;
10183             target: "bg_image";
10184             target: "elm.text.1";
10185             target: "elm.text.2";
10186             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
10187          }
10188          program { name: "go_passive";
10189             signal: "elm,state,unselected";
10190             source: "elm";
10191             action: STATE_SET "default" 0.0;
10192             target: "bg_image";
10193             target: "elm.text.1";
10194             target: "elm.text.2";
10195             transition: LINEAR 0.1;
10196          }
10197          program { name: "go_disabled";
10198             signal: "elm,state,disabled";
10199             source: "elm";
10200             action: STATE_SET "disabled" 0.0;
10201             target: "disclip";
10202          }
10203          program { name: "go_enabled";
10204             signal: "elm,state,enabled";
10205             source: "elm";
10206             action: STATE_SET "default" 0.0;
10207             target: "disclip";
10208          }
10209          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
10210          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
10211       }
10212    }
10213
10214 // ???
10215    /* NOTE: This style is a temporary style for email application. Otherwise do not use this. */
10216    group { name: "elm/genlist/item/2text.1icon.13/default";
10217       alias: "elm/genlist/item_odd/2text.1icon.13/default";
10218       alias: "elm/genlist/item_compress/2text.1icon.13/default";
10219       alias: "elm/genlist/item_compress_odd/2text.1icon.13/default";
10220       data.item: "stacking" "above";
10221       data.item: "selectraise" "on";
10222       data.item: "texts" "elm.text elm.text.msgcount";
10223       data.item: "contents" "elm.icon";
10224       data.item: "flips" "elm.flip.content";
10225       images {
10226          image: "00_list_bar_press_1x80.png" COMP;
10227       }
10228       parts {
10229          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
10230          GENLIST_PART_BG
10231          GENLIST_PART_BG_IMAGE
10232          GENLIST_PART_BOTTOM_LINE
10233          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
10234          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
10235          part { name: "elm.icon";
10236             clip_to: "disclip";
10237             type: SWALLOW;
10238             scale: 1;
10239             description { state: "default" 0.0;
10240                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
10241                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
10242                fixed: 1 1;
10243                rel1 {
10244                   relative: 1.0 0.0;
10245                   to_x: "elm.padding.left";
10246                }
10247                rel2 {
10248                   relative: 1.0 1.0;
10249                   to_x: "elm.padding.left";
10250                }
10251                align: 0.0 0.5;
10252             }
10253             GENLIST_DESCRIPTION_FLIP_ENABLED
10254          }
10255          part { name: "elm.text.msgcount";
10256             clip_to: "disclip";
10257             type: TEXT;
10258             mouse_events: 0;
10259             scale: 1;
10260             description {
10261                state: "default" 0.0;
10262                fixed: 1 1;
10263                align: 0 0;
10264                color: GENLIST_PART_EMAIL_MSGCOUNT_TEXT_COLOR_INC;
10265                rel1.to: "elm.icon";
10266                rel2.to: "elm.icon";
10267                text {
10268                   font: "SLP:style=Medium";
10269                   size: GENLIST_FONT_28_INC;
10270                   min: 0 1;
10271                   align: 0.5 0.5;
10272                   text_class: "slp_medium";
10273                }
10274                align: 0.0 0.5;
10275             }
10276          }
10277          part { name: "elm.padding.icon.right";
10278             clip_to: "disclip";
10279             type: RECT;
10280             scale: 1;
10281             description {
10282                state: "default" 0.0;
10283                min: GENLIST_SIZE_16_INC 0;
10284                fixed: 1 0;
10285                rel1 {
10286                   relative: 1.0 0.0;
10287                   to_x: "elm.icon";
10288                }
10289                rel2.to_x: "elm.icon";
10290                visible: 0;
10291             }
10292          }
10293          part { name: "elm.text";
10294             clip_to: "disclip";
10295             type: TEXT;
10296             mouse_events: 0;
10297             scale: 1;
10298             description { state: "default" 0.0;
10299                rel1 {
10300                   relative: 1.0 0.0;
10301                   to_x: "elm.padding.icon.right";
10302                }
10303                rel2 {
10304                   relative: 0.0 1.0;
10305                   to_x: "elm.padding.right";
10306                }
10307                align: 0.0 0.5;
10308                color: GENLIST_PART_FONT_UNREAD_EMAIL_COLOR_INC;
10309                text {
10310                   font: "SLP:style=Roman";
10311                   size: GENLIST_FONT_44_INC;
10312                   min: 0 1;
10313                   align: 0.0 0.5;
10314                   text_class: "list_item";
10315                }
10316             }
10317             description { state: "selected" 0.0;
10318                inherit: "default" 0.0;
10319                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
10320             }
10321             GENLIST_DESCRIPTION_FLIP_ENABLED
10322          }
10323          GENLIST_PART_FLIP
10324          GENLIST_PART_DISCLIP
10325       }
10326       programs {
10327          program { name: "go_active";
10328             signal: "elm,state,selected";
10329             source: "elm";
10330             action: STATE_SET "selected" 0.0;
10331             target: "bg_image";
10332             target: "elm.text";
10333             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
10334          }
10335          program { name: "go_passive";
10336             signal: "elm,state,unselected";
10337             source: "elm";
10338             action: STATE_SET "default" 0.0;
10339             target: "bg_image";
10340             target: "elm.text";
10341             transition: LINEAR 0.1;
10342          }
10343          program { name: "go_disabled";
10344             signal: "elm,state,disabled";
10345             source: "elm";
10346             action: STATE_SET "disabled" 0.0;
10347             target: "disclip";
10348          }
10349          program { name: "go_enabled";
10350             signal: "elm,state,enabled";
10351             source: "elm";
10352             action: STATE_SET "default" 0.0;
10353             target: "disclip";
10354          }
10355          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
10356       }
10357    }
10358
10359 // ???
10360    /* NOTE: This style is a temporary style for email application. Otherwise do not use this. */
10361    group { name: "elm/genlist/item/2text.1icon.14/default";
10362       alias: "elm/genlist/item_odd/2text.1icon.14/default";
10363       alias: "elm/genlist/item_compress/2text.1icon.14/default";
10364       alias: "elm/genlist/item_compress_odd/2text.1icon.14/default";
10365       data.item: "stacking" "above";
10366       data.item: "selectraise" "on";
10367       data.item: "texts" "elm.text elm.text.msgcount";
10368       data.item: "contents" "elm.check elm.icon";
10369       data.item: "flips" "elm.flip.content";
10370       images {
10371          image: "00_list_bar_press_1x80.png" COMP;
10372       }
10373       parts {
10374          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
10375          GENLIST_PART_BG
10376          GENLIST_PART_BG_IMAGE
10377          GENLIST_PART_BOTTOM_LINE
10378          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
10379          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
10380          part { name: "elm.check";
10381             clip_to: "disclip";
10382             type: SWALLOW;
10383             mouse_events: 1;
10384             scale: 1;
10385             description { state: "default" 0.0;
10386                max: GENLIST_SIZE_42_INC 0;
10387                fixed: 1 1;
10388                rel1 {
10389                   relative: 1.0 0.0;
10390                   to_x: "elm.padding.left";
10391                }
10392                rel2 {
10393                   relative: 1.0 1.0;
10394                   to_x: "elm.padding.left";
10395                }
10396                align: 0.0 0.5;
10397             }
10398             GENLIST_DESCRIPTION_FLIP_ENABLED
10399          }
10400
10401          part { name: "elm.padding.icon.checkbox.right";
10402             clip_to: "disclip";
10403             type: RECT;
10404             scale: 1;
10405             description { state: "default" 0.0;
10406                min: GENLIST_PADDING_16_INC 0;
10407                fixed: 1 0;
10408                rel1 {
10409                   relative: 1.0 0.0;
10410                   to_x: "elm.check";
10411                }
10412                rel2 {
10413                   relative: 1.0 1.0;
10414                   to_x:  "elm.check";
10415                }
10416                align: 1.0 0.0;
10417                visible: 0;
10418             }
10419          }
10420          part { name: "elm.icon";
10421             clip_to: "disclip";
10422             type: SWALLOW;
10423             scale: 1;
10424             description { state: "default" 0.0;
10425                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
10426                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
10427                fixed: 1 1;
10428                rel1.to_x: "elm.padding.right";
10429                rel2 {
10430                   relative: 0.0 1.0;
10431                   to_x: "elm.padding.right";
10432                }
10433                align: 1.0 0.5;
10434             }
10435             GENLIST_DESCRIPTION_FLIP_ENABLED
10436          }
10437          part { name: "elm.text.msgcount";
10438             clip_to: "disclip";
10439             type: TEXT;
10440             mouse_events: 0;
10441             scale: 1;
10442             description {
10443                state: "default" 0.0;
10444                fixed: 1 1;
10445                align: 0 0;
10446                color: GENLIST_PART_EMAIL_MSGCOUNT_TEXT_COLOR_INC;
10447                rel1.to: "elm.icon";
10448                rel2.to: "elm.icon";
10449                text {
10450                   font: "SLP:style=Medium";
10451                   size: GENLIST_FONT_28_INC;
10452                   min: 0 1;
10453                   align: 0.5 0.5;
10454                   text_class: "slp_medium";
10455                }
10456                align: 0.0 0.5;
10457             }
10458          }
10459          part { name: "elm.padding.icon.left";
10460             clip_to: "disclip";
10461             type: RECT;
10462             scale: 1;
10463             description {
10464                state: "default" 0.0;
10465                min: GENLIST_SIZE_16_INC 0;
10466                fixed: 1 0;
10467                rel1.to_x: "elm.icon";
10468                rel2 {
10469                   relative: 0.0 1.0;
10470                   to_x: "elm.icon";
10471                }
10472                align: 1.0 0.0;
10473                visible: 0;
10474             }
10475          }
10476          part { name: "elm.text";
10477             clip_to: "disclip";
10478             type: TEXTBLOCK;
10479             mouse_events: 0;
10480             scale: 1;
10481             description { state: "default" 0.0;
10482                rel1 {
10483                   relative: 1.0 0.0;
10484                   to_x: "elm.padding.icon.checkbox.right";
10485                }
10486                rel2 {
10487                   relative: 0.0 1.0;
10488                   to_x: "elm.padding.icon.left";
10489                }
10490                align: 0.0 0.5;
10491                text {
10492                   style: "genlist_email_textblock_unread_style";
10493                   min: 0 1;
10494                   max: 0 1;
10495                   align: 0.0 0.5;
10496                }
10497             }
10498             description { state: "selected" 0.0;
10499                inherit: "default" 0.0;
10500                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
10501             }
10502             GENLIST_DESCRIPTION_FLIP_ENABLED
10503          }
10504          GENLIST_PART_FLIP
10505          GENLIST_PART_DISCLIP
10506       }
10507       programs {
10508          program { name: "go_active";
10509             signal: "elm,state,selected";
10510             source: "elm";
10511             action: STATE_SET "selected" 0.0;
10512             target: "bg_image";
10513             target: "elm.text";
10514             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
10515          }
10516          program { name: "go_passive";
10517             signal: "elm,state,unselected";
10518             source: "elm";
10519             action: STATE_SET "default" 0.0;
10520             target: "bg_image";
10521             target: "elm.text";
10522             transition: LINEAR 0.1;
10523          }
10524          program { name: "go_disabled";
10525             signal: "elm,state,disabled";
10526             source: "elm";
10527             action: STATE_SET "disabled" 0.0;
10528             target: "disclip";
10529          }
10530          program { name: "go_enabled";
10531             signal: "elm,state,enabled";
10532             source: "elm";
10533             action: STATE_SET "default" 0.0;
10534             target: "disclip";
10535          }
10536          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
10537       }
10538    }
10539
10540 // 3.2.28
10541    group { name: "elm/genlist/item/2text.3icon/default";
10542       alias: "elm/genlist/item_odd/2text.3icon/default";
10543       alias: "elm/genlist/item_compress/2text.3icon/default";
10544       alias: "elm/genlist/item_compress_odd/2text.3icon/default";
10545       data.item: "stacking" "above";
10546       data.item: "selectraise" "on";
10547       data.item: "texts" "elm.text.1 elm.text.2";
10548       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
10549       data.item: "flips" "elm.flip.content";
10550       images {
10551          image: "00_list_bar_press_1x80.png" COMP;
10552       }
10553       parts {
10554          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
10555          GENLIST_PART_BG_IMAGE
10556          GENLIST_PART_BOTTOM_LINE
10557          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
10558          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
10559          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
10560          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
10561          part { name: "elm.icon.3";
10562             clip_to: "disclip";
10563             type: SWALLOW;
10564             scale: 1;
10565             description { state: "default" 0.0;
10566                min: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
10567                max: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
10568                fixed: 1 1;
10569                rel1 {
10570                   relative: 0.0 1.0;
10571                   to_x: "elm.padding.right";
10572                   to_y: "elm.padding.top";
10573                }
10574                rel2 {
10575                   relative: 0.0 1.0;
10576                   to_x: "elm.padding.right";
10577                   to_y: "elm.padding.bottom";
10578                }
10579                align: 1.0 0.5;
10580             }
10581             GENLIST_DESCRIPTION_FLIP_ENABLED
10582          }
10583          part { name: "elm.padding.icon3.left";
10584             clip_to: "disclip";
10585             type: RECT;
10586             scale: 1;
10587             description { state: "default" 0.0;
10588                min: GENLIST_PADDING_16_INC 0;
10589                fixed: 1 0;
10590                rel1.to_x: "elm.icon.3";
10591                rel2 {
10592                   relative: 0.0 1.0;
10593                   to_x: "elm.icon.3";
10594                }
10595                align: 1.0 0.0;
10596                visible: 0;
10597             }
10598          }
10599          part { name: "elm.text.2";
10600             clip_to: "disclip";
10601             type: TEXT;
10602             mouse_events: 0;
10603             scale: 1;
10604             description { state: "default" 0.0;
10605                min: 0 GENLIST_SIZE_48_INC;
10606                fixed: 1 1;
10607                rel1 {
10608                   relative: 1.0 0.0;
10609                   to_x: "elm.padding.icon2.right";
10610                   to_y: "elm.padding.bottom";
10611                }
10612                rel2 {
10613                   relative: 0.0 0.0;
10614                   to_x: "elm.padding.icon3.left";
10615                   to_y: "elm.padding.bottom";
10616                }
10617                align: 0.0 1.0;
10618                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
10619                text {
10620                   font: "SLP:style=Medium";
10621                   size: GENLIST_FONT_32_INC;
10622                   min: 0 1;
10623                   align: 0.0 0.5;
10624                   text_class: "slp_medium";
10625                }
10626             }
10627             description { state: "selected" 0.0;
10628                inherit: "default" 0.0;
10629                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
10630             }
10631             GENLIST_DESCRIPTION_FLIP_ENABLED
10632          }
10633          part { name: "elm.icon.2";
10634             clip_to: "disclip";
10635             type: SWALLOW;
10636             scale: 1;
10637             description { state: "default" 0.0;
10638                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
10639                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
10640                fixed: 1 1;
10641                rel1 {
10642                   relative: 1.0 0.0;
10643                   to_x: "elm.padding.left";
10644                   to_y: "elm.text.2";
10645                }
10646                rel2 {
10647                   relative: 1.0 0.0;
10648                   to_x: "elm.padding.left";
10649                   to_y: "elm.padding.bottom";
10650                }
10651                align: 0.0 0.5;
10652             }
10653             GENLIST_DESCRIPTION_FLIP_ENABLED
10654          }
10655          part { name: "elm.padding.icon2.right";
10656             clip_to: "disclip";
10657             type: RECT;
10658             scale: 1;
10659             description { state: "default" 0.0;
10660                min: GENLIST_PADDING_16_INC 0;
10661                fixed: 1 0;
10662                rel1 {
10663                   relative: 1.0 0.0;
10664                   to_x: "elm.icon.2";
10665                }
10666                rel2.to_x: "elm.icon.2";
10667                align: 0.0 0.0;
10668                visible: 0;
10669             }
10670          }
10671          part { name: "elm.text.1";
10672             clip_to: "disclip";
10673             type: TEXT;
10674             mouse_events: 0;
10675             scale: 1;
10676             description { state: "default" 0.0;
10677                min: 0 0;
10678                max: GENLIST_SIZE_576_INC 0;
10679                fixed: 1 0;
10680                rel1 {
10681                   relative: 1.0 1.0;
10682                   to_x: "elm.padding.left";
10683                   to_y: "elm.padding.top";
10684                }
10685                rel2 {
10686                   relative: 1.0 0.0;
10687                   to_x: "elm.padding.left";
10688                   to_y: "elm.text.2";
10689                }
10690                align: 0.0 0.5;
10691                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
10692                text {
10693                   font: "SLP:style=Roman";
10694                   size: GENLIST_FONT_44_INC;
10695                   min: 1 1;
10696                   align: 0.0 0.5;
10697                   text_class: "list_item";
10698                }
10699             }
10700             description { state: "selected" 0.0;
10701                inherit: "default" 0.0;
10702                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
10703             }
10704             GENLIST_DESCRIPTION_FLIP_ENABLED
10705          }
10706
10707          part { name: "elm.padding.icon1.left";
10708             type: RECT;
10709             scale: 1;
10710             description { state: "default" 0.0;
10711                min: GENLIST_PADDING_16_INC 0;
10712                fixed: 1 0;
10713                rel1 {
10714                   relative: 1.0 0.0;
10715                   to_x: "elm.text.1";
10716                }
10717                rel2.to_x: "elm.text.1";
10718                align: 0.0 0.0;
10719                visible: 0;
10720             }
10721          }
10722          part { name: "elm.icon.1";
10723             clip_to: "disclip";
10724             type: SWALLOW;
10725             scale: 1;
10726             description { state: "default" 0.0;
10727                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
10728                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
10729                fixed: 1 1;
10730                rel1 {
10731                   relative: 1.0 1.0;
10732                   to_x: "elm.padding.icon1.left";
10733                   to_y: "elm.padding.top";
10734                }
10735                rel2 {
10736                   relative: 1.0 0.0;
10737                   to_x: "elm.padding.icon1.left";
10738                   to_y: "elm.text.2";
10739                }
10740                align: 0.0 0.5;
10741             }
10742             GENLIST_DESCRIPTION_FLIP_ENABLED
10743          }
10744          GENLIST_PART_FLIP
10745          GENLIST_PART_DISCLIP
10746       }
10747       programs {
10748          // signal: elm,state,%s,active
10749          //   a "check" item named %s went active
10750          // signal: elm,state,%s,passive
10751          //   a "check" item named %s went passive
10752          // default is passive
10753          program { name: "go_active";
10754             signal: "elm,state,selected";
10755             source: "elm";
10756             action: STATE_SET "selected" 0.0;
10757             target: "bg_image";
10758             target: "elm.text.1";
10759             target: "elm.text.2";
10760             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
10761          }
10762          program { name: "go_passive";
10763             signal: "elm,state,unselected";
10764             source: "elm";
10765             action: STATE_SET "default" 0.0;
10766             target: "bg_image";
10767             target: "elm.text.1";
10768             target: "elm.text.2";
10769             transition: LINEAR 0.1;
10770          }
10771          program { name: "go_disabled";
10772             signal: "elm,state,disabled";
10773             source: "elm";
10774             action: STATE_SET "disabled" 0.0;
10775             target: "disclip";
10776          }
10777          program { name: "go_enabled";
10778             signal: "elm,state,enabled";
10779             source: "elm";
10780             action: STATE_SET "default" 0.0;
10781             target: "disclip";
10782          }
10783          GENLIST_PROGRAM_FLIP_2TEXT_3ICON
10784          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
10785       }
10786    }
10787
10788 // 3.2.29
10789    group { name: "elm/genlist/item/2text.1icon.5/default";
10790       alias: "elm/genlist/item_odd/2text.1icon.5/default";
10791       alias: "elm/genlist/item_compress/2text.1icon.5/default";
10792       alias: "elm/genlist/item_compress_odd/2text.1icon.5/default";
10793       data.item: "stacking" "above";
10794       data.item: "selectraise" "on";
10795       data.item: "texts" "elm.text.1 elm.text.2";
10796       data.item: "contents" "elm.icon";
10797       data.item: "flips" "elm.flip.content";
10798       images {
10799          image: "00_list_bar_press_1x80.png" COMP;
10800       }
10801       parts {
10802          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
10803          GENLIST_PART_BG_IMAGE
10804          GENLIST_PART_BOTTOM_LINE
10805          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
10806          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
10807          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
10808          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
10809          part { name: "elm.icon";
10810             clip_to: "disclip";
10811             type: SWALLOW;
10812             scale: 1;
10813             description { state: "default" 0.0;
10814                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
10815                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
10816                fixed: 1 1;
10817                rel1 {
10818                   relative: 0.0 1.0;
10819                   to_x: "elm.padding.right";
10820                   to_y: "elm.padding.top";
10821                }
10822                rel2 {
10823                   relative: 0.0 0.0;
10824                   to_x: "elm.padding.right";
10825                   to_y: "elm.padding.bottom";
10826                }
10827                align: 1.0 0.5;
10828             }
10829             GENLIST_DESCRIPTION_FLIP_ENABLED
10830          }
10831          part { name: "elm.padding.icon.left";
10832             clip_to: "disclip";
10833             type: RECT;
10834             scale: 1;
10835             description { state: "default" 0.0;
10836                min: GENLIST_PADDING_16_INC 0;
10837                fixed: 1 0;
10838                rel1.to_x: "elm.icon";
10839                rel2 {
10840                   relative: 0.0 1.0;
10841                   to_x: "elm.icon";
10842                }
10843                align: 1.0 0.0;
10844                visible: 0;
10845             }
10846          }
10847          part { name: "elm.text.1";
10848             clip_to: "disclip";
10849             type: TEXT;
10850             mouse_events: 0;
10851             scale: 1;
10852             description { state: "default" 0.0;
10853                min: 0 GENLIST_SIZE_61_INC;
10854                fixed: 0 1;
10855                rel1 {
10856                   relative: 1.0 0.0;
10857                   to_x: "elm.padding.left";
10858                   to_y: "elm.padding.bottom";
10859                }
10860                rel2 {
10861                   relative: 0.0 0.0;
10862                   to_x: "elm.padding.icon.left";
10863                   to_y: "elm.padding.bottom";
10864                }
10865                align: 0.0 1.0;
10866                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
10867                text {
10868                   font: "SLP:style=Roman";
10869                   size: GENLIST_FONT_44_INC;
10870                   min: 0 1;
10871                   align: 0.0 0.5;
10872                   text_class: "slp_roman";
10873                }
10874             }
10875             description { state: "selected" 0.0;
10876                inherit: "default" 0.0;
10877                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
10878             }
10879             GENLIST_DESCRIPTION_FLIP_ENABLED
10880          }
10881          part { name: "elm.text.2";
10882             clip_to: "disclip";
10883             type: TEXT;
10884             mouse_events: 0;
10885             scale: 1;
10886             description { state: "default" 0.0;
10887                rel1 {
10888                   relative: 1.0 1.0;
10889                   to_x: "elm.padding.left";
10890                   to_y: "elm.padding.top";
10891                }
10892                rel2 {
10893                   relative: 0.0 0.0;
10894                   to_x: "elm.padding.icon.left";
10895                   to_y: "elm.text.1";
10896                }
10897                align: 0.0 1.0;
10898                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
10899                text {
10900                   font: "SLP:style=Medium";
10901                   size: GENLIST_FONT_32_INC;
10902                   min: 0 1;
10903                   align: 0.0 0.5;
10904                   text_class: "list_item";
10905                }
10906             }
10907             description { state: "selected" 0.0;
10908                inherit: "default" 0.0;
10909                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
10910             }
10911             GENLIST_DESCRIPTION_FLIP_ENABLED
10912          }
10913          GENLIST_PART_FLIP
10914          GENLIST_PART_DISCLIP
10915       }
10916       programs {
10917          // signal: elm,state,%s,active
10918          //   a "check" item named %s went active
10919          // signal: elm,state,%s,passive
10920          //   a "check" item named %s went passive
10921          // default is passive
10922          program { name: "go_active";
10923             signal: "elm,state,selected";
10924             source: "elm";
10925             action: STATE_SET "selected" 0.0;
10926             target: "bg_image";
10927             target: "elm.text.1";
10928             target: "elm.text.2";
10929             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
10930          }
10931          program { name: "go_passive";
10932             signal: "elm,state,unselected";
10933             source: "elm";
10934             action: STATE_SET "default" 0.0;
10935             target: "bg_image";
10936             target: "elm.text.1";
10937             target: "elm.text.2";
10938             transition: LINEAR 0.1;
10939          }
10940          program { name: "go_disabled";
10941             signal: "elm,state,disabled";
10942             source: "elm";
10943             action: STATE_SET "disabled" 0.0;
10944             target: "disclip";
10945          }
10946          program { name: "go_enabled";
10947             signal: "elm,state,enabled";
10948             source: "elm";
10949             action: STATE_SET "default" 0.0;
10950             target: "disclip";
10951          }
10952          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
10953          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
10954       }
10955    }
10956
10957 // 3.2.30
10958    group { name: "elm/genlist/item/1text.3icon.3/default";
10959       alias: "elm/genlist/item_odd/1text.3icon.3/default";
10960       alias: "elm/genlist/item_compress/1text.3icon.3/default";
10961       alias: "elm/genlist/item_compress_odd/1text.3icon.3/default";
10962       data.item: "stacking" "above";
10963       data.item: "selectraise" "on";
10964       data.item: "texts" "elm.text.1";
10965       data.item: "contents" "elm.icon.1 elm.icon.2 elm.swallow.progress";
10966       data.item: "flips" "elm.flip.content";
10967       images {
10968          image: "00_list_bar_press_1x80.png" COMP;
10969       }
10970       parts {
10971          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
10972          GENLIST_PART_BG_IMAGE
10973          GENLIST_PART_BOTTOM_LINE
10974          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
10975          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
10976          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
10977          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
10978          part { name: "elm.icon.1";
10979             clip_to: "disclip";
10980             type: SWALLOW;
10981             scale: 1;
10982             description { state: "default" 0.0;
10983                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
10984                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
10985                fixed: 1 1;
10986                rel1 {
10987                   relative: 1.0 1.0;
10988                   to_x: "elm.padding.left";
10989                   to_y: "elm.padding.top";
10990                }
10991                rel2 {
10992                   relative: 1.0 0.0;
10993                   to_x: "elm.padding.left";
10994                   to_y: "elm.padding.bottom";
10995                }
10996                align: 0.0 0.5;
10997             }
10998             GENLIST_DESCRIPTION_FLIP_ENABLED
10999          }
11000          part { name: "elm.padding.icon1.right";
11001             clip_to: "disclip";
11002             type: RECT;
11003             scale: 1;
11004             description { state: "default" 0.0;
11005                min: GENLIST_PADDING_16_INC 0;
11006                fixed: 1 0;
11007                rel1 {
11008                   relative: 1.0 0.0;
11009                   to_x: "elm.icon.1";
11010                }
11011                rel2.to_x: "elm.icon.1";
11012                align: 0.0 0.0;
11013                visible: 0;
11014             }
11015          }
11016          part { name: "elm.icon.2";
11017             clip_to: "disclip";
11018             type: SWALLOW;
11019             scale: 1;
11020             description { state: "default" 0.0;
11021                fixed: 1 1;
11022                rel1 {
11023                   relative: 0.0 1.0;
11024                   to_x: "elm.padding.right";
11025                   to_y: "elm.padding.top";
11026                }
11027                rel2 {
11028                   relative: 0.0 0.0;
11029                   to_x: "elm.padding.right";
11030                   to_y: "elm.padding.bottom";
11031                }
11032                align: 1.0 0.5;
11033             }
11034             GENLIST_DESCRIPTION_FLIP_ENABLED
11035          }
11036          part { name: "elm.padding.icon2.left";
11037             clip_to: "disclip";
11038             type: RECT;
11039             scale: 1;
11040             description { state: "default" 0.0;
11041                min: GENLIST_PADDING_16_INC 0;
11042                fixed: 1 0;
11043                rel1.to_x: "elm.icon.2";
11044                rel2 {
11045                   relative: 0.0 1.0;
11046                   to_x: "elm.icon.2";
11047                }
11048                align: 1.0 0.0;
11049                visible: 0;
11050             }
11051          }
11052          part { name: "elm.text.1";
11053             clip_to: "disclip";
11054             type: TEXT;
11055             mouse_events: 0;
11056             scale: 1;
11057             description { state: "default" 0.0;
11058                min: 0 GENLIST_SIZE_61_INC;
11059                fixed: 0 1;
11060                rel1 {
11061                   relative: 1.0 1.0;
11062                   to_x: "elm.padding.icon1.right";
11063                   to_y: "elm.padding.top";
11064                }
11065                rel2 {
11066                   relative: 0.0 1.0;
11067                   to_x: "elm.padding.icon2.left";
11068                   to_y: "elm.padding.top";
11069                }
11070                align: 0 0;
11071                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
11072                text {
11073                   font: "SLP:style=Roman";
11074                   size: GENLIST_FONT_44_INC;
11075                   min: 0 1;
11076                   align: 0.0 0.5;
11077                   text_class: "list_item";
11078                }
11079             }
11080             description { state: "selected" 0.0;
11081                inherit: "default" 0.0;
11082                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
11083             }
11084             GENLIST_DESCRIPTION_FLIP_ENABLED
11085          }
11086          part { name: "elm.swallow.progress";
11087             clip_to: "disclip";
11088             type: SWALLOW;
11089             scale: 1;
11090             description { state: "default" 0.0;
11091                fixed: 0 1;
11092                rel1 {
11093                   relative: 1.0 1.0;
11094                   to_x: "elm.padding.icon1.right";
11095                   to_y: "elm.text.1";
11096                }
11097                rel2 {
11098                   relative: 0.0 1.0;
11099                   to_x: "elm.padding.icon2.left";
11100                   to_y: "elm.text.1";
11101                }
11102                align: 0.5 0.0;
11103             }
11104             GENLIST_DESCRIPTION_FLIP_ENABLED
11105          }
11106          GENLIST_PART_FLIP
11107          GENLIST_PART_DISCLIP
11108       }
11109       programs {
11110          // signal: elm,state,%s,active
11111          //   a "check" item named %s went active
11112          // signal: elm,state,%s,passive
11113          //   a "check" item named %s went passive
11114          // default is passive
11115          program { name: "go_active";
11116             signal: "elm,state,selected";
11117             source: "elm";
11118             action: STATE_SET "selected" 0.0;
11119             target: "bg_image";
11120             target: "elm.text.1";
11121             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
11122          }
11123          program { name: "go_passive";
11124             signal: "elm,state,unselected";
11125             source: "elm";
11126             action: STATE_SET "default" 0.0;
11127             target: "bg_image";
11128             target: "elm.text.1";
11129             transition: LINEAR 0.1;
11130          }
11131          program { name: "go_disabled";
11132             signal: "elm,state,disabled";
11133             source: "elm";
11134             action: STATE_SET "disabled" 0.0;
11135             target: "disclip";
11136          }
11137          program { name: "go_enabled";
11138             signal: "elm,state,enabled";
11139             source: "elm";
11140             action: STATE_SET "default" 0.0;
11141             target: "disclip";
11142          }
11143          program { name: "flip_enabled";
11144             signal: "elm,state,flip,enabled";
11145             source: "elm";
11146             action: STATE_SET "flip_enabled" 0.0;
11147             target: "elm.text.1";
11148             target: "elm.icon.1";
11149             target: "elm.icon.2";
11150             target: "elm.swallow.progress";
11151             target: "elm.flip.content";
11152          }
11153          program { name: "flip_disabled";
11154             signal: "elm,state,flip,disabled";
11155             source: "elm";
11156             action: STATE_SET "default" 0.0;
11157             target: "elm.text.1";
11158             target: "elm.icon.1";
11159             target: "elm.icon.2";
11160             target: "elm.swallow.progress";
11161             target: "elm.flip.content";
11162          }
11163          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
11164       }
11165    }
11166
11167 // 3.2.30
11168    group { name: "elm/genlist/item/3text.3icon/default";
11169       alias: "elm/genlist/item_odd/3text.3icon/default";
11170       alias: "elm/genlist/item_compress/3text.3icon/default";
11171       alias: "elm/genlist/item_compress_odd/3text.3icon/default";
11172       data.item: "stacking" "above";
11173       data.item: "selectraise" "on";
11174       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
11175       data.item: "contents" "elm.icon.1 elm.icon.2 elm.swallow.progress";
11176       data.item: "flips" "elm.flip.content";
11177       images {
11178          image: "00_list_bar_press_1x80.png" COMP;
11179       }
11180       parts {
11181          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
11182          GENLIST_PART_BG_IMAGE
11183          GENLIST_PART_BOTTOM_LINE
11184          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
11185          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
11186          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
11187          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
11188          part { name: "elm.icon.1";
11189             clip_to: "disclip";
11190             type: SWALLOW;
11191             scale: 1;
11192             description { state: "default" 0.0;
11193                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
11194                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
11195                fixed: 1 1;
11196                rel1 {
11197                   relative: 1.0 1.0;
11198                   to_x: "elm.padding.left";
11199                   to_y: "elm.padding.top";
11200                }
11201                rel2 {
11202                   relative: 1.0 0.0;
11203                   to_x: "elm.padding.left";
11204                   to_y: "elm.padding.bottom";
11205                }
11206                align: 0.0 0.5;
11207             }
11208             GENLIST_DESCRIPTION_FLIP_ENABLED
11209          }
11210          part { name: "elm.padding.icon1.right";
11211             clip_to: "disclip";
11212             type: RECT;
11213             scale: 1;
11214             description { state: "default" 0.0;
11215                min: GENLIST_PADDING_16_INC 0;
11216                fixed: 1 0;
11217                rel1 {
11218                   relative: 1.0 0.0;
11219                   to_x: "elm.icon.1";
11220                }
11221                rel2.to_x: "elm.icon.1";
11222                align: 0.0 0.0;
11223                visible: 0;
11224             }
11225          }
11226          part { name: "elm.icon.2";
11227             clip_to: "disclip";
11228             type: SWALLOW;
11229             scale: 1;
11230             description { state: "default" 0.0;
11231                fixed: 1 1;
11232                rel1 {
11233                   relative: 0.0 1.0;
11234                   to_x: "elm.padding.right";
11235                   to_y: "elm.padding.top";
11236                }
11237                rel2 {
11238                   relative: 0.0 0.0;
11239                   to_x: "elm.padding.right";
11240                   to_y: "elm.padding.bottom";
11241                }
11242                align: 1.0 0.5;
11243             }
11244             GENLIST_DESCRIPTION_FLIP_ENABLED
11245          }
11246          part { name: "elm.padding.icon2.left";
11247             clip_to: "disclip";
11248             type: RECT;
11249             scale: 1;
11250             description { state: "default" 0.0;
11251                min: GENLIST_PADDING_16_INC 0;
11252                fixed: 1 0;
11253                rel1.to_x: "elm.icon.2";
11254                rel2 {
11255                   relative: 0.0 1.0;
11256                   to_x: "elm.icon.2";
11257                }
11258                align: 1.0 0.0;
11259                visible: 0;
11260             }
11261          }
11262          part { name: "elm.text.1";
11263             clip_to: "disclip";
11264             type: TEXT;
11265             mouse_events: 0;
11266             scale: 1;
11267             description { state: "default" 0.0;
11268                min: 0 GENLIST_SIZE_61_INC;
11269                fixed: 0 1;
11270                rel1 {
11271                   relative: 1.0 0.0;
11272                   to_x: "elm.padding.icon1.right";
11273                   to_y: "elm.padding.top";
11274                }
11275                rel2 {
11276                   relative: 0.0 0.0;
11277                   to_x: "elm.padding.icon2.left";
11278                   to_y: "elm.padding.top";
11279                }
11280                align: 0 0;
11281                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
11282                text {
11283                   font: "SLP:style=Roman";
11284                   size: GENLIST_FONT_44_INC;
11285                   min: 0 1;
11286                   align: 0.0 0.5;
11287                   text_class: "list_item";
11288                }
11289             }
11290             description { state: "selected" 0.0;
11291                inherit: "default" 0.0;
11292                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
11293             }
11294             GENLIST_DESCRIPTION_FLIP_ENABLED
11295          }
11296          part { name: "elm.swallow.progress";
11297             clip_to: "disclip";
11298             type: SWALLOW;
11299             scale: 1;
11300             description { state: "default" 0.0;
11301                fixed: 0 1;
11302                rel1 {
11303                   relative: 1.0 1.0;
11304                   to_x: "elm.padding.icon1.right";
11305                   to_y: "elm.text.1";
11306                }
11307                rel2 {
11308                   relative: 0.0 0.0;
11309                   to_x: "elm.padding.icon2.left";
11310                   to_y: "elm.text.2";
11311                }
11312                align: 0.5 0.5;
11313             }
11314             GENLIST_DESCRIPTION_FLIP_ENABLED
11315          }
11316          part { name: "elm.text.2";
11317             clip_to: "disclip";
11318             type: TEXT;
11319             mouse_events: 0;
11320             scale: 1;
11321             description { state: "default" 0.0;
11322                min: 0 GENLIST_SIZE_48_INC;
11323                fixed: 0 1;
11324                rel1 {
11325                   relative: 1.0 1.0;
11326                   to_x: "elm.padding.icon1.right";
11327                   to_y: "elm.padding.bottom";
11328                }
11329                rel2 {
11330                   relative: 0.0 1.0;
11331                   to_x: "elm.padding.icon2.left";
11332                   to_y: "elm.padding.bottom";
11333                }
11334                align: 0 1;
11335                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
11336                text {
11337                   font: "SLP:style=Roman";
11338                   size: GENLIST_FONT_32_INC;
11339                   min: 0 1;
11340                   align: 0.0 0.5;
11341                   text_class: "slp_roman";
11342                }
11343             }
11344             description { state: "selected" 0.0;
11345                inherit: "default" 0.0;
11346                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
11347             }
11348             GENLIST_DESCRIPTION_FLIP_ENABLED
11349          }
11350          part { name: "elm.text.3";
11351             clip_to: "disclip";
11352             type: TEXT;
11353             mouse_events: 0;
11354             scale: 1;
11355             description { state: "default" 0.0;
11356                min: 0 GENLIST_SIZE_48_INC;
11357                fixed: 0 1;
11358                rel1 {
11359                   relative: 1.0 1.0;
11360                   to_x: "elm.padding.icon1.right";
11361                   to_y: "elm.padding.bottom";
11362                }
11363                rel2 {
11364                   relative: 0.0 1.0;
11365                   to_x: "elm.padding.icon2.left";
11366                   to_y: "elm.padding.bottom";
11367                }
11368                align: 1 1;
11369                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
11370                text {
11371                   font: "SLP:style=Roman";
11372                   size: GENLIST_FONT_32_INC;
11373                   min: 0 1;
11374                   align: 1.0 0.5;
11375                   text_class: "slp_roman";
11376                }
11377             }
11378             description { state: "selected" 0.0;
11379                inherit: "default" 0.0;
11380                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
11381             }
11382             GENLIST_DESCRIPTION_FLIP_ENABLED
11383          }
11384          GENLIST_PART_FLIP
11385          GENLIST_PART_DISCLIP
11386       }
11387       programs {
11388          // signal: elm,state,%s,active
11389          //   a "check" item named %s went active
11390          // signal: elm,state,%s,passive
11391          //   a "check" item named %s went passive
11392          // default is passive
11393          program { name: "go_active";
11394             signal: "elm,state,selected";
11395             source: "elm";
11396             action: STATE_SET "selected" 0.0;
11397             target: "bg_image";
11398             target: "elm.text.1";
11399             target: "elm.text.2";
11400             target: "elm.text.3";
11401             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
11402          }
11403          program { name: "go_passive";
11404             signal: "elm,state,unselected";
11405             source: "elm";
11406             action: STATE_SET "default" 0.0;
11407             target: "bg_image";
11408             target: "elm.text.1";
11409             target: "elm.text.2";
11410             target: "elm.text.3";
11411             transition: LINEAR 0.1;
11412          }
11413          program { name: "go_disabled";
11414             signal: "elm,state,disabled";
11415             source: "elm";
11416             action: STATE_SET "disabled" 0.0;
11417             target: "disclip";
11418          }
11419          program { name: "go_enabled";
11420             signal: "elm,state,enabled";
11421             source: "elm";
11422             action: STATE_SET "default" 0.0;
11423             target: "disclip";
11424          }
11425          program { name: "flip_enabled";
11426             signal: "elm,state,flip,enabled";
11427             source: "elm";
11428             action: STATE_SET "flip_enabled" 0.0;
11429             target: "elm.text.1";
11430             target: "elm.text.2";
11431             target: "elm.text.3";
11432             target: "elm.icon.1";
11433             target: "elm.icon.2";
11434             target: "elm.swallow.progress";
11435             target: "elm.flip.content";
11436          }
11437          program { name: "flip_disabled";
11438             signal: "elm,state,flip,disabled";
11439             source: "elm";
11440             action: STATE_SET "default" 0.0;
11441             target: "elm.text.1";
11442             target: "elm.text.2";
11443             target: "elm.text.3";
11444             target: "elm.icon.1";
11445             target: "elm.icon.2";
11446             target: "elm.swallow.progress";
11447             target: "elm.flip.content";
11448          }
11449          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
11450       }
11451    }
11452
11453 // 3.2.31
11454    group { name: "elm/genlist/item/2text.2icon.8/default";
11455       alias: "elm/genlist/item_odd/2text.2icon.8/default";
11456       alias: "elm/genlist/item_compress/2text.2icon.8/default";
11457       alias: "elm/genlist/item_compress_odd/2text.2icon.8/default";
11458       data.item: "stacking" "above";
11459       data.item: "selectraise" "on";
11460       data.item: "texts" "elm.text.1 elm.text.2";
11461       data.item: "contents" "elm.icon.1 elm.icon.2";
11462       data.item: "flips" "elm.flip.content";
11463       images {
11464          image: "00_list_bar_press_1x80.png" COMP;
11465       }
11466       parts {
11467          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
11468          GENLIST_PART_BG_IMAGE
11469          GENLIST_PART_BOTTOM_LINE
11470          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
11471          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
11472          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
11473          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
11474          part { name: "elm.icon.1";
11475             clip_to: "disclip";
11476             type: SWALLOW;
11477             scale: 1;
11478             description { state: "default" 0.0;
11479                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
11480                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
11481                fixed: 1 1;
11482                rel1 {
11483                   relative: 1.0 1.0;
11484                   to_x: "elm.padding.left";
11485                   to_y: "elm.padding.top";
11486                }
11487                rel2 {
11488                   relative: 1.0 0.0;
11489                   to_x: "elm.padding.left";
11490                   to_y: "elm.padding.bottom";
11491                }
11492                align: 0.0 0.5;
11493             }
11494             GENLIST_DESCRIPTION_FLIP_ENABLED
11495          }
11496          part { name: "elm.padding.icon1.right";
11497             clip_to: "disclip";
11498             type: RECT;
11499             scale: 1;
11500             description { state: "default" 0.0;
11501                min: GENLIST_PADDING_16_INC 0;
11502                fixed: 1 0;
11503                rel1 {
11504                   relative: 1.0 0.0;
11505                   to_x: "elm.icon.1";
11506                }
11507                rel2.to_x: "elm.icon.1";
11508                align: 0.0 0.0;
11509                visible: 0;
11510             }
11511          }
11512          part { name: "elm.icon.2";
11513             clip_to: "disclip";
11514             type: SWALLOW;
11515             scale: 1;
11516             description { state: "default" 0.0;
11517                fixed: 1 1;
11518                rel1 {
11519                   relative: 0.0 1.0;
11520                   to_x: "elm.padding.right";
11521                   to_y: "elm.padding.top";
11522                }
11523                rel2 {
11524                   relative: 0.0 0.0;
11525                   to_x: "elm.padding.right";
11526                   to_y: "elm.padding.bottom";
11527                }
11528                align: 1.0 0.5;
11529             }
11530             GENLIST_DESCRIPTION_FLIP_ENABLED
11531          }
11532          part { name: "elm.padding.icon2.left";
11533             clip_to: "disclip";
11534             type: RECT;
11535             scale: 1;
11536             description { state: "default" 0.0;
11537                min: GENLIST_PADDING_16_INC 0;
11538                fixed: 1 0;
11539                rel1.to_x: "elm.icon.2";
11540                rel2 {
11541                   relative: 0.0 1.0;
11542                   to_x: "elm.icon.2";
11543                }
11544                align: 1.0 0.0;
11545                visible: 0;
11546             }
11547          }
11548          part { name: "elm.text.1";
11549             clip_to: "disclip";
11550             type: TEXT;
11551             mouse_events: 0;
11552             scale: 1;
11553             description { state: "default" 0.0;
11554                min: 0 GENLIST_SIZE_61_INC;
11555                fixed: 0 1;
11556                rel1 {
11557                   relative: 1.0 1.0;
11558                   to_x: "elm.padding.icon1.right";
11559                   to_y: "elm.padding.top";
11560                }
11561                rel2 {
11562                   relative: 0.0 1.0;
11563                   to_x: "elm.padding.icon2.left";
11564                   to_y: "elm.padding.top";
11565                }
11566                align: 0.0 0.0;
11567                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
11568                text {
11569                   font: "SLP:style=Roman";
11570                   size: GENLIST_FONT_44_INC;
11571                   min: 0 1;
11572                   align: 0.0 0.5;
11573                   text_class: "list_item";
11574                }
11575             }
11576             description { state: "selected" 0.0;
11577                inherit: "default" 0.0;
11578                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
11579             }
11580             GENLIST_DESCRIPTION_FLIP_ENABLED
11581          }
11582          part { name: "elm.text.2";
11583             clip_to: "disclip";
11584             type: TEXT;
11585             mouse_events: 0;
11586             scale: 1;
11587             description { state: "default" 0.0;
11588                rel1 {
11589                   relative: 1.0 1.0;
11590                   to_x: "elm.padding.icon1.right";
11591                   to_y: "elm.text.1";
11592                }
11593                rel2 {
11594                   relative: 0.0 0.0;
11595                   to_x: "elm.padding.icon2.left";
11596                   to_y: "elm.padding.bottom";
11597                }
11598                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
11599                text {
11600                   font: "SLP:style=Medium";
11601                   size: GENLIST_FONT_32_INC;
11602                   min: 0 1;
11603                   align: 0.0 0.5;
11604                   text_class: "slp_medium";
11605                }
11606             }
11607             description { state: "selected" 0.0;
11608                inherit: "default" 0.0;
11609                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
11610             }
11611             GENLIST_DESCRIPTION_FLIP_ENABLED
11612          }
11613          GENLIST_PART_FLIP
11614          GENLIST_PART_DISCLIP
11615       }
11616       programs {
11617          // signal: elm,state,%s,active
11618          //   a "check" item named %s went active
11619          // signal: elm,state,%s,passive
11620          //   a "check" item named %s went passive
11621          // default is passive
11622          program { name: "go_active";
11623             signal: "elm,state,selected";
11624             source: "elm";
11625             action: STATE_SET "selected" 0.0;
11626             target: "bg_image";
11627             target: "elm.text.1";
11628             target: "elm.text.2";
11629             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
11630          }
11631          program { name: "go_passive";
11632             signal: "elm,state,unselected";
11633             source: "elm";
11634             action: STATE_SET "default" 0.0;
11635             target: "bg_image";
11636             target: "elm.text.1";
11637             target: "elm.text.2";
11638             transition: LINEAR 0.1;
11639          }
11640          program { name: "go_disabled";
11641             signal: "elm,state,disabled";
11642             source: "elm";
11643             action: STATE_SET "disabled" 0.0;
11644             target: "disclip";
11645          }
11646          program { name: "go_enabled";
11647             signal: "elm,state,enabled";
11648             source: "elm";
11649             action: STATE_SET "default" 0.0;
11650             target: "disclip";
11651          }
11652          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
11653          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
11654       }
11655    }
11656
11657    group { name: "elm/genlist/item_compress/2text.2icon.8.tb/default";
11658       inherit: "elm/genlist/item/2text.2icon.8/default";
11659       parts {
11660          part { name: "elm.text.1";
11661             clip_to: "disclip";
11662             type: TEXTBLOCK;
11663             mouse_events: 0;
11664             scale: 1;
11665             description { state: "default" 0.0;
11666                min: 0 GENLIST_SIZE_61_INC;
11667                fixed: 0 1;
11668                rel1 {
11669                   relative: 1.0 1.0;
11670                   to_x: "elm.padding.icon1.right";
11671                   to_y: "elm.padding.top";
11672                }
11673                rel2 {
11674                   relative: 0.0 1.0;
11675                   to_x: "elm.padding.icon2.left";
11676                   to_y: "elm.padding.top";
11677                }
11678                align: 0.0 0.0;
11679                text {
11680                   style: "genlist_default_textblock_style";
11681                   size: GENLIST_FONT_44_INC;
11682                   min: 0 1;
11683                   align: 0.0 0.5;
11684                   text_class: "slp_roman";
11685                }
11686             }
11687             description { state: "selected" 0.0;
11688                inherit: "default" 0.0;
11689                text.style: "genlist_default_textblock_selected_style";
11690             }
11691             GENLIST_DESCRIPTION_FLIP_ENABLED
11692          }
11693       }
11694    }
11695
11696 // 3.2.33
11697    group { name: "elm/genlist/item/1text.2icon.5/default";
11698       alias: "elm/genlist/item_odd/1text.2icon.5/default";
11699       alias: "elm/genlist/item_compress/1text.2icon.5/default";
11700       alias: "elm/genlist/item_compress_odd/1text.2icon.5/default";
11701       data.item: "stacking" "above";
11702       data.item: "selectraise" "on";
11703       data.item: "texts" "elm.text.1";
11704       data.item: "contents" "elm.icon.1 elm.swallow.progress";
11705       data.item: "flips" "elm.flip.content";
11706       images {
11707          image: "00_list_bar_press_1x80.png" COMP;
11708       }
11709       parts {
11710          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
11711          GENLIST_PART_BG_IMAGE
11712          GENLIST_PART_BOTTOM_LINE
11713          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
11714          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
11715          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
11716          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
11717          part { name: "elm.icon.1";
11718             clip_to: "disclip";
11719             type: SWALLOW;
11720             scale: 1;
11721             description { state: "default" 0.0;
11722                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
11723                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
11724                fixed: 1 1;
11725                rel1 {
11726                   relative: 1.0 1.0;
11727                   to_x: "elm.padding.left";
11728                   to_y: "elm.padding.top";
11729                }
11730                rel2 {
11731                   relative: 1.0 0.0;
11732                   to_x: "elm.padding.left";
11733                   to_y: "elm.padding.bottom";
11734                }
11735                align: 0.0 0.5;
11736             }
11737             GENLIST_DESCRIPTION_FLIP_ENABLED
11738          }
11739          part { name: "elm.padding.icon1.right";
11740             clip_to: "disclip";
11741             type: RECT;
11742             scale: 1;
11743             description { state: "default" 0.0;
11744                min: GENLIST_PADDING_16_INC 0;
11745                fixed: 1 0;
11746                rel1 {
11747                   relative: 1.0 0.0;
11748                   to_x: "elm.icon.1";
11749                }
11750                rel2.to_x: "elm.icon.1";
11751                align: 0.0 0.0;
11752                visible: 0;
11753             }
11754          }
11755          part { name: "elm.text.1";
11756             clip_to: "disclip";
11757             type: TEXT;
11758             mouse_events: 0;
11759             scale: 1;
11760             description { state: "default" 0.0;
11761                min: 0 GENLIST_SIZE_61_INC;
11762                fixed: 0 1;
11763                rel1 {
11764                   relative: 1.0 1.0;
11765                   to_x: "elm.padding.icon1.right";
11766                   to_y: "elm.padding.top";
11767                }
11768                rel2 {
11769                   relative: 0.0 1.0;
11770                   to_x: "elm.padding.right";
11771                   to_y: "elm.padding.top";
11772                }
11773                align: 0 0;
11774                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
11775                text {
11776                   font: "SLP:style=Roman";
11777                   size: GENLIST_FONT_44_INC;
11778                   min: 0 1;
11779                   align: 0.0 0.5;
11780                   text_class: "list_item";
11781                }
11782             }
11783             description { state: "selected" 0.0;
11784                inherit: "default" 0.0;
11785                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
11786             }
11787             GENLIST_DESCRIPTION_FLIP_ENABLED
11788          }
11789          part { name: "elm.swallow.progress";
11790             clip_to: "disclip";
11791             type: SWALLOW;
11792             scale: 1;
11793             description { state: "default" 0.0;
11794                fixed: 0 1;
11795                rel1 {
11796                   relative: 1.0 1.0;
11797                   to_x: "elm.padding.icon1.right";
11798                   to_y: "elm.text.1";
11799                }
11800                rel2 {
11801                   relative: 0.0 1.0;
11802                   to_x: "elm.padding.right";
11803                   to_y: "elm.text.1";
11804                }
11805                align: 0.5 0.0;
11806             }
11807             GENLIST_DESCRIPTION_FLIP_ENABLED
11808          }
11809          GENLIST_PART_FLIP
11810          GENLIST_PART_DISCLIP
11811       }
11812       programs {
11813          // signal: elm,state,%s,active
11814          //   a "check" item named %s went active
11815          // signal: elm,state,%s,passive
11816          //   a "check" item named %s went passive
11817          // default is passive
11818          program { name: "go_active";
11819             signal: "elm,state,selected";
11820             source: "elm";
11821             action: STATE_SET "selected" 0.0;
11822             target: "bg_image";
11823             target: "elm.text.1";
11824             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
11825          }
11826          program { name: "go_passive";
11827             signal: "elm,state,unselected";
11828             source: "elm";
11829             action: STATE_SET "default" 0.0;
11830             target: "bg_image";
11831             target: "elm.text.1";
11832             transition: LINEAR 0.1;
11833          }
11834          program { name: "go_disabled";
11835             signal: "elm,state,disabled";
11836             source: "elm";
11837             action: STATE_SET "disabled" 0.0;
11838             target: "disclip";
11839          }
11840          program { name: "go_enabled";
11841             signal: "elm,state,enabled";
11842             source: "elm";
11843             action: STATE_SET "default" 0.0;
11844             target: "disclip";
11845          }
11846          program { name: "flip_enabled";
11847             signal: "elm,state,flip,enabled";
11848             source: "elm";
11849             action: STATE_SET "flip_enabled" 0.0;
11850             target: "elm.text.1";
11851             target: "elm.icon.1";
11852             target: "elm.swallow.progress";
11853             target: "elm.flip.content";
11854          }
11855          program { name: "flip_disabled";
11856             signal: "elm,state,flip,disabled";
11857             source: "elm";
11858             action: STATE_SET "default" 0.0;
11859             target: "elm.text.1";
11860             target: "elm.icon.1";
11861             target: "elm.swallow.progress";
11862             target: "elm.flip.content";
11863          }
11864          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
11865       }
11866    }
11867
11868 // 3.2.33
11869    group { name: "elm/genlist/item/2text.3icon.4/default";
11870       alias: "elm/genlist/item_odd/2text.3icon.4/default";
11871       alias: "elm/genlist/item_compress/2text.3icon.4/default";
11872       alias: "elm/genlist/item_compress_odd/2text.3icon.4/default";
11873       data.item: "stacking" "above";
11874       data.item: "selectraise" "on";
11875       data.item: "texts" "elm.text.1 elm.text.2";
11876       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
11877       data.item: "flips" "elm.flip.content";
11878       images {
11879          image: "00_list_bar_press_1x80.png" COMP;
11880       }
11881       parts {
11882          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
11883          GENLIST_PART_BG_IMAGE
11884          GENLIST_PART_BOTTOM_LINE
11885          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
11886          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
11887          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
11888          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
11889          part { name: "elm.icon.1";
11890             clip_to: "disclip";
11891             type: SWALLOW;
11892             scale: 1;
11893             description { state: "default" 0.0;
11894                min: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
11895                max: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
11896                fixed: 1 1;
11897                rel1 {
11898                   relative: 1.0 1.0;
11899                   to_x: "elm.padding.left";
11900                   to_y: "elm.padding.top";
11901                }
11902                rel2 {
11903                   relative: 1.0 0.0;
11904                   to_x: "elm.padding.left";
11905                   to_y: "elm.padding.bottom";
11906                }
11907                align: 0.0 0.5;
11908             }
11909             GENLIST_DESCRIPTION_FLIP_ENABLED
11910          }
11911          part { name: "elm.padding.icon1.right";
11912             clip_to: "disclip";
11913             type: RECT;
11914             scale: 1;
11915             description { state: "default" 0.0;
11916                min: GENLIST_SIZE_16_INC 0;
11917                fixed: 1 0;
11918                rel1 {
11919                   relative: 1.0 0.0;
11920                   to_x: "elm.icon.1";
11921                }
11922                rel2.to_x: "elm.icon.1";
11923                align: 0.0 0.0;
11924                visible: 0;
11925             }
11926          }
11927          part { name: "elm.icon.2";
11928             clip_to: "disclip";
11929             type: SWALLOW;
11930             scale: 1;
11931             description { state: "default" 0.0;
11932                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
11933                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
11934                fixed: 1 1;
11935                rel1 {
11936                   relative: 1.0 1.0;
11937                   to_x: "elm.padding.icon1.right";
11938                   to_y: "elm.padding.top";
11939                }
11940                rel2 {
11941                   relative: 1.0 0.0;
11942                   to_x: "elm.padding.icon1.right";
11943                   to_y: "elm.padding.bottom";
11944                }
11945                align: 0.0 0.5;
11946             }
11947             GENLIST_DESCRIPTION_FLIP_ENABLED
11948          }
11949          part { name: "elm.padding.icon2.right";
11950             clip_to: "disclip";
11951             type: RECT;
11952             scale: 1;
11953             description { state: "default" 0.0;
11954                min: GENLIST_SIZE_16_INC 0;
11955                fixed: 1 0;
11956                rel1 {
11957                   relative: 1.0 0.0;
11958                   to_x: "elm.icon.2";
11959                }
11960                rel2.to_x: "elm.icon.2";
11961                align: 0.0 0.0;
11962                visible: 0;
11963             }
11964          }
11965          part { name: "elm.icon.3";
11966             clip_to: "disclip";
11967             type: SWALLOW;
11968             scale: 1;
11969             description { state: "default" 0.0;
11970                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
11971                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
11972                fixed: 1 1;
11973                rel1 {
11974                   relative: 0.0 1.0;
11975                   to_x: "elm.padding.right";
11976                   to_y: "elm.padding.top";
11977                }
11978                rel2 {
11979                   relative: 0.0 0.0;
11980                   to_x: "elm.padding.right";
11981                   to_y: "elm.padding.bottom";
11982                }
11983                align: 1.0 0.5;
11984             }
11985             GENLIST_DESCRIPTION_FLIP_ENABLED
11986          }
11987          part { name: "elm.padding.icon3.left";
11988             clip_to: "disclip";
11989             type: RECT;
11990             scale: 1;
11991             description { state: "default" 0.0;
11992                min: GENLIST_SIZE_16_INC 0;
11993                fixed: 1 0;
11994                rel1.to_x: "elm.icon.3";
11995                rel2 {
11996                   relative: 0.0 1.0;
11997                   to_x: "elm.icon.3";
11998                }
11999                align: 1.0 0.0;
12000                visible: 0;
12001             }
12002          }
12003          part { name: "elm.text.1";
12004             clip_to: "disclip";
12005             type: TEXT;
12006             mouse_events: 0;
12007             scale: 1;
12008             description { state: "default" 0.0;
12009                min: 0 GENLIST_SIZE_61_INC;
12010                fixed: 0 1;
12011                rel1 {
12012                   relative: 1.0 1.0;
12013                   to_x: "elm.padding.icon2.right";
12014                   to_y: "elm.padding.top";
12015                }
12016                rel2 {
12017                   relative: 0.0 1.0;
12018                   to_x: "elm.padding.icon3.left";
12019                   to_y: "elm.padding.top";
12020                }
12021                align: 0.0 0.0;
12022                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
12023                text {
12024                   font: "SLP:style=Roman";
12025                   size: GENLIST_FONT_44_INC;
12026                   min: 0 1;
12027                   align: 0.0 0.5;
12028                   text_class: "list_item";
12029                }
12030             }
12031             description { state: "selected" 0.0;
12032                inherit: "default" 0.0;
12033                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12034             }
12035             GENLIST_DESCRIPTION_FLIP_ENABLED
12036          }
12037          part { name: "elm.text.2";
12038             clip_to: "disclip";
12039             type: TEXT;
12040             mouse_events: 0;
12041             scale: 1;
12042             description { state: "default" 0.0;
12043                rel1 {
12044                   relative: 1.0 1.0;
12045                   to_x: "elm.padding.icon2.right";
12046                   to_y: "elm.text.1";
12047                }
12048                rel2 {
12049                   relative: 0.0 0.0;
12050                   to_x: "elm.padding.icon3.left";
12051                   to_y: "elm.padding.bottom";
12052                }
12053                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
12054                text {
12055                   font: "SLP:style=Medium";
12056                   size: GENLIST_FONT_32_INC;
12057                   min: 0 1;
12058                   align: 0.0 0.5;
12059                   text_class: "slp_medium";
12060                }
12061             }
12062             description { state: "selected" 0.0;
12063                inherit: "default" 0.0;
12064                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12065             }
12066             GENLIST_DESCRIPTION_FLIP_ENABLED
12067          }
12068          GENLIST_PART_FLIP
12069          GENLIST_PART_DISCLIP
12070       }
12071       programs {
12072          // signal: elm,state,%s,active
12073          //   a "check" item named %s went active
12074          // signal: elm,state,%s,passive
12075          //   a "check" item named %s went passive
12076          // default is passive
12077          program { name: "go_active";
12078             signal: "elm,state,selected";
12079             source: "elm";
12080             action: STATE_SET "selected" 0.0;
12081             target: "bg_image";
12082             target: "elm.text.1";
12083             target: "elm.text.2";
12084             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
12085          }
12086          program { name: "go_passive";
12087             signal: "elm,state,unselected";
12088             source: "elm";
12089             action: STATE_SET "default" 0.0;
12090             target: "bg_image";
12091             target: "elm.text.1";
12092             target: "elm.text.2";
12093             transition: LINEAR 0.1;
12094          }
12095          program { name: "go_disabled";
12096             signal: "elm,state,disabled";
12097             source: "elm";
12098             action: STATE_SET "disabled" 0.0;
12099             target: "disclip";
12100          }
12101          program { name: "go_enabled";
12102             signal: "elm,state,enabled";
12103             source: "elm";
12104             action: STATE_SET "default" 0.0;
12105             target: "disclip";
12106          }
12107          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
12108          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
12109       }
12110    }
12111
12112 // 3.2.34
12113    group { name: "elm/genlist/item/2text.2icon.9/default";
12114       alias: "elm/genlist/item_odd/2text.2icon.9/default";
12115       alias: "elm/genlist/item_compress/2text.2icon.9/default";
12116       alias: "elm/genlist/item_compress_odd/2text.2icon.9/default";
12117       data.item: "stacking" "above";
12118       data.item: "selectraise" "on";
12119       data.item: "texts" "elm.text.1 elm.text.2";
12120       data.item: "contents" "elm.icon.1 elm.icon.2";
12121       data.item: "flips" "elm.flip.content";
12122       images {
12123          image: "00_list_bar_press_1x80.png" COMP;
12124       }
12125       parts {
12126          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
12127          GENLIST_PART_BG_IMAGE
12128          GENLIST_PART_BOTTOM_LINE
12129          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
12130          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
12131          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
12132          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
12133          part { name: "elm.icon.2";
12134             clip_to: "disclip";
12135             type: SWALLOW;
12136             scale: 1;
12137             description { state: "default" 0.0;
12138                fixed: 1 1;
12139                rel1 {
12140                   relative: 0.0 1.0;
12141                   to_x: "elm.padding.right";
12142                   to_y: "elm.padding.top";
12143                }
12144                rel2 {
12145                   relative: 0.0 0.0;
12146                   to_x: "elm.padding.right";
12147                   to_y: "elm.padding.bottom";
12148                }
12149                align: 1.0 0.5;
12150             }
12151             GENLIST_DESCRIPTION_FLIP_ENABLED
12152          }
12153          part { name: "elm.padding.icon2.left";
12154             clip_to: "disclip";
12155             type: RECT;
12156             scale: 1;
12157             description { state: "default" 0.0;
12158                min: GENLIST_SIZE_16_INC 0;
12159                fixed: 1 0;
12160                rel1.to_x: "elm.icon.2";
12161                rel2 {
12162                   relative: 0.0 1.0;
12163                   to_x: "elm.icon.2";
12164                }
12165                align: 1.0 0.0;
12166                visible: 0;
12167             }
12168          }
12169          part { name: "elm.text.2";
12170             clip_to: "disclip";
12171             type: TEXT;
12172             mouse_events: 0;
12173             scale: 1;
12174             description { state: "default" 0.0;
12175                min: 0 GENLIST_SIZE_48_INC;
12176                fixed: 0 1;
12177                rel1 {
12178                   relative: 1.0 0.0;
12179                   to_x: "elm.padding.left";
12180                   to_y: "elm.padding.bottom";
12181                }
12182                rel2 {
12183                   relative: 0.0 0.0;
12184                   to_x: "elm.padding.icon2.left";
12185                   to_y: "elm.padding.bottom";
12186                }
12187                align: 0.0 1.0;
12188                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
12189                text {
12190                   font: "SLP:style=Medium";
12191                   size: GENLIST_FONT_32_INC;
12192                   min: 0 1;
12193                   align: 0.0 0.5;
12194                   text_class: "slp_medium";
12195                }
12196             }
12197             description { state: "selected" 0.0;
12198                inherit: "default" 0.0;
12199                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12200             }
12201             GENLIST_DESCRIPTION_FLIP_ENABLED
12202          }
12203          part { name: "elm.text.1";
12204             clip_to: "disclip";
12205             type: TEXT;
12206             mouse_events: 0;
12207             scale: 1;
12208             description { state: "default" 0.0;
12209                min: 0 0;
12210                max: GENLIST_SIZE_560_INC 0;
12211                fixed: 1 0;
12212                rel1 {
12213                   relative: 1.0 1.0;
12214                   to_x: "elm.padding.left";
12215                   to_y: "elm.padding.top";
12216                }
12217                rel2 {
12218                   relative: 1.0 0.0;
12219                   to_x: "elm.padding.left";
12220                   to_y: "elm.text.2";
12221                }
12222                align: 0.0 0.5;
12223                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
12224                text {
12225                   font: "SLP:style=Roman";
12226                   size: GENLIST_FONT_44_INC;
12227                   min: 1 1;
12228                   align: 0.0 0.5;
12229                   text_class: "list_item";
12230                }
12231             }
12232             description { state: "selected" 0.0;
12233                inherit: "default" 0.0;
12234                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12235             }
12236             GENLIST_DESCRIPTION_FLIP_ENABLED
12237          }
12238          part { name: "elm.padding.icon1.left";
12239             clip_to: "disclip";
12240             type: RECT;
12241             scale: 1;
12242             description { state: "default" 0.0;
12243                min: GENLIST_SIZE_16_INC 0;
12244                fixed: 1 0;
12245                rel1 {
12246                   relative: 1.0 0.0;
12247                   to_x: "elm.text.1";
12248                }
12249                rel2.to_x: "elm.text.1";
12250                align: 0.0 0.0;
12251                visible: 0;
12252             }
12253          }
12254          part { name: "elm.icon.1";
12255             clip_to: "disclip";
12256             type: SWALLOW;
12257             scale: 1;
12258             description { state: "default" 0.0;
12259                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
12260                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
12261                fixed: 1 1;
12262                rel1 {
12263                   relative: 1.0 1.0;
12264                   to_x: "elm.padding.icon1.left";
12265                   to_y: "elm.padding.top";
12266                }
12267                rel2 {
12268                   relative: 1.0 0.0;
12269                   to_x: "elm.padding.icon1.left";
12270                   to_y: "elm.text.2";
12271                }
12272                align: 0.0 0.5;
12273             }
12274             GENLIST_DESCRIPTION_FLIP_ENABLED
12275          }
12276          GENLIST_PART_FLIP
12277          GENLIST_PART_DISCLIP
12278       }
12279       programs {
12280          // signal: elm,state,%s,active
12281          //   a "check" item named %s went active
12282          // signal: elm,state,%s,passive
12283          //   a "check" item named %s went passive
12284          // default is passive
12285          program { name: "go_active";
12286             signal: "elm,state,selected";
12287             source: "elm";
12288             action: STATE_SET "selected" 0.0;
12289             target: "bg_image";
12290             target: "elm.text.1";
12291             target: "elm.text.2";
12292             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
12293          }
12294          program { name: "go_passive";
12295             signal: "elm,state,unselected";
12296             source: "elm";
12297             action: STATE_SET "default" 0.0;
12298             target: "bg_image";
12299             target: "elm.text.1";
12300             target: "elm.text.2";
12301             transition: LINEAR 0.1;
12302          }
12303          program { name: "go_disabled";
12304             signal: "elm,state,disabled";
12305             source: "elm";
12306             action: STATE_SET "disabled" 0.0;
12307             target: "disclip";
12308          }
12309          program { name: "go_enabled";
12310             signal: "elm,state,enabled";
12311             source: "elm";
12312             action: STATE_SET "default" 0.0;
12313             target: "disclip";
12314          }
12315          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
12316          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
12317       }
12318    }
12319
12320 // 10.1 Help_dialogue group
12321    group { name: "elm/genlist/item_compress/multiline/1text/default";
12322       alias: "elm/genlist/item_compress_odd/multiline/1text/default";
12323       data.item: "stacking" "above";
12324       data.item: "selectraise" "on";
12325       data.item: "texts" "elm.text.1";
12326       parts {
12327          part { name: "base";
12328             type: RECT;
12329             repeat_events: 1;
12330             description { state: "default" 0.0;
12331                color: GENLIST_DIALOGUE_GROUP_BG_COLOR_INC;
12332             }
12333          }
12334          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_22_INC )
12335          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_22_INC )
12336          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
12337          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_32_INC )
12338          part { name: "elm.text.1";
12339             clip_to: "disclip";
12340             type: TEXTBLOCK;
12341             mouse_events: 0;
12342             scale: 1;
12343             description { state: "default" 0.0;
12344                rel1 {
12345                   relative: 1.0 1.0;
12346                   to_x: "elm.padding.left";
12347                   to_y: "elm.padding.top";
12348                }
12349                rel2 {
12350                   relative: 0.0 0.0;
12351                   to_x: "elm.padding.right";
12352                   to_y: "elm.padding.bottom";
12353                }
12354                text {
12355                   style: "genlist_textblock_help_style";
12356                   min: 0 1;
12357                   align: 0.0 0.5;
12358                }
12359             }
12360          }
12361          GENLIST_PART_DISCLIP
12362       }
12363       programs {
12364          program { name: "go_disabled";
12365             signal: "elm,state,disabled";
12366             source: "elm";
12367             action: STATE_SET "disabled" 0.0;
12368             target: "disclip";
12369          }
12370          program { name: "go_enabled";
12371             signal: "elm,state,enabled";
12372             source: "elm";
12373             action: STATE_SET "default" 0.0;
12374             target: "disclip";
12375          }
12376       }
12377    }
12378
12379 // 3.4.1
12380    group { name: "elm/genlist/item_compress/multiline/2text/default";
12381       alias: "elm/genlist/item_compress_odd/multiline/2text/default";
12382       alias: "elm/genlist/item_compress/multiline.2text/default";
12383       alias: "elm/genlist/item_compress_odd/multiline.2text/default";
12384       data.item: "stacking" "above";
12385       data.item: "selectraise" "on";
12386       data.item: "texts" "elm.text.1 elm.text.2";
12387       parts {
12388          part { name: "base";
12389             type: RECT;
12390             repeat_events: 1;
12391             description { state: "default" 0.0;
12392                color: GENLIST_PART_BG_COLOR_INC;
12393             }
12394          }
12395          GENLIST_PART_BG_IMAGE
12396          GENLIST_PART_BOTTOM_LINE
12397          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
12398          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
12399          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
12400          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
12401          part { name: "elm.text.1";
12402             clip_to: "disclip";
12403             type: TEXT;
12404             mouse_events: 0;
12405             scale: 1;
12406             description { state: "default" 0.0;
12407                min: 0 GENLIST_SIZE_61_INC;
12408                fixed: 0 1;
12409                rel1 {
12410                   relative: 1.0 1.0;
12411                   to_x: "elm.padding.left";
12412                   to_y: "elm.padding.top";
12413                }
12414                rel2 {
12415                   relative: 0.0 1.0;
12416                   to_x: "elm.padding.right";
12417                   to_y: "elm.padding.top";
12418                }
12419                align: 0.0 0.0;
12420                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
12421                text {
12422                   font: "SLP:style=Roman";
12423                   size: GENLIST_FONT_42_INC;
12424                   min: 0 1;
12425                   align: 0.0 0.5;
12426                   text_class: "list_item";
12427                }
12428             }
12429             description { state: "selected" 0.0;
12430                inherit: "default" 0.0;
12431                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12432             }
12433          }
12434          part { name: "elm.text.2";
12435             clip_to: "disclip";
12436             type: TEXTBLOCK;
12437             mouse_events: 0;
12438             scale: 1;
12439             description { state: "default" 0.0;
12440                rel1 {
12441                   relative: 1.0 1.0;
12442                   to_x: "elm.padding.left";
12443                   to_y: "elm.text.1";
12444                }
12445                rel2 {
12446                   relative: 0.0 0.0;
12447                   to_x: "elm.padding.right";
12448                   to_y: "elm.padding.bottom";
12449                }
12450                text {
12451                   style: "genlist_textblock_flexible_sub_style";
12452                   min: 0 1;
12453                   align: 0.0 0.5;
12454                }
12455             }
12456             description { state: "selected" 0.0;
12457                inherit: "default" 0.0;
12458                text.style: "genlist_textblock_flexible_sub_selected_style";
12459             }
12460          }
12461          GENLIST_PART_DISCLIP
12462       }
12463       programs {
12464          // signal: elm,state,%s,active
12465          //   a "check" item named %s went active
12466          // signal: elm,state,%s,passive
12467          //   a "check" item named %s went passive
12468          // default is passive
12469          program { name: "go_active";
12470             signal: "elm,state,selected";
12471             source: "elm";
12472             action: STATE_SET "selected" 0.0;
12473             target: "bg_image";
12474             target: "elm.text.1";
12475             target: "elm.text.2";
12476             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
12477          }
12478          program { name: "go_passive";
12479             signal: "elm,state,unselected";
12480             source: "elm";
12481             action: STATE_SET "default" 0.0;
12482             target: "bg_image";
12483             target: "elm.text.1";
12484             target: "elm.text.2";
12485             transition: LINEAR 0.1;
12486          }
12487          program { name: "go_disabled";
12488             signal: "elm,state,disabled";
12489             source: "elm";
12490             action: STATE_SET "disabled" 0.0;
12491             target: "disclip";
12492          }
12493          program { name: "go_enabled";
12494             signal: "elm,state,enabled";
12495             source: "elm";
12496             action: STATE_SET "default" 0.0;
12497             target: "disclip";
12498          }
12499          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
12500       }
12501    }
12502
12503 // 3.4.2
12504    group { name: "elm/genlist/item/multiline/3text.2icon/default";
12505       alias: "elm/genlist/item_odd/multiline/3text.2icon/default";
12506       alias: "elm/genlist/item_compress/multiline/3text.2icon/default";
12507       alias: "elm/genlist/item_compress_odd/multiline/3text.2icon/default";
12508       data.item: "stacking" "above";
12509       data.item: "selectraise" "on";
12510       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
12511       data.item: "contents" "elm.icon.1 elm.icon.2";
12512       data.item: "flips" "elm.flip.content";
12513       images {
12514          image: "00_list_bar_press_1x80.png" COMP;
12515       }
12516       parts {
12517          GENLIST_PART_BASE( GENLIST_HEIGHT_177_INC )
12518          GENLIST_PART_BG_IMAGE
12519          GENLIST_PART_BOTTOM_LINE
12520          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
12521          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
12522          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
12523          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
12524          part { name: "elm.icon.2";
12525             clip_to: "disclip";
12526             type: SWALLOW;
12527             scale: 1;
12528             description { state: "default" 0.0;
12529                min: GENLIST_SIZE_176_INC GENLIST_SIZE_176_INC;
12530                max: GENLIST_SIZE_176_INC GENLIST_SIZE_176_INC;
12531                fixed: 1 1;
12532                rel1 {
12533                   relative: 0.0 1.0;
12534                   to_x: "elm.padding.right";
12535                   to_y: "elm.padding.top";
12536                }
12537                rel2 {
12538                   relative: 0.0 0.0;
12539                   to_x: "elm.padding.right";
12540                   to_y: "elm.padding.bottom";
12541                }
12542                align: 1.0 0.5;
12543             }
12544             GENLIST_DESCRIPTION_FLIP_ENABLED
12545          }
12546          part { name: "elm.padding.icon2.left";
12547             clip_to: "disclip";
12548             type: RECT;
12549             scale: 1;
12550             description { state: "default" 0.0;
12551                min: GENLIST_PADDING_16_INC 0;
12552                fixed: 1 0;
12553                rel1.to_x: "elm.icon.2";
12554                rel2 {
12555                   relative: 0.0 1.0;
12556                   to_x: "elm.icon.2";
12557                }
12558                align: 1.0 0.0;
12559                visible: 0;
12560             }
12561          }
12562          part { name: "elm.text.1.rect";
12563             clip_to: "disclip";
12564             type: RECT;
12565             scale: 1;
12566             description { state: "default" 0.0;
12567                min: 0 GENLIST_SIZE_48_INC;
12568                fixed: 0 1;
12569                rel1 {
12570                   relative: 1.0 1.0;
12571                   to_x: "elm.padding.left";
12572                   to_y: "elm.padding.top";
12573                }
12574                rel2 {
12575                   relative: 0.0 1.0;
12576                   to_x: "elm.padding.icon2.left";
12577                   to_y: "elm.padding.top";
12578                }
12579                align: 0.0 0.0;
12580                visible: 0;
12581             }
12582          }
12583          part { name: "elm.text.1";
12584             clip_to: "disclip";
12585             type: TEXT;
12586             mouse_events: 0;
12587             scale: 1;
12588             description { state: "default" 0.0;
12589                fixed: 1 1;
12590                rel1.to: "elm.text.1.rect";
12591                rel2.to: "elm.text.1.rect";
12592                align: 0.0 0.0;
12593                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_UNREAD_COLOR_INC;
12594                text {
12595                   font: "SLP:style=Roman";
12596                   size: GENLIST_FONT_42_INC;
12597                   min: 0 1;
12598                   align: 0.0 0.5;
12599                   text_class: "list_item";
12600                }
12601             }
12602             description { state: "selected" 0.0;
12603                inherit: "default" 0.0;
12604                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12605             }
12606             GENLIST_DESCRIPTION_FLIP_ENABLED
12607          }
12608          part { name: "elm.text.2";
12609             clip_to: "disclip";
12610             type: TEXT;
12611             mouse_events: 0;
12612             scale: 1;
12613             description { state: "default" 0.0;
12614                min: 0 GENLIST_SIZE_48_INC;
12615                fixed: 0 1;
12616                rel1 {
12617                   relative: 1.0 1.0;
12618                   to_x: "elm.padding.left";
12619                   to_y: "elm.text.1.rect";
12620                }
12621                rel2 {
12622                   relative: 0.0 1.0;
12623                   to_x: "elm.padding.icon2.left";
12624                   to_y: "elm.text.1.rect";
12625                }
12626                align: 0.0 0.0;
12627                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_UNREAD_COLOR_INC;
12628                text {
12629                   font: "SLP:style=Roman";
12630                   size: GENLIST_FONT_42_INC;
12631                   min: 0 1;
12632                   align: 0.0 0.5;
12633                   text_class: "slp_roman";
12634                }
12635             }
12636             description { state: "selected" 0.0;
12637                inherit: "default" 0.0;
12638                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12639             }
12640             GENLIST_DESCRIPTION_FLIP_ENABLED
12641          }
12642          part { name: "elm.text.3";
12643             clip_to: "disclip";
12644             type: TEXT;
12645             mouse_events: 0;
12646             scale: 1;
12647             description { state: "default" 0.0;
12648                min: 0 GENLIST_SIZE_35_INC;
12649                fixed: 0 1;
12650                rel1 {
12651                   relative: 1.0 0.0;
12652                   to_x: "elm.padding.icon1.right";
12653                   to_y: "elm.padding.bottom";
12654                }
12655                rel2 {
12656                   relative: 0.0 0.0;
12657                   to_x: "elm.padding.icon2.left";
12658                   to_y: "elm.padding.bottom";
12659                }
12660                align: 0.0 1.0;
12661                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
12662                text {
12663                   font: "SLP:style=Medium";
12664                   size: GENLIST_FONT_32_INC;
12665                   min: 0 1;
12666                   align: 0.0 0.5;
12667                   text_class: "slp_medium";
12668                }
12669             }
12670             description { state: "selected" 0.0;
12671                inherit: "default" 0.0;
12672                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12673             }
12674             GENLIST_DESCRIPTION_FLIP_ENABLED
12675          }
12676          part { name: "elm.icon.1";
12677             clip_to: "disclip";
12678             type: SWALLOW;
12679             scale: 1;
12680             description { state: "default" 0.0;
12681                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
12682                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
12683                fixed: 1 1;
12684                rel1 {
12685                   relative: 1.0 1.0;
12686                   to_x: "elm.padding.left";
12687                   to_y: "elm.text.2";
12688                }
12689                rel2 {
12690                   relative: 1.0 0.0;
12691                   to_x: "elm.padding.left";
12692                   to_y: "elm.padding.bottom";
12693                }
12694                align: 0.0 0.5;
12695             }
12696             GENLIST_DESCRIPTION_FLIP_ENABLED
12697          }
12698          part { name: "elm.padding.icon1.right";
12699             clip_to: "disclip";
12700             type: RECT;
12701             scale: 1;
12702             description { state: "default" 0.0;
12703                min: GENLIST_PADDING_16_INC 0;
12704                fixed: 1 0;
12705                rel1 {
12706                   relative: 1.0 0.0;
12707                   to_x: "elm.icon.1";
12708                }
12709                rel2.to_x: "elm.icon.1";
12710                align: 0.0 0.0;
12711                visible: 0;
12712             }
12713          }
12714          GENLIST_PART_FLIP
12715          GENLIST_PART_DISCLIP
12716       }
12717       programs {
12718          // signal: elm,state,%s,active
12719          //   a "check" item named %s went active
12720          // signal: elm,state,%s,passive
12721          //   a "check" item named %s went passive
12722          // default is passive
12723          program { name: "go_active";
12724             signal: "elm,state,selected";
12725             source: "elm";
12726             action: STATE_SET "selected" 0.0;
12727             target: "bg_image";
12728             target: "elm.text.1";
12729             target: "elm.text.2";
12730             target: "elm.text.3";
12731             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
12732          }
12733          program { name: "go_passive";
12734             signal: "elm,state,unselected";
12735             source: "elm";
12736             action: STATE_SET "default" 0.0;
12737             target: "bg_image";
12738             target: "elm.text.1";
12739             target: "elm.text.2";
12740             target: "elm.text.3";
12741             transition: LINEAR 0.1;
12742          }
12743          program { name: "go_disabled";
12744             signal: "elm,state,disabled";
12745             source: "elm";
12746             action: STATE_SET "disabled" 0.0;
12747             target: "disclip";
12748          }
12749          program { name: "go_enabled";
12750             signal: "elm,state,enabled";
12751             source: "elm";
12752             action: STATE_SET "default" 0.0;
12753             target: "disclip";
12754          }
12755          GENLIST_PROGRAM_FLIP_3TEXT_2ICON
12756          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
12757       }
12758    }
12759
12760 // 3.4.2
12761    group { name: "elm/genlist/item/multiline/3text.2icon.2/default";
12762       alias: "elm/genlist/item_odd/multiline/3text.2icon.2/default";
12763       alias: "elm/genlist/item_compress/multiline/3text.2icon.2/default";
12764       alias: "elm/genlist/item_compress_odd/multiline/3text.2icon.2/default";
12765       data.item: "stacking" "above";
12766       data.item: "selectraise" "on";
12767       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
12768       data.item: "contents" "elm.icon.1 elm.icon.2";
12769       data.item: "flips" "elm.flip.content";
12770       images {
12771          image: "00_list_bar_press_1x80.png" COMP;
12772       }
12773       parts {
12774          GENLIST_PART_BASE( GENLIST_HEIGHT_177_INC )
12775          GENLIST_PART_BG_IMAGE
12776          GENLIST_PART_BOTTOM_LINE
12777          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
12778          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
12779          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
12780          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
12781          part { name: "elm.icon.2";
12782             clip_to: "disclip";
12783             type: SWALLOW;
12784             scale: 1;
12785             description { state: "default" 0.0;
12786                min: GENLIST_SIZE_176_INC GENLIST_SIZE_176_INC;
12787                max: GENLIST_SIZE_176_INC GENLIST_SIZE_176_INC;
12788                fixed: 1 1;
12789                rel1 {
12790                   relative: 0.0 1.0;
12791                   to_x: "elm.padding.right";
12792                   to_y: "elm.padding.top";
12793                }
12794                rel2 {
12795                   relative: 0.0 0.0;
12796                   to_x: "elm.padding.right";
12797                   to_y: "elm.padding.bottom";
12798                }
12799                align: 1.0 0.5;
12800             }
12801             GENLIST_DESCRIPTION_FLIP_ENABLED
12802          }
12803          part { name: "elm.padding.icon2.left";
12804             clip_to: "disclip";
12805             type: RECT;
12806             scale: 1;
12807             description { state: "default" 0.0;
12808                min: GENLIST_PADDING_16_INC 0;
12809                fixed: 1 0;
12810                rel1.to_x: "elm.icon.2";
12811                rel2 {
12812                   relative: 0.0 1.0;
12813                   to_x: "elm.icon.2";
12814                }
12815                align: 1.0 0.0;
12816                visible: 0;
12817             }
12818          }
12819          part { name: "elm.text.1.rect";
12820             clip_to: "disclip";
12821             type: RECT;
12822             scale: 1;
12823             description { state: "default" 0.0;
12824                min: 0 GENLIST_SIZE_48_INC;
12825                fixed: 0 1;
12826                rel1 {
12827                   relative: 1.0 1.0;
12828                   to_x: "elm.padding.left";
12829                   to_y: "elm.padding.top";
12830                }
12831                rel2 {
12832                   relative: 0.0 1.0;
12833                   to_x: "elm.padding.icon2.left";
12834                   to_y: "elm.padding.top";
12835                }
12836                align: 0.0 0.0;
12837                visible: 0;
12838             }
12839          }
12840          part { name: "elm.text.1";
12841             clip_to: "disclip";
12842             type: TEXT;
12843             mouse_events: 0;
12844             scale: 1;
12845             description { state: "default" 0.0;
12846                fixed: 1 1;
12847                rel1.to: "elm.text.1.rect";
12848                rel2.to: "elm.text.1.rect";
12849                align: 0.0 0.0;
12850                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_READ_COLOR_INC;
12851                text {
12852                   font: "SLP:style=Roman";
12853                   size: GENLIST_FONT_42_INC;
12854                   min: 0 1;
12855                   align: 0.0 0.5;
12856                   text_class: "list_item";
12857                }
12858             }
12859             description { state: "selected" 0.0;
12860                inherit: "default" 0.0;
12861                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12862             }
12863             GENLIST_DESCRIPTION_FLIP_ENABLED
12864          }
12865          part { name: "elm.text.2";
12866             clip_to: "disclip";
12867             type: TEXT;
12868             mouse_events: 0;
12869             scale: 1;
12870             description { state: "default" 0.0;
12871                min: 0 GENLIST_SIZE_48_INC;
12872                fixed: 0 1;
12873                rel1 {
12874                   relative: 1.0 1.0;
12875                   to_x: "elm.padding.left";
12876                   to_y: "elm.text.1.rect";
12877                }
12878                rel2 {
12879                   relative: 0.0 1.0;
12880                   to_x: "elm.padding.icon2.left";
12881                   to_y: "elm.text.1.rect";
12882                }
12883                align: 0.0 0.0;
12884                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_2_COLOR_INC;
12885                text {
12886                   font: "SLP:style=Roman";
12887                   size: GENLIST_FONT_36_INC;
12888                   min: 0 1;
12889                   align: 0.0 0.5;
12890                   text_class: "slp_roman";
12891                }
12892             }
12893             description { state: "selected" 0.0;
12894                inherit: "default" 0.0;
12895                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12896             }
12897             GENLIST_DESCRIPTION_FLIP_ENABLED
12898          }
12899          part { name: "elm.text.3";
12900             clip_to: "disclip";
12901             type: TEXT;
12902             mouse_events: 0;
12903             scale: 1;
12904             description { state: "default" 0.0;
12905                min: 0 GENLIST_SIZE_35_INC;
12906                fixed: 0 1;
12907                rel1 {
12908                   relative: 1.0 0.0;
12909                   to_x: "elm.padding.icon1.right";
12910                   to_y: "elm.padding.bottom";
12911                }
12912                rel2 {
12913                   relative: 0.0 0.0;
12914                   to_x: "elm.padding.icon2.left";
12915                   to_y: "elm.padding.bottom";
12916                }
12917                align: 0.0 1.0;
12918                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
12919                text {
12920                   font: "SLP:style=Medium";
12921                   size: GENLIST_FONT_32_INC;
12922                   min: 0 1;
12923                   align: 0.0 0.5;
12924                   text_class: "slp_medium";
12925                }
12926             }
12927             description { state: "selected" 0.0;
12928                inherit: "default" 0.0;
12929                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12930             }
12931             GENLIST_DESCRIPTION_FLIP_ENABLED
12932          }
12933          part { name: "elm.icon.1";
12934             clip_to: "disclip";
12935             type: SWALLOW;
12936             scale: 1;
12937             description { state: "default" 0.0;
12938                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
12939                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
12940                fixed: 1 1;
12941                rel1 {
12942                   relative: 1.0 1.0;
12943                   to_x: "elm.padding.left";
12944                   to_y: "elm.text.2";
12945                }
12946                rel2 {
12947                   relative: 1.0 0.0;
12948                   to_x: "elm.padding.left";
12949                   to_y: "elm.padding.bottom";
12950                }
12951                align: 0.0 0.5;
12952             }
12953             GENLIST_DESCRIPTION_FLIP_ENABLED
12954          }
12955          part { name: "elm.padding.icon1.right";
12956             clip_to: "disclip";
12957             type: RECT;
12958             scale: 1;
12959             description { state: "default" 0.0;
12960                min: GENLIST_PADDING_16_INC 0;
12961                fixed: 1 0;
12962                rel1 {
12963                   relative: 1.0 0.0;
12964                   to_x: "elm.icon.1";
12965                }
12966                rel2.to_x: "elm.icon.1";
12967                align: 0.0 0.0;
12968                visible: 0;
12969             }
12970          }
12971          GENLIST_PART_FLIP
12972          GENLIST_PART_DISCLIP
12973       }
12974       programs {
12975          // signal: elm,state,%s,active
12976          //   a "check" item named %s went active
12977          // signal: elm,state,%s,passive
12978          //   a "check" item named %s went passive
12979          // default is passive
12980          program { name: "go_active";
12981             signal: "elm,state,selected";
12982             source: "elm";
12983             action: STATE_SET "selected" 0.0;
12984             target: "bg_image";
12985             target: "elm.text.1";
12986             target: "elm.text.2";
12987             target: "elm.text.3";
12988             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
12989          }
12990          program { name: "go_passive";
12991             signal: "elm,state,unselected";
12992             source: "elm";
12993             action: STATE_SET "default" 0.0;
12994             target: "bg_image";
12995             target: "elm.text.1";
12996             target: "elm.text.2";
12997             target: "elm.text.3";
12998             transition: LINEAR 0.1;
12999          }
13000          program { name: "go_disabled";
13001             signal: "elm,state,disabled";
13002             source: "elm";
13003             action: STATE_SET "disabled" 0.0;
13004             target: "disclip";
13005          }
13006          program { name: "go_enabled";
13007             signal: "elm,state,enabled";
13008             source: "elm";
13009             action: STATE_SET "default" 0.0;
13010             target: "disclip";
13011          }
13012          GENLIST_PROGRAM_FLIP_3TEXT_2ICON
13013          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
13014       }
13015    }
13016
13017 // 3.4.3
13018    group { name: "elm/genlist/item/multiline/3text.1icon/default";
13019       alias: "elm/genlist/item_odd/multiline/3text.1icon/default";
13020       alias: "elm/genlist/item_compress/multiline/3text.1icon/default";
13021       alias: "elm/genlist/item_compress_odd/multiline/3text.1icon/default";
13022       data.item: "stacking" "above";
13023       data.item: "selectraise" "on";
13024       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
13025       data.item: "contents" "elm.icon";
13026       data.item: "flips" "elm.flip.content";
13027       images {
13028          image: "00_list_bar_press_1x80.png" COMP;
13029       }
13030       parts {
13031          GENLIST_PART_BASE( GENLIST_HEIGHT_177_INC )
13032          GENLIST_PART_BG_IMAGE
13033          GENLIST_PART_BOTTOM_LINE
13034          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
13035          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
13036          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
13037          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
13038          part { name: "elm.text.1.rect";
13039             clip_to: "disclip";
13040             type: RECT;
13041             scale: 1;
13042             description { state: "default" 0.0;
13043                min: 0 GENLIST_SIZE_48_INC;
13044                fixed: 0 1;
13045                rel1 {
13046                   relative: 1.0 1.0;
13047                   to_x: "elm.padding.left";
13048                   to_y: "elm.padding.top";
13049                }
13050                rel2 {
13051                   relative: 0.0 1.0;
13052                   to_x: "elm.padding.right";
13053                   to_y: "elm.padding.top";
13054                }
13055                align: 0.0 0.0;
13056                visible: 0;
13057             }
13058          }
13059          part { name: "elm.text.1";
13060             clip_to: "disclip";
13061             type: TEXT;
13062             mouse_events: 0;
13063             scale: 1;
13064             description { state: "default" 0.0;
13065                fixed: 1 1;
13066                rel1.to: "elm.text.1.rect";
13067                rel2.to: "elm.text.1.rect";
13068                align: 0.0 0.0;
13069                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_UNREAD_COLOR_INC;
13070                text {
13071                   font: "SLP:style=Roman";
13072                   size: GENLIST_FONT_42_INC;
13073                   min: 0 1;
13074                   align: 0.0 0.5;
13075                   text_class: "list_item";
13076                }
13077             }
13078             description { state: "selected" 0.0;
13079                inherit: "default" 0.0;
13080                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
13081             }
13082             GENLIST_DESCRIPTION_FLIP_ENABLED
13083          }
13084          part { name: "elm.text.2";
13085             clip_to: "disclip";
13086             type: TEXT;
13087             mouse_events: 0;
13088             scale: 1;
13089             description { state: "default" 0.0;
13090                min: 0 GENLIST_SIZE_48_INC;
13091                fixed: 0 1;
13092                rel1 {
13093                   relative: 1.0 1.0;
13094                   to_x: "elm.padding.left";
13095                   to_y: "elm.text.1.rect";
13096                }
13097                rel2 {
13098                   relative: 0.0 1.0;
13099                   to_x: "elm.padding.right";
13100                   to_y: "elm.text.1.rect";
13101                }
13102                align: 0.0 0.0;
13103                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_UNREAD_COLOR_INC;
13104                text {
13105                   font: "SLP:style=Roman";
13106                   size: GENLIST_FONT_42_INC;
13107                   min: 0 1;
13108                   align: 0.0 0.5;
13109                   text_class: "slp_roman";
13110                }
13111             }
13112             description { state: "selected" 0.0;
13113                inherit: "default" 0.0;
13114                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
13115             }
13116             GENLIST_DESCRIPTION_FLIP_ENABLED
13117          }
13118          part { name: "elm.text.3";
13119             clip_to: "disclip";
13120             type: TEXT;
13121             mouse_events: 0;
13122             scale: 1;
13123             description { state: "default" 0.0;
13124                min: 0 GENLIST_SIZE_35_INC;
13125                fixed: 0 1;
13126                rel1 {
13127                   relative: 1.0 0.0;
13128                   to_x: "elm.padding.icon.right";
13129                   to_y: "elm.padding.bottom";
13130                }
13131                rel2 {
13132                   relative: 0.0 0.0;
13133                   to_x: "elm.padding.right";
13134                   to_y: "elm.padding.bottom";
13135                }
13136                align: 0.0 1.0;
13137                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
13138                text {
13139                   font: "SLP:style=Medium";
13140                   size: GENLIST_FONT_32_INC;
13141                   min: 0 1;
13142                   align: 0.0 0.5;
13143                   text_class: "slp_medium";
13144                }
13145             }
13146             description { state: "selected" 0.0;
13147                inherit: "default" 0.0;
13148                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
13149             }
13150             GENLIST_DESCRIPTION_FLIP_ENABLED
13151          }
13152          part { name: "elm.icon";
13153             clip_to: "disclip";
13154             type: SWALLOW;
13155             scale: 1;
13156             description { state: "default" 0.0;
13157                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
13158                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
13159                fixed: 1 1;
13160                rel1 {
13161                   relative: 1.0 0.0;
13162                   to_x: "elm.padding.left";
13163                   to_y: "elm.text.3";
13164                }
13165                rel2 {
13166                   relative: 1.0 0.0;
13167                   to_x: "elm.padding.left";
13168                   to_y: "elm.padding.bottom";
13169                }
13170                align: 0.0 0.5;
13171             }
13172             GENLIST_DESCRIPTION_FLIP_ENABLED
13173          }
13174          part { name: "elm.padding.icon.right";
13175             clip_to: "disclip";
13176             type: RECT;
13177             scale: 1;
13178             description { state: "default" 0.0;
13179                min: GENLIST_PADDING_16_INC 0;
13180                fixed: 1 0;
13181                rel1 {
13182                   relative: 1.0 0.0;
13183                   to_x: "elm.icon";
13184                }
13185                rel2.to_x: "elm.icon";
13186                align: 0.0 0.0;
13187                visible: 0;
13188             }
13189          }
13190          GENLIST_PART_FLIP
13191          GENLIST_PART_DISCLIP
13192       }
13193       programs {
13194          // signal: elm,state,%s,active
13195          //   a "check" item named %s went active
13196          // signal: elm,state,%s,passive
13197          //   a "check" item named %s went passive
13198          // default is passive
13199          program { name: "go_active";
13200             signal: "elm,state,selected";
13201             source: "elm";
13202             action: STATE_SET "selected" 0.0;
13203             target: "bg_image";
13204             target: "elm.text.1";
13205             target: "elm.text.2";
13206             target: "elm.text.3";
13207             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
13208          }
13209          program { name: "go_passive";
13210             signal: "elm,state,unselected";
13211             source: "elm";
13212             action: STATE_SET "default" 0.0;
13213             target: "bg_image";
13214             target: "elm.text.1";
13215             target: "elm.text.2";
13216             target: "elm.text.3";
13217             transition: LINEAR 0.1;
13218          }
13219          program { name: "go_disabled";
13220             signal: "elm,state,disabled";
13221             source: "elm";
13222             action: STATE_SET "disabled" 0.0;
13223             target: "disclip";
13224          }
13225          program { name: "go_enabled";
13226             signal: "elm,state,enabled";
13227             source: "elm";
13228             action: STATE_SET "default" 0.0;
13229             target: "disclip";
13230          }
13231          GENLIST_PROGRAM_FLIP_3TEXT_1ICON
13232          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
13233       }
13234    }
13235
13236 // 3.4.3
13237    group { name: "elm/genlist/item/multiline/3text.1icon.2/default";
13238       alias: "elm/genlist/item_odd/multiline/3text.1icon.2/default";
13239       alias: "elm/genlist/item_compress/multiline/3text.1icon.2/default";
13240       alias: "elm/genlist/item_compress_odd/multiline/3text.1icon.2/default";
13241       data.item: "stacking" "above";
13242       data.item: "selectraise" "on";
13243       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
13244       data.item: "contents" "elm.icon";
13245       data.item: "flips" "elm.flip.content";
13246       images {
13247          image: "00_list_bar_press_1x80.png" COMP;
13248       }
13249       parts {
13250          GENLIST_PART_BASE( GENLIST_HEIGHT_177_INC )
13251          GENLIST_PART_BG_IMAGE
13252          GENLIST_PART_BOTTOM_LINE
13253          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
13254          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
13255          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
13256          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
13257          part { name: "elm.text.1.rect";
13258             clip_to: "disclip";
13259             type: RECT;
13260             scale: 1;
13261             description { state: "default" 0.0;
13262                min: 0 GENLIST_SIZE_48_INC;
13263                fixed: 0 1;
13264                rel1 {
13265                   relative: 1.0 1.0;
13266                   to_x: "elm.padding.left";
13267                   to_y: "elm.padding.top";
13268                }
13269                rel2 {
13270                   relative: 0.0 1.0;
13271                   to_x: "elm.padding.right";
13272                   to_y: "elm.padding.top";
13273                }
13274                align: 0.0 0.0;
13275                visible: 0;
13276             }
13277          }
13278          part { name: "elm.text.1";
13279             clip_to: "disclip";
13280             type: TEXT;
13281             mouse_events: 0;
13282             scale: 1;
13283             description { state: "default" 0.0;
13284                fixed: 1 1;
13285                rel1.to: "elm.text.1.rect";
13286                rel2.to: "elm.text.1.rect";
13287                align: 0.0 0.0;
13288                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_UNREAD_COLOR_INC;
13289                text {
13290                   font: "SLP:style=Roman";
13291                   size: GENLIST_FONT_42_INC;
13292                   min: 0 1;
13293                   align: 0.0 0.5;
13294                   text_class: "list_item";
13295                }
13296             }
13297             description { state: "selected" 0.0;
13298                inherit: "default" 0.0;
13299                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
13300             }
13301             GENLIST_DESCRIPTION_FLIP_ENABLED
13302          }
13303          part { name: "elm.text.2";
13304             clip_to: "disclip";
13305             type: TEXT;
13306             mouse_events: 0;
13307             scale: 1;
13308             description { state: "default" 0.0;
13309                min: 0 GENLIST_SIZE_48_INC;
13310                fixed: 0 1;
13311                rel1 {
13312                   relative: 1.0 1.0;
13313                   to_x: "elm.padding.left";
13314                   to_y: "elm.text.1.rect";
13315                }
13316                rel2 {
13317                   relative: 0.0 1.0;
13318                   to_x: "elm.padding.right";
13319                   to_y: "elm.text.1.rect";
13320                }
13321                align: 0.0 0.0;
13322                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_2_COLOR_INC;
13323                text {
13324                   font: "SLP:style=Roman";
13325                   size: GENLIST_FONT_36_INC;
13326                   min: 0 1;
13327                   align: 0.0 0.5;
13328                   text_class: "slp_roman";
13329                }
13330             }
13331             description { state: "selected" 0.0;
13332                inherit: "default" 0.0;
13333                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
13334             }
13335             GENLIST_DESCRIPTION_FLIP_ENABLED
13336          }
13337          part { name: "elm.text.3";
13338             clip_to: "disclip";
13339             type: TEXT;
13340             mouse_events: 0;
13341             scale: 1;
13342             description { state: "default" 0.0;
13343                min: 0 GENLIST_SIZE_35_INC;
13344                fixed: 0 1;
13345                rel1 {
13346                   relative: 1.0 0.0;
13347                   to_x: "elm.padding.icon.right";
13348                   to_y: "elm.padding.bottom";
13349                }
13350                rel2 {
13351                   relative: 0.0 0.0;
13352                   to_x: "elm.padding.right";
13353                   to_y: "elm.padding.bottom";
13354                }
13355                align: 0.0 1.0;
13356                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
13357                text {
13358                   font: "SLP:style=Medium";
13359                   size: GENLIST_FONT_32_INC;
13360                   min: 0 1;
13361                   align: 0.0 0.5;
13362                   text_class: "slp_medium";
13363                }
13364             }
13365             description { state: "selected" 0.0;
13366                inherit: "default" 0.0;
13367                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
13368             }
13369             GENLIST_DESCRIPTION_FLIP_ENABLED
13370          }
13371          part { name: "elm.icon";
13372             clip_to: "disclip";
13373             type: SWALLOW;
13374             scale: 1;
13375             description { state: "default" 0.0;
13376                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
13377                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
13378                fixed: 1 1;
13379                rel1 {
13380                   relative: 1.0 0.0;
13381                   to_x: "elm.padding.left";
13382                   to_y: "elm.text.3";
13383                }
13384                rel2 {
13385                   relative: 1.0 0.0;
13386                   to_x: "elm.padding.left";
13387                   to_y: "elm.padding.bottom";
13388                }
13389                align: 0.0 0.5;
13390             }
13391             GENLIST_DESCRIPTION_FLIP_ENABLED
13392          }
13393          part { name: "elm.padding.icon.right";
13394             clip_to: "disclip";
13395             type: RECT;
13396             scale: 1;
13397             description { state: "default" 0.0;
13398                min: GENLIST_PADDING_16_INC 0;
13399                fixed: 1 0;
13400                rel1 {
13401                   relative: 1.0 0.0;
13402                   to_x: "elm.icon";
13403                }
13404                rel2.to_x: "elm.icon";
13405                align: 0.0 0.0;
13406                visible: 0;
13407             }
13408          }
13409          GENLIST_PART_FLIP
13410          GENLIST_PART_DISCLIP
13411       }
13412       programs {
13413          // signal: elm,state,%s,active
13414          //   a "check" item named %s went active
13415          // signal: elm,state,%s,passive
13416          //   a "check" item named %s went passive
13417          // default is passive
13418          program { name: "go_active";
13419             signal: "elm,state,selected";
13420             source: "elm";
13421             action: STATE_SET "selected" 0.0;
13422             target: "bg_image";
13423             target: "elm.text.1";
13424             target: "elm.text.2";
13425             target: "elm.text.3";
13426             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
13427          }
13428          program { name: "go_passive";
13429             signal: "elm,state,unselected";
13430             source: "elm";
13431             action: STATE_SET "default" 0.0;
13432             target: "bg_image";
13433             target: "elm.text.1";
13434             target: "elm.text.2";
13435             target: "elm.text.3";
13436             transition: LINEAR 0.1;
13437          }
13438          program { name: "go_disabled";
13439             signal: "elm,state,disabled";
13440             source: "elm";
13441             action: STATE_SET "disabled" 0.0;
13442             target: "disclip";
13443          }
13444          program { name: "go_enabled";
13445             signal: "elm,state,enabled";
13446             source: "elm";
13447             action: STATE_SET "default" 0.0;
13448             target: "disclip";
13449          }
13450          GENLIST_PROGRAM_FLIP_3TEXT_1ICON
13451          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
13452       }
13453    }
13454
13455    // 2.2.3.11
13456    group { name: "elm/genlist/item/multiline/4text.6icon.7/default";
13457       alias: "elm/genlist/item_odd/multiline/4text.6icon.7/default";
13458       alias: "elm/genlist/item_compress/multiline/4text.6icon.7/default";
13459       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.7/default";
13460       data.item: "stacking" "above";
13461       data.item: "selectraise" "on";
13462       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
13463       data.item: "contents" "elm.icon.1 elm.icon.3 elm.icon.4";
13464       data.item: "flips" "elm.flip.content";
13465       images {
13466          image: "00_list_bar_press_1x80.png" COMP;
13467       }
13468       parts {
13469          GENLIST_PART_BASE( GENLIST_HEIGHT_161_INC )
13470          GENLIST_PART_BG_IMAGE
13471          GENLIST_PART_BOTTOM_LINE
13472          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_8_INC )
13473          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_8_INC )
13474          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
13475          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
13476
13477          part { name: "elm.icon.1";
13478             clip_to: "disclip";
13479             type: SWALLOW;
13480             scale: 1;
13481             description { state: "default" 0.0;
13482                min: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
13483                max: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
13484                fixed: 1 1;
13485                rel1 {
13486                   relative: 1.0 1.0;
13487                   to_x: "elm.padding.left";
13488                   to_y: "elm.padding.top";
13489                }
13490                rel2 {
13491                   relative: 1.0 0.0;
13492                   to_x: "elm.padding.left";
13493                   to_y: "elm.padding.bottom";
13494                }
13495                align: 0.0 0.5;
13496             }
13497             GENLIST_DESCRIPTION_FLIP_ENABLED
13498          }
13499          part { name: "elm.padding.icon1.right";
13500             clip_to: "disclip";
13501             type: RECT;
13502             scale: 1;
13503             description { state: "default" 0.0;
13504                min: GENLIST_PADDING_16_INC 0;
13505                fixed: 1 0;
13506                rel1 {
13507                   relative: 1.0 0.0;
13508                   to_x: "elm.icon.1";
13509                }
13510                rel2.to_x: "elm.icon.1";
13511                align: 0.0 0.0;
13512                visible: 0;
13513             }
13514          }
13515          part { name: "elm.icon.3";
13516             clip_to: "disclip";
13517             type: SWALLOW;
13518             scale: 1;
13519             description { state: "default" 0.0;
13520                min: GENLIST_SIZE_66_INC GENLIST_SIZE_60_INC;
13521                max: GENLIST_SIZE_66_INC GENLIST_SIZE_60_INC;
13522                fixed: 1 1;
13523                rel1 {
13524                   relative: 0.0 1.0;
13525                   to_x: "elm.padding.right";
13526                   to_y: "elm.padding.top";
13527                }
13528                rel2 {
13529                   relative: 0.0 0.0;
13530                   to_x: "elm.padding.right";
13531                   to_y: "elm.padding.bottom";
13532                }
13533                align: 1.0 0.0;
13534             }
13535             GENLIST_DESCRIPTION_FLIP_ENABLED
13536          }
13537          part { name: "elm.icon.3.left";
13538             clip_to: "disclip";
13539             type: RECT;
13540             scale: 1;
13541             description { state: "default" 0.0;
13542                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
13543                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
13544                fixed: 1 1;
13545                rel1 {
13546                   relative: 0.0 1.0;
13547                   to_x: "elm.icon.3";
13548                   to_y: "elm.padding.top";
13549                }
13550                rel2 {
13551                   relative: 0.0 0.0;
13552                   to_x: "elm.icon.3";
13553                   to_y: "elm.padding.bottom";
13554                }
13555                align: 1.0 0.0;
13556                visible: 0;
13557             }
13558             GENLIST_DESCRIPTION_FLIP_ENABLED
13559          }
13560          part { name: "elm.icon.4";
13561             clip_to: "disclip";
13562             type: SWALLOW;
13563             scale: 1;
13564             description { state: "default" 0.0;
13565                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
13566                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
13567                fixed: 1 1;
13568                rel1 {
13569                   relative: 0.0 1.0;
13570                   to_x: "elm.icon.3.left";
13571                   to_y: "elm.padding.top";
13572                }
13573                rel2 {
13574                   relative: 0.0 0.0;
13575                   to_x: "elm.icon.3.left";
13576                   to_y: "elm.text.2";
13577                }
13578                align: 1.0 0.5;
13579             }
13580             GENLIST_DESCRIPTION_FLIP_ENABLED
13581          }
13582          part { name: "elm.icon.4.left";
13583             clip_to: "disclip";
13584             type: RECT;
13585             scale: 1;
13586             description { state: "default" 0.0;
13587                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
13588                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
13589                fixed: 1 1;
13590                rel1 {
13591                   relative: 0.0 1.0;
13592                   to_x: "elm.icon.4";
13593                   to_y: "elm.padding.top";
13594                }
13595                rel2 {
13596                   relative: 0.0 0.0;
13597                   to_x: "elm.icon.4";
13598                   to_y: "elm.padding.bottom";
13599                }
13600                align: 1.0 0.0;
13601                visible: 0;
13602             }
13603             GENLIST_DESCRIPTION_FLIP_ENABLED
13604          }
13605
13606          part { name: "elm.text.1.rect";
13607             clip_to: "disclip";
13608             type: RECT;
13609             scale: 1;
13610             description { state: "default" 0.0;
13611                min: 0 GENLIST_SIZE_60_INC;
13612                fixed: 0 1;
13613                rel1 {
13614                   relative: 1.0 1.0;
13615                   to_x: "elm.padding.left";
13616                   to_y: "elm.padding.top";
13617                }
13618                rel2 {
13619                   relative: 0.0 1.0;
13620                   to_x: "elm.icon.4.left";
13621                   to_y: "elm.padding.top";
13622                }
13623                align: 0.0 0.0;
13624                visible: 0;
13625             }
13626          }
13627          part { name: "elm.text.1";
13628             clip_to: "disclip";
13629             type: TEXT;
13630             mouse_events: 0;
13631             scale: 1;
13632             description { state: "default" 0.0;
13633                fixed: 1 1;
13634                rel1 {
13635                   relative: 1.0 1.0;
13636                   to_x: "elm.padding.icon1.right";
13637                   to_y: "elm.padding.top";
13638                }
13639                rel2.to: "elm.text.1.rect";
13640                align: 0.0 0.0;
13641                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_UNREAD_COLOR_INC;
13642                text {
13643                   font: "SLP:style=Roman";
13644                   size: GENLIST_FONT_44_INC;
13645                   min: 0 1;
13646                   align: 0.0 0.5;
13647                   text_class: "list_item";
13648                }
13649             }
13650             description { state: "selected" 0.0;
13651                inherit: "default" 0.0;
13652                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
13653             }
13654             GENLIST_DESCRIPTION_FLIP_ENABLED
13655          }
13656          part { name: "elm.text.1.bottom";
13657             clip_to: "disclip";
13658             type: RECT;
13659             scale: 1;
13660             description { state: "default" 0.0;
13661                min: 0 GENLIST_SIZE_4_INC;
13662                fixed: 1 1;
13663                rel1 {
13664                   relative: 1.0 1.0;
13665                   to_x: "elm.padding.icon1.right";
13666                   to_y: "elm.text.1.rect";
13667                }
13668                rel2 {
13669                   relative: 0.0 1.0;
13670                   to_x: "elm.padding.right";
13671                   to_y: "elm.text.1.rect";
13672                }
13673                align: 0.0 1.0;
13674                visible: 0;
13675             }
13676             GENLIST_DESCRIPTION_FLIP_ENABLED
13677          }
13678          part { name: "elm.text.2";
13679             clip_to: "disclip";
13680             type: TEXT;
13681             mouse_events: 0;
13682             scale: 1;
13683             description { state: "default" 0.0;
13684                min: 0 GENLIST_SIZE_40_INC;
13685                fixed: 0 1;
13686                rel1 {
13687                   relative: 1.0 1.0;
13688                   to_x: "elm.padding.icon1.right";
13689                   to_y: "elm.text.1.bottom";
13690                }
13691                rel2 {
13692                   relative: 0.0 1.0;
13693                   to_x: "elm.padding.right";
13694                   to_y: "elm.text.1.bottom";
13695                }
13696                align: 0.0 0.0;
13697                color: GENLIST_PART_FONT_NAME_TEXT_COLOR_INC;
13698                text {
13699                   font: "SLP:style=Medium";
13700                   size: GENLIST_FONT_32_INC;
13701                   min: 0 1;
13702                   align: 0.0 0.5;
13703                   text_class: "slp_medium";
13704                }
13705             }
13706             description { state: "selected" 0.0;
13707                inherit: "default" 0.0;
13708                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
13709             }
13710             GENLIST_DESCRIPTION_FLIP_ENABLED
13711          }
13712          part { name: "elm.text.4";
13713             clip_to: "disclip";
13714             type: TEXT;
13715             mouse_events: 0;
13716             scale: 1;
13717             description { state: "default" 0.0;
13718                min: GENLIST_SIZE_133_INC GENLIST_SIZE_40_INC;
13719                fixed: 1 1;
13720                rel1 {
13721                   relative: 0.0 1.0;
13722                   to_x: "elm.padding.right";
13723                   to_y: "elm.text.2";
13724                }
13725                rel2 {
13726                   relative: 0.0 0.0;
13727                   to_x: "elm.padding.right";
13728                   to_y: "elm.padding.bottom";
13729                }
13730                align: 1.0 0.0;
13731                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
13732                text {
13733                   font: "SLP:style=Medium";
13734                   size: GENLIST_FONT_32_INC;
13735                   min: 0 1;
13736                   align: 0.0 0.5;
13737                   text_class: "slp_medium";
13738                }
13739             }
13740             description { state: "selected" 0.0;
13741                inherit: "default" 0.0;
13742                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
13743             }
13744             GENLIST_DESCRIPTION_FLIP_ENABLED
13745          }
13746          part { name: "elm.text.4.left";
13747             clip_to: "disclip";
13748             type: RECT;
13749             scale: 1;
13750             description { state: "default" 0.0;
13751                min: GENLIST_SIZE_16_INC GENLIST_SIZE_40_INC;
13752                max: GENLIST_SIZE_16_INC GENLIST_SIZE_40_INC;
13753                fixed: 1 1;
13754                color: 255 0 255 255;
13755                rel1 {
13756                   relative: 0.0 1.0;
13757                   to_x: "elm.text.4";
13758                   to_y: "elm.text.2";
13759                }
13760                rel2 {
13761                   relative: 0.0 0.0;
13762                   to_x: "elm.text.4";
13763                   to_y: "elm.padding.bottom";
13764                }
13765                align: 1.0 0.0;
13766                visible: 0;
13767             }
13768             GENLIST_DESCRIPTION_FLIP_ENABLED
13769          }
13770          part { name: "elm.text.3";
13771             clip_to: "disclip";
13772             type: TEXT;
13773             mouse_events: 0;
13774             scale: 1;
13775             description { state: "default" 0.0;
13776                min: 0 GENLIST_SIZE_40_INC;
13777                fixed: 0 1;
13778                rel1 {
13779                   relative: 1.0 0.0;
13780                   to_x: "elm.padding.icon1.right";
13781                   to_y: "elm.padding.bottom";
13782                }
13783                rel2 {
13784                   relative: 0.0 0.0;
13785                   to_x: "elm.text.4.left";
13786                   to_y: "elm.padding.bottom";
13787                }
13788                align: 0.0 1.0;
13789                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
13790                text {
13791                   font: "SLP:style=Medium";
13792                   size: GENLIST_FONT_32_INC;
13793                   min: 0 1;
13794                   align: 0.0 0.5;
13795                   text_class: "slp_medium";
13796                }
13797             }
13798             description { state: "selected" 0.0;
13799                inherit: "default" 0.0;
13800                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
13801             }
13802             GENLIST_DESCRIPTION_FLIP_ENABLED
13803          }
13804
13805          GENLIST_PART_FLIP
13806          GENLIST_PART_DISCLIP
13807       }
13808       programs {
13809          program { name: "go_active";
13810             signal: "elm,state,selected";
13811             source: "elm";
13812             action: STATE_SET "selected" 0.0;
13813             target: "bg_image";
13814             target: "elm.text.1";
13815             target: "elm.text.2";
13816             target: "elm.text.3";
13817             target: "elm.text.4";
13818          }
13819          program { name: "go_passive";
13820             signal: "elm,state,unselected";
13821             source: "elm";
13822             action: STATE_SET "default" 0.0;
13823             target: "bg_image";
13824             target: "elm.text.1";
13825             target: "elm.text.2";
13826             target: "elm.text.3";
13827             target: "elm.text.4";
13828             transition: LINEAR 0.1;
13829          }
13830          program { name: "go_disabled";
13831             signal: "elm,state,disabled";
13832             source: "elm";
13833             action: STATE_SET "disabled" 0.0;
13834             target: "disclip";
13835          }
13836          program { name: "go_enabled";
13837             signal: "elm,state,enabled";
13838             source: "elm";
13839             action: STATE_SET "default" 0.0;
13840             target: "disclip";
13841          }
13842       }
13843    }
13844
13845    // 2.2.3.12
13846    group { name: "elm/genlist/item/multiline/4text.6icon.8/default";
13847       alias: "elm/genlist/item_odd/multiline/4text.6icon.8/default";
13848       alias: "elm/genlist/item_compress/multiline/4text.6icon.8/default";
13849       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.8/default";
13850       inherit: "elm/genlist/item/multiline/4text.6icon.7/default";
13851
13852       parts {
13853          part { name: "elm.text.1";
13854             description { state: "default" 0.0;
13855                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_READ_COLOR_INC;
13856             }
13857          }
13858       }
13859    }
13860
13861    // 2.2.3.9
13862    group { name: "elm/genlist/item/multiline/4text.6icon.5/default";
13863       alias: "elm/genlist/item_odd/multiline/4text.6icon.5/default";
13864       alias: "elm/genlist/item_compress/multiline/4text.6icon.5/default";
13865       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.5/default";
13866       inherit: "elm/genlist/item/multiline/4text.6icon.7/default";
13867       data.item: "contents" "elm.icon.1 elm.icon.3 elm.icon.4 elm.icon.5";
13868
13869       parts {
13870          part { name: "elm.icon.5";
13871             clip_to: "disclip";
13872             type: SWALLOW;
13873             scale: 1;
13874             description { state: "default" 0.0;
13875                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
13876                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
13877                fixed: 1 1;
13878                rel1 {
13879                   relative: 0.0 1.0;
13880                   to_x: "elm.icon.4.left";
13881                   to_y: "elm.padding.top";
13882                }
13883                rel2 {
13884                   relative: 0.0 0.0;
13885                   to_x: "elm.icon.4.left";
13886                   to_y: "elm.text.2";
13887                }
13888                align: 1.0 0.5;
13889             }
13890             GENLIST_DESCRIPTION_FLIP_ENABLED
13891          }
13892          part { name: "elm.icon.5.left";
13893             clip_to: "disclip";
13894             type: RECT;
13895             scale: 1;
13896             description { state: "default" 0.0;
13897                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
13898                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
13899                fixed: 1 1;
13900                rel1 {
13901                   relative: 0.0 1.0;
13902                   to_x: "elm.icon.5";
13903                   to_y: "elm.padding.top";
13904                }
13905                rel2 {
13906                   relative: 0.0 0.0;
13907                   to_x: "elm.icon.5";
13908                   to_y: "elm.padding.bottom";
13909                }
13910                align: 1.0 0.0;
13911                visible: 0;
13912             }
13913             GENLIST_DESCRIPTION_FLIP_ENABLED
13914          }
13915          part { name: "elm.text.1.rect";
13916             description { state: "default" 0.0;
13917                rel2.to_x: "elm.icon.5.left";
13918             }
13919          }
13920       }
13921    }
13922
13923    // 2.2.3.10
13924    group { name: "elm/genlist/item/multiline/4text.6icon.6/default";
13925       alias: "elm/genlist/item_odd/multiline/4text.6icon.6/default";
13926       alias: "elm/genlist/item_compress/multiline/4text.6icon.6/default";
13927       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.6/default";
13928       inherit: "elm/genlist/item/multiline/4text.6icon.5/default";
13929
13930       parts {
13931          part { name: "elm.text.1";
13932             description { state: "default" 0.0;
13933                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_READ_COLOR_INC;
13934             }
13935          }
13936       }
13937    }
13938
13939    // 2.2.3.7
13940    group { name: "elm/genlist/item/multiline/4text.6icon.3/default";
13941       alias: "elm/genlist/item_odd/multiline/4text.6icon.3/default";
13942       alias: "elm/genlist/item_compress/multiline/4text.6icon.3/default";
13943       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.3/default";
13944       inherit: "elm/genlist/item/multiline/4text.6icon.7/default";
13945       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4";
13946
13947       parts {
13948           part { name: "elm.icon.2";
13949             clip_to: "disclip";
13950             type: SWALLOW;
13951             scale: 1;
13952             description { state: "default" 0.0;
13953                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
13954                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
13955                fixed: 1 1;
13956                rel1 {
13957                   relative: 1.0 1.0;
13958                   to_x: "elm.padding.icon1.right";
13959                   to_y: "elm.text.2";
13960                }
13961                rel2 {
13962                   relative: 1.0 0.0;
13963                   to_x: "elm.padding.icon1.right";
13964                   to_y: "elm.padding.bottom";
13965                }
13966                align: 0.0 0.5;
13967             }
13968             GENLIST_DESCRIPTION_FLIP_ENABLED
13969          }
13970          part { name: "elm.padding.icon2.right";
13971             clip_to: "disclip";
13972             type: RECT;
13973             scale: 1;
13974             description { state: "default" 0.0;
13975                min: GENLIST_SIZE_16_INC 0;
13976                fixed: 1 0;
13977                rel1 {
13978                   relative: 1.0 0.0;
13979                   to_x: "elm.icon.2";
13980                }
13981                rel2.to_x: "elm.icon.2";
13982                align: 0.0 0.0;
13983                visible: 0;
13984             }
13985          }
13986          part { name: "elm.text.3";
13987             clip_to: "disclip";
13988             type: TEXT;
13989             mouse_events: 0;
13990             scale: 1;
13991             description { state: "default" 0.0;
13992                min: 0 GENLIST_SIZE_40_INC;
13993                fixed: 0 1;
13994                rel1 {
13995                   relative: 1.0 0.0;
13996                   to_x: "elm.padding.icon2.right";
13997                   to_y: "elm.padding.bottom";
13998                }
13999                rel2 {
14000                   relative: 0.0 0.0;
14001                   to_x: "elm.text.4.left";
14002                   to_y: "elm.padding.bottom";
14003                }
14004                align: 0.0 1.0;
14005                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
14006                text {
14007                   font: "SLP:style=Medium";
14008                   size: GENLIST_FONT_32_INC;
14009                   min: 0 1;
14010                   align: 0.0 0.5;
14011                   text_class: "slp_medium";
14012                }
14013             }
14014             description { state: "selected" 0.0;
14015                inherit: "default" 0.0;
14016                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
14017             }
14018             GENLIST_DESCRIPTION_FLIP_ENABLED
14019          }
14020       }
14021    }
14022
14023    // 2.2.3.8
14024    group { name: "elm/genlist/item/multiline/4text.6icon.4/default";
14025       alias: "elm/genlist/item_odd/multiline/4text.6icon.4/default";
14026       alias: "elm/genlist/item_compress/multiline/4text.6icon.4/default";
14027       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.4/default";
14028       inherit: "elm/genlist/item/multiline/4text.6icon.3/default";
14029
14030       parts {
14031          part { name: "elm.text.1";
14032             description { state: "default" 0.0;
14033                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_READ_COLOR_INC;
14034             }
14035          }
14036       }
14037    }
14038
14039    // 2.2.3.5
14040    group { name: "elm/genlist/item/multiline/4text.6icon.1/default";
14041       alias: "elm/genlist/item_odd/multiline/4text.6icon.1/default";
14042       alias: "elm/genlist/item_compress/multiline/4text.6icon.1/default";
14043       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.1/default";
14044       inherit: "elm/genlist/item/multiline/4text.6icon.3/default";
14045       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4 elm.icon.5";
14046
14047       parts {
14048          part { name: "elm.icon.5";
14049             clip_to: "disclip";
14050             type: SWALLOW;
14051             scale: 1;
14052             description { state: "default" 0.0;
14053                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
14054                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
14055                fixed: 1 1;
14056                rel1 {
14057                   relative: 0.0 1.0;
14058                   to_x: "elm.icon.4.left";
14059                   to_y: "elm.padding.top";
14060                }
14061                rel2 {
14062                   relative: 0.0 0.0;
14063                   to_x: "elm.icon.4.left";
14064                   to_y: "elm.text.2";
14065                }
14066                align: 1.0 0.5;
14067             }
14068             GENLIST_DESCRIPTION_FLIP_ENABLED
14069          }
14070          part { name: "elm.icon.5.left";
14071             clip_to: "disclip";
14072             type: RECT;
14073             scale: 1;
14074             description { state: "default" 0.0;
14075                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
14076                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
14077                fixed: 1 1;
14078                rel1 {
14079                   relative: 0.0 1.0;
14080                   to_x: "elm.icon.5";
14081                   to_y: "elm.padding.top";
14082                }
14083                rel2 {
14084                   relative: 0.0 0.0;
14085                   to_x: "elm.icon.5";
14086                   to_y: "elm.padding.bottom";
14087                }
14088                align: 1.0 0.0;
14089                visible: 0;
14090             }
14091             GENLIST_DESCRIPTION_FLIP_ENABLED
14092          }
14093          part { name: "elm.text.1.rect";
14094             description { state: "default" 0.0;
14095                rel2 {
14096                   to_x: "elm.icon.5.left";
14097                }
14098             }
14099          }
14100       }
14101    }
14102
14103    // 2.2.3.6
14104    group { name: "elm/genlist/item/multiline/4text.6icon.2/default";
14105       alias: "elm/genlist/item_odd/multiline/4text.6icon.2/default";
14106       alias: "elm/genlist/item_compress/multiline/4text.6icon.2/default";
14107       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.2/default";
14108       inherit: "elm/genlist/item/multiline/4text.6icon.1/default";
14109
14110       parts {
14111          part { name: "elm.text.1";
14112             description { state: "default" 0.0;
14113                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
14114             }
14115          }
14116       }
14117    }
14118
14119    // 2.2.3.13
14120    group { name: "elm/genlist/item/multiline/4text.6icon.9/default";
14121       alias: "elm/genlist/item_odd/multiline/4text.6icon.9/default";
14122       alias: "elm/genlist/item_compress/multiline/4text.6icon.9/default";
14123       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.9/default";
14124       data.item: "stacking" "above";
14125       data.item: "selectraise" "on";
14126       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
14127       data.item: "contents" "elm.icon.1 elm.icon.4";
14128       data.item: "flips" "elm.flip.content";
14129       images {
14130          image: "00_list_bar_press_1x80.png" COMP;
14131       }
14132       parts {
14133          GENLIST_PART_BASE( GENLIST_HEIGHT_161_INC )
14134          GENLIST_PART_BG_IMAGE
14135          GENLIST_PART_BOTTOM_LINE
14136          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_8_INC )
14137          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_8_INC )
14138          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
14139          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
14140
14141          part { name: "elm.icon.1";
14142             clip_to: "disclip";
14143             type: SWALLOW;
14144             scale: 1;
14145             description { state: "default" 0.0;
14146                min: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
14147                max: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
14148                fixed: 1 1;
14149                rel1 {
14150                   relative: 1.0 1.0;
14151                   to_x: "elm.padding.left";
14152                   to_y: "elm.padding.top";
14153                }
14154                rel2 {
14155                   relative: 1.0 0.0;
14156                   to_x: "elm.padding.left";
14157                   to_y: "elm.padding.bottom";
14158                }
14159                align: 0.0 0.5;
14160             }
14161             GENLIST_DESCRIPTION_FLIP_ENABLED
14162          }
14163          part { name: "elm.padding.icon1.right";
14164             clip_to: "disclip";
14165             type: RECT;
14166             scale: 1;
14167             description { state: "default" 0.0;
14168                min: GENLIST_PADDING_16_INC 0;
14169                fixed: 1 0;
14170                rel1 {
14171                   relative: 1.0 0.0;
14172                   to_x: "elm.icon.1";
14173                }
14174                rel2.to_x: "elm.icon.1";
14175                align: 0.0 0.0;
14176                visible: 0;
14177             }
14178          }
14179          part { name: "elm.icon.4";
14180             clip_to: "disclip";
14181             type: SWALLOW;
14182             scale: 1;
14183             description { state: "default" 0.0;
14184                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
14185                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
14186                fixed: 1 1;
14187                rel1 {
14188                   relative: 0.0 1.0;
14189                   to_x: "elm.padding.right";
14190                   to_y: "elm.padding.top";
14191                }
14192                rel2 {
14193                   relative: 0.0 0.0;
14194                   to_x: "elm.padding.right";
14195                   to_y: "elm.text.2";
14196                }
14197                align: 1.0 0.5;
14198             }
14199             GENLIST_DESCRIPTION_FLIP_ENABLED
14200          }
14201          part { name: "elm.icon.4.left";
14202             clip_to: "disclip";
14203             type: RECT;
14204             scale: 1;
14205             description { state: "default" 0.0;
14206                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
14207                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
14208                fixed: 1 1;
14209                rel1 {
14210                   relative: 0.0 1.0;
14211                   to_x: "elm.icon.4";
14212                   to_y: "elm.padding.top";
14213                }
14214                rel2 {
14215                   relative: 0.0 0.0;
14216                   to_x: "elm.icon.4";
14217                   to_y: "elm.padding.bottom";
14218                }
14219                align: 1.0 0.0;
14220                visible: 0;
14221             }
14222             GENLIST_DESCRIPTION_FLIP_ENABLED
14223          }
14224          part { name: "elm.icon.2";
14225             clip_to: "disclip";
14226             type: SWALLOW;
14227             scale: 1;
14228             description { state: "default" 0.0;
14229                fixed: 1 1;
14230                min: GENLIST_SIZE_88_INC GENLIST_SIZE_74_INC;
14231                rel1 {
14232                   relative: 0.0 1.0;
14233                   to_x: "elm.padding.right";
14234                   to_y: "elm.text.1.bottom";
14235                }
14236                rel2 {
14237                   relative: 0.0 0.0;
14238                   to_x: "elm.padding.right";
14239                   to_y: "elm.padding.bottom";
14240                }
14241                align: 1.0 0.5;
14242             }
14243             GENLIST_DESCRIPTION_FLIP_ENABLED
14244          }
14245          part { name: "elm.padding.icon2.left";
14246             clip_to: "disclip";
14247             type: RECT;
14248             scale: 1;
14249             description { state: "default" 0.0;
14250                min: GENLIST_PADDING_16_INC 0;
14251                fixed: 1 0;
14252                rel1.to_x: "elm.icon.2";
14253                rel2 {
14254                   relative: 0.0 1.0;
14255                   to_x: "elm.icon.2";
14256                }
14257                align: 1.0 0.0;
14258                visible: 0;
14259             }
14260          }
14261          part { name: "elm.text.1.rect";
14262             clip_to: "disclip";
14263             type: RECT;
14264             scale: 1;
14265             description { state: "default" 0.0;
14266                min: 0 GENLIST_SIZE_60_INC;
14267                fixed: 0 1;
14268                rel1 {
14269                   relative: 1.0 1.0;
14270                   to_x: "elm.padding.left";
14271                   to_y: "elm.padding.top";
14272                }
14273                rel2 {
14274                   relative: 0.0 1.0;
14275                   to_x: "elm.icon.4.left";
14276                   to_y: "elm.padding.top";
14277                }
14278                align: 0.0 0.0;
14279                visible: 0;
14280             }
14281          }
14282          part { name: "elm.text.1";
14283             clip_to: "disclip";
14284             type: TEXT;
14285             mouse_events: 0;
14286             scale: 1;
14287             description { state: "default" 0.0;
14288                fixed: 1 1;
14289                rel1 {
14290                   relative: 1.0 1.0;
14291                   to_x: "elm.padding.icon1.right";
14292                   to_y: "elm.padding.top";
14293                }
14294                rel2.to: "elm.text.1.rect";
14295                align: 0.0 0.0;
14296                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_UNREAD_COLOR_INC;
14297                text {
14298                   font: "SLP:style=Roman";
14299                   size: GENLIST_FONT_44_INC;
14300                   min: 0 1;
14301                   align: 0.0 0.5;
14302                   text_class: "list_item";
14303                }
14304             }
14305             description { state: "selected" 0.0;
14306                inherit: "default" 0.0;
14307                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
14308             }
14309             GENLIST_DESCRIPTION_FLIP_ENABLED
14310          }
14311          part { name: "elm.text.1.bottom";
14312             clip_to: "disclip";
14313             type: RECT;
14314             scale: 1;
14315             description { state: "default" 0.0;
14316                min: 0 GENLIST_SIZE_4_INC;
14317                fixed: 1 1;
14318                rel1 {
14319                   relative: 1.0 1.0;
14320                   to_x: "elm.padding.icon1.right";
14321                   to_y: "elm.text.1.rect";
14322                }
14323                rel2 {
14324                   relative: 0.0 1.0;
14325                   to_x: "elm.padding.right";
14326                   to_y: "elm.text.1.rect";
14327                }
14328                align: 0.0 1.0;
14329                visible: 0;
14330             }
14331             GENLIST_DESCRIPTION_FLIP_ENABLED
14332          }
14333          part { name: "elm.text.2";
14334             clip_to: "disclip";
14335             type: TEXT;
14336             mouse_events: 0;
14337             scale: 1;
14338             description { state: "default" 0.0;
14339                min: 0 GENLIST_SIZE_40_INC;
14340                fixed: 0 1;
14341                rel1 {
14342                   relative: 1.0 1.0;
14343                   to_x: "elm.padding.icon1.right";
14344                   to_y: "elm.text.1.bottom";
14345                }
14346                rel2 {
14347                   relative: 0.0 1.0;
14348                   to_x: "elm.padding.icon2.left";
14349                   to_y: "elm.text.1.bottom";
14350                }
14351                align: 0.0 0.0;
14352                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
14353                text {
14354                   font: "SLP:style=Medium";
14355                   size: GENLIST_FONT_32_INC;
14356                   min: 0 1;
14357                   align: 0.0 0.5;
14358                   text_class: "slp_medium";
14359                }
14360             }
14361             description { state: "selected" 0.0;
14362                inherit: "default" 0.0;
14363                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
14364             }
14365             GENLIST_DESCRIPTION_FLIP_ENABLED
14366          }
14367          part { name: "elm.text.3";
14368             clip_to: "disclip";
14369             type: TEXT;
14370             mouse_events: 0;
14371             scale: 1;
14372             description { state: "default" 0.0;
14373                min: 0 GENLIST_SIZE_40_INC;
14374                fixed: 0 1;
14375                rel1 {
14376                   relative: 1.0 0.0;
14377                   to_x: "elm.padding.icon1.right";
14378                   to_y: "elm.padding.bottom";
14379                }
14380                rel2 {
14381                   relative: 0.0 0.0;
14382                   to_x: "elm.padding.icon2.left";
14383                   to_y: "elm.padding.bottom";
14384                }
14385                align: 0.0 1.0;
14386                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
14387                text {
14388                   font: "SLP:style=Medium";
14389                   size: GENLIST_FONT_32_INC;
14390                   min: 0 1;
14391                   align: 0.0 0.5;
14392                   text_class: "slp_medium";
14393                }
14394             }
14395             description { state: "selected" 0.0;
14396                inherit: "default" 0.0;
14397                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
14398             }
14399             GENLIST_DESCRIPTION_FLIP_ENABLED
14400          }
14401
14402          GENLIST_PART_FLIP
14403          GENLIST_PART_DISCLIP
14404       }
14405       programs {
14406          // signal: elm,state,%s,active
14407          //   a "check" item named %s went active
14408          // signal: elm,state,%s,passive
14409          //   a "check" item named %s went passive
14410          // default is passive
14411          program { name: "go_active";
14412             signal: "elm,state,selected";
14413             source: "elm";
14414             action: STATE_SET "selected" 0.0;
14415             target: "bg_image";
14416             target: "elm.text.1";
14417             target: "elm.text.2";
14418             target: "elm.text.3";
14419          }
14420          program { name: "go_passive";
14421             signal: "elm,state,unselected";
14422             source: "elm";
14423             action: STATE_SET "default" 0.0;
14424             target: "bg_image";
14425             target: "elm.text.1";
14426             target: "elm.text.2";
14427             target: "elm.text.3";
14428             transition: LINEAR 0.1;
14429          }
14430          program { name: "go_disabled";
14431             signal: "elm,state,disabled";
14432             source: "elm";
14433             action: STATE_SET "disabled" 0.0;
14434             target: "disclip";
14435          }
14436          program { name: "go_enabled";
14437             signal: "elm,state,enabled";
14438             source: "elm";
14439             action: STATE_SET "default" 0.0;
14440             target: "disclip";
14441          }
14442       }
14443    }
14444
14445 // 3.4.4
14446    group { name: "elm/genlist/item/multiline/1title.2text/default";
14447       alias: "elm/genlist/item_odd/multiline/1title.2text/default";
14448       alias: "elm/genlist/item_compress/multiline/1title.2text/default";
14449       alias: "elm/genlist/item_compress_odd/multiline/1title.2text/default";
14450       data.item: "stacking" "above";
14451       data.item: "selectraise" "on";
14452       data.item: "texts" "elm.title elm.text.1 elm.text.2";
14453       parts {
14454          part { name: "base";
14455             type: RECT;
14456             repeat_events: 1;
14457             description { state: "default" 0.0;
14458                color: GENLIST_PART_BG_COLOR_INC;
14459             }
14460          }
14461          GENLIST_PART_BG_IMAGE
14462          GENLIST_PART_BOTTOM_LINE
14463          GENLIST_PART_PADDING_TOP( 0 )
14464          GENLIST_PART_PADDING_BOTTOM( 0 )
14465          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
14466          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
14467          part { name: "vertical_line";
14468             clip_to: "disclip";
14469             type: RECT;
14470             mouse_events: 0;
14471             description { state: "default" 0.0;
14472                min: 1 0;
14473                fixed: 1 0;
14474                rel1 {
14475                   relative: 1.0 0.0;
14476                   to_x: "elm.padding.title.right";
14477                }
14478                rel2.to_x: "elm.padding.title.right";
14479                color: GENLIST_PART_LIST_LINE_COLOR_INC;
14480             }
14481          }
14482          part { name: "center_line";
14483             clip_to: "disclip";
14484             type: RECT;
14485             mouse_events: 0;
14486             description { state: "default" 0.0;
14487                min: 0 1;
14488                fixed: 0 1;
14489                color: GENLIST_PART_LIST_LINE_COLOR_INC;
14490                rel1 {
14491                   relative: 1.0 0.5;
14492                   to_x: "vertical_line";
14493                }
14494                rel2.relative: 1.0 0.5;
14495                align: 0.5 1.0;
14496             }
14497          }
14498          part { name: "elm.title";
14499             clip_to: "disclip";
14500             type: TEXTBLOCK;
14501             mouse_events: 0;
14502             scale: 1;
14503             description { state: "default" 0.0;
14504                min: 224 0;
14505                fixed: 1 0;
14506                rel1 {
14507                   relative: 1.0 1.0;
14508                   to_x: "elm.padding.left";
14509                   to_y: "elm.padding.top";
14510                }
14511                rel2 {
14512                   relative: 1.0 0.0;
14513                   to_x: "elm.padding.left";
14514                   to_y: "elm.padding.bottom";
14515                }
14516                align: 0.0 0.5;
14517                text {
14518                   style: "genlist_multiline_textblock_style";
14519                   min: 0 1;
14520                   align: 0.0 0.5;
14521                }
14522             }
14523             description { state: "selected" 0.0;
14524                inherit: "default" 0.0;
14525                text.style: "genlist_multiline_textblock_selected_style";
14526             }
14527          }
14528          part { name: "elm.padding.title.right";
14529             clip_to: "disclip";
14530             type: RECT;
14531             mouse_events: 0;
14532             scale: 1;
14533             description { state: "default" 0.0;
14534                min: GENLIST_PADDING_16_INC 0;
14535                fixed: 1 0;
14536                rel1 {
14537                    relative: 1.0 0.0;
14538                    to_x: "elm.title";
14539                }
14540                rel2.to_x: "elm.title";
14541                visible: 0;
14542                align: 0.0 0.5;
14543             }
14544          }
14545          part { name: "elm.padding.text.left";
14546             clip_to: "disclip";
14547             type: RECT;
14548             mouse_events: 0;
14549             scale: 1;
14550             description { state: "default" 0.0;
14551                min: GENLIST_PADDING_16_INC 0;
14552                fixed: 1 0;
14553                rel1 {
14554                    relative: 1.0 0.0;
14555                    to_x: "vertical_line";
14556                }
14557                rel2.to_x: "vertical_line";
14558                visible: 0;
14559                align: 0.0 0.5;
14560             }
14561          }
14562          part { name: "elm.text.1";
14563             clip_to: "disclip";
14564             type: TEXT;
14565             mouse_events: 0;
14566             scale: 1;
14567             description { state: "default" 0.0;
14568                rel1 {
14569                   relative: 1.0 1.0;
14570                   to_x: "elm.padding.text.left";
14571                   to_y: "elm.padding.top";
14572                }
14573                rel2 {
14574                   relative: 0.0 0.0;
14575                   to_x: "elm.padding.right";
14576                   to_y: "center_line";
14577                }
14578                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
14579                text {
14580                   font: "SLP:style=Roman";
14581                   size: GENLIST_FONT_44_INC;
14582                   min: 0 1;
14583                   align: 0.0 0.5;
14584                   text_class: "slp_roman";
14585                }
14586             }
14587          }
14588          part { name: "elm.text.2";
14589             clip_to: "disclip";
14590             type: TEXT;
14591             mouse_events: 0;
14592             scale: 1;
14593             description { state: "default" 0.0;
14594                rel1 {
14595                   relative: 1.0 1.0;
14596                   to_x: "elm.padding.text.left";
14597                   to_y: "center_line";
14598                }
14599                rel2 {
14600                   relative: 0.0 0.0;
14601                   to_x: "elm.padding.right";
14602                   to_y: "elm.padding.bottom";
14603                }
14604                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
14605                text {
14606                   font: "SLP:style=Roman";
14607                   size: GENLIST_FONT_44_INC;
14608                   min: 0 1;
14609                   align: 0.0 0.5;
14610                   text_class: "slp_roman";
14611                }
14612             }
14613          }
14614          GENLIST_PART_DISCLIP
14615       }
14616       programs {
14617          // signal: elm,state,%s,active
14618          //   a "check" item named %s went active
14619          // signal: elm,state,%s,passive
14620          //   a "check" item named %s went passive
14621          // default is passive
14622          program { name: "go_active";
14623             signal: "elm,state,selected";
14624             source: "elm";
14625             action: STATE_SET "selected" 0.0;
14626             target: "bg_image";
14627             target: "elm.title";
14628             target: "elm.text.1";
14629             target: "elm.text.2";
14630             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14631          }
14632          program { name: "go_passive";
14633             signal: "elm,state,unselected";
14634             source: "elm";
14635             action: STATE_SET "default" 0.0;
14636             target: "bg_image";
14637             target: "elm.title";
14638             target: "elm.text.1";
14639             target: "elm.text.2";
14640             transition: LINEAR 0.1;
14641          }
14642          program { name: "go_disabled";
14643             signal: "elm,state,disabled";
14644             source: "elm";
14645             action: STATE_SET "disabled" 0.0;
14646             target: "disclip";
14647          }
14648          program { name: "go_enabled";
14649             signal: "elm,state,enabled";
14650             source: "elm";
14651             action: STATE_SET "default" 0.0;
14652             target: "disclip";
14653          }
14654          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14655       }
14656    }
14657
14658 // 3.4.5
14659    group { name: "elm/genlist/item_compress/multiline/1title.1text/default";
14660       alias: "elm/genlist/item_compress_odd/multiline/1title.1text/default";
14661       data.item: "stacking" "above";
14662       data.item: "selectraise" "on";
14663       data.item: "texts" "elm.title elm.text";
14664       parts {
14665          part { name: "base";
14666             type: RECT;
14667             repeat_events: 1;
14668             description { state: "default" 0.0;
14669                color: GENLIST_PART_BG_COLOR_INC;
14670             }
14671          }
14672          GENLIST_PART_BG_IMAGE
14673          GENLIST_PART_BOTTOM_LINE
14674          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
14675          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
14676          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
14677          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
14678          part { name: "elm.title";
14679             clip_to: "disclip";
14680             type: TEXT;
14681             mouse_events: 0;
14682             scale: 1;
14683             description { state: "default" 0.0;
14684                min: GENLIST_SIZE_195_INC 0;
14685                fixed: 1 0;
14686                rel1 {
14687                   relative: 1.0 0.0;
14688                   to_x: "elm.padding.left";
14689                }
14690                rel2 {
14691                   relative: 1.0 1.0;
14692                   to_x: "elm.padding.left";
14693                }
14694                align: 0.0 0.0;
14695                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
14696                text {
14697                   font: "SLP:style=Medium";
14698                   size: GENLIST_FONT_32_INC;
14699                   min: 0 1;
14700                   align: 0.0 0.5;
14701                   text_class: "slp_medium";
14702                }
14703             }
14704             description { state: "selected" 0.0;
14705                inherit: "default" 0.0;
14706                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
14707             }
14708          }
14709          part { name: "elm.padding.title.right";
14710             clip_to: "disclip";
14711             type: RECT;
14712             mouse_events: 0;
14713             description { state: "default" 0.0;
14714                min: GENLIST_PADDING_16_INC 0;
14715                fixed: 1 0;
14716                rel1 {
14717                   relative: 1.0 0.0;
14718                   to_x: "elm.title";
14719                }
14720                rel2.to_x: "elm.title";
14721                align: 0.0 0.5;
14722                visible: 0;
14723             }
14724          }
14725          part { name: "vertical_line";
14726             clip_to: "disclip";
14727             type: RECT;
14728             mouse_events: 0;
14729             description { state: "default" 0.0;
14730                min: 1 0;
14731                fixed: 1 0;
14732                rel1 {
14733                   relative: 1.0 0.0;
14734                   to_x: "elm.padding.title.right";
14735                }
14736                rel2.to_x: "elm.padding.title.right";
14737                align: 0.0 0.5;
14738                color: GENLIST_PART_LIST_LINE_COLOR_INC;
14739             }
14740          }
14741          part { name: "elm.padding.text.left";
14742             clip_to: "disclip";
14743             type: RECT;
14744             mouse_events: 0;
14745             description { state: "default" 0.0;
14746                min: GENLIST_PADDING_16_INC 0;
14747                fixed: 1 0;
14748                rel1 {
14749                   relative: 1.0 0.0;
14750                   to_x: "vertical_line";
14751                }
14752                rel2.to_x: "vertical_line";
14753                align: 0.0 0.5;
14754                visible: 0;
14755             }
14756          }
14757          part { name: "elm.text";
14758             clip_to: "disclip";
14759             type: TEXTBLOCK;
14760             mouse_events: 0;
14761             scale: 1;
14762             description { state: "default" 0.0;
14763                rel1 {
14764                   relative: 1.0 1.0;
14765                   to_x: "elm.padding.text.left";
14766                   to_y: "elm.padding.top";
14767                }
14768                rel2 {
14769                   relative: 0.0 0.0;
14770                   to_x: "elm.padding.right";
14771                   to_y: "elm.padding.bottom";
14772                }
14773                text {
14774                   style: "genlist_textblock_flexible_style";
14775                   min: 0 1;
14776                   align: 0.0 0.5;
14777                   text_class: "list_item";
14778                }
14779             }
14780             description { state: "selected" 0.0;
14781                inherit: "default" 0.0;
14782                text.style: "genlist_textblock_flexible_selected_style";
14783             }
14784          }
14785          GENLIST_PART_DISCLIP
14786       }
14787       programs {
14788          // signal: elm,state,%s,active
14789          //   a "check" item named %s went active
14790          // signal: elm,state,%s,passive
14791          //   a "check" item named %s went passive
14792          // default is passive
14793          program { name: "go_active";
14794             signal: "elm,state,selected";
14795             source: "elm";
14796             action: STATE_SET "selected" 0.0;
14797             target: "bg_image";
14798             target: "elm.title";
14799             target: "elm.text";
14800             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14801          }
14802          program { name: "go_passive";
14803             signal: "elm,state,unselected";
14804             source: "elm";
14805             action: STATE_SET "default" 0.0;
14806             target: "bg_image";
14807             target: "elm.title";
14808             target: "elm.text";
14809             transition: LINEAR 0.1;
14810          }
14811          program { name: "go_disabled";
14812             signal: "elm,state,disabled";
14813             source: "elm";
14814             action: STATE_SET "disabled" 0.0;
14815             target: "disclip";
14816          }
14817          program { name: "go_enabled";
14818             signal: "elm,state,enabled";
14819             source: "elm";
14820             action: STATE_SET "default" 0.0;
14821             target: "disclip";
14822          }
14823          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14824       }
14825    }
14826
14827 // 3.4.6
14828    group { name: "elm/genlist/item_compress/multiline/2text.1icon/default";
14829       alias: "elm/genlist/item_compress_odd/multiline/2text.1icon/default";
14830       data.item: "stacking" "above";
14831       data.item: "selectraise" "on";
14832       data.item: "texts" "elm.text.1 elm.text.2";
14833       data.item: "contents" "elm.icon";
14834       parts {
14835          part { name: "base";
14836             type: RECT;
14837             repeat_events: 1;
14838             description { state: "default" 0.0;
14839                color: GENLIST_PART_BG_COLOR_INC;
14840             }
14841          }
14842          GENLIST_PART_BG_IMAGE
14843          GENLIST_PART_BOTTOM_LINE
14844          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
14845          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
14846          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
14847          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
14848          part { name: "elm.text.1";
14849             clip_to: "disclip";
14850             type: TEXT;
14851             mouse_events: 0;
14852             scale: 1;
14853             description { state: "default" 0.0;
14854                min: 0 GENLIST_SIZE_48_INC;
14855                fixed: 0 1;
14856                rel1 {
14857                   relative: 1.0 1.0;
14858                   to_x: "elm.padding.left";
14859                   to_y: "elm.padding.top";
14860                }
14861                rel2 {
14862                   relative: 0.0 1.0;
14863                   to_x: "elm.padding.icon.left";
14864                   to_y: "elm.padding.top";
14865                }
14866                align: 0.0 0.0;
14867                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
14868                text {
14869                   font: "SLP:style=Roman";
14870                   size: GENLIST_FONT_42_INC;
14871                   min: 0 1;
14872                   align: 0.0 0.5;
14873                   text_class: "list_item";
14874                }
14875             }
14876             description { state: "selected" 0.0;
14877                inherit: "default" 0.0;
14878                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
14879             }
14880          }
14881          part { name: "elm.icon";
14882             clip_to: "disclip";
14883             type: SWALLOW;
14884             scale: 1;
14885             description { state: "default" 0.0;
14886                fixed: 1 1;
14887                rel1 {
14888                   relative: 0.0 1.0;
14889                   to_x: "elm.padding.right";
14890                   to_y: "elm.padding.top";
14891                }
14892                rel2 {
14893                   relative: 0.0 0.0;
14894                   to_x: "elm.padding.right";
14895                   to_y: "elm.padding.bottom";
14896                }
14897                align: 1.0 0.5;
14898             }
14899             GENLIST_DESCRIPTION_FLIP_ENABLED
14900          }
14901          part { name: "elm.padding.icon.left";
14902             clip_to: "disclip";
14903             type: RECT;
14904             scale: 1;
14905             description { state: "default" 0.0;
14906                min: GENLIST_PADDING_16_INC 0;
14907                fixed: 1 0;
14908                rel1.to_x: "elm.icon";
14909                rel2 {
14910                   relative: 0.0 1.0;
14911                   to_x: "elm.icon";
14912                }
14913                align: 1.0 0.0;
14914                visible: 0;
14915             }
14916          }
14917          part { name: "elm.text.2";
14918             clip_to: "disclip";
14919             type: TEXTBLOCK;
14920             mouse_events: 0;
14921             scale: 1;
14922             description { state: "default" 0.0;
14923                rel1 {
14924                   relative: 1.0 1.0;
14925                   to_x: "elm.padding.left";
14926                   to_y: "elm.text.1";
14927                }
14928                rel2 {
14929                   relative: 0.0 0.0;
14930                   to_x: "elm.padding.icon.left";
14931                   to_y: "elm.padding.bottom";
14932                }
14933                text {
14934                   style: "genlist_textblock_sub_style";
14935                   min: 0 1;
14936                   align: 0.0 0.5;
14937                }
14938             }
14939             description { state: "selected" 0.0;
14940                inherit: "default" 0.0;
14941                text.style: "genlist_textblock_sub_selected_style";
14942             }
14943          }
14944          GENLIST_PART_DISCLIP
14945       }
14946       programs {
14947          // signal: elm,state,%s,active
14948          //   a "check" item named %s went active
14949          // signal: elm,state,%s,passive
14950          //   a "check" item named %s went passive
14951          // default is passive
14952          program { name: "go_active";
14953             signal: "elm,state,selected";
14954             source: "elm";
14955             action: STATE_SET "selected" 0.0;
14956             target: "bg_image";
14957             target: "elm.text.1";
14958             target: "elm.text.2";
14959             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14960          }
14961          program { name: "go_passive";
14962             signal: "elm,state,unselected";
14963             source: "elm";
14964             action: STATE_SET "default" 0.0;
14965             target: "bg_image";
14966             target: "elm.text.1";
14967             target: "elm.text.2";
14968             transition: LINEAR 0.1;
14969          }
14970          program { name: "go_disabled";
14971             signal: "elm,state,disabled";
14972             source: "elm";
14973             action: STATE_SET "disabled" 0.0;
14974             target: "disclip";
14975          }
14976          program { name: "go_enabled";
14977             signal: "elm,state,enabled";
14978             source: "elm";
14979             action: STATE_SET "default" 0.0;
14980             target: "disclip";
14981          }
14982          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14983       }
14984    }
14985
14986 // 3.4.7
14987    group { name: "elm/genlist/item_compress/multiline/2text.1icon.2/default";
14988       alias: "elm/genlist/item_compress_odd/multiline/2text.1icon.2/default";
14989       data.item: "stacking" "above";
14990       data.item: "selectraise" "on";
14991       data.item: "texts" "elm.text.1 elm.text.2";
14992       data.item: "contents" "elm.icon";
14993       parts {
14994          part { name: "base";
14995             type: RECT;
14996             repeat_events: 1;
14997             description { state: "default" 0.0;
14998                color: GENLIST_PART_BG_COLOR_INC;
14999             }
15000          }
15001          GENLIST_PART_BG_IMAGE
15002          GENLIST_PART_BOTTOM_LINE
15003          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
15004          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
15005          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
15006          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
15007          part { name: "elm.icon";
15008             clip_to: "disclip";
15009             type: SWALLOW;
15010             scale: 1;
15011             description { state: "default" 0.0;
15012                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
15013                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
15014                fixed: 1 1;
15015                rel1 {
15016                   relative: 1.0 1.0;
15017                   to_x: "elm.padding.left";
15018                   to_y: "elm.padding.top";
15019                }
15020                rel2 {
15021                   relative: 1.0 1.0;
15022                   to_x: "elm.padding.left";
15023                   to_y: "elm.text.1";
15024                }
15025                align: 0.0 0.5;
15026             }
15027             GENLIST_DESCRIPTION_FLIP_ENABLED
15028          }
15029          part { name: "elm.padding.icon.right";
15030             clip_to: "disclip";
15031             type: RECT;
15032             scale: 1;
15033             description { state: "default" 0.0;
15034                min: GENLIST_PADDING_16_INC 0;
15035                fixed: 1 0;
15036                rel1 {
15037                   relative: 1.0 0.0;
15038                   to_x: "elm.icon";
15039                }
15040                rel2.to_x: "elm.icon";
15041                align: 0.0 0.0;
15042                visible: 0;
15043             }
15044          }
15045          part { name: "elm.text.1";
15046             clip_to: "disclip";
15047             type: TEXT;
15048             mouse_events: 0;
15049             scale: 1;
15050             description { state: "default" 0.0;
15051                min: 0 GENLIST_SIZE_48_INC;
15052                fixed: 0 1;
15053                rel1 {
15054                   relative: 1.0 1.0;
15055                   to_x: "elm.padding.icon.right";
15056                   to_y: "elm.padding.top";
15057                }
15058                rel2 {
15059                   relative: 0.0 1.0;
15060                   to_x: "elm.padding.right";
15061                   to_y: "elm.padding.top";
15062                }
15063                align: 0.0 0.0;
15064                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
15065                text {
15066                   font: "SLP:style=Roman";
15067                   size: GENLIST_FONT_42_INC;
15068                   min: 0 1;
15069                   align: 0.0 0.5;
15070                   text_class: "list_item";
15071                }
15072             }
15073             description { state: "selected" 0.0;
15074                inherit: "default" 0.0;
15075                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
15076             }
15077          }
15078          part { name: "elm.text.2";
15079             clip_to: "disclip";
15080             type: TEXTBLOCK;
15081             mouse_events: 0;
15082             scale: 1;
15083             description { state: "default" 0.0;
15084                rel1 {
15085                   relative: 1.0 1.0;
15086                   to_x: "elm.padding.left";
15087                   to_y: "elm.text.1";
15088                }
15089                rel2 {
15090                   relative: 0.0 0.0;
15091                   to_x: "elm.padding.right";
15092                   to_y: "elm.padding.bottom";
15093                }
15094                text {
15095                   style: "genlist_textblock_sub_style";
15096                   min: 0 1;
15097                   align: 0.0 0.5;
15098                }
15099             }
15100             description { state: "selected" 0.0;
15101                inherit: "default" 0.0;
15102                text.style: "genlist_textblock_sub_selected_style";
15103             }
15104          }
15105          GENLIST_PART_DISCLIP
15106       }
15107       programs {
15108          // signal: elm,state,%s,active
15109          //   a "check" item named %s went active
15110          // signal: elm,state,%s,passive
15111          //   a "check" item named %s went passive
15112          // default is passive
15113          program { name: "go_active";
15114             signal: "elm,state,selected";
15115             source: "elm";
15116             action: STATE_SET "selected" 0.0;
15117             target: "bg_image";
15118             target: "elm.text.1";
15119             target: "elm.text.2";
15120             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15121          }
15122          program { name: "go_passive";
15123             signal: "elm,state,unselected";
15124             source: "elm";
15125             action: STATE_SET "default" 0.0;
15126             target: "bg_image";
15127             target: "elm.text.1";
15128             target: "elm.text.2";
15129             transition: LINEAR 0.1;
15130          }
15131          program { name: "go_disabled";
15132             signal: "elm,state,disabled";
15133             source: "elm";
15134             action: STATE_SET "disabled" 0.0;
15135             target: "disclip";
15136          }
15137          program { name: "go_enabled";
15138             signal: "elm,state,enabled";
15139             source: "elm";
15140             action: STATE_SET "default" 0.0;
15141             target: "disclip";
15142          }
15143          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15144       }
15145    }
15146
15147    group { name: "elm/genlist/item/readmessage/default";
15148       alias: "elm/genlist/item_odd/readmessage/default";
15149       alias: "elm/genlist/item_compress/readmessage/default";
15150       alias: "elm/genlist/item_compress_odd/readmessage/default";
15151
15152       data.item: "stacking" "above";
15153       data.item: "selectraise" "on";
15154       data.item: "contents" "elm.icon";
15155       parts {
15156          part { name: "base";
15157             type: RECT;
15158             repeat_events: 1;
15159             description { state: "default" 0.0;
15160                color: GENLIST_PART_LIST_BG_COLOR_INC;
15161             }
15162          }
15163          part { name: "elm.icon";
15164             clip_to: "disclip";
15165             type: SWALLOW;
15166             scale: 1;
15167             description { state: "default" 0.0;
15168                //rel1 { relative: 0.0 1.0; to_y: "elm.rect.top.pad"; }
15169                rel2 {
15170                   relative: 0.76 0.0;
15171                   to_y: "elm.padding.bottom";
15172                }
15173             }
15174          }
15175          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_24_INC )
15176          GENLIST_PART_DISCLIP
15177       }
15178       programs {
15179          // signal: elm,state,%s,active
15180          //   a "check" item named %s went active
15181          // signal: elm,state,%s,passive
15182          //   a "check" item named %s went passive
15183          // default is passive
15184          /*program { name: "go_active";
15185             signal: "elm,state,selected";
15186             source: "elm";
15187             action: STATE_SET "selected" 0.0;
15188             target: "bg_image";
15189          }
15190          program { name: "go_passive";
15191             signal: "elm,state,unselected";
15192             source: "elm";
15193             action: STATE_SET "default" 0.0;
15194             target: "bg_image";
15195             transition: LINEAR 0.1;
15196          }*/
15197          program { name: "go_disabled";
15198             signal: "elm,state,disabled";
15199             source: "elm";
15200             action: STATE_SET "disabled" 0.0;
15201             target: "disclip";
15202          }
15203          program { name: "go_enabled";
15204             signal: "elm,state,enabled";
15205             source: "elm";
15206             action: STATE_SET "default" 0.0;
15207             target: "disclip";
15208          }
15209       }
15210    }
15211
15212    group { name: "elm/genlist/item/sentmessage/default";
15213       alias: "elm/genlist/item_odd/sentmessage/default";
15214       alias: "elm/genlist/item_compress/sentmessage/default";
15215       alias: "elm/genlist/item_compress_odd/sentmessage/default";
15216
15217       data.item: "stacking" "above";
15218       data.item: "selectraise" "on";
15219       data.item: "contents" "elm.icon";
15220       parts {
15221          part { name: "base";
15222             type: RECT;
15223             repeat_events: 1;
15224             description { state: "default" 0.0;
15225                color: GENLIST_PART_LIST_BG_COLOR_INC;
15226             }
15227          }
15228          part { name: "elm.icon";
15229             clip_to: "disclip";
15230             type: SWALLOW;
15231             scale: 1;
15232             description { state: "default" 0.0;
15233                rel1.relative: 0.24 0.0; //to_y: "elm.rect.top.pad"; }
15234                rel2 {
15235                   relative: 1.0 0.0;
15236                   to_y: "elm.padding.bottom";
15237                }
15238             }
15239          }
15240          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_24_INC )
15241          GENLIST_PART_DISCLIP
15242       }
15243       programs {
15244          // signal: elm,state,%s,active
15245          //   a "check" item named %s went active
15246          // signal: elm,state,%s,passive
15247          //   a "check" item named %s went passive
15248          // default is passive
15249          /*program { name: "go_active";
15250             signal: "elm,state,selected";
15251             source: "elm";
15252             action: STATE_SET "selected" 0.0;
15253             target: "bg_image";
15254          }
15255          program { name: "go_passive";
15256             signal: "elm,state,unselected";
15257             source: "elm";
15258             action: STATE_SET "default" 0.0;
15259             target: "bg_image";
15260             transition: LINEAR 0.1;
15261          }*/
15262          program { name: "go_disabled";
15263             signal: "elm,state,disabled";
15264             source: "elm";
15265             action: STATE_SET "disabled" 0.0;
15266             target: "disclip";
15267          }
15268          program { name: "go_enabled";
15269             signal: "elm,state,enabled";
15270             source: "elm";
15271             action: STATE_SET "default" 0.0;
15272             target: "disclip";
15273          }
15274       }
15275    }
15276
15277 // 4.3.4
15278    group { name : "elm/genlist/item/dialogue/title/default";
15279       alias: "elm/genlist/item_odd/dialogue/title/default";
15280       alias: "elm/genlist/item_compress/dialogue/title/default";
15281       alias: "elm/genlist/item_compress_odd/dialogue/title/default";
15282       alias: "elm/layout/dialogue/title";
15283
15284       data.item: "stacking" "above";
15285       data.item: "selectraise" "on";
15286       data.item: "texts" "elm.text";
15287       data.item: "contents" "elm.icon";
15288       data.item: "treesize" "GENLIST_TREESIZE_32_INC";
15289
15290       parts {
15291          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_77_INC )
15292          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
15293          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
15294          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
15295          GENLIST_PART_BOTTOM_LINE
15296          part { name: "elm.text";
15297             type: TEXT;
15298             scale: 1;
15299             description { state: "default" 0.0;
15300                rel1 {
15301                   relative: 1.0 0.0;
15302                   to_x: "elm.padding.left";
15303                }
15304                rel2 {
15305                   relative: 0.0 0.0;
15306                   to_x: "elm.padding.icon.left";
15307                   to_y: "elm.padding.bottom";
15308                }
15309                color: GENLIST_DIALOGUE_FONT_SUB_TITLE_COLOR_INC;
15310                text {
15311                   font: "SLP:style=Medium";
15312                   size: GENLIST_FONT_28_INC;
15313                   min: 0 1;
15314                   align: 0.0 0.5;
15315                   text_class: "list_item";
15316                }
15317             }
15318          }
15319          part { name: "elm.icon";
15320             type: SWALLOW;
15321             scale: 1;
15322             description { state: "default" 0.0;
15323                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
15324                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
15325                fixed: 1 1;
15326                align: 1.0 1.0;
15327                rel1 {
15328                   relative: 0.0 0.0;
15329                   to_x: "elm.padding.right";
15330                   to_y: "elm.padding.bottom";
15331                }
15332                rel2 {
15333                   relative: 0.0 0.0;
15334                   to_x: "elm.padding.right";
15335                   to_y: "elm.padding.bottom";
15336                }
15337             }
15338          }
15339          part { name: "elm.padding.icon.left";
15340             type: RECT;
15341             scale: 1;
15342             mouse_events: 0;
15343             description { state: "default" 0.0;
15344                visible: 0;
15345                min: GENLIST_SIZE_16_INC 0;
15346                fixed: 1 0;
15347                align: 1.0 0.5;
15348                rel1.to_x: "elm.icon";
15349                rel2 {
15350                   relative: 0.0 1.0;
15351                   to_x: "elm.icon";
15352                }
15353             }
15354          }
15355          GENLIST_PART_DISCLIP
15356       }
15357    }
15358
15359    group { name : "elm/genlist/item/dialogue/seperator/default";
15360       alias: "elm/genlist/item_odd/dialogue/seperator/default";
15361       alias: "elm/genlist/item_compress/dialogue/seperator/default";
15362       alias: "elm/genlist/item_compress_odd/dialogue/seperator/default";
15363       alias: "elm/genlist/item/dialogue/separator/21/with_line/default";
15364       alias: "elm/genlist/item_odd/dialogue/separator/21/with_line/default";
15365       alias: "elm/genlist/item_compress/dialogue/separator/21/with_line/default";
15366       alias: "elm/genlist/item_compress_odd/dialogue/separator/21/with_line/default";
15367       alias: "elm/layout/dialogue/separator/hd33/with_line";
15368
15369       data.item: "stacking" "above";
15370       data.item: "selectraise" "on";
15371       data.item: "treesize" "GENLIST_TREESIZE_32_INC";
15372
15373       parts {
15374          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_33_INC )
15375          GENLIST_PART_BOTTOM_LINE
15376          GENLIST_PART_DISCLIP
15377       }
15378    }
15379
15380    group { name : "elm/genlist/item/dialogue/seperator.2/default";
15381       alias: "elm/genlist/item_odd/dialogue/seperator.2/default";
15382       alias: "elm/genlist/item_compress/dialogue/seperator.2/default";
15383       alias: "elm/genlist/item_compress_odd/dialogue/seperator.2/default";
15384       alias: "elm/genlist/item/dialogue/separator/11/with_line/default";
15385       alias: "elm/genlist/item_odd/dialogue/separator/11/with_line/default";
15386       alias: "elm/genlist/item_compress/dialogue/separator/11/with_line/default";
15387       alias: "elm/genlist/item_compress_odd/dialogue/separator/11/with_line/default";
15388       alias: "elm/layout/dialogue/separator/hd18/with_line";
15389
15390       data.item: "stacking" "above";
15391       data.item: "selectraise" "on";
15392       data.item: "treesize" "GENLIST_TREESIZE_32_INC";
15393
15394       parts {
15395          GENLIST_PART_DIALOGUE_BASE( GENLIST_PADDING_18_INC )
15396          GENLIST_PART_BOTTOM_LINE
15397          GENLIST_PART_DISCLIP
15398       }
15399    }
15400
15401    group { name : "elm/genlist/item/dialogue/seperator.3/default";
15402       alias: "elm/genlist/item_odd/dialogue/seperator.3/default";
15403       alias: "elm/genlist/item_compress/dialogue/seperator.3/default";
15404       alias: "elm/genlist/item_compress_odd/dialogue/seperator.3/default";
15405       alias: "elm/genlist/item/dialogue/separator/20/default";
15406       alias: "elm/genlist/item_odd/dialogue/separator/20/default";
15407       alias: "elm/genlist/item_compress/dialogue/separator/20/default";
15408       alias: "elm/genlist/item_compress_odd/dialogue/separator/20/default";
15409       alias: "elm/layout/dialogue/separator/hd32";
15410
15411       data.item: "stacking" "above";
15412       data.item: "selectraise" "on";
15413       data.item: "treesize" "GENLIST_TREESIZE_32_INC";
15414
15415       parts {
15416          GENLIST_PART_DIALOGUE_BASE( GENLIST_PADDING_32_INC )
15417          GENLIST_PART_DISCLIP
15418       }
15419    }
15420
15421    group { name : "elm/genlist/item/dialogue/seperator.4/default";
15422       alias: "elm/genlist/item_odd/dialogue/seperator.4/default";
15423       alias: "elm/genlist/item_compress/dialogue/seperator.4/default";
15424       alias: "elm/genlist/item_compress_odd/dialogue/seperator.4/default";
15425       alias: "elm/genlist/item/dialogue/separator/10/default";
15426       alias: "elm/genlist/item_odd/dialogue/separator/10/default";
15427       alias: "elm/genlist/item_compress/dialogue/separator/10/default";
15428       alias: "elm/genlist/item_compress_odd/dialogue/separator/10/default";
15429       alias: "elm/layout/dialogue/separator/hd16";
15430
15431       data.item: "stacking" "above";
15432       data.item: "selectraise" "on";
15433       data.item: "treesize" "GENLIST_TREESIZE_32_INC";
15434
15435       parts {
15436          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_16_INC )
15437          GENLIST_PART_DISCLIP
15438       }
15439    }
15440
15441    group { name : "elm/genlist/item/dialogue/seperator.5/default";
15442       alias: "elm/genlist/item_odd/dialogue/seperator.5/default";
15443       alias: "elm/genlist/item_compress/dialogue/seperator.5/default";
15444       alias: "elm/genlist/item_compress_odd/dialogue/seperator.5/default";
15445       alias: "elm/genlist/item/dialogue/separator/1/with_line/default";
15446       alias: "elm/genlist/item_odd/dialogue/separator/1/with_line/default";
15447       alias: "elm/genlist/item_compress/dialogue/separator/1/with_line/default";
15448       alias: "elm/genlist/item_compress_odd/dialogue/separator/1/with_line/default";
15449       alias: "elm/layout/dialogue/separator/hd1";
15450
15451       data.item: "stacking" "above";
15452       data.item: "selectraise" "on";
15453       data.item: "treesize" "GENLIST_TREESIZE_32_INC";
15454
15455       parts {
15456          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_1_INC )
15457          GENLIST_PART_BOTTOM_LINE
15458          GENLIST_PART_DISCLIP
15459       }
15460    }
15461
15462 // 4.1.1
15463    group { name: "elm/genlist/item/dialogue/1text/default";
15464       alias: "elm/genlist/item_odd/dialogue/1text/default";
15465       alias: "elm/genlist/item_compress/dialogue/1text/default";
15466       alias: "elm/genlist/item_compress_odd/dialogue/1text/default";
15467       alias: "elm/genlist/item/dialogue.1text/default";
15468       alias: "elm/genlist/item_odd/dialogue.1text/default";
15469       alias: "elm/genlist/item_compress/dialogue.1text/default";
15470       alias: "elm/genlist/item_compress_odd/dialogue.1text/default";
15471       alias: "elm/layout/dialogue/1text";
15472       data.item: "stacking" "above";
15473       data.item: "selectraise" "on";
15474       data.item: "texts" "elm.text";
15475       data.item: "flips" "elm.flip.content";
15476       parts {
15477          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
15478          GENLIST_PART_BG_IMAGE
15479          GENLIST_PART_BOTTOM_LINE
15480          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15481          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
15482          GENLIST_PART_DIALOGUE_ITEM
15483          part { name: "elm.text";
15484             clip_to: "disclip";
15485             type: TEXT;
15486             mouse_events: 0;
15487             scale: 1;
15488             description { state: "default" 0.0;
15489                rel1 {
15490                   relative: 1.0  0.0;
15491                   to_x: "elm.padding.left";
15492                }
15493                rel2 {
15494                   relative: 0.0 1.0;
15495                   to_x: "elm.padding.right";
15496                }
15497                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
15498                text {
15499                   font: "SLP:style=Roman";
15500                   size: GENLIST_FONT_44_INC;
15501                   min: 0 1;
15502                   align: 0.0 0.5;
15503                   text_class: "list_item";
15504                }
15505             }
15506             description { state: "selected" 0.0;
15507                inherit: "default" 0.0;
15508                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
15509             }
15510             GENLIST_DESCRIPTION_FLIP_ENABLED
15511          }
15512          GENLIST_PART_FLIP
15513          GENLIST_PART_DISCLIP
15514       }
15515       programs {
15516          // signal: elm,state,%s,active
15517          //   a "check" item named %s went active
15518          // signal: elm,state,%s,passive
15519          //   a "check" item named %s went passive
15520          // default is passive
15521          program { name: "go_active";
15522             signal: "elm,state,selected";
15523             source: "elm";
15524             action: STATE_SET "selected" 0.0;
15525             target: "bg_image";
15526             target: "elm.text";
15527             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15528          }
15529          program { name: "go_passive";
15530             signal: "elm,state,unselected";
15531             source: "elm";
15532             action: STATE_SET "default" 0.0;
15533             target: "bg_image";
15534             target: "elm.text";
15535             transition: LINEAR 0.1;
15536          }
15537          program { name: "go_disabled";
15538             signal: "elm,state,disabled";
15539             source: "elm";
15540             action: STATE_SET "disabled" 0.0;
15541             target: "disclip";
15542          }
15543          program { name: "go_enabled";
15544             signal: "elm,state,enabled";
15545             source: "elm";
15546             action: STATE_SET "default" 0.0;
15547             target: "disclip";
15548          }
15549          GENLIST_PROGRAM_FLIP_1TEXT
15550          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15551       }
15552    }
15553
15554 // 4.1.2
15555    group { name: "elm/genlist/item/dialogue/1text.1icon/default";
15556       alias: "elm/genlist/item_odd/dialogue/1text.1icon/default";
15557       alias: "elm/genlist/item_compress/dialogue/1text.1icon/default";
15558       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon/default";
15559       alias: "elm/layout/dialogue/1text.1icon";
15560       data.item: "stacking" "above";
15561       data.item: "selectraise" "on";
15562       data.item: "texts" "elm.text";
15563       data.item: "contents" "elm.icon";
15564       data.item: "flips" "elm.flip.content";
15565       parts {
15566          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
15567          GENLIST_PART_BG_IMAGE
15568          GENLIST_PART_BOTTOM_LINE
15569          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15570          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
15571          GENLIST_PART_DIALOGUE_ITEM
15572          part { name: "elm.icon";
15573             clip_to: "disclip";
15574             type: SWALLOW;
15575             scale: 1;
15576             description { state: "default" 0.0;
15577                fixed: 1 1;
15578                rel1.to_x: "elm.padding.right";
15579                rel2 {
15580                   relative: 0.0 1.0;
15581                   to_x: "elm.padding.right";
15582                }
15583                align: 1.0 0.5;
15584             }
15585             GENLIST_DESCRIPTION_FLIP_ENABLED
15586          }
15587          part { name: "elm.padding.icon.left";
15588             clip_to: "disclip";
15589             type: RECT;
15590             scale: 1;
15591             description { state: "default" 0.0;
15592                min: GENLIST_PADDING_16_INC 0;
15593                fixed: 1 0;
15594                rel1.to_x: "elm.icon";
15595                rel2 {
15596                   relative: 0.0 1.0;
15597                   to_x: "elm.icon";
15598                }
15599                align: 1.0 0.0;
15600                visible: 0;
15601             }
15602          }
15603          part { name: "elm.text";
15604             clip_to: "disclip";
15605             type: TEXT;
15606             mouse_events: 0;
15607             scale: 1;
15608             description { state: "default" 0.0;
15609                rel1 {
15610                   relative: 1.0 0.0;
15611                   to_x: "elm.padding.left";
15612                }
15613                rel2 {
15614                   relative: 0.0 1.0;
15615                   to_x: "elm.padding.icon.left";
15616                }
15617                align: 0.0 0.0;
15618                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
15619                text {
15620                   font: "SLP:style=Roman";
15621                   size: GENLIST_FONT_44_INC;
15622                   min: 0 1;
15623                   align: 0.0 0.5;
15624                   text_class: "list_item";
15625                }
15626             }
15627             description { state: "selected" 0.0;
15628                inherit: "default" 0.0;
15629                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
15630             }
15631             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
15632             GENLIST_DESCRIPTION_FLIP_ENABLED
15633          }
15634          GENLIST_PART_FLIP
15635          GENLIST_PART_DISCLIP
15636       }
15637       programs {
15638          program { name: "go_active";
15639             signal: "elm,state,selected";
15640             source: "elm";
15641             action: STATE_SET "selected" 0.0;
15642             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_1TEXT
15643             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15644          }
15645          program { name: "go_passive";
15646             signal: "elm,state,unselected";
15647             source: "elm";
15648             action: STATE_SET "default" 0.0;
15649             target: "bg_image";
15650             target: "elm.text";
15651             transition: LINEAR 0.1;
15652          }
15653          program { name: "go_disabled";
15654             signal: "elm,state,disabled";
15655             source: "elm";
15656             action: STATE_SET "disabled" 0.0;
15657             target: "disclip";
15658          }
15659          program { name: "go_enabled";
15660             signal: "elm,state,enabled";
15661             source: "elm";
15662             action: STATE_SET "default" 0.0;
15663             target: "disclip";
15664          }
15665          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
15666          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15667       }
15668    }
15669
15670 // 4.1.3
15671    group { name: "elm/genlist/item/dialogue/1text.1icon.2/default";
15672       alias: "elm/genlist/item_odd/dialogue/1text.1icon.2/default";
15673       alias: "elm/genlist/item_compress/dialogue/1text.1icon.2/default";
15674       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.2/default";
15675       alias: "elm/layout/dialogue/1text.1icon.2";
15676       data.item: "stacking" "above";
15677       data.item: "selectraise" "on";
15678       data.item: "texts" "elm.text";
15679       data.item: "contents" "elm.icon";
15680       data.item: "flips" "elm.flip.content";
15681       parts {
15682          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
15683          GENLIST_PART_BG_IMAGE
15684          GENLIST_PART_BOTTOM_LINE
15685          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15686          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
15687          GENLIST_PART_DIALOGUE_ITEM
15688          part { name: "elm.icon";
15689             clip_to: "disclip";
15690             type: SWALLOW;
15691             scale: 1;
15692             description { state: "default" 0.0;
15693                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
15694                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
15695                fixed: 1 1;
15696                rel1 {
15697                   relative: 1.0 0.0;
15698                   to_x: "elm.padding.left";
15699                }
15700                rel2 {
15701                   relative: 1.0 1.0;
15702                   to_x: "elm.padding.left";
15703                }
15704                align: 0.0 0.5;
15705             }
15706             GENLIST_DESCRIPTION_FLIP_ENABLED
15707          }
15708          part { name: "elm.padding.icon.right";
15709             clip_to: "disclip";
15710             type: RECT;
15711             scale: 1;
15712             description { state: "default" 0.0;
15713                min: GENLIST_PADDING_16_INC 0;
15714                fixed: 1 0;
15715                rel1 {
15716                   relative: 1.0 0.0;
15717                   to_x: "elm.icon";
15718                }
15719                rel2.to_x: "elm.icon";
15720                align: 0.0 0.0;
15721                visible: 0;
15722             }
15723          }
15724          part { name: "elm.text";
15725             clip_to: "disclip";
15726             type: TEXT;
15727             mouse_events: 0;
15728             scale: 1;
15729             description { state: "default" 0.0;
15730                rel1 {
15731                   relative: 1.0 0.0;
15732                   to_x: "elm.padding.icon.right";
15733                }
15734                rel2 {
15735                   relative: 0.0 1.0;
15736                   to_x: "elm.padding.right";
15737                }
15738                align: 0.0 0.0;
15739                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
15740                text {
15741                   font: "SLP:style=Roman";
15742                   size: GENLIST_FONT_44_INC;
15743                   min: 0 1;
15744                   align: 0.0 0.5;
15745                   text_class: "list_item";
15746                }
15747             }
15748             description { state: "selected" 0.0;
15749                inherit: "default" 0.0;
15750                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
15751             }
15752             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
15753             GENLIST_DESCRIPTION_FLIP_ENABLED
15754          }
15755          GENLIST_PART_FLIP
15756          GENLIST_PART_DISCLIP
15757       }
15758       programs {
15759          program { name: "go_active";
15760             signal: "elm,state,selected";
15761             source: "elm";
15762             action: STATE_SET "selected" 0.0;
15763             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_1TEXT
15764             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15765          }
15766          program { name: "go_passive";
15767             signal: "elm,state,unselected";
15768             source: "elm";
15769             action: STATE_SET "default" 0.0;
15770             target: "bg_image";
15771             target: "elm.text";
15772             transition: LINEAR 0.1;
15773          }
15774          program { name: "go_disabled";
15775             signal: "elm,state,disabled";
15776             source: "elm";
15777             action: STATE_SET "disabled" 0.0;
15778             target: "disclip";
15779          }
15780          program { name: "go_enabled";
15781             signal: "elm,state,enabled";
15782             source: "elm";
15783             action: STATE_SET "default" 0.0;
15784             target: "disclip";
15785          }
15786          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
15787          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15788       }
15789    }
15790
15791 // 4.1.4
15792    group { name: "elm/genlist/item/dialogue/1text.2icon/default";
15793       alias: "elm/genlist/item_odd/dialogue/1text.2icon/default";
15794       alias: "elm/genlist/item_compress/dialogue/1text.2icon/default";
15795       alias: "elm/genlist/item_compress_odd/dialogue/1text.2icon/default";
15796       alias: "elm/layout/dialogue/1text.2icon";
15797       data.item: "stacking" "above";
15798       data.item: "selectraise" "on";
15799       data.item: "texts" "elm.text";
15800       data.item: "contents" "elm.icon.1 elm.icon.2";
15801       data.item: "flips" "elm.flip.content";
15802       parts {
15803          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
15804          GENLIST_PART_BG_IMAGE
15805          GENLIST_PART_BOTTOM_LINE
15806          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15807          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
15808          GENLIST_PART_DIALOGUE_ITEM
15809          part { name: "elm.icon.1";
15810             clip_to: "disclip";
15811             type: SWALLOW;
15812             scale: 1;
15813             description { state: "default" 0.0;
15814                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
15815                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
15816                fixed: 1 1;
15817                rel1 {
15818                   relative: 1.0 0.0;
15819                   to_x: "elm.padding.left";
15820                }
15821                rel2 {
15822                   relative: 1.0 1.0;
15823                   to_x: "elm.padding.left";
15824                }
15825                align: 0.0 0.5;
15826             }
15827             GENLIST_DESCRIPTION_FLIP_ENABLED
15828          }
15829          part { name: "elm.padding.icon.right";
15830             clip_to: "disclip";
15831             type: RECT;
15832             scale: 1;
15833             description { state: "default" 0.0;
15834                min: GENLIST_PADDING_16_INC 0;
15835                fixed: 1 0;
15836                rel1 {
15837                   relative: 1.0 0.0;
15838                   to_x: "elm.icon.1";
15839                }
15840                rel2.to_x: "elm.icon.1";
15841                align: 0.0 0.0;
15842                visible: 0;
15843             }
15844          }
15845          part { name: "elm.icon.2";
15846             clip_to: "disclip";
15847             type: SWALLOW;
15848             scale: 1;
15849             description { state: "default" 0.0;
15850                fixed: 1 1;
15851                rel1.to_x: "elm.padding.right";
15852                rel2 {
15853                   relative: 0.0 1.0;
15854                   to_x: "elm.padding.right";
15855                }
15856                align: 1.0 0.5;
15857             }
15858             GENLIST_DESCRIPTION_FLIP_ENABLED
15859          }
15860          part { name: "elm.padding.icon.left";
15861             clip_to: "disclip";
15862             type: RECT;
15863             scale: 1;
15864             description { state: "default" 0.0;
15865                min: GENLIST_PADDING_16_INC 0;
15866                fixed: 1 0;
15867                rel1.to_x: "elm.icon.2";
15868                rel2 {
15869                   relative: 0.0 1.0;
15870                   to_x: "elm.icon.2";
15871                }
15872                align: 1.0 0.0;
15873                visible: 0;
15874             }
15875          }
15876          part { name: "elm.text";
15877             clip_to: "disclip";
15878             type: TEXT;
15879             mouse_events: 0;
15880             scale: 1;
15881             description { state: "default" 0.0;
15882                rel1 {
15883                   relative: 1.0 0.0;
15884                   to_x: "elm.padding.icon.right";
15885                }
15886                rel2 {
15887                   relative: 0.0 1.0;
15888                   to_x: "elm.padding.icon.left";
15889                }
15890                align: 0.0 0.0;
15891                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
15892                text {
15893                   font: "SLP:style=Roman";
15894                   size: GENLIST_FONT_44_INC;
15895                   min: 0 1;
15896                   align: 0.0 0.5;
15897                   text_class: "list_item";
15898                }
15899             }
15900             description { state: "selected" 0.0;
15901                inherit: "default" 0.0;
15902                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
15903             }
15904             GENLIST_DESCRIPTION_FLIP_ENABLED
15905          }
15906          GENLIST_PART_FLIP
15907          GENLIST_PART_DISCLIP
15908       }
15909       programs {
15910          program { name: "go_active";
15911             signal: "elm,state,selected";
15912             source: "elm";
15913             action: STATE_SET "selected" 0.0;
15914             target: "bg_image";
15915             target: "elm.text";
15916             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15917          }
15918          program { name: "go_passive";
15919             signal: "elm,state,unselected";
15920             source: "elm";
15921             action: STATE_SET "default" 0.0;
15922             target: "bg_image";
15923             target: "elm.text";
15924             transition: LINEAR 0.1;
15925          }
15926          program { name: "go_disabled";
15927             signal: "elm,state,disabled";
15928             source: "elm";
15929             action: STATE_SET "disabled" 0.0;
15930             target: "disclip";
15931          }
15932          program { name: "go_enabled";
15933             signal: "elm,state,enabled";
15934             source: "elm";
15935             action: STATE_SET "default" 0.0;
15936             target: "disclip";
15937          }
15938          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
15939          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15940       }
15941    }
15942
15943 // 4.1.5
15944    group { name: "elm/genlist/item/dialogue/2text.1icon/default";
15945       alias: "elm/genlist/item_odd/dialogue/2text.1icon/default";
15946       alias: "elm/genlist/item_compress/dialogue/2text.1icon/default";
15947       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon/default";
15948       alias: "elm/layout/dialogue/2text.1icon";
15949       data.item: "stacking" "above";
15950       data.item: "selectraise" "on";
15951       data.item: "texts" "elm.text.1 elm.text.2";
15952       data.item: "contents" "elm.icon";
15953       data.item: "flips" "elm.flip.content";
15954       parts {
15955          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
15956          GENLIST_PART_BG_IMAGE
15957          GENLIST_PART_BOTTOM_LINE
15958          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15959          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
15960          GENLIST_PART_DIALOGUE_ITEM
15961          part { name: "elm.icon";
15962             clip_to: "disclip";
15963             type: SWALLOW;
15964             scale: 1;
15965             description { state: "default" 0.0;
15966                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
15967                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
15968                fixed: 1 1;
15969                rel1 {
15970                   relative: 1.0 0.0;
15971                   to_x: "elm.padding.left";
15972                }
15973                rel2 {
15974                   relative: 1.0 1.0;
15975                   to_x: "elm.padding.left";
15976                }
15977                align: 0.0 0.5;
15978             }
15979             GENLIST_DESCRIPTION_FLIP_ENABLED
15980          }
15981          part { name: "elm.padding.icon.right";
15982             clip_to: "disclip";
15983             type: RECT;
15984             scale: 1;
15985             description { state: "default" 0.0;
15986                min: GENLIST_PADDING_16_INC 0;
15987                fixed: 1 0;
15988                rel1 {
15989                   relative: 1.0 0.0;
15990                   to_x: "elm.icon";
15991                }
15992                rel2.to_x: "elm.icon";
15993                align: 0.0 0.0;
15994                visible: 0;
15995             }
15996          }
15997          part { name: "elm.text.2";
15998             clip_to: "disclip";
15999             type: TEXT;
16000             mouse_events: 0;
16001             scale: 1;
16002             description { state: "default" 0.0;
16003                min: GENLIST_SIZE_133_INC 0;
16004                fixed: 1 0;
16005                rel1.to_x: "elm.padding.right";
16006                rel2 {
16007                   relative: 0.0 1.0;
16008                   to_x: "elm.padding.right";
16009                }
16010                align: 1.0 0.5;
16011                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;;
16012                text {
16013                   font: "SLP:style=Medium";
16014                   size: GENLIST_FONT_32_INC;
16015                   min: 0 1;
16016                   align: 1.0 0.5;
16017                   text_class: "slp_medium";
16018                }
16019             }
16020             description { state: "selected" 0.0;
16021                inherit: "default" 0.0;
16022                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
16023             }
16024             GENLIST_DESCRIPTION_FLIP_ENABLED
16025          }
16026          part { name: "elm.padding.text2.left";
16027             type: RECT;
16028             mouse_events: 0;
16029             scale: 1;
16030             description { state: "default" 0.0;
16031                min: GENLIST_SIZE_32_INC 0;
16032                fixed: 1 0;
16033                rel1.to_x: "elm.text.2";
16034                rel2 {
16035                   relative: 0.0 1.0;
16036                   to_x: "elm.text.2";
16037                }
16038                visible: 0;
16039                align: 1.0 0.5;
16040             }
16041          }
16042          part { name: "elm.text.1";
16043             clip_to: "disclip";
16044             type: TEXT;
16045             mouse_events: 0;
16046             scale: 1;
16047             description { state: "default" 0.0;
16048                rel1 {
16049                   relative: 1.0 0.0;
16050                   to_x: "elm.padding.icon.right";
16051                }
16052                rel2 {
16053                   relative: 0.0 1.0;
16054                   to_x: "elm.padding.text2.left";
16055                }
16056                align: 0.0 0.0;
16057                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
16058                text {
16059                   font: "SLP:style=Roman";
16060                   size: GENLIST_FONT_44_INC;
16061                   min: 0 1;
16062                   align: 0.0 0.5;
16063                   text_class: "list_item";
16064                }
16065             }
16066             description { state: "selected" 0.0;
16067                inherit: "default" 0.0;
16068                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
16069             }
16070             GENLIST_DESCRIPTION_FLIP_ENABLED
16071          }
16072          GENLIST_PART_FLIP
16073          GENLIST_PART_DISCLIP
16074       }
16075       programs {
16076          program { name: "go_active";
16077             signal: "elm,state,selected";
16078             source: "elm";
16079             action: STATE_SET "selected" 0.0;
16080             target: "bg_image";
16081             target: "elm.text.1";
16082             target: "elm.text.2";
16083             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
16084          }
16085          program { name: "go_passive";
16086             signal: "elm,state,unselected";
16087             source: "elm";
16088             action: STATE_SET "default" 0.0;
16089             target: "bg_image";
16090             target: "elm.text.1";
16091             target: "elm.text.2";
16092             transition: LINEAR 0.1;
16093          }
16094          program { name: "go_disabled";
16095             signal: "elm,state,disabled";
16096             source: "elm";
16097             action: STATE_SET "disabled" 0.0;
16098             target: "disclip";
16099          }
16100          program { name: "go_enabled";
16101             signal: "elm,state,enabled";
16102             source: "elm";
16103             action: STATE_SET "default" 0.0;
16104             target: "disclip";
16105          }
16106          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
16107          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
16108       }
16109    }
16110
16111 // 4.1.6
16112    group { name: "elm/genlist/item/dialogue/1text.1icon.3/default";
16113       alias: "elm/genlist/item_odd/dialogue/1text.1icon.3/default";
16114       alias: "elm/genlist/item_compress/dialogue/1text.1icon.3/default";
16115       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.3/default";
16116       alias: "elm/layout/dialogue/1text.1icon.3";
16117       data.item: "stacking" "above";
16118       data.item: "selectraise" "on";
16119       data.item: "texts" "elm.text";
16120       data.item: "contents" "elm.icon";
16121       data.item: "flips" "elm.flip.content";
16122       parts {
16123          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
16124          GENLIST_PART_BG_IMAGE
16125          GENLIST_PART_BOTTOM_LINE
16126          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
16127          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
16128          GENLIST_PART_DIALOGUE_ITEM
16129          part { name: "elm.icon";
16130             clip_to: "disclip";
16131             type: SWALLOW;
16132             scale: 1;
16133             description { state: "default" 0.0;
16134                min: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
16135                max: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
16136                fixed: 1 1;
16137                rel1 {
16138                   relative: 1.0 0.0;
16139                   to_x: "elm.padding.left";
16140                }
16141                rel2 {
16142                   relative: 1.0 1.0;
16143                   to_x: "elm.padding.left";
16144                }
16145                align: 0.0 0.5;
16146             }
16147             GENLIST_DESCRIPTION_FLIP_ENABLED
16148          }
16149          part { name: "elm.padding.icon.right";
16150             type: RECT;
16151             scale: 1;
16152             description { state: "default" 0.0;
16153                min: GENLIST_PADDING_16_INC 0;
16154                fixed: 1 0;
16155                rel1 {
16156                   relative: 1.0 0.0;
16157                   to_x: "elm.icon";
16158                }
16159                rel2.to_x: "elm.icon";
16160                align: 0.0 0.0;
16161                visible: 0;
16162             }
16163          }
16164          part { name: "elm.text";
16165             clip_to: "disclip";
16166             type: TEXT;
16167             mouse_events: 0;
16168             scale: 1;
16169             description { state: "default" 0.0;
16170                rel1 {
16171                   relative: 1.0 0.0;
16172                   to_x: "elm.padding.icon.right";
16173                }
16174                rel2 {
16175                   relative: 0.0 1.0;
16176                   to_x: "elm.padding.right";
16177                }
16178                align: 0.0 0.0;
16179                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
16180                text {
16181                   font: "SLP:style=Roman";
16182                   size: GENLIST_FONT_44_INC;
16183                   min: 0 1;
16184                   align: 0.0 0.5;
16185                   text_class: "list_item";
16186                }
16187             }
16188             description { state: "selected" 0.0;
16189                inherit: "default" 0.0;
16190                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
16191             }
16192             GENLIST_DESCRIPTION_FLIP_ENABLED
16193          }
16194          GENLIST_PART_FLIP
16195          GENLIST_PART_DISCLIP
16196       }
16197       programs {
16198          program { name: "go_active";
16199             signal: "elm,state,selected";
16200             source: "elm";
16201             action: STATE_SET "selected" 0.0;
16202             target: "bg_image";
16203             target: "elm.text";
16204             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
16205          }
16206          program { name: "go_passive";
16207             signal: "elm,state,unselected";
16208             source: "elm";
16209             action: STATE_SET "default" 0.0;
16210             target: "bg_image";
16211             target: "elm.text";
16212             transition: LINEAR 0.1;
16213          }
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          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
16227          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
16228       }
16229    }
16230
16231 // 4.1.6 textblock for message
16232    group { name: "elm/genlist/item/dialogue/1text.1icon.6/default";
16233       alias: "elm/genlist/item_odd/dialogue/1text.1icon.6/default";
16234       alias: "elm/genlist/item_compress/dialogue/1text.1icon.6/default";
16235       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.6/default";
16236       alias: "elm/layout/dialogue/1text.1icon.6";
16237       data.item: "stacking" "above";
16238       data.item: "selectraise" "on";
16239       data.item: "texts" "elm.text";
16240       data.item: "contents" "elm.icon";
16241       data.item: "flips" "elm.flip.content";
16242       parts {
16243          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
16244          GENLIST_PART_BG_IMAGE
16245          GENLIST_PART_BOTTOM_LINE
16246          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
16247          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
16248          GENLIST_PART_DIALOGUE_ITEM
16249          part { name: "elm.icon";
16250             clip_to: "disclip";
16251             type: SWALLOW;
16252             scale: 1;
16253             description { state: "default" 0.0;
16254                min: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
16255                max: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
16256                fixed: 1 1;
16257                rel1 {
16258                   relative: 1.0 0.0;
16259                   to_x: "elm.padding.left";
16260                }
16261                rel2 {
16262                   relative: 1.0 1.0;
16263                   to_x: "elm.padding.left";
16264                }
16265                align: 0.0 0.5;
16266             }
16267             GENLIST_DESCRIPTION_FLIP_ENABLED
16268          }
16269          part { name: "elm.padding.icon.right";
16270             type: RECT;
16271             scale: 1;
16272             description { state: "default" 0.0;
16273                min: GENLIST_PADDING_16_INC 0;
16274                fixed: 1 0;
16275                rel1 {
16276                   relative: 1.0 0.0;
16277                   to_x: "elm.icon";
16278                }
16279                rel2.to_x: "elm.icon";
16280                align: 0.0 0.0;
16281                visible: 0;
16282             }
16283          }
16284          part { name: "elm.text";
16285             clip_to: "disclip";
16286             type: TEXTBLOCK;
16287             mouse_events: 0;
16288             scale: 1;
16289             description { state: "default" 0.0;
16290                rel1 {
16291                   relative: 1.0 0.0;
16292                   to_x: "elm.padding.icon.right";
16293                }
16294                rel2 {
16295                   relative: 0.0 1.0;
16296                   to_x: "elm.padding.right";
16297                }
16298                align: 0.0 0.5;
16299                text {
16300                   style: "genlist_default_textblock_style";
16301                   min: 0 1;
16302                   align: 0.0 0.5;
16303                }
16304             }
16305             description { state: "selected" 0.0;
16306                inherit: "default" 0.0;
16307                text.style: "genlist_default_textblock_selected_style";
16308             }
16309             GENLIST_DESCRIPTION_FLIP_ENABLED
16310          }
16311          GENLIST_PART_FLIP
16312          GENLIST_PART_DISCLIP
16313       }
16314       programs {
16315          program { name: "go_active";
16316             signal: "elm,state,selected";
16317             source: "elm";
16318             action: STATE_SET "selected" 0.0;
16319             target: "bg_image";
16320             target: "elm.text";
16321             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
16322          }
16323          program { name: "go_passive";
16324             signal: "elm,state,unselected";
16325             source: "elm";
16326             action: STATE_SET "default" 0.0;
16327             target: "bg_image";
16328             target: "elm.text";
16329             transition: LINEAR 0.1;
16330          }
16331          program { name: "go_disabled";
16332             signal: "elm,state,disabled";
16333             source: "elm";
16334             action: STATE_SET "disabled" 0.0;
16335             target: "disclip";
16336          }
16337          program { name: "go_enabled";
16338             signal: "elm,state,enabled";
16339             source: "elm";
16340             action: STATE_SET "default" 0.0;
16341             target: "disclip";
16342          }
16343          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
16344          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
16345       }
16346    }
16347
16348 // 4.1.17
16349    group { name: "elm/genlist/item/dialogue/1text.1icon.4/default";
16350       alias: "elm/genlist/item_odd/dialogue/1text.1icon.4/default";
16351       alias: "elm/genlist/item_compress/dialogue/1text.1icon.4/default";
16352       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.4/default";
16353       alias: "elm/layout/dialogue/1text.1icon.4";
16354       data.item: "stacking" "above";
16355       data.item: "selectraise" "on";
16356       data.item: "texts" "elm.text";
16357       data.item: "contents" "elm.icon";
16358       data.item: "flips" "elm.flip.content";
16359       parts {
16360          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
16361          GENLIST_PART_BG_IMAGE
16362          GENLIST_PART_BOTTOM_LINE
16363          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
16364          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
16365          GENLIST_PART_DIALOGUE_ITEM
16366          part { name: "elm.icon";
16367             clip_to: "disclip";
16368             type: SWALLOW;
16369             scale: 1;
16370             description { state: "default" 0.0;
16371                min: 60 60;
16372                max: 60 60;
16373                fixed: 1 1;
16374                rel1.to_x: "elm.padding.right";
16375                rel2 {
16376                   relative: 0.0 1.0;
16377                   to_x: "elm.padding.right";
16378                }
16379                align: 1.0 0.5;
16380             }
16381             GENLIST_DESCRIPTION_FLIP_ENABLED
16382          }
16383          part { name: "elm.padding.icon.left";
16384             clip_to: "disclip";
16385             type: RECT;
16386             scale: 1;
16387             description { state: "default" 0.0;
16388                min: 10 0;
16389                fixed: 1 0;
16390                rel1.to_x: "elm.icon";
16391                rel2 {
16392                   relative: 0.0 1.0;
16393                   to_x: "elm.icon";
16394                }
16395                align: 1.0 0.0;
16396                visible: 0;
16397             }
16398          }
16399          part { name: "elm.text";
16400             clip_to: "disclip";
16401             type: TEXT;
16402             mouse_events: 0;
16403             scale: 1;
16404             description { state: "default" 0.0;
16405                rel1 {
16406                   relative: 1.0 0.0;
16407                   to_x: "elm.padding.left";
16408                }
16409                rel2 {
16410                   relative: 0.0 1.0;
16411                   to_x: "elm.padding.icon.left";
16412                }
16413                align: 0.0 0.0;
16414                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
16415                text {
16416                   font: "SLP:style=Roman";
16417                   size: GENLIST_FONT_44_INC;
16418                   min: 0 1;
16419                   align: 0.0 0.5;
16420                   text_class: "list_item";
16421                }
16422             }
16423             description { state: "selected" 0.0;
16424                inherit: "default" 0.0;
16425                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
16426             }
16427             GENLIST_DESCRIPTION_FLIP_ENABLED
16428          }
16429          GENLIST_PART_FLIP
16430          GENLIST_PART_DISCLIP
16431       }
16432       programs {
16433          program { name: "go_active";
16434             signal: "elm,state,selected";
16435             source: "elm";
16436             action: STATE_SET "selected" 0.0;
16437             target: "bg_image";
16438             target: "elm.text";
16439             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
16440          }
16441          program { name: "go_passive";
16442             signal: "elm,state,unselected";
16443             source: "elm";
16444             action: STATE_SET "default" 0.0;
16445             target: "bg_image";
16446             target: "elm.text";
16447             transition: LINEAR 0.1;
16448          }
16449          program { name: "go_disabled";
16450             signal: "elm,state,disabled";
16451             source: "elm";
16452             action: STATE_SET "disabled" 0.0;
16453             target: "disclip";
16454          }
16455          program { name: "go_enabled";
16456             signal: "elm,state,enabled";
16457             source: "elm";
16458             action: STATE_SET "default" 0.0;
16459             target: "disclip";
16460          }
16461          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
16462          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
16463       }
16464    }
16465
16466    // 4.1.19
16467    group { name: "elm/genlist/item/dialogue/1text.1icon.5/default";
16468       alias: "elm/genlist/item_odd/dialogue/1text.1icon.5/default";
16469       alias: "elm/genlist/item_compress/dialogue/1text.1icon.5/default";
16470       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.5/default";
16471
16472       data.item: "stacking" "above";
16473       data.item: "selectraise" "on";
16474       data.item: "texts" "elm.text.1";
16475       data.item: "contents" "elm.icon.1";
16476
16477       parts {
16478          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
16479          GENLIST_PART_BOTTOM_LINE
16480          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
16481          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
16482          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
16483          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
16484          GENLIST_PART_DIALOGUE_ITEM
16485          part { name: "elm.text.1";
16486             clip_to: "disclip";
16487             type: TEXT;
16488             mouse_events: 0;
16489             scale: 1;
16490             description { state: "default" 0.0;
16491                min: 0 GENLIST_SIZE_48_INC;
16492                fixed: 0 1;
16493                rel1 {
16494                   relative: 1.0 1.0;
16495                   to_x: "elm.padding.left";
16496                   to_y: "elm.padding.top";
16497                }
16498                rel2 {
16499                   relative: 0.0 1.0;
16500                   to_x: "elm.padding.right";
16501                   to_y: "elm.padding.top";
16502                }
16503                align: 0.0 0.0;
16504                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
16505                text {
16506                   font: "SLP:style=Medium";
16507                   size: GENLIST_FONT_32_INC;
16508                   min: 0 1;
16509                   align: 0.0 0.5;
16510                   text_class: "list_item";
16511                }
16512             }
16513             description { state: "selected" 0.0;
16514                inherit: "default" 0.0;
16515                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
16516             }
16517             GENLIST_DESCRIPTION_FLIP_ENABLED
16518          }
16519          part { name: "elm.icon.1";
16520             clip_to: "disclip";
16521             type: SWALLOW;
16522             scale: 1;
16523             description { state: "default" 0.0;
16524                rel1 {
16525                   relative: 1.0 1.0;
16526                   to_x: "elm.padding.left";
16527                   to_y: "elm.text.1";
16528                }
16529                rel2 {
16530                   relative: 0.0 0.0;
16531                   to_x: "elm.padding.right";
16532                   to_y: "elm.padding.bottom";
16533                }
16534             }
16535          }
16536          GENLIST_PART_DISCLIP
16537       }
16538       programs {
16539          // signal: elm,state,%s,active
16540          //   a "check" item named %s went active
16541          // signal: elm,state,%s,passive
16542          //   a "check" item named %s went passive
16543          // default is passive
16544          /*program { name: "go_active";
16545             signal: "elm,state,selected";
16546             source: "elm";
16547             action: STATE_SET "selected" 0.0;
16548             target: "bg_image";
16549             target: "elm.text";
16550          }
16551          program { name: "go_passive";
16552             signal: "elm,state,unselected";
16553             source: "elm";
16554             action: STATE_SET "default" 0.0;
16555             target: "bg_image";
16556             target: "elm.text";
16557             transition: LINEAR 0.1;
16558          }*/
16559          program { name: "go_disabled";
16560             signal: "elm,state,disabled";
16561             source: "elm";
16562             action: STATE_SET "disabled" 0.0;
16563             target: "disclip";
16564          }
16565          program { name: "go_enabled";
16566             signal: "elm,state,enabled";
16567             source: "elm";
16568             action: STATE_SET "default" 0.0;
16569             target: "disclip";
16570          }
16571       }
16572    }
16573
16574    group { name: "elm/genlist/item/dialogue/2text.5/default";
16575       alias: "elm/genlist/item_odd/dialogue/2text.5/default";
16576       alias: "elm/genlist/item_compress/dialogue/2text.5/default";
16577       alias: "elm/genlist/item_compress_odd/dialogue/2text.5/default";
16578       data.item: "stacking" "above";
16579       data.item: "selectraise" "on";
16580       data.item: "texts" "elm.text.1 elm.text.2";
16581       data.item: "flips" "elm.flip.content";
16582       parts {
16583          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
16584          GENLIST_PART_BG_IMAGE
16585          GENLIST_PART_BOTTOM_LINE
16586          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
16587          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
16588          GENLIST_PART_DIALOGUE_ITEM
16589          part { name: "elm.text.2";
16590             clip_to: "disclip";
16591             type: TEXT;
16592             mouse_events: 0;
16593             scale: 1;
16594             description { state: "default" 0.0;
16595                min: GENLIST_SIZE_154_INC 0;
16596                fixed: 1 0;
16597                rel1.to_x: "elm.padding.right";
16598                rel2 {
16599                   relative: 0.0 1.0;
16600                   to_x: "elm.padding.right";
16601                }
16602                align: 1.0 0.5;
16603                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;;
16604                text {
16605                   font: "SLP:style=Medium";
16606                   size: GENLIST_FONT_32_INC;
16607                   min: 0 1;
16608                   align: 1.0 0.5;
16609                   text_class: "slp_roman";
16610                }
16611             }
16612             description { state: "selected" 0.0;
16613                inherit: "default" 0.0;
16614                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
16615             }
16616             GENLIST_DESCRIPTION_FLIP_ENABLED
16617          }
16618          part { name: "elm.padding.text2.left";
16619             type: RECT;
16620             mouse_events: 0;
16621             scale: 1;
16622             description { state: "default" 0.0;
16623                min: GENLIST_SIZE_32_INC 0;
16624                fixed: 1 0;
16625                rel1.to_x: "elm.text.2";
16626                rel2 {
16627                   relative: 0.0 1.0;
16628                   to_x: "elm.text.2";
16629                }
16630                visible: 0;
16631                align: 1.0 0.5;
16632             }
16633          }
16634          part { name: "elm.text.1";
16635             clip_to: "disclip";
16636             type: TEXT;
16637             mouse_events: 0;
16638             scale: 1;
16639             description { state: "default" 0.0;
16640                rel1 {
16641                   relative: 1.0 0.0;
16642                   to_x: "elm.padding.left";
16643                }
16644                rel2 {
16645                   relative: 0.0 1.0;
16646                   to_x: "elm.padding.text2.left";
16647                }
16648                align: 0.0 0.0;
16649                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
16650                text {
16651                   font: "SLP:style=Roman";
16652                   size: GENLIST_FONT_44_INC;
16653                   min: 0 1;
16654                   align: 0.0 0.5;
16655                   text_class: "list_item";
16656                }
16657             }
16658             description { state: "selected" 0.0;
16659                inherit: "default" 0.0;
16660                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
16661             }
16662             GENLIST_DESCRIPTION_FLIP_ENABLED
16663          }
16664          GENLIST_PART_FLIP
16665          GENLIST_PART_DISCLIP
16666       }
16667       programs {
16668          program { name: "go_active";
16669             signal: "elm,state,selected";
16670             source: "elm";
16671             action: STATE_SET "selected" 0.0;
16672             target: "bg_image";
16673             target: "elm.text.1";
16674             target: "elm.text.2";
16675             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
16676          }
16677          program { name: "go_passive";
16678             signal: "elm,state,unselected";
16679             source: "elm";
16680             action: STATE_SET "default" 0.0;
16681             target: "bg_image";
16682             target: "elm.text.1";
16683             target: "elm.text.2";
16684             transition: LINEAR 0.1;
16685          }
16686          program { name: "go_disabled";
16687             signal: "elm,state,disabled";
16688             source: "elm";
16689             action: STATE_SET "disabled" 0.0;
16690             target: "disclip";
16691          }
16692          program { name: "go_enabled";
16693             signal: "elm,state,enabled";
16694             source: "elm";
16695             action: STATE_SET "default" 0.0;
16696             target: "disclip";
16697          }
16698          GENLIST_PROGRAM_FLIP_2TEXT
16699          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
16700          //GENLIST_PROGRAM_FLIP_1TEXT
16701       }
16702    }
16703
16704    group { name: "elm/genlist/item/dialogue/1text.2icon.2/default";
16705       alias: "elm/genlist/item_odd/dialogue/1text.2icon.2/default";
16706       alias: "elm/genlist/item_compress/dialogue/1text.2icon.2/default";
16707       alias: "elm/genlist/item_compress_odd/dialogue/1text.2icon.2/default";
16708       alias: "elm/layout/dialogue/1text.2icon.2";
16709       data.item: "stacking" "above";
16710       data.item: "selectraise" "on";
16711       data.item: "texts" "elm.text";
16712       data.item: "contents" "elm.icon.1 elm.icon.2";
16713       data.item: "flips" "elm.flip.content";
16714       parts {
16715          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
16716          GENLIST_PART_BG_IMAGE
16717          GENLIST_PART_BOTTOM_LINE
16718          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
16719          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
16720          GENLIST_PART_DIALOGUE_ITEM
16721          part { name: "elm.icon.1";
16722             clip_to: "disclip";
16723             type: SWALLOW;
16724             scale: 1;
16725             description { state: "default" 0.0;
16726                min: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
16727                max: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
16728                fixed: 1 1;
16729                rel1 {
16730                   relative: 1.0 0.0;
16731                   to_x: "elm.padding.left";
16732                }
16733                rel2 {
16734                   relative: 1.0 1.0;
16735                   to_x: "elm.padding.left";
16736                }
16737                align: 0.0 0.5;
16738             }
16739             GENLIST_DESCRIPTION_FLIP_ENABLED
16740          }
16741          part { name: "elm.padding.icon1.right";
16742             clip_to: "disclip";
16743             type: RECT;
16744             scale: 1;
16745             description { state: "default" 0.0;
16746                min: GENLIST_PADDING_16_INC 0;
16747                fixed: 1 0;
16748                rel1 {
16749                   relative: 1.0 0.0;
16750                   to_x: "elm.icon.1";
16751                }
16752                rel2.to_x: "elm.icon.1";
16753                align: 0.0 0.0;
16754                visible: 0;
16755             }
16756          }
16757          part { name: "elm.icon.2";
16758             clip_to: "disclip";
16759             type: SWALLOW;
16760             scale: 1;
16761             description { state: "default" 0.0;
16762                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
16763                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
16764                fixed: 1 1;
16765                rel1.to_x: "elm.padding.right";
16766                rel2 {
16767                   relative: 0.0 1.0;
16768                   to_x: "elm.padding.right";
16769                }
16770                align: 1.0 0.5;
16771             }
16772             GENLIST_DESCRIPTION_FLIP_ENABLED
16773          }
16774          part { name: "elm.padding.icon2.left";
16775             clip_to: "disclip";
16776             type: RECT;
16777             scale: 1;
16778             description { state: "default" 0.0;
16779                min: GENLIST_PADDING_16_INC 0;
16780                fixed: 1 0;
16781                rel1.to_x: "elm.icon.2";
16782                rel2 {
16783                   relative: 0.0 1.0;
16784                   to_x: "elm.icon.2";
16785                }
16786                align: 1.0 0.0;
16787                visible: 0;
16788             }
16789          }
16790          part { name: "elm.text";
16791             clip_to: "disclip";
16792             type: TEXT;
16793             mouse_events: 0;
16794             scale: 1;
16795             description { state: "default" 0.0;
16796                rel1 {
16797                   relative: 1.0 0.0;
16798                   to_x: "elm.padding.icon1.right";
16799                }
16800                rel2 {
16801                   relative: 0.0 1.0;
16802                   to_x: "elm.padding.icon2.left";
16803                }
16804                align: 0.0 0.0;
16805                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
16806                text {
16807                   font: "SLP:style=Roman";
16808                   size: GENLIST_FONT_44_INC;
16809                   min: 0 1;
16810                   align: 0.0 0.5;
16811                   text_class: "list_item";
16812                }
16813             }
16814             description { state: "selected" 0.0;
16815                inherit: "default" 0.0;
16816                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
16817             }
16818             GENLIST_DESCRIPTION_FLIP_ENABLED
16819          }
16820          GENLIST_PART_FLIP
16821          GENLIST_PART_DISCLIP
16822       }
16823       programs {
16824          program { name: "go_active";
16825             signal: "elm,state,selected";
16826             source: "elm";
16827             action: STATE_SET "selected" 0.0;
16828             target: "bg_image";
16829             target: "elm.text";
16830             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
16831          }
16832          program { name: "go_passive";
16833             signal: "elm,state,unselected";
16834             source: "elm";
16835             action: STATE_SET "default" 0.0;
16836             target: "bg_image";
16837             target: "elm.text";
16838             transition: LINEAR 0.1;
16839          }
16840          program { name: "go_disabled";
16841             signal: "elm,state,disabled";
16842             source: "elm";
16843             action: STATE_SET "disabled" 0.0;
16844             target: "disclip";
16845          }
16846          program { name: "go_enabled";
16847             signal: "elm,state,enabled";
16848             source: "elm";
16849             action: STATE_SET "default" 0.0;
16850             target: "disclip";
16851          }
16852          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
16853          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
16854       }
16855    }
16856
16857    group { name: "elm/genlist/item/dialogue/1text.3icon/default";
16858       alias: "elm/genlist/item_odd/dialogue/1text.3icon/default";
16859       alias: "elm/genlist/item_compress/dialogue/1text.3icon/default";
16860       alias: "elm/genlist/item_compress_odd/dialogue/1text.3icon/default";
16861       alias: "elm/layout/dialogue/1text.3icon";
16862       data.item: "stacking" "above";
16863       data.item: "selectraise" "on";
16864       data.item: "texts" "elm.text";
16865       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
16866       data.item: "flips" "elm.flip.content";
16867       parts {
16868          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
16869          GENLIST_PART_BG_IMAGE
16870          GENLIST_PART_BOTTOM_LINE
16871          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
16872          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
16873          GENLIST_PART_DIALOGUE_ITEM
16874          part { name: "elm.icon.1";
16875             clip_to: "disclip";
16876             type: SWALLOW;
16877             scale: 1;
16878             description { state: "default" 0.0;
16879                min: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
16880                max: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
16881                fixed: 1 1;
16882                rel1 {
16883                   relative: 1.0 0.0;
16884                   to_x: "elm.padding.left";
16885                }
16886                rel2 {
16887                   relative: 1.0 1.0;
16888                   to_x: "elm.padding.left";
16889                }
16890                align: 0.0 0.5;
16891             }
16892             GENLIST_DESCRIPTION_FLIP_ENABLED
16893          }
16894          part { name: "elm.padding.icon1.right";
16895             clip_to: "disclip";
16896             type: RECT;
16897             scale: 1;
16898             description { state: "default" 0.0;
16899                min: GENLIST_PADDING_16_INC 0;
16900                fixed: 1 0;
16901                rel1 {
16902                   relative: 1.0 0.0;
16903                   to_x: "elm.icon.1";
16904                }
16905                rel2.to_x: "elm.icon.1";
16906                align: 0.0 0.0;
16907                visible: 0;
16908             }
16909          }
16910          part { name: "elm.icon.3";
16911             clip_to: "disclip";
16912             type: SWALLOW;
16913             scale: 1;
16914             description { state: "default" 0.0;
16915                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
16916                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
16917                fixed: 1 1;
16918                rel1.to_x: "elm.padding.right";
16919                rel2 {
16920                   relative: 0.0 1.0;
16921                   to_x: "elm.padding.right";
16922                }
16923                align: 1.0 0.5;
16924             }
16925             GENLIST_DESCRIPTION_FLIP_ENABLED
16926          }
16927          part { name: "elm.padding.icon3.left";
16928             clip_to: "disclip";
16929             type: RECT;
16930             scale: 1;
16931             description { state: "default" 0.0;
16932                min: GENLIST_PADDING_16_INC 0;
16933                fixed: 1 0;
16934                rel1.to_x: "elm.icon.3";
16935                rel2 {
16936                   relative: 0.0 1.0;
16937                   to_x: "elm.icon.3";
16938                }
16939                align: 1.0 0.0;
16940                visible: 0;
16941             }
16942          }
16943          part { name: "elm.icon.2";
16944             clip_to: "disclip";
16945             type: SWALLOW;
16946             scale: 1;
16947             description { state: "default" 0.0;
16948                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
16949                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
16950                fixed: 1 1;
16951                rel1.to_x: "elm.padding.icon3.left";
16952                rel2 {
16953                   relative: 0.0 1.0;
16954                   to_x: "elm.padding.icon3.left";
16955                }
16956                align: 1.0 0.5;
16957             }
16958             GENLIST_DESCRIPTION_FLIP_ENABLED
16959          }
16960          part { name: "elm.padding.icon2.left";
16961             clip_to: "disclip";
16962             type: RECT;
16963             scale: 1;
16964             description { state: "default" 0.0;
16965                min: GENLIST_PADDING_16_INC 0;
16966                fixed: 1 0;
16967                rel1.to_x: "elm.icon.2";
16968                rel2 {
16969                   relative: 0.0 1.0;
16970                   to_x: "elm.icon.2";
16971                }
16972                align: 0.0 0.0;
16973                visible: 0;
16974             }
16975          }
16976          part { name: "elm.text";
16977             clip_to: "disclip";
16978             type: TEXT;
16979             mouse_events: 0;
16980             scale: 1;
16981             description { state: "default" 0.0;
16982                rel1 {
16983                   relative: 1.0 0.0;
16984                   to_x: "elm.padding.icon1.right";
16985                }
16986                rel2 {
16987                   relative: 0.0 1.0;
16988                   to_x: "elm.padding.icon2.left";
16989                }
16990                align: 0.0 0.5;
16991                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
16992                text {
16993                   font: "SLP:style=Roman";
16994                   size: GENLIST_FONT_44_INC;
16995                   min: 0 1;
16996                   align: 0.0 0.5;
16997                   text_class: "list_item";
16998                }
16999             }
17000             description { state: "selected" 0.0;
17001                inherit: "default" 0.0;
17002                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
17003             }
17004             GENLIST_DESCRIPTION_FLIP_ENABLED
17005          }
17006          GENLIST_PART_FLIP
17007          GENLIST_PART_DISCLIP
17008       }
17009       programs {
17010          // signal: elm,state,%s,active
17011          //   a "check" item named %s went active
17012          // signal: elm,state,%s,passive
17013          //   a "check" item named %s went passive
17014          // default is passive
17015          program { name: "go_active";
17016             signal: "elm,state,selected";
17017             source: "elm";
17018             action: STATE_SET "selected" 0.0;
17019             target: "bg_image";
17020             target: "elm.text";
17021             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
17022          }
17023          program { name: "go_passive";
17024             signal: "elm,state,unselected";
17025             source: "elm";
17026             action: STATE_SET "default" 0.0;
17027             target: "bg_image";
17028             target: "elm.text";
17029             transition: LINEAR 0.1;
17030          }
17031          program { name: "go_disabled";
17032             signal: "elm,state,disabled";
17033             source: "elm";
17034             action: STATE_SET "disabled" 0.0;
17035             target: "disclip";
17036          }
17037          program { name: "go_enabled";
17038             signal: "elm,state,enabled";
17039             source: "elm";
17040             action: STATE_SET "default" 0.0;
17041             target: "disclip";
17042          }
17043          GENLIST_PROGRAM_FLIP_1TEXT_3ICON
17044          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
17045          //GENLIST_PROGRAM_FLIP_1TEXT
17046       }
17047    }
17048
17049    /* password style 4.2.13 */
17050    /* on landscape mode, 4 swallow parts will be placed left-align basis with having padding on the right side. */
17051    group { name: "elm/genlist/item/dialogue/1text.4icon/default";
17052       alias: "elm/genlist/item_odd/dialogue/1text.4icon/default";
17053       alias: "elm/genlist/item_compress/dialogue/1text.4icon/default";
17054       alias: "elm/genlist/item_compress_odd/dialogue/1text.4icon/default";
17055       alias: "elm/layout/dialogue/4icon";
17056       data.item: "stacking" "above";
17057       data.item: "selectraise" "on";
17058       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4";
17059       data.item: "texts" "elm.text.1";
17060       images {
17061          image : "00_input_bg.png" COMP;
17062       }
17063       parts {
17064          GENLIST_PART_BASE( GENLIST_HEIGHT_207_INC )
17065          GENLIST_PART_BG_IMAGE
17066          GENLIST_PART_BOTTOM_LINE
17067          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
17068          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_24_INC )
17069          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
17070          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
17071          GENLIST_PART_DIALOGUE_ITEM
17072          part { name: "elm.text.1";
17073             clip_to: "disclip";
17074             type: TEXT;
17075             mouse_events: 0;
17076             scale: 1;
17077             description { state: "default" 0.0;
17078                fixed: 1 1;
17079                rel1 {
17080                   relative: 1.0 0.0;
17081                   to_x: "elm.padding.left";
17082                   to_y: "elm.icon.1";
17083                }
17084                rel2 {
17085                   relative: 0.0 1.0;
17086                   to_x: "elm.padding.right";
17087                   to_y: "elm.padding.top";
17088                }
17089                color: GENLIST_DIALOGUE_FONT_PASSWORD_TITLE_COLOR_INC;
17090                text {
17091                   font: "SLP:style=Medium";
17092                   size: GENLIST_FONT_32_INC;
17093                   min: 0 1;
17094                   align: 0.0 0.5;
17095                   text_class: "list_item";
17096                }
17097             }
17098             description { state: "selected" 0.0;
17099                inherit: "default" 0.0;
17100                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
17101             }
17102          }
17103          part { name: "elm.padding.icon1.left";
17104             clip_to: "disclip";
17105             type: RECT;
17106             scale: 1;
17107             description { state: "default" 0.0;
17108                min: GENLIST_PADDING_74_INC 0;
17109                fixed: 1 0;
17110                rel1 {
17111                   relative: 1.0 0.0;
17112                   to_x: "elm.rect.dialogue";
17113                   to_y: "elm.padding.bottom";
17114                }
17115                rel2 {
17116                   relative: 1.0 0.0;
17117                   to_x: "elm.rect.dialogue";
17118                   to_y: "elm.padding.bottom";
17119                }
17120                align: 0.0 1.0;
17121                visible: 0;
17122             }
17123          }
17124          part { name: "elm.icon1.bg";
17125             clip_to: "disclip";
17126             type: IMAGE;
17127             scale: 1;
17128             description { state: "default" 0.0;
17129                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
17130                fixed: 1 1;
17131                rel1 {
17132                   relative: 1.0 0.0;
17133                   to_x: "elm.padding.icon1.left";
17134                   to_y: "elm.padding.bottom";
17135                }
17136                rel2 {
17137                   relative: 1.0 0.0;
17138                   to_x: "elm.padding.icon1.left";
17139                   to_y: "elm.padding.bottom";
17140                }
17141                align: 0.0 1.0;
17142                image.normal: "00_input_bg.png";
17143                image.border: 5 5 5 5;
17144                image.border_scale: 1;
17145             }
17146          }
17147          part { name: "elm.icon.1";
17148             clip_to: "disclip";
17149             type: SWALLOW;
17150             scale: 1;
17151             description { state: "default" 0.0;
17152                rel1 {
17153                   to: "elm.icon1.bg";
17154                   offset: 2 2;
17155                }
17156                rel2 {
17157                   to: "elm.icon1.bg";
17158                   offset: -3 -3;
17159                }
17160                align: 0.5 0.5;
17161             }
17162          }
17163          part { name: "elm.padding.icon2.left";
17164             clip_to: "disclip";
17165             type: RECT;
17166             scale: 1;
17167             description { state: "default" 0.0;
17168                min: GENLIST_SIZE_32_INC 0;
17169                fixed: 1 0;
17170                rel1 {
17171                   relative: 1.0 0.0;
17172                   to_x: "elm.icon1.bg";
17173                   to_y: "elm.padding.bottom";
17174                }
17175                rel2 {
17176                   relative: 1.0 0.0;
17177                   to_x: "elm.icon1.bg";
17178                   to_y: "elm.padding.bottom";
17179                }
17180                align: 0.0 1.0;
17181                visible: 0;
17182             }
17183          }
17184          part { name: "elm.icon2.bg";
17185             clip_to: "disclip";
17186             type: IMAGE;
17187             scale: 1;
17188             description { state: "default" 0.0;
17189                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
17190                fixed: 1 1;
17191                rel1 {
17192                   relative: 1.0 0.0;
17193                   to_x: "elm.padding.icon2.left";
17194                   to_y: "elm.padding.bottom";
17195                }
17196                rel2 {
17197                   relative: 1.0 0.0;
17198                   to_x: "elm.padding.icon2.left";
17199                   to_y: "elm.padding.bottom";
17200                }
17201                align: 0.0 1.0;
17202                image.normal: "00_input_bg.png";
17203                image.border: 5 5 5 5;
17204                image.border_scale: 1;
17205             }
17206          }
17207          part { name: "elm.icon.2";
17208             clip_to: "disclip";
17209             type: SWALLOW;
17210             scale: 1;
17211             description { state: "default" 0.0;
17212                rel1 {
17213                   to: "elm.icon2.bg";
17214                   offset: 2 2;
17215                }
17216                rel2 {
17217                   to: "elm.icon2.bg";
17218                   offset: -3 -3;
17219                }
17220                align: 0.5 0.5;
17221             }
17222          }
17223          part { name: "elm.padding.icon3.left";
17224             clip_to: "disclip";
17225             type: RECT;
17226             scale: 1;
17227             description { state: "default" 0.0;
17228                min: GENLIST_SIZE_32_INC 0;
17229                fixed: 1 0;
17230                rel1 {
17231                   relative: 1.0 0.0;
17232                   to_x: "elm.icon2.bg";
17233                   to_y: "elm.padding.bottom";
17234                }
17235                rel2 {
17236                   relative: 1.0 0.0;
17237                   to_x: "elm.icon2.bg";
17238                   to_y: "elm.padding.bottom";
17239                }
17240                align: 0.0 1.0;
17241                visible: 0;
17242             }
17243          }
17244          part { name: "elm.icon3.bg";
17245             clip_to: "disclip";
17246             type: IMAGE;
17247             scale: 1;
17248             description { state: "default" 0.0;
17249                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
17250                fixed: 1 1;
17251                rel1 {
17252                   relative: 1.0 0.0;
17253                   to_x: "elm.padding.icon3.left";
17254                   to_y: "elm.padding.bottom";
17255                }
17256                rel2 {
17257                   relative: 1.0 0.0;
17258                   to_x: "elm.padding.icon3.left";
17259                   to_y: "elm.padding.bottom";
17260                }
17261                align: 0.0 1.0;
17262                image.normal: "00_input_bg.png";
17263                image.border: 5 5 5 5;
17264                image.border_scale: 1;
17265             }
17266          }
17267          part { name: "elm.icon.3";
17268             clip_to: "disclip";
17269             type: SWALLOW;
17270             scale: 1;
17271             description { state: "default" 0.0;
17272                rel1 {
17273                   to: "elm.icon3.bg";
17274                   offset: 2 2;
17275                }
17276                rel2 {
17277                   to: "elm.icon3.bg";
17278                   offset: -3 -3;
17279                }
17280                align: 0.5 0.5;
17281             }
17282          }
17283          part { name: "elm.padding.icon4.left";
17284             clip_to: "disclip";
17285             type: RECT;
17286             scale: 1;
17287             description { state: "default" 0.0;
17288                min: GENLIST_SIZE_32_INC 0;
17289                fixed: 1 0;
17290                rel1 {
17291                   relative: 1.0 0.0;
17292                   to_x: "elm.icon3.bg";
17293                   to_y: "elm.padding.bottom";
17294                }
17295                rel2 {
17296                   relative: 1.0 0.0;
17297                   to_x: "elm.icon3.bg";
17298                   to_y: "elm.padding.bottom";
17299                }
17300                align: 0.0 1.0;
17301                visible: 0;
17302             }
17303          }
17304          part { name: "elm.icon4.bg";
17305             clip_to: "disclip";
17306             type: IMAGE;
17307             scale: 1;
17308             description { state: "default" 0.0;
17309                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
17310                fixed: 1 1;
17311                rel1 {
17312                   relative: 1.0 0.0;
17313                   to_x: "elm.padding.icon4.left";
17314                   to_y: "elm.padding.bottom";
17315                }
17316                rel2 {
17317                   relative: 1.0 0.0;
17318                   to_x: "elm.padding.icon4.left";
17319                   to_y: "elm.padding.bottom";
17320                }
17321                align: 0.0 1.0;
17322                image.normal: "00_input_bg.png";
17323                image.border: 5 5 5 5;
17324                image.border_scale: 1;
17325             }
17326          }
17327          part { name: "elm.icon.4";
17328             clip_to: "disclip";
17329             type: SWALLOW;
17330             scale: 1;
17331             description { state: "default" 0.0;
17332                rel1 {
17333                   to: "elm.icon4.bg";
17334                   offset: 2 2;
17335                }
17336                rel2 {
17337                   to: "elm.icon4.bg";
17338                   offset: -3 -3;
17339                }
17340                align: 0.5 0.5;
17341             }
17342          }
17343          GENLIST_PART_DISCLIP
17344       }
17345       programs {
17346          // signal: elm,state,%s,active
17347          //   a "check" item named %s went active
17348          // signal: elm,state,%s,passive
17349          //   a "check" item named %s went passive
17350          // default is passive
17351          /*program { name: "go_active";
17352             signal: "elm,state,selected";
17353             source: "elm";
17354             action: STATE_SET "selected" 0.0;
17355             target: "bg_image";
17356             target: "elm.text.1";
17357             target: "elm.text.2";
17358          }
17359          program { name: "go_passive";
17360             signal: "elm,state,unselected";
17361             source: "elm";
17362             action: STATE_SET "default" 0.0;
17363             target: "bg_image";
17364             target: "elm.text.1";
17365             target: "elm.text.2";
17366             transition: LINEAR 0.1;
17367          }*/
17368          program { name: "go_disabled";
17369             signal: "elm,state,disabled";
17370             source: "elm";
17371             action: STATE_SET "disabled" 0.0;
17372             target: "disclip";
17373          }
17374          program { name: "go_enabled";
17375             signal: "elm,state,enabled";
17376             source: "elm";
17377             action: STATE_SET "default" 0.0;
17378             target: "disclip";
17379          }
17380       }
17381    }
17382
17383    group { name: "elm/genlist/item/dialogue/3icon/default";
17384       alias: "elm/genlist/item_odd/dialogue/3icon/default";
17385       alias: "elm/genlist/item_compress/dialogue/3icon/default";
17386       alias: "elm/genlist/item_compress_odd/dialogue/3icon/default";
17387       alias: "elm/layout/dialogue/3icon";
17388       data.item: "stacking" "above";
17389       data.item: "selectraise" "on";
17390       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
17391       parts {
17392          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
17393          GENLIST_PART_BG_IMAGE
17394          GENLIST_PART_BOTTOM_LINE
17395          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
17396          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
17397          GENLIST_PART_DIALOGUE_ITEM
17398          part { name: "elm.icon.1";
17399             clip_to: "disclip";
17400             type: SWALLOW;
17401             scale: 1;
17402             description { state: "default" 0.0;
17403                min: GENLIST_SIZE_80_INC GENLIST_SIZE_80_INC;
17404                max: GENLIST_SIZE_80_INC GENLIST_SIZE_80_INC;
17405                fixed: 1 1;
17406                rel1 {
17407                   relative: 1.0 0.0;
17408                   to_x: "elm.padding.left";
17409                }
17410                rel2 {
17411                   relative: 1.0 1.0;
17412                   to_x: "elm.padding.left";
17413                }
17414                align: 0.0 0.5;
17415             }
17416             GENLIST_DESCRIPTION_FLIP_ENABLED
17417          }
17418          part { name: "elm.padding.icon1.right";
17419             clip_to: "disclip";
17420             type: RECT;
17421             scale: 1;
17422             description { state: "default" 0.0;
17423                min: GENLIST_PADDING_16_INC 0;
17424                fixed: 1 0;
17425                rel1 {
17426                   relative: 1.0 0.0;
17427                   to_x: "elm.icon.1";
17428                }
17429                rel2.to_x: "elm.icon.1";
17430                align: 0.0 0.0;
17431                visible: 0;
17432             }
17433          }
17434          part { name: "elm.icon.3";
17435             clip_to: "disclip";
17436             type: SWALLOW;
17437             scale: 1;
17438             description { state: "default" 0.0;
17439                min: GENLIST_SIZE_80_INC GENLIST_SIZE_80_INC;
17440                max: GENLIST_SIZE_80_INC GENLIST_SIZE_80_INC;
17441                fixed: 1 1;
17442                rel1.to_x: "elm.padding.right";
17443                rel2 {
17444                   relative: 0.0 1.0;
17445                   to_x: "elm.padding.right";
17446                }
17447                align: 1.0 0.5;
17448             }
17449             GENLIST_DESCRIPTION_FLIP_ENABLED
17450          }
17451          part { name: "elm.padding.icon3.left";
17452             clip_to: "disclip";
17453             type: RECT;
17454             scale: 1;
17455             description { state: "default" 0.0;
17456                min: GENLIST_PADDING_16_INC 0;
17457                fixed: 1 0;
17458                rel1.to_x: "elm.icon.3";
17459                rel2 {
17460                   relative: 0.0 1.0;
17461                   to_x: "elm.icon.3";
17462                }
17463                align: 1.0 0.0;
17464                visible: 0;
17465             }
17466          }
17467          part { name: "elm.icon.2";
17468             clip_to: "disclip";
17469             type: SWALLOW;
17470             scale: 1;
17471             description { state: "default" 0.0;
17472                rel1 {
17473                   relative: 1.0 0.0;
17474                   to_x: "elm.padding.icon1.right";
17475                }
17476                rel2 {
17477                   relative: 0.0 1.0;
17478                   to_x: "elm.padding.icon3.left";
17479                }
17480                align: 0.0 0.5;
17481             }
17482             GENLIST_DESCRIPTION_FLIP_ENABLED
17483          }
17484          GENLIST_PART_DISCLIP
17485       }
17486       programs {
17487          // signal: elm,state,%s,active
17488          //   a "check" item named %s went active
17489          // signal: elm,state,%s,passive
17490          //   a "check" item named %s went passive
17491          // default is passive
17492          program { name: "go_disabled";
17493             signal: "elm,state,disabled";
17494             source: "elm";
17495             action: STATE_SET "disabled" 0.0;
17496             target: "disclip";
17497          }
17498          program { name: "go_enabled";
17499             signal: "elm,state,enabled";
17500             source: "elm";
17501             action: STATE_SET "default" 0.0;
17502             target: "disclip";
17503          }
17504       }
17505    }
17506
17507    group { name: "elm/genlist/item/dialogue/2text.1icon.4/default";
17508       alias: "elm/genlist/item_odd/dialogue/2text.1icon.4/default";
17509       alias: "elm/genlist/item_compress/dialogue/2text.1icon.4/default";
17510       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.4/default";
17511       alias: "elm/layout/dialogue/2text.1icon.4";
17512       data.item: "stacking" "above";
17513       data.item: "selectraise" "on";
17514       data.item: "texts" "elm.text.1 elm.text.2";
17515       data.item: "contents" "elm.icon";
17516       data.item: "flips" "elm.flip.content";
17517       parts {
17518          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
17519          GENLIST_PART_BG_IMAGE
17520          GENLIST_PART_BOTTOM_LINE
17521          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_11_INC )
17522          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
17523          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
17524          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
17525          GENLIST_PART_DIALOGUE_ITEM
17526          part { name: "elm.text.2";
17527             clip_to: "disclip";
17528             type: TEXT;
17529             mouse_events: 0;
17530             scale: 1;
17531             description { state: "default" 0.0;
17532                min: GENLIST_SIZE_133_INC GENLIST_SIZE_61_INC;
17533                fixed: 1 1;
17534                rel1 {
17535                   relative: 0.0 1.0;
17536                   to_x: "elm.padding.right";
17537                   to_y: "elm.padding.top";
17538                }
17539                rel2 {
17540                   relative: 0.0 1.0;
17541                   to_x: "elm.padding.right";
17542                   to_y: "elm.padding.top";
17543                }
17544                align: 1.0 0.0;
17545                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
17546                text {
17547                   font: "SLP:style=Medium";
17548                   size: GENLIST_FONT_32_INC;
17549                   min: 0 1;
17550                   align: 1.0 0.5;
17551                   text_class: "slp_medium";
17552                }
17553             }
17554             description { state: "selected" 0.0;
17555                inherit: "default" 0.0;
17556                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
17557             }
17558             GENLIST_DESCRIPTION_FLIP_ENABLED
17559          }
17560          part { name: "elm.padding.text2.left";
17561             clip_to: "disclip";
17562             type: RECT;
17563             mouse_events: 0;
17564             scale: 1;
17565             description { state: "default" 0.0;
17566                min: GENLIST_SIZE_32_INC 0;
17567                fixed: 1 0;
17568                rel1.to_x: "elm.text.2";
17569                rel2 {
17570                   relative: 0.0 1.0;
17571                   to_x: "elm.text.2";
17572                }
17573                align: 1.0 0.5;
17574                visible: 0;
17575             }
17576          }
17577          part { name: "elm.text.1";
17578             clip_to: "disclip";
17579             type: TEXT;
17580             mouse_events: 0;
17581             scale: 1;
17582             description { state: "default" 0.0;
17583                rel1 {
17584                   relative: 1.0 1.0;
17585                   to_x: "elm.padding.left";
17586                   to_y: "elm.padding.top";
17587                }
17588                rel2 {
17589                   relative: 0.0 1.0;
17590                   to_x: "elm.padding.text2.left";
17591                   to_y: "elm.text.2";
17592                }
17593                align: 0.0 0.5;
17594                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
17595                text {
17596                   font: "SLP:style=Roman";
17597                   size: GENLIST_FONT_44_INC;
17598                   min: 0 1;
17599                   align: 0.0 0.5;
17600                   text_class: "list_item";
17601                }
17602             }
17603             description { state: "selected" 0.0;
17604                inherit: "default" 0.0;
17605                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
17606             }
17607             GENLIST_DESCRIPTION_FLIP_ENABLED
17608          }
17609          part { name: "elm.icon";
17610             clip_to: "disclip";
17611             type: SWALLOW;
17612             scale: 1;
17613             description { state: "default" 0.0;
17614                min: 0 GENLIST_SIZE_16_INC;
17615                fixed: 0 1;
17616                rel1 {
17617                   relative: 1.0 0.0;
17618                   to_x: "elm.padding.left";
17619                   to_y: "elm.padding.bottom";
17620                }
17621                rel2 {
17622                   relative: 0.0 0.0;
17623                   to_x: "elm.padding.right";
17624                   to_y: "elm.padding.bottom";
17625                }
17626                align: 0.0 1.0;
17627             }
17628             GENLIST_DESCRIPTION_FLIP_ENABLED
17629          }
17630          GENLIST_PART_FLIP
17631          GENLIST_PART_DISCLIP
17632       }
17633       programs {
17634          // signal: elm,state,%s,active
17635          //   a "check" item named %s went active
17636          // signal: elm,state,%s,passive
17637          //   a "check" item named %s went passive
17638          // default is passive
17639          program { name: "go_active";
17640             signal: "elm,state,selected";
17641             source: "elm";
17642             action: STATE_SET "selected" 0.0;
17643             target: "bg_image";
17644             target: "elm.text.1";
17645             target: "elm.text.2";
17646             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
17647          }
17648          program { name: "go_passive";
17649             signal: "elm,state,unselected";
17650             source: "elm";
17651             action: STATE_SET "default" 0.0;
17652             target: "bg_image";
17653             target: "elm.text.1";
17654             target: "elm.text.2";
17655             transition: LINEAR 0.1;
17656          }
17657          program { name: "go_disabled";
17658             signal: "elm,state,disabled";
17659             source: "elm";
17660             action: STATE_SET "disabled" 0.0;
17661             target: "disclip";
17662          }
17663          program { name: "go_enabled";
17664             signal: "elm,state,enabled";
17665             source: "elm";
17666             action: STATE_SET "default" 0.0;
17667             target: "disclip";
17668          }
17669          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
17670          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
17671       }
17672    }
17673
17674    group { name: "elm/genlist/item/dialogue/1title.1text/default";
17675       alias: "elm/genlist/item_odd/dialogue/1title.1text/default";
17676       alias: "elm/genlist/item_compress/dialogue/1title.1text/default";
17677       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text/default";
17678       alias: "elm/genlist/item/dialogue.1title.1text/default";
17679       alias: "elm/genlist/item_odd/dialogue.1title.1text/default";
17680       alias: "elm/genlist/item_compress/dialogue.1title.1text/default";
17681       alias: "elm/genlist/item_compress_odd/dialogue.1title.1text/default";
17682       alias: "elm/layout/dialogue/1title.1text";
17683       data.item: "stacking" "above";
17684       data.item: "selectraise" "on";
17685       data.item: "texts" "elm.title elm.text";
17686       data.item: "flips" "elm.flip.content";
17687       parts {
17688          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
17689          GENLIST_PART_BOTTOM_LINE
17690          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
17691          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
17692          GENLIST_PART_DIALOGUE_ITEM
17693          part { name: "elm.title";
17694             clip_to: "disclip";
17695             type: TEXT;
17696             mouse_events: 0;
17697             scale: 1;
17698             description { state: "default" 0.0;
17699                min: GENLIST_SIZE_163_INC 0;
17700                fixed: 1 0;
17701                rel1 {
17702                   relative: 1.0 0.0;
17703                   to_x: "elm.padding.left";
17704                }
17705                rel2.to_x: "elm.padding.left";
17706                align: 0.0 0.5;
17707                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
17708                text {
17709                   font: "SLP:style=Medium";
17710                   size: GENLIST_FONT_32_INC;
17711                   min: 0 1;
17712                   align: 0.0 0.5;
17713                   text_class: "slp_roman";
17714                }
17715             }
17716          }
17717          part { name: "vertical_line";
17718             type: RECT;
17719             mouse_events: 0;
17720             description { state: "default" 0.0;
17721                min: 1 0;
17722                fixed: 1 0;
17723                rel1 {
17724                   relative: 1.0 0.0;
17725                   to_x: "elm.title";
17726                }
17727                rel2.to_x: "elm.title";
17728                align: 0.0 0.5;
17729                color: GENLIST_PART_LIST_LINE_COLOR_INC;
17730             }
17731          }
17732          part { name: "elm.padding.text.left";
17733             clip_to: "disclip";
17734             type: RECT;
17735             mouse_events: 0;
17736             scale: 1;
17737             description { state: "default" 0.0;
17738                min: GENLIST_PADDING_16_INC 0;
17739                fixed: 1 0;
17740                rel1 {
17741                    relative: 1.0 0.0;
17742                    to_x: "vertical_line";
17743                }
17744                rel2.to_x: "vertical_line";
17745                align: 0.0 0.5;
17746                visible: 0;
17747             }
17748          }
17749          part { name: "elm.text";
17750             clip_to: "disclip";
17751             type: TEXT;
17752             mouse_events: 0;
17753             scale: 1;
17754             description { state: "default" 0.0;
17755                rel1 {
17756                   relative: 1.0 0.0;
17757                   to_x: "elm.padding.text.left";
17758                }
17759                rel2 {
17760                   relative: 0.0 1.0;
17761                   to_x: "elm.padding.right";
17762                }
17763                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
17764                text {
17765                   font: "SLP:style=Roman";
17766                   size: GENLIST_FONT_44_INC;
17767                   min: 0 1;
17768                   align: 0.0 0.5;
17769                   text_class: "list_item";
17770                }
17771             }
17772             GENLIST_DESCRIPTION_FLIP_ENABLED
17773          }
17774          part { name: "elm.flip.content";
17775             clip_to: "disclip";
17776             type: SWALLOW;
17777             mouse_events: 1;
17778             scale: 1;
17779             description { state: "default" 0.0;
17780                fixed: 1 1;
17781                rel1 {
17782                   relative: 0.0 0.5;
17783                   to_x: "elm.text";
17784                }
17785                rel2 {
17786                   relative: 0.0 0.5;
17787                   to_x: "elm.padding.right";
17788                }
17789                visible: 0;
17790             }
17791             description { state: "flip_enabled" 0.0;
17792                inherit: "default" 0.0;
17793                visible: 1;
17794             }
17795          }
17796          GENLIST_PART_DISCLIP
17797       }
17798       programs {
17799          // signal: elm,state,%s,active
17800          //   a "check" item named %s went active
17801          // signal: elm,state,%s,passive
17802          //   a "check" item named %s went passive
17803          // default is passive
17804          /*program { name: "go_active";
17805             signal: "elm,state,selected";
17806             source: "elm";
17807             action: STATE_SET "selected" 0.0;
17808             target: "elm.text";
17809          }
17810          program { name: "go_passive";
17811             signal: "elm,state,unselected";
17812             source: "elm";
17813             action: STATE_SET "default" 0.0;
17814             target: "elm.text";
17815             transition: LINEAR 0.1;
17816          }*/
17817          program { name: "go_disabled";
17818             signal: "elm,state,disabled";
17819             source: "elm";
17820             action: STATE_SET "disabled" 0.0;
17821             target: "disclip";
17822          }
17823          program { name: "go_enabled";
17824             signal: "elm,state,enabled";
17825             source: "elm";
17826             action: STATE_SET "default" 0.0;
17827             target: "disclip";
17828          }
17829          GENLIST_PROGRAM_FLIP_1TEXT
17830       }
17831    }
17832
17833    group { name: "elm/genlist/item/dialogue/1title.1text.3/default";
17834       alias: "elm/genlist/item_odd/dialogue/1title.1text.3/default";
17835       alias: "elm/genlist/item_compress/dialogue/1title.1text.3/default";
17836       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.3/default";
17837       alias: "elm/genlist/item/dialogue.1title.1text.3/default";
17838       alias: "elm/genlist/item_odd/dialogue.1title.1text.3/default";
17839       alias: "elm/genlist/item_compress/dialogue.1title.1text.3/default";
17840       alias: "elm/genlist/item_compress_odd/dialogue.1title.1text.3/default";
17841       alias: "elm/layout/dialogue/1title.1text.3";
17842       data.item: "stacking" "above";
17843       data.item: "selectraise" "on";
17844       data.item: "texts" "elm.title elm.text";
17845       data.item: "flips" "elm.flip.content.title elm.flip.content";
17846       parts {
17847          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
17848          GENLIST_PART_BOTTOM_LINE
17849          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
17850          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
17851          GENLIST_PART_DIALOGUE_ITEM
17852          part { name: "elm.title";
17853             clip_to: "disclip";
17854             type: TEXT;
17855             mouse_events: 0;
17856             scale: 1;
17857             description { state: "default" 0.0;
17858                min: GENLIST_SIZE_163_INC 0;
17859                fixed: 1 0;
17860                rel1 {
17861                   relative: 1.0 0.0;
17862                   to_x: "elm.padding.left";
17863                }
17864                rel2.to_x: "elm.padding.left";
17865                align: 0.0 0.5;
17866                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
17867                text {
17868                   font: "SLP:style=Medium";
17869                   size: GENLIST_FONT_32_INC;
17870                   min: 0 1;
17871                   align: 0.0 0.5;
17872                   text_class: "slp_medium";
17873                }
17874             }
17875             GENLIST_DESCRIPTION_FLIP_ENABLED
17876          }
17877          part { name: "elm.flip.content.title";
17878             clip_to: "disclip";
17879             type: SWALLOW;
17880             description { state: "default" 0.0;
17881                visible: 0;
17882                fixed: 1 1;
17883                rel1.to: "elm.title";
17884                rel2.to: "elm.title";
17885             }
17886             description { state: "flip_enabled" 0.0;
17887                inherit: "default" 0.0;
17888                visible: 1;
17889             }
17890          }
17891          part { name: "vertical_line";
17892             type: RECT;
17893             mouse_events: 0;
17894             description { state: "default" 0.0;
17895                min: 1 0;
17896                fixed: 1 0;
17897                rel1 {
17898                   relative: 1.0 0.0;
17899                   to_x: "elm.title";
17900                }
17901                rel2.to_x: "elm.title";
17902                align: 0.0 0.5;
17903                color: GENLIST_PART_LIST_LINE_COLOR_INC;
17904             }
17905          }
17906          part { name: "elm.padding.text.left";
17907             clip_to: "disclip";
17908             type: RECT;
17909             mouse_events: 0;
17910             scale: 1;
17911             description { state: "default" 0.0;
17912                min: GENLIST_PADDING_16_INC 0;
17913                fixed: 1 0;
17914                rel1 {
17915                    relative: 1.0 0.0;
17916                    to_x: "vertical_line";
17917                }
17918                rel2.to_x: "vertical_line";
17919                align: 0.0 0.5;
17920                visible: 0;
17921             }
17922          }
17923          part { name: "elm.text";
17924             clip_to: "disclip";
17925             type: TEXT;
17926             mouse_events: 0;
17927             scale: 1;
17928             description { state: "default" 0.0;
17929                rel1 {
17930                   relative: 1.0 0.0;
17931                   to_x: "elm.padding.text.left";
17932                }
17933                rel2 {
17934                   relative: 0.0 1.0;
17935                   to_x: "elm.padding.right";
17936                }
17937                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
17938                text {
17939                   font: "SLP:style=Roman";
17940                   size: GENLIST_FONT_44_INC;
17941                   min: 0 1;
17942                   align: 0.0 0.5;
17943                   text_class: "list_item";
17944                }
17945             }
17946             GENLIST_DESCRIPTION_FLIP_ENABLED
17947          }
17948          part { name: "elm.flip.content";
17949             clip_to: "disclip";
17950             type: SWALLOW;
17951             mouse_events: 1;
17952             scale: 1;
17953             description { state: "default" 0.0;
17954                fixed: 1 1;
17955                rel1 {
17956                   relative: 0.0 0.5;
17957                   to_x: "elm.text";
17958                }
17959                rel2 {
17960                   relative: 0.0 0.5;
17961                   to_x: "elm.padding.right";
17962                }
17963                visible: 0;
17964             }
17965             description { state: "flip_enabled" 0.0;
17966                inherit: "default" 0.0;
17967                visible: 1;
17968             }
17969          }
17970          GENLIST_PART_DISCLIP
17971       }
17972       programs {
17973          // signal: elm,state,%s,active
17974          //   a "check" item named %s went active
17975          // signal: elm,state,%s,passive
17976          //   a "check" item named %s went passive
17977          // default is passive
17978          /*program { name: "go_active";
17979             signal: "elm,state,selected";
17980             source: "elm";
17981             action: STATE_SET "selected" 0.0;
17982             target: "elm.text";
17983          }
17984          program { name: "go_passive";
17985             signal: "elm,state,unselected";
17986             source: "elm";
17987             action: STATE_SET "default" 0.0;
17988             target: "elm.text";
17989             transition: LINEAR 0.1;
17990          }*/
17991          program { name: "go_disabled";
17992             signal: "elm,state,disabled";
17993             source: "elm";
17994             action: STATE_SET "disabled" 0.0;
17995             target: "disclip";
17996          }
17997          program { name: "go_enabled";
17998             signal: "elm,state,enabled";
17999             source: "elm";
18000             action: STATE_SET "default" 0.0;
18001             target: "disclip";
18002          }
18003          program { name: "flip_enabled";
18004             signal: "elm,state,flip,enabled";
18005             source: "elm";
18006             action: STATE_SET "flip_enabled" 0.0;
18007             target: "elm.title";
18008             target: "elm.text";
18009             target: "elm.flip.content.title";
18010             target: "elm.flip.content";
18011          }
18012          program { name: "flip_disabled";
18013             signal: "elm,state,flip,disabled";
18014             source: "elm";
18015             action: STATE_SET "default" 0.0;
18016             target: "elm.title";
18017             target: "elm.text";
18018             target: "elm.flip.content.title";
18019             target: "elm.flip.content";
18020          }
18021       }
18022    }
18023
18024    group { name: "elm/genlist/item/dialogue/1title.1text.1icon/default";
18025       alias: "elm/genlist/item_odd/dialogue/1title.1text.1icon/default";
18026       alias: "elm/genlist/item_compress/dialogue/1title.1text.1icon/default";
18027       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.1icon/default";
18028       alias: "elm/layout/dialogue/1title.1text.1icon";
18029       data.item: "stacking" "above";
18030       data.item: "selectraise" "on";
18031       data.item: "texts" "elm.title elm.text";
18032       data.item: "contents" "elm.icon";
18033       data.item: "flips" "elm.flip.content";
18034       parts {
18035          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
18036          GENLIST_PART_BOTTOM_LINE
18037          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
18038          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
18039          GENLIST_PART_DIALOGUE_ITEM
18040          part { name: "elm.title";
18041             clip_to: "disclip";
18042             type: TEXT;
18043             mouse_events: 0;
18044             scale: 1;
18045             description { state: "default" 0.0;
18046                min: GENLIST_SIZE_163_INC 0;
18047                fixed: 1 0;
18048                rel1 {
18049                   relative: 1.0 0.0;
18050                   to_x: "elm.padding.left";
18051                }
18052                rel2.to_x: "elm.padding.left";
18053                align: 0.0 0.5;
18054                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
18055                text {
18056                   font: "SLP:style=Medium";
18057                   size: GENLIST_FONT_32_INC;
18058                   min: 0 1;
18059                   align: 0.0 0.5;
18060                   text_class: "slp_medium";
18061                }
18062             }
18063          }
18064          part { name: "vertical_line";
18065             type: RECT;
18066             mouse_events: 0;
18067             description { state: "default" 0.0;
18068                min: 1 0;
18069                fixed: 1 0;
18070                rel1 {
18071                   relative: 1.0 0.0;
18072                   to_x: "elm.title";
18073                }
18074                rel2.to_x: "elm.title";
18075                align: 0.0 0.5;
18076                color: GENLIST_PART_LIST_LINE_COLOR_INC;
18077             }
18078          }
18079          part { name: "elm.padding.text.left";
18080             clip_to: "disclip";
18081             type: RECT;
18082             mouse_events: 0;
18083             scale: 1;
18084             description { state: "default" 0.0;
18085                min: GENLIST_PADDING_16_INC 0;
18086                fixed: 1 0;
18087                rel1 {
18088                    relative: 1.0 0.0;
18089                    to_x: "vertical_line";
18090                }
18091                rel2.to_x: "vertical_line";
18092                align: 0.0 0.5;
18093                visible: 0;
18094             }
18095          }
18096          part { name: "elm.icon";
18097            clip_to: "disclip";
18098             type: SWALLOW;
18099             mouse_events: 0;
18100             scale: 1;
18101             description { state: "default" 0.0;
18102                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
18103                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
18104                fixed: 1 1;
18105                rel1.to_x: "elm.padding.right";
18106                rel2 {
18107                   relative: 0.0 1.0;
18108                   to_x: "elm.padding.right";
18109                }
18110                align: 1.0 0.5;
18111             }
18112          }
18113          part { name: "elm.padding.icon.left";
18114             clip_to: "disclip";
18115             type: RECT;
18116             mouse_events: 0;
18117             scale: 1;
18118             description { state: "default" 0.0;
18119                min: GENLIST_PADDING_16_INC 0;
18120                fixed: 1 0;
18121                rel1.to_x: "elm.icon";
18122                rel2 {
18123                    relative: 0.0 1.0;
18124                    to_x: "elm.icon";
18125                }
18126                rel2.to_x: "elm.icon";
18127                align: 1.0 0.5;
18128                visible: 0;
18129             }
18130          }
18131          part { name: "elm.text";
18132             clip_to: "disclip";
18133             type: TEXT;
18134             mouse_events: 0;
18135             scale: 1;
18136             description { state: "default" 0.0;
18137                rel1 {
18138                   relative: 1.0 0.0;
18139                   to_x: "elm.padding.text.left";
18140                }
18141                rel2 {
18142                   relative: 0.0 1.0;
18143                   to_x: "elm.padding.icon.left";
18144                }
18145                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
18146                text {
18147                   font: "SLP:style=Roman";
18148                   size: GENLIST_FONT_44_INC;
18149                   min: 0 1;
18150                   align: 0.0 0.5;
18151                   text_class: "list_item";
18152                }
18153             }
18154             GENLIST_DESCRIPTION_FLIP_ENABLED
18155          }
18156          part { name: "elm.flip.content";
18157             clip_to: "disclip";
18158             type: SWALLOW;
18159             mouse_events: 1;
18160             scale: 1;
18161             description { state: "default" 0.0;
18162                fixed: 1 1;
18163                rel1 {
18164                   relative: 0.0 0.5;
18165                   to_x: "elm.text";
18166                }
18167                rel2 {
18168                   relative: 0.0 0.5;
18169                   to_x: "elm.padding.right";
18170                }
18171                visible: 0;
18172             }
18173             description { state: "flip_enabled" 0.0;
18174                inherit: "default" 0.0;
18175                visible: 1;
18176             }
18177          }
18178          GENLIST_PART_DISCLIP
18179       }
18180       programs {
18181          // signal: elm,state,%s,active
18182          //   a "check" item named %s went active
18183          // signal: elm,state,%s,passive
18184          //   a "check" item named %s went passive
18185          // default is passive
18186          /*program { name: "go_active";
18187             signal: "elm,state,selected";
18188             source: "elm";
18189             action: STATE_SET "selected" 0.0;
18190             target: "elm.text";
18191          }
18192          program { name: "go_passive";
18193             signal: "elm,state,unselected";
18194             source: "elm";
18195             action: STATE_SET "default" 0.0;
18196             target: "elm.text";
18197             transition: LINEAR 0.1;
18198          }*/
18199          program { name: "go_disabled";
18200             signal: "elm,state,disabled";
18201             source: "elm";
18202             action: STATE_SET "disabled" 0.0;
18203             target: "disclip";
18204          }
18205          program { name: "go_enabled";
18206             signal: "elm,state,enabled";
18207             source: "elm";
18208             action: STATE_SET "default" 0.0;
18209             target: "disclip";
18210          }
18211          GENLIST_PROGRAM_FLIP_1TEXT
18212       }
18213    }
18214
18215    group { name: "elm/genlist/item/dialogue/1title.1text.1icon.2/default";
18216       alias: "elm/genlist/item_odd/dialogue/1title.1text.1icon.2/default";
18217       alias: "elm/genlist/item_compress/dialogue/1title.1text.1icon.2/default";
18218       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.1icon.2/default";
18219       alias: "elm/layout/dialogue/1title.1text.1icon.2";
18220       data.item: "stacking" "above";
18221       data.item: "selectraise" "on";
18222       data.item: "texts" "elm.title elm.text";
18223       data.item: "contents" "elm.icon";
18224       data.item: "flips" "elm.flip.content.title elm.flip.content";
18225       parts {
18226          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
18227          GENLIST_PART_BOTTOM_LINE
18228          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
18229          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
18230          GENLIST_PART_DIALOGUE_ITEM
18231          part { name: "elm.title";
18232             clip_to: "disclip";
18233             type: TEXT;
18234             mouse_events: 0;
18235             scale: 1;
18236             description { state: "default" 0.0;
18237                min: GENLIST_SIZE_163_INC 0;
18238                fixed: 1 0;
18239                rel1 {
18240                   relative: 1.0 0.0;
18241                   to_x: "elm.padding.left";
18242                }
18243                rel2.to_x: "elm.padding.left";
18244                align: 0.0 0.5;
18245                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
18246                text {
18247                   font: "SLP:style=Medium";
18248                   size: GENLIST_FONT_32_INC;
18249                   min: 0 1;
18250                   align: 0.0 0.5;
18251                   text_class: "slp_medium";
18252                }
18253             }
18254             GENLIST_DESCRIPTION_FLIP_ENABLED
18255          }
18256          part { name: "elm.flip.content.title";
18257             clip_to: "disclip";
18258             type: SWALLOW;
18259             description { state: "default" 0.0;
18260                visible: 0;
18261                fixed: 1 1;
18262                rel1.to: "elm.title";
18263                rel2.to: "elm.title";
18264             }
18265             description { state: "flip_enabled" 0.0;
18266                inherit: "default" 0.0;
18267                visible: 1;
18268             }
18269          }
18270          part { name: "vertical_line";
18271             type: RECT;
18272             mouse_events: 0;
18273             description { state: "default" 0.0;
18274                min: 1 0;
18275                fixed: 1 0;
18276                rel1 {
18277                   relative: 1.0 0.0;
18278                   to_x: "elm.title";
18279                }
18280                rel2.to_x: "elm.title";
18281                align: 0.0 0.5;
18282                color: GENLIST_PART_LIST_LINE_COLOR_INC;
18283             }
18284          }
18285          part { name: "elm.padding.text.left";
18286             clip_to: "disclip";
18287             type: RECT;
18288             mouse_events: 0;
18289             scale: 1;
18290             description { state: "default" 0.0;
18291                min: GENLIST_PADDING_16_INC 0;
18292                fixed: 1 0;
18293                rel1 {
18294                    relative: 1.0 0.0;
18295                    to_x: "vertical_line";
18296                }
18297                rel2.to_x: "vertical_line";
18298                align: 0.0 0.5;
18299                visible: 0;
18300             }
18301          }
18302          part { name: "elm.icon";
18303            clip_to: "disclip";
18304             type: SWALLOW;
18305             mouse_events: 0;
18306             scale: 1;
18307             description { state: "default" 0.0;
18308                min: 0 0;
18309                max: 0 0;
18310                rel1.to_x: "elm.padding.right";
18311                rel2 {
18312                   relative: 0.0 1.0;
18313                   to_x: "elm.padding.right";
18314                }
18315                align: 1.0 0.5;
18316                visible: 0;
18317             }
18318             description { state: "contact_default_number_enabled" 0.0;
18319                inherit: "default" 0.0;
18320                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
18321                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
18322                visible: 1;
18323             }
18324          }
18325          part { name: "elm.padding.icon.left";
18326             clip_to: "disclip";
18327             type: RECT;
18328             mouse_events: 0;
18329             scale: 1;
18330             description { state: "default" 0.0;
18331                min: 0 0;
18332                fixed: 1 0;
18333                rel1.to_x: "elm.icon";
18334                rel2 {
18335                    relative: 0.0 1.0;
18336                    to_x: "elm.icon";
18337                }
18338                rel2.to_x: "elm.icon";
18339                align: 1.0 0.5;
18340                visible: 0;
18341             }
18342             description { state: "contact_default_number_enabled" 0.0;
18343                inherit: "default" 0.0;
18344                min: GENLIST_PADDING_16_INC 0;
18345             }
18346          }
18347          part { name: "elm.text";
18348             clip_to: "disclip";
18349             type: TEXT;
18350             mouse_events: 0;
18351             scale: 1;
18352             description { state: "default" 0.0;
18353                rel1 {
18354                   relative: 1.0 0.0;
18355                   to_x: "elm.padding.text.left";
18356                }
18357                rel2 {
18358                   relative: 0.0 1.0;
18359                   to_x: "elm.padding.icon.left";
18360                }
18361                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
18362                text {
18363                   font: "SLP:style=Roman";
18364                   size: GENLIST_FONT_44_INC;
18365                   min: 0 1;
18366                   align: 0.0 0.5;
18367                   text_class: "list_item";
18368                }
18369             }
18370             description { state: "contact_default_number_enabled" 0.0;
18371                inherit: "default" 0.0;
18372                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
18373             }
18374             GENLIST_DESCRIPTION_FLIP_ENABLED
18375          }
18376          part { name: "elm.flip.content";
18377             clip_to: "disclip";
18378             type: SWALLOW;
18379             mouse_events: 1;
18380             scale: 1;
18381             description { state: "default" 0.0;
18382                fixed: 1 1;
18383                rel1 {
18384                   relative: 0.0 0.5;
18385                   to_x: "elm.text";
18386                }
18387                rel2 {
18388                   relative: 1.0 0.5;
18389                   to_x: "elm.padding.icon.left";
18390                }
18391                visible: 0;
18392             }
18393             description { state: "flip_enabled" 0.0;
18394                inherit: "default" 0.0;
18395                visible: 1;
18396             }
18397          }
18398          GENLIST_PART_DISCLIP
18399       }
18400       programs {
18401          // signal: elm,state,%s,active
18402          //   a "check" item named %s went active
18403          // signal: elm,state,%s,passive
18404          //   a "check" item named %s went passive
18405          // default is passive
18406          /*program { name: "go_active";
18407             signal: "elm,state,selected";
18408             source: "elm";
18409             action: STATE_SET "selected" 0.0;
18410             target: "elm.text";
18411          }
18412          program { name: "go_passive";
18413             signal: "elm,state,unselected";
18414             source: "elm";
18415             action: STATE_SET "default" 0.0;
18416             target: "elm.text";
18417             transition: LINEAR 0.1;
18418          }*/
18419          program { name: "go_disabled";
18420             signal: "elm,state,disabled";
18421             source: "elm";
18422             action: STATE_SET "disabled" 0.0;
18423             target: "disclip";
18424          }
18425          program { name: "go_enabled";
18426             signal: "elm,state,enabled";
18427             source: "elm";
18428             action: STATE_SET "default" 0.0;
18429             target: "disclip";
18430          }
18431          program { name: "flip_enabled";
18432             signal: "elm,state,flip,enabled";
18433             source: "elm";
18434             action: STATE_SET "flip_enabled" 0.0;
18435             target: "elm.title";
18436             target: "elm.text";
18437             target: "elm.flip.content.title";
18438             target: "elm.flip.content";
18439          }
18440          program { name: "flip_disabled";
18441             signal: "elm,state,flip,disabled";
18442             source: "elm";
18443             action: STATE_SET "default" 0.0;
18444             target: "elm.title";
18445             target: "elm.text";
18446             target: "elm.flip.content.title";
18447             target: "elm.flip.content";
18448          }
18449          program { name: "contact_default_number_enabled";
18450             signal: "elm,state,contact,default_number,enabled";
18451             source: "elm";
18452             action: STATE_SET "contact_default_number_enabled" 0.0;
18453             target: "elm.icon";
18454             target: "elm.padding.icon.left";
18455             target: "elm.text";
18456          }
18457          program { name: "contact_default_number_disabled";
18458             signal: "elm,state,contact,default_number,disabled";
18459             source: "elm";
18460             action: STATE_SET "default" 0.0;
18461             target: "elm.icon";
18462             target: "elm.padding.icon.left";
18463             target: "elm.text";
18464          }
18465       }
18466    }
18467
18468    group { name: "elm/genlist/item/dialogue/2text.4/default";
18469       alias: "elm/genlist/item_odd/dialogue/2text.4/default";
18470       alias: "elm/genlist/item_compress/dialogue/2text.4/default";
18471       alias: "elm/genlist/item_compress_odd/dialogue/2text.4/default";
18472       alias: "elm/layout/dialogue/2text.4";
18473       data.item: "stacking" "above";
18474       data.item: "selectraise" "on";
18475       data.item: "texts" "elm.text.1 elm.text.2";
18476       data.item: "flips" "elm.flip.content";
18477       parts {
18478          GENLIST_PART_BASE( GENLIST_HEIGHT_97_INC )
18479          GENLIST_PART_BOTTOM_LINE
18480          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
18481          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
18482          GENLIST_PART_DIALOGUE_ITEM
18483          part { name: "elm.text.2";
18484             clip_to: "disclip";
18485             type: TEXT;
18486             mouse_events: 0;
18487             scale: 1;
18488             description { state: "default" 0.0;
18489                min: GENLIST_SIZE_206_INC 0;
18490                fixed: 1 0;
18491                rel1.to_x: "elm.padding.right";
18492                rel2 {
18493                   relative: 0.0 1.0;
18494                   to_x: "elm.padding.right";
18495                }
18496                rel2.to_x: "elm.padding.right";
18497                align: 1.0 0.5;
18498                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
18499                text {
18500                   font: "SLP:style=Medium";
18501                   size: GENLIST_FONT_32_INC;
18502                   min: 0 1;
18503                   align: 0.0 0.5;
18504                   text_class: "slp_medium";
18505                }
18506             }
18507          }
18508          part { name: "elm.padding.text2.left";
18509             type: RECT;
18510             mouse_events: 0;
18511             scale: 1;
18512             description { state: "default" 0.0;
18513                min: GENLIST_PADDING_16_INC 0;
18514                fixed: 1 0;
18515                rel1.to_x: "elm.text.2";
18516                rel2 {
18517                   relative: 0.0 1.0;
18518                   to_x: "elm.text.2";
18519                }
18520                align: 1.0 0.5;
18521                visible: 0;
18522             }
18523          }
18524          part { name: "vertical_line";
18525             type: RECT;
18526             mouse_events: 0;
18527             description { state: "default" 0.0;
18528                min: 1 0;
18529                fixed: 1 0;
18530                rel1.to_x: "elm.padding.text2.left";
18531                rel2 {
18532                   relative: 0.0 1.0;
18533                   to_x: "elm.padding.text2.left";
18534                }
18535                align: 1.0 0.5;
18536                color: GENLIST_PART_LIST_LINE_COLOR_INC;
18537             }
18538          }
18539          part { name: "elm.padding.text1.right";
18540             type: RECT;
18541             mouse_events: 0;
18542             scale: 1;
18543             description { state: "default" 0.0;
18544                min: GENLIST_PADDING_16_INC 0;
18545                fixed: 1 0;
18546                rel1.to_x: "vertical_line";
18547                rel2 {
18548                   relative: 0.0 1.0;
18549                   to_x: "vertical_line";
18550                }
18551                align: 1.0 0.5;
18552                visible: 0;
18553             }
18554          }
18555          part { name: "elm.text.1";
18556             clip_to: "disclip";
18557             type: TEXT;
18558             mouse_events: 0;
18559             scale: 1;
18560             description { state: "default" 0.0;
18561                rel1 {
18562                   relative: 1.0 0.0;
18563                   to_x: "elm.padding.left";
18564                }
18565                rel2 {
18566                   relative: 0.0  1.0;
18567                   to_x: "elm.padding.text1.right";
18568                }
18569                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
18570                text {
18571                   font: "SLP:style=Roman";
18572                   size: GENLIST_FONT_42_INC;
18573                   min: 0 1;
18574                   align: 1.0 0.5;
18575                   text_class: "list_item";
18576                }
18577             }
18578             description { state: "selected" 0.0;
18579                inherit: "default" 0.0;
18580                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
18581             }
18582             GENLIST_DESCRIPTION_FLIP_ENABLED
18583          }
18584          part { name: "elm.flip.content";
18585             clip_to: "disclip";
18586             type: SWALLOW;
18587             mouse_events: 1;
18588             scale: 1;
18589             description { state: "default" 0.0;
18590                fixed: 1 1;
18591                rel1 {
18592                   relative: 1.0 0.5;
18593                   to_x: "vertical_line";
18594                }
18595                rel2 {
18596                   relative: 0.0 0.5;
18597                   to_x: "elm.padding.right";
18598                }
18599                visible: 0;
18600             }
18601             description { state: "flip_enabled" 0.0;
18602                inherit: "default" 0.0;
18603                visible: 1;
18604             }
18605          }
18606          GENLIST_PART_DISCLIP
18607       }
18608       programs {
18609          // signal: elm,state,%s,active
18610          //   a "check" item named %s went active
18611          // signal: elm,state,%s,passive
18612          //   a "check" item named %s went passive
18613          // default is passive
18614          /*program { name: "go_active";
18615             signal: "elm,state,selected";
18616             source: "elm";
18617             action: STATE_SET "selected" 0.0;
18618             target: "elm.text";
18619          }
18620          program { name: "go_passive";
18621             signal: "elm,state,unselected";
18622             source: "elm";
18623             action: STATE_SET "default" 0.0;
18624             target: "elm.text";
18625             transition: LINEAR 0.1;
18626          }*/
18627          program { name: "go_disabled";
18628             signal: "elm,state,disabled";
18629             source: "elm";
18630             action: STATE_SET "disabled" 0.0;
18631             target: "disclip";
18632          }
18633          program { name: "go_enabled";
18634             signal: "elm,state,enabled";
18635             source: "elm";
18636             action: STATE_SET "default" 0.0;
18637             target: "disclip";
18638          }
18639          GENLIST_PROGRAM_FLIP_2TEXT
18640       }
18641    }
18642
18643    group { name: "elm/genlist/item_compress/dialogue/2text.4.tb/default";
18644       inherit: "elm/genlist/item/dialogue/2text.4/default";
18645       parts {
18646          part { name: "elm.text.2";
18647             clip_to: "disclip";
18648             type: TEXTBLOCK;
18649             mouse_events: 0;
18650             scale: 1;
18651             description { state: "default" 0.0;
18652                min: GENLIST_SIZE_206_INC 0;
18653                fixed: 1 0;
18654                rel1.to_x: "elm.padding.right";
18655                rel2 {
18656                   relative: 0.0 1.0;
18657                   to_x: "elm.padding.right";
18658                }
18659                rel2.to_x: "elm.padding.right";
18660                align: 1.0 0.5;
18661                text {
18662                   style: "genlist_default_textblock_style";
18663                   size: GENLIST_FONT_32_INC;
18664                   min: 0 1;
18665                   align: 0.0 0.5;
18666                }
18667             }
18668          }
18669       }
18670    }
18671
18672    group { name: "elm/genlist/item/dialogue/1text.3icon.2/default";
18673       alias: "elm/genlist/item_odd/dialogue/1text.3icon.2/default";
18674       alias: "elm/genlist/item_compress/dialogue/1text.3icon.2/default";
18675       alias: "elm/genlist/item_compress_odd/dialogue/1text.3icon.2/default";
18676       alias: "elm/layout/dialogue/1text.3icon.2";
18677       data.item: "stacking" "above";
18678       data.item: "selectraise" "on";
18679       data.item: "texts" "elm.text";
18680       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
18681       data.item: "flips" "elm.flip.content";
18682       images {
18683          image: "00_list_bar_press_1x80.png" COMP;
18684       }
18685       parts {
18686          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
18687          GENLIST_PART_BG_IMAGE
18688          GENLIST_PART_BOTTOM_LINE
18689          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18690          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
18691          GENLIST_PART_DIALOGUE_ITEM
18692          part { name: "elm.icon.1";
18693             clip_to: "disclip";
18694             type: SWALLOW;
18695             scale: 1;
18696             description { state: "default" 0.0;
18697                min: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
18698                max: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
18699                fixed: 1 1;
18700                rel1 {
18701                   relative: 1.0 0.0;
18702                   to_x: "elm.padding.left";
18703                }
18704                rel2.to_x: "elm.padding.left";
18705                align: 0.0 0.5;
18706             }
18707             GENLIST_DESCRIPTION_FLIP_ENABLED
18708          }
18709          part { name: "elm.padding.icon1.right";
18710             clip_to: "disclip";
18711             type: RECT;
18712             scale: 1;
18713             description { state: "default" 0.0;
18714                min: GENLIST_SIZE_16_INC 0;
18715                fixed: 1 0;
18716                rel1 {
18717                   relative: 1.0 0.0;
18718                   to_x: "elm.icon.1";
18719                }
18720                rel2.to_x: "elm.icon.1";
18721                align: 0.0 0.0;
18722                visible: 0;
18723             }
18724          }
18725          part { name: "elm.icon.2";
18726             clip_to: "disclip";
18727             type: SWALLOW;
18728             scale: 1;
18729             description { state: "default" 0.0;
18730                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
18731                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
18732                fixed: 1 1;
18733                rel1 {
18734                   relative: 1.0 0.0;
18735                   to_x: "elm.padding.icon1.right";
18736                }
18737                rel2.to_x: "elm.padding.icon1.right";
18738                align: 0.0 0.5;
18739             }
18740             GENLIST_DESCRIPTION_FLIP_ENABLED
18741          }
18742          part { name: "elm.padding.icon2.right";
18743             clip_to: "disclip";
18744             type: RECT;
18745             scale: 1;
18746             description { state: "default" 0.0;
18747                min: GENLIST_SIZE_16_INC 0;
18748                fixed: 1 0;
18749                rel1 {
18750                   relative: 1.0 0.0;
18751                   to_x: "elm.icon.2";
18752                }
18753                rel2.to_x: "elm.icon.2";
18754                visible: 0;
18755             }
18756          }
18757          part { name: "elm.icon.3";
18758             clip_to: "disclip";
18759             type: SWALLOW;
18760             scale: 1;
18761             description { state: "default" 0.0;
18762                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
18763                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
18764                fixed: 1 1;
18765                rel1 {
18766                   relative: 0.0 0.0;
18767                   to_x: "elm.padding.right";
18768                }
18769                rel2 {
18770                   relative: 0.0 1.0;
18771                   to_x: "elm.padding.right";
18772                }
18773                align: 1.0 0.5;
18774             }
18775             GENLIST_DESCRIPTION_FLIP_ENABLED
18776          }
18777          part { name: "elm.padding.icon3.left";
18778             clip_to: "disclip";
18779             type: RECT;
18780             scale: 1;
18781             description { state: "default" 0.0;
18782                min: GENLIST_SIZE_16_INC 0;
18783                fixed: 1 0;
18784                rel1.to_x: "elm.icon.3";
18785                rel2 {
18786                   relative: 0.0 1.0;
18787                   to_x: "elm.icon.3";
18788                }
18789                align: 1.0 0.0;
18790                visible: 0;
18791             }
18792          }
18793          part { name: "elm.text";
18794             clip_to: "disclip";
18795             type: TEXT;
18796             mouse_events: 0;
18797             scale: 1;
18798             description { state: "default" 0.0;
18799                rel1 {
18800                   relative: 1.0 0.0;
18801                   to_x: "elm.padding.icon2.right";
18802                }
18803                rel2 {
18804                   relative: 0.0 1.0;
18805                   to_x: "elm.padding.icon3.left";
18806                }
18807                align: 0.0 0.5;
18808                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
18809                text {
18810                   font: "SLP:style=Roman";
18811                   size: GENLIST_FONT_44_INC;
18812                   min: 0 1;
18813                   align: 0.0 0.5;
18814                   text_class: "list_item";
18815                }
18816             }
18817             description { state: "selected" 0.0;
18818                inherit: "default" 0.0;
18819                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
18820             }
18821             GENLIST_DESCRIPTION_FLIP_ENABLED
18822          }
18823          GENLIST_PART_FLIP
18824          GENLIST_PART_DISCLIP
18825       }
18826       programs {
18827          program { name: "go_active";
18828             signal: "elm,state,selected";
18829             source: "elm";
18830             action: STATE_SET "selected" 0.0;
18831             target: "bg_image";
18832             target: "elm.text";
18833             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18834          }
18835          program { name: "go_passive";
18836             signal: "elm,state,unselected";
18837             source: "elm";
18838             action: STATE_SET "default" 0.0;
18839             target: "bg_image";
18840             target: "elm.text";
18841             transition: LINEAR 0.1;
18842          }
18843          program { name: "go_disabled";
18844             signal: "elm,state,disabled";
18845             source: "elm";
18846             action: STATE_SET "disabled" 0.0;
18847             target: "disclip";
18848          }
18849          program { name: "go_enabled";
18850             signal: "elm,state,enabled";
18851             source: "elm";
18852             action: STATE_SET "default" 0.0;
18853             target: "disclip";
18854          }
18855          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
18856          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18857       }
18858    }
18859
18860    group { name: "elm/genlist/item/dialogue/2text/default";
18861       alias: "elm/genlist/item_odd/dialogue/2text/default";
18862       alias: "elm/genlist/item_compress/dialogue/2text/default";
18863       alias: "elm/genlist/item_compress_odd/dialogue/2text/default";
18864       alias: "elm/layout/dialogue/2text";
18865       data.item: "stacking" "above";
18866       data.item: "selectraise" "on";
18867       data.item: "texts" "elm.text.1 elm.text.2";
18868       data.item: "flips" "elm.flip.content";
18869       parts {
18870          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
18871          GENLIST_PART_BG_IMAGE
18872          GENLIST_PART_BOTTOM_LINE
18873          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
18874          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
18875          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18876          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
18877          GENLIST_PART_DIALOGUE_ITEM
18878          part { name: "elm.text.1";
18879             clip_to: "disclip";
18880             type: TEXT;
18881             mouse_events: 0;
18882             scale: 1;
18883             description { state: "default" 0.0;
18884                min: 0 GENLIST_SIZE_61_INC;
18885                fixed: 0 1;
18886                rel1 {
18887                   relative: 1.0 1.0;
18888                   to_x: "elm.padding.left";
18889                   to_y: "elm.padding.top";
18890                }
18891                rel2 {
18892                   relative: 0.0 1.0;
18893                   to_x: "elm.padding.right";
18894                   to_y: "elm.padding.top";
18895                }
18896                align: 0.0 0.0;
18897                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
18898                text {
18899                   font: "SLP:style=Roman";
18900                   size: GENLIST_FONT_44_INC;
18901                   min: 0 1;
18902                   align: 0.0 0.5;
18903                   text_class: "list_item";
18904                }
18905             }
18906             description { state: "selected" 0.0;
18907                inherit: "default" 0.0;
18908                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
18909             }
18910             GENLIST_DESCRIPTION_FLIP_ENABLED
18911          }
18912          part { name: "elm.text.2";
18913             clip_to: "disclip";
18914             type: TEXT;
18915             mouse_events: 0;
18916             scale: 1;
18917             description { state: "default" 0.0;
18918                rel1 {
18919                   relative: 1.0 1.0;
18920                   to_x: "elm.padding.left";
18921                   to_y: "elm.text.1";
18922                }
18923                rel2 {
18924                   relative: 0.0 0.0;
18925                   to_x: "elm.padding.right";
18926                   to_y: "elm.padding.bottom";
18927                }
18928                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
18929                text {
18930                   font: "SLP:style=Medium";
18931                   size: GENLIST_FONT_32_INC;
18932                   min: 0 1;
18933                   align: 0.0 0.5;
18934                   text_class: "slp_medium";
18935                }
18936             }
18937             description { state: "selected" 0.0;
18938                inherit: "default" 0.0;
18939                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
18940             }
18941             GENLIST_DESCRIPTION_FLIP_ENABLED
18942          }
18943          GENLIST_PART_FLIP
18944          GENLIST_PART_DISCLIP
18945       }
18946       programs {
18947          // signal: elm,state,%s,active
18948          //   a "check" item named %s went active
18949          // signal: elm,state,%s,passive
18950          //   a "check" item named %s went passive
18951          // default is passive
18952          program { name: "go_active";
18953             signal: "elm,state,selected";
18954             source: "elm";
18955             action: STATE_SET "selected" 0.0;
18956             target: "bg_image";
18957             target: "elm.text.1";
18958             target: "elm.text.2";
18959             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18960          }
18961          program { name: "go_passive";
18962             signal: "elm,state,unselected";
18963             source: "elm";
18964             action: STATE_SET "default" 0.0;
18965             target: "bg_image";
18966             target: "elm.text.1";
18967             target: "elm.text.2";
18968             transition: LINEAR 0.1;
18969          }
18970          program { name: "go_disabled";
18971             signal: "elm,state,disabled";
18972             source: "elm";
18973             action: STATE_SET "disabled" 0.0;
18974             target: "disclip";
18975          }
18976          program { name: "go_enabled";
18977             signal: "elm,state,enabled";
18978             source: "elm";
18979             action: STATE_SET "default" 0.0;
18980             target: "disclip";
18981          }
18982          GENLIST_PROGRAM_FLIP_2TEXT
18983          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18984       }
18985    }
18986
18987    group { name: "elm/genlist/item/dialogue/2text.2/default";
18988       alias: "elm/genlist/item_odd/dialogue/2text.2/default";
18989       alias: "elm/genlist/item_compress/dialogue/2text.2/default";
18990       alias: "elm/genlist/item_compress_odd/dialogue/2text.2/default";
18991       alias: "elm/layout/dialogue/2text.2";
18992       data.item: "stacking" "above";
18993       data.item: "selectraise" "on";
18994       data.item: "texts" "elm.text.1 elm.text.2";
18995       data.item: "flips" "elm.flip.content";
18996       parts {
18997          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
18998          GENLIST_PART_BG_IMAGE
18999          GENLIST_PART_BOTTOM_LINE
19000          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
19001          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
19002          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
19003          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
19004          GENLIST_PART_DIALOGUE_ITEM
19005          part { name: "elm.text.1";
19006             clip_to: "disclip";
19007             type: TEXT;
19008             mouse_events: 0;
19009             scale: 1;
19010             description { state: "default" 0.0;
19011                min: 0 GENLIST_SIZE_61_INC;
19012                fixed: 0 1;
19013                rel1 {
19014                   relative: 1.0 0.0;
19015                   to_x: "elm.padding.left";
19016                   to_y: "elm.padding.bottom";
19017                }
19018                rel2 {
19019                   relative: 0.0 0.0;
19020                   to_x: "elm.padding.right";
19021                   to_y: "elm.padding.bottom";
19022                }
19023                align: 0.0 1.0;
19024                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
19025                text {
19026                   font: "SLP:style=Roman";
19027                   size: GENLIST_FONT_44_INC;
19028                   min: 0 1;
19029                   align: 0.0 0.5;
19030                   text_class: "list_item";
19031                }
19032             }
19033             description { state: "selected" 0.0;
19034                inherit: "default" 0.0;
19035                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19036             }
19037             GENLIST_DESCRIPTION_FLIP_ENABLED
19038          }
19039          part { name: "elm.text.2";
19040             clip_to: "disclip";
19041             type: TEXT;
19042             mouse_events: 0;
19043             scale: 1;
19044             description { state: "default" 0.0;
19045                rel1 {
19046                   relative: 1.0 1.0;
19047                   to_x: "elm.padding.left";
19048                   to_y: "elm.padding.top";
19049                }
19050                rel2 {
19051                   relative: 0.0 0.0;
19052                   to_x: "elm.padding.right";
19053                   to_y: "elm.text.1";
19054                }
19055                align: 0.0 1.0;
19056                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
19057                text {
19058                   font: "SLP:style=Medium";
19059                   size: GENLIST_FONT_32_INC;
19060                   min: 0 1;
19061                   align: 0.0 0.5;
19062                   text_class: "slp_medium";
19063                }
19064             }
19065             description { state: "selected" 0.0;
19066                inherit: "default" 0.0;
19067                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19068             }
19069             GENLIST_DESCRIPTION_FLIP_ENABLED
19070          }
19071          GENLIST_PART_FLIP
19072          GENLIST_PART_DISCLIP
19073       }
19074       programs {
19075          // signal: elm,state,%s,active
19076          //   a "check" item named %s went active
19077          // signal: elm,state,%s,passive
19078          //   a "check" item named %s went passive
19079          // default is passive
19080          program { name: "go_active";
19081             signal: "elm,state,selected";
19082             source: "elm";
19083             action: STATE_SET "selected" 0.0;
19084             target: "bg_image";
19085             target: "elm.text.1";
19086             target: "elm.text.2";
19087             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
19088          }
19089          program { name: "go_passive";
19090             signal: "elm,state,unselected";
19091             source: "elm";
19092             action: STATE_SET "default" 0.0;
19093             target: "bg_image";
19094             target: "elm.text.1";
19095             target: "elm.text.2";
19096             transition: LINEAR 0.1;
19097          }
19098          program { name: "go_disabled";
19099             signal: "elm,state,disabled";
19100             source: "elm";
19101             action: STATE_SET "disabled" 0.0;
19102             target: "disclip";
19103          }
19104          program { name: "go_enabled";
19105             signal: "elm,state,enabled";
19106             source: "elm";
19107             action: STATE_SET "default" 0.0;
19108             target: "disclip";
19109          }
19110          GENLIST_PROGRAM_FLIP_2TEXT
19111          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
19112       }
19113    }
19114
19115    group { name: "elm/genlist/item/dialogue/2text.3/default";
19116       alias: "elm/genlist/item_odd/dialogue/2text.3/default";
19117       alias: "elm/genlist/item_compress/dialogue/2text.3/default";
19118       alias: "elm/genlist/item_compress_odd/dialogue/2text.3/default";
19119       alias: "elm/layout/dialogue/2text.3";
19120       data.item: "stacking" "above";
19121       data.item: "selectraise" "on";
19122       data.item: "texts" "elm.text.1 elm.text.2";
19123       data.item: "flips" "elm.flip.content";
19124       parts {
19125          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
19126          GENLIST_PART_BG_IMAGE
19127          GENLIST_PART_BOTTOM_LINE
19128          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
19129          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
19130          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
19131          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
19132          GENLIST_PART_DIALOGUE_ITEM
19133          part { name: "elm.text.1";
19134             clip_to: "disclip";
19135             type: TEXT;
19136             mouse_events: 0;
19137             scale: 1;
19138             description { state: "default" 0.0;
19139                min: 0 GENLIST_SIZE_61_INC;
19140                fixed: 0 1;
19141                rel1 {
19142                   relative: 1.0 1.0;
19143                   to_x: "elm.padding.left";
19144                   to_y: "elm.padding.top";
19145                }
19146                rel2 {
19147                   relative: 0.0 1.0;
19148                   to_x: "elm.padding.right";
19149                   to_y: "elm.padding.top";
19150                }
19151                align: 0.0 0.0;
19152                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
19153                text {
19154                   font: "SLP:style=Roman";
19155                   size: GENLIST_FONT_44_INC;
19156                   min: 0 1;
19157                   align: 0.0 0.5;
19158                   text_class: "list_item";
19159                }
19160             }
19161             description { state: "selected" 0.0;
19162                inherit: "default" 0.0;
19163                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19164             }
19165             GENLIST_DESCRIPTION_FLIP_ENABLED
19166          }
19167          part { name: "elm.text.2";
19168             clip_to: "disclip";
19169             type: TEXT;
19170             mouse_events: 0;
19171             scale: 1;
19172             description { state: "default" 0.0;
19173                rel1 {
19174                   relative: 1.0 1.0;
19175                   to_x: "elm.padding.left";
19176                   to_y: "elm.text.1";
19177                }
19178                rel2 {
19179                   relative: 0.0 0.0;
19180                   to_x: "elm.padding.right";
19181                   to_y: "elm.padding.bottom";
19182                }
19183                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
19184                text {
19185                   font: "SLP:style=Medium";
19186                   size: GENLIST_FONT_32_INC;
19187                   min: 0 1;
19188                   align: 0.0 0.5;
19189                   text_class: "slp_roman";
19190                }
19191             }
19192             description { state: "selected" 0.0;
19193                inherit: "default" 0.0;
19194                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19195             }
19196             GENLIST_DESCRIPTION_FLIP_ENABLED
19197          }
19198          GENLIST_PART_FLIP
19199          GENLIST_PART_DISCLIP
19200       }
19201       programs {
19202          // signal: elm,state,%s,active
19203          //   a "check" item named %s went active
19204          // signal: elm,state,%s,passive
19205          //   a "check" item named %s went passive
19206          // default is passive
19207          program { name: "go_active";
19208             signal: "elm,state,selected";
19209             source: "elm";
19210             action: STATE_SET "selected" 0.0;
19211             target: "bg_image";
19212             target: "elm.text.1";
19213             target: "elm.text.2";
19214             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
19215          }
19216          program { name: "go_passive";
19217             signal: "elm,state,unselected";
19218             source: "elm";
19219             action: STATE_SET "default" 0.0;
19220             target: "bg_image";
19221             target: "elm.text.1";
19222             target: "elm.text.2";
19223             transition: LINEAR 0.1;
19224          }
19225          program { name: "go_disabled";
19226             signal: "elm,state,disabled";
19227             source: "elm";
19228             action: STATE_SET "disabled" 0.0;
19229             target: "disclip";
19230          }
19231          program { name: "go_enabled";
19232             signal: "elm,state,enabled";
19233             source: "elm";
19234             action: STATE_SET "default" 0.0;
19235             target: "disclip";
19236          }
19237          GENLIST_PROGRAM_FLIP_2TEXT
19238          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
19239       }
19240    }
19241
19242    group { name: "elm/genlist/item/dialogue/2text.1icon.2/default";
19243       alias: "elm/genlist/item_odd/dialogue/2text.1icon.2/default";
19244       alias: "elm/genlist/item_compress/dialogue/2text.1icon.2/default";
19245       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.2/default";
19246       alias: "elm/layout/dialogue/2text.1icon.2";
19247       data.item: "stacking" "above";
19248       data.item: "selectraise" "on";
19249       data.item: "texts" "elm.text.1 elm.text.2";
19250       data.item: "contents" "elm.icon";
19251       data.item: "flips" "elm.flip.content";
19252       parts {
19253          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
19254          GENLIST_PART_BG_IMAGE
19255          GENLIST_PART_BOTTOM_LINE
19256          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
19257          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
19258          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
19259          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
19260          GENLIST_PART_DIALOGUE_ITEM
19261          part { name: "elm.icon";
19262             clip_to: "disclip";
19263             type: SWALLOW;
19264             scale: 1;
19265             description { state: "default" 0.0;
19266                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
19267                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
19268                fixed: 1 1;
19269                rel1 {
19270                   relative: 1.0 0.0;
19271                   to_x: "elm.padding.left";
19272                }
19273                rel2.to_x: "elm.padding.left";
19274                align: 0.0 0.5;
19275             }
19276             GENLIST_DESCRIPTION_FLIP_ENABLED
19277          }
19278          part { name: "elm.padding.icon.right";
19279             clip_to: "disclip";
19280             type: RECT;
19281             scale: 1;
19282             description { state: "default" 0.0;
19283                min: GENLIST_PADDING_16_INC 0;
19284                fixed: 1 0;
19285                rel1 {
19286                   relative: 1.0 0.0;
19287                   to_x: "elm.icon";
19288                }
19289                rel2.to_x: "elm.icon";
19290                align: 0.0 0.0;
19291                visible: 0;
19292             }
19293          }
19294          part { name: "elm.text.1";
19295             clip_to: "disclip";
19296             type: TEXT;
19297             mouse_events: 0;
19298             scale: 1;
19299             description { state: "default" 0.0;
19300                min: 0 GENLIST_SIZE_61_INC;
19301                fixed: 0 1;
19302                rel1 {
19303                   relative: 1.0 1.0;
19304                   to_x: "elm.padding.icon.right";
19305                   to_y: "elm.padding.top";
19306                }
19307                rel2 {
19308                   relative: 0.0 1.0;
19309                   to_x: "elm.padding.right";
19310                   to_y: "elm.padding.top";
19311                }
19312                align: 0.0 0.0;
19313                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
19314                text {
19315                   font: "SLP:style=Roman";
19316                   size: GENLIST_FONT_44_INC;
19317                   min: 0 1;
19318                   align: 0.0 0.5;
19319                   text_class: "list_item";
19320                }
19321             }
19322             description { state: "selected" 0.0;
19323                inherit: "default" 0.0;
19324                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19325             }
19326             GENLIST_DESCRIPTION_FLIP_ENABLED
19327          }
19328          part { name: "elm.text.2";
19329             clip_to: "disclip";
19330             type: TEXT;
19331             mouse_events: 0;
19332             scale: 1;
19333             description { state: "default" 0.0;
19334                rel1 {
19335                   relative: 1.0 1.0;
19336                   to_x: "elm.padding.icon.right";
19337                   to_y: "elm.text.1";
19338                }
19339                rel2 {
19340                   relative: 0.0 0.0;
19341                   to_x: "elm.padding.right";
19342                   to_y: "elm.padding.bottom";
19343                }
19344                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
19345                text {
19346                   font: "SLP:style=Medium";
19347                   size: GENLIST_FONT_32_INC;
19348                   min: 0 1;
19349                   align: 0.0 0.5;
19350                   text_class: "slp_medium";
19351                }
19352             }
19353             description { state: "selected" 0.0;
19354                inherit: "default" 0.0;
19355                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19356             }
19357             GENLIST_DESCRIPTION_FLIP_ENABLED
19358          }
19359          GENLIST_PART_FLIP
19360          GENLIST_PART_DISCLIP
19361       }
19362       programs {
19363          // signal: elm,state,%s,active
19364          //   a "check" item named %s went active
19365          // signal: elm,state,%s,passive
19366          //   a "check" item named %s went passive
19367          // default is passive
19368          program { name: "go_active";
19369             signal: "elm,state,selected";
19370             source: "elm";
19371             action: STATE_SET "selected" 0.0;
19372             target: "bg_image";
19373             target: "elm.text.1";
19374             target: "elm.text.2";
19375             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
19376          }
19377          program { name: "go_passive";
19378             signal: "elm,state,unselected";
19379             source: "elm";
19380             action: STATE_SET "default" 0.0;
19381             target: "bg_image";
19382             target: "elm.text.1";
19383             target: "elm.text.2";
19384             transition: LINEAR 0.1;
19385          }
19386          program { name: "go_disabled";
19387             signal: "elm,state,disabled";
19388             source: "elm";
19389             action: STATE_SET "disabled" 0.0;
19390             target: "disclip";
19391          }
19392          program { name: "go_enabled";
19393             signal: "elm,state,enabled";
19394             source: "elm";
19395             action: STATE_SET "default" 0.0;
19396             target: "disclip";
19397          }
19398          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
19399          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
19400       }
19401    }
19402
19403    group { name: "elm/genlist/item/dialogue/2text.1icon.3/default";
19404       alias: "elm/genlist/item_odd/dialogue/2text.1icon.3/default";
19405       alias: "elm/genlist/item_compress/dialogue/2text.1icon.3/default";
19406       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.3/default";
19407       alias: "elm/layout/dialogue/2text.1icon.3";
19408       data.item: "stacking" "above";
19409       data.item: "selectraise" "on";
19410       data.item: "texts" "elm.text.1 elm.text.2";
19411       data.item: "contents" "elm.icon";
19412       data.item: "flips" "elm.flip.content";
19413       parts {
19414          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
19415          GENLIST_PART_BG_IMAGE
19416          GENLIST_PART_BOTTOM_LINE
19417          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
19418          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
19419          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
19420          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
19421          GENLIST_PART_DIALOGUE_ITEM
19422          part { name: "elm.icon";
19423             clip_to: "disclip";
19424             type: SWALLOW;
19425             scale: 1;
19426             description { state: "default" 0.0;
19427                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
19428                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
19429                fixed: 1 1;
19430                rel1 {
19431                   relative: 1.0 0.0;
19432                   to_x: "elm.padding.left";
19433                }
19434                rel2.to_x: "elm.padding.left";
19435                align: 0.0 0.5;
19436             }
19437             GENLIST_DESCRIPTION_FLIP_ENABLED
19438          }
19439          part { name: "elm.padding.icon.right";
19440             clip_to: "disclip";
19441             type: RECT;
19442             scale: 1;
19443             description { state: "default" 0.0;
19444                min: GENLIST_PADDING_16_INC 0;
19445                fixed: 1 0;
19446                rel1 {
19447                   relative: 1.0 0.0;
19448                   to_x: "elm.icon";
19449                }
19450                rel2.to_x: "elm.icon";
19451                align: 0.0 0.0;
19452                visible: 0;
19453             }
19454          }
19455          part { name: "elm.text.1";
19456             clip_to: "disclip";
19457             type: TEXT;
19458             mouse_events: 0;
19459             scale: 1;
19460             description { state: "default" 0.0;
19461                min: 0 GENLIST_SIZE_61_INC;
19462                fixed: 0 1;
19463                rel1 {
19464                   relative: 1.0 1.0;
19465                   to_x: "elm.padding.icon.right";
19466                   to_y: "elm.padding.top";
19467                }
19468                rel2 {
19469                   relative: 0.0 1.0;
19470                   to_x: "elm.padding.right";
19471                   to_y: "elm.padding.top";
19472                }
19473                align: 0.0 0.0;
19474                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
19475                text {
19476                   font: "SLP:style=Roman";
19477                   size: GENLIST_FONT_44_INC;
19478                   min: 0 1;
19479                   align: 0.0 0.5;
19480                   text_class: "list_item";
19481                }
19482             }
19483             description { state: "selected" 0.0;
19484                inherit: "default" 0.0;
19485                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19486             }
19487             GENLIST_DESCRIPTION_FLIP_ENABLED
19488          }
19489          part { name: "elm.text.2";
19490             clip_to: "disclip";
19491             type: TEXT;
19492             mouse_events: 0;
19493             scale: 1;
19494             description { state: "default" 0.0;
19495                rel1 {
19496                   relative: 1.0 1.0;
19497                   to_x: "elm.padding.icon.right";
19498                   to_y: "elm.text.1";
19499                }
19500                rel2 {
19501                   relative: 0.0 0.0;
19502                   to_x: "elm.padding.right";
19503                   to_y: "elm.padding.bottom";
19504                }
19505                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
19506                text {
19507                   font: "SLP:style=Medium";
19508                   size: GENLIST_FONT_32_INC;
19509                   min: 0 1;
19510                   align: 0.0 0.5;
19511                   text_class: "slp_medium";
19512                }
19513             }
19514             description { state: "selected" 0.0;
19515                inherit: "default" 0.0;
19516                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19517             }
19518             GENLIST_DESCRIPTION_FLIP_ENABLED
19519          }
19520          GENLIST_PART_FLIP
19521          GENLIST_PART_DISCLIP
19522       }
19523       programs {
19524          // signal: elm,state,%s,active
19525          //   a "check" item named %s went active
19526          // signal: elm,state,%s,passive
19527          //   a "check" item named %s went passive
19528          // default is passive
19529          program { name: "go_active";
19530             signal: "elm,state,selected";
19531             source: "elm";
19532             action: STATE_SET "selected" 0.0;
19533             target: "bg_image";
19534             target: "elm.text.1";
19535             target: "elm.text.2";
19536             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
19537          }
19538          program { name: "go_passive";
19539             signal: "elm,state,unselected";
19540             source: "elm";
19541             action: STATE_SET "default" 0.0;
19542             target: "bg_image";
19543             target: "elm.text.1";
19544             target: "elm.text.2";
19545             transition: LINEAR 0.1;
19546          }
19547          program { name: "go_disabled";
19548             signal: "elm,state,disabled";
19549             source: "elm";
19550             action: STATE_SET "disabled" 0.0;
19551             target: "disclip";
19552          }
19553          program { name: "go_enabled";
19554             signal: "elm,state,enabled";
19555             source: "elm";
19556             action: STATE_SET "default" 0.0;
19557             target: "disclip";
19558          }
19559          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
19560          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
19561       }
19562    }
19563
19564    group { name: "elm/genlist/item/dialogue/2text.3icon/default";
19565       alias: "elm/genlist/item_odd/dialogue/2text.3icon/default";
19566       alias: "elm/genlist/item_compress/dialogue/2text.3icon/default";
19567       alias: "elm/genlist/item_compress_odd/dialogue/2text.3icon/default";
19568       alias: "elm/layout/dialogue/2text.3icon";
19569       data.item: "stacking" "above";
19570       data.item: "selectraise" "on";
19571       data.item: "texts" "elm.text.1 elm.text.2";
19572       data.item: "contents" "elm.icon.1 elm.icon.2 elm.swallow.colorbar";
19573       data.item: "flips" "elm.flip.content";
19574       parts {
19575          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
19576          GENLIST_PART_BG_IMAGE
19577          GENLIST_PART_BOTTOM_LINE
19578          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
19579          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
19580          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
19581          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
19582          GENLIST_PART_DIALOGUE_ITEM
19583          part { name: "elm.swallow.colorbar";
19584             clip_to: "disclip";
19585             type: SWALLOW;
19586             scale: 1;
19587             description { state: "default" 0.0;
19588                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
19589                fixed: 1 1;
19590                rel1 {
19591                   relative: 1.0 0.0;
19592                   to_x: "elm.rect.dialogue";
19593                }
19594                rel2 {
19595                   relative: 1.0 0.0;
19596                   to_x: "elm.rect.dialogue";
19597                }
19598                align: 0.0 0.0;
19599             }
19600          }
19601          part { name: "elm.icon.1";
19602             clip_to: "disclip";
19603             type: SWALLOW;
19604             scale: 1;
19605             description { state: "default" 0.0;
19606                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
19607                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
19608                fixed: 1 1;
19609                rel1 {
19610                   relative: 1.0 0.0;
19611                   to_x: "elm.padding.left";
19612                }
19613                rel2 {
19614                   relative: 1.0 1.0;
19615                   to_x: "elm.padding.left";
19616                }
19617                align: 0.0 0.5;
19618             }
19619             GENLIST_DESCRIPTION_FLIP_ENABLED
19620          }
19621          part { name: "elm.padding.icon1.right";
19622             type: RECT;
19623             scale: 1;
19624             description { state: "default" 0.0;
19625                min: GENLIST_PADDING_16_INC 0;
19626                fixed: 1 0;
19627                rel1 {
19628                   relative: 1.0 0.0;
19629                   to_x: "elm.icon.1";
19630                }
19631                rel2.to_x: "elm.icon.1";
19632                align: 0.0 0.0;
19633                visible: 0;
19634             }
19635          }
19636          part { name: "elm.icon.2";
19637             clip_to: "disclip";
19638             type: SWALLOW;
19639             scale: 1;
19640             description { state: "default" 0.0;
19641                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
19642                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
19643                fixed: 1 1;
19644                rel1.to_x: "elm.padding.right";
19645                rel2 {
19646                   relative: 0.0 1.0;
19647                   to_x: "elm.padding.right";
19648                }
19649                align: 1.0 0.5;
19650             }
19651             GENLIST_DESCRIPTION_FLIP_ENABLED
19652          }
19653          part { name: "elm.padding.icon2.left";
19654             type: RECT;
19655             scale: 1;
19656             description { state: "default" 0.0;
19657                min: GENLIST_PADDING_16_INC 0;
19658                fixed: 1 0;
19659                rel1.to_x: "elm.icon.2";
19660                rel2 {
19661                   relative: 0.0 1.0;
19662                   to_x: "elm.icon.2";
19663                }
19664                align: 1.0 0.0;
19665                visible: 0;
19666             }
19667          }
19668          part { name: "elm.text.1";
19669             clip_to: "disclip";
19670             type: TEXT;
19671             mouse_events: 0;
19672             scale: 1;
19673             description { state: "default" 0.0;
19674                min: 0 GENLIST_SIZE_61_INC;
19675                fixed: 0 1;
19676                rel1 {
19677                   relative: 1.0 1.0;
19678                   to_x: "elm.padding.icon1.right";
19679                   to_y: "elm.padding.top";
19680                }
19681                rel2 {
19682                   relative: 0.0 1.0;
19683                   to_x: "elm.padding.icon2.left";
19684                   to_y: "elm.padding.top";
19685                }
19686                align: 0.0 0.0;
19687                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
19688                text {
19689                   font: "SLP:style=Roman";
19690                   size: GENLIST_FONT_44_INC;
19691                   min: 0 1;
19692                   align: 0.0 0.5;
19693                   text_class: "list_item";
19694                }
19695             }
19696             description { state: "selected" 0.0;
19697                inherit: "default" 0.0;
19698                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19699             }
19700             GENLIST_DESCRIPTION_FLIP_ENABLED
19701          }
19702          part { name: "elm.text.2";
19703             clip_to: "disclip";
19704             type: TEXT;
19705             mouse_events: 0;
19706             scale: 1;
19707             description { state: "default" 0.0;
19708                rel1 {
19709                   relative: 1.0 1.0;
19710                   to_x: "elm.padding.icon1.right";
19711                   to_y: "elm.text.1";
19712                }
19713                rel2 {
19714                   relative: 0.0 0.0;
19715                   to_x: "elm.padding.icon2.left";
19716                   to_y: "elm.padding.bottom";
19717                }
19718                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
19719                text {
19720                   font: "SLP:style=Medium";
19721                   size: GENLIST_FONT_32_INC;
19722                   min: 0 1;
19723                   align: 0.0 0.5;
19724                   text_class: "slp_medium";
19725                }
19726             }
19727             description { state: "selected" 0.0;
19728                inherit: "default" 0.0;
19729                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19730             }
19731             GENLIST_DESCRIPTION_FLIP_ENABLED
19732          }
19733          GENLIST_PART_FLIP
19734          GENLIST_PART_DISCLIP
19735       }
19736       programs {
19737          // signal: elm,state,%s,active
19738          //   a "check" item named %s went active
19739          // signal: elm,state,%s,passive
19740          //   a "check" item named %s went passive
19741          // default is passive
19742          program { name: "go_active";
19743             signal: "elm,state,selected";
19744             source: "elm";
19745             action: STATE_SET "selected" 0.0;
19746             target: "bg_image";
19747             target: "elm.text.1";
19748             target: "elm.text.2";
19749             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
19750          }
19751          program { name: "go_passive";
19752             signal: "elm,state,unselected";
19753             source: "elm";
19754             action: STATE_SET "default" 0.0;
19755             target: "bg_image";
19756             target: "elm.text.1";
19757             target: "elm.text.2";
19758             transition: LINEAR 0.1;
19759          }
19760          program { name: "go_disabled";
19761             signal: "elm,state,disabled";
19762             source: "elm";
19763             action: STATE_SET "disabled" 0.0;
19764             target: "disclip";
19765          }
19766          program { name: "go_enabled";
19767             signal: "elm,state,enabled";
19768             source: "elm";
19769             action: STATE_SET "default" 0.0;
19770             target: "disclip";
19771          }
19772          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
19773          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
19774       }
19775    }
19776
19777    group { name: "elm/genlist/item/dialogue/2text.2icon/default";
19778       alias: "elm/genlist/item_odd/dialogue/2text.2icon/default";
19779       alias: "elm/genlist/item_compress/dialogue/2text.2icon/default";
19780       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon/default";
19781       alias: "elm/layout/dialogue/2text.2icon";
19782       data.item: "stacking" "above";
19783       data.item: "selectraise" "on";
19784       data.item: "texts" "elm.text.1 elm.text.2";
19785       data.item: "contents" "elm.icon.1 elm.icon.2";
19786       data.item: "flips" "elm.flip.content";
19787       parts {
19788          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
19789          GENLIST_PART_BG_IMAGE
19790          GENLIST_PART_BOTTOM_LINE
19791          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
19792          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
19793          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
19794          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
19795          GENLIST_PART_DIALOGUE_ITEM
19796          part { name: "elm.icon.1";
19797             clip_to: "disclip";
19798             type: SWALLOW;
19799             scale: 1;
19800             description { state: "default" 0.0;
19801                min: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
19802                max: GENLIST_SIZE_42_INC GENLIST_SIZE_42_INC;
19803                fixed: 1 1;
19804                rel1 {
19805                   relative: 1.0 1.0;
19806                   to_x: "elm.padding.left";
19807                   to_y: "elm.padding.top";
19808                }
19809                rel2 {
19810                   relative: 1.0 0.0;
19811                   to_x: "elm.padding.left";
19812                   to_y: "elm.padding.bottom";
19813                }
19814                align: 0.0 0.5;
19815             }
19816             GENLIST_DESCRIPTION_FLIP_ENABLED
19817          }
19818          part { name: "elm.padding.icon1.right";
19819             clip_to: "disclip";
19820             type: RECT;
19821             scale: 1;
19822             description { state: "default" 0.0;
19823                min: GENLIST_PADDING_16_INC 0;
19824                fixed: 1 0;
19825                rel1 {
19826                   relative: 1.0 0.0;
19827                   to_x: "elm.icon.1";
19828                }
19829                rel2.to_x: "elm.icon.1";
19830                align: 0.0 0.0;
19831                visible: 0;
19832             }
19833          }
19834          part { name: "elm.icon.2";
19835             clip_to: "disclip";
19836             type: SWALLOW;
19837             scale: 1;
19838             description { state: "default" 0.0;
19839                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
19840                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
19841                fixed: 1 1;
19842                rel1 {
19843                   relative: 1.0 1.0;
19844                   to_x: "elm.padding.icon1.right";
19845                   to_y: "elm.padding.top";
19846                }
19847                rel2 {
19848                   relative: 1.0 0.0;
19849                   to_x: "elm.padding.icon1.right";
19850                   to_y: "elm.padding.bottom";
19851                }
19852                align: 0.0 0.5;
19853             }
19854             GENLIST_DESCRIPTION_FLIP_ENABLED
19855          }
19856          part { name: "elm.padding.icon2.right";
19857             clip_to: "disclip";
19858             type: RECT;
19859             scale: 1;
19860             description { state: "default" 0.0;
19861                min: GENLIST_PADDING_16_INC 0;
19862                fixed: 1 0;
19863                rel1 {
19864                   relative: 1.0 0.0;
19865                   to_x: "elm.icon.2";
19866                }
19867                rel2.to_x: "elm.icon.2";
19868                align: 0.0 0.0;
19869                visible: 0;
19870             }
19871          }
19872          part { name: "elm.text.1";
19873             clip_to: "disclip";
19874             type: TEXT;
19875             mouse_events: 0;
19876             scale: 1;
19877             description { state: "default" 0.0;
19878                min: 0 GENLIST_SIZE_61_INC;
19879                fixed: 0 1;
19880                rel1 {
19881                   relative: 1.0 1.0;
19882                   to_x: "elm.padding.icon2.right";
19883                   to_y: "elm.padding.top";
19884                }
19885                rel2 {
19886                   relative: 0.0 1.0;
19887                   to_x: "elm.padding.right";
19888                   to_y: "elm.padding.top";
19889                }
19890                align: 0.0 0.0;
19891                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
19892                text {
19893                   font: "SLP:style=Roman";
19894                   size: GENLIST_FONT_44_INC;
19895                   min: 0 1;
19896                   align: 0.0 0.5;
19897                   text_class: "list_item";
19898                }
19899             }
19900             description { state: "selected" 0.0;
19901                inherit: "default" 0.0;
19902                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19903             }
19904             GENLIST_DESCRIPTION_FLIP_ENABLED
19905          }
19906          part { name: "elm.text.2";
19907             clip_to: "disclip";
19908             type: TEXT;
19909             mouse_events: 0;
19910             scale: 1;
19911             description { state: "default" 0.0;
19912                rel1 {
19913                   relative: 1.0 1.0;
19914                   to_x: "elm.padding.icon2.right";
19915                   to_y: "elm.text.1";
19916                }
19917                rel2 {
19918                   relative: 0.0 0.0;
19919                   to_x: "elm.padding.right";
19920                   to_y: "elm.padding.bottom";
19921                }
19922                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
19923                text {
19924                   font: "SLP:style=Medium";
19925                   size: GENLIST_FONT_32_INC;
19926                   min: 0 1;
19927                   align: 0.0 0.5;
19928                   text_class: "slp_medium";
19929                }
19930             }
19931             description { state: "selected" 0.0;
19932                inherit: "default" 0.0;
19933                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19934             }
19935             GENLIST_DESCRIPTION_FLIP_ENABLED
19936          }
19937          GENLIST_PART_FLIP
19938          GENLIST_PART_DISCLIP
19939       }
19940       programs {
19941          // signal: elm,state,%s,active
19942          //   a "check" item named %s went active
19943          // signal: elm,state,%s,passive
19944          //   a "check" item named %s went passive
19945          // default is passive
19946          program { name: "go_active";
19947             signal: "elm,state,selected";
19948             source: "elm";
19949             action: STATE_SET "selected" 0.0;
19950             target: "bg_image";
19951             target: "elm.text.1";
19952             target: "elm.text.2";
19953             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
19954          }
19955          program { name: "go_passive";
19956             signal: "elm,state,unselected";
19957             source: "elm";
19958             action: STATE_SET "default" 0.0;
19959             target: "bg_image";
19960             target: "elm.text.1";
19961             target: "elm.text.2";
19962             transition: LINEAR 0.1;
19963          }
19964          program { name: "go_disabled";
19965             signal: "elm,state,disabled";
19966             source: "elm";
19967             action: STATE_SET "disabled" 0.0;
19968             target: "disclip";
19969          }
19970          program { name: "go_enabled";
19971             signal: "elm,state,enabled";
19972             source: "elm";
19973             action: STATE_SET "default" 0.0;
19974             target: "disclip";
19975          }
19976          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
19977          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
19978       }
19979    }
19980
19981    group { name: "elm/genlist/item/dialogue/2text.2icon.2/default";
19982       alias: "elm/genlist/item_odd/dialogue/2text.2icon.2/default";
19983       alias: "elm/genlist/item_compress/dialogue/2text.2icon.2/default";
19984       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon.2/default";
19985       alias: "elm/layout/dialogue/2text.2icon.2";
19986       data.item: "stacking" "above";
19987       data.item: "selectraise" "on";
19988       data.item: "texts" "elm.text.1 elm.text.2";
19989       data.item: "contents" "elm.icon.1 elm.icon.2";
19990       data.item: "flips" "elm.flip.content";
19991       parts {
19992          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
19993          GENLIST_PART_BG_IMAGE
19994          GENLIST_PART_BOTTOM_LINE
19995          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
19996          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
19997          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
19998          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
19999          GENLIST_PART_DIALOGUE_ITEM
20000          part { name: "elm.icon.1";
20001             clip_to: "disclip";
20002             type: SWALLOW;
20003             scale: 1;
20004             description { state: "default" 0.0;
20005                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
20006                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
20007                fixed: 1 1;
20008                rel1 {
20009                   relative: 1.0 1.0;
20010                   to_x: "elm.padding.left";
20011                   to_y: "elm.padding.top";
20012                }
20013                rel2 {
20014                   relative: 1.0 0.0;
20015                   to_x: "elm.padding.left";
20016                   to_y: "elm.padding.bottom";
20017                }
20018                align: 0.0 0.5;
20019             }
20020             GENLIST_DESCRIPTION_FLIP_ENABLED
20021          }
20022          part { name: "elm.padding.icon1.right";
20023             clip_to: "disclip";
20024             type: RECT;
20025             scale: 1;
20026             description { state: "default" 0.0;
20027                min: GENLIST_PADDING_16_INC 0;
20028                fixed: 1 0;
20029                rel1 {
20030                   relative: 1.0 0.0;
20031                   to_x: "elm.icon.1";
20032                }
20033                rel2.to_x: "elm.icon.1";
20034                align: 0.0 0.0;
20035                visible: 0;
20036             }
20037          }
20038          part { name: "elm.text.1";
20039             clip_to: "disclip";
20040             type: TEXT;
20041             mouse_events: 0;
20042             scale: 1;
20043             description { state: "default" 0.0;
20044                min: 0 GENLIST_SIZE_61_INC;
20045                fixed: 0 1;
20046                rel1 {
20047                   relative: 1.0 1.0;
20048                   to_x: "elm.padding.icon1.right";
20049                   to_y: "elm.padding.top";
20050                }
20051                rel2 {
20052                   relative: 0.0 1.0;
20053                   to_x: "elm.padding.right";
20054                   to_y: "elm.padding.top";
20055                }
20056                align: 0.0 0.0;
20057                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
20058                text {
20059                   font: "SLP:style=Roman";
20060                   size: GENLIST_FONT_44_INC;
20061                   min: 0 1;
20062                   align: 0.0 0.5;
20063                   text_class: "list_item";
20064                }
20065             }
20066             description { state: "selected" 0.0;
20067                inherit: "default" 0.0;
20068                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
20069             }
20070             GENLIST_DESCRIPTION_FLIP_ENABLED
20071          }
20072          part { name: "elm.icon.2";
20073             clip_to: "disclip";
20074             type: SWALLOW;
20075             scale: 1;
20076             description { state: "default" 0.0;
20077                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
20078                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
20079                fixed: 1 1;
20080                rel1 {
20081                   relative: 0.0 1.0;
20082                   to_x: "elm.padding.right";
20083                   to_y: "elm.text.1";
20084                }
20085                rel2 {
20086                   relative: 0.0 0.0;
20087                   to_x: "elm.padding.right";
20088                   to_y: "elm.padding.bottom";
20089                }
20090                align: 1.0 0.5;
20091             }
20092             GENLIST_DESCRIPTION_FLIP_ENABLED
20093          }
20094          part { name: "elm.padding.icon2.left";
20095             clip_to: "disclip";
20096             type: RECT;
20097             scale: 1;
20098             description { state: "default" 0.0;
20099                min: GENLIST_PADDING_16_INC 0;
20100                fixed: 1 0;
20101                rel1 {
20102                   relative: 0.0 0.0;
20103                   to_x: "elm.icon.2";
20104                }
20105                rel2.to_x: "elm.icon.2";
20106                align: 1.0 0.0;
20107                visible: 0;
20108             }
20109          }
20110          part { name: "elm.text.2";
20111             clip_to: "disclip";
20112             type: TEXT;
20113             mouse_events: 0;
20114             scale: 1;
20115             description { state: "default" 0.0;
20116                rel1 {
20117                   relative: 1.0 1.0;
20118                   to_x: "elm.padding.icon1.right";
20119                   to_y: "elm.text.1";
20120                }
20121                rel2 {
20122                   relative: 0.0 0.0;
20123                   to_x: "elm.padding.icon2.left";
20124                   to_y: "elm.padding.bottom";
20125                }
20126                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
20127                text {
20128                   font: "SLP:style=Medium";
20129                   size: GENLIST_FONT_32_INC;
20130                   min: 0 1;
20131                   align: 0.0 0.5;
20132                   text_class: "slp_medium";
20133                }
20134             }
20135             description { state: "selected" 0.0;
20136                inherit: "default" 0.0;
20137                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
20138             }
20139             GENLIST_DESCRIPTION_FLIP_ENABLED
20140          }
20141          GENLIST_PART_FLIP
20142          GENLIST_PART_DISCLIP
20143       }
20144       programs {
20145          // signal: elm,state,%s,active
20146          //   a "check" item named %s went active
20147          // signal: elm,state,%s,passive
20148          //   a "check" item named %s went passive
20149          // default is passive
20150          program { name: "go_active";
20151             signal: "elm,state,selected";
20152             source: "elm";
20153             action: STATE_SET "selected" 0.0;
20154             target: "bg_image";
20155             target: "elm.text.1";
20156             target: "elm.text.2";
20157             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
20158          }
20159          program { name: "go_passive";
20160             signal: "elm,state,unselected";
20161             source: "elm";
20162             action: STATE_SET "default" 0.0;
20163             target: "bg_image";
20164             target: "elm.text.1";
20165             target: "elm.text.2";
20166             transition: LINEAR 0.1;
20167          }
20168          program { name: "go_disabled";
20169             signal: "elm,state,disabled";
20170             source: "elm";
20171             action: STATE_SET "disabled" 0.0;
20172             target: "disclip";
20173          }
20174          program { name: "go_enabled";
20175             signal: "elm,state,enabled";
20176             source: "elm";
20177             action: STATE_SET "default" 0.0;
20178             target: "disclip";
20179          }
20180          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
20181          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
20182       }
20183    }
20184
20185    group { name: "elm/genlist/item/dialogue/2text.2icon.3/default";
20186       alias: "elm/genlist/item_odd/dialogue/2text.2icon.3/default";
20187       alias: "elm/genlist/item_compress/dialogue/2text.2icon.3/default";
20188       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon.3/default";
20189       alias: "elm/layout/dialogue/2text.2icon.3";
20190       data.item: "stacking" "above";
20191       data.item: "selectraise" "on";
20192       data.item: "texts" "elm.text.1 elm.text.2";
20193       data.item: "contents" "elm.icon.1 elm.icon.2";
20194       data.item: "flips" "elm.flip.content";
20195       parts {
20196          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
20197          GENLIST_PART_BG_IMAGE
20198          GENLIST_PART_BOTTOM_LINE
20199          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
20200          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
20201          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
20202          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
20203          GENLIST_PART_DIALOGUE_ITEM
20204          part { name: "elm.icon.1";
20205             clip_to: "disclip";
20206             type: SWALLOW;
20207             scale: 1;
20208             description { state: "default" 0.0;
20209                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
20210                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
20211                fixed: 1 1;
20212                rel1 {
20213                   relative: 1.0 1.0;
20214                   to_x: "elm.padding.left";
20215                   to_y: "elm.padding.top";
20216                }
20217                rel2 {
20218                   relative: 1.0 0.0;
20219                   to_x: "elm.padding.left";
20220                   to_y: "elm.padding.bottom";
20221                }
20222                align: 0.0 0.5;
20223             }
20224             GENLIST_DESCRIPTION_FLIP_ENABLED
20225          }
20226          part { name: "elm.padding.icon1.right";
20227             clip_to: "disclip";
20228             type: RECT;
20229             scale: 1;
20230             description { state: "default" 0.0;
20231                min: GENLIST_PADDING_16_INC 0;
20232                fixed: 1 0;
20233                rel1 {
20234                   relative: 1.0 0.0;
20235                   to_x: "elm.icon.1";
20236                }
20237                rel2.to_x: "elm.icon.1";
20238                align: 0.0 0.0;
20239                visible: 0;
20240             }
20241          }
20242          part { name: "elm.icon.2";
20243             clip_to: "disclip";
20244             type: SWALLOW;
20245             scale: 1;
20246             description { state: "default" 0.0;
20247                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
20248                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
20249                fixed: 1 1;
20250                rel1 {
20251                   relative: 0.0 1.0;
20252                   to_x: "elm.padding.right";
20253                   to_y: "elm.padding.top";
20254                }
20255                rel2 {
20256                   relative: 0.0 0.0;
20257                   to_x: "elm.padding.right";
20258                   to_y: "elm.padding.bottom";
20259                }
20260                align: 1.0 0.5;
20261             }
20262             GENLIST_DESCRIPTION_FLIP_ENABLED
20263          }
20264          part { name: "elm.padding.icon2.left";
20265             clip_to: "disclip";
20266             type: RECT;
20267             scale: 1;
20268             description { state: "default" 0.0;
20269                min: GENLIST_PADDING_16_INC 0;
20270                fixed: 1 0;
20271                rel1.to_x: "elm.icon.2";
20272                rel2 {
20273                   relative: 0.0 1.0;
20274                   to_x: "elm.icon.2";
20275                }
20276                align: 1.0 0.0;
20277                visible: 0;
20278             }
20279          }
20280          part { name: "elm.text.1";
20281             clip_to: "disclip";
20282             type: TEXT;
20283             mouse_events: 0;
20284             scale: 1;
20285             description { state: "default" 0.0;
20286                min: 0 GENLIST_SIZE_61_INC;
20287                fixed: 0 1;
20288                rel1 {
20289                   relative: 1.0 1.0;
20290                   to_x: "elm.padding.icon1.right";
20291                   to_y: "elm.padding.top";
20292                }
20293                rel2 {
20294                   relative: 0.0 1.0;
20295                   to_x: "elm.padding.icon2.left";
20296                   to_y: "elm.padding.top";
20297                }
20298                align: 0.0 0.0;
20299                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
20300                text {
20301                   font: "SLP:style=Roman";
20302                   size: GENLIST_FONT_44_INC;
20303                   min: 0 1;
20304                   align: 0.0 0.5;
20305                   text_class: "list_item";
20306                }
20307             }
20308             description { state: "selected" 0.0;
20309                inherit: "default" 0.0;
20310                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
20311             }
20312             GENLIST_DESCRIPTION_FLIP_ENABLED
20313          }
20314          part { name: "elm.text.2";
20315             clip_to: "disclip";
20316             type: TEXT;
20317             mouse_events: 0;
20318             scale: 1;
20319             description { state: "default" 0.0;
20320                rel1 {
20321                   relative: 1.0 1.0;
20322                   to_x: "elm.padding.icon1.right";
20323                   to_y: "elm.text.1";
20324                }
20325                rel2 {
20326                   relative: 0.0 0.0;
20327                   to_x: "elm.padding.icon2.left";
20328                   to_y: "elm.padding.bottom";
20329                }
20330                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
20331                text {
20332                   font: "SLP:style=Medium";
20333                   size: GENLIST_FONT_32_INC;
20334                   min: 0 1;
20335                   align: 0.0 0.5;
20336                   text_class: "slp_medium";
20337                }
20338             }
20339             description { state: "selected" 0.0;
20340                inherit: "default" 0.0;
20341                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
20342             }
20343             GENLIST_DESCRIPTION_FLIP_ENABLED
20344          }
20345          GENLIST_PART_FLIP
20346          GENLIST_PART_DISCLIP
20347       }
20348       programs {
20349          // signal: elm,state,%s,active
20350          //   a "check" item named %s went active
20351          // signal: elm,state,%s,passive
20352          //   a "check" item named %s went passive
20353          // default is passive
20354          program { name: "go_active";
20355             signal: "elm,state,selected";
20356             source: "elm";
20357             action: STATE_SET "selected" 0.0;
20358             target: "bg_image";
20359             target: "elm.text.1";
20360             target: "elm.text.2";
20361             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
20362          }
20363          program { name: "go_passive";
20364             signal: "elm,state,unselected";
20365             source: "elm";
20366             action: STATE_SET "default" 0.0;
20367             target: "bg_image";
20368             target: "elm.text.1";
20369             target: "elm.text.2";
20370             transition: LINEAR 0.1;
20371          }
20372          program { name: "go_disabled";
20373             signal: "elm,state,disabled";
20374             source: "elm";
20375             action: STATE_SET "disabled" 0.0;
20376             target: "disclip";
20377          }
20378          program { name: "go_enabled";
20379             signal: "elm,state,enabled";
20380             source: "elm";
20381             action: STATE_SET "default" 0.0;
20382             target: "disclip";
20383          }
20384          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
20385          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
20386       }
20387    }
20388
20389    group { name: "elm/genlist/item_compress/dialogue/2text.2icon.3.tb/default";
20390       inherit: "elm/genlist/item/dialogue/2text.2icon.3/default";
20391       parts {
20392          part { name: "elm.text.2";
20393             clip_to: "disclip";
20394             type: TEXTBLOCK;
20395             mouse_events: 0;
20396             scale: 1;
20397             description { state: "default" 0.0;
20398                rel1 {
20399                   relative: 1.0 1.0;
20400                   to_x: "elm.padding.icon1.right";
20401                   to_y: "elm.text.1";
20402                }
20403                rel2 {
20404                   relative: 0.0 0.0;
20405                   to_x: "elm.padding.icon2.left";
20406                   to_y: "elm.padding.bottom";
20407                }
20408                text {
20409                   style: "genlist_default_textblock_style";
20410                   size: GENLIST_FONT_32_INC;
20411                   min: 0 1;
20412                   align: 0.0 0.5;
20413                   text_class: "slp_medium";
20414                }
20415             }
20416             description { state: "selected" 0.0;
20417                inherit: "default" 0.0;
20418                text.style: "genlist_default_textblock_selected_style";
20419             }
20420             GENLIST_DESCRIPTION_FLIP_ENABLED
20421          }
20422       }
20423    }
20424
20425    group { name: "elm/genlist/item/dialogue/2text.1icon.5/default";
20426       alias: "elm/genlist/item_odd/dialogue/2text.1icon.5/default";
20427       alias: "elm/genlist/item_compress/dialogue/2text.1icon.5/default";
20428       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.5/default";
20429       alias: "elm/layout/dialogue/2text.1icon.5";
20430       data.item: "stacking" "above";
20431       data.item: "selectraise" "on";
20432       data.item: "texts" "elm.text.1 elm.text.2";
20433       data.item: "contents" "elm.icon";
20434       data.item: "flips" "elm.flip.content";
20435       parts {
20436          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
20437          GENLIST_PART_BG_IMAGE
20438          GENLIST_PART_BOTTOM_LINE
20439          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
20440          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
20441          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
20442          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
20443          GENLIST_PART_DIALOGUE_ITEM
20444          part { name: "elm.icon";
20445             clip_to: "disclip";
20446             type: SWALLOW;
20447             scale: 1;
20448             description { state: "default" 0.0;
20449                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
20450                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
20451                fixed: 1 1;
20452                rel1 {
20453                   relative: 0.0 1.0;
20454                   to_x: "elm.padding.right";
20455                   to_y: "elm.padding.top";
20456                }
20457                rel2 {
20458                   relative: 0.0 0.0;
20459                   to_x: "elm.padding.right";
20460                   to_y: "elm.padding.bottom";
20461                }
20462                align: 1.0 0.5;
20463             }
20464             GENLIST_DESCRIPTION_FLIP_ENABLED
20465          }
20466          part { name: "elm.padding.icon.left";
20467             clip_to: "disclip";
20468             type: RECT;
20469             scale: 1;
20470             description { state: "default" 0.0;
20471                min: GENLIST_PADDING_16_INC 0;
20472                fixed: 1 0;
20473                rel1.to_x: "elm.icon";
20474                rel2 {
20475                   relative: 0.0 1.0;
20476                   to_x: "elm.icon";
20477                }
20478                align: 1.0 0.0;
20479                visible: 0;
20480             }
20481          }
20482          part { name: "elm.text.1";
20483             clip_to: "disclip";
20484             type: TEXT;
20485             mouse_events: 0;
20486             scale: 1;
20487             description { state: "default" 0.0;
20488                min: 0 GENLIST_SIZE_61_INC;
20489                fixed: 0 1;
20490                rel1 {
20491                   relative: 1.0 0.0;
20492                   to_x: "elm.padding.left";
20493                   to_y: "elm.padding.bottom";
20494                }
20495                rel2 {
20496                   relative: 0.0 0.0;
20497                   to_x: "elm.padding.icon.left";
20498                   to_y: "elm.padding.bottom";
20499                }
20500                align: 0.0 1.0;
20501                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
20502                text {
20503                   font: "SLP:style=Roman";
20504                   size: GENLIST_FONT_44_INC;
20505                   min: 0 1;
20506                   align: 0.0 0.5;
20507                   text_class: "list_item";
20508                }
20509             }
20510             description { state: "selected" 0.0;
20511                inherit: "default" 0.0;
20512                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
20513             }
20514             GENLIST_DESCRIPTION_FLIP_ENABLED
20515          }
20516          part { name: "elm.text.2";
20517             clip_to: "disclip";
20518             type: TEXT;
20519             mouse_events: 0;
20520             scale: 1;
20521             description { state: "default" 0.0;
20522                rel1 {
20523                   relative: 1.0 1.0;
20524                   to_x: "elm.padding.left";
20525                   to_y: "elm.padding.top";
20526                }
20527                rel2 {
20528                   relative: 0.0 0.0;
20529                   to_x: "elm.padding.icon.left";
20530                   to_y: "elm.text.1";
20531                }
20532                align: 0.0 0.0;
20533                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
20534                text {
20535                   font: "SLP:style=Medium";
20536                   size: GENLIST_FONT_32_INC;
20537                   min: 0 1;
20538                   align: 0.0 0.5;
20539                   text_class: "slp_roman";
20540                }
20541             }
20542             description { state: "selected" 0.0;
20543                inherit: "default" 0.0;
20544                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
20545             }
20546             GENLIST_DESCRIPTION_FLIP_ENABLED
20547          }
20548          GENLIST_PART_FLIP
20549          GENLIST_PART_DISCLIP
20550       }
20551       programs {
20552          // signal: elm,state,%s,active
20553          //   a "check" item named %s went active
20554          // signal: elm,state,%s,passive
20555          //   a "check" item named %s went passive
20556          // default is passive
20557          program { name: "go_active";
20558             signal: "elm,state,selected";
20559             source: "elm";
20560             action: STATE_SET "selected" 0.0;
20561             target: "bg_image";
20562             target: "elm.text.1";
20563             target: "elm.text.2";
20564             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
20565          }
20566          program { name: "go_passive";
20567             signal: "elm,state,unselected";
20568             source: "elm";
20569             action: STATE_SET "default" 0.0;
20570             target: "bg_image";
20571             target: "elm.text.1";
20572             target: "elm.text.2";
20573             transition: LINEAR 0.1;
20574          }
20575          program { name: "go_disabled";
20576             signal: "elm,state,disabled";
20577             source: "elm";
20578             action: STATE_SET "disabled" 0.0;
20579             target: "disclip";
20580          }
20581          program { name: "go_enabled";
20582             signal: "elm,state,enabled";
20583             source: "elm";
20584             action: STATE_SET "default" 0.0;
20585             target: "disclip";
20586          }
20587          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
20588          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
20589       }
20590    }
20591
20592 // 4.2.11
20593    group { name: "elm/genlist/item_compress/dialogue/1title.1text.2/default";
20594       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.2/default";
20595       alias: "elm/layout/dialogue/1title.1text.2";
20596       data.item: "stacking" "above";
20597       data.item: "selectraise" "on";
20598       data.item: "texts" "elm.title elm.text";
20599       parts {
20600          part { name: "base";
20601             type: RECT;
20602             repeat_events: 1;
20603             description { state: "default" 0.0;
20604                color: GENLIST_PART_BG_COLOR_INC;
20605             }
20606          }
20607          GENLIST_PART_BG_IMAGE
20608          GENLIST_PART_BOTTOM_LINE
20609          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_21_INC )
20610          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_22_INC )
20611          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
20612          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
20613          GENLIST_PART_DIALOGUE_ITEM
20614          part { name: "elm.title";
20615             clip_to: "disclip";
20616             type: TEXT;
20617             mouse_events: 0;
20618             scale: 1;
20619             description { state: "default" 0.0;
20620                min: GENLIST_SIZE_163_INC 0;
20621                fixed: 1 0;
20622                rel1 {
20623                   relative: 1.0 0.0;
20624                   to_x: "elm.padding.left";
20625                }
20626                rel2 {
20627                   relative: 1.0 1.0;
20628                   to_x: "elm.padding.left";
20629                }
20630                align: 0.0 0.0;
20631                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
20632                text {
20633                   font: "SLP:style=Medium";
20634                   size: GENLIST_FONT_32_INC;
20635                   min: 0 1;
20636                   align: 0.0 0.5;
20637                   text_class: "slp_medium";
20638                }
20639             }
20640             description { state: "selected" 0.0;
20641                inherit: "default" 0.0;
20642                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
20643             }
20644          }
20645          part { name: "vertical_line";
20646             clip_to: "disclip";
20647             type: RECT;
20648             mouse_events: 0;
20649             description { state: "default" 0.0;
20650                min: 1 0;
20651                fixed: 1 0;
20652                rel1 {
20653                   relative: 1.0 0.0;
20654                   to_x: "elm.title";
20655                }
20656                rel2.to_x: "elm.title";
20657                align: 0.0 0.5;
20658                color: GENLIST_PART_LIST_LINE_COLOR_INC;
20659             }
20660          }
20661          part { name: "elm.padding.text.left";
20662             clip_to: "disclip";
20663             type: RECT;
20664             mouse_events: 0;
20665             description { state: "default" 0.0;
20666                min: GENLIST_PADDING_16_INC 0;
20667                fixed: 1 0;
20668                rel1 {
20669                   relative: 1.0 0.0;
20670                   to_x: "vertical_line";
20671                }
20672                rel2.to_x: "vertical_line";
20673                align: 0.0 0.5;
20674                visible: 0;
20675             }
20676          }
20677          part { name: "elm.text";
20678             clip_to: "disclip";
20679             type: TEXTBLOCK;
20680             mouse_events: 0;
20681             scale: 1;
20682             description { state: "default" 0.0;
20683                rel1 {
20684                   relative: 1.0 1.0;
20685                   to_x: "elm.padding.text.left";
20686                   to_y: "elm.padding.top";
20687                }
20688                rel2 {
20689                   relative: 0.0 0.0;
20690                   to_x: "elm.padding.right";
20691                   to_y: "elm.padding.bottom";
20692                }
20693                text {
20694                   style: "genlist_textblock_flexible_style";
20695                   min: 0 1;
20696                   align: 0.0 0.5;
20697                }
20698             }
20699             description { state: "selected" 0.0;
20700                inherit: "default" 0.0;
20701                text.style: "genlist_textblock_selected_style";
20702             }
20703          }
20704          GENLIST_PART_DISCLIP
20705       }
20706       programs {
20707          // signal: elm,state,%s,active
20708          //   a "check" item named %s went active
20709          // signal: elm,state,%s,passive
20710          //   a "check" item named %s went passive
20711          // default is passive
20712          program { name: "go_active";
20713             signal: "elm,state,selected";
20714             source: "elm";
20715             action: STATE_SET "selected" 0.0;
20716             target: "bg_image";
20717             target: "elm.title";
20718             target: "elm.text";
20719             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
20720          }
20721          program { name: "go_passive";
20722             signal: "elm,state,unselected";
20723             source: "elm";
20724             action: STATE_SET "default" 0.0;
20725             target: "bg_image";
20726             target: "elm.title";
20727             target: "elm.text";
20728             transition: LINEAR 0.1;
20729          }
20730          program { name: "go_disabled";
20731             signal: "elm,state,disabled";
20732             source: "elm";
20733             action: STATE_SET "disabled" 0.0;
20734             target: "disclip";
20735          }
20736          program { name: "go_enabled";
20737             signal: "elm,state,enabled";
20738             source: "elm";
20739             action: STATE_SET "default" 0.0;
20740             target: "disclip";
20741          }
20742          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
20743       }
20744    }
20745
20746 /*   group { name: "elm/genlist/item/dialogue/1title.2text/default";
20747       alias: "elm/genlist/item_odd/dialogue/1title.2text/default";
20748       alias: "elm/genlist/item_compress/dialogue/1title.2text/default";
20749       alias: "elm/genlist/item_compress_odd/dialogue/1title.2text/default";
20750       alias: "elm/layout/dialogue/1title.2text";
20751       data.item: "stacking" "above";
20752       data.item: "selectraise" "on";
20753       data.item: "texts" "elm.title elm.text.1 elm.text.2";
20754       parts {
20755          GENLIST_PART_BASE( GENLIST_HEIGHT_142_INC )
20756          GENLIST_PART_BOTTOM_LINE
20757          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
20758          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
20759          GENLIST_PART_DIALOGUE_ITEM
20760          part { name: "vertical_line";
20761             clip_to: "disclip";
20762             type: RECT;
20763             mouse_events: 0;
20764             description { state: "default" 0.0;
20765                min: 1 0;
20766                fixed: 1 0;
20767                rel1 {
20768                   relative: 1.0 0.0;
20769                   to_x: "elm.title";
20770                }
20771                rel2.to_x: "elm.title";
20772                align: 0.0 0.5;
20773                color: GENLIST_PART_LIST_LINE_COLOR_INC;
20774             }
20775          }
20776          part { name: "center_line";
20777             clip_to: "disclip";
20778             type: RECT;
20779             mouse_events: 0;
20780             description { state: "default" 0.0;
20781                min: 0 1;
20782                fixed: 0 1;
20783                color: GENLIST_PART_LIST_LINE_COLOR_INC;
20784                rel1 {
20785                   relative: 1.0 0.5;
20786                   to_x: "vertical_line";
20787                }
20788                rel2.relative: 1.0 0.5;
20789                align: 0.5 1.0;
20790             }
20791          }
20792          part { name: "elm.title";
20793             clip_to: "disclip";
20794             type: TEXT;
20795             mouse_events: 0;
20796             scale: 1;
20797             description { state: "default" 0.0;
20798                min: GENLIST_SIZE_163_INC 0;
20799                fixed: 1 0;
20800                rel1 {
20801                   relative: 1.0  0.0;
20802                   to_x: "elm.padding.left";
20803                }
20804                rel2.to_x: "elm.padding.left";
20805                align: 0.0 0.5;
20806                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
20807                text {
20808                   font: "SLP:style=Medium";
20809                   size: GENLIST_FONT_32_INC;
20810                   min: 0 1;
20811                   align: 0.0 0.5;
20812                   text_class: "slp_medium";
20813                }
20814             }
20815          }
20816          part { name: "elm.padding.title.right";
20817             clip_to: "disclip";
20818             type: RECT;
20819             mouse_events: 0;
20820             scale: 1;
20821             description { state: "default" 0.0;
20822                min: GENLIST_PADDING_16_INC 0;
20823                fixed: 1 0;
20824                rel1 {
20825                    relative: 1.0 0.0;
20826                    to_x: "elm.title";
20827                }
20828                rel2.to_x: "elm.title";
20829                visible: 0;
20830                align: 0.0 0.5;
20831             }
20832          }
20833          part { name: "elm.text.1";
20834             clip_to: "disclip";
20835             type: TEXT;
20836             mouse_events: 0;
20837             scale: 1;
20838             description { state: "default" 0.0;
20839                rel1 {
20840                   relative: 1.0 0.0;
20841                   to_x: "elm.padding.title.right";
20842                }
20843                rel2 {
20844                   relative: 0.0 0.0;
20845                   to_x: "elm.padding.right";
20846                   to_y: "center_line";
20847                }
20848                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
20849                text {
20850                   font: "SLP:style=Roman";
20851                   size: GENLIST_FONT_44_INC;
20852                   min: 0 1;
20853                   align: 0.0 0.5;
20854                   text_class: "list_item";
20855                }
20856             }
20857          }
20858          part { name: "elm.text.2";
20859             clip_to: "disclip";
20860             type: TEXT;
20861             mouse_events: 0;
20862             scale: 1;
20863             description { state: "default" 0.0;
20864                rel1 {
20865                   relative: 1.0 0.5;
20866                   to_x: "elm.padding.title.right";
20867                }
20868                rel2 {
20869                   relative: 0.0 1.0;
20870                   to_x: "elm.padding.right";
20871                }
20872                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
20873                text {
20874                   font: "SLP:style=Roman";
20875                   size: GENLIST_FONT_44_INC;
20876                   min: 0 1;
20877                   align: 0.0 0.5;
20878                   text_class: "slp_roman";
20879                }
20880             }
20881          }
20882          GENLIST_PART_DISCLIP
20883       }
20884       programs {
20885          // signal: elm,state,%s,active
20886          //   a "check" item named %s went active
20887          // signal: elm,state,%s,passive
20888          //   a "check" item named %s went passive
20889          // default is passive
20890          program { name: "go_active";
20891             signal: "elm,state,selected";
20892             source: "elm";
20893             action: STATE_SET "selected" 0.0;
20894             target: "elm.title";
20895             target: "elm.text.1";
20896             target: "elm.text.2";
20897          }
20898          program { name: "go_passive";
20899             signal: "elm,state,unselected";
20900             source: "elm";
20901             action: STATE_SET "default" 0.0;
20902             target: "elm.title";
20903             target: "elm.text.1";
20904             target: "elm.text.2";
20905             transition: LINEAR 0.1;
20906          }
20907          program { name: "go_disabled";
20908             signal: "elm,state,disabled";
20909             source: "elm";
20910             action: STATE_SET "disabled" 0.0;
20911             target: "disclip";
20912          }
20913          program { name: "go_enabled";
20914             signal: "elm,state,enabled";
20915             source: "elm";
20916             action: STATE_SET "default" 0.0;
20917             target: "disclip";
20918          }
20919       }
20920    }*/
20921
20922    /* DEPRECATED : remove this style. use dialogue/1text.4icon instead. */
20923    group { name: "elm/genlist/item/dialogue/4icon/default";
20924       alias: "elm/genlist/item_odd/dialogue/4icon/default";
20925       alias: "elm/genlist/item_compress/dialogue/4icon/default";
20926       alias: "elm/genlist/item_compress_odd/dialogue/4icon/default";
20927       alias: "elm/layout/dialogue/4icon";
20928       data.item: "stacking" "above";
20929       data.item: "selectraise" "on";
20930       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4";
20931       images {
20932          image : "00_input_bg.png" COMP;
20933       }
20934       parts {
20935          GENLIST_PART_BASE( GENLIST_HEIGHT_207_INC )
20936          GENLIST_PART_BG_IMAGE
20937          GENLIST_PART_BOTTOM_LINE
20938          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
20939          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_22_INC )
20940          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_12_INC )
20941          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_74_INC )
20942          GENLIST_PART_DIALOGUE_ITEM
20943          part { name: "text";
20944             clip_to: "disclip";
20945             type: TEXT;
20946             mouse_events: 0;
20947             scale: 1;
20948             description { state: "default" 0.0;
20949                min: 0 GENLIST_SIZE_48_INC;
20950                fixed: 0 1;
20951                rel1 {
20952                   relative: 1.0 1.0;
20953                   to_x: "elm.padding.left";
20954                   to_y: "elm.padding.top";
20955                }
20956                rel2 {
20957                   relative: 0.0 1.0;
20958                   to_x: "elm.padding.right";
20959                   to_y: "elm.padding.top";
20960                }
20961                align: 0.0 0.0;
20962                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
20963                text {
20964                   font: "SLP:style=Medium";
20965                   size: GENLIST_FONT_32_INC;
20966                   min: 0 1;
20967                   align: 0.0 0.5;
20968                   text: "Password";
20969                   text_class: "list_item";
20970                }
20971             }
20972             description { state: "selected" 0.0;
20973                inherit: "default" 0.0;
20974                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
20975             }
20976          }
20977          part { name: "elm.padding.icon1.left";
20978             clip_to: "disclip";
20979             type: RECT;
20980             scale: 1;
20981             description { state: "default" 0.0;
20982                min: GENLIST_PADDING_74_INC 0;
20983                fixed: 1 0;
20984                rel1 {
20985                   relative: 1.0 0.0;
20986                   to_x: "elm.padding.left";
20987                   to_y: "elm.padding.bottom";
20988                }
20989                rel2 {
20990                   relative: 1.0 0.0;
20991                   to_x: "elm.padding.left";
20992                   to_y: "elm.padding.bottom";
20993                }
20994                align: 0.0 1.0;
20995                visible: 0;
20996             }
20997          }
20998          part { name: "elm.icon1.bg";
20999             clip_to: "disclip";
21000             type: IMAGE;
21001             scale: 1;
21002             description { state: "default" 0.0;
21003                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
21004                fixed: 1 1;
21005                rel1 {
21006                   relative: 1.0 0.0;
21007                   to_x: "elm.padding.icon1.left";
21008                   to_y: "elm.padding.bottom";
21009                }
21010                rel2 {
21011                   relative: 1.0 0.0;
21012                   to_x: "elm.padding.icon1.left";
21013                   to_y: "elm.padding.bottom";
21014                }
21015                align: 0.0 1.0;
21016                image.normal: "00_input_bg.png";
21017                image.border: 4 4 4 4; // TODO: check this out.
21018                image.border_scale: 1;
21019             }
21020          }
21021          part { name: "elm.icon.1";
21022             clip_to: "disclip";
21023             type: SWALLOW;
21024             scale: 1;
21025             description { state: "default" 0.0;
21026                rel1.to: "elm.icon1.bg";
21027                rel2.to: "elm.icon1.bg";
21028                align: 0.5 0.5;
21029             }
21030          }
21031          part { name: "elm.padding.icon2.left";
21032             clip_to: "disclip";
21033             type: RECT;
21034             scale: 1;
21035             description { state: "default" 0.0;
21036                min: GENLIST_SIZE_32_INC 0;
21037                fixed: 1 0;
21038                rel1 {
21039                   relative: 1.0 0.0;
21040                   to_x: "elm.icon1.bg";
21041                   to_y: "elm.padding.bottom";
21042                }
21043                rel2 {
21044                   relative: 1.0 0.0;
21045                   to_x: "elm.icon1.bg";
21046                   to_y: "elm.padding.bottom";
21047                }
21048                align: 0.0 1.0;
21049                visible: 0;
21050             }
21051          }
21052          part { name: "elm.icon2.bg";
21053             clip_to: "disclip";
21054             type: IMAGE;
21055             scale: 1;
21056             description { state: "default" 0.0;
21057                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
21058                fixed: 1 1;
21059                rel1 {
21060                   relative: 1.0 0.0;
21061                   to_x: "elm.padding.icon2.left";
21062                   to_y: "elm.padding.bottom";
21063                }
21064                rel2 {
21065                   relative: 1.0 0.0;
21066                   to_x: "elm.padding.icon2.left";
21067                   to_y: "elm.padding.bottom";
21068                }
21069                align: 0.0 1.0;
21070                image.normal: "00_input_bg.png";
21071                image.border: 4 4 4 4; // TODO : check this out
21072                image.border_scale: 1;
21073             }
21074          }
21075          part { name: "elm.icon.2";
21076             clip_to: "disclip";
21077             type: SWALLOW;
21078             scale: 1;
21079             description { state: "default" 0.0;
21080                rel1.to: "elm.icon2.bg";
21081                rel2.to: "elm.icon2.bg";
21082                align: 0.5 0.5;
21083             }
21084          }
21085          part { name: "elm.padding.icon3.left";
21086             clip_to: "disclip";
21087             type: RECT;
21088             scale: 1;
21089             description { state: "default" 0.0;
21090                min: GENLIST_SIZE_32_INC 0;
21091                fixed: 1 0;
21092                rel1 {
21093                   relative: 1.0 0.0;
21094                   to_x: "elm.icon2.bg";
21095                   to_y: "elm.padding.bottom";
21096                }
21097                rel2 {
21098                   relative: 1.0 0.0;
21099                   to_x: "elm.icon2.bg";
21100                   to_y: "elm.padding.bottom";
21101                }
21102                align: 0.0 1.0;
21103                visible: 0;
21104             }
21105          }
21106          part { name: "elm.icon3.bg";
21107             clip_to: "disclip";
21108             type: IMAGE;
21109             scale: 1;
21110             description { state: "default" 0.0;
21111                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
21112                fixed: 1 1;
21113                rel1 {
21114                   relative: 1.0 0.0;
21115                   to_x: "elm.padding.icon3.left";
21116                   to_y: "elm.padding.bottom";
21117                }
21118                rel2 {
21119                   relative: 1.0 0.0;
21120                   to_x: "elm.padding.icon3.left";
21121                   to_y: "elm.padding.bottom";
21122                }
21123                align: 0.0 1.0;
21124                image.normal: "00_input_bg.png";
21125                image.border: 4 4 4 4; // TODO: handle this?
21126                image.border_scale: 1;
21127             }
21128          }
21129          part { name: "elm.icon.3";
21130             clip_to: "disclip";
21131             type: SWALLOW;
21132             scale: 1;
21133             description { state: "default" 0.0;
21134                rel1.to: "elm.icon3.bg";
21135                rel2.to: "elm.icon3.bg";
21136                align: 0.5 0.5;
21137             }
21138          }
21139          part { name: "elm.padding.icon4.left";
21140             clip_to: "disclip";
21141             type: RECT;
21142             scale: 1;
21143             description { state: "default" 0.0;
21144                min: GENLIST_SIZE_32_INC 0;
21145                fixed: 1 0;
21146                rel1 {
21147                   relative: 1.0 0.0;
21148                   to_x: "elm.icon3.bg";
21149                   to_y: "elm.padding.bottom";
21150                }
21151                rel2 {
21152                   relative: 1.0 0.0;
21153                   to_x: "elm.icon3.bg";
21154                   to_y: "elm.padding.bottom";
21155                }
21156                align: 0.0 1.0;
21157                visible: 0;
21158             }
21159          }
21160          part { name: "elm.icon4.bg";
21161             clip_to: "disclip";
21162             type: IMAGE;
21163             scale: 1;
21164             description { state: "default" 0.0;
21165                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
21166                fixed: 1 1;
21167                rel1 {
21168                   relative: 1.0 0.0;
21169                   to_x: "elm.padding.icon4.left";
21170                   to_y: "elm.padding.bottom";
21171                }
21172                rel2 {
21173                   relative: 1.0 0.0;
21174                   to_x: "elm.padding.icon4.left";
21175                   to_y: "elm.padding.bottom";
21176                }
21177                align: 0.0 1.0;
21178                image.normal: "00_input_bg.png";
21179                image.border: 4 4 4 4; // TODO: check this out
21180                image.border_scale: 1;
21181             }
21182          }
21183          part { name: "elm.icon.4";
21184             clip_to: "disclip";
21185             type: SWALLOW;
21186             scale: 1;
21187             description { state: "default" 0.0;
21188                rel1.to: "elm.icon4.bg";
21189                rel2.to: "elm.icon4.bg";
21190                align: 0.5 0.5;
21191             }
21192          }
21193          GENLIST_PART_DISCLIP
21194       }
21195       programs {
21196          // signal: elm,state,%s,active
21197          //   a "check" item named %s went active
21198          // signal: elm,state,%s,passive
21199          //   a "check" item named %s went passive
21200          // default is passive
21201          /*program { name: "go_active";
21202             signal: "elm,state,selected";
21203             source: "elm";
21204             action: STATE_SET "selected" 0.0;
21205             target: "bg_image";
21206             target: "elm.text.1";
21207             target: "elm.text.2";
21208          }
21209          program { name: "go_passive";
21210             signal: "elm,state,unselected";
21211             source: "elm";
21212             action: STATE_SET "default" 0.0;
21213             target: "bg_image";
21214             target: "elm.text.1";
21215             target: "elm.text.2";
21216             transition: LINEAR 0.1;
21217          }*/
21218          program { name: "go_disabled";
21219             signal: "elm,state,disabled";
21220             source: "elm";
21221             action: STATE_SET "disabled" 0.0;
21222             target: "disclip";
21223          }
21224          program { name: "go_enabled";
21225             signal: "elm,state,enabled";
21226             source: "elm";
21227             action: STATE_SET "default" 0.0;
21228             target: "disclip";
21229          }
21230       }
21231    }
21232
21233    group { name: "elm/genlist/item/dialogue/2text.2icon.4/default";
21234       alias: "elm/genlist/item_odd/dialogue/2text.2icon.4/default";
21235       alias: "elm/genlist/item_compress/dialogue/2text.2icon.4/default";
21236       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon.4/default";
21237       alias: "elm/layout/dialogue/2text.2icon.4";
21238       data.item: "stacking" "above";
21239       data.item: "selectraise" "on";
21240       data.item: "texts" "elm.text.1 elm.text.2";
21241       data.item: "contents" "elm.icon.1 elm.icon.2";
21242       data.item: "flips" "elm.flip.content";
21243       images {
21244          image: "00_list_bar_press_1x80.png" COMP;
21245       }
21246       parts {
21247          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
21248          GENLIST_PART_BG_IMAGE
21249          GENLIST_PART_BOTTOM_LINE
21250          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
21251          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
21252          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
21253          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
21254          GENLIST_PART_DIALOGUE_ITEM
21255          part { name: "elm.icon.1";
21256             clip_to: "disclip";
21257             type: SWALLOW;
21258             scale: 1;
21259             description { state: "default" 0.0;
21260                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
21261                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
21262                fixed: 1 1;
21263                rel1 {
21264                   relative: 1.0 1.0;
21265                   to_x: "elm.padding.left";
21266                   to_y: "elm.text.1";
21267                }
21268                rel2 {
21269                   relative: 1.0 0.0;
21270                   to_x: "elm.padding.left";
21271                   to_y: "elm.padding.bottom";
21272                }
21273                align: 0.0 0.5;
21274             }
21275             GENLIST_DESCRIPTION_FLIP_ENABLED
21276          }
21277          part { name: "elm.padding.icon1.right";
21278             clip_to: "disclip";
21279             type: RECT;
21280             scale: 1;
21281             description { state: "default" 0.0;
21282                min: GENLIST_PADDING_16_INC 0;
21283                fixed: 1 0;
21284                rel1 {
21285                   relative: 1.0 0.0;
21286                   to_x: "elm.icon.1";
21287                }
21288                rel2.to_x: "elm.icon.1";
21289                align: 0.0 0.0;
21290                visible: 0;
21291             }
21292          }
21293          part { name: "elm.icon.2";
21294             clip_to: "disclip";
21295             type: SWALLOW;
21296             scale: 1;
21297             description { state: "default" 0.0;
21298                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
21299                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
21300                fixed: 1 1;
21301                rel1 {
21302                   relative: 0.0 1.0;
21303                   to_x: "elm.padding.right";
21304                   to_y: "elm.padding.top";
21305                }
21306                rel2 {
21307                   relative: 0.0 1.0;
21308                   to_x: "elm.padding.right";
21309                   to_y: "elm.text.1";
21310                }
21311                align: 1.0 0.5;
21312             }
21313             GENLIST_DESCRIPTION_FLIP_ENABLED
21314          }
21315          part { name: "elm.padding.icon2.left";
21316             clip_to: "disclip";
21317             type: RECT;
21318             scale: 1;
21319             description { state: "default" 0.0;
21320                min: GENLIST_PADDING_16_INC 0;
21321                fixed: 1 0;
21322                rel1 {
21323                   relative: 0.0 0.0;
21324                   to_x: "elm.icon.2";
21325                }
21326                rel2.to_x: "elm.icon.2";
21327                align: 1.0 0.0;
21328                visible: 0;
21329             }
21330          }
21331          part { name: "elm.text.1";
21332             clip_to: "disclip";
21333             type: TEXT;
21334             mouse_events: 0;
21335             scale: 1;
21336             description { state: "default" 0.0;
21337                min: 0 GENLIST_SIZE_61_INC;
21338                fixed: 0 1;
21339                rel1 {
21340                   relative: 1.0 1.0;
21341                   to_x: "elm.padding.left";
21342                   to_y: "elm.padding.top";
21343                }
21344                rel2 {
21345                   relative: 0.0 1.0;
21346                   to_x: "elm.padding.icon2.left";
21347                   to_y: "elm.padding.top";
21348                }
21349                align: 0.0 0.0;
21350                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
21351                text {
21352                   font: "SLP:style=Roman";
21353                   size: GENLIST_FONT_44_INC;
21354                   min: 0 1;
21355                   align: 0.0 0.5;
21356                   text_class: "list_item";
21357                }
21358             }
21359             description { state: "selected" 0.0;
21360                inherit: "default" 0.0;
21361                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
21362             }
21363             GENLIST_DESCRIPTION_FLIP_ENABLED
21364          }
21365          part { name: "elm.text.2";
21366             clip_to: "disclip";
21367             type: TEXT;
21368             mouse_events: 0;
21369             scale: 1;
21370             description { state: "default" 0.0;
21371                rel1 {
21372                   relative: 1.0 1.0;
21373                   to_x: "elm.padding.icon1.right";
21374                   to_y: "elm.text.1";
21375                }
21376                rel2 {
21377                   relative: 0.0 0.0;
21378                   to_x: "elm.padding.right";
21379                   to_y: "elm.padding.bottom";
21380                }
21381                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
21382                text {
21383                   font: "SLP:style=Medium";
21384                   size: GENLIST_FONT_32_INC;
21385                   min: 0 1;
21386                   align: 0.0 0.5;
21387                   text_class: "slp_medium";
21388                }
21389             }
21390             description { state: "selected" 0.0;
21391                inherit: "default" 0.0;
21392                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
21393             }
21394             GENLIST_DESCRIPTION_FLIP_ENABLED
21395          }
21396          GENLIST_PART_FLIP
21397          GENLIST_PART_DISCLIP
21398       }
21399       programs {
21400          // signal: elm,state,%s,active
21401          //   a "check" item named %s went active
21402          // signal: elm,state,%s,passive
21403          //   a "check" item named %s went passive
21404          // default is passive
21405          program { name: "go_active";
21406             signal: "elm,state,selected";
21407             source: "elm";
21408             action: STATE_SET "selected" 0.0;
21409             target: "bg_image";
21410             target: "elm.text.1";
21411             target: "elm.text.2";
21412             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
21413          }
21414          program { name: "go_passive";
21415             signal: "elm,state,unselected";
21416             source: "elm";
21417             action: STATE_SET "default" 0.0;
21418             target: "bg_image";
21419             target: "elm.text.1";
21420             target: "elm.text.2";
21421             transition: LINEAR 0.1;
21422          }
21423          program { name: "go_disabled";
21424             signal: "elm,state,disabled";
21425             source: "elm";
21426             action: STATE_SET "disabled" 0.0;
21427             target: "disclip";
21428          }
21429          program { name: "go_enabled";
21430             signal: "elm,state,enabled";
21431             source: "elm";
21432             action: STATE_SET "default" 0.0;
21433             target: "disclip";
21434          }
21435          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
21436          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
21437       }
21438    }
21439
21440    group { name: "elm/genlist/item/dialogue/2text.1icon.6/default";
21441       alias: "elm/genlist/item_odd/dialogue/2text.1icon.6/default";
21442       alias: "elm/genlist/item_compress/dialogue/2text.1icon.6/default";
21443       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.6/default";
21444       alias: "elm/layout/dialogue/2text.1icon.6";
21445       data.item: "stacking" "above";
21446       data.item: "selectraise" "on";
21447       data.item: "texts" "elm.text.1 elm.text.2";
21448       data.item: "contents" "elm.icon";
21449       data.item: "flips" "elm.flip.content";
21450       parts {
21451          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
21452          GENLIST_PART_BG_IMAGE
21453          GENLIST_PART_BOTTOM_LINE
21454          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
21455          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC)
21456          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
21457          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
21458          GENLIST_PART_DIALOGUE_ITEM
21459          part { name: "elm.icon";
21460             clip_to: "disclip";
21461             type: SWALLOW;
21462             scale: 1;
21463             description { state: "default" 0.0;
21464                fixed: 1 1;
21465                rel1.to_x: "elm.padding.right";
21466                rel2 {
21467                   relative: 0.0 1.0;
21468                   to_x: "elm.padding.right";
21469                }
21470                align: 1.0 0.5;
21471             }
21472             GENLIST_DESCRIPTION_FLIP_ENABLED
21473          }
21474          part { name: "elm.padding.icon.left";
21475             clip_to: "disclip";
21476             type: RECT;
21477             scale: 1;
21478             description { state: "default" 0.0;
21479                min: GENLIST_SIZE_16_INC 0;
21480                fixed: 1 0;
21481                rel1.to_x: "elm.icon";
21482                rel2 {
21483                   relative: 0.0 1.0;
21484                   to_x: "elm.icon";
21485                }
21486                align: 1.0 0.0;
21487                visible: 0;
21488             }
21489          }
21490          part { name: "elm.text.1";
21491             clip_to: "disclip";
21492             type: TEXT;
21493             mouse_events: 0;
21494             scale: 1;
21495             description { state: "default" 0.0;
21496                min: 0 GENLIST_SIZE_61_INC;
21497                fixed: 0 1;
21498                rel1 {
21499                   relative: 1.0 1.0;
21500                   to_x: "elm.padding.left";
21501                   to_y: "elm.padding.top";
21502                }
21503                rel2 {
21504                   relative: 0.0 1.0;
21505                   to_x: "elm.padding.icon.left";
21506                   to_y: "elm.padding.top";
21507                }
21508                align: 0.0 0.0;
21509                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
21510                text {
21511                   font: "SLP:style=Roman";
21512                   size: GENLIST_FONT_44_INC;
21513                   min: 0 1;
21514                   align: 0.0 0.5;
21515                   text_class: "list_item";
21516                }
21517             }
21518             description { state: "selected" 0.0;
21519                inherit: "default" 0.0;
21520                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
21521             }
21522             GENLIST_DESCRIPTION_FLIP_ENABLED
21523          }
21524          part { name: "elm.text.2";
21525             clip_to: "disclip";
21526             type: TEXT;
21527             mouse_events: 0;
21528             scale: 1;
21529             description { state: "default" 0.0;
21530                rel1 {
21531                   relative: 1.0 1.0;
21532                   to_x: "elm.padding.left";
21533                   to_y: "elm.text.1";
21534                }
21535                rel2 {
21536                   relative: 0.0 0.0;
21537                   to_x: "elm.padding.icon.left";
21538                   to_y: "elm.padding.bottom";
21539                }
21540                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
21541                text {
21542                   font: "SLP:style=Medium";
21543                   size: GENLIST_FONT_32_INC;
21544                   min: 0 1;
21545                   align: 0.0 0.5;
21546                   text_class: "slp_medium";
21547                }
21548             }
21549             description { state: "selected" 0.0;
21550                inherit: "default" 0.0;
21551                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
21552             }
21553             GENLIST_DESCRIPTION_FLIP_ENABLED
21554          }
21555          GENLIST_PART_FLIP
21556          GENLIST_PART_DISCLIP
21557       }
21558       programs {
21559          // signal: elm,state,%s,active
21560          //   a "check" item named %s went active
21561          // signal: elm,state,%s,passive
21562          //   a "check" item named %s went passive
21563          // default is passive
21564          program { name: "go_active";
21565             signal: "elm,state,selected";
21566             source: "elm";
21567             action: STATE_SET "selected" 0.0;
21568             target: "bg_image";
21569             target: "elm.text.1";
21570             target: "elm.text.2";
21571             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
21572          }
21573          program { name: "go_passive";
21574             signal: "elm,state,unselected";
21575             source: "elm";
21576             action: STATE_SET "default" 0.0;
21577             target: "bg_image";
21578             target: "elm.text.1";
21579             target: "elm.text.2";
21580             transition: LINEAR 0.1;
21581          }
21582          program { name: "go_disabled";
21583             signal: "elm,state,disabled";
21584             source: "elm";
21585             action: STATE_SET "disabled" 0.0;
21586             target: "disclip";
21587          }
21588          program { name: "go_enabled";
21589             signal: "elm,state,enabled";
21590             source: "elm";
21591             action: STATE_SET "default" 0.0;
21592             target: "disclip";
21593          }
21594          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
21595          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
21596       }
21597    }
21598
21599    group { name: "elm/genlist/item/dialogue/2text.1icon.7/default";
21600       alias: "elm/genlist/item_odd/dialogue/2text.1icon.7/default";
21601       alias: "elm/genlist/item_compress/dialogue/2text.1icon.7/default";
21602       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.7/default";
21603       alias: "elm/layout/dialogue/2text.1icon.7";
21604       data.item: "stacking" "above";
21605       data.item: "selectraise" "on";
21606       data.item: "texts" "elm.text.1 elm.text.2";
21607       data.item: "contents" "elm.icon";
21608       data.item: "flips" "elm.flip.content";
21609       parts {
21610          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
21611          GENLIST_PART_BG_IMAGE
21612          GENLIST_PART_BOTTOM_LINE
21613          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
21614          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
21615          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
21616          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
21617          GENLIST_PART_DIALOGUE_ITEM
21618          part { name: "elm.icon";
21619             clip_to: "disclip";
21620             type: SWALLOW;
21621             scale: 1;
21622             description { state: "default" 0.0;
21623                min: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
21624                max: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
21625                fixed: 1 1;
21626                rel1 {
21627                   relative: 0.0 1.0;
21628                   to_x: "elm.padding.right";
21629                   to_y: "elm.padding.top";
21630                }
21631                rel2 {
21632                   relative: 0.0 0.0;
21633                   to_x: "elm.padding.right";
21634                   to_y: "elm.padding.bottom";
21635                }
21636                align: 1.0 0.5;
21637             }
21638             GENLIST_DESCRIPTION_FLIP_ENABLED
21639          }
21640          part { name: "elm.padding.icon.left";
21641             clip_to: "disclip";
21642             type: RECT;
21643             scale: 1;
21644             description { state: "default" 0.0;
21645                min: GENLIST_SIZE_16_INC 0;
21646                fixed: 1 0;
21647                rel1.to_x: "elm.icon";
21648                rel2 {
21649                   relative: 0.0 1.0;
21650                   to_x: "elm.icon";
21651                }
21652                align: 1.0 0.0;
21653                visible: 0;
21654             }
21655          }
21656          part { name: "elm.text.1";
21657             clip_to: "disclip";
21658             type: TEXT;
21659             mouse_events: 0;
21660             scale: 1;
21661             description { state: "default" 0.0;
21662                min: 0 GENLIST_SIZE_61_INC;
21663                fixed: 0 1;
21664                rel1 {
21665                   relative: 1.0 1.0;
21666                   to_x: "elm.padding.left";
21667                   to_y: "elm.padding.top";
21668                }
21669                rel2 {
21670                   relative: 0.0 1.0;
21671                   to_x: "elm.padding.icon.left";
21672                   to_y: "elm.padding.top";
21673                }
21674                align: 0.0 0.0;
21675                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
21676                text {
21677                   font: "SLP:style=Roman";
21678                   size: GENLIST_FONT_44_INC;
21679                   min: 0 1;
21680                   align: 0.0 0.5;
21681                   text_class: "list_item";
21682                }
21683             }
21684             description { state: "selected" 0.0;
21685                inherit: "default" 0.0;
21686                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
21687             }
21688             GENLIST_DESCRIPTION_FLIP_ENABLED
21689          }
21690          part { name: "elm.text.2";
21691             clip_to: "disclip";
21692             type: TEXT;
21693             mouse_events: 0;
21694             scale: 1;
21695             description { state: "default" 0.0;
21696                rel1 {
21697                   relative: 1.0 1.0;
21698                   to_x: "elm.padding.left";
21699                   to_y: "elm.text.1";
21700                }
21701                rel2 {
21702                   relative: 0.0 0.0;
21703                   to_x: "elm.padding.icon.left";
21704                   to_y: "elm.padding.bottom";
21705                }
21706                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
21707                text {
21708                   font: "SLP:style=Medium";
21709                   size: GENLIST_FONT_32_INC;
21710                   min: 0 1;
21711                   align: 0.0 0.5;
21712                   text_class: "slp_medium";
21713                }
21714             }
21715             description { state: "selected" 0.0;
21716                inherit: "default" 0.0;
21717                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
21718             }
21719             GENLIST_DESCRIPTION_FLIP_ENABLED
21720          }
21721          GENLIST_PART_FLIP
21722          GENLIST_PART_DISCLIP
21723       }
21724       programs {
21725          // signal: elm,state,%s,active
21726          //   a "check" item named %s went active
21727          // signal: elm,state,%s,passive
21728          //   a "check" item named %s went passive
21729          // default is passive
21730          program { name: "go_active";
21731             signal: "elm,state,selected";
21732             source: "elm";
21733             action: STATE_SET "selected" 0.0;
21734             target: "bg_image";
21735             target: "elm.text.1";
21736             target: "elm.text.2";
21737             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
21738          }
21739          program { name: "go_passive";
21740             signal: "elm,state,unselected";
21741             source: "elm";
21742             action: STATE_SET "default" 0.0;
21743             target: "bg_image";
21744             target: "elm.text.1";
21745             target: "elm.text.2";
21746             transition: LINEAR 0.1;
21747          }
21748          program { name: "go_disabled";
21749             signal: "elm,state,disabled";
21750             source: "elm";
21751             action: STATE_SET "disabled" 0.0;
21752             target: "disclip";
21753          }
21754          program { name: "go_enabled";
21755             signal: "elm,state,enabled";
21756             source: "elm";
21757             action: STATE_SET "default" 0.0;
21758             target: "disclip";
21759          }
21760          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
21761          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
21762       }
21763    }
21764
21765    group { name: "elm/genlist/item/dialogue/2text.1icon.8/default";
21766       alias: "elm/genlist/item_odd/dialogue/2text.1icon.8/default";
21767       alias: "elm/genlist/item_compress/dialogue/2text.1icon.8/default";
21768       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.8/default";
21769       alias: "elm/layout/dialogue/2text.1icon.8";
21770       data.item: "stacking" "above";
21771       data.item: "selectraise" "on";
21772       data.item: "texts" "elm.text.1 elm.text.2";
21773       data.item: "contents" "elm.icon";
21774       data.item: "flips" "elm.flip.content";
21775       images {
21776          image: "00_list_bar_press_1x80.png" COMP;
21777       }
21778       parts {
21779          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
21780          GENLIST_PART_BG_IMAGE
21781          GENLIST_PART_BOTTOM_LINE
21782          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
21783          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
21784          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
21785          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
21786          GENLIST_PART_DIALOGUE_ITEM
21787          part { name: "elm.text.2";
21788             clip_to: "disclip";
21789             type: TEXT;
21790             mouse_events: 0;
21791             scale: 1;
21792             description { state: "default" 0.0;
21793                min: 0 GENLIST_SIZE_48_INC;
21794                fixed: 0 1;
21795                rel1 {
21796                   relative: 1.0 1.0;
21797                   to_x: "elm.padding.left";
21798                   to_y: "elm.padding.top";
21799                }
21800                rel2 {
21801                   relative: 0.0 1.0;
21802                   to_x: "elm.padding.right";
21803                   to_y: "elm.padding.top";
21804                }
21805                align: 0.0 0.0;
21806                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
21807                text {
21808                   font: "SLP:style=Medium";
21809                   size: GENLIST_FONT_32_INC;
21810                   min: 0 1;
21811                   align: 0.0 0.5;
21812                   text_class: "slp_roman";
21813                }
21814             }
21815             description { state: "selected" 0.0;
21816                inherit: "default" 0.0;
21817                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
21818             }
21819             GENLIST_DESCRIPTION_FLIP_ENABLED
21820          }
21821          part { name: "elm.text.1";
21822             clip_to: "disclip";
21823             type: TEXT;
21824             mouse_events: 0;
21825             scale: 1;
21826             description { state: "default" 0.0;
21827                min: GENLIST_SIZE_672_INC 0;
21828                fixed: 1 0;
21829                rel1 {
21830                   relative: 1.0 1.0;
21831                   to_x: "elm.padding.left";
21832                   to_y: "elm.text.2";
21833                }
21834                rel2 {
21835                   relative: 1.0 0.0;
21836                   to_x: "elm.padding.left";
21837                   to_y: "elm.padding.bottom";
21838                }
21839                align: 0.0 0.5;
21840                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
21841                text {
21842                   font: "SLP:style=Roman";
21843                   size: GENLIST_FONT_44_INC;
21844                   min: 1 1;
21845                   align: 0.0 0.5;
21846                   text_class: "list_item";
21847                }
21848             }
21849             description { state: "selected" 0.0;
21850                inherit: "default" 0.0;
21851                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
21852             }
21853             GENLIST_DESCRIPTION_FLIP_ENABLED
21854          }
21855          part { name: "elm.padding.text1.right";
21856             clip_to: "disclip";
21857             type: RECT;
21858             scale: 1;
21859             description { state: "default" 0.0;
21860                min: GENLIST_SIZE_16_INC 0;
21861                fixed: 1 0;
21862                visible: 0;
21863                rel1 {
21864                   relative: 1.0 0.0;
21865                   to_x: "elm.text.1";
21866                }
21867                rel2.to_x: "elm.text.1";
21868                align: 0.0 0.0;
21869             }
21870          }
21871          part { name: "elm.icon";
21872             clip_to: "disclip";
21873             type: SWALLOW;
21874             scale: 1;
21875             description { state: "default" 0.0;
21876                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
21877                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
21878                fixed: 1 1;
21879                rel1 {
21880                   relative: 1.0 1.0;
21881                   to_x: "elm.padding.text1.right";
21882                   to_y: "elm.text.2";
21883                }
21884                rel2 {
21885                   relative: 1.0 0.0;
21886                   to_x: "elm.padding.text1.right";
21887                   to_y: "elm.padding.bottom";
21888                }
21889                align: 0.0 0.5;
21890             }
21891             GENLIST_DESCRIPTION_FLIP_ENABLED
21892          }
21893          GENLIST_PART_FLIP
21894          GENLIST_PART_DISCLIP
21895       }
21896       programs {
21897          // signal: elm,state,%s,active
21898          //   a "check" item named %s went active
21899          // signal: elm,state,%s,passive
21900          //   a "check" item named %s went passive
21901          // default is passive
21902          program { name: "go_active";
21903             signal: "elm,state,selected";
21904             source: "elm";
21905             action: STATE_SET "selected" 0.0;
21906             target: "bg_image";
21907             target: "elm.text.1";
21908             target: "elm.text.2";
21909             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
21910          }
21911          program { name: "go_passive";
21912             signal: "elm,state,unselected";
21913             source: "elm";
21914             action: STATE_SET "default" 0.0;
21915             target: "bg_image";
21916             target: "elm.text.1";
21917             target: "elm.text.2";
21918             transition: LINEAR 0.1;
21919          }
21920          program { name: "go_disabled";
21921             signal: "elm,state,disabled";
21922             source: "elm";
21923             action: STATE_SET "disabled" 0.0;
21924             target: "disclip";
21925          }
21926          program { name: "go_enabled";
21927             signal: "elm,state,enabled";
21928             source: "elm";
21929             action: STATE_SET "default" 0.0;
21930             target: "disclip";
21931          }
21932          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
21933          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
21934       }
21935    }
21936
21937    // 2.4.2.19
21938    group { name: "elm/genlist/item/dialogue/2text.1icon.9/default";
21939       alias: "elm/genlist/item_odd/dialogue/2text.1icon.9/default";
21940       alias: "elm/genlist/item_compress/dialogue/2text.1icon.9/default";
21941       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.9/default";
21942       alias: "elm/layout/dialogue/2text.1icon.9";
21943       data.item: "stacking" "above";
21944       data.item: "selectraise" "on";
21945       data.item: "texts" "elm.text.1 elm.text.2";
21946       data.item: "contents" "elm.icon.1";
21947       data.item: "flips" "elm.flip.content";
21948       images {
21949          image: "00_list_bar_press_1x80.png" COMP;
21950       }
21951       parts {
21952          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
21953          GENLIST_PART_BG_IMAGE
21954          GENLIST_PART_BOTTOM_LINE
21955          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
21956          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
21957          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
21958          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
21959          GENLIST_PART_DIALOGUE_ITEM
21960          part { name: "elm.icon.1";
21961             clip_to: "disclip";
21962             type: SWALLOW;
21963             scale: 1;
21964             description { state: "default" 0.0;
21965                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
21966                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
21967                fixed: 1 1;
21968                rel1 {
21969                   relative: 1.0 1.0;
21970                   to_x: "elm.padding.left";
21971                   to_y: "elm.text.1";
21972                }
21973                rel2 {
21974                   relative: 1.0 0.0;
21975                   to_x: "elm.padding.left";
21976                   to_y: "elm.padding.bottom";
21977                }
21978                align: 0.0 0.5;
21979             }
21980             GENLIST_DESCRIPTION_FLIP_ENABLED
21981          }
21982          part { name: "elm.padding.icon1.right";
21983             clip_to: "disclip";
21984             type: RECT;
21985             scale: 1;
21986             description { state: "default" 0.0;
21987                min: GENLIST_PADDING_16_INC 0;
21988                fixed: 1 0;
21989                rel1 {
21990                   relative: 1.0 0.0;
21991                   to_x: "elm.icon.1";
21992                }
21993                rel2.to_x: "elm.icon.1";
21994                align: 0.0 0.0;
21995                visible: 0;
21996             }
21997          }
21998          part { name: "elm.text.1";
21999             clip_to: "disclip";
22000             type: TEXT;
22001             mouse_events: 0;
22002             scale: 1;
22003             description { state: "default" 0.0;
22004                min: 0 GENLIST_SIZE_61_INC;
22005                fixed: 0 1;
22006                rel1 {
22007                   relative: 1.0 1.0;
22008                   to_x: "elm.padding.left";
22009                   to_y: "elm.padding.top";
22010                }
22011                rel2 {
22012                   relative: 0.0 1.0;
22013                   to_x: "elm.padding.right";
22014                   to_y: "elm.padding.top";
22015                }
22016                align: 0.0 0.0;
22017                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
22018                text {
22019                   font: "SLP:style=Roman";
22020                   size: GENLIST_FONT_44_INC;
22021                   min: 0 1;
22022                   align: 0.0 0.5;
22023                   text_class: "list_item";
22024                }
22025             }
22026             description { state: "selected" 0.0;
22027                inherit: "default" 0.0;
22028                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
22029             }
22030             GENLIST_DESCRIPTION_FLIP_ENABLED
22031          }
22032          part { name: "elm.text.2";
22033             clip_to: "disclip";
22034             type: TEXT;
22035             mouse_events: 0;
22036             scale: 1;
22037             description { state: "default" 0.0;
22038                rel1 {
22039                   relative: 1.0 1.0;
22040                   to_x: "elm.padding.icon1.right";
22041                   to_y: "elm.text.1";
22042                }
22043                rel2 {
22044                   relative: 0.0 0.0;
22045                   to_x: "elm.padding.right";
22046                   to_y: "elm.padding.bottom";
22047                }
22048                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
22049                text {
22050                   font: "SLP:style=Medium";
22051                   size: GENLIST_FONT_32_INC;
22052                   min: 0 1;
22053                   align: 0.0 0.5;
22054                   text_class: "slp_medium";
22055                }
22056             }
22057             description { state: "selected" 0.0;
22058                inherit: "default" 0.0;
22059                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
22060             }
22061             GENLIST_DESCRIPTION_FLIP_ENABLED
22062          }
22063          GENLIST_PART_FLIP
22064          GENLIST_PART_DISCLIP
22065       }
22066       programs {
22067          // signal: elm,state,%s,active
22068          //   a "check" item named %s went active
22069          // signal: elm,state,%s,passive
22070          //   a "check" item named %s went passive
22071          // default is passive
22072          program { name: "go_active";
22073             signal: "elm,state,selected";
22074             source: "elm";
22075             action: STATE_SET "selected" 0.0;
22076             target: "bg_image";
22077             target: "elm.text.1";
22078             target: "elm.text.2";
22079          }
22080          program { name: "go_passive";
22081             signal: "elm,state,unselected";
22082             source: "elm";
22083             action: STATE_SET "default" 0.0;
22084             target: "bg_image";
22085             target: "elm.text.1";
22086             target: "elm.text.2";
22087             transition: LINEAR 0.1;
22088          }
22089          program { name: "go_disabled";
22090             signal: "elm,state,disabled";
22091             source: "elm";
22092             action: STATE_SET "disabled" 0.0;
22093             target: "disclip";
22094          }
22095          program { name: "go_enabled";
22096             signal: "elm,state,enabled";
22097             source: "elm";
22098             action: STATE_SET "default" 0.0;
22099             target: "disclip";
22100          }
22101       }
22102    }
22103
22104 // 4.3.1
22105    group { name: "elm/genlist/item/dialogue/bg/2text.2icon/default";
22106       alias: "elm/genlist/item_odd/dialogue/bg/2text.2icon/default";
22107       alias: "elm/genlist/item_compress/dialogue/bg/2text.2icon/default";
22108       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.2icon/default";
22109       alias: "elm/layout/dialogue/bg/2text.2icon";
22110       data.item: "stacking" "above";
22111       data.item: "selectraise" "on";
22112       data.item: "texts" "elm.text.1 elm.text.2";
22113       data.item: "contents" "elm.icon.1 elm.icon.2";
22114       images {
22115           image: "00_list_thumbnail_bg.png" COMP;
22116       }
22117       parts {
22118          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_190_INC )
22119          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_48_INC )
22120          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_48_INC )
22121          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
22122          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
22123          part { name: "elm.icon1.bg";
22124             scale: 1;
22125             description { state: "default" 0.0;
22126                min: GENLIST_SIZE_128_INC GENLIST_SIZE_128_INC;
22127                fixed: 1 1;
22128                align: 0.0 0.52;
22129                rel1 {
22130                   relative: 1.0 0.5;
22131                   to_x: "elm.padding.left";
22132                }
22133                rel2 {
22134                   relative: 1.0 0.5;
22135                   to_x: "elm.padding.left";
22136                }
22137                image {
22138                   normal: "00_list_thumbnail_bg.png";
22139                   border: 1 1 1 1;
22140                   border_scale: 1;
22141                   middle: NONE;
22142                }
22143             }
22144          }
22145          part { name: "elm.icon.1";
22146             type: SWALLOW;
22147             description { state: "default" 0.0;
22148                rel1.to: "elm.icon1.bg";
22149                rel2.to: "elm.icon1.bg";
22150             }
22151          }
22152          part { name: "elm.padding.icon1.right";
22153             type: RECT;
22154             mouse_events: 0;
22155             scale: 1;
22156             description { state: "default" 0.0;
22157                min: GENLIST_PADDING_24_INC 0;
22158                fixed: 1 0;
22159                rel1 {
22160                    relative: 1.0 0.0;
22161                    to_x: "elm.icon1.bg";
22162                }
22163                rel2.to_x: "elm.icon1.bg";
22164                visible: 0;
22165                align: 0.0 0.5;
22166             }
22167          }
22168          part { name: "elm.icon.2";
22169             type: SWALLOW;
22170             scale: 1;
22171             description { state: "default" 0.0;
22172                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
22173                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
22174                fixed: 1 1;
22175                rel1 {
22176                   relative: 0.0 0.5;
22177                   to_x: "elm.padding.right";
22178                }
22179                rel2 {
22180                   relative: 0.0 0.5;
22181                   to_x: "elm.padding.right";
22182                }
22183                align: 1.0 0.5;
22184             }
22185          }
22186          part { name: "elm.padding.icon2.right";
22187             type: RECT;
22188             mouse_events: 0;
22189             scale: 1;
22190             description { state: "default" 0.0;
22191                min: GENLIST_PADDING_16_INC 0;
22192                fixed: 1 0;
22193                rel1.to_x: "elm.icon.2";
22194                rel2 {
22195                   relative: 0.0 1.0;
22196                   to_x: "elm.icon.2";
22197                }
22198                rel2.to_x: "elm.icon.2";
22199                visible: 0;
22200                align: 1.0 0.5;
22201             }
22202          }
22203          part { name: "elm.text.1";
22204             clip_to: "disclip";
22205             type: TEXT;
22206             mouse_events: 0;
22207             scale: 1;
22208             description { state: "default" 0.0;
22209                min: 0 GENLIST_SIZE_54_INC;
22210                fixed: 0 1;
22211                align: 0 0;
22212                rel1 {
22213                   relative: 1.0 1.0;
22214                   to_x: "elm.padding.icon1.right";
22215                   to_y: "elm.padding.top";
22216                }
22217                rel2 {
22218                   relative: 0.0 1.0;
22219                   to_x: "elm.padding.icon2.right";
22220                   to_y: "elm.padding.top";
22221                }
22222                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_MAIN_COLOR_INC;
22223                text {
22224                   font: "SLP:style=Roman";
22225                   size: GENLIST_FONT_48_INC;
22226                   align: 0.0 0.5;
22227                   text_class: "list_item";
22228                }
22229             }
22230          }
22231          part { name: "elm.padding.text.1.bottom";
22232             type: RECT;
22233             mouse_events: 0;
22234             scale: 1;
22235             description { state: "default" 0.0;
22236                min: 0 GENLIST_PADDING_8_INC;
22237                fixed: 0 1;
22238                rel1 {
22239                    relative: 0.0 1.0;
22240                    to_y: "elm.text.1";
22241                }
22242                rel2.to_y: "elm.text.1";
22243                visible: 0;
22244                align: 0.0 0.0;
22245             }
22246          }
22247          part { name: "elm.text.2";
22248             clip_to: "disclip";
22249             type: TEXT;
22250             mouse_events: 0;
22251             scale: 1;
22252             description { state: "default" 0.0;
22253                rel1 {
22254                   relative: 1.0 1.0;
22255                   to_x: "elm.padding.icon1.right";
22256                   to_y: "elm.padding.text.1.bottom";
22257                }
22258                rel2 {
22259                   relative: 0.0 0.0;
22260                   to_x: "elm.padding.icon2.right";
22261                   to_y: "elm.padding.bottom";
22262                }
22263                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
22264                text {
22265                   font: "SLP:style=Medium";
22266                   size: GENLIST_FONT_32_INC;
22267                   align: 0.0 0.5;
22268                   text_class: "slp_medium";
22269                }
22270             }
22271          }
22272          GENLIST_PART_DISCLIP
22273       }
22274       programs {
22275          // signal: elm,state,%s,active
22276          //   a "check" item named %s went active
22277          // signal: elm,state,%s,passive
22278          //   a "check" item named %s went passive
22279          // default is passive
22280          /*program { name: "go_active";
22281             signal: "elm,state,selected";
22282             source: "elm";
22283             action: STATE_SET "selected" 0.0;
22284             target: "elm.text";
22285             target: "elm.text.sub";
22286          }
22287          program { name: "go_passive";
22288             signal: "elm,state,unselected";
22289             source: "elm";
22290             action: STATE_SET "default" 0.0;
22291             target: "elm.text";
22292             target: "elm.text.sub";
22293             transition: LINEAR 0.1;
22294          }*/
22295          program { name: "go_disabled";
22296             signal: "elm,state,disabled";
22297             source: "elm";
22298             action: STATE_SET "disabled" 0.0;
22299             target: "disclip";
22300          }
22301          program { name: "go_enabled";
22302             signal: "elm,state,enabled";
22303             source: "elm";
22304             action: STATE_SET "default" 0.0;
22305             target: "disclip";
22306          }
22307       }
22308    }
22309
22310 // 4.3.2
22311    group { name: "elm/genlist/item/dialogue/bg/3text.2icon/default";
22312       alias: "elm/genlist/item_odd/dialogue/bg/3text.2icon/default";
22313       alias: "elm/genlist/item_compress/dialogue/bg/3text.2icon/default";
22314       alias: "elm/genlist/item_compress_odd/dialogue/bg/3text.2icon/default";
22315       alias: "elm/layout/dialogue/bg/3text.2icon";
22316       data.item: "stacking" "above";
22317       data.item: "selectraise" "on";
22318       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
22319       data.item: "contents" "elm.icon.1 elm.icon.2";
22320       images {
22321           image: "00_list_thumbnail_bg.png" COMP;
22322       }
22323       parts {
22324          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_190_INC )
22325          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_32_INC )
22326          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_32_INC )
22327          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
22328          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
22329          part { name: "elm.icon1.bg";
22330             scale: 1;
22331             description { state: "default" 0.0;
22332                min: GENLIST_SIZE_128_INC GENLIST_SIZE_128_INC;
22333                fixed: 1 1;
22334                align: 0.0 0.52;
22335                rel1 {
22336                   relative: 1.0 0.5;
22337                   to_x: "elm.padding.left";
22338                }
22339                rel2 {
22340                   relative: 1.0 0.5;
22341                   to_x: "elm.padding.left";
22342                }
22343                image {
22344                   normal: "00_list_thumbnail_bg.png";
22345                   border: 1 1 1 1;
22346                   border_scale: 1;
22347                   middle: NONE;
22348                }
22349             }
22350          }
22351          part { name: "elm.icon.1";
22352             type: SWALLOW;
22353             description { state: "default" 0.0;
22354                rel1.to: "elm.icon1.bg";
22355                rel2.to: "elm.icon1.bg";
22356             }
22357          }
22358          part { name: "elm.padding.icon1.right";
22359             type: RECT;
22360             mouse_events: 0;
22361             scale: 1;
22362             description { state: "default" 0.0;
22363                min: GENLIST_PADDING_24_INC 0;
22364                fixed: 1 0;
22365                rel1 {
22366                    relative: 1.0 0.0;
22367                    to_x: "elm.icon1.bg";
22368                }
22369                rel2.to_x: "elm.icon1.bg";
22370                visible: 0;
22371                align: 0.0 0.5;
22372             }
22373          }
22374          part { name: "elm.icon.2";
22375             type: SWALLOW;
22376             scale: 1;
22377             description { state: "default" 0.0;
22378                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
22379                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
22380                fixed: 1 1;
22381                rel1 {
22382                   relative: 0.0 0.5;
22383                   to_x: "elm.padding.right";
22384                }
22385                rel2 {
22386                   relative: 0.0 0.5;
22387                   to_x: "elm.padding.right";
22388                }
22389                align: 1.0 0.5;
22390             }
22391          }
22392          part { name: "elm.padding.icon2.right";
22393             type: RECT;
22394             mouse_events: 0;
22395             scale: 1;
22396             description { state: "default" 0.0;
22397                min: GENLIST_PADDING_16_INC 0;
22398                fixed: 1 0;
22399                rel1.to_x: "elm.icon.2";
22400                rel2 {
22401                   relative: 0.0 1.0;
22402                   to_x: "elm.icon.2";
22403                }
22404                rel2.to_x: "elm.icon.2";
22405                visible: 0;
22406                align: 1.0 0.5;
22407             }
22408          }
22409          part { name: "elm.text.1";
22410             clip_to: "disclip";
22411             type: TEXT;
22412             mouse_events: 0;
22413             scale: 1;
22414             description { state: "default" 0.0;
22415                min: 0 GENLIST_SIZE_54_INC;
22416                fixed: 0 1;
22417                align: 0 0;
22418                rel1 {
22419                   relative: 1.0 1.0;
22420                   to_x: "elm.padding.icon1.right";
22421                   to_y: "elm.padding.top";
22422                }
22423                rel2 {
22424                   relative: 0.0 1.0;
22425                   to_x: "elm.padding.icon2.right";
22426                   to_y: "elm.padding.top";
22427                }
22428                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_MAIN_COLOR_INC;
22429                text {
22430                   font: "SLP:style=Roman";
22431                   size: GENLIST_FONT_48_INC;
22432                   align: 0.0 0.5;
22433                   text_class: "list_item";
22434                }
22435             }
22436          }
22437          part { name: "elm.padding.text.1.bottom";
22438             type: RECT;
22439             mouse_events: 0;
22440             scale: 1;
22441             description { state: "default" 0.0;
22442                min: 0 GENLIST_PADDING_8_INC;
22443                fixed: 0 1;
22444                rel1 {
22445                    relative: 0.0 1.0;
22446                    to_y: "elm.text.1";
22447                }
22448                rel2.to_y: "elm.text.1";
22449                visible: 0;
22450                align: 0.0 0.0;
22451             }
22452          }
22453          part { name: "elm.text.2";
22454             clip_to: "disclip";
22455             type: TEXT;
22456             mouse_events: 0;
22457             scale: 1;
22458             description { state: "default" 0.0;
22459                rel1 {
22460                   relative: 1.0 1.0;
22461                   to_x: "elm.padding.icon1.right";
22462                   to_y: "elm.padding.text.1.bottom";
22463                }
22464                rel2 {
22465                   relative: 0.0 0.0;
22466                   to_x: "elm.padding.icon2.right";
22467                   to_y: "elm.text.3";
22468                }
22469                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
22470                text {
22471                   font: "SLP:style=Medium";
22472                   size: GENLIST_FONT_32_INC;
22473                   align: 0.0 0.5;
22474                   text_class: "slp_medium";
22475                }
22476             }
22477          }
22478          part { name: "elm.text.3";
22479             clip_to: "disclip";
22480             type: TEXT;
22481             mouse_events: 0;
22482             scale: 1;
22483             description { state: "default" 0.0;
22484                min: 0 GENLIST_SIZE_32_INC;
22485                fixed: 0 1;
22486                align: 0 1;
22487                rel1 {
22488                   relative: 1.0 0.0;
22489                   to_x: "elm.padding.icon1.right";
22490                   to_y: "elm.padding.bottom";
22491                }
22492                rel2 {
22493                   relative: 0.0 0.0;
22494                   to_x: "elm.padding.icon2.right";
22495                   to_y: "elm.padding.bottom";
22496                }
22497                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
22498                text {
22499                   font: "SLP:style=Medium";
22500                   size: GENLIST_FONT_32_INC;
22501                   align: 0.0 0.5;
22502                   text_class: "slp_medium";
22503                }
22504             }
22505          }
22506          GENLIST_PART_DISCLIP
22507       }
22508       programs {
22509          // signal: elm,state,%s,active
22510          //   a "check" item named %s went active
22511          // signal: elm,state,%s,passive
22512          //   a "check" item named %s went passive
22513          // default is passive
22514          /*program { name: "go_active";
22515             signal: "elm,state,selected";
22516             source: "elm";
22517             action: STATE_SET "selected" 0.0;
22518             target: "elm.text";
22519             target: "elm.text.sub";
22520          }
22521          program { name: "go_passive";
22522             signal: "elm,state,unselected";
22523             source: "elm";
22524             action: STATE_SET "default" 0.0;
22525             target: "elm.text";
22526             target: "elm.text.sub";
22527             transition: LINEAR 0.1;
22528          }*/
22529          program { name: "go_disabled";
22530             signal: "elm,state,disabled";
22531             source: "elm";
22532             action: STATE_SET "disabled" 0.0;
22533             target: "disclip";
22534          }
22535          program { name: "go_enabled";
22536             signal: "elm,state,enabled";
22537             source: "elm";
22538             action: STATE_SET "default" 0.0;
22539             target: "disclip";
22540          }
22541       }
22542    }
22543
22544 // 4.3.3
22545    group { name: "elm/genlist/item/dialogue/bg/5text.2icon/default";
22546       alias: "elm/genlist/item_odd/dialogue/bg/5text.2icon/default";
22547       alias: "elm/genlist/item_compress/dialogue/bg/5text.2icon/default";
22548       alias: "elm/genlist/item_compress_odd/dialogue/bg/5text.2icon/default";
22549       alias: "elm/layout/dialogue/bg/5text.2icon";
22550       data.item: "stacking" "above";
22551       data.item: "selectraise" "on";
22552       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4 elm.text.5";
22553       data.item: "contents" "elm.icon.1 elm.icon.2";
22554       images {
22555           image: "00_list_thumbnail_bg.png" COMP;
22556       }
22557       parts {
22558          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_182_INC )
22559          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_14_INC )
22560          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_14_INC )
22561          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
22562          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
22563          part { name: "elm.icon1.bg";
22564             scale: 1;
22565             description { state: "default" 0.0;
22566                min: GENLIST_SIZE_141_INC GENLIST_SIZE_141_INC;
22567                fixed: 1 1;
22568                align: 0.0 0.5;
22569                rel1 {
22570                   relative: 1.0 0.5;
22571                   to_x: "elm.padding.left";
22572                }
22573                rel2 {
22574                   relative: 1.0 0.5;
22575                   to_x: "elm.padding.left";
22576                }
22577                image {
22578                   normal: "00_list_thumbnail_bg.png";
22579                   border: 1 1 1 1;
22580                   border_scale: 1;
22581                   middle: NONE;
22582                }
22583             }
22584          }
22585          part { name: "elm.icon.1";
22586             type: SWALLOW;
22587             description { state: "default" 0.0;
22588                rel1.to: "elm.icon1.bg";
22589                rel2.to: "elm.icon1.bg";
22590             }
22591          }
22592          part { name: "elm.padding.icon1.right";
22593             type: RECT;
22594             mouse_events: 0;
22595             scale: 1;
22596             description { state: "default" 0.0;
22597                min: GENLIST_PADDING_16_INC 0;
22598                fixed: 1 0;
22599                rel1 {
22600                    relative: 1.0 0.0;
22601                    to_x: "elm.icon1.bg";
22602                }
22603                rel2.to_x: "elm.icon1.bg";
22604                visible: 0;
22605                align: 0.0 0.5;
22606             }
22607          }
22608          part { name: "elm.text.1";
22609             clip_to: "disclip";
22610             type: TEXT;
22611             mouse_events: 0;
22612             scale: 1;
22613             description { state: "default" 0.0;
22614                min: 0 GENLIST_SIZE_38_INC;
22615                fixed: 0 1;
22616                rel1 {
22617                   relative: 1.0 1.0;
22618                   to_x: "elm.padding.icon1.right";
22619                   to_y: "elm.padding.top";
22620                }
22621                rel2 {
22622                   relative: 0.0 1.0;
22623                   to_x: "elm.padding.right";
22624                   to_y: "elm.padding.top";
22625                }
22626                align: 0.0 0.0;
22627                color: GENLIST_DIALOGUE_FONT_APPS_NAME_COLOR_INC;
22628                text {
22629                   font: "SLP:style=Medium";
22630                   size: GENLIST_FONT_32_INC;
22631                   align: 0.0 0.5;
22632                   text_class: "list_item";
22633                }
22634             }
22635          }
22636          part { name: "elm.text.2";
22637             clip_to: "disclip";
22638             type: TEXT;
22639             mouse_events: 0;
22640             scale: 1;
22641             description { state: "default" 0.0;
22642                min: 0 GENLIST_SIZE_38_INC;
22643                fixed: 0 1;
22644                rel1 {
22645                   relative: 1.0 1.0;
22646                   to_x: "elm.padding.icon1.right";
22647                   to_y: "elm.text.1";
22648                }
22649                rel2 {
22650                   relative: 0.0 1.0;
22651                   to_x: "elm.padding.right";
22652                   to_y: "elm.text.1";
22653                }
22654                align: 0.0 0.0;
22655                color: GENLIST_DIALOGUE_FONT_APPS_INC_COLOR_INC;
22656                text {
22657                   font: "SLP:style=Medium";
22658                   size: GENLIST_FONT_28_INC;
22659                   align: 0.0 0.5;
22660                   text_class: "slp_medium";
22661                }
22662             }
22663          }
22664          part { name: "elm.icon.2";
22665             clip_to: "disclip";
22666             type: SWALLOW;
22667             mouse_events: 0;
22668             scale: 1;
22669             description { state: "default" 0.0;
22670                fixed: 1 1;
22671                rel1 {
22672                   relative: 1.0 0.0;
22673                   to_x: "elm.padding.icon1.right";
22674                   to_y: "elm.text.3";
22675                }
22676                rel2 {
22677                   relative: 1.0 1.0;
22678                   to_x: "elm.padding.icon1.right";
22679                   to_y: "elm.text.3";
22680                }
22681                align: 0.0 0.5;
22682             }
22683          }
22684          part { name: "elm.padding.icon2.right";
22685             type: RECT;
22686             mouse_events: 0;
22687             scale: 1;
22688             description { state: "default" 0.0;
22689                min: GENLIST_PADDING_16_INC 0;
22690                fixed: 1 0;
22691                rel1 {
22692                    relative: 1.0 0.0;
22693                    to_x: "elm.icon.2";
22694                }
22695                rel2.to_x: "elm.icon.2";
22696                visible: 0;
22697                align: 0.0 0.5;
22698             }
22699          }
22700          part { name: "elm.text.3";
22701             clip_to: "disclip";
22702             type: TEXT;
22703             mouse_events: 0;
22704             scale: 1;
22705             description { state: "default" 0.0;
22706                min: 0 GENLIST_SIZE_38_INC;
22707                fixed: 0 1;
22708                rel1 {
22709                   relative: 1.0 1.0;
22710                   to_x: "elm.padding.icon2.right";
22711                   to_y: "elm.text.2";
22712                }
22713                rel2 {
22714                   relative: 0.0 1.0;
22715                   to_x: "elm.padding.right";
22716                   to_y: "elm.text.2";
22717                }
22718                align: 0.0 0.0;
22719                color: GENLIST_DIALOGUE_FONT_APPS_RATING_COLOR_INC;
22720                text {
22721                   font: "SLP:style=Medium";
22722                   size: GENLIST_FONT_28_INC;
22723                   align: 0.0 0.5;
22724                   text_class: "slp_medium";
22725                }
22726             }
22727          }
22728          part { name: "elm.text.4";
22729             clip_to: "disclip";
22730             type: TEXT;
22731             mouse_events: 0;
22732             scale: 1;
22733             description { state: "default" 0.0;
22734                min: GENLIST_SIZE_96_INC GENLIST_SIZE_38_INC;
22735                fixed: 1 1;
22736                align: 0 1;
22737                rel1 {
22738                   relative: 1.0 0.0;
22739                   to_x: "elm.padding.icon1.right";
22740                   to_y: "elm.padding.bottom";
22741                }
22742                rel2 {
22743                   relative: 1.0 0.0;
22744                   to_x: "elm.padding.icon1.right";
22745                   to_y: "elm.padding.bottom";
22746                }
22747                color: GENLIST_DIALOGUE_FONT_APPS_PRICE_ORIGINAL_COLOR_INC;
22748                text {
22749                   font: "SLP:style=Medium";
22750                   size: GENLIST_FONT_28_INC;
22751                   align: 0.0 0.5;
22752                   text_class: "slp_medium";
22753                }
22754             }
22755          }
22756          part { name: "elm.padding.text4.right";
22757             type: RECT;
22758             mouse_events: 0;
22759             scale: 1;
22760             description { state: "default" 0.0;
22761                min: GENLIST_PADDING_16_INC 0;
22762                fixed: 1 0;
22763                rel1 {
22764                    relative: 1.0 0.0;
22765                    to_x: "elm.text.4";
22766                }
22767                rel2.to_x: "elm.text.4";
22768                visible: 0;
22769                align: 0.0 0.5;
22770             }
22771          }
22772          part { name: "elm.text.5";
22773             clip_to: "disclip";
22774             type: TEXT;
22775             mouse_events: 0;
22776             scale: 1;
22777             description { state: "default" 0.0;
22778                min: GENLIST_SIZE_96_INC GENLIST_SIZE_38_INC;
22779                fixed: 1 1;
22780                align: 0 1;
22781                rel1 {
22782                   relative: 1.0 0.0;
22783                   to_x: "elm.padding.text4.right";
22784                   to_y: "elm.padding.bottom";
22785                }
22786                rel2 {
22787                   relative: 1.0 0.0;
22788                   to_x: "elm.padding.text4.right";
22789                   to_y: "elm.padding.bottom";
22790                }
22791                color: GENLIST_DIALOGUE_FONT_APPS_PRICE_SALE_COLOR_INC;
22792                text {
22793                   font: "SLP:style=Medium";
22794                   size: GENLIST_FONT_28_INC;
22795                   align: 0.0 0.5;
22796                   text_class: "slp_medium";
22797                }
22798             }
22799          }
22800          GENLIST_PART_DISCLIP
22801       }
22802       programs {
22803          // signal: elm,state,%s,active
22804          //   a "check" item named %s went active
22805          // signal: elm,state,%s,passive
22806          //   a "check" item named %s went passive
22807          // default is passive
22808          /*program { name: "go_active";
22809             signal: "elm,state,selected";
22810             source: "elm";
22811             action: STATE_SET "selected" 0.0;
22812             target: "elm.text";
22813             target: "elm.text.sub";
22814          }
22815          program { name: "go_passive";
22816             signal: "elm,state,unselected";
22817             source: "elm";
22818             action: STATE_SET "default" 0.0;
22819             target: "elm.text";
22820             target: "elm.text.sub";
22821             transition: LINEAR 0.1;
22822          }*/
22823          program { name: "go_disabled";
22824             signal: "elm,state,disabled";
22825             source: "elm";
22826             action: STATE_SET "disabled" 0.0;
22827             target: "disclip";
22828          }
22829          program { name: "go_enabled";
22830             signal: "elm,state,enabled";
22831             source: "elm";
22832             action: STATE_SET "default" 0.0;
22833             target: "disclip";
22834          }
22835       }
22836    }
22837
22838    // 4.1.9
22839    group { name: "elm/genlist/item/dialogue/1icon/default";
22840       alias: "elm/genlist/item_odd/dialogue/1icon/default";
22841       alias: "elm/genlist/item_compress/dialogue/1icon/default";
22842       alias: "elm/genlist/item_compress_odd/dialogue/1icon/default";
22843       alias: "elm/layout/dialogue/1icon";
22844       data.item: "stacking" "above";
22845       data.item: "selectraise" "on";
22846       data.item: "contents" "elm.icon";
22847
22848       parts {
22849          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
22850          GENLIST_PART_BOTTOM_LINE
22851          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
22852          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
22853          GENLIST_PART_DIALOGUE_ITEM
22854          part { name: "elm.icon";
22855             clip_to: "disclip";
22856             type: SWALLOW;
22857             scale: 1;
22858             description { state: "default" 0.0;
22859                rel1 {
22860                   relative: 1.0 0.0;
22861                   to_x: "elm.padding.left";
22862                }
22863                rel2 {
22864                   relative: 0.0 1.0;
22865                   to_x: "elm.padding.right";
22866                }
22867             }
22868          }
22869          GENLIST_PART_DISCLIP
22870       }
22871       programs {
22872          // signal: elm,state,%s,active
22873          //   a "check" item named %s went active
22874          // signal: elm,state,%s,passive
22875          //   a "check" item named %s went passive
22876          // default is passive
22877          /*program { name: "go_active";
22878             signal: "elm,state,selected";
22879             source: "elm";
22880             action: STATE_SET "selected" 0.0;
22881             target: "bg_image";
22882             target: "elm.text";
22883          }
22884          program { name: "go_passive";
22885             signal: "elm,state,unselected";
22886             source: "elm";
22887             action: STATE_SET "default" 0.0;
22888             target: "bg_image";
22889             target: "elm.text";
22890             transition: LINEAR 0.1;
22891          }*/
22892          program { name: "go_disabled";
22893             signal: "elm,state,disabled";
22894             source: "elm";
22895             action: STATE_SET "disabled" 0.0;
22896             target: "disclip";
22897          }
22898          program { name: "go_enabled";
22899             signal: "elm,state,enabled";
22900             source: "elm";
22901             action: STATE_SET "default" 0.0;
22902             target: "disclip";
22903          }
22904       }
22905    }
22906
22907    group { name: "elm/genlist/item/dialogue/bg/1icon/default";
22908       alias: "elm/genlist/item_odd/dialogue/bg/1icon/default";
22909       alias: "elm/genlist/item_compress/dialogue/bg/1icon/default";
22910       alias: "elm/genlist/item_compress_odd/dialogue/bg/1icon/default";
22911       alias: "elm/layout/dialogue/bg/1icon";
22912       data.item: "stacking" "above";
22913       data.item: "selectraise" "on";
22914       data.item: "contents" "elm.icon";
22915
22916       parts {
22917          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_73_INC )
22918          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
22919          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
22920          part { name: "elm.icon";
22921             clip_to: "disclip";
22922             type: SWALLOW;
22923             scale: 1;
22924             description { state: "default" 0.0;
22925                rel1 {
22926                   relative: 1.0 0.0;
22927                   to_x: "elm.padding.left";
22928                }
22929                rel2 {
22930                   relative: 0.0 1.0;
22931                   to_x: "elm.padding.right";
22932                }
22933             }
22934          }
22935          GENLIST_PART_DISCLIP
22936       }
22937       programs {
22938          // signal: elm,state,%s,active
22939          //   a "check" item named %s went active
22940          // signal: elm,state,%s,passive
22941          //   a "check" item named %s went passive
22942          // default is passive
22943          program { name: "go_disabled";
22944             signal: "elm,state,disabled";
22945             source: "elm";
22946             action: STATE_SET "disabled" 0.0;
22947             target: "disclip";
22948          }
22949          program { name: "go_enabled";
22950             signal: "elm,state,enabled";
22951             source: "elm";
22952             action: STATE_SET "default" 0.0;
22953             target: "disclip";
22954          }
22955       }
22956    }
22957
22958    group { name: "elm/genlist/item/dialogue/bg/2icon/default";
22959       alias: "elm/genlist/item_odd/dialogue/bg/2icon/default";
22960       alias: "elm/genlist/item_compress/dialogue/bg/2icon/default";
22961       alias: "elm/genlist/item_compress_odd/dialogue/bg/2icon/default";
22962       alias: "elm/layout/dialogue/bg/2icon";
22963       data.item: "stacking" "above";
22964       data.item: "selectraise" "on";
22965       data.item: "contents" "elm.icon.1 elm.icon.2";
22966
22967       parts {
22968          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_73_INC )
22969          part { name: "elm.icon.1";
22970             clip_to: "disclip";
22971             type: SWALLOW;
22972             description { state: "default" 0.0;
22973                rel1.relative: 0.021 0.0;
22974                rel2.relative: 0.492 1.0;
22975             }
22976          }
22977          part { name: "elm.icon.2";
22978             clip_to: "disclip";
22979             type: SWALLOW;
22980             description { state: "default" 0.0;
22981                rel1.relative: 0.51 0.0;
22982                rel2.relative: 0.979 1.0;
22983             }
22984          }
22985          GENLIST_PART_DISCLIP
22986       }
22987       programs {
22988          // signal: elm,state,%s,active
22989          //   a "check" item named %s went active
22990          // signal: elm,state,%s,passive
22991          //   a "check" item named %s went passive
22992          // default is passive
22993          program { name: "go_disabled";
22994             signal: "elm,state,disabled";
22995             source: "elm";
22996             action: STATE_SET "disabled" 0.0;
22997             target: "disclip";
22998          }
22999          program { name: "go_enabled";
23000             signal: "elm,state,enabled";
23001             source: "elm";
23002             action: STATE_SET "default" 0.0;
23003             target: "disclip";
23004          }
23005       }
23006    }
23007
23008    group { name: "elm/genlist/item/dialogue/bg/3icon/default";
23009       alias: "elm/genlist/item_odd/dialogue/bg/3icon/default";
23010       alias: "elm/genlist/item_compress/dialogue/bg/3icon/default";
23011       alias: "elm/genlist/item_compress_odd/dialogue/bg/3icon/default";
23012
23013       alias: "elm/genlist/item/dialogue.3icon/default";
23014       alias: "elm/genlist/item_odd/dialogue.3icon/default";
23015       alias: "elm/genlist/item_compress/dialogue.3icon/default";
23016       alias: "elm/genlist/item_compress_odd/dialogue.3icon/default";
23017
23018       alias: "elm/layout/dialogue/bg/3icon";
23019       alias: "elm/layout/dialogue/dialogue.3icon";
23020
23021       data.item: "stacking" "above";
23022       data.item: "selectraise" "on";
23023       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
23024
23025       parts {
23026          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_73_INC )
23027          part { name: "elm.icon.1";
23028             clip_to: "disclip";
23029             type: SWALLOW;
23030             description { state: "default" 0.0;
23031                rel1.relative: 0.021 0.0;
23032                rel2.relative: 0.327 1.0;
23033             }
23034          }
23035          part { name: "elm.icon.2";
23036             clip_to: "disclip";
23037             type: SWALLOW;
23038             description { state: "default" 0.0;
23039                rel1.relative: 0.348 0.0;
23040                rel2.relative: 0.652 1.0;
23041             }
23042          }
23043          part { name: "elm.icon.3";
23044             clip_to: "disclip";
23045             type: SWALLOW;
23046             description { state: "default" 0.0;
23047                rel1.relative: 0.673 0.0;
23048                rel2.relative: 0.979 1.0;
23049             }
23050          }
23051          GENLIST_PART_DISCLIP
23052       }
23053       programs {
23054          // signal: elm,state,%s,active
23055          //   a "check" item named %s went active
23056          // signal: elm,state,%s,passive
23057          //   a "check" item named %s went passive
23058          // default is passive
23059          program { name: "go_disabled";
23060             signal: "elm,state,disabled";
23061             source: "elm";
23062             action: STATE_SET "disabled" 0.0;
23063             target: "disclip";
23064          }
23065          program { name: "go_enabled";
23066             signal: "elm,state,enabled";
23067             source: "elm";
23068             action: STATE_SET "default" 0.0;
23069             target: "disclip";
23070          }
23071       }
23072    }
23073
23074    group { name: "elm/genlist/item/dialogue.3icon.2/default";
23075       alias: "elm/genlist/item_odd/dialogue.3icon.2/default";
23076       alias: "elm/genlist/item_compress/dialogue.3icon.2/default";
23077       alias: "elm/genlist/item_compress_odd/dialogue.3icon.2/default";
23078       alias: "elm/layout/dialogue/dialogue.3icon.2";
23079       data.item: "stacking" "above";
23080       data.item: "selectraise" "on";
23081       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
23082
23083       parts {
23084          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_89_INC )
23085          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
23086          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
23087          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
23088          part { name: "elm.icon.1";
23089             clip_to: "disclip";
23090             type: SWALLOW;
23091             description { state: "default" 0.0;
23092                min: GENLIST_SIZE_234_INC 0;
23093                fixed: 1 0;
23094                rel1 {
23095                   relative: 0.0 1.0;
23096                   to_x: "elm.padding.right";
23097                   to_y: "elm.padding.top";
23098                }
23099                rel2 {
23100                   relative: 0.0 1.0;
23101                   to_x: "elm.padding.right";
23102                }
23103                align: 1.0 0.5;
23104             }
23105          }
23106          part { name: "elm.padding.icon.1.left";
23107             clip_to: "disclip";
23108             type: RECT;
23109             mouse_events: 0;
23110             scale: 1;
23111             description { state: "default" 0.0;
23112                min: GENLIST_PADDING_16_INC 0;
23113                fixed: 1 0;
23114                rel1.to_x: "elm.icon.1";
23115                rel2 {
23116                   relative: 0.0 1.0;
23117                   to_x: "elm.icon.1";
23118                }
23119                visible: 0;
23120                align: 1.0 0.5;
23121             }
23122          }
23123          part { name: "elm.icon.2";
23124             clip_to: "disclip";
23125             type: SWALLOW;
23126             description { state: "default" 0.0;
23127                min: GENLIST_SIZE_234_INC 0;
23128                fixed: 1 0;
23129                rel1 {
23130                   relative: 0.0 1.0;
23131                   to_x: "elm.padding.icon.1.left";
23132                   to_y: "elm.padding.top";
23133                }
23134                rel2 {
23135                   relative: 0.0 1.0;
23136                   to_x: "elm.padding.icon.1.left";
23137                }
23138                align: 1.0 0.5;
23139             }
23140          }
23141          part { name: "elm.padding.icon.2.left";
23142             clip_to: "disclip";
23143             type: RECT;
23144             mouse_events: 0;
23145             scale: 1;
23146             description { state: "default" 0.0;
23147                min: GENLIST_PADDING_16_INC 0;
23148                fixed: 1 0;
23149                rel1.to_x: "elm.icon.2";
23150                rel2 {
23151                   relative: 0.0 1.0;
23152                   to_x: "elm.icon.2";
23153                }
23154                visible: 0;
23155                align: 1.0 0.5;
23156             }
23157          }
23158          part { name: "elm.icon.3";
23159             clip_to: "disclip";
23160             type: SWALLOW;
23161             description { state: "default" 0.0;
23162                min: GENLIST_SIZE_234_INC 0;
23163                fixed: 1 0;
23164                rel1 {
23165                   relative: 0.0 1.0;
23166                   to_x: "elm.padding.icon.2.left";
23167                   to_y: "elm.padding.top";
23168                }
23169                rel2 {
23170                   relative: 0.0 1.0;
23171                   to_x: "elm.padding.icon.2.left";
23172                }
23173                align: 1.0 0.5;
23174             }
23175          }
23176          GENLIST_PART_DISCLIP
23177       }
23178       programs {
23179          // signal: elm,state,%s,active
23180          //   a "check" item named %s went active
23181          // signal: elm,state,%s,passive
23182          //   a "check" item named %s went passive
23183          // default is passive
23184          program { name: "go_disabled";
23185             signal: "elm,state,disabled";
23186             source: "elm";
23187             action: STATE_SET "disabled" 0.0;
23188             target: "disclip";
23189          }
23190          program { name: "go_enabled";
23191             signal: "elm,state,enabled";
23192             source: "elm";
23193             action: STATE_SET "default" 0.0;
23194             target: "disclip";
23195          }
23196       }
23197    }
23198
23199    group { name: "elm/genlist/item/dialogue.1title.1text.2/default";
23200       alias: "elm/genlist/item_odd/dialogue.1title.1text.2/default";
23201       alias: "elm/genlist/item_compress/dialogue.1title.1text.2/default";
23202       alias: "elm/genlist/item_compress_odd/dialogue.1title.1text.2/default";
23203       alias: "elm/layout/dialogue/dialogue.1title.1text.2";
23204       data.item: "stacking" "above";
23205       data.item: "selectraise" "on";
23206       data.item: "texts" "elm.title elm.text";
23207
23208       images {
23209           image: "00_list_img_check.png" COMP;
23210       }
23211
23212       parts {
23213          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
23214          GENLIST_PART_BOTTOM_LINE
23215          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
23216          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
23217          GENLIST_PART_DIALOGUE_ITEM
23218          part { name: "vertical_line";
23219             type: RECT;
23220             mouse_events: 0;
23221             description { state: "default" 0.0;
23222                min: 1 0;
23223                fixed: 1 0;
23224                color: GENLIST_PART_LIST_LINE_COLOR_INC;
23225                rel1 {
23226                   relative: 1.0 0.0;
23227                   to_x: "elm.title";
23228                }
23229                rel2.to_x: "elm.title";
23230                align: 0.0 0.5;
23231             }
23232          }
23233          part { name: "elm.title";
23234             type: TEXT;
23235             mouse_events: 0;
23236             scale: 1;
23237             description { state: "default" 0.0;
23238                min: GENLIST_SIZE_163_INC 0;
23239                fixed: 1 0;
23240                rel1 {
23241                   relative: 1.0  0.0;
23242                   to_x: "elm.padding.left";
23243                }
23244                rel2.to_x: "elm.padding.left";
23245                align: 0.0 0.5;
23246                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
23247                text {
23248                   font: "SLP:style=Medium";
23249                   size: GENLIST_FONT_32_INC;
23250                   min: 0 1;
23251                   align: 0.0 0.5;
23252                   text_class: "slp_medium";
23253                }
23254             }
23255          }
23256          part { name: "elm.padding.title.right";
23257             type: RECT;
23258             mouse_events: 0;
23259             scale: 1;
23260             description { state: "default" 0.0;
23261                min: GENLIST_PADDING_16_INC 0;
23262                fixed: 1 0;
23263                rel1 {
23264                    relative: 1.0 0.0;
23265                    to_x: "vertical_line";
23266                }
23267                rel2.to_x: "vertical_line";
23268                visible: 0;
23269                align: 0.0 0.5;
23270             }
23271          }
23272          part { name: "elm.text";
23273             clip_to: "disclip";
23274             type: TEXT;
23275             mouse_events: 0;
23276             scale: 1;
23277             description { state: "default" 0.0;
23278                rel1 {
23279                   relative: 1.0  0.0;
23280                   to_x: "elm.padding.title.right";
23281                }
23282                rel2.to_x: "elm.padding.title.right";
23283                align: 0.0 0.5;
23284                fixed: 1 1;
23285                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
23286                text {
23287                   font: "SLP:style=Roman";
23288                   size: GENLIST_FONT_44_INC;
23289                   min: 1 1;
23290                   max: 1 1;
23291                   align: 0.0 0.5;
23292                   text_class: "list_item";
23293                }
23294             }
23295             description { state: "selected" 0.0;
23296                inherit: "default" 0.0;
23297                color: 217 147 26 255;
23298             }
23299          }
23300          part { name: "elm.padding.text.right";
23301             type: RECT;
23302             mouse_events: 0;
23303             scale: 1;
23304             description { state: "default" 0.0;
23305                min: GENLIST_PADDING_11_INC 0;
23306                fixed: 1 0;
23307                rel1 {
23308                    relative: 1.0 0.0;
23309                    to_x: "elm.text";
23310                }
23311                rel2.to_x: "elm.text";
23312                visible: 0;
23313                align: 0.0 0.5;
23314             }
23315          }
23316          part { name: "elm.image.check";
23317             clip_to: "disclip";
23318             mouse_events: 0;
23319             scale: 1;
23320             description { state: "default" 0.0;
23321                image.normal: "00_list_img_check.png";
23322                rel1 {
23323                   relative: 1.0 0.366;
23324                   to_x: "elm.padding.text.right";
23325                }
23326                rel2 {
23327                   relative: 3.857 0.648;
23328                   to_x: "elm.padding.text.right";
23329                }
23330                visible: 0;
23331             }
23332             description { state: "selected" 0.0;
23333                inherit: "default" 0.0;
23334                visible: 1;
23335             }
23336          }
23337          GENLIST_PART_DISCLIP
23338       }
23339       programs {
23340          // signal: elm,state,%s,active
23341          //   a "check" item named %s went active
23342          // signal: elm,state,%s,passive
23343          //   a "check" item named %s went passive
23344          // default is passive
23345          program { name: "go_active";
23346             signal: "elm,state,selected";
23347             source: "elm";
23348             action: STATE_SET "selected" 0.0;
23349             target: "elm.text";
23350             target: "elm.image.check";
23351             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
23352          }
23353          program { name: "go_passive";
23354             signal: "elm,state,unselected";
23355             source: "elm";
23356             action: STATE_SET "default" 0.0;
23357             target: "elm.text";
23358             target: "elm.image.check";
23359             transition: LINEAR 0.1;
23360          }
23361          program { name: "go_disabled";
23362             signal: "elm,state,disabled";
23363             source: "elm";
23364             action: STATE_SET "disabled" 0.0;
23365             target: "disclip";
23366          }
23367          program { name: "go_enabled";
23368             signal: "elm,state,enabled";
23369             source: "elm";
23370             action: STATE_SET "default" 0.0;
23371             target: "disclip";
23372          }
23373          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
23374       }
23375    }
23376
23377    group { name: "elm/genlist/item/dialogue/1title.4text/default";
23378       alias: "elm/genlist/item_odd/dialogue/1title.4text/default";
23379       alias: "elm/genlist/item_compress/dialogue/1title.4text/default";
23380       alias: "elm/genlist/item_compress_odd/dialogue/1title.4text/default";
23381
23382       alias: "elm/genlist/item/dialogue.1title.4text/default";
23383       alias: "elm/genlist/item_odd/dialogue.1title.4text/default";
23384       alias: "elm/genlist/item_compress/dialogue.1title.4text/default";
23385       alias: "elm/genlist/item_compress_odd/dialogue.1title.4text/default";
23386
23387       alias: "elm/layout/dialogue/1title.4text";
23388
23389       data.item: "stacking" "above";
23390       data.item: "selectraise" "on";
23391       data.item: "texts" "elm.title elm.text.1 elm.text.2 elm.text.3 elm.text.4";
23392
23393       parts {
23394          GENLIST_PART_BASE( GENLIST_HEIGHT_454_INC )
23395          GENLIST_PART_BOTTOM_LINE
23396          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
23397          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
23398          GENLIST_PART_DIALOGUE_ITEM
23399          part { name: "vertical_line";
23400             type: RECT;
23401             mouse_events: 0;
23402             description { state: "default" 0.0;
23403                min: 1 0;
23404                fixed: 1 0;
23405                color: GENLIST_PART_LIST_LINE_COLOR_INC;
23406                rel1 {
23407                   relative: 1.0 0.0;
23408                   to_x: "elm.title";
23409                }
23410                rel2.to_x: "elm.title";
23411                align: 0.0 0.5;
23412             }
23413          }
23414          part { name: "center1_line";
23415             type: RECT;
23416             mouse_events: 0;
23417             description { state: "default" 0.0;
23418                min: 0 1;
23419                fixed: 0 1;
23420                color: GENLIST_PART_LIST_LINE_COLOR_INC;
23421                rel1 {
23422                   relative: 1.0 0.25;
23423                   to_x: "vertical_line";
23424                }
23425                rel2.relative: 1.0 0.25;
23426                align: 0.5 1.0;
23427             }
23428          }
23429          part { name: "center2_line";
23430             type: RECT;
23431             mouse_events: 0;
23432             description { state: "default" 0.0;
23433                min: 0 1;
23434                fixed: 0 1;
23435                color: GENLIST_PART_LIST_LINE_COLOR_INC;
23436                rel1 {
23437                   relative: 1.0 0.5;
23438                   to_x: "vertical_line";
23439                }
23440                rel2.relative: 1.0 0.5;
23441                align: 0.5 1.0;
23442             }
23443          }
23444          part { name: "center3_line";
23445             type: RECT;
23446             mouse_events: 0;
23447             description { state: "default" 0.0;
23448                min: 0 1;
23449                fixed: 0 1;
23450                color: GENLIST_PART_LIST_LINE_COLOR_INC;
23451                rel1 {
23452                   relative: 1.0 0.75;
23453                   to_x: "vertical_line";
23454                }
23455                rel2.relative: 1.0 0.75;
23456                align: 0.5 1.0;
23457             }
23458          }
23459          part { name: "elm.title";
23460             type: TEXT;
23461             mouse_events: 0;
23462             scale: 1;
23463             description { state: "default" 0.0;
23464                min: GENLIST_SIZE_163_INC 0;
23465                fixed: 1 0;
23466                rel1 {
23467                   relative: 1.0  0.0;
23468                   to_x: "elm.padding.left";
23469                }
23470                rel2.to_x: "elm.padding.left";
23471                align: 0.0 0.5;
23472                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
23473                text {
23474                   font: "SLP:style=Medium";
23475                   size: GENLIST_FONT_32_INC;
23476                   min: 0 1;
23477                   align: 0.0 0.5;
23478                   text_class: "slp_medium";
23479                }
23480             }
23481          }
23482          part { name: "elm.padding.title.right";
23483             type: RECT;
23484             mouse_events: 0;
23485             scale: 1;
23486             description { state: "default" 0.0;
23487                min: GENLIST_PADDING_16_INC 0;
23488                fixed: 1 0;
23489                rel1 {
23490                    relative: 1.0 0.0;
23491                    to_x: "elm.title";
23492                }
23493                rel2.to_x: "elm.title";
23494                visible: 0;
23495                align: 0.0 0.5;
23496             }
23497          }
23498          part { name: "elm.text.1";
23499             clip_to: "disclip";
23500             type: TEXT;
23501             mouse_events: 0;
23502             scale: 1;
23503             description { state: "default" 0.0;
23504                rel1 {
23505                   relative: 1.0 0.0;
23506                   to_x: "elm.padding.title.right";
23507                }
23508                rel2 {
23509                   relative: 0.0 0.0;
23510                   to_x: "elm.padding.right";
23511                   to_y: "center1_line";
23512                }
23513                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
23514                text {
23515                   font: "SLP:style=Roman";
23516                   size: GENLIST_FONT_44_INC;
23517                   min: 0 1;
23518                   align: 0.0 0.5;
23519                   text_class: "list_item";
23520                }
23521             }
23522          }
23523          part { name: "elm.text.2";
23524             clip_to: "disclip";
23525             type: TEXT;
23526             mouse_events: 0;
23527             scale: 1;
23528             description { state: "default" 0.0;
23529                rel1 {
23530                   relative: 1.0 0.25;
23531                   to_x: "elm.padding.title.right";
23532                }
23533                rel2 {
23534                   relative: 0.0 0.0;
23535                   to_x: "elm.padding.right";
23536                   to_y: "center2_line";
23537                }
23538                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
23539                text {
23540                   font: "SLP:style=Roman";
23541                   size: GENLIST_FONT_44_INC;
23542                   min: 0 1;
23543                   align: 0.0 0.5;
23544                   text_class: "list_item";
23545                }
23546             }
23547          }
23548          part { name: "elm.text.3";
23549             clip_to: "disclip";
23550             type: TEXT;
23551             mouse_events: 0;
23552             scale: 1;
23553             description { state: "default" 0.0;
23554                rel1 {
23555                   relative: 1.0  0.5;
23556                   to_x: "elm.padding.title.right";
23557                }
23558                rel2 {
23559                   relative: 0.0 0.0;
23560                   to_x: "elm.padding.right";
23561                   to_y: "center3_line";
23562                }
23563                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
23564                text {
23565                   font: "SLP:style=Roman";
23566                   size: GENLIST_FONT_44_INC;
23567                   min: 0 1;
23568                   align: 0.0 0.5;
23569                   text_class: "list_item";
23570                }
23571             }
23572          }
23573          part { name: "elm.text.4";
23574             clip_to: "disclip";
23575             type: TEXT;
23576             mouse_events: 0;
23577             scale: 1;
23578             description { state: "default" 0.0;
23579                rel1 {
23580                   relative: 1.0  0.75;
23581                   to_x: "elm.padding.title.right";
23582                }
23583                rel2 {
23584                   relative: 0.0 0.0;
23585                   to_x: "elm.padding.right";
23586                   to_y: "bottom_line";
23587                }
23588                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
23589                text {
23590                   font: "SLP:style=Roman";
23591                   size: GENLIST_FONT_44_INC;
23592                   min: 0 1;
23593                   align: 0.0 0.5;
23594                   text_class: "list_item";
23595                }
23596             }
23597          }
23598          GENLIST_PART_DISCLIP
23599       }
23600       programs {
23601          // signal: elm,state,%s,active
23602          //   a "check" item named %s went active
23603          // signal: elm,state,%s,passive
23604          //   a "check" item named %s went passive
23605          // default is passive
23606          /*program { name: "go_active";
23607             signal: "elm,state,selected";
23608             source: "elm";
23609             action: STATE_SET "selected" 0.0;
23610             target: "elm.text";
23611          }
23612          program { name: "go_passive";
23613             signal: "elm,state,unselected";
23614             source: "elm";
23615             action: STATE_SET "default" 0.0;
23616             target: "elm.text";
23617             transition: LINEAR 0.1;
23618          }*/
23619          program { name: "go_disabled";
23620             signal: "elm,state,disabled";
23621             source: "elm";
23622             action: STATE_SET "disabled" 0.0;
23623             target: "disclip";
23624          }
23625          program { name: "go_enabled";
23626             signal: "elm,state,enabled";
23627             source: "elm";
23628             action: STATE_SET "default" 0.0;
23629             target: "disclip";
23630          }
23631       }
23632    }
23633
23634    group { name: "elm/genlist/item/dialogue/1title.5text/default";
23635       alias: "elm/genlist/item_odd/dialogue/1title.5text/default";
23636       alias: "elm/genlist/item_compress/dialogue/1title.5text/default";
23637       alias: "elm/genlist/item_compress_odd/dialogue/1title.5text/default";
23638       alias: "elm/layout/dialogue/1title.5text";
23639       data.item: "stacking" "above";
23640       data.item: "selectraise" "on";
23641       data.item: "texts" "elm.title elm.text.1 elm.text.2 elm.text.3 elm.text.4 elm.text.5";
23642       data.item: "flips" "elm.flip.content.title elm.flip.content.1 elm.flip.content.2 elm.flip.content.3 elm.flip.content.4 elm.flip.content.5";
23643
23644       parts {
23645          GENLIST_PART_BASE( GENLIST_HEIGHT_566_INC )
23646          GENLIST_PART_BOTTOM_LINE
23647          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
23648          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
23649          GENLIST_PART_DIALOGUE_ITEM
23650          part { name: "vertical_line";
23651             type: RECT;
23652             mouse_events: 0;
23653             description { state: "default" 0.0;
23654                min: 1 0;
23655                fixed: 1 0;
23656                color: GENLIST_PART_LIST_LINE_COLOR_INC;
23657                rel1 {
23658                   relative: 1.0 0.0;
23659                   to_x: "elm.title";
23660                }
23661                rel2.to_x: "elm.title";
23662                align: 0.0 0.5;
23663             }
23664          }
23665          part { name: "center1_line";
23666             type: RECT;
23667             mouse_events: 0;
23668             description { state: "default" 0.0;
23669                min: 0 1;
23670                fixed: 0 1;
23671                color: GENLIST_PART_LIST_LINE_COLOR_INC;
23672                rel1 {
23673                   relative: 1.0 0.2;
23674                   to_x: "vertical_line";
23675                }
23676                rel2.relative: 1.0 0.2;
23677                align: 0.5 1.0;
23678             }
23679          }
23680          part { name: "center2_line";
23681             type: RECT;
23682             mouse_events: 0;
23683             description { state: "default" 0.0;
23684                min: 0 1;
23685                fixed: 0 1;
23686                color: GENLIST_PART_LIST_LINE_COLOR_INC;
23687                rel1 {
23688                   relative: 1.0 0.4;
23689                   to_x: "vertical_line";
23690                }
23691                rel2.relative: 1.0 0.4;
23692                align: 0.5 1.0;
23693             }
23694          }
23695          part { name: "center3_line";
23696             type: RECT;
23697             mouse_events: 0;
23698             description { state: "default" 0.0;
23699                min: 0 1;
23700                fixed: 0 1;
23701                color: GENLIST_PART_LIST_LINE_COLOR_INC;
23702                rel1 {
23703                   relative: 1.0 0.6;
23704                   to_x: "vertical_line";
23705                }
23706                rel2.relative: 1.0 0.6;
23707                align: 0.5 1.0;
23708             }
23709          }
23710          part { name: "center4_line";
23711             type: RECT;
23712             mouse_events: 0;
23713             description { state: "default" 0.0;
23714                min: 0 1;
23715                fixed: 0 1;
23716                color: GENLIST_PART_LIST_LINE_COLOR_INC;
23717                rel1 {
23718                   relative: 1.0 0.8;
23719                   to_x: "vertical_line";
23720                }
23721                rel2.relative: 1.0 0.8;
23722                align: 0.5 1.0;
23723             }
23724          }
23725          part { name: "elm.title";
23726             type: TEXT;
23727             mouse_events: 0;
23728             scale: 1;
23729             description { state: "default" 0.0;
23730                min: GENLIST_SIZE_163_INC 0;
23731                fixed: 1 0;
23732                rel1 {
23733                   relative: 1.0  0.0;
23734                   to_x: "elm.padding.left";
23735                }
23736                rel2.to_x: "elm.padding.left";
23737                align: 0.0 0.5;
23738                color: GENLIST_DIALOGUE_FONT_EDIT_MODE_TEXT_01_COLOR_INC;
23739                text {
23740                   font: "SLP:style=Medium";
23741                   size: GENLIST_FONT_32_INC;
23742                   min: 0 1;
23743                   align: 0.0 0.5;
23744                   text_class: "slp_medium";
23745                }
23746             }
23747             GENLIST_DESCRIPTION_FLIP_ENABLED
23748          }
23749          part { name: "elm.flip.content.title";
23750             clip_to: "disclip";
23751             type: SWALLOW;
23752             description { state: "default" 0.0;
23753                visible: 0;
23754                fixed: 1 1;
23755                rel1.to: "elm.title";
23756                rel2.to: "elm.title";
23757             }
23758             description { state: "flip_enabled" 0.0;
23759                inherit: "default" 0.0;
23760                visible: 1;
23761             }
23762          }
23763          part { name: "elm.padding.title.right";
23764             type: RECT;
23765             mouse_events: 0;
23766             scale: 1;
23767             description { state: "default" 0.0;
23768                min: GENLIST_PADDING_16_INC 0;
23769                fixed: 1 0;
23770                rel1 {
23771                    relative: 1.0 0.0;
23772                    to_x: "elm.title";
23773                }
23774                rel2.to_x: "elm.title";
23775                visible: 0;
23776                align: 0.0 0.5;
23777             }
23778          }
23779          part { name: "elm.text.1";
23780             clip_to: "disclip";
23781             type: TEXT;
23782             mouse_events: 0;
23783             scale: 1;
23784             description { state: "default" 0.0;
23785                rel1 {
23786                   relative: 1.0 0.0;
23787                   to_x: "elm.padding.title.right";
23788                }
23789                rel2 {
23790                   relative: 0.0 0.0;
23791                   to_x: "elm.padding.right";
23792                   to_y: "center1_line";
23793                }
23794                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
23795                text {
23796                   font: "SLP:style=Roman";
23797                   size: GENLIST_FONT_44_INC;
23798                   min: 0 1;
23799                   align: 0.0 0.5;
23800                   text_class: "list_item";
23801                }
23802             }
23803             GENLIST_DESCRIPTION_FLIP_ENABLED
23804          }
23805          part { name: "elm.flip.content.1";
23806             clip_to: "disclip";
23807             type: SWALLOW;
23808             description { state: "default" 0.0;
23809                visible: 0;
23810                fixed: 1 1;
23811                rel1.to: "elm.text.1";
23812                rel2.to: "elm.text.1";
23813             }
23814             description { state: "flip_enabled" 0.0;
23815                inherit: "default" 0.0;
23816                visible: 1;
23817             }
23818          }
23819          part { name: "elm.text.2";
23820             clip_to: "disclip";
23821             type: TEXT;
23822             mouse_events: 0;
23823             scale: 1;
23824             description { state: "default" 0.0;
23825                rel1 {
23826                   relative: 1.0 0.2;
23827                   to_x: "elm.padding.title.right";
23828                }
23829                rel2 {
23830                   relative: 0.0 0.0;
23831                   to_x: "elm.padding.right";
23832                   to_y: "center2_line";
23833                }
23834                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
23835                text {
23836                   font: "SLP:style=Roman";
23837                   size: GENLIST_FONT_44_INC;
23838                   min: 0 1;
23839                   align: 0.0 0.5;
23840                   text_class: "slp_roman";
23841                }
23842             }
23843             GENLIST_DESCRIPTION_FLIP_ENABLED
23844          }
23845          part { name: "elm.flip.content.2";
23846             clip_to: "disclip";
23847             type: SWALLOW;
23848             description { state: "default" 0.0;
23849                visible: 0;
23850                fixed: 1 1;
23851                rel1.to: "elm.text.2";
23852                rel2.to: "elm.text.2";
23853             }
23854             description { state: "flip_enabled" 0.0;
23855                inherit: "default" 0.0;
23856                visible: 1;
23857             }
23858          }
23859          part { name: "elm.text.3";
23860             clip_to: "disclip";
23861             type: TEXT;
23862             mouse_events: 0;
23863             scale: 1;
23864             description { state: "default" 0.0;
23865                rel1 {
23866                   relative: 1.0  0.4;
23867                   to_x: "elm.padding.title.right";
23868                }
23869                rel2 {
23870                   relative: 0.0 0.0;
23871                   to_x: "elm.padding.right";
23872                   to_y: "center3_line";
23873                }
23874                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
23875                text {
23876                   font: "SLP:style=Roman";
23877                   size: GENLIST_FONT_44_INC;
23878                   min: 0 1;
23879                   align: 0.0 0.5;
23880                   text_class: "slp_roman";
23881                }
23882             }
23883             GENLIST_DESCRIPTION_FLIP_ENABLED
23884          }
23885          part { name: "elm.flip.content.3";
23886             clip_to: "disclip";
23887             type: SWALLOW;
23888             description { state: "default" 0.0;
23889                visible: 0;
23890                fixed: 1 1;
23891                rel1.to: "elm.text.3";
23892                rel2.to: "elm.text.3";
23893             }
23894             description { state: "flip_enabled" 0.0;
23895                inherit: "default" 0.0;
23896                visible: 1;
23897             }
23898          }
23899          part { name: "elm.text.4";
23900             clip_to: "disclip";
23901             type: TEXT;
23902             mouse_events: 0;
23903             scale: 1;
23904             description { state: "default" 0.0;
23905                rel1 {
23906                   relative: 1.0 0.6;
23907                   to_x: "elm.padding.title.right";
23908                }
23909                rel2 {
23910                   relative: 0.0 0.0;
23911                   to_x: "elm.padding.right";
23912                   to_y: "center4_line";
23913                }
23914                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
23915                text {
23916                   font: "SLP:style=Roman";
23917                   size: GENLIST_FONT_44_INC;
23918                   min: 0 1;
23919                   align: 0.0 0.5;
23920                   text_class: "slp_roman";
23921                }
23922             }
23923             GENLIST_DESCRIPTION_FLIP_ENABLED
23924          }
23925          part { name: "elm.flip.content.4";
23926             clip_to: "disclip";
23927             type: SWALLOW;
23928             description { state: "default" 0.0;
23929                visible: 0;
23930                fixed: 1 1;
23931                rel1.to: "elm.text.4";
23932                rel2.to: "elm.text.4";
23933             }
23934             description { state: "flip_enabled" 0.0;
23935                inherit: "default" 0.0;
23936                visible: 1;
23937             }
23938          }
23939          part { name: "elm.text.5";
23940             clip_to: "disclip";
23941             type: TEXT;
23942             mouse_events: 0;
23943             scale: 1;
23944             description { state: "default" 0.0;
23945                rel1 {
23946                   relative: 1.0  0.8;
23947                   to_x: "elm.padding.title.right";
23948                }
23949                rel2 {
23950                   relative: 0.0 0.0;
23951                   to_x: "elm.padding.right";
23952                   to_y: "bottom_line";
23953                }
23954                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
23955                text {
23956                   font: "SLP:style=Roman";
23957                   size: GENLIST_FONT_44_INC;
23958                   min: 0 1;
23959                   align: 0.0 0.5;
23960                   text_class: "slp_roman";
23961                }
23962             }
23963             GENLIST_DESCRIPTION_FLIP_ENABLED
23964          }
23965          part { name: "elm.flip.content.5";
23966             clip_to: "disclip";
23967             type: SWALLOW;
23968             description { state: "default" 0.0;
23969                visible: 0;
23970                fixed: 1 1;
23971                rel1.to: "elm.text.5";
23972                rel2.to: "elm.text.5";
23973             }
23974             description { state: "flip_enabled" 0.0;
23975                inherit: "default" 0.0;
23976                visible: 1;
23977             }
23978          }
23979          GENLIST_PART_DISCLIP
23980       }
23981       programs {
23982          // signal: elm,state,%s,active
23983          //   a "check" item named %s went active
23984          // signal: elm,state,%s,passive
23985          //   a "check" item named %s went passive
23986          // default is passive
23987          /*program { name: "go_active";
23988             signal: "elm,state,selected";
23989             source: "elm";
23990             action: STATE_SET "selected" 0.0;
23991             target: "elm.text";
23992          }
23993          program { name: "go_passive";
23994             signal: "elm,state,unselected";
23995             source: "elm";
23996             action: STATE_SET "default" 0.0;
23997             target: "elm.text";
23998             transition: LINEAR 0.1;
23999          }*/
24000          program { name: "go_disabled";
24001             signal: "elm,state,disabled";
24002             source: "elm";
24003             action: STATE_SET "disabled" 0.0;
24004             target: "disclip";
24005          }
24006          program { name: "go_enabled";
24007             signal: "elm,state,enabled";
24008             source: "elm";
24009             action: STATE_SET "default" 0.0;
24010             target: "disclip";
24011          }
24012          program { name: "flip_enabled";
24013             signal: "elm,state,flip,enabled";
24014             source: "elm";
24015             action: STATE_SET "flip_enabled" 0.0;
24016             target: "elm.title";
24017             target: "elm.text.1";
24018             target: "elm.text.2";
24019             target: "elm.text.3";
24020             target: "elm.text.4";
24021             target: "elm.text.5";
24022             target: "elm.flip.content.title";
24023             target: "elm.flip.content.1";
24024             target: "elm.flip.content.2";
24025             target: "elm.flip.content.3";
24026             target: "elm.flip.content.4";
24027             target: "elm.flip.content.5";
24028          }
24029          program { name: "flip_disabled";
24030             signal: "elm,state,flip,disabled";
24031             source: "elm";
24032             action: STATE_SET "default" 0.0;
24033             target: "elm.title";
24034             target: "elm.text.1";
24035             target: "elm.text.2";
24036             target: "elm.text.3";
24037             target: "elm.text.4";
24038             target: "elm.text.5";
24039             target: "elm.flip.content.title";
24040             target: "elm.flip.content.1";
24041             target: "elm.flip.content.2";
24042             target: "elm.flip.content.3";
24043             target: "elm.flip.content.4";
24044             target: "elm.flip.content.5";
24045          }
24046       }
24047    }
24048
24049 /* extended item of bg/2text.1icon.3 */
24050    group { name: "elm/genlist/item/dialogue/bg/1text/default";
24051       alias: "elm/genlist/item_odd/dialogue/bg/1text/default";
24052       alias: "elm/genlist/item_compress/dialogue/bg/1text/default";
24053       alias: "elm/genlist/item_compress_odd/dialogue/bg/1text/default";
24054       alias: "elm/layout/dialogue/bg/1text";
24055       data.item: "stacking" "above";
24056       data.item: "selectraise" "on";
24057       data.item: "texts" "elm.text";
24058       data.item: "flips" "elm.flip.content";
24059       parts {
24060          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_113_INC )
24061          GENLIST_PART_PADDING_TOP( 0 )
24062          GENLIST_PART_PADDING_BOTTOM( 0 )
24063          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
24064          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
24065          part { name: "elm.icon.bg";
24066             type: RECT;
24067             scale: 1;
24068             description { state: "default" 0.0;
24069                min: GENLIST_SIZE_160_INC 0;
24070                fixed: 1 0;
24071                align: 0.0 0.5;
24072                rel1 {
24073                   relative: 1.0 0.5;
24074                   to_x: "elm.padding.left";
24075                }
24076                rel2 {
24077                   relative: 1.0 0.5;
24078                   to_x: "elm.padding.left";
24079                }
24080                color: 0 0 0 0;
24081             }
24082          }
24083          part { name: "elm.padding.icon.right";
24084             type: RECT;
24085             mouse_events: 0;
24086             scale: 1;
24087             description { state: "default" 0.0;
24088                min: GENLIST_SIZE_16_INC 0;
24089                fixed: 1 0;
24090                rel1 {
24091                    relative: 1.0 0.0;
24092                    to_x: "elm.icon.bg";
24093                }
24094                rel2.to_x: "elm.icon.bg";
24095                color: GENLIST_PART_LIST_LINE_COLOR_INC;
24096                align: 0.0 0.5;
24097             }
24098          }
24099          part { name: "elm.padding.text.left";
24100             type: RECT;
24101             mouse_events: 0;
24102             scale: 1;
24103             description { state: "default" 0.0;
24104                min: GENLIST_SIZE_16_INC 0;
24105                fixed: 1 0;
24106                rel1 {
24107                    relative: 1.0 1.0;
24108                    to_x: "elm.padding.icon.right";
24109                    to_y: "elm.padding.top";
24110                }
24111                rel2.to_x: "elm.padding.icon.right";
24112                visible: 0;
24113                align: 0.0 0.5;
24114             }
24115          }
24116          part { name: "vertical_line";
24117             type: RECT;
24118             mouse_events: 0;
24119             description { state: "default" 0.0;
24120                visible: 0;
24121                rel1 {
24122                   relative: 1.0 0.0;
24123                   to_x: "elm.padding.icon.right";
24124                }
24125                rel2.to_x: "elm.padding.icon.right";
24126                align: 0.0 0.5;
24127             }
24128          }
24129          part { name: "elm.text.bg";
24130             clip_to: "disclip";
24131             type: RECT;
24132             mouse_events: 0;
24133             scale: 1;
24134             description { state: "default" 0.0;
24135                rel1 {
24136                   relative: 1.0 0.0;
24137                   to_x: "elm.padding.icon.right";
24138                }
24139                rel2 {
24140                   relative: 1.0 1.0;
24141                   to_x: "elm.padding.right";
24142                }
24143                color: GENLIST_PART_BG_COLOR_INC;
24144             }
24145          }
24146          part { name: "elm.text";
24147             clip_to: "disclip";
24148             type: TEXT;
24149             mouse_events: 0;
24150             scale: 1;
24151             description { state: "default" 0.0;
24152                rel1 {
24153                   relative: 1.0 0.0;
24154                   to_x: "elm.padding.text.left";
24155                   to_y: "elm.text.bg";
24156                }
24157                rel2 {
24158                   relative: 0.0 1.0;
24159                   to_x: "elm.padding.right";
24160                   to_y: "elm.text.bg";
24161                }
24162                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
24163                text {
24164                   font: "SLP:style=Roman";
24165                   size: GENLIST_FONT_44_INC;
24166                   min: 0 1;
24167                   align: 0.0 0.5;
24168                   text_class: "list_item";
24169                }
24170             }
24171             GENLIST_DESCRIPTION_FLIP_ENABLED
24172          }
24173          part { name: "elm.flip.content";
24174             clip_to: "disclip";
24175             type: SWALLOW;
24176             mouse_events: 1;
24177             scale: 1;
24178             description { state: "default" 0.0;
24179                fixed: 1 1;
24180                rel1 {
24181                   relative: 1.0 0.0;
24182                   to_x: "elm.padding.text.left";
24183                   to_y: "elm.text.bg";
24184                }
24185                rel2 {
24186                   relative: 0.0 1.0;
24187                   to_x: "elm.padding.right";
24188                   to_y: "elm.text.bg";
24189                }
24190                visible: 0;
24191             }
24192             description { state: "flip_enabled" 0.0;
24193                inherit: "default" 0.0;
24194                visible: 1;
24195             }
24196          }
24197          GENLIST_PART_DISCLIP
24198       }
24199       programs {
24200          // signal: elm,state,%s,active
24201          //   a "check" item named %s went active
24202          // signal: elm,state,%s,passive
24203          //   a "check" item named %s went passive
24204          // default is passive
24205          /*program { name: "go_active";
24206             signal: "elm,state,selected";
24207             source: "elm";
24208             action: STATE_SET "selected" 0.0;
24209             target: "elm.text";
24210          }
24211          program { name: "go_passive";
24212             signal: "elm,state,unselected";
24213             source: "elm";
24214             action: STATE_SET "default" 0.0;
24215             target: "elm.text";
24216             transition: LINEAR 0.1;
24217          }*/
24218          program { name: "go_disabled";
24219             signal: "elm,state,disabled";
24220             source: "elm";
24221             action: STATE_SET "disabled" 0.0;
24222             target: "disclip";
24223          }
24224          program { name: "go_enabled";
24225             signal: "elm,state,enabled";
24226             source: "elm";
24227             action: STATE_SET "default" 0.0;
24228             target: "disclip";
24229          }
24230          program { name: "flip_enabled";
24231             signal: "elm,state,flip,enabled";
24232             source: "elm";
24233             action: STATE_SET "flip_enabled" 0.0;
24234             target: "elm.text";
24235             target: "elm.flip.content";
24236          }
24237          program { name: "flip_disabled";
24238             signal: "elm,state,flip,disabled";
24239             source: "elm";
24240             action: STATE_SET "default" 0.0;
24241             target: "elm.text";
24242             target: "elm.flip.content";
24243          }
24244       }
24245    }
24246    // 2.2.2.38
24247    group { name: "elm/genlist/item/4text.1icon.1/default";
24248       alias: "elm/genlist/item_odd/4text.1icon.1/default";
24249       alias: "elm/genlist/item_compress/4text.1icon.1/default";
24250       alias: "elm/genlist/item_compress_odd/4text.1icon.1/default";
24251       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
24252       data.item: "contents" "elm.icon.1";
24253       data.item: "stacking" "above";
24254       data.item: "selectraise" "on";
24255       data.item: "flips" "elm.flip.content";
24256       images {
24257          image: "00_winset_list_bubble_bg.png" COMP;
24258       }
24259       parts {
24260          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
24261          GENLIST_PART_BG_IMAGE
24262          GENLIST_PART_BOTTOM_LINE
24263          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
24264          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
24265          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
24266          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
24267
24268          part { name: "elm.text.1";
24269             clip_to: "disclip";
24270             type: TEXT;
24271             scale: 1;
24272             description { state: "default" 0.0;
24273                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
24274                fixed: 0 1;
24275                min: 0 GENLIST_SIZE_SLIDE_60_INC;
24276                rel1 { relative: 1.0 1.0;
24277                   to_x: "elm.padding.left";
24278                   to_y: "elm.padding.top";
24279                }
24280                rel2 { relative: 0.0 1.0;
24281                   to_x: "elm.padding.text1.right";
24282                   to_y: "elm.padding.text1.right";
24283                }
24284                text {
24285                   font: "SLP:style=Roman";
24286                   size: GENLIST_FONT_44_INC;
24287                   min: 0 1;
24288                   align: 0.0 0.5;
24289                   text_class: "list_item";
24290                }
24291             }
24292             description { state: "read" 0.0;
24293                inherit: "default" 0.0;
24294                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_READ_COLOR_INC;
24295             }
24296             description { state: "selected" 0.0;
24297                inherit: "default" 0.0;
24298                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_FOCUS_COLOR_INC;
24299             }
24300             GENLIST_DESCRIPTION_FLIP_ENABLED
24301          }
24302          part { name: "elm.padding.text1.right";
24303             clip_to: "disclip";
24304             type: RECT;
24305             scale: 1;
24306             description { state: "default" 0.0;
24307                fixed: 1 1 ;
24308                align: 1.0 0.0;
24309                visible: 0;
24310                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24311                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24312                rel1 { relative: 0.0 1.0;
24313                   to_x: "elm.text.2";
24314                   to_y: "elm.padding.top";
24315                }
24316                rel2 { relative: 0.0 1.0;
24317                   to_x: "elm.text.2";
24318                   to_y: "elm.padding.top";
24319                }
24320             }
24321          }
24322          part { name: "elm.text.2";
24323             clip_to: "disclip";
24324             type: TEXT;
24325             scale: 1;
24326             description { state: "default" 0.0;
24327                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
24328                fixed: 0 1;
24329                align: 1.0 0.0;
24330                min: 0 GENLIST_SIZE_SLIDE_60_INC;
24331                rel1 { relative: 0.0 1.0;
24332                   to_x: "elm.padding.right";
24333                   to_y: "elm.padding.top";
24334                }
24335                rel2 { relative: 0.0 1.0;
24336                  to_x: "elm.padding.right";
24337                  to_y: "elm.padding.top";
24338                }
24339                text {
24340                   font: "SLP:style=Medium";
24341                   size: GENLIST_FONT_32_INC;
24342                   min: 1 1;
24343                   align: 0.5 0.5;
24344                   text_class: "slp_medium";
24345               }
24346             }
24347             description { state: "selected" 0.0;
24348                inherit: "default" 0.0;
24349                color: GENLIST_PART_FONT_LIST_SUB_TEXT_FOCUS_COLOR_INC;
24350             }
24351             GENLIST_DESCRIPTION_FLIP_ENABLED
24352          }
24353          part { name: "elm.bubble";
24354             type: IMAGE;
24355             description{ state: "default" 0.0;
24356                fixed: 0 1;
24357                min: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
24358                rel1 { relative: 0 0;
24359                   to_x: "elm.padding.bubble.text4.left";
24360                   to_y: "elm.padding.bubble.text4.left";
24361                }
24362                rel2 { relative: 1 1;
24363                   to_x: "elm.padding.bubble.text4.right";
24364                   to_y: "elm.padding.bubble.text4.right";
24365                }
24366                image {
24367                   normal: "00_winset_list_bubble_bg.png";
24368                   border:  6 6 0 0;
24369                }
24370             }
24371          }
24372          part { name: "elm.padding.bubble.text4.left";
24373             type: RECT;
24374             scale: 1;
24375             description { state: "default" 0.0;
24376                fixed: 1 1;
24377                align: 1 0;
24378                visible: 0;
24379                min: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
24380                max: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
24381                rel1 { relative: 0 1;
24382                   to_x: "elm.text.4";
24383                   to_y: "elm.text.2";
24384                }
24385                rel2 { relative: 0 0;
24386                   to_x: "elm.text.4";
24387                   to_y: "elm.padding.bottom";
24388                }
24389
24390             }
24391          }
24392          part { name: "elm.padding.bubble.text4.right";
24393             type: RECT;
24394             scale: 1;
24395             description { state: "default" 0.0;
24396                fixed: 1 1;
24397                align: 1 0;
24398                visible: 0;
24399                min: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
24400                max: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
24401                rel1 { relative: 0 1;
24402                   to_x: "elm.padding.right";
24403                   to_y: "elm.text.2";
24404                }
24405                rel2 { relative: 0 0;
24406                   to_x: "elm.padding.right";
24407                   to_y: "elm.padding.bottom";
24408                }
24409             }
24410          }
24411          part { name: "elm.text.4";
24412             clip_to: "disclip";
24413             type: TEXT;
24414             scale: 1;
24415             description { state: "default" 0.0;
24416                color: GENLIST_PART_FONT_LIST_BUBBLE_TEXT_COLOR_INC;
24417                fixed: 0 1;
24418                align: 1.0 0.0;
24419                min: GENLIST_SIZE_28_INC GENLIST_SIZE_48_INC;
24420                rel1 { relative: 0 1;
24421                   to_x: "elm.padding.bubble.text4.right";
24422                   to_y: "elm.text.2";
24423                }
24424                rel2 { relative: 0 0;
24425                   to_x: "elm.padding.bubble.text4.right";
24426                   to_y: "elm.padding.bottom";
24427                }
24428                text {
24429                   font: "SLP:style=Medium";
24430                   size: GENLIST_FONT_32_INC;
24431                   min: 1 1;
24432                   align: 0.5 0.5;
24433                   text_class: "slp_medium";
24434                }
24435             }
24436             GENLIST_DESCRIPTION_FLIP_ENABLED
24437          }
24438
24439          part { name: "elm.padding.icon1.right";
24440             clip_to: "disclip";
24441             type: RECT;
24442             scale: 1;
24443             description { state: "default" 0.0;
24444                fixed: 1 1;
24445                align: 1.0 0.0;
24446                visible: 0;
24447                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24448                rel1 { relative: 0 0;
24449                   to_x: "elm.padding.bubble.text4.left";
24450                   to_y: "elm.padding.bubble.text4.left";
24451                }
24452                rel2 { relative: 0 0;
24453                   to_x: "elm.padding.bubble.text4.left";
24454                   to_y: "elm.padding.bottom";
24455                }
24456             }
24457          }
24458          part { name: "elm.icon.1";
24459             clip_to: "disclip";
24460             type: SWALLOW;
24461             scale: 1;
24462             description { state: "default" 0.0;
24463                color: 0 255 255 255;
24464                fixed: 1 1;
24465                align: 1.0 0.0;
24466                min: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
24467                max: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
24468                rel1 { relative: 0 0;
24469                   to_x: "elm.padding.icon1.right";
24470                   to_y: "elm.padding.icon1.right";
24471                }
24472                rel2 { relative: 0 1;
24473                   to_x: "elm.padding.icon1.right";
24474                   to_y: "elm.padding.icon1.right";
24475                }
24476             }
24477          }
24478          part { name: "elm.padding.text3.right";
24479             clip_to: "disclip";
24480             type: RECT;
24481             scale: 1;
24482             description { state: "default" 0.0;
24483                fixed: 1 1;
24484                align: 1.0 0.0;
24485                visible: 0;
24486                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24487                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24488                rel1 { relative: 0 0;
24489                   to_x: "elm.icon.1";
24490                   to_y: "elm.icon.1";
24491                }
24492                rel2 { relative: 0 0;
24493                   to_x: "elm.icon.1";
24494                   to_y: "elm.padding.bottom";
24495                }
24496             }
24497          }
24498          part { name: "elm.text.3";
24499             clip_to: "disclip";
24500             type: TEXT;
24501             scale: 1;
24502             description { state: "default" 0.0;
24503                color: GENLIST_PART_FONT_NAME_TEXT_COLOR_INC;
24504                fixed: 0 1;
24505                align: 0.0 0.0;
24506                min: 0 GENLIST_SIZE_48_INC;
24507                rel1 { relative: 1 1;
24508                   to_x: "elm.padding.left";
24509                   to_y: "elm.text.1";
24510                }
24511                rel2 { relative: 0 1;
24512                   to_x: "elm.padding.text3.right";
24513                   to_y: "elm.padding.text3.right";
24514                }
24515                text {
24516                   font: "SLP:style=Medium";
24517                   size: GENLIST_FONT_32_INC;
24518                   min: 0 1;
24519                   align: 0.0 0.5;
24520                   text_class: "slp_medium";
24521                }
24522             }
24523             description { state: "selected" 0.0;
24524                inherit: "default" 0.0;
24525                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
24526             }
24527             GENLIST_DESCRIPTION_FLIP_ENABLED
24528          }
24529          GENLIST_PART_FLIP
24530          GENLIST_PART_DISCLIP
24531       }
24532       programs {
24533          // signal: elm,state,%s,active
24534          //   a "check" item named %s went active
24535          // signal: elm,state,%s,passive
24536          //   a "check" item named %s went passive
24537          // default is passive
24538          program { name: "go_active";
24539             signal: "elm,state,selected";
24540             source: "elm";
24541             action: STATE_SET "selected" 0.0;
24542             target: "elm.text.1";
24543             target: "elm.text.2";
24544          }
24545          program { name: "go_passive";
24546             signal: "elm,state,unselected";
24547             source: "elm";
24548             action: STATE_SET "default" 0.0;
24549             target: "elm.text.1";
24550             target: "elm.text.2";
24551             transition: LINEAR 0.1;
24552          }
24553          program { name: "go_read";
24554             signal: "elm,state,read";
24555             source: "elm";
24556             action: STATE_SET "read" 0.0;
24557             target: "elm.text.1";
24558          }
24559          program { name: "go_unread";
24560             signal: "elm,state,unread";
24561             source: "elm";
24562             action: STATE_SET "default" 0.0;
24563             target: "elm.text.1";
24564          }
24565       }
24566    }
24567    // 2.2.2.39
24568    group { name: "elm/genlist/item/4text.1icon.2/default";
24569       alias: "elm/genlist/item_odd/4text.1icon.2/default";
24570       alias: "elm/genlist/item_compress/4text.1icon.2/default";
24571       alias: "elm/genlist/item_compress_odd/4text.1icon.2/default";
24572       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
24573       data.item: "contents" "elm.icon.1";
24574       data.item: "stacking" "above";
24575       data.item: "selectraise" "on";
24576       data.item: "flips" "elm.flip.content";
24577       parts {
24578          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
24579          GENLIST_PART_BG_IMAGE
24580          GENLIST_PART_BOTTOM_LINE
24581          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
24582          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
24583          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
24584          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
24585
24586          part { name: "elm.text.1";
24587             clip_to: "disclip";
24588             type: TEXT;
24589             scale: 1;
24590             description { state: "default" 0.0;
24591                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
24592                fixed: 0 1;
24593                min: 0 GENLIST_SIZE_SLIDE_60_INC;
24594                rel1 { relative: 1.0 1.0;
24595                   to_x: "elm.padding.left";
24596                   to_y: "elm.padding.top";
24597                }
24598                rel2 { relative: 0.0 1.0;
24599                   to_x: "elm.padding.text1.right";
24600                   to_y: "elm.padding.text1.right";
24601                }
24602                text {
24603                   font: "SLP:style=Roman";
24604                   size: GENLIST_FONT_44_INC;
24605                   min: 0 1;
24606                   align: 0.0 0.5;
24607                   text_class: "list_item";
24608                }
24609             }
24610             description { state: "read" 0.0;
24611                inherit: "default" 0.0;
24612                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_READ_COLOR_INC;
24613             }
24614             description { state: "selected" 0.0;
24615                inherit: "default" 0.0;
24616                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_FOCUS_COLOR_INC;
24617             }
24618             GENLIST_DESCRIPTION_FLIP_ENABLED
24619          }
24620          part { name: "elm.padding.text1.right";
24621             clip_to: "disclip";
24622             type: RECT;
24623             scale: 1;
24624             description { state: "default" 0.0;
24625                fixed: 1 1 ;
24626                align: 1.0 0.0;
24627                visible: 0;
24628                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24629                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24630                rel1 { relative: 0.0 1.0;
24631                   to_x: "elm.text.2";
24632                   to_y: "elm.padding.top";
24633                }
24634                rel2 { relative: 0.0 1.0;
24635                   to_x: "elm.text.2";
24636                   to_y: "elm.padding.top";
24637                }
24638             }
24639          }
24640          part { name: "elm.text.2";
24641             clip_to: "disclip";
24642             type: TEXT;
24643             scale: 1;
24644             description { state: "default" 0.0;
24645                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
24646                fixed: 0 1;
24647                align: 1.0 0.0;
24648                min: 0 GENLIST_SIZE_SLIDE_60_INC;
24649                rel1 { relative: 0.0 1.0;
24650                   to_x: "elm.padding.right";
24651                   to_y: "elm.padding.top";
24652                }
24653                rel2 { relative: 0.0 1.0;
24654                  to_x: "elm.padding.right";
24655                  to_y: "elm.padding.top";
24656                }
24657                text {
24658                   font: "SLP:style=Medium";
24659                   size: GENLIST_FONT_32_INC;
24660                   min: 1 1;
24661                   align: 0.5 0.5;
24662                   text_class: "slp_medium";
24663               }
24664             }
24665             description { state: "selected" 0.0;
24666                inherit: "default" 0.0;
24667                color: GENLIST_PART_FONT_LIST_SUB_TEXT_FOCUS_COLOR_INC;
24668             }
24669             GENLIST_DESCRIPTION_FLIP_ENABLED
24670          }
24671          part { name: "elm.text.4";
24672             clip_to: "disclip";
24673             type: TEXT;
24674             scale: 1;
24675             description { state: "default" 0.0;
24676                color: GENLIST_PART_FONT_LIST_BUBBLE_TEXT_COLOR_INC;
24677                fixed: 0 1;
24678                align: 1.0 0.0;
24679                min: 0 GENLIST_SIZE_48_INC;
24680                rel1 { relative: 0 1;
24681                   to_x: "elm.padding.right";
24682                   to_y: "elm.text.2";
24683                }
24684                rel2 { relative: 0 0;
24685                   to_x: "elm.padding.right";
24686                   to_y: "elm.padding.bottom";
24687                }
24688                text {
24689                   font: "SLP:style=Medium";
24690                   size: GENLIST_FONT_32_INC;
24691                   min: 1 1;
24692                   align: 0.5 0.5;
24693                   text_class: "slp_medium";
24694                }
24695             }
24696             GENLIST_DESCRIPTION_FLIP_ENABLED
24697          }
24698          part { name: "elm.padding.icon1.right";
24699             clip_to: "disclip";
24700             type: RECT;
24701             scale: 1;
24702             description { state: "default" 0.0;
24703                fixed: 1 1;
24704                align: 1.0 0.0;
24705                visible: 0;
24706                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24707                rel1 { relative: 0 0;
24708                   to_x: "elm.text.4";
24709                   to_y: "elm.text.4";
24710                }
24711                rel2 { relative: 0 0;
24712                   to_x: "elm.text.4";
24713                   to_y: "elm.padding.bottom";
24714                }
24715             }
24716          }
24717          part { name: "elm.icon.1";
24718             clip_to: "disclip";
24719             type: SWALLOW;
24720             scale: 1;
24721             description { state: "default" 0.0;
24722                color: 0 255 255 255;
24723                fixed: 1 1;
24724                align: 1.0 0.0;
24725                min: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
24726                max: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
24727                rel1 { relative: 0 0;
24728                   to_x: "elm.padding.icon1.right";
24729                   to_y: "elm.padding.icon1.right";
24730                }
24731                rel2 { relative: 0 1;
24732                   to_x: "elm.padding.icon1.right";
24733                   to_y: "elm.padding.icon1.right";
24734                }
24735             }
24736          }
24737          part { name: "elm.padding.text3.right";
24738             clip_to: "disclip";
24739             type: RECT;
24740             scale: 1;
24741             description { state: "default" 0.0;
24742                fixed: 1 1;
24743                align: 1.0 0.0;
24744                visible: 0;
24745                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24746                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24747                rel1 { relative: 0 0;
24748                   to_x: "elm.icon.1";
24749                   to_y: "elm.icon.1";
24750                }
24751                rel2 { relative: 0 0;
24752                   to_x: "elm.icon.1";
24753                   to_y: "elm.padding.bottom";
24754                }
24755             }
24756          }
24757          part { name: "elm.text.3";
24758             clip_to: "disclip";
24759             type: TEXT;
24760             scale: 1;
24761             description { state: "default" 0.0;
24762                color: GENLIST_PART_FONT_NAME_TEXT_COLOR_INC;
24763                fixed: 0 1;
24764                align: 0.0 0.0;
24765                min: 0 GENLIST_SIZE_48_INC;
24766                rel1 { relative: 1 1;
24767                   to_x: "elm.padding.left";
24768                   to_y: "elm.text.1";
24769                }
24770                rel2 { relative: 0 1;
24771                   to_x: "elm.padding.text3.right";
24772                   to_y: "elm.padding.text3.right";
24773                }
24774                text {
24775                   font: "SLP:style=Medium";
24776                   size: GENLIST_FONT_32_INC;
24777                   min: 0 1;
24778                   align: 0.0 0.5;
24779                   text_class: "slp_medium";
24780                }
24781             }
24782             description { state: "selected" 0.0;
24783                inherit: "default" 0.0;
24784                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
24785             }
24786             GENLIST_DESCRIPTION_FLIP_ENABLED
24787          }
24788          GENLIST_PART_FLIP
24789          GENLIST_PART_DISCLIP
24790       }
24791       programs {
24792          // signal: elm,state,%s,active
24793          //   a "check" item named %s went active
24794          // signal: elm,state,%s,passive
24795          //   a "check" item named %s went passive
24796          // default is passive
24797          program { name: "go_active";
24798             signal: "elm,state,selected";
24799             source: "elm";
24800             action: STATE_SET "selected" 0.0;
24801             target: "elm.text.1";
24802             target: "elm.text.2";
24803          }
24804          program { name: "go_passive";
24805             signal: "elm,state,unselected";
24806             source: "elm";
24807             action: STATE_SET "default" 0.0;
24808             target: "elm.text.1";
24809             target: "elm.text.2";
24810             transition: LINEAR 0.1;
24811          }
24812          program { name: "go_read";
24813             signal: "elm,state,read";
24814             source: "elm";
24815             action: STATE_SET "read" 0.0;
24816             target: "elm.text.1";
24817          }
24818          program { name: "go_unread";
24819             signal: "elm,state,unread";
24820             source: "elm";
24821             action: STATE_SET "default" 0.0;
24822             target: "elm.text.1";
24823          }
24824       }
24825    }
24826    // 2.2.2.40
24827    group { name: "elm/genlist/item/4text.1/default";
24828       alias: "elm/genlist/item_odd/4text.1/default";
24829       alias: "elm/genlist/item_compress/4text.1/default";
24830       alias: "elm/genlist/item_compress_odd/4text.1/default";
24831       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
24832       data.item: "stacking" "above";
24833       data.item: "selectraise" "on";
24834       data.item: "flips" "elm.flip.content";
24835       images {
24836          image: "00_winset_list_bubble_bg.png" COMP;
24837       }
24838       parts {
24839          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
24840          GENLIST_PART_BG_IMAGE
24841          GENLIST_PART_BOTTOM_LINE
24842          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
24843          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
24844          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
24845          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
24846
24847          part { name: "elm.text.1";
24848             clip_to: "disclip";
24849             type: TEXT;
24850             scale: 1;
24851             description { state: "default" 0.0;
24852                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
24853                fixed: 0 1;
24854                min: 0 GENLIST_SIZE_SLIDE_60_INC;
24855                rel1 { relative: 1.0 1.0;
24856                   to_x: "elm.padding.left";
24857                   to_y: "elm.padding.top";
24858                }
24859                rel2 { relative: 0.0 1.0;
24860                   to_x: "elm.padding.text1.right";
24861                   to_y: "elm.padding.text1.right";
24862                }
24863                text {
24864                   font: "SLP:style=Roman";
24865                   size: GENLIST_FONT_44_INC;
24866                   min: 0 1;
24867                   align: 0.0 0.5;
24868                   text_class: "list_item";
24869                }
24870             }
24871             description { state: "read" 0.0;
24872                inherit: "default" 0.0;
24873                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_READ_COLOR_INC;
24874             }
24875             description { state: "selected" 0.0;
24876                inherit: "default" 0.0;
24877                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_FOCUS_COLOR_INC;
24878             }
24879             GENLIST_DESCRIPTION_FLIP_ENABLED
24880          }
24881          part { name: "elm.padding.text1.right";
24882             clip_to: "disclip";
24883             type: RECT;
24884             scale: 1;
24885             description { state: "default" 0.0;
24886                fixed: 1 1 ;
24887                align: 1.0 0.0;
24888                visible: 0;
24889                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24890                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24891                rel1 { relative: 0.0 1.0;
24892                   to_x: "elm.text.2";
24893                   to_y: "elm.padding.top";
24894                }
24895                rel2 { relative: 0.0 1.0;
24896                   to_x: "elm.text.2";
24897                   to_y: "elm.padding.top";
24898                }
24899             }
24900          }
24901          part { name: "elm.text.2";
24902             clip_to: "disclip";
24903             type: TEXT;
24904             scale: 1;
24905             description { state: "default" 0.0;
24906                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
24907                fixed: 0 1;
24908                align: 1.0 0.0;
24909                min: 0 GENLIST_SIZE_SLIDE_60_INC;
24910                rel1 { relative: 0.0 1.0;
24911                   to_x: "elm.padding.right";
24912                   to_y: "elm.padding.top";
24913                }
24914                rel2 { relative: 0.0 1.0;
24915                  to_x: "elm.padding.right";
24916                  to_y: "elm.padding.top";
24917                }
24918                text {
24919                   font: "SLP:style=Medium";
24920                   size: GENLIST_FONT_32_INC;
24921                   min: 1 1;
24922                   align: 0.5 0.5;
24923                   text_class: "slp_medium";
24924               }
24925             }
24926             description { state: "selected" 0.0;
24927                inherit: "default" 0.0;
24928                color: GENLIST_PART_FONT_LIST_SUB_TEXT_FOCUS_COLOR_INC;
24929             }
24930             GENLIST_DESCRIPTION_FLIP_ENABLED
24931          }
24932          part { name: "elm.bubble";
24933             type: IMAGE;
24934             description{ state: "default" 0.0;
24935                fixed: 0 1;
24936                min: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
24937                rel1 { relative: 0 0;
24938                   to_x: "elm.padding.bubble.text4.left";
24939                   to_y: "elm.padding.bubble.text4.left";
24940                }
24941                rel2 { relative: 1 1;
24942                   to_x: "elm.padding.bubble.text4.right";
24943                   to_y: "elm.padding.bubble.text4.right";
24944                }
24945                image {
24946                   normal: "00_winset_list_bubble_bg.png";
24947                   border:  6 6 0 0;
24948                }
24949             }
24950          }
24951          part { name: "elm.padding.bubble.text4.left";
24952             type: RECT;
24953             scale: 1;
24954             description { state: "default" 0.0;
24955                fixed: 1 1;
24956                align: 1 0;
24957                visible: 0;
24958                min: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
24959                max: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
24960                rel1 { relative: 0 1;
24961                   to_x: "elm.text.4";
24962                   to_y: "elm.text.2";
24963                }
24964                rel2 { relative: 0 0;
24965                   to_x: "elm.text.4";
24966                   to_y: "elm.padding.bottom";
24967                }
24968
24969             }
24970          }
24971          part { name: "elm.padding.bubble.text4.right";
24972             type: RECT;
24973             scale: 1;
24974             description { state: "default" 0.0;
24975                fixed: 1 1;
24976                align: 1 0;
24977                visible: 0;
24978                min: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
24979                max: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
24980                rel1 { relative: 0 1;
24981                   to_x: "elm.padding.right";
24982                   to_y: "elm.text.2";
24983                }
24984                rel2 { relative: 0 0;
24985                   to_x: "elm.padding.right";
24986                   to_y: "elm.padding.bottom";
24987                }
24988             }
24989          }
24990          part { name: "elm.text.4";
24991             clip_to: "disclip";
24992             type: TEXT;
24993             scale: 1;
24994             description { state: "default" 0.0;
24995                color: GENLIST_PART_FONT_LIST_BUBBLE_TEXT_COLOR_INC;
24996                fixed: 0 1;
24997                align: 1.0 0.0;
24998                min: GENLIST_SIZE_28_INC GENLIST_SIZE_48_INC;
24999                rel1 { relative: 0 1;
25000                   to_x: "elm.padding.bubble.text4.right";
25001                   to_y: "elm.text.2";
25002                }
25003                rel2 { relative: 0 0;
25004                   to_x: "elm.padding.bubble.text4.right";
25005                   to_y: "elm.padding.bottom";
25006                }
25007                text {
25008                   font: "SLP:style=Medium";
25009                   size: GENLIST_FONT_32_INC;
25010                   min: 1 1;
25011                   align: 0.5 0.5;
25012                   text_class: "slp_medium";
25013                }
25014             }
25015             GENLIST_DESCRIPTION_FLIP_ENABLED
25016          }
25017          part { name: "elm.padding.text3.right";
25018             clip_to: "disclip";
25019             type: RECT;
25020             scale: 1;
25021             description { state: "default" 0.0;
25022                fixed: 1 1;
25023                align: 1.0 0.0;
25024                visible: 0;
25025                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25026                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25027                rel1 { relative: 0 0;
25028                   to_x: "elm.padding.bubble.text4.left";
25029                   to_y: "elm.padding.bubble.text4.left";
25030                }
25031                rel2 { relative: 0 0;
25032                   to_x: "elm.padding.bubble.text4.left";
25033                   to_y: "elm.padding.bottom";
25034                }
25035             }
25036          }
25037          part { name: "elm.text.3";
25038             clip_to: "disclip";
25039             type: TEXT;
25040             scale: 1;
25041             description { state: "default" 0.0;
25042                color: GENLIST_PART_FONT_NAME_TEXT_COLOR_INC;
25043                fixed: 0 1;
25044                align: 0.0 0.0;
25045                min: 0 GENLIST_SIZE_48_INC;
25046                rel1 { relative: 1 1;
25047                   to_x: "elm.padding.left";
25048                   to_y: "elm.text.1";
25049                }
25050                rel2 { relative: 0 1;
25051                   to_x: "elm.padding.text3.right";
25052                   to_y: "elm.padding.text3.right";
25053                }
25054                text {
25055                   font: "SLP:style=Medium";
25056                   size: GENLIST_FONT_32_INC;
25057                   min: 0 1;
25058                   align: 0.0 0.5;
25059                   text_class: "slp_medium";
25060                }
25061             }
25062             description { state: "selected" 0.0;
25063                inherit: "default" 0.0;
25064                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
25065             }
25066             GENLIST_DESCRIPTION_FLIP_ENABLED
25067          }
25068          GENLIST_PART_FLIP
25069          GENLIST_PART_DISCLIP
25070       }
25071       programs {
25072          // signal: elm,state,%s,active
25073          //   a "check" item named %s went active
25074          // signal: elm,state,%s,passive
25075          //   a "check" item named %s went passive
25076          // default is passive
25077          program { name: "go_active";
25078             signal: "elm,state,selected";
25079             source: "elm";
25080             action: STATE_SET "selected" 0.0;
25081             target: "elm.text.1";
25082             target: "elm.text.2";
25083          }
25084          program { name: "go_passive";
25085             signal: "elm,state,unselected";
25086             source: "elm";
25087             action: STATE_SET "default" 0.0;
25088             target: "elm.text.1";
25089             target: "elm.text.2";
25090             transition: LINEAR 0.1;
25091          }
25092          program { name: "go_read";
25093             signal: "elm,state,read";
25094             source: "elm";
25095             action: STATE_SET "read" 0.0;
25096             target: "elm.text.1";
25097          }
25098          program { name: "go_unread";
25099             signal: "elm,state,unread";
25100             source: "elm";
25101             action: STATE_SET "default" 0.0;
25102             target: "elm.text.1";
25103          }
25104       }
25105    }
25106    // 2.2.2.41
25107    group { name: "elm/genlist/item/4text.2/default";
25108       alias: "elm/genlist/item_odd/4text.2/default";
25109       alias: "elm/genlist/item_compress/4text.2/default";
25110       alias: "elm/genlist/item_compress_odd/4text.2/default";
25111       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
25112       data.item: "stacking" "above";
25113       data.item: "selectraise" "on";
25114       data.item: "flips" "elm.flip.content";
25115       parts {
25116          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
25117          GENLIST_PART_BG_IMAGE
25118          GENLIST_PART_BOTTOM_LINE
25119          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
25120          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
25121          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
25122          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
25123
25124          part { name: "elm.text.1";
25125             clip_to: "disclip";
25126             type: TEXT;
25127             scale: 1;
25128             description { state: "default" 0.0;
25129                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
25130                fixed: 0 1;
25131                min: 0 GENLIST_SIZE_SLIDE_60_INC;
25132                rel1 { relative: 1.0 1.0;
25133                   to_x: "elm.padding.left";
25134                   to_y: "elm.padding.top";
25135                }
25136                rel2 { relative: 0.0 1.0;
25137                   to_x: "elm.padding.text1.right";
25138                   to_y: "elm.padding.text1.right";
25139                }
25140                text {
25141                   font: "SLP:style=Roman";
25142                   size: GENLIST_FONT_44_INC;
25143                   min: 0 1;
25144                   align: 0.0 0.5;
25145                   text_class: "list_item";
25146                }
25147             }
25148             description { state: "read" 0.0;
25149                inherit: "default" 0.0;
25150                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_READ_COLOR_INC;
25151             }
25152             description { state: "selected" 0.0;
25153                inherit: "default" 0.0;
25154                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_FOCUS_COLOR_INC;
25155             }
25156             GENLIST_DESCRIPTION_FLIP_ENABLED
25157          }
25158          part { name: "elm.padding.text1.right";
25159             clip_to: "disclip";
25160             type: RECT;
25161             scale: 1;
25162             description { state: "default" 0.0;
25163                fixed: 1 1 ;
25164                align: 1.0 0.0;
25165                visible: 0;
25166                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
25167                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
25168                rel1 { relative: 0.0 1.0;
25169                   to_x: "elm.text.2";
25170                   to_y: "elm.padding.top";
25171                }
25172                rel2 { relative: 0.0 1.0;
25173                   to_x: "elm.text.2";
25174                   to_y: "elm.padding.top";
25175                }
25176             }
25177          }
25178          part { name: "elm.text.2";
25179             clip_to: "disclip";
25180             type: TEXT;
25181             scale: 1;
25182             description { state: "default" 0.0;
25183                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
25184                fixed: 0 1;
25185                align: 1.0 0.0;
25186                min: 0 GENLIST_SIZE_SLIDE_60_INC;
25187                rel1 { relative: 0.0 1.0;
25188                   to_x: "elm.padding.right";
25189                   to_y: "elm.padding.top";
25190                }
25191                rel2 { relative: 0.0 1.0;
25192                  to_x: "elm.padding.right";
25193                  to_y: "elm.padding.top";
25194                }
25195                text {
25196                   font: "SLP:style=Medium";
25197                   size: GENLIST_FONT_32_INC;
25198                   min: 1 1;
25199                   align: 0.5 0.5;
25200                   text_class: "slp_medium";
25201               }
25202             }
25203             description { state: "selected" 0.0;
25204                inherit: "default" 0.0;
25205                color: GENLIST_PART_FONT_LIST_SUB_TEXT_FOCUS_COLOR_INC;
25206             }
25207             GENLIST_DESCRIPTION_FLIP_ENABLED
25208          }
25209          part { name: "elm.text.4";
25210             clip_to: "disclip";
25211             type: TEXT;
25212             scale: 1;
25213             description { state: "default" 0.0;
25214                color: GENLIST_PART_FONT_LIST_BUBBLE_TEXT_COLOR_INC;
25215                fixed: 0 1;
25216                align: 1.0 0.0;
25217                min: 0 GENLIST_SIZE_48_INC;
25218                rel1 { relative: 0 1;
25219                   to_x: "elm.padding.right";
25220                   to_y: "elm.text.2";
25221                }
25222                rel2 { relative: 0 0;
25223                   to_x: "elm.padding.right";
25224                   to_y: "elm.padding.bottom";
25225                }
25226                text {
25227                   font: "SLP:style=Medium";
25228                   size: GENLIST_FONT_32_INC;
25229                   min: 1 1;
25230                   align: 0.5 0.5;
25231                   text_class: "slp_medium";
25232                }
25233             }
25234             GENLIST_DESCRIPTION_FLIP_ENABLED
25235          }
25236          part { name: "elm.padding.text3.right";
25237             clip_to: "disclip";
25238             type: RECT;
25239             scale: 1;
25240             description { state: "default" 0.0;
25241                fixed: 1 1;
25242                align: 1.0 0.0;
25243                visible: 0;
25244                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25245                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25246                rel1 { relative: 0 0;
25247                   to_x: "elm.text.4";
25248                   to_y: "elm.text.4";
25249                }
25250                rel2 { relative: 0 0;
25251                   to_x: "elm.text.4";
25252                   to_y: "elm.padding.bottom";
25253                }
25254             }
25255          }
25256          part { name: "elm.text.3";
25257             clip_to: "disclip";
25258             type: TEXT;
25259             scale: 1;
25260             description { state: "default" 0.0;
25261                color: GENLIST_PART_FONT_NAME_TEXT_COLOR_INC;
25262                fixed: 0 1;
25263                align: 0.0 0.0;
25264                min: 0 GENLIST_SIZE_48_INC;
25265                rel1 { relative: 1 1;
25266                   to_x: "elm.padding.left";
25267                   to_y: "elm.text.1";
25268                }
25269                rel2 { relative: 0 1;
25270                   to_x: "elm.padding.text3.right";
25271                   to_y: "elm.padding.text3.right";
25272                }
25273                text {
25274                   font: "SLP:style=Medium";
25275                   size: GENLIST_FONT_32_INC;
25276                   min: 0 1;
25277                   align: 0.0 0.5;
25278                   text_class: "slp_medium";
25279                }
25280             }
25281             description { state: "selected" 0.0;
25282                inherit: "default" 0.0;
25283                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
25284             }
25285             GENLIST_DESCRIPTION_FLIP_ENABLED
25286          }
25287          GENLIST_PART_FLIP
25288          GENLIST_PART_DISCLIP
25289       }
25290       programs {
25291          // signal: elm,state,%s,active
25292          //   a "check" item named %s went active
25293          // signal: elm,state,%s,passive
25294          //   a "check" item named %s went passive
25295          // default is passive
25296          program { name: "go_active";
25297             signal: "elm,state,selected";
25298             source: "elm";
25299             action: STATE_SET "selected" 0.0;
25300             target: "elm.text.1";
25301             target: "elm.text.2";
25302          }
25303          program { name: "go_passive";
25304             signal: "elm,state,unselected";
25305             source: "elm";
25306             action: STATE_SET "default" 0.0;
25307             target: "elm.text.1";
25308             target: "elm.text.2";
25309             transition: LINEAR 0.1;
25310          }
25311          program { name: "go_read";
25312             signal: "elm,state,read";
25313             source: "elm";
25314             action: STATE_SET "read" 0.0;
25315             target: "elm.text.1";
25316          }
25317          program { name: "go_unread";
25318             signal: "elm,state,unread";
25319             source: "elm";
25320             action: STATE_SET "default" 0.0;
25321             target: "elm.text.1";
25322          }
25323       }
25324    }
25325    // 2.2.2.42
25326    group { name: "elm/genlist/item/3text.1icon.3/default";
25327       alias: "elm/genlist/item_odd/3text.1icon.3/default";
25328       alias: "elm/genlist/item_compress/3text.1icon.3/default";
25329       alias: "elm/genlist/item_compress_odd/3text.1icon.3/default";
25330       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
25331       data.item: "contents" "elm.icon.1";
25332       data.item: "stacking" "above";
25333       data.item: "selectraise" "on";
25334       data.item: "flips" "elm.flip.content";
25335       parts {
25336          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
25337          GENLIST_PART_BG_IMAGE
25338          GENLIST_PART_BOTTOM_LINE
25339          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
25340          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
25341          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
25342          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
25343
25344          part { name: "elm.text.1";
25345             clip_to: "disclip";
25346             type: TEXT;
25347             scale: 1;
25348             description { state: "default" 0.0;
25349                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
25350                fixed: 0 1;
25351                min: 0 GENLIST_SIZE_SLIDE_60_INC;
25352                rel1 { relative: 1.0 1.0;
25353                   to_x: "elm.padding.left";
25354                   to_y: "elm.padding.top";
25355                }
25356                rel2 { relative: 0.0 1.0;
25357                   to_x: "elm.padding.text1.right";
25358                   to_y: "elm.padding.text1.right";
25359                }
25360                text {
25361                   font: "SLP:style=Roman";
25362                   size: GENLIST_FONT_44_INC;
25363                   min: 0 1;
25364                   align: 0.0 0.5;
25365                   text_class: "list_item";
25366                }
25367             }
25368             description { state: "read" 0.0;
25369                inherit: "default" 0.0;
25370                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_READ_COLOR_INC;
25371             }
25372             description { state: "selected" 0.0;
25373                inherit: "default" 0.0;
25374                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_FOCUS_COLOR_INC;
25375             }
25376             GENLIST_DESCRIPTION_FLIP_ENABLED
25377          }
25378          part { name: "elm.padding.text1.right";
25379             clip_to: "disclip";
25380             type: RECT;
25381             scale: 1;
25382             description { state: "default" 0.0;
25383                fixed: 1 1 ;
25384                align: 1.0 0.0;
25385                visible: 0;
25386                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
25387                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
25388                rel1 { relative: 0.0 1.0;
25389                   to_x: "elm.text.2";
25390                   to_y: "elm.padding.top";
25391                }
25392                rel2 { relative: 0.0 1.0;
25393                   to_x: "elm.text.2";
25394                   to_y: "elm.padding.top";
25395                }
25396             }
25397          }
25398          part { name: "elm.text.2";
25399             clip_to: "disclip";
25400             type: TEXT;
25401             scale: 1;
25402             description { state: "default" 0.0;
25403                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
25404                fixed: 0 1;
25405                align: 1.0 0.0;
25406                min: 0 GENLIST_SIZE_SLIDE_60_INC;
25407                rel1 { relative: 0.0 1.0;
25408                   to_x: "elm.padding.right";
25409                   to_y: "elm.padding.top";
25410                }
25411                rel2 { relative: 0.0 1.0;
25412                  to_x: "elm.padding.right";
25413                  to_y: "elm.padding.top";
25414                }
25415                text {
25416                   font: "SLP:style=Medium";
25417                   size: GENLIST_FONT_32_INC;
25418                   min: 1 1;
25419                   align: 0.5 0.5;
25420                   text_class: "slp_medium";
25421               }
25422             }
25423             description { state: "selected" 0.0;
25424                inherit: "default" 0.0;
25425                color: GENLIST_PART_FONT_LIST_SUB_TEXT_FOCUS_COLOR_INC;
25426             }
25427
25428             GENLIST_DESCRIPTION_FLIP_ENABLED
25429          }
25430          part { name: "elm.padding.icon1.right";
25431             clip_to: "disclip";
25432             type: RECT;
25433             scale: 1;
25434             description { state: "default" 0.0;
25435                fixed: 1 1;
25436                align: 1.0 0.0;
25437                visible: 0;
25438                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25439                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25440                rel1 { relative: 0 1;
25441                   to_x: "elm.padding.right";
25442                   to_y: "elm.text.2";
25443                }
25444                rel2 { relative: 0 0;
25445                   to_x: "elm.padding.right";
25446                   to_y: "elm.padding.bottom";
25447                }
25448             }
25449          }
25450          part { name: "elm.icon.1";
25451             clip_to: "disclip";
25452             type: SWALLOW;
25453             scale: 1;
25454             description { state: "default" 0.0;
25455                color: 0 255 255 255;
25456                fixed: 1 1;
25457                align: 1.0 0.0;
25458                min: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
25459                max: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
25460                rel1 { relative: 0 0;
25461                   to_x: "elm.padding.icon1.right";
25462                   to_y: "elm.padding.icon1.right";
25463                }
25464                rel2 { relative: 0 1;
25465                   to_x: "elm.padding.icon1.right";
25466                   to_y: "elm.padding.icon1.right";
25467                }
25468             }
25469          }
25470          part { name: "elm.padding.text3.right";
25471             clip_to: "disclip";
25472             type: RECT;
25473             scale: 1;
25474             description { state: "default" 0.0;
25475                fixed: 1 1;
25476                align: 1.0 0.0;
25477                visible: 0;
25478                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25479                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25480                rel1 { relative: 0 0;
25481                   to_x: "elm.icon.1";
25482                   to_y: "elm.icon.1";
25483                }
25484                rel2 { relative: 0 0;
25485                   to_x: "elm.icon.1";
25486                   to_y: "elm.padding.bottom";
25487                }
25488             }
25489          }
25490          part { name: "elm.text.3";
25491             clip_to: "disclip";
25492             type: TEXT;
25493             scale: 1;
25494             description { state: "default" 0.0;
25495                color: GENLIST_PART_FONT_NAME_TEXT_COLOR_INC;
25496                fixed: 0 1;
25497                align: 0.0 0.0;
25498                min: 0 GENLIST_SIZE_48_INC;
25499                rel1 { relative: 1 1;
25500                   to_x: "elm.padding.left";
25501                   to_y: "elm.text.1";
25502                }
25503                rel2 { relative: 0 1;
25504                   to_x: "elm.padding.text3.right";
25505                   to_y: "elm.padding.text3.right";
25506                }
25507                text {
25508                   font: "SLP:style=Medium";
25509                   size: GENLIST_FONT_32_INC;
25510                   min: 0 1;
25511                   align: 0.0 0.5;
25512                   text_class: "slp_medium";
25513                }
25514             }
25515             description { state: "selected" 0.0;
25516                inherit: "default" 0.0;
25517                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
25518             }
25519             GENLIST_DESCRIPTION_FLIP_ENABLED
25520          }
25521          GENLIST_PART_FLIP
25522          GENLIST_PART_DISCLIP
25523       }
25524       programs {
25525          // signal: elm,state,%s,active
25526          //   a "check" item named %s went active
25527          // signal: elm,state,%s,passive
25528          //   a "check" item named %s went passive
25529          // default is passive
25530          program { name: "go_active";
25531             signal: "elm,state,selected";
25532             source: "elm";
25533             action: STATE_SET "selected" 0.0;
25534             target: "elm.text.1";
25535             target: "elm.text.2";
25536          }
25537          program { name: "go_passive";
25538             signal: "elm,state,unselected";
25539             source: "elm";
25540             action: STATE_SET "default" 0.0;
25541             target: "elm.text.1";
25542             target: "elm.text.2";
25543             transition: LINEAR 0.1;
25544          }
25545          program { name: "go_read";
25546             signal: "elm,state,read";
25547             source: "elm";
25548             action: STATE_SET "read" 0.0;
25549             target: "elm.text.1";
25550          }
25551          program { name: "go_unread";
25552             signal: "elm,state,unread";
25553             source: "elm";
25554             action: STATE_SET "default" 0.0;
25555             target: "elm.text.1";
25556          }
25557       }
25558    }
25559    // 2.2.2.44
25560    group { name: "elm/genlist/item/4text.1icon.3/default";
25561       alias: "elm/genlist/item_odd/4text.1icon.3/default";
25562       alias: "elm/genlist/item_compress/4text.1icon.3/default";
25563       alias: "elm/genlist/item_compress_odd/4text.1icon.3/default";
25564       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
25565       data.item: "stacking" "above";
25566       data.item: "selectraise" "on";
25567       data.item: "contents" "elm.icon.1";
25568       data.item: "flips" "elm.flip.content";
25569       images {
25570          image: "00_winset_list_bubble_bg.png" COMP;
25571       }
25572       parts {
25573          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
25574          GENLIST_PART_BG_IMAGE
25575          GENLIST_PART_BOTTOM_LINE
25576          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
25577          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
25578          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
25579          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
25580          part { name: "elm.icon.1";
25581             clip_to: "disclip";
25582             type: SWALLOW;
25583             scale: 1;
25584             description { state: "default" 0.0;
25585                min: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
25586                max: GENLIST_SIZE_64_INC GENLIST_SIZE_64_INC;
25587                fixed: 1 1;
25588                rel1 {
25589                   relative: 1.0 0.0;
25590                   to_x: "elm.padding.left";
25591                }
25592                rel2 {
25593                   relative: 1.0 1.0;
25594                   to_x: "elm.padding.left";
25595                }
25596                align: 0.0 0.5;
25597             }
25598             GENLIST_DESCRIPTION_FLIP_ENABLED
25599          }
25600          part { name: "elm.text.1";
25601             clip_to: "disclip";
25602             type: TEXT;
25603             scale: 1;
25604             description { state: "default" 0.0;
25605                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
25606                fixed: 0 1;
25607                min: 0 GENLIST_SIZE_SLIDE_60_INC;
25608                rel1 { relative: 1.0 1.0;
25609                   to_x: "elm.icon.1";
25610                   to_y: "elm.padding.top";
25611                }
25612                rel2 { relative: 0.0 1.0;
25613                   to_x: "elm.padding.text1.right";
25614                   to_y: "elm.padding.text1.right";
25615                }
25616                text {
25617                   font: "SLP:style=Roman";
25618                   size: GENLIST_FONT_44_INC;
25619                   min: 0 1;
25620                   align: 0.0 0.5;
25621                   text_class: "list_item";
25622                }
25623             }
25624             description { state: "read" 0.0;
25625                inherit: "default" 0.0;
25626                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_READ_COLOR_INC;
25627             }
25628             description { state: "selected" 0.0;
25629                inherit: "default" 0.0;
25630                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_FOCUS_COLOR_INC;
25631             }
25632             GENLIST_DESCRIPTION_FLIP_ENABLED
25633          }
25634          part { name: "elm.padding.text1.right";
25635             clip_to: "disclip";
25636             type: RECT;
25637             scale: 1;
25638             description { state: "default" 0.0;
25639                fixed: 1 1 ;
25640                align: 1.0 0.0;
25641                visible: 0;
25642                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
25643                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
25644                rel1 { relative: 0.0 1.0;
25645                   to_x: "elm.text.2";
25646                   to_y: "elm.padding.top";
25647                }
25648                rel2 { relative: 0.0 1.0;
25649                   to_x: "elm.text.2";
25650                   to_y: "elm.padding.top";
25651                }
25652             }
25653          }
25654          part { name: "elm.text.2";
25655             clip_to: "disclip";
25656             type: TEXT;
25657             scale: 1;
25658             description { state: "default" 0.0;
25659                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
25660                fixed: 0 1;
25661                align: 1.0 0.0;
25662                min: 0 GENLIST_SIZE_SLIDE_60_INC;
25663                rel1 { relative: 0.0 1.0;
25664                   to_x: "elm.padding.right";
25665                   to_y: "elm.padding.top";
25666                }
25667                rel2 { relative: 0.0 1.0;
25668                  to_x: "elm.padding.right";
25669                  to_y: "elm.padding.top";
25670                }
25671                text {
25672                   font: "SLP:style=Medium";
25673                   size: GENLIST_FONT_32_INC;
25674                   min: 1 1;
25675                   align: 0.5 0.5;
25676                   text_class: "slp_medium";
25677                }
25678             }
25679             description { state: "selected" 0.0;
25680                inherit: "default" 0.0;
25681                color: GENLIST_PART_FONT_LIST_SUB_TEXT_FOCUS_COLOR_INC;
25682             }
25683             GENLIST_DESCRIPTION_FLIP_ENABLED
25684          }
25685          part { name: "elm.bubble";
25686             type: IMAGE;
25687             description{ state: "default" 0.0;
25688                fixed: 0 1;
25689                min: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
25690                rel1 { relative: 0 0;
25691                   to_x: "elm.padding.bubble.text4.left";
25692                   to_y: "elm.padding.bubble.text4.left";
25693                }
25694                rel2 { relative: 1 1;
25695                   to_x: "elm.padding.bubble.text4.right";
25696                   to_y: "elm.padding.bubble.text4.right";
25697                }
25698                image {
25699                   normal: "00_winset_list_bubble_bg.png";
25700                   border:  6 6 0 0;
25701                }
25702             }
25703          }
25704          part { name: "elm.padding.bubble.text4.left";
25705             type: RECT;
25706             scale: 1;
25707             description { state: "default" 0.0;
25708                fixed: 1 1;
25709                align: 1 0;
25710                visible: 0;
25711                min: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
25712                max: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
25713                rel1 { relative: 0 1;
25714                   to_x: "elm.text.4";
25715                   to_y: "elm.text.2";
25716                }
25717                rel2 { relative: 0 0;
25718                   to_x: "elm.text.4";
25719                   to_y: "elm.padding.bottom";
25720                }
25721
25722             }
25723          }
25724          part { name: "elm.padding.bubble.text4.right";
25725             type: RECT;
25726             scale: 1;
25727             description { state: "default" 0.0;
25728                fixed: 1 1;
25729                align: 1 0;
25730                visible: 0;
25731                min: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
25732                max: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
25733                rel1 { relative: 0 1;
25734                   to_x: "elm.padding.right";
25735                   to_y: "elm.text.2";
25736                }
25737                rel2 { relative: 0 0;
25738                   to_x: "elm.padding.right";
25739                   to_y: "elm.padding.bottom";
25740                }
25741             }
25742          }
25743          part { name: "elm.text.4";
25744             clip_to: "disclip";
25745             type: TEXT;
25746             scale: 1;
25747             description { state: "default" 0.0;
25748                color: GENLIST_PART_FONT_LIST_BUBBLE_TEXT_COLOR_INC;
25749                fixed: 0 1;
25750                align: 1.0 0.0;
25751                min: GENLIST_SIZE_28_INC GENLIST_SIZE_48_INC;
25752                rel1 { relative: 0 1;
25753                   to_x: "elm.padding.bubble.text4.right";
25754                   to_y: "elm.text.2";
25755                }
25756                rel2 { relative: 0 0;
25757                   to_x: "elm.padding.bubble.text4.right";
25758                   to_y: "elm.padding.bottom";
25759                }
25760                text {
25761                   font: "SLP:style=Medium";
25762                   size: GENLIST_FONT_32_INC;
25763                   min: 1 1;
25764                   align: 0.5 0.5;
25765                   text_class: "slp_medium";
25766                }
25767             }
25768             GENLIST_DESCRIPTION_FLIP_ENABLED
25769          }
25770          part { name: "elm.padding.text3.right";
25771             clip_to: "disclip";
25772             type: RECT;
25773             scale: 1;
25774             description { state: "default" 0.0;
25775                fixed: 1 1;
25776                align: 1.0 0.0;
25777                visible: 0;
25778                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25779                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25780                rel1 { relative: 0 0;
25781                   to_x: "elm.padding.bubble.text4.left";
25782                   to_y: "elm.padding.bubble.text4.left";
25783                }
25784                rel2 { relative: 0 0;
25785                   to_x: "elm.padding.bubble.text4.left";
25786                   to_y: "elm.padding.bottom";
25787                }
25788             }
25789          }
25790          part { name: "elm.text.3";
25791             clip_to: "disclip";
25792             type: TEXT;
25793             scale: 1;
25794             description { state: "default" 0.0;
25795                color: GENLIST_PART_FONT_NAME_TEXT_COLOR_INC;
25796                fixed: 0 1;
25797                align: 0.0 0.0;
25798                min: 0 GENLIST_SIZE_48_INC;
25799                rel1 { relative: 1 1;
25800                   to_x: "elm.icon.1";
25801                   to_y: "elm.text.1";
25802                }
25803                rel2 { relative: 0 1;
25804                   to_x: "elm.padding.text3.right";
25805                   to_y: "elm.padding.text3.right";
25806                }
25807                text {
25808                   font: "SLP:style=Medium";
25809                   size: GENLIST_FONT_32_INC;
25810                   min: 0 1;
25811                   align: 0.0 0.5;
25812                   text_class: "slp_medium";
25813                }
25814             }
25815             description { state: "selected" 0.0;
25816                inherit: "default" 0.0;
25817                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
25818             }
25819             GENLIST_DESCRIPTION_FLIP_ENABLED
25820          }
25821          GENLIST_PART_FLIP
25822          GENLIST_PART_DISCLIP
25823       }
25824       programs {
25825          // signal: elm,state,%s,active
25826          //   a "check" item named %s went active
25827          // signal: elm,state,%s,passive
25828          //   a "check" item named %s went passive
25829          // default is passive
25830          program { name: "go_active";
25831             signal: "elm,state,selected";
25832             source: "elm";
25833             action: STATE_SET "selected" 0.0;
25834             target: "elm.text.1";
25835             target: "elm.text.2";
25836          }
25837          program { name: "go_passive";
25838             signal: "elm,state,unselected";
25839             source: "elm";
25840             action: STATE_SET "default" 0.0;
25841             target: "elm.text.1";
25842             target: "elm.text.2";
25843             transition: LINEAR 0.1;
25844          }
25845          program { name: "go_read";
25846             signal: "elm,state,read";
25847             source: "elm";
25848             action: STATE_SET "read" 0.0;
25849             target: "elm.text.1";
25850          }
25851          program { name: "go_unread";
25852             signal: "elm,state,unread";
25853             source: "elm";
25854             action: STATE_SET "default" 0.0;
25855             target: "elm.text.1";
25856          }
25857       }
25858    }
25859    // 2.2.2.43
25860    group { name: "elm/genlist/item/2text.4icon.1/default";
25861       alias: "elm/genlist/item_odd/2text.4icon.1/default";
25862       alias: "elm/genlist/item_compress/2text.4icon.1/default";
25863       alias: "elm/genlist/item_compress_odd/2text.4icon.1/default";
25864       data.item: "texts" "elm.text.1 elm.text.2";
25865       data.item: "stacking" "above";
25866       data.item: "selectraise" "on";
25867       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4";
25868       data.item: "flips" "elm.flip.content";
25869       parts {
25870          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
25871          GENLIST_PART_BG_IMAGE
25872          GENLIST_PART_BOTTOM_LINE
25873          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
25874          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
25875          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
25876          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
25877          part { name: "elm.icon.1";
25878             clip_to: "disclip";
25879             type: SWALLOW;
25880             scale: 1;
25881             description { state: "default" 0.0;
25882                min: GENLIST_SIZE_56_INC GENLIST_SIZE_60_INC;
25883                max: GENLIST_SIZE_56_INC GENLIST_SIZE_60_INC;
25884                fixed: 1 1;
25885                rel1 {
25886                   relative: 0.0 1.0;
25887                   to_x: "elm.padding.right";
25888                   to_y: "elm.padding.top";
25889                }
25890                rel2 {
25891                   relative: 0.0 0.0;
25892                   to_x: "elm.padding.right";
25893                   to_y: "elm.padding.bottom";
25894                }
25895                align: 1.0 0.5;
25896             }
25897             GENLIST_DESCRIPTION_FLIP_ENABLED
25898          }
25899          part { name: "elm.padding.text1.right";
25900             clip_to: "disclip";
25901             type: RECT;
25902             scale: 1;
25903             description { state: "default" 0.0;
25904                fixed: 1 1 ;
25905                align: 1.0 0.0;
25906                visible: 0;
25907                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
25908                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
25909                rel1 { relative: 0.0 1.0;
25910                   to_x: "elm.icon.1";
25911                   to_y: "elm.padding.top";
25912                }
25913                rel2 { relative: 0.0 1.0;
25914                   to_x: "elm.icon.1";
25915                   to_y: "elm.padding.top";
25916                }
25917             }
25918          }
25919          part { name: "elm.text.1";
25920             clip_to: "disclip";
25921             type: TEXT;
25922             scale: 1;
25923             description { state: "default" 0.0;
25924                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
25925                fixed: 0 1;
25926                min: 0 GENLIST_SIZE_SLIDE_60_INC;
25927                rel1 { relative: 1.0 1.0;
25928                   to_x: "elm.padding.left";
25929                   to_y: "elm.padding.top";
25930                }
25931                rel2 { relative: 0.0 1.0;
25932                   to_x: "elm.padding.text1.right";
25933                   to_y: "elm.padding.text1.right";
25934                }
25935                text {
25936                   font: "SLP:style=Roman";
25937                   size: GENLIST_FONT_44_INC;
25938                   min: 0 1;
25939                   align: 0.0 0.5;
25940                   text_class: "list_item";
25941                }
25942             }
25943             description { state: "read" 0.0;
25944                inherit: "default" 0.0;
25945                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_READ_COLOR_INC;
25946             }
25947             description { state: "selected" 0.0;
25948                inherit: "default" 0.0;
25949                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_FOCUS_COLOR_INC;
25950             }
25951             GENLIST_DESCRIPTION_FLIP_ENABLED
25952          }
25953          part { name: "elm.padding.icon2.right";
25954             clip_to: "disclip";
25955             type: RECT;
25956             scale: 1;
25957             description { state: "default" 0.0;
25958                fixed: 1 1;
25959                align: 1.0 0.0;
25960                visible: 0;
25961                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25962                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25963                rel1 { relative: 0 1;
25964                   to_x: "elm.icon.1";
25965                   to_y: "elm.text.1";
25966                }
25967                rel2 { relative: 0 0;
25968                   to_x: "elm.icon.1";
25969                   to_y: "elm.padding.bottom";
25970                }
25971             }
25972          }
25973          part { name: "elm.icon.2";
25974             clip_to: "disclip";
25975             type: SWALLOW;
25976             scale: 1;
25977             description { state: "default" 0.0;
25978                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
25979                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
25980                fixed: 1 1;
25981                rel1 {
25982                   relative: 0.0 1.0;
25983                   to_x: "elm.padding.icon2.right";
25984                   to_y: "elm.text.1";
25985                }
25986                rel2 {
25987                   relative: 0.0 0.0;
25988                   to_x: "elm.padding.icon2.right";
25989                   to_y: "elm.padding.bottom";
25990                }
25991                align: 1.0 0.5;
25992             }
25993             GENLIST_DESCRIPTION_FLIP_ENABLED
25994          }
25995          part { name: "elm.padding.icon3.right";
25996             clip_to: "disclip";
25997             type: RECT;
25998             scale: 1;
25999             description { state: "default" 0.0;
26000                fixed: 1 1;
26001                align: 1.0 0.0;
26002                visible: 0;
26003                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
26004                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
26005                rel1 { relative: 0 1;
26006                   to_x: "elm.icon.2";
26007                   to_y: "elm.text.1";
26008                }
26009                rel2 { relative: 0 0;
26010                   to_x: "elm.icon.2";
26011                   to_y: "elm.padding.bottom";
26012                }
26013             }
26014          }
26015          part { name: "elm.icon.3";
26016             clip_to: "disclip";
26017             type: SWALLOW;
26018             scale: 1;
26019             description { state: "default" 0.0;
26020                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
26021                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
26022                fixed: 1 1;
26023                rel1 {
26024                   relative: 0.0 1.0;
26025                   to_x: "elm.padding.icon3.right";
26026                   to_y: "elm.text.1";
26027                }
26028                rel2 {
26029                   relative: 0.0 0.0;
26030                   to_x: "elm.padding.icon3.right";
26031                   to_y: "elm.padding.bottom";
26032                }
26033                align: 1.0 0.5;
26034             }
26035             GENLIST_DESCRIPTION_FLIP_ENABLED
26036          }
26037          part { name: "elm.padding.icon4.right";
26038             clip_to: "disclip";
26039             type: RECT;
26040             scale: 1;
26041             description { state: "default" 0.0;
26042                fixed: 1 1;
26043                align: 1.0 0.0;
26044                visible: 0;
26045                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
26046                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
26047                rel1 { relative: 0 1;
26048                   to_x: "elm.icon.3";
26049                   to_y: "elm.text.1";
26050                }
26051                rel2 { relative: 0 0;
26052                   to_x: "elm.icon.3";
26053                   to_y: "elm.padding.bottom";
26054                }
26055             }
26056          }
26057          part { name: "elm.icon.4";
26058             clip_to: "disclip";
26059             type: SWALLOW;
26060             scale: 1;
26061             description { state: "default" 0.0;
26062                min: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
26063                max: GENLIST_SIZE_32_INC GENLIST_SIZE_32_INC;
26064                fixed: 1 1;
26065                rel1 {
26066                   relative: 0.0 1.0;
26067                   to_x: "elm.padding.icon4.right";
26068                   to_y: "elm.text.1";
26069                }
26070                rel2 {
26071                   relative: 0.0 0.0;
26072                   to_x: "elm.padding.icon4.right";
26073                   to_y: "elm.padding.bottom";
26074                }
26075                align: 1.0 0.5;
26076             }
26077             GENLIST_DESCRIPTION_FLIP_ENABLED
26078          }
26079          part { name: "elm.padding.text2.right";
26080             clip_to: "disclip";
26081             type: RECT;
26082             scale: 1;
26083             description { state: "default" 0.0;
26084                fixed: 1 1;
26085                align: 1.0 0.0;
26086                visible: 0;
26087                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
26088                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
26089                rel1 { relative: 0 1;
26090                   to_x: "elm.icon.4";
26091                   to_y: "elm.text.1";
26092                }
26093                rel2 { relative: 0 0;
26094                   to_x: "elm.icon.4";
26095                   to_y: "elm.padding.bottom";
26096                }
26097             }
26098          }
26099          part { name: "elm.text.2";
26100             clip_to: "disclip";
26101             type: TEXT;
26102             scale: 1;
26103             description { state: "default" 0.0;
26104                color: GENLIST_PART_FONT_NAME_TEXT_COLOR_INC;
26105                fixed: 0 1;
26106                align: 0.0 0.0;
26107                min: 0 GENLIST_SIZE_48_INC;
26108                rel1 { relative: 1 1;
26109                   to_x: "elm.padding.left";
26110                   to_y: "elm.text.1";
26111                }
26112                rel2 { relative: 0 1;
26113                   to_x: "elm.padding.text2.right";
26114                   to_y: "elm.padding.text2.right";
26115                }
26116                text {
26117                   font: "SLP:style=Medium";
26118                   size: GENLIST_FONT_32_INC;
26119                   min: 0 1;
26120                   align: 0.0 0.5;
26121                   text_class: "slp_medium";
26122                }
26123             }
26124             description { state: "selected" 0.0;
26125                inherit: "default" 0.0;
26126                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
26127             }
26128             GENLIST_DESCRIPTION_FLIP_ENABLED
26129          }
26130          GENLIST_PART_FLIP
26131          GENLIST_PART_DISCLIP
26132       }
26133       programs {
26134          // signal: elm,state,%s,active
26135          //   a "check" item named %s went active
26136          // signal: elm,state,%s,passive
26137          //   a "check" item named %s went passive
26138          // default is passive
26139          program { name: "go_active";
26140             signal: "elm,state,selected";
26141             source: "elm";
26142             action: STATE_SET "selected" 0.0;
26143             target: "elm.text.1";
26144          }
26145          program { name: "go_passive";
26146             signal: "elm,state,unselected";
26147             source: "elm";
26148             action: STATE_SET "default" 0.0;
26149             target: "elm.text.1";
26150             transition: LINEAR 0.1;
26151          }
26152          program { name: "go_read";
26153             signal: "elm,state,read";
26154             source: "elm";
26155             action: STATE_SET "read" 0.0;
26156             target: "elm.text.1";
26157          }
26158          program { name: "go_unread";
26159             signal: "elm,state,unread";
26160             source: "elm";
26161             action: STATE_SET "default" 0.0;
26162             target: "elm.text.1";
26163          }
26164       }
26165    }
26166
26167    group { name: "elm/genlist/item/dialogue/bg/2text.1icon.2/default";
26168       alias: "elm/genlist/item_odd/dialogue/bg/2text.1icon.2/default";
26169       alias: "elm/genlist/item_compress/dialogue/bg/2text.1icon.2/default";
26170       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.1icon.2/default";
26171       alias: "elm/genlist/item/dialogue.2text.1icon.2/default";
26172       alias: "elm/genlist/item_odd/dialogue.2text.1icon.2/default";
26173       alias: "elm/genlist/item_compress/dialogue.2text.1icon.2/default";
26174       alias: "elm/genlist/item_compress_odd/dialogue.2text.1icon.2/default";
26175       alias: "elm/layout/dialogue/bg/2text.1icon.2";
26176       data.item: "stacking" "above";
26177       data.item: "selectraise" "on";
26178       data.item: "texts" "elm.text.1 elm.text.2";
26179       data.item: "contents" "elm.icon";
26180       data.item: "flips" "elm.flip.content.1 elm.flip.content.2";
26181       images {
26182           image: "00_list_thumbnail_bg.png" COMP;
26183       }
26184       parts {
26185          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_291_INC )
26186          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_32_INC )
26187          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_32_INC )
26188          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
26189          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
26190          part { name: "elm.icon.bg";
26191             scale: 1;
26192             description { state: "default" 0.0;
26193                min: GENLIST_SIZE_144_INC GENLIST_SIZE_90_INC;
26194                fixed: 1 1;
26195                align: 0.0 0.8;
26196                rel1 {
26197                   relative: 1.0 0.5;
26198                   to_x: "elm.padding.left";
26199                }
26200                rel2 {
26201                   relative: 1.0 0.5;
26202                   to_x: "elm.padding.left";
26203                }
26204                image {
26205                   normal: "00_list_thumbnail_bg.png";
26206                   border: 1 1 1 1;
26207                   border_scale: 1;
26208                   middle: NONE;
26209                }
26210             }
26211          }
26212          part { name: "elm.icon";
26213             type: SWALLOW;
26214             description { state: "default" 0.0;
26215                rel1.to: "elm.icon.bg";
26216                rel2.to: "elm.icon.bg";
26217             }
26218          }
26219          part { name: "elm.padding.icon.right";
26220             type: RECT;
26221             mouse_events: 0;
26222             scale: 1;
26223             description { state: "default" 0.0;
26224                min: GENLIST_PADDING_16_INC 0;
26225                fixed: 1 0;
26226                rel1 {
26227                    relative: 1.0 0.0;
26228                    to_x: "elm.icon.bg";
26229                }
26230                rel2.to_x: "elm.icon.bg";
26231                visible: 0;
26232                align: 0.0 0.5;
26233             }
26234          }
26235          part { name: "elm.padding.text.left";
26236             type: RECT;
26237             mouse_events: 0;
26238             scale: 1;
26239             description { state: "default" 0.0;
26240                min: GENLIST_PADDING_16_INC 0;
26241                fixed: 1 0;
26242                rel1 {
26243                    relative: 1.0 1.0;
26244                    to_x: "elm.padding.icon.right";
26245                    to_y: "elm.padding.top";
26246                }
26247                rel2.to_x: "elm.padding.icon.right";
26248                visible: 0;
26249                align: 1.0 0.5;
26250             }
26251          }
26252          part { name: "vertical_line";
26253             type: RECT;
26254             mouse_events: 0;
26255             description { state: "default" 0.0;
26256                min: 1 0;
26257                fixed: 1 0;
26258                color: GENLIST_PART_LIST_LINE_COLOR_INC;
26259                rel1 {
26260                   relative: 1.0 1.0;
26261                   to_x: "elm.padding.text.left";
26262                   to_y: "elm.padding.top";
26263                }
26264                rel2 {
26265                   relative: 1.0 0.0;
26266                   to_x: "elm.padding.text.left";
26267                   to_y: "elm.padding.bottom";
26268                }
26269                align: 0.0 0.5;
26270             }
26271          }
26272          part { name: "text_vertical_rect";
26273             type: RECT;
26274             mouse_events: 0;
26275             description { state: "default" 0.0;
26276                min: GENLIST_PADDING_16_INC 0;
26277                fixed: 1 0;
26278                color: GENLIST_DIALOGUE_GROUP_LEFT_BG_COLOR_INC;
26279                rel1 {
26280                   relative: 1.0 1.0;
26281                   to_x: "vertical_line";
26282                   to_y: "elm.padding.top";
26283                }
26284                rel2 {
26285                   relative: 1.0 0.0;
26286                   to_x: "elm.padding.text.left";
26287                   to_y: "elm.padding.bottom";
26288                }
26289                align: 0.0 0.5;
26290             }
26291          }
26292          part { name: "elm.padding.text.right";
26293             type: RECT;
26294             mouse_events: 0;
26295             scale: 1;
26296             description { state: "default" 0.0;
26297                min: GENLIST_PADDING_16_INC 0;
26298                fixed: 1 0;
26299                rel1 {
26300                    relative: 1.0 0.0;
26301                    to_x: "text_vertical_rect";
26302                }
26303                rel2.to_x: "text_vertical_rect";
26304                visible: 0;
26305                align: 0.0 0.5;
26306             }
26307          }
26308          part { name: "text_top_line";
26309             type: RECT;
26310             mouse_events: 0;
26311             description { state: "default" 0.0;
26312                min: 0 1;
26313                fixed: 0 1;
26314                color: GENLIST_PART_LIST_LINE_COLOR_INC;
26315                rel1 {
26316                   relative: 1.0 0.0;
26317                   to_x: "text_vertical_rect";
26318                   to_y: "text_vertical_rect";
26319                }
26320                rel2 {
26321                   relative: 1.0 0.0;
26322                   to_y: "text_vertical_rect";
26323                }
26324                align: 0.0 0.0;
26325             }
26326          }
26327          part { name: "text_center_line";
26328             type: RECT;
26329             mouse_events: 0;
26330             description { state: "default" 0.0;
26331                min: 0 1;
26332                fixed: 0 1;
26333                color: GENLIST_PART_LIST_LINE_COLOR_INC;
26334                rel1 {
26335                   relative: 1.0 0.5;
26336                   to_x: "text_vertical_rect";
26337                }
26338                rel2.relative: 1.0 0.5;
26339                align: 0.5 0.5;
26340             }
26341          }
26342          part { name: "text_bottom_line";
26343             type: RECT;
26344             mouse_events: 0;
26345             description { state: "default" 0.0;
26346                min: 0 1;
26347                fixed: 0 1;
26348                color: GENLIST_PART_LIST_LINE_COLOR_INC;
26349                rel1 {
26350                   relative: 1.0 1.0;
26351                   to_x: "text_vertical_rect";
26352                   to_y: "text_vertical_rect";
26353                }
26354                rel2 {
26355                   relative: 1.0 1.0;
26356                   to_y: "text_vertical_rect";
26357                }
26358                align: 0.0 1.0;
26359             }
26360          }
26361          part { name: "elm.text.bg.1";
26362             clip_to: "disclip";
26363             type: RECT;
26364             mouse_events: 0;
26365             scale: 1;
26366             description { state: "default" 0.0;
26367                rel1 {
26368                   relative: 1.0 1.0;
26369                   to_x: "text_vertical_rect";
26370                   to_y: "text_top_line";
26371                }
26372                rel2 {
26373                   relative: 1.0 0.0;
26374                   to_x: "elm.padding.right";
26375                   to_y: "text_center_line";
26376                }
26377                color: GENLIST_PART_BG_COLOR_INC;
26378             }
26379          }
26380          part { name: "elm.text.1";
26381             type: TEXT;
26382             mouse_events: 0;
26383             scale: 1;
26384             description { state: "default" 0.0;
26385                min: 0 GENLIST_SIZE_54_INC;
26386                rel1 {
26387                   relative: 1.0 0.0;
26388                   to_x: "elm.padding.text.right";
26389                   to_y: "elm.text.bg.1";
26390                }
26391                rel2 {
26392                   relative: 0.0 1.0;
26393                   to_x: "elm.padding.right";
26394                   to_y: "elm.text.bg.1";
26395                }
26396                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
26397                text {
26398                   font: "SLP:style=Roman";
26399                   size: GENLIST_FONT_48_INC;
26400                   align: 0.0 0.5;
26401                   text_class: "list_item";
26402                }
26403             }
26404             GENLIST_DESCRIPTION_FLIP_ENABLED
26405          }
26406          part { name: "elm.flip.content.1";
26407             clip_to: "disclip";
26408             type: SWALLOW;
26409             description { state: "default" 0.0;
26410                visible: 0;
26411                fixed: 1 1;
26412                rel1.to: "elm.text.1";
26413                rel2.to: "elm.text.1";
26414             }
26415             description { state: "flip_enabled" 0.0;
26416                inherit: "default" 0.0;
26417                visible: 1;
26418             }
26419          }
26420          part { name: "elm.text.bg.2";
26421             clip_to: "disclip";
26422             type: RECT;
26423             mouse_events: 0;
26424             scale: 1;
26425             description { state: "default" 0.0;
26426                rel1 {
26427                   relative: 1.0 1.0;
26428                   to_x: "text_vertical_rect";
26429                   to_y: "text_center_line";
26430                }
26431                rel2 {
26432                   relative: 1.0 0.0;
26433                   to_x: "elm.padding.right";
26434                   to_y: "text_bottom_line";
26435                }
26436                color: GENLIST_PART_BG_COLOR_INC;
26437             }
26438          }
26439          part { name: "elm.text.2";
26440             clip_to: "disclip";
26441             type: TEXT;
26442             mouse_events: 0;
26443             scale: 1;
26444             description { state: "default" 0.0;
26445                min: 0 GENLIST_SIZE_54_INC;
26446                rel1 {
26447                   relative: 1.0 0.0;
26448                   to_x: "elm.padding.text.right";
26449                   to_y: "elm.text.bg.2";
26450                }
26451                rel2 {
26452                   relative: 0.0 1.0;
26453                   to_x: "elm.padding.right";
26454                   to_y: "elm.text.bg.2";
26455                }
26456                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
26457                text {
26458                   font: "SLP:style=Roman";
26459                   size: GENLIST_FONT_48_INC;
26460                   align: 0.0 0.5;
26461                   text_class: "slp_roman";
26462                }
26463             }
26464             GENLIST_DESCRIPTION_FLIP_ENABLED
26465          }
26466          part { name: "elm.flip.content.2";
26467             clip_to: "disclip";
26468             type: SWALLOW;
26469             description { state: "default" 0.0;
26470                visible: 0;
26471                fixed: 1 1;
26472                rel1.to: "elm.text.2";
26473                rel2.to: "elm.text.2";
26474             }
26475             description { state: "flip_enabled" 0.0;
26476                inherit: "default" 0.0;
26477                visible: 1;
26478             }
26479          }
26480          GENLIST_PART_DISCLIP
26481       }
26482       programs {
26483          // signal: elm,state,%s,active
26484          //   a "check" item named %s went active
26485          // signal: elm,state,%s,passive
26486          //   a "check" item named %s went passive
26487          // default is passive
26488          /*program { name: "go_active";
26489             signal: "elm,state,selected";
26490             source: "elm";
26491             action: STATE_SET "selected" 0.0;
26492             target: "elm.text";
26493             target: "elm.text.sub";
26494          }
26495          program { name: "go_passive";
26496             signal: "elm,state,unselected";
26497             source: "elm";
26498             action: STATE_SET "default" 0.0;
26499             target: "elm.text";
26500             target: "elm.text.sub";
26501             transition: LINEAR 0.1;
26502          }*/
26503          program { name: "go_disabled";
26504             signal: "elm,state,disabled";
26505             source: "elm";
26506             action: STATE_SET "disabled" 0.0;
26507             target: "disclip";
26508          }
26509          program { name: "go_enabled";
26510             signal: "elm,state,enabled";
26511             source: "elm";
26512             action: STATE_SET "default" 0.0;
26513             target: "disclip";
26514          }
26515          program { name: "flip_enabled";
26516             signal: "elm,state,flip,enabled";
26517             source: "elm";
26518             action: STATE_SET "flip_enabled" 0.0;
26519             target: "elm.text.1";
26520             target: "elm.text.2";
26521             target: "elm.flip.content.1";
26522             target: "elm.flip.content.2";
26523          }
26524          program { name: "flip_disabled";
26525             signal: "elm,state,flip,disabled";
26526             source: "elm";
26527             action: STATE_SET "default" 0.0;
26528             target: "elm.text.1";
26529             target: "elm.text.2";
26530             target: "elm.flip.content.1";
26531             target: "elm.flip.content.2";
26532          }
26533       }
26534    }
26535
26536 /* non-bottom-border-area version of 2text.1icon.2 */
26537    group { name: "elm/genlist/item/dialogue/bg/2text.1icon.3/default";
26538       alias: "elm/genlist/item_odd/dialogue/bg/2text.1icon.3/default";
26539       alias: "elm/genlist/item_compress/dialogue/bg/2text.1icon.3/default";
26540       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.1icon.3/default";
26541       alias: "elm/layout/dialogue/bg/2text.1icon.3";
26542       data.item: "stacking" "above";
26543       data.item: "selectraise" "on";
26544       data.item: "texts" "elm.text.1 elm.text.2";
26545       data.item: "contents" "elm.icon";
26546       data.item: "flips" "elm.flip.content.1 elm.flip.content.2";
26547       images {
26548           image: "00_list_thumbnail_bg.png" COMP;
26549       }
26550       parts {
26551          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_260_INC )
26552          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_32_INC )
26553          GENLIST_PART_PADDING_BOTTOM( 0 )
26554          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_16_INC )
26555          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
26556          part { name: "elm.icon.bg";
26557             scale: 1;
26558             description { state: "default" 0.0;
26559                min: GENLIST_SIZE_144_INC GENLIST_SIZE_90_INC;
26560                fixed: 1 1;
26561                align: 0.0 0.7;
26562                rel1 {
26563                   relative: 1.0 0.5;
26564                   to_x: "elm.padding.left";
26565                }
26566                rel2 {
26567                   relative: 1.0 0.5;
26568                   to_x: "elm.padding.left";
26569                }
26570                image {
26571                   normal: "00_list_thumbnail_bg.png";
26572                   border: 1 1 1 1;
26573                   border_scale: 1;
26574                   middle: NONE;
26575                }
26576             }
26577          }
26578          part { name: "elm.icon";
26579             type: SWALLOW;
26580             description { state: "default" 0.0;
26581                rel1.to: "elm.icon.bg";
26582                rel2.to: "elm.icon.bg";
26583             }
26584          }
26585          part { name: "elm.padding.icon.right";
26586             type: RECT;
26587             mouse_events: 0;
26588             scale: 1;
26589             description { state: "default" 0.0;
26590                min: GENLIST_PADDING_16_INC 0;
26591                fixed: 1 0;
26592                rel1 {
26593                    relative: 1.0 0.0;
26594                    to_x: "elm.icon.bg";
26595                }
26596                rel2.to_x: "elm.icon.bg";
26597                visible: 0;
26598                align: 0.0 0.5;
26599             }
26600          }
26601          part { name: "elm.padding.text.left";
26602             type: RECT;
26603             mouse_events: 0;
26604             scale: 1;
26605             description { state: "default" 0.0;
26606                min: GENLIST_PADDING_16_INC 0;
26607                fixed: 1 0;
26608                rel1 {
26609                    relative: 1.0 1.0;
26610                    to_x: "elm.padding.icon.right";
26611                    to_y: "elm.padding.top";
26612                }
26613                rel2.to_x: "elm.padding.icon.right";
26614                visible: 0;
26615                align: 1.0 0.5;
26616             }
26617          }
26618          part { name: "vertical_line";
26619             type: RECT;
26620             mouse_events: 0;
26621             description { state: "default" 0.0;
26622                visible: 0;
26623                rel1 {
26624                   relative: 1.0 1.0;
26625                   to_x: "elm.padding.text.left";
26626                   to_y: "elm.padding.top";
26627                }
26628                rel2 {
26629                   relative: 1.0 0.0;
26630                   to_x: "elm.padding.text.left";
26631                   to_y: "elm.padding.bottom";
26632                }
26633             }
26634          }
26635          part { name: "text_vertical_rect";
26636             type: RECT;
26637             mouse_events: 0;
26638             scale: 1;
26639             description { state: "default" 0.0;
26640                min: GENLIST_SIZE_16_INC 0;
26641                fixed: 1 0;
26642                color: GENLIST_DIALOGUE_GROUP_LEFT_BG_COLOR_INC;
26643                rel1 {
26644                   relative: 1.0 1.0;
26645                   to_x: "vertical_line";
26646                   to_y: "elm.padding.top";
26647                }
26648                rel2 {
26649                   relative: 1.0 0.0;
26650                   to_x: "elm.padding.text.left";
26651                   to_y: "elm.padding.bottom";
26652                }
26653                align: 0.0 0.5;
26654             }
26655          }
26656          part { name: "elm.padding.text.right";
26657             type: RECT;
26658             mouse_events: 0;
26659             scale: 1;
26660             description { state: "default" 0.0;
26661                min: GENLIST_PADDING_16_INC 0;
26662                fixed: 1 0;
26663                rel1 {
26664                    relative: 1.0 0.0;
26665                    to_x: "text_vertical_rect";
26666                }
26667                rel2.to_x: "text_vertical_rect";
26668                visible: 0;
26669                align: 0.0 0.5;
26670             }
26671          }
26672          part { name: "text_top_line";
26673             type: RECT;
26674             mouse_events: 0;
26675             description { state: "default" 0.0;
26676                min: 0 1;
26677                fixed: 0 1;
26678                color: GENLIST_PART_LIST_LINE_COLOR_INC;
26679                rel1 {
26680                   relative: 1.0 0.0;
26681                   to_x: "text_vertical_rect";
26682                   to_y: "text_vertical_rect";
26683                }
26684                rel2 {
26685                   relative: 1.0 0.0;
26686                   to_y: "text_vertical_rect";
26687                }
26688                align: 0.0 0.0;
26689             }
26690          }
26691          part { name: "text_center_line";
26692             type: RECT;
26693             mouse_events: 0;
26694             description { state: "default" 0.0;
26695                min: 0 1;
26696                fixed: 0 1;
26697                color: GENLIST_PART_LIST_LINE_COLOR_INC;
26698                rel1 {
26699                   relative: 1.0 0.56;
26700                   to_x: "text_vertical_rect";
26701                }
26702                rel2.relative: 1.0 0.56;
26703                align: 0.5 0.5;
26704             }
26705          }
26706          part { name: "text_bottom_line";
26707             type: RECT;
26708             mouse_events: 0;
26709             description { state: "default" 0.0;
26710                min: 0 1;
26711                fixed: 0 1;
26712                color: GENLIST_PART_LIST_LINE_COLOR_INC;
26713                rel1 {
26714                   relative: 1.0 1.0;
26715                   to_x: "text_vertical_rect";
26716                   to_y: "text_vertical_rect";
26717                }
26718                rel2 {
26719                   relative: 1.0 1.0;
26720                   to_y: "text_vertical_rect";
26721                }
26722                align: 0.0 1.0;
26723             }
26724          }
26725          part { name: "elm.text.bg.1";
26726             clip_to: "disclip";
26727             type: RECT;
26728             mouse_events: 0;
26729             scale: 1;
26730             description { state: "default" 0.0;
26731                rel1 {
26732                   relative: 1.0 1.0;
26733                   to_x: "text_vertical_rect";
26734                   to_y: "text_top_line";
26735                }
26736                rel2 {
26737                   relative: 1.0 0.0;
26738                   to_x: "elm.padding.right";
26739                   to_y: "text_center_line";
26740                }
26741                color: GENLIST_PART_BG_COLOR_INC;
26742             }
26743          }
26744          part { name: "elm.text.1";
26745             type: TEXT;
26746             mouse_events: 0;
26747             scale: 1;
26748             description { state: "default" 0.0;
26749                min: 0 GENLIST_SIZE_54_INC;
26750                rel1 {
26751                   relative: 1.0 0.0;
26752                   to_x: "elm.padding.text.right";
26753                   to_y: "elm.text.bg.1";
26754                }
26755                rel2 {
26756                   relative: 0.0 1.0;
26757                   to_x: "elm.padding.right";
26758                   to_y: "elm.text.bg.1";
26759                }
26760                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
26761                text {
26762                   font: "SLP:style=Roman";
26763                   size: GENLIST_FONT_48_INC;
26764                   align: 0.0 0.5;
26765                   text_class: "list_item";
26766                }
26767             }
26768             GENLIST_DESCRIPTION_FLIP_ENABLED
26769          }
26770          part { name: "elm.flip.content.1";
26771             type: SWALLOW;
26772             description { state: "default" 0.0;
26773                visible: 0;
26774                fixed: 1 1;
26775                rel1.to: "elm.text.1";
26776                rel2.to: "elm.text.1";
26777             }
26778             description { state: "flip_enabled" 0.0;
26779                inherit: "default" 0.0;
26780                visible: 1;
26781             }
26782          }
26783          part { name: "elm.text.bg.2";
26784             clip_to: "disclip";
26785             type: RECT;
26786             mouse_events: 0;
26787             scale: 1;
26788             description { state: "default" 0.0;
26789                rel1 {
26790                   relative: 1.0 1.0;
26791                   to_x: "text_vertical_rect";
26792                   to_y: "text_center_line";
26793                }
26794                rel2 {
26795                   relative: 1.0 0.0;
26796                   to_x: "elm.padding.right";
26797                   to_y: "text_bottom_line";
26798                }
26799                color: GENLIST_PART_BG_COLOR_INC;
26800             }
26801          }
26802          part { name: "elm.text.2";
26803             clip_to: "disclip";
26804             type: TEXT;
26805             mouse_events: 0;
26806             scale: 1;
26807             description { state: "default" 0.0;
26808                min: 0 GENLIST_SIZE_54_INC;
26809                rel1 {
26810                   relative: 1.0 0.0;
26811                   to_x: "elm.padding.text.right";
26812                   to_y: "elm.text.bg.2";
26813                }
26814                rel2 {
26815                   relative: 0.0 1.0;
26816                   to_x: "elm.padding.right";
26817                   to_y: "elm.text.bg.2";
26818                }
26819                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
26820                text {
26821                   font: "SLP:style=Roman";
26822                   size: GENLIST_FONT_48_INC;
26823                   text_class: "slp_roman";
26824                }
26825             }
26826             GENLIST_DESCRIPTION_FLIP_ENABLED
26827          }
26828          part { name: "elm.flip.content.2";
26829             type: SWALLOW;
26830             description { state: "default" 0.0;
26831                visible: 0;
26832                fixed: 1 1;
26833                rel1.to: "elm.text.2";
26834                rel2.to: "elm.text.2";
26835             }
26836             description { state: "flip_enabled" 0.0;
26837                inherit: "default" 0.0;
26838                visible: 1;
26839             }
26840          }
26841          GENLIST_PART_DISCLIP
26842       }
26843       programs {
26844          // signal: elm,state,%s,active
26845          //   a "check" item named %s went active
26846          // signal: elm,state,%s,passive
26847          //   a "check" item named %s went passive
26848          // default is passive
26849          /*program { name: "go_active";
26850             signal: "elm,state,selected";
26851             source: "elm";
26852             action: STATE_SET "selected" 0.0;
26853             target: "elm.text";
26854             target: "elm.text.sub";
26855          }
26856          program { name: "go_passive";
26857             signal: "elm,state,unselected";
26858             source: "elm";
26859             action: STATE_SET "default" 0.0;
26860             target: "elm.text";
26861             target: "elm.text.sub";
26862             transition: LINEAR 0.1;
26863          }*/
26864          program { name: "go_disabled";
26865             signal: "elm,state,disabled";
26866             source: "elm";
26867             action: STATE_SET "disabled" 0.0;
26868             target: "disclip";
26869          }
26870          program { name: "go_enabled";
26871             signal: "elm,state,enabled";
26872             source: "elm";
26873             action: STATE_SET "default" 0.0;
26874             target: "disclip";
26875          }
26876          program { name: "flip_enabled";
26877             signal: "elm,state,flip,enabled";
26878             source: "elm";
26879             action: STATE_SET "flip_enabled" 0.0;
26880             target: "elm.text.1";
26881             target: "elm.text.2";
26882             target: "elm.flip.content.1";
26883             target: "elm.flip.content.2";
26884          }
26885          program { name: "flip_disabled";
26886             signal: "elm,state,flip,disabled";
26887             source: "elm";
26888             action: STATE_SET "default" 0.0;
26889             target: "elm.text.1";
26890             target: "elm.text.2";
26891             target: "elm.flip.content.1";
26892             target: "elm.flip.content.2";
26893          }
26894       }
26895    }
26896
26897    ///////// will be removed /////////
26898    group { name: "elm/genlist/item/dialogue/1icon.2/default";
26899       alias: "elm/genlist/item_odd/dialogue/1icon.2/default";
26900       alias: "elm/genlist/item_compress/dialogue/1icon.2/default";
26901       alias: "elm/genlist/item_compress_odd/dialogue/1icon.2/default";
26902       alias: "elm/layout/dialogue/1icon.2";
26903       data.item: "stacking" "above";
26904       data.item: "selectraise" "on";
26905       data.item: "contents" "elm.icon";
26906
26907       parts {
26908          GENLIST_PART_BASE( GENLIST_HEIGHT_113_INC )
26909          GENLIST_PART_BOTTOM_LINE
26910          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
26911          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
26912          GENLIST_PART_DIALOGUE_ITEM
26913          part { name: "elm.icon";
26914             clip_to: "disclip";
26915             type: SWALLOW;
26916             scale: 1;
26917             description { state: "default" 0.0;
26918                rel1 {
26919                   relative: 1.0 0.0;
26920                   to_x: "elm.padding.left";
26921                }
26922                rel2 {
26923                   relative: 0.0 1.0;
26924                   to_x: "elm.padding.right";
26925                }
26926             }
26927          }
26928          GENLIST_PART_DISCLIP
26929       }
26930       programs {
26931          // signal: elm,state,%s,active
26932          //   a "check" item named %s went active
26933          // signal: elm,state,%s,passive
26934          //   a "check" item named %s went passive
26935          // default is passive
26936          /*program { name: "go_active";
26937             signal: "elm,state,selected";
26938             source: "elm";
26939             action: STATE_SET "selected" 0.0;
26940             target: "bg_image";
26941             target: "elm.text";
26942          }
26943          program { name: "go_passive";
26944             signal: "elm,state,unselected";
26945             source: "elm";
26946             action: STATE_SET "default" 0.0;
26947             target: "bg_image";
26948             target: "elm.text";
26949             transition: LINEAR 0.1;
26950          }*/
26951          program { name: "go_disabled";
26952             signal: "elm,state,disabled";
26953             source: "elm";
26954             action: STATE_SET "disabled" 0.0;
26955             target: "disclip";
26956          }
26957          program { name: "go_enabled";
26958             signal: "elm,state,enabled";
26959             source: "elm";
26960             action: STATE_SET "default" 0.0;
26961             target: "disclip";
26962          }
26963       }
26964    }
26965
26966    //////////////////////// will be removed //////////////////////////
26967    group { name: "elm/genlist/item/dialogue/bg/2text.1icon/default";
26968       alias: "elm/genlist/item_odd/dialogue/bg/2text.1icon/default";
26969       alias: "elm/genlist/item_compress/dialogue/bg/2text.1icon/default";
26970       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.1icon/default";
26971       alias: "elm/genlist/item/dialogue.1icon.2text/default";
26972       alias: "elm/genlist/item_odd/dialogue.1icon.2text/default";
26973       alias: "elm/genlist/item_compress/dialogue.1icon.2text/default";
26974       alias: "elm/genlist/item_compress_odd/dialogue.1icon.2text/default";
26975       alias: "elm/layout/dialogue/bg/2text.1icon";
26976       data.item: "stacking" "above";
26977       data.item: "selectraise" "on";
26978       data.item: "texts" "elm.text.1 elm.text.2";
26979       data.item: "contents" "elm.icon";
26980       images {
26981           image: "00_list_thumbnail_bg.png" COMP;
26982       }
26983       parts {
26984          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_190_INC )
26985          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_46_INC )
26986          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_48_INC )
26987          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
26988          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
26989          part { name: "elm.icon.bg";
26990             scale: 1;
26991             description { state: "default" 0.0;
26992                min: GENLIST_SIZE_128_INC GENLIST_SIZE_128_INC;
26993                fixed: 1 1;
26994                align: 0.0 0.5;
26995                rel1 {
26996                   relative: 1.0 0.5;
26997                   to_x: "elm.padding.left";
26998                }
26999                rel2 {
27000                   relative: 1.0 0.5;
27001                   to_x: "elm.padding.left";
27002                }
27003                image {
27004                   normal: "00_list_thumbnail_bg.png";
27005                   border: 1 1 1 1;
27006                   border_scale: 1;
27007                   middle: NONE;
27008                }
27009             }
27010          }
27011          part { name: "elm.icon";
27012             type: SWALLOW;
27013             description { state: "default" 0.0;
27014                rel1.to: "elm.icon.bg";
27015                rel2.to: "elm.icon.bg";
27016             }
27017          }
27018          part { name: "elm.padding.icon.right";
27019             type: RECT;
27020             mouse_events: 0;
27021             scale: 1;
27022             description { state: "default" 0.0;
27023                min: GENLIST_PADDING_24_INC 0;
27024                fixed: 1 0;
27025                rel1 {
27026                    relative: 1.0 0.0;
27027                    to_x: "elm.icon.bg";
27028                }
27029                rel2.to_x: "elm.icon.bg";
27030                visible: 0;
27031                align: 0.0 0.5;
27032             }
27033          }
27034          part { name: "elm.text.1";
27035             clip_to: "disclip";
27036             type: TEXT;
27037             mouse_events: 0;
27038             scale: 1;
27039             description { state: "default" 0.0;
27040                min: 0 GENLIST_SIZE_54_INC;
27041                fixed: 0 1;
27042                align: 0 0;
27043                rel1 {
27044                   relative: 1.0 1.0;
27045                   to_x: "elm.padding.icon.right";
27046                   to_y: "elm.padding.top";
27047                }
27048                rel2 {
27049                   relative: 0.0 1.0;
27050                   to_x: "elm.padding.right";
27051                   to_y: "elm.padding.top";
27052                }
27053                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_MAIN_COLOR_INC;
27054                text {
27055                   font: "SLP:style=Roman";
27056                   size: GENLIST_FONT_48_INC;
27057                   align: 0.0 0.0;
27058                   text_class: "list_item";
27059                }
27060             }
27061          }
27062          part { name: "elm.text.2";
27063             clip_to: "disclip";
27064             type: TEXT;
27065             mouse_events: 0;
27066             scale: 1;
27067             description { state: "default" 0.0;
27068                rel1 {
27069                   relative: 1.0 1.0;
27070                   to_x: "elm.padding.icon.right";
27071                   to_y: "elm.text.1";
27072                }
27073                rel2 {
27074                   relative: 0.0 0.0;
27075                   to_x: "elm.padding.right";
27076                   to_y: "elm.padding.bottom";
27077                }
27078                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
27079                text {
27080                   font: "SLP:style=Medium";
27081                   size: GENLIST_FONT_32_INC;
27082                   align: 0.0 1.0;
27083                   text_class: "slp_medium";
27084                }
27085             }
27086          }
27087          GENLIST_PART_DISCLIP
27088       }
27089       programs {
27090          // signal: elm,state,%s,active
27091          //   a "check" item named %s went active
27092          // signal: elm,state,%s,passive
27093          //   a "check" item named %s went passive
27094          // default is passive
27095          /*program { name: "go_active";
27096             signal: "elm,state,selected";
27097             source: "elm";
27098             action: STATE_SET "selected" 0.0;
27099             target: "elm.text";
27100             target: "elm.text.sub";
27101          }
27102          program { name: "go_passive";
27103             signal: "elm,state,unselected";
27104             source: "elm";
27105             action: STATE_SET "default" 0.0;
27106             target: "elm.text";
27107             target: "elm.text.sub";
27108             transition: LINEAR 0.1;
27109          }*/
27110          program { name: "go_disabled";
27111             signal: "elm,state,disabled";
27112             source: "elm";
27113             action: STATE_SET "disabled" 0.0;
27114             target: "disclip";
27115          }
27116          program { name: "go_enabled";
27117             signal: "elm,state,enabled";
27118             source: "elm";
27119             action: STATE_SET "default" 0.0;
27120             target: "disclip";
27121          }
27122       }
27123    }
27124
27125 // 4.3.2 (old)
27126    group { name: "elm/genlist/item/dialogue/bg/3text.1icon/default";
27127       alias: "elm/genlist/item_odd/dialogue/bg/3text.1icon/default";
27128       alias: "elm/genlist/item_compress/dialogue/bg/3text.1icon/default";
27129       alias: "elm/genlist/item_compress_odd/dialogue/bg/3text.1icon/default";
27130       alias: "elm/layout/dialogue/bg/3text.1icon";
27131       data.item: "stacking" "above";
27132       data.item: "selectraise" "on";
27133       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
27134       data.item: "contents" "elm.icon";
27135       images {
27136           image: "00_list_thumbnail_bg.png" COMP;
27137       }
27138       parts {
27139          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_190_INC )
27140          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_34_INC )
27141          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_34_INC )
27142          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
27143          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_16_INC )
27144          part { name: "elm.icon.bg";
27145             scale: 1;
27146             description { state: "default" 0.0;
27147                min: GENLIST_SIZE_128_INC GENLIST_SIZE_128_INC;
27148                fixed: 1 1;
27149                align: 0.0 0.5;
27150                rel1 {
27151                   relative: 1.0 0.5;
27152                   to_x: "elm.padding.left";
27153                }
27154                rel2 {
27155                   relative: 1.0 0.5;
27156                   to_x: "elm.padding.left";
27157                }
27158                image {
27159                   normal: "00_list_thumbnail_bg.png";
27160                   border: 1 1 1 1;
27161                   border_scale: 1;
27162                   middle: NONE;
27163                }
27164             }
27165          }
27166          part { name: "elm.icon";
27167             type: SWALLOW;
27168             description { state: "default" 0.0;
27169                rel1.to: "elm.icon.bg";
27170                rel2.to: "elm.icon.bg";
27171             }
27172          }
27173          part { name: "elm.padding.icon.right";
27174             type: RECT;
27175             mouse_events: 0;
27176             scale: 1;
27177             description { state: "default" 0.0;
27178                min: GENLIST_PADDING_24_INC 0;
27179                fixed: 1 0;
27180                rel1 {
27181                    relative: 1.0 0.0;
27182                    to_x: "elm.icon.bg";
27183                }
27184                rel2.to_x: "elm.icon.bg";
27185                visible: 0;
27186                align: 0.0 0.5;
27187             }
27188          }
27189          part { name: "elm.text.1";
27190             clip_to: "disclip";
27191             type: TEXT;
27192             mouse_events: 0;
27193             scale: 1;
27194             description { state: "default" 0.0;
27195                min: 0 GENLIST_SIZE_54_INC;
27196                fixed: 0 1;
27197                align: 0 0;
27198                rel1 {
27199                   relative: 1.0 1.0;
27200                   to_x: "elm.padding.icon.right";
27201                   to_y: "elm.padding.top";
27202                }
27203                rel2 {
27204                   relative: 0.0 1.0;
27205                   to_x: "elm.padding.right";
27206                   to_y: "elm.padding.top";
27207                }
27208                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_MAIN_COLOR_INC;
27209                text {
27210                   font: "SLP:style=Roman";
27211                   size: GENLIST_FONT_48_INC;
27212                   align: 0.0 0.0;
27213                   text_class: "list_item";
27214                }
27215             }
27216          }
27217          part { name: "elm.text.2";
27218             clip_to: "disclip";
27219             type: TEXT;
27220             mouse_events: 0;
27221             scale: 1;
27222             description { state: "default" 0.0;
27223                rel1 {
27224                   relative: 1.0 1.0;
27225                   to_x: "elm.padding.icon.right";
27226                   to_y: "elm.text.1";
27227                }
27228                rel2 {
27229                   relative: 0.0 0.0;
27230                   to_x: "elm.padding.right";
27231                   to_y: "elm.text.3";
27232                }
27233                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
27234                text {
27235                   font: "SLP:style=Medium";
27236                   size: GENLIST_FONT_32_INC;
27237                   align: 0.0 1.0;
27238                   text_class: "slp_medium";
27239                }
27240             }
27241          }
27242          part { name: "elm.text.3";
27243             clip_to: "disclip";
27244             type: TEXT;
27245             mouse_events: 0;
27246             scale: 1;
27247             description { state: "default" 0.0;
27248                min: 0 GENLIST_SIZE_32_INC;
27249                fixed: 0 1;
27250                align: 0 1;
27251                rel1 {
27252                   relative: 1.0 0.0;
27253                   to_x: "elm.padding.icon.right";
27254                   to_y: "elm.padding.bottom";
27255                }
27256                rel2 {
27257                   relative: 0.0 0.0;
27258                   to_x: "elm.padding.right";
27259                   to_y: "elm.padding.bottom";
27260                }
27261                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
27262                text {
27263                   font: "SLP:style=Medium";
27264                   size: GENLIST_FONT_32_INC;
27265                   align: 0.0 1.0;
27266                   text_class: "slp_medium";
27267                }
27268             }
27269          }
27270          GENLIST_PART_DISCLIP
27271       }
27272       programs {
27273          // signal: elm,state,%s,active
27274          //   a "check" item named %s went active
27275          // signal: elm,state,%s,passive
27276          //   a "check" item named %s went passive
27277          // default is passive
27278          /*program { name: "go_active";
27279             signal: "elm,state,selected";
27280             source: "elm";
27281             action: STATE_SET "selected" 0.0;
27282             target: "elm.text";
27283             target: "elm.text.sub";
27284          }
27285          program { name: "go_passive";
27286             signal: "elm,state,unselected";
27287             source: "elm";
27288             action: STATE_SET "default" 0.0;
27289             target: "elm.text";
27290             target: "elm.text.sub";
27291             transition: LINEAR 0.1;
27292          }*/
27293          program { name: "go_disabled";
27294             signal: "elm,state,disabled";
27295             source: "elm";
27296             action: STATE_SET "disabled" 0.0;
27297             target: "disclip";
27298          }
27299          program { name: "go_enabled";
27300             signal: "elm,state,enabled";
27301             source: "elm";
27302             action: STATE_SET "default" 0.0;
27303             target: "disclip";
27304          }
27305       }
27306   }
27307
27308 ////////////////////////////////////////////////////////