Change 1text multiline's Background image
[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_SIZE_LEFT )
46          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
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_1LINE )
156          GENLIST_PART_BG_IMAGE
157          GENLIST_PART_BOTTOM_LINE
158          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
159          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
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 // Tizen Theme -------------------------------------------------------------------
258 // 2.2.1.1
259    group { name: "elm/genlist/item/1text/default";
260       alias: "elm/genlist/item_odd/1text/default";
261       alias: "elm/genlist/item_compress/1text/default";
262       alias: "elm/genlist/item_compress_odd/1text/default";
263
264       data.item: "stacking" "above";
265       data.item: "selectraise" "on";
266       data.item: "texts" "elm.text";
267       data.item: "flips" "elm.flip.icon elm.flip.content";
268       images {
269          image: "00_list_bar_press_1x80.png" COMP;
270       }
271       parts {
272          GENLIST_PART_DISCLIP
273          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
274          GENLIST_PART_BG_IMAGE
275          GENLIST_PART_BOTTOM_LINE
276          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
277          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
278          GENLIST_PART_FLIP
279          part { name: "elm.text";
280             clip_to: "disclip";
281             type: TEXT;
282             mouse_events: 0;
283             scale: 1;
284             description { state: "default" 0.0;
285                align: 0.0 0.5;
286                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
287                rel1 {
288                   relative: 1.0 0.0;
289                   to_x: "elm.padding.left";
290                }
291                rel2 {
292                   relative: 0.0 1.0;
293                   to_x: "elm.padding.right";
294                }
295                text {
296                   font: "SLP:style=Roman";
297                   size: GENLIST_FONT_44_INC;
298                   max: 1 1;
299                   align: 0.0 0.5;
300                   text_class: "list_item";
301                }
302             }
303             description { state: "selected" 0.0;
304                inherit: "default" 0.0;
305                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
306             }
307             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
308             GENLIST_DESCRIPTION_FLIP_ENABLED
309          }
310       }
311       programs {
312          // signal: elm,state,%s,active
313          //   a "check" item named %s went active
314          // signal: elm,state,%s,passive
315          //   a "check" item named %s went passive
316          // default is passive
317          program { name: "go_active";
318             signal: "elm,state,selected";
319             source: "elm";
320             action: STATE_SET "selected" 0.0;
321             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_1TEXT
322             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
323          }
324          program { name: "go_passive";
325             signal: "elm,state,unselected";
326             source: "elm";
327             action: STATE_SET "default" 0.0;
328             target: "bg_image";
329             target: "elm.text";
330             transition: LINEAR 0.1;
331          }
332          program { name: "go_disabled";
333             signal: "elm,state,disabled";
334             source: "elm";
335             action: STATE_SET "disabled" 0.0;
336             target: "disclip";
337          }
338          program { name: "go_enabled";
339             signal: "elm,state,enabled";
340             source: "elm";
341             action: STATE_SET "default" 0.0;
342             target: "disclip";
343          }
344          GENLIST_PROGRAM_FLIP_1TEXT
345          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
346       }
347    }
348 // 2.2.1.1 (textblock)
349    group { name: "elm/genlist/item_compress/1text.tb/default";
350       inherit: "elm/genlist/item/1text/default";
351       parts {
352          part { name: "elm.text";
353             type: TEXTBLOCK;
354             description { state: "default" 0.0;
355                rel1 {
356                   relative: 1.0 0.0;
357                   to_x: "elm.padding.left";
358                }
359                rel2 {
360                   relative: 0.0 1.0;
361                   to_x: "elm.padding.right";
362                }
363                align: 0.0 0.5;
364                text {
365                   style: "genlist_default_textblock_style";
366                }
367             }
368             description { state: "selected" 0.0;
369                inherit: "default" 0.0;
370                // FIXME: Why color textblock of is not changed by text.style?
371                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
372                text.style: "genlist_default_textblock_selected_style";
373             }
374             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
375             GENLIST_DESCRIPTION_FLIP_ENABLED
376          }
377       }
378    }
379 // scaled automatically by icon size
380 // 2.2.1.5
381 // 2.2.1.6
382 // 2.2.1.7
383    group { name: "elm/genlist/item/1text.1icon/default";
384       alias: "elm/genlist/item_odd/1text.1icon/default";
385       alias: "elm/genlist/item_compress/1text.1icon/default";
386       alias: "elm/genlist/item_compress_odd/1text.1icon/default";
387           alias: "elm/genlist/item/1text.1icon.4/default";
388       alias: "elm/genlist/item_odd/1text.1icon.4/default";
389       alias: "elm/genlist/item_compress/1text.1icon.4/default";
390       alias: "elm/genlist/item_compress_odd/1text.1icon.4/default";
391
392       inherit: "elm/genlist/item/1text/default";
393
394       data.item: "contents" "elm.icon";
395       parts {
396          part { name: "elm.text";
397             description { state: "default" 0.0;
398                rel2 {
399                   relative: 0.0 1.0;
400                   to_x: "elm.icon";
401                   offset: -GENLIST_PADDING_SIZE_DEFAULT 0;
402                }
403             }
404             description { state: "selected" 0.0;
405                rel2 {
406                   relative: 0.0 1.0;
407                   to_x: "elm.icon";
408                   offset: -GENLIST_PADDING_SIZE_DEFAULT 0;
409                }
410             }
411          }
412          part { name: "elm.icon";
413             clip_to: "disclip";
414             type: SWALLOW;
415             scale: 1;
416             description { state: "default" 0.0;
417                fixed: 1 1;
418                align: 1.0 0.5;
419                rel1 {
420                   relative: 0.0 0.0;
421                   to_x: "elm.padding.right";
422                }
423                rel2 {
424                   relative: 0.0 1.0;
425                   to_x: "elm.padding.right";
426                }
427             }
428             GENLIST_DESCRIPTION_FLIP_ENABLED
429          }
430       }
431       programs {
432          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
433       }
434    }
435 // 2.2.1.4
436    group { name: "elm/genlist/item/1text.1icon.6/default";
437       alias: "elm/genlist/item_odd/1text.1icon.6/default";
438       alias: "elm/genlist/item_compress/1text.1icon.6/default";
439       alias: "elm/genlist/item_compress_odd/1text.1icon.6/default";
440       inherit: "elm/genlist/item/1text.1icon/default";
441
442       parts {
443          part { name: "elm.icon";
444             description { state: "default" 0.0;
445                fixed: 1 1;
446                min: 0 GENLIST_TEXT_BTN_HEIGHT;
447                            max: 0 GENLIST_TEXT_BTN_HEIGHT;
448
449             }
450          }
451       }
452    }
453 // 2.2.1.8
454    group { name: "elm/genlist/item/1text.1icon.5/default";
455       alias: "elm/genlist/item_odd/1text.1icon.5/default";
456       alias: "elm/genlist/item_compress/1text.1icon.5/default";
457       alias: "elm/genlist/item_compress_odd/1text.1icon.5/default";
458       inherit: "elm/genlist/item/1text.1icon/default";
459
460       parts {
461          part { name: "elm.icon";
462             description { state: "default" 0.0;
463                rel1.offset: GENLIST_PADDING_SIZE_DEFAULT 0;
464                rel2.offset: GENLIST_PADDING_SIZE_DEFAULT 0;
465             }
466          }
467       }
468    }
469
470 // Scalable icon
471    group { name: "elm/genlist/item/1text.1icon.1/default";
472       alias: "elm/genlist/item_odd/1text.1icon.1/default";
473       alias: "elm/genlist/item_compress/1text.1icon.1/default";
474       alias: "elm/genlist/item_compress_odd/1text.1icon.1/default";
475       inherit: "elm/genlist/item/1text.1icon/default";
476
477       parts {
478          part { name: "elm.text";
479             description { state: "default" 0.0;
480                rel1 {
481                   relative: 1.0 0.0;
482                   to_x: "elm.icon";
483                   offset: GENLIST_PADDING_SIZE_DEFAULT 0;
484                }
485                rel2 {
486                   relative: 0.0 1.0;
487                   to_x: "elm.padding.right";
488                }
489             }
490             description { state: "selected" 0.0;
491                inherit: "default" 0.0;
492                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
493             }
494
495          }
496          part { name: "elm.icon";
497             description { state: "default" 0.0;
498                align: 0.0 0.5;
499                rel1 {
500                   relative: 1.0 0.0;
501                   to_x: "elm.padding.left";
502                }
503                rel2 {
504                   relative: 1.0 1.0;
505                   to_x: "elm.padding.left";
506                }
507             }
508             GENLIST_DESCRIPTION_FLIP_ENABLED
509          }
510       }
511    }
512
513 // 2.2.1.9
514    group { name: "elm/genlist/item/1text.2icon.3/default";
515       alias: "elm/genlist/item_odd/1text.2icon.3/default";
516       alias: "elm/genlist/item_compress/1text.2icon.3/default";
517       alias: "elm/genlist/item_compress_odd/1text.2icon.3/default";
518       data.item: "stacking" "above";
519       data.item: "selectraise" "on";
520       data.item: "texts" "elm.text";
521       data.item: "contents" "elm.icon.1 elm.icon.2";
522       data.item: "flips" "elm.flip.content";
523       images {
524          image: "00_list_bar_press_1x80.png" COMP;
525       }
526       parts {
527          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
528          GENLIST_PART_BG_IMAGE
529          GENLIST_PART_BOTTOM_LINE
530          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
531          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
532          part { name: "elm.icon.1";
533             type: SWALLOW;
534             clip_to: "disclip";
535             scale: 1;
536             description { state: "default" 0.0;
537                min: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
538                max: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
539                fixed: 1 1;
540                rel1 {
541                   relative: 0.0 0.0;
542                   to_x: "elm.padding.right";
543                }
544                rel2 {
545                   relative: 0.0 1.0;
546                   to_x: "elm.padding.right";
547                }
548                align: 1.0 0.5;
549             }
550             GENLIST_DESCRIPTION_FLIP_ENABLED
551          }
552          part { name: "elm.padding.icon1.left";
553             type: RECT;
554             clip_to: "disclip";
555             scale: 1;
556             description { state: "default" 0.0;
557                min: GENLIST_PADDING_16_INC 0;
558                fixed: 1 0;
559                visible: 0;
560                rel1.to_x: "elm.icon.1";
561                rel2 {
562                   relative: 0.0 1.0;
563                   to_x: "elm.icon.1";
564                }
565                align: 1.0 0.0;
566             }
567          }
568          part { name: "elm.padding.icon1.left2";
569             type: RECT;
570             clip_to: "disclip";
571             scale: 1;
572             description { state: "default" 0.0;
573                min: GENLIST_PADDING_64_INC 0;
574                fixed: 1 0;
575                visible: 0;
576                rel1.to_x: "elm.icon.1";
577                rel2 {
578                   relative: 0.0 1.0;
579                   to_x: "elm.icon.1";
580                }
581                align: 1.0 0.0;
582             }
583          }
584          part { name: "elm.text";
585             type: TEXT;
586             clip_to: "disclip";
587             mouse_events: 0;
588             scale: 1;
589             description { state: "default" 0.0;
590                rel1 {
591                   relative: 1.0 0.0;
592                   to_x: "elm.padding.left";
593                }
594                rel2 {
595                   relative: 0.0 1.0;
596                   to_x: "elm.padding.icon1.left2";
597                }
598                align: 0.0 0.5;
599                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
600                text {
601                   font: "SLP:style=Roman";
602                   size: GENLIST_FONT_44_INC;
603                   min: 0 1;
604                   max: 1 0;
605                   align: 0.0 0.5;
606                   text_class: "list_item";
607                }
608             }
609             description { state: "selected" 0.0;
610                inherit: "default" 0.0;
611                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
612             }
613             GENLIST_DESCRIPTION_FLIP_ENABLED
614          }
615          part { name: "elm.padding.text.right";
616             type: RECT;
617             clip_to: "disclip";
618             scale: 1;
619             description { state: "default" 0.0;
620                min: GENLIST_PADDING_16_INC 0;
621                fixed: 1 0;
622                rel1 {
623                   relative: 1.0 0.0;
624                   to_x: "elm.text";
625                }
626                rel2.to_x: "elm.text";
627                align: 0.0 0.0;
628                visible: 0;
629             }
630          }
631          part { name: "elm.icon.2.rect";
632             type: RECT;
633             clip_to: "disclip";
634             scale: 1;
635             description { state: "default" 0.0;
636                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
637                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
638                rel1 {
639                   relative: 1.0 0.0;
640                   to_x: "elm.padding.text.right";
641                }
642                rel2 {
643                   relative: 0.0 1.0;
644                   to_x: "elm.padding.icon1.left";
645                }
646                align: 0.0 0.5;
647                color: 0 0 0 0;
648             }
649             GENLIST_DESCRIPTION_FLIP_ENABLED
650          }
651          part { name: "elm.icon.2";
652             type: SWALLOW;
653             clip_to: "disclip";
654             description { state: "default" 0.0;
655                fixed: 1 1;
656                rel1.to: "elm.icon.2.rect";
657                rel2.to: "elm.icon.2.rect";
658             }
659             GENLIST_DESCRIPTION_FLIP_ENABLED
660          }
661          GENLIST_PART_FLIP
662          GENLIST_PART_DISCLIP
663       }
664       programs {
665          program { name: "go_active";
666             signal: "elm,state,selected";
667             source: "elm";
668             action: STATE_SET "selected" 0.0;
669             target: "bg_image";
670             target: "elm.text";
671             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
672          }
673          program { name: "go_passive";
674             signal: "elm,state,unselected";
675             source: "elm";
676             action: STATE_SET "default" 0.0;
677             target: "bg_image";
678             target: "elm.text";
679             transition: LINEAR 0.1;
680          }
681          program { name: "go_disabled";
682             signal: "elm,state,disabled";
683             source: "elm";
684             action: STATE_SET "disabled" 0.0;
685             target: "disclip";
686          }
687          program { name: "go_enabled";
688             signal: "elm,state,enabled";
689             source: "elm";
690             action: STATE_SET "default" 0.0;
691             target: "disclip";
692          }
693          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
694          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
695       }
696    }
697
698    group { name: "elm/genlist/item_compress/1text.2icon.3.tb/default";
699       inherit: "elm/genlist/item/1text.2icon.3/default";
700       parts {
701          part { name: "elm.text";
702             type: TEXTBLOCK;
703             clip_to: "disclip";
704             mouse_events: 0;
705             scale: 1;
706             description { state: "default" 0.0;
707                rel1 {
708                   relative: 1.0 0.0;
709                   to_x: "elm.padding.left";
710                }
711                rel2 {
712                   relative: 0.0 1.0;
713                   to_x: "elm.padding.icon1.left2";
714                }
715                align: 0.0 0.5;
716                text {
717                   style: "genlist_default_textblock_style";
718                   min: 0 1;
719                   max: 1 0;
720                   align: 0.0 0.5;
721                }
722             }
723             description { state: "selected" 0.0;
724                inherit: "default" 0.0;
725                text.style: "genlist_default_textblock_selected_style";
726             }
727             GENLIST_DESCRIPTION_FLIP_ENABLED
728          }
729       }
730    }
731
732
733 // 2.2.1.10
734 // 2.2.1.20
735    group { name: "elm/genlist/item/1text.1icon.2/default";
736       alias: "elm/genlist/item_odd/1text.1icon.2/default";
737       alias: "elm/genlist/item_compress/1text.1icon.2/default";
738       alias: "elm/genlist/item_compress_odd/1text.1icon.2/default";
739       inherit: "elm/genlist/item/1text.1icon.1/default";
740
741       parts {
742          part { name: "elm.icon";
743             description { state: "default" 0.0;
744                fixed: 1 1;
745                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
746                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
747             }
748             GENLIST_DESCRIPTION_FLIP_ENABLED
749          }
750       }
751    }
752
753 // 2.2.1.10 textblock
754    group { name: "elm/genlist/item_compress/1text.1icon.2.tb/default";
755       inherit: "elm/genlist/item/1text.1icon.2/default";
756       parts {
757          part { name: "elm.text";
758             clip_to: "disclip";
759             type: TEXTBLOCK;
760             mouse_events: 0;
761             scale: 1;
762             description { state: "default" 0.0;
763                align: 0.0 0.5;
764                rel1 {
765                   relative: 1.0 0.0;
766                   to_x: "elm.icon";
767                }
768                rel2 {
769                   relative: 0.0 1.0;
770                   to_x: "elm.padding.right";
771                }
772                text {
773                   style: "genlist_default_textblock_style";
774                   min: 0 1;
775                   align: 0.0 0.5;
776                }
777             }
778             description { state: "selected" 0.0;
779                inherit: "default" 0.0;
780                // FIXME: Why is not textblock changed by text.style?
781                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
782                text.style: "genlist_default_textblock_selected_style";
783             }
784             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
785             GENLIST_DESCRIPTION_FLIP_ENABLED
786          }
787       }
788    }
789
790 // 2.2.1.16
791    group { name: "elm/genlist/item/1text.1icon.3/default";
792       alias: "elm/genlist/item_odd/1text.1icon.3/default";
793       alias: "elm/genlist/item_compress/1text.1icon.3/default";
794       alias: "elm/genlist/item_compress_odd/1text.1icon.3/default";
795       inherit: "elm/genlist/item/1text.1icon.1/default";
796
797       parts {
798          part { name: "elm.icon";
799             description { state: "default" 0.0;
800                fixed: 1 1;
801                min: GENLIST_ICON_CHECK_SIZE GENLIST_ICON_CHECK_SIZE;
802                max: GENLIST_ICON_CHECK_SIZE GENLIST_ICON_CHECK_SIZE;
803             }
804             GENLIST_DESCRIPTION_FLIP_ENABLED
805          }
806       }
807    }
808
809
810 // 2.2.1.13
811 // 2.2.1.14
812 // 2.2.1.15
813    group { name: "elm/genlist/item/1text.2icon/default";
814       alias: "elm/genlist/item_odd/1text.2icon/default";
815       alias: "elm/genlist/item_compress/1text.2icon/default";
816       alias: "elm/genlist/item_compress_odd/1text.2icon/default";
817       data.item: "stacking" "above";
818       data.item: "selectraise" "on";
819       data.item: "texts" "elm.text";
820       data.item: "contents" "elm.icon.1 elm.icon.2";
821       data.item: "flips" "elm.flip.content";
822       images {
823          image: "00_list_bar_press_1x80.png" COMP;
824       }
825       parts {
826          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
827          GENLIST_PART_BG_IMAGE
828          GENLIST_PART_BOTTOM_LINE
829          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
830          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
831          part { name: "elm.icon.1";
832             clip_to: "disclip";
833             type: SWALLOW;
834             scale: 1;
835             description { state: "default" 0.0;
836                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
837                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
838                fixed: 1 1;
839                rel1 {
840                   relative: 1.0 0.0;
841                   to_x: "elm.padding.left";
842                }
843                rel2 {
844                   relative: 1.0 1.0;
845                   to_x: "elm.padding.left";
846                }
847                align: 0.0 0.5;
848             }
849             GENLIST_DESCRIPTION_FLIP_ENABLED
850          }
851          part { name: "elm.padding.icon1.right";
852             clip_to: "disclip";
853             type: RECT;
854             scale: 1;
855             description { state: "default" 0.0;
856                min: GENLIST_SIZE_16_INC 0;
857                fixed: 1 0;
858                rel1 {
859                   relative: 1.0 0.0;
860                   to_x: "elm.icon.1";
861                }
862                rel2.to_x: "elm.icon.1";
863                visible: 0;
864             }
865          }
866          part { name: "elm.icon.2";
867             clip_to: "disclip";
868             type: SWALLOW;
869             scale: 1;
870             description { state: "default" 0.0;
871                fixed: 1 1;
872                rel1 {
873                   relative: 0.0 0.0;
874                   to_x: "elm.padding.right";
875                }
876                rel2 {
877                   relative: 0.0 1.0;
878                   to_x: "elm.padding.right";
879                }
880                align: 1.0 0.5;
881             }
882             GENLIST_DESCRIPTION_FLIP_ENABLED
883          }
884          part { name: "elm.padding.icon2.left";
885             clip_to: "disclip";
886             type: RECT;
887             scale: 1;
888             description { state: "default" 0.0;
889                min: GENLIST_PADDING_16_INC 0;
890                fixed: 1 0;
891                rel1.to_x: "elm.icon.2";
892                rel2 {
893                   relative: 0.0 1.0;
894                   to_x: "elm.icon.2";
895                }
896                align: 1.0 0.0;
897                visible: 0;
898             }
899          }
900          part { name: "elm.text";
901             clip_to: "disclip";
902             type: TEXT;
903             mouse_events: 0;
904             scale: 1;
905             description { state: "default" 0.0;
906                rel1 {
907                   relative: 1.0 0.0;
908                   to_x: "elm.padding.icon1.right";
909                }
910                rel2 {
911                   relative: 0.0 1.0;
912                   to_x: "elm.padding.icon2.left";
913                }
914                align: 0.0 0.5;
915                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
916                text {
917                   font: "SLP:style=Roman";
918                   size: GENLIST_FONT_44_INC;
919                   min: 0 1;
920                   align: 0.0 0.5;
921                   text_class: "list_item";
922                }
923             }
924             description { state: "selected" 0.0;
925                inherit: "default" 0.0;
926                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
927             }
928             GENLIST_DESCRIPTION_FLIP_ENABLED
929          }
930          GENLIST_PART_FLIP
931          GENLIST_PART_DISCLIP
932       }
933       programs {
934          program { name: "go_active";
935             signal: "elm,state,selected";
936             source: "elm";
937             action: STATE_SET "selected" 0.0;
938             target: "bg_image";
939             target: "elm.text";
940             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
941          }
942          program { name: "go_passive";
943             signal: "elm,state,unselected";
944             source: "elm";
945             action: STATE_SET "default" 0.0;
946             target: "bg_image";
947             target: "elm.text";
948             transition: LINEAR 0.1;
949          }
950          program { name: "go_disabled";
951             signal: "elm,state,disabled";
952             source: "elm";
953             action: STATE_SET "disabled" 0.0;
954             target: "disclip";
955          }
956          program { name: "go_enabled";
957             signal: "elm,state,enabled";
958             source: "elm";
959             action: STATE_SET "default" 0.0;
960             target: "disclip";
961          }
962          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
963          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
964       }
965    }
966
967 // 2.2.1.18
968    group { name: "elm/genlist/item/1text.2icon.2/default";
969       alias: "elm/genlist/item_odd/1text.2icon.2/default";
970       alias: "elm/genlist/item_compress/1text.2icon.2/default";
971       alias: "elm/genlist/item_compress_odd/1text.2icon.2/default";
972       data.item: "stacking" "above";
973       data.item: "selectraise" "on";
974       data.item: "texts" "elm.text";
975       data.item: "contents" "elm.icon.1 elm.icon.2";
976       data.item: "flips" "elm.flip.content";
977       images {
978          image: "00_list_bar_press_1x80.png" COMP;
979       }
980       parts {
981          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
982          GENLIST_PART_BG_IMAGE
983          GENLIST_PART_BOTTOM_LINE
984          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
985          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
986          part { name: "elm.icon.1";
987             clip_to: "disclip";
988             type: SWALLOW;
989             scale: 1;
990             description { state: "default" 0.0;
991                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
992                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
993                fixed: 1 1;
994                rel1 {
995                   relative: 1.0 0.0;
996                   to_x: "elm.padding.left";
997                }
998                rel2.to_x: "elm.padding.left";
999                align: 0.0 0.5;
1000             }
1001             GENLIST_DESCRIPTION_FLIP_ENABLED
1002          }
1003          part { name: "elm.padding.icon1.right";
1004             clip_to: "disclip";
1005             type: RECT;
1006             scale: 1;
1007             description { state: "default" 0.0;
1008                min: GENLIST_PADDING_16_INC 0;
1009                fixed: 1 0;
1010                rel1 {
1011                   relative: 1.0 0.0;
1012                   to_x: "elm.icon.1";
1013                }
1014                rel2.to_x: "elm.icon.1";
1015                align: 0.0 0.0;
1016                visible: 0;
1017             }
1018          }
1019          part { name: "elm.icon.2";
1020             clip_to: "disclip";
1021             type: SWALLOW;
1022             scale: 1;
1023             description { state: "default" 0.0;
1024                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1025                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1026                fixed: 1 1;
1027                rel1 {
1028                   relative: 1.0 0.0;
1029                   to_x: "elm.padding.icon1.right";
1030                }
1031                rel2.to_x: "elm.padding.icon1.right";
1032                align: 0.0 0.5;
1033             }
1034             GENLIST_DESCRIPTION_FLIP_ENABLED
1035          }
1036          part { name: "elm.padding.icon2.right";
1037             type: RECT;
1038             scale: 1;
1039             description { state: "default" 0.0;
1040                min: GENLIST_PADDING_16_INC 0;
1041                fixed: 1 0;
1042                rel1 {
1043                   relative: 1.0 0.0;
1044                   to_x: "elm.icon.2";
1045                }
1046                rel2.to_x: "elm.icon.2";
1047                align: 0.0 0.5;
1048                visible: 0;
1049             }
1050          }
1051          part { name: "elm.text";
1052             clip_to: "disclip";
1053             type: TEXT;
1054             mouse_events: 0;
1055             scale: 1;
1056             description { state: "default" 0.0;
1057                rel1 {
1058                   relative: 1.0 0.0;
1059                   to_x: "elm.padding.icon2.right";
1060                }
1061                rel2 {
1062                   relative: 0.0 1.0;
1063                   to_x: "elm.padding.right";
1064                }
1065                align: 0.0 0.5;
1066                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
1067                text {
1068                   font: "SLP:style=Roman";
1069                   size: GENLIST_FONT_44_INC;
1070                   min: 0 1;
1071                   align: 0.0 0.5;
1072                   text_class: "list_item";
1073                }
1074             }
1075             description { state: "selected" 0.0;
1076                inherit: "default" 0.0;
1077                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
1078             }
1079             GENLIST_DESCRIPTION_FLIP_ENABLED
1080          }
1081          GENLIST_PART_FLIP
1082          GENLIST_PART_DISCLIP
1083       }
1084       programs {
1085          program { name: "go_active";
1086             signal: "elm,state,selected";
1087             source: "elm";
1088             action: STATE_SET "selected" 0.0;
1089             target: "bg_image";
1090             target: "elm.text";
1091             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1092          }
1093          program { name: "go_passive";
1094             signal: "elm,state,unselected";
1095             source: "elm";
1096             action: STATE_SET "default" 0.0;
1097             target: "bg_image";
1098             target: "elm.text";
1099             transition: LINEAR 0.1;
1100          }
1101          program { name: "go_disabled";
1102             signal: "elm,state,disabled";
1103             source: "elm";
1104             action: STATE_SET "disabled" 0.0;
1105             target: "disclip";
1106          }
1107          program { name: "go_enabled";
1108             signal: "elm,state,enabled";
1109             source: "elm";
1110             action: STATE_SET "default" 0.0;
1111             target: "disclip";
1112          }
1113          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
1114          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1115       }
1116    }
1117
1118 // 3.1.14
1119    group { name: "elm/genlist/item/1text.2icon.6/default";
1120       alias: "elm/genlist/item_odd/1text.2icon.6/default";
1121       alias: "elm/genlist/item_compress/1text.2icon.6/default";
1122       alias: "elm/genlist/item_compress_odd/1text.2icon.6/default";
1123       data.item: "stacking" "above";
1124       data.item: "selectraise" "on";
1125       data.item: "texts" "elm.text";
1126       data.item: "contents" "elm.icon.1 elm.icon.2";
1127       data.item: "flips" "elm.flip.content";
1128       images {
1129          image: "00_list_bar_press_1x80.png" COMP;
1130       }
1131       parts {
1132          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
1133          GENLIST_PART_BG_IMAGE
1134          GENLIST_PART_BOTTOM_LINE
1135          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
1136          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
1137          part { name: "elm.icon.1";
1138             clip_to: "disclip";
1139             type: SWALLOW;
1140             scale: 1;
1141             description { state: "default" 0.0;
1142                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1143                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1144                fixed: 1 1;
1145                rel1 {
1146                   relative: 1.0 0.0;
1147                   to_x: "elm.padding.left";
1148                }
1149                rel2 {
1150                   relative: 1.0 1.0;
1151                   to_x: "elm.padding.left";
1152                }
1153                align: 0.0 0.5;
1154             }
1155             GENLIST_DESCRIPTION_FLIP_ENABLED
1156          }
1157          part { name: "elm.padding.icon1.right";
1158             clip_to: "disclip";
1159             type: RECT;
1160             scale: 1;
1161             description { state: "default" 0.0;
1162                min: GENLIST_PADDING_16_INC 0;
1163                fixed: 1 0;
1164                rel1 {
1165                   relative: 1.0 0.0;
1166                   to_x: "elm.icon.1";
1167                }
1168                rel2.to_x: "elm.icon.1";
1169                visible: 0;
1170             }
1171          }
1172          part { name: "elm.icon.2";
1173             clip_to: "disclip";
1174             type: SWALLOW;
1175             scale: 1;
1176             description { state: "default" 0.0;
1177                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1178                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1179                fixed: 1 1;
1180                rel1 {
1181                   relative: 0.0 0.0;
1182                   to_x: "elm.padding.right";
1183                }
1184                rel2 {
1185                   relative: 0.0 1.0;
1186                   to_x: "elm.padding.right";
1187                }
1188                align: 1.0 0.5;
1189             }
1190             GENLIST_DESCRIPTION_FLIP_ENABLED
1191          }
1192          part { name: "elm.padding.icon2.left";
1193             clip_to: "disclip";
1194             type: RECT;
1195             scale: 1;
1196             description { state: "default" 0.0;
1197                min: GENLIST_PADDING_16_INC 0;
1198                fixed: 1 0;
1199                rel1.to_x: "elm.icon.2";
1200                rel2 {
1201                   relative: 0.0 1.0;
1202                   to_x: "elm.icon.2";
1203                }
1204                align: 1.0 0.0;
1205                visible: 0;
1206             }
1207          }
1208          part { name: "elm.text";
1209             clip_to: "disclip";
1210             type: TEXT;
1211             mouse_events: 0;
1212             scale: 1;
1213             description { state: "default" 0.0;
1214                rel1 {
1215                   relative: 1.0 0.0;
1216                   to_x: "elm.padding.icon1.right";
1217                }
1218                rel2 {
1219                   relative: 0.0 1.0;
1220                   to_x: "elm.padding.icon2.left";
1221                }
1222                align: 0.0 0.5;
1223                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
1224                text {
1225                   font: "SLP:style=Roman";
1226                   size: GENLIST_FONT_44_INC;
1227                   min: 0 1;
1228                   align: 0.0 0.5;
1229                   text_class: "list_item";
1230                }
1231             }
1232             description { state: "selected" 0.0;
1233                inherit: "default" 0.0;
1234                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
1235             }
1236             GENLIST_DESCRIPTION_FLIP_ENABLED
1237          }
1238          GENLIST_PART_FLIP
1239          GENLIST_PART_DISCLIP
1240       }
1241       programs {
1242          program { name: "go_active";
1243             signal: "elm,state,selected";
1244             source: "elm";
1245             action: STATE_SET "selected" 0.0;
1246             target: "bg_image";
1247             target: "elm.text";
1248             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1249          }
1250          program { name: "go_passive";
1251             signal: "elm,state,unselected";
1252             source: "elm";
1253             action: STATE_SET "default" 0.0;
1254             target: "bg_image";
1255             target: "elm.text";
1256             transition: LINEAR 0.1;
1257          }
1258          program { name: "go_disabled";
1259             signal: "elm,state,disabled";
1260             source: "elm";
1261             action: STATE_SET "disabled" 0.0;
1262             target: "disclip";
1263          }
1264          program { name: "go_enabled";
1265             signal: "elm,state,enabled";
1266             source: "elm";
1267             action: STATE_SET "default" 0.0;
1268             target: "disclip";
1269          }
1270          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
1271          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1272       }
1273    }
1274
1275    group { name: "elm/genlist/item_compress/1text.2icon.6.tb/default";
1276       inherit: "elm/genlist/item/1text.2icon.6/default";
1277       parts {
1278          part { name: "elm.text";
1279             clip_to: "disclip";
1280             type: TEXTBLOCK;
1281             mouse_events: 0;
1282             scale: 1;
1283             description { state: "default" 0.0;
1284                rel1 {
1285                   relative: 1.0 0.0;
1286                   to_x: "elm.padding.icon1.right";
1287                }
1288                rel2 {
1289                   relative: 0.0 1.0;
1290                   to_x: "elm.padding.icon2.left";
1291                }
1292                align: 0.0 0.5;
1293                text {
1294                   style: "genlist_default_textblock_style";
1295                   min: 0 1;
1296                   align: 0.0 0.5;
1297                }
1298             }
1299             description { state: "selected" 0.0;
1300                inherit: "default" 0.0;
1301                text.style: "genlist_default_textblock_selected_style";
1302             }
1303             GENLIST_DESCRIPTION_FLIP_ENABLED
1304          }
1305       }
1306    }
1307
1308 // 2Text -------------------------------------------------------------------------
1309 // 2.2.1.2
1310    group { name: "elm/genlist/item/2text/default";
1311       alias: "elm/genlist/item_odd/2text/default";
1312       alias: "elm/genlist/item_compress/2text/default";
1313       alias: "elm/genlist/item_compress_odd/2text/default";
1314
1315       data.item: "stacking" "above";
1316       data.item: "selectraise" "on";
1317       data.item: "texts" "elm.text.1 elm.text.2";
1318       data.item: "flips" "elm.flip.icon elm.flip.content";
1319       images {
1320          image: "00_list_bar_press_1x80.png" COMP;
1321       }
1322       parts {
1323          GENLIST_PART_DISCLIP
1324          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
1325          GENLIST_PART_BG_IMAGE
1326          GENLIST_PART_BOTTOM_LINE
1327          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
1328          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
1329          GENLIST_PART_FLIP
1330          part { name: "elm.text.1";
1331             clip_to: "disclip";
1332             type: TEXT;
1333             mouse_events: 0;
1334             scale: 1;
1335             description { state: "default" 0.0;
1336                align: 0.0 0.5;
1337                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
1338                rel1 {
1339                   relative: 1.0 0.0;
1340                   to_x: "elm.padding.left";
1341                }
1342                rel2 {
1343                   relative: 0.0 1.0;
1344                   to_x: "elm.text.2";
1345                }
1346                text {
1347                   font: "SLP:style=Roman";
1348                   size: GENLIST_FONT_44_INC;
1349                   min: 0 1;
1350                   align: 0.0 0.5;
1351                   text_class: "list_item";
1352                }
1353             }
1354             description { state: "selected" 0.0;
1355                inherit: "default" 0.0;
1356                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
1357             }
1358             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
1359             GENLIST_DESCRIPTION_FLIP_ENABLED
1360          }
1361          part { name: "elm.text.2";
1362             clip_to: "disclip";
1363             type: TEXT;
1364             mouse_events: 0;
1365             scale: 1;
1366             description { state: "default" 0.0;
1367                fixed: 1 0;
1368                min: GENLIST_TEXT2_WIDTH_MIN 0;
1369                align: 1.0 0.5;
1370                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
1371                rel1 {
1372                   relative: 0.0 0.0;
1373                   to_x: "elm.padding.right";
1374                }
1375                rel2 {
1376                   relative: 0.0 1.0;
1377                   to_x: "elm.padding.right";
1378                }
1379                text {
1380                   font: "SLP:style=Medium";
1381                   size: GENLIST_FONT_32_INC;
1382                   min: 0 1;
1383                   align: 1.0 0.5;
1384                   text_class: "slp_medium";
1385                }
1386             }
1387             description { state: "selected" 0.0;
1388                inherit: "default" 0.0;
1389                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
1390             }
1391             GENLIST_DESCRIPTION_FLIP_ENABLED
1392          }
1393       }
1394       programs {
1395        program { name: "go_active";
1396             signal: "elm,state,selected";
1397             source: "elm";
1398             action: STATE_SET "selected" 0.0;
1399             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_2TEXT
1400             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1401          }
1402          program { name: "go_passive";
1403             signal: "elm,state,unselected";
1404             source: "elm";
1405             action: STATE_SET "default" 0.0;
1406             target: "bg_image";
1407             target: "elm.text.1";
1408             target: "elm.text.2";
1409             transition: LINEAR 0.1;
1410          }
1411          program { name: "go_disabled";
1412             signal: "elm,state,disabled";
1413             source: "elm";
1414             action: STATE_SET "disabled" 0.0;
1415             target: "disclip";
1416          }
1417          program { name: "go_enabled";
1418             signal: "elm,state,enabled";
1419             source: "elm";
1420             action: STATE_SET "default" 0.0;
1421             target: "disclip";
1422          }
1423          GENLIST_PROGRAM_FLIP_2TEXT
1424          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1425       }
1426    }
1427
1428 // 2.2.1.3
1429    group { name: "elm/genlist/item/2text.6/default";
1430       alias: "elm/genlist/item_odd/2text.6/default";
1431       alias: "elm/genlist/item_compress/2text.6/default";
1432       alias: "elm/genlist/item_compress_odd/2text.6/default";
1433       inherit: "elm/genlist/item/2text/default";
1434
1435       parts {
1436          part { name: "elm.text.2";
1437             description { state: "default" 0.0;
1438                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
1439             }
1440          }
1441       }
1442    }
1443
1444
1445 // 2.2.1.11
1446 // 3.1.11
1447    group { name: "elm/genlist/item/2text.1icon/default";
1448       alias: "elm/genlist/item_odd/2text.1icon/default";
1449       alias: "elm/genlist/item_compress/2text.1icon/default";
1450       alias: "elm/genlist/item_compress_odd/2text.1icon/default";
1451       data.item: "stacking" "above";
1452       data.item: "selectraise" "on";
1453       data.item: "texts" "elm.text.1 elm.text.2";
1454       data.item: "contents" "elm.icon";
1455       data.item: "flips" "elm.flip.content";
1456       images {
1457          image: "00_list_bar_press_1x80.png" COMP;
1458       }
1459       parts {
1460          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
1461          GENLIST_PART_BG_IMAGE
1462          GENLIST_PART_BOTTOM_LINE
1463          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
1464          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
1465          part { name: "elm.icon";
1466             clip_to: "disclip";
1467             type: SWALLOW;
1468             scale: 1;
1469             description { state: "default" 0.0;
1470                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1471                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1472                fixed: 1 1;
1473                rel1 {
1474                   relative: 1.0 0.0;
1475                   to_x: "elm.padding.left";
1476                }
1477                rel2 {
1478                   relative: 1.0 1.0;
1479                   to_x: "elm.padding.left";
1480                }
1481                align: 0.0 0.5;
1482             }
1483             GENLIST_DESCRIPTION_FLIP_ENABLED
1484          }
1485          part { name: "elm.padding.icon.right";
1486             clip_to: "disclip";
1487             type: RECT;
1488             scale: 1;
1489             description { state: "default" 0.0;
1490                min: GENLIST_PADDING_16_INC 0;
1491                fixed: 1 0;
1492                rel1 {
1493                   relative: 1.0 0.0;
1494                   to_x: "elm.icon";
1495                }
1496                rel2.to_x: "elm.icon";
1497                visible: 0;
1498             }
1499          }
1500          part { name: "elm.text.2";
1501             clip_to: "disclip";
1502             type: TEXT;
1503             mouse_events: 0;
1504             scale: 1;
1505             description { state: "default" 0.0;
1506                min: GENLIST_SIZE_133_INC 0;
1507                fixed: 1 0;
1508                rel1.to_x: "elm.padding.right";
1509                rel2 {
1510                   relative: 0.0 1.0;
1511                   to_x: "elm.padding.right";
1512                }
1513                align: 1.0 0.5;
1514                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
1515                text {
1516                   font: "SLP:style=Medium";
1517                   size: GENLIST_FONT_32_INC;
1518                   min: 0 1;
1519                   align: 1.0 0.5;
1520                   text_class: "slp_medium";
1521                }
1522             }
1523             description { state: "selected" 0.0;
1524                inherit: "default" 0.0;
1525                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
1526             }
1527             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
1528             GENLIST_DESCRIPTION_FLIP_ENABLED
1529          }
1530          part { name: "elm.padding.text2.left";
1531             clip_to: "disclip";
1532             type: RECT;
1533             mouse_events: 0;
1534             scale: 1;
1535             description { state: "default" 0.0;
1536                min: GENLIST_ICON_SMALL_SIZE 0;
1537                fixed: 1 0;
1538                rel1.to_x: "elm.text.2";
1539                rel2 {
1540                   relative: 0.0 1.0;
1541                   to_x: "elm.text.2";
1542                }
1543                visible: 0;
1544                align: 1.0 0.5;
1545             }
1546          }
1547          part { name: "elm.text.1";
1548             clip_to: "disclip";
1549             type: TEXT;
1550             mouse_events: 0;
1551             scale: 1;
1552             description { state: "default" 0.0;
1553                rel1 {
1554                   relative: 1.0 0.0;
1555                   to_x: "elm.padding.icon.right";
1556                }
1557                rel2 {
1558                   relative: 0.0 1.0;
1559                   to_x: "elm.padding.text2.left";
1560                }
1561                align: 0.0 0.5;
1562                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
1563                text {
1564                   font: "SLP:style=Roman";
1565                   size: GENLIST_FONT_44_INC;
1566                   min: 0 1;
1567                   align: 0.0 0.5;
1568                   text_class: "list_item";
1569                }
1570             }
1571             description { state: "selected" 0.0;
1572                inherit: "default" 0.0;
1573                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
1574             }
1575             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
1576             GENLIST_DESCRIPTION_FLIP_ENABLED
1577          }
1578          GENLIST_PART_FLIP
1579          GENLIST_PART_DISCLIP
1580       }
1581       programs {
1582          program { name: "go_active";
1583             signal: "elm,state,selected";
1584             source: "elm";
1585             action: STATE_SET "selected" 0.0;
1586             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_2TEXT
1587             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1588          }
1589          program { name: "go_passive";
1590             signal: "elm,state,unselected";
1591             source: "elm";
1592             action: STATE_SET "default" 0.0;
1593             target: "bg_image";
1594             target: "elm.text.1";
1595             target: "elm.text.2";
1596             transition: LINEAR 0.1;
1597          }
1598          program { name: "go_disabled";
1599             signal: "elm,state,disabled";
1600             source: "elm";
1601             action: STATE_SET "disabled" 0.0;
1602             target: "disclip";
1603          }
1604          program { name: "go_enabled";
1605             signal: "elm,state,enabled";
1606             source: "elm";
1607             action: STATE_SET "default" 0.0;
1608             target: "disclip";
1609          }
1610          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
1611          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1612       }
1613    }
1614
1615 // 2.2.1.12
1616    group { name: "elm/genlist/item/2text.1icon.6/default";
1617       alias: "elm/genlist/item_odd/2text.1icon.6/default";
1618       alias: "elm/genlist/item_compress/2text.1icon.6/default";
1619       alias: "elm/genlist/item_compress_odd/2text.1icon.6/default";
1620       data.item: "stacking" "above";
1621       data.item: "selectraise" "on";
1622       data.item: "texts" "elm.text.1 elm.text.2";
1623       data.item: "contents" "elm.icon";
1624       data.item: "flips" "elm.flip.content";
1625       images {
1626          image: "00_list_bar_press_1x80.png" COMP;
1627       }
1628       parts {
1629          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
1630          GENLIST_PART_BG_IMAGE
1631          GENLIST_PART_BOTTOM_LINE
1632          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
1633          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
1634          part { name: "elm.icon";
1635             clip_to: "disclip";
1636             type: SWALLOW;
1637             scale: 1;
1638             description { state: "default" 0.0;
1639                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1640                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1641                fixed: 1 1;
1642                rel1 {
1643                   relative: 1.0 0.0;
1644                   to_x: "elm.padding.left";
1645                }
1646                rel2 {
1647                   relative: 1.0 1.0;
1648                   to_x: "elm.padding.left";
1649                }
1650                align: 0.0 0.5;
1651             }
1652             GENLIST_DESCRIPTION_FLIP_ENABLED
1653          }
1654          part { name: "elm.padding.icon.right";
1655             clip_to: "disclip";
1656             type: RECT;
1657             scale: 1;
1658             description { state: "default" 0.0;
1659                min: GENLIST_PADDING_16_INC 0;
1660                fixed: 1 0;
1661                rel1 {
1662                   relative: 1.0 0.0;
1663                   to_x: "elm.icon";
1664                }
1665                rel2.to_x: "elm.icon";
1666                visible: 0;
1667             }
1668          }
1669          part { name: "elm.text.2";
1670             clip_to: "disclip";
1671             type: TEXT;
1672             mouse_events: 0;
1673             scale: 1;
1674             description { state: "default" 0.0;
1675                min: GENLIST_SIZE_133_INC 0;
1676                fixed: 1 0;
1677                rel1.to_x: "elm.padding.right";
1678                rel2 {
1679                   relative: 0.0 1.0;
1680                   to_x: "elm.padding.right";
1681                }
1682                align: 1.0 0.5;
1683                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
1684                text {
1685                   font: "SLP:style=Medium";
1686                   size: GENLIST_FONT_32_INC;
1687                   min: 0 1;
1688                   align: 1.0 0.5;
1689                   text_class: "slp_medium";
1690                }
1691             }
1692             description { state: "selected" 0.0;
1693                inherit: "default" 0.0;
1694                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
1695             }
1696             GENLIST_DESCRIPTION_FLIP_ENABLED
1697          }
1698          part { name: "elm.padding.text2.left";
1699             clip_to: "disclip";
1700             type: RECT;
1701             mouse_events: 0;
1702             scale: 1;
1703             description { state: "default" 0.0;
1704                min: GENLIST_ICON_SMALL_SIZE 0;
1705                fixed: 1 0;
1706                rel1.to_x: "elm.text.2";
1707                rel2 {
1708                   relative: 0.0 1.0;
1709                   to_x: "elm.text.2";
1710                }
1711                visible: 0;
1712                align: 1.0 0.5;
1713             }
1714          }
1715          part { name: "elm.text.1";
1716             clip_to: "disclip";
1717             type: TEXT;
1718             mouse_events: 0;
1719             scale: 1;
1720             description { state: "default" 0.0;
1721                rel1 {
1722                   relative: 1.0 0.0;
1723                   to_x: "elm.padding.icon.right";
1724                }
1725                rel2 {
1726                   relative: 0.0 1.0;
1727                   to_x: "elm.padding.text2.left";
1728                }
1729                align: 0.0 0.5;
1730                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
1731                text {
1732                   font: "SLP:style=Roman";
1733                   size: GENLIST_FONT_44_INC;
1734                   min: 0 1;
1735                   align: 0.0 0.5;
1736                   text_class: "list_item";
1737                }
1738             }
1739             description { state: "selected" 0.0;
1740                inherit: "default" 0.0;
1741                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
1742             }
1743             GENLIST_DESCRIPTION_FLIP_ENABLED
1744          }
1745          GENLIST_PART_FLIP
1746          GENLIST_PART_DISCLIP
1747       }
1748       programs {
1749          program { name: "go_active";
1750             signal: "elm,state,selected";
1751             source: "elm";
1752             action: STATE_SET "selected" 0.0;
1753             target: "bg_image";
1754             target: "elm.text.1";
1755             target: "elm.text.2";
1756             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1757          }
1758          program { name: "go_passive";
1759             signal: "elm,state,unselected";
1760             source: "elm";
1761             action: STATE_SET "default" 0.0;
1762             target: "bg_image";
1763             target: "elm.text.1";
1764             target: "elm.text.2";
1765             transition: LINEAR 0.1;
1766          }
1767          program { name: "go_disabled";
1768             signal: "elm,state,disabled";
1769             source: "elm";
1770             action: STATE_SET "disabled" 0.0;
1771             target: "disclip";
1772          }
1773          program { name: "go_enabled";
1774             signal: "elm,state,enabled";
1775             source: "elm";
1776             action: STATE_SET "default" 0.0;
1777             target: "disclip";
1778          }
1779          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
1780          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1781       }
1782    }
1783
1784
1785 // 3.1.19
1786    group { name: "elm/genlist/item/1text.3icon/default";
1787       alias: "elm/genlist/item_odd/1text.3icon/default";
1788       alias: "elm/genlist/item_compress/1text.3icon/default";
1789       alias: "elm/genlist/item_compress_odd/1text.3icon/default";
1790       data.item: "stacking" "above";
1791       data.item: "selectraise" "on";
1792       data.item: "texts" "elm.text";
1793       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
1794       data.item: "flips" "elm.flip.content";
1795       images {
1796          image: "00_list_bar_press_1x80.png" COMP;
1797       }
1798       parts {
1799          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
1800          GENLIST_PART_BG_IMAGE
1801          GENLIST_PART_BOTTOM_LINE
1802          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
1803          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
1804          part { name: "elm.icon.1";
1805             clip_to: "disclip";
1806             type: SWALLOW;
1807             scale: 1;
1808             description { state: "default" 0.0;
1809                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
1810                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
1811                fixed: 1 1;
1812                rel1 {
1813                   relative: 1.0 0.0;
1814                   to_x: "elm.padding.left";
1815                }
1816                rel2.to_x: "elm.padding.left";
1817                align: 0.0 0.5;
1818             }
1819             GENLIST_DESCRIPTION_FLIP_ENABLED
1820          }
1821          part { name: "elm.padding.icon1.right";
1822             clip_to: "disclip";
1823             type: RECT;
1824             scale: 1;
1825             description { state: "default" 0.0;
1826                min: GENLIST_PADDING_16_INC 0;
1827                fixed: 1 0;
1828                rel1 {
1829                   relative: 1.0 0.0;
1830                   to_x: "elm.icon.1";
1831                }
1832                rel2.to_x: "elm.icon.1";
1833                align: 0.0 0.0;
1834                visible: 0;
1835             }
1836          }
1837          part { name: "elm.icon.2";
1838             clip_to: "disclip";
1839             type: SWALLOW;
1840             scale: 1;
1841             description { state: "default" 0.0;
1842                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1843                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1844                fixed: 1 1;
1845                rel1 {
1846                   relative: 1.0 0.0;
1847                   to_x: "elm.padding.icon1.right";
1848                }
1849                rel2.to_x: "elm.padding.icon1.right";
1850                align: 0.0 0.5;
1851             }
1852             GENLIST_DESCRIPTION_FLIP_ENABLED
1853          }
1854          part { name: "elm.padding.icon2.right";
1855             clip_to: "disclip";
1856             type: RECT;
1857             scale: 1;
1858             description { state: "default" 0.0;
1859                min: GENLIST_PADDING_16_INC 0;
1860                fixed: 1 0;
1861                rel1 {
1862                   relative: 1.0 0.0;
1863                   to_x: "elm.icon.2";
1864                }
1865                rel2.to_x: "elm.icon.2";
1866                visible: 0;
1867             }
1868          }
1869          part { name: "elm.icon.3";
1870             clip_to: "disclip";
1871             type: SWALLOW;
1872             scale: 1;
1873             description { state: "default" 0.0;
1874                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1875                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
1876                fixed: 1 1;
1877                rel1 {
1878                   relative: 0.0 0.0;
1879                   to_x: "elm.padding.right";
1880                }
1881                rel2 {
1882                   relative: 0.0 1.0;
1883                   to_x: "elm.padding.right";
1884                }
1885                align: 1.0 0.5;
1886             }
1887             GENLIST_DESCRIPTION_FLIP_ENABLED
1888          }
1889          part { name: "elm.padding.icon3.left";
1890             clip_to: "disclip";
1891             type: RECT;
1892             scale: 1;
1893             description { state: "default" 0.0;
1894                min: GENLIST_PADDING_16_INC 0;
1895                fixed: 1 0;
1896                rel1.to_x: "elm.icon.3";
1897                rel2 {
1898                   relative: 0.0 1.0;
1899                   to_x: "elm.icon.3";
1900                }
1901                align: 1.0 0.0;
1902                visible: 0;
1903             }
1904          }
1905          part { name: "elm.text";
1906             clip_to: "disclip";
1907             type: TEXT;
1908             mouse_events: 0;
1909             scale: 1;
1910             description { state: "default" 0.0;
1911                rel1 {
1912                   relative: 1.0 0.0;
1913                   to_x: "elm.padding.icon2.right";
1914                }
1915                rel2 {
1916                   relative: 0.0 1.0;
1917                   to_x: "elm.padding.icon3.left";
1918                }
1919                align: 0.0 0.5;
1920                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
1921                text {
1922                   font: "SLP:style=Roman";
1923                   size: GENLIST_FONT_44_INC;
1924                   min: 0 1;
1925                   align: 0.0 0.5;
1926                   text_class: "list_item";
1927                }
1928             }
1929             description { state: "selected" 0.0;
1930                inherit: "default" 0.0;
1931                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
1932             }
1933             GENLIST_DESCRIPTION_FLIP_ENABLED
1934          }
1935          GENLIST_PART_FLIP
1936          GENLIST_PART_DISCLIP
1937       }
1938       programs {
1939          program { name: "go_active";
1940             signal: "elm,state,selected";
1941             source: "elm";
1942             action: STATE_SET "selected" 0.0;
1943             target: "bg_image";
1944             target: "elm.text";
1945             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
1946          }
1947          program { name: "go_passive";
1948             signal: "elm,state,unselected";
1949             source: "elm";
1950             action: STATE_SET "default" 0.0;
1951             target: "bg_image";
1952             target: "elm.text";
1953             transition: LINEAR 0.1;
1954          }
1955          program { name: "go_disabled";
1956             signal: "elm,state,disabled";
1957             source: "elm";
1958             action: STATE_SET "disabled" 0.0;
1959             target: "disclip";
1960          }
1961          program { name: "go_enabled";
1962             signal: "elm,state,enabled";
1963             source: "elm";
1964             action: STATE_SET "default" 0.0;
1965             target: "disclip";
1966          }
1967          GENLIST_PROGRAM_FLIP_1TEXT_3ICON
1968          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
1969       }
1970    }
1971
1972 // 3.1.24
1973    group { name: "elm/genlist/item/1text.3icon.2/default";
1974       alias: "elm/genlist/item_odd/1text.3icon.2/default";
1975       alias: "elm/genlist/item_compress/1text.3icon.2/default";
1976       alias: "elm/genlist/item_compress_odd/1text.3icon.2/default";
1977       data.item: "stacking" "above";
1978       data.item: "selectraise" "on";
1979       data.item: "texts" "elm.text";
1980       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
1981       data.item: "flips" "elm.flip.content";
1982       images {
1983          image: "00_list_bar_press_1x80.png" COMP;
1984       }
1985       parts {
1986          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
1987          GENLIST_PART_BG_IMAGE
1988          GENLIST_PART_BOTTOM_LINE
1989          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
1990          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
1991          part { name: "elm.icon.1";
1992             clip_to: "disclip";
1993             type: SWALLOW;
1994             scale: 1;
1995             description { state: "default" 0.0;
1996                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
1997                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
1998                fixed: 1 1;
1999                rel1 {
2000                   relative: 1.0 0.0;
2001                   to_x: "elm.padding.left";
2002                }
2003                rel2.to_x: "elm.padding.left";
2004                align: 0.0 0.5;
2005             }
2006             GENLIST_DESCRIPTION_FLIP_ENABLED
2007          }
2008          part { name: "elm.padding.icon1.right";
2009             clip_to: "disclip";
2010             type: RECT;
2011             scale: 1;
2012             description { state: "default" 0.0;
2013                min: GENLIST_PADDING_16_INC 0;
2014                fixed: 1 0;
2015                rel1 {
2016                   relative: 1.0 0.0;
2017                   to_x: "elm.icon.1";
2018                }
2019                rel2.to_x: "elm.icon.1";
2020                align: 0.0 0.5;
2021                visible: 0;
2022             }
2023          }
2024          part { name: "elm.icon.3";
2025             clip_to: "disclip";
2026             type: SWALLOW;
2027             scale: 1;
2028             description { state: "default" 0.0;
2029                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
2030                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
2031                fixed: 1 1;
2032                rel1.to_x: "elm.padding.right";
2033                rel2 {
2034                   relative: 0.0 1.0;
2035                   to_x: "elm.padding.right";
2036                }
2037                align: 1.0 0.5;
2038             }
2039             GENLIST_DESCRIPTION_FLIP_ENABLED
2040          }
2041          part { name: "elm.padding.icon3.left";
2042             clip_to: "disclip";
2043             type: RECT;
2044             scale: 1;
2045             description { state: "default" 0.0;
2046                min: GENLIST_PADDING_16_INC 0;
2047                fixed: 1 0;
2048                rel1 {
2049                   relative: 0.0 0.0;
2050                   to_x: "elm.icon.3";
2051                }
2052                rel2.to_x: "elm.icon.3";
2053                align: 1.0 0.0;
2054                visible: 0;
2055             }
2056          }
2057          part { name: "elm.icon.2";
2058             clip_to: "disclip";
2059             type: SWALLOW;
2060             scale: 1;
2061             description { state: "default" 0.0;
2062                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
2063                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
2064                fixed: 1 1;
2065                rel1.to_x: "elm.padding.icon3.left";
2066                rel2 {
2067                   relative: 0.0 1.0;
2068                   to_x: "elm.padding.icon3.left";
2069                }
2070                align: 1.0 0.5;
2071             }
2072             GENLIST_DESCRIPTION_FLIP_ENABLED
2073          }
2074          part { name: "elm.padding.icon2.left";
2075             clip_to: "disclip";
2076             type: RECT;
2077             scale: 1;
2078             description { state: "default" 0.0;
2079                min: GENLIST_PADDING_16_INC 0;
2080                fixed: 1 0;
2081                rel1 {
2082                   relative: 0.0 0.0;
2083                   to_x: "elm.icon.2";
2084                }
2085                rel2.to_x: "elm.icon.2";
2086                align: 0.0 0.5;
2087                visible: 0;
2088             }
2089          }
2090          part { name: "elm.text";
2091             clip_to: "disclip";
2092             type: TEXT;
2093             mouse_events: 0;
2094             scale: 1;
2095             description { state: "default" 0.0;
2096                rel1 {
2097                   relative: 1.0 0.0;
2098                   to_x: "elm.padding.icon1.right";
2099                }
2100                rel2 {
2101                   relative: 0.0 1.0;
2102                   to_x: "elm.padding.icon2.left";
2103                }
2104                align: 0.0 0.5;
2105                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
2106                text {
2107                   font: "SLP:style=Roman";
2108                   size: GENLIST_FONT_44_INC;
2109                   min: 0 1;
2110                   align: 0.0 0.5;
2111                   text_class: "list_item";
2112                }
2113             }
2114             description { state: "selected" 0.0;
2115                inherit: "default" 0.0;
2116                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
2117             }
2118             GENLIST_DESCRIPTION_FLIP_ENABLED
2119          }
2120          GENLIST_PART_FLIP
2121          GENLIST_PART_DISCLIP
2122       }
2123       programs {
2124          program { name: "go_active";
2125             signal: "elm,state,selected";
2126             source: "elm";
2127             action: STATE_SET "selected" 0.0;
2128             target: "bg_image";
2129             target: "elm.text";
2130             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2131          }
2132          program { name: "go_passive";
2133             signal: "elm,state,unselected";
2134             source: "elm";
2135             action: STATE_SET "default" 0.0;
2136             target: "bg_image";
2137             target: "elm.text";
2138             transition: LINEAR 0.1;
2139          }
2140          program { name: "go_disabled";
2141             signal: "elm,state,disabled";
2142             source: "elm";
2143             action: STATE_SET "disabled" 0.0;
2144             target: "disclip";
2145          }
2146          program { name: "go_enabled";
2147             signal: "elm,state,enabled";
2148             source: "elm";
2149             action: STATE_SET "default" 0.0;
2150             target: "disclip";
2151          }
2152          GENLIST_PROGRAM_FLIP_1TEXT_3ICON
2153          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2154       }
2155    }
2156
2157 // 3.1.26
2158    group { name: "elm/genlist/item/2text.4/default";
2159       alias: "elm/genlist/item_odd/2text.4/default";
2160       alias: "elm/genlist/item_compress/2text.4/default";
2161       alias: "elm/genlist/item_compress_odd/2text.4/default";
2162       data.item: "stacking" "above";
2163       data.item: "selectraise" "on";
2164       data.item: "texts" "elm.text.1 elm.text.2";
2165       data.item: "flips" "elm.flip.content";
2166       images {
2167          image: "00_list_bar_press_1x80.png" COMP;
2168       }
2169       parts {
2170          GENLIST_PART_BASE( GENLIST_HEIGHT_97_INC )
2171          GENLIST_PART_BG_IMAGE
2172          GENLIST_PART_BOTTOM_LINE
2173          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
2174          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
2175          part { name: "elm.text.2";
2176             clip_to: "disclip";
2177             type: TEXT;
2178             mouse_events: 0;
2179             scale: 1;
2180             description { state: "default" 0.0;
2181                min: GENLIST_SIZE_206_INC 0;
2182                fixed: 1 0;
2183                rel1.to_x: "elm.padding.right";
2184                rel2 {
2185                   relative: 0.0 1.0;
2186                   to_x: "elm.padding.right";
2187                }
2188                align: 1.0 0.5;
2189                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
2190                text {
2191                   font: "SLP:style=Medium";
2192                   size: GENLIST_FONT_32_INC;
2193                   min: 0 1;
2194                   align: 0.0 0.5;
2195                   text_class: "slp_medium";
2196                }
2197             }
2198             description { state: "selected" 0.0;
2199                inherit: "default" 0.0;
2200                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
2201             }
2202             GENLIST_DESCRIPTION_FLIP_ENABLED
2203          }
2204          part { name: "elm.padding.text2.left";
2205             type: RECT;
2206             mouse_events: 0;
2207             scale: 1;
2208             description { state: "default" 0.0;
2209                min: GENLIST_PADDING_16_INC 0;
2210                fixed: 1 0;
2211                rel1.to_x: "elm.text.2";
2212                rel2 {
2213                   relative: 0.0 1.0;
2214                   to_x: "elm.text.2";
2215                }
2216                align: 1.0 0.5;
2217                visible: 0;
2218             }
2219          }
2220          part { name: "vertical_line";
2221             type: RECT;
2222             mouse_events: 0;
2223             description { state: "default" 0.0;
2224                min: 1 0;
2225                fixed: 1 0;
2226                rel1.to_x: "elm.padding.text2.left";
2227                rel2 {
2228                   relative: 0.0 1.0;
2229                   to_x: "elm.padding.text2.left";
2230                }
2231                align: 1.0 0.5;
2232                color: GENLIST_PART_LIST_LINE_COLOR_INC;
2233             }
2234          }
2235          part { name: "elm.padding.text1.right";
2236             type: RECT;
2237             mouse_events: 0;
2238             scale: 1;
2239             description { state: "default" 0.0;
2240                min: GENLIST_PADDING_16_INC 0;
2241                fixed: 1 0;
2242                rel1.to_x: "vertical_line";
2243                rel2 {
2244                   relative: 0.0 1.0;
2245                   to_x: "vertical_line";
2246                }
2247                align: 1.0 0.5;
2248                visible: 0;
2249             }
2250          }
2251          part { name: "elm.text.1";
2252             clip_to: "disclip";
2253             type: TEXT;
2254             mouse_events: 0;
2255             scale: 1;
2256             description { state: "default" 0.0;
2257                rel1 {
2258                   relative: 1.0 0.0;
2259                   to_x: "elm.padding.left";
2260                }
2261                rel2 {
2262                   relative: 0.0  1.0;
2263                   to_x: "elm.padding.text1.right";
2264                }
2265                color: GENLIST_PART_FONT_CONVERTOR_STYLE_COLOR_INC;
2266                text {
2267                   font: "SLP:style=Roman";
2268                   size: GENLIST_FONT_40_INC;
2269                   min: 0 1;
2270                   align: 1.0 0.5;
2271                   text_class: "list_item";
2272                }
2273             }
2274             description { state: "selected" 0.0;
2275                inherit: "default" 0.0;
2276                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
2277             }
2278             GENLIST_DESCRIPTION_FLIP_ENABLED
2279          }
2280          GENLIST_PART_FLIP
2281          GENLIST_PART_DISCLIP
2282       }
2283       programs {
2284          // signal: elm,state,%s,active
2285          //   a "check" item named %s went active
2286          // signal: elm,state,%s,passive
2287          //   a "check" item named %s went passive
2288          // default is passive
2289          program { name: "go_active";
2290             signal: "elm,state,selected";
2291             source: "elm";
2292             action: STATE_SET "selected" 0.0;
2293             target: "bg_image";
2294             target: "elm.text.1";
2295             target: "elm.text.2";
2296             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2297          }
2298          program { name: "go_passive";
2299             signal: "elm,state,unselected";
2300             source: "elm";
2301             action: STATE_SET "default" 0.0;
2302             target: "bg_image";
2303             target: "elm.text.1";
2304             target: "elm.text.2";
2305             transition: LINEAR 0.1;
2306          }
2307          program { name: "go_disabled";
2308             signal: "elm,state,disabled";
2309             source: "elm";
2310             action: STATE_SET "disabled" 0.0;
2311             target: "disclip";
2312          }
2313          program { name: "go_enabled";
2314             signal: "elm,state,enabled";
2315             source: "elm";
2316             action: STATE_SET "default" 0.0;
2317             target: "disclip";
2318          }
2319          program { name: "flip_enabled";
2320             signal: "elm,state,flip,enabled";
2321             source: "elm";
2322             action: STATE_SET "flip_enabled" 0.0;
2323             target: "elm.text.1";
2324             target: "elm.flip.content";
2325          }
2326          program { name: "flip_disabled";
2327             signal: "elm,state,flip,disabled";
2328             source: "elm";
2329             action: STATE_SET "default" 0.0;
2330             target: "elm.text.1";
2331             target: "elm.flip.content";
2332          }
2333          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2334       }
2335    }
2336
2337 // 3.1.27
2338    group { name: "elm/genlist/item/2text.5/default";
2339       alias: "elm/genlist/item_odd/2text.5/default";
2340       alias: "elm/genlist/item_compress/2text.5/default";
2341       alias: "elm/genlist/item_compress_odd/2text.5/default";
2342       data.item: "stacking" "above";
2343       data.item: "selectraise" "on";
2344       data.item: "texts" "elm.text.1 elm.text.2";
2345       data.item: "flips" "elm.flip.content";
2346       images {
2347          image: "00_list_bar_press_1x80.png" COMP;
2348       }
2349       parts {
2350          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
2351          GENLIST_PART_BG_IMAGE
2352          GENLIST_PART_BOTTOM_LINE
2353          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
2354          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
2355          part { name: "elm.text.1";
2356             clip_to: "disclip";
2357             type: TEXT;
2358             mouse_events: 0;
2359             scale: 1;
2360             description { state: "default" 0.0;
2361                min: GENLIST_SIZE_133_INC 0;
2362                fixed: 1 0;
2363                rel1 {
2364                   relative: 1.0 0.0;
2365                   to_x: "elm.padding.left";
2366                }
2367                rel2.to_x: "elm.padding.left";
2368                align: 0.0 0.5;
2369                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
2370                text {
2371                   font: "SLP:style=Medium";
2372                   size: GENLIST_FONT_32_INC;
2373                   min: 0 1;
2374                   align: 0.0 0.5;
2375                   text_class: "slp_medium";
2376                }
2377             }
2378             description { state: "selected" 0.0;
2379                inherit: "default" 0.0;
2380                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
2381             }
2382          }
2383          part { name: "elm.padding.text1.right";
2384             type: RECT;
2385             mouse_events: 0;
2386             scale: 1;
2387             description { state: "default" 0.0;
2388                min: GENLIST_PADDING_16_INC 0;
2389                fixed: 1 0;
2390                rel1 {
2391                    relative: 1.0 0.0;
2392                    to_x: "elm.text.1";
2393                }
2394                rel2.to_x: "elm.text.1";
2395                align: 0.0 0.5;
2396                visible: 0;
2397             }
2398          }
2399          part { name: "vertical_line";
2400             type: RECT;
2401             mouse_events: 0;
2402             description { state: "default" 0.0;
2403                min: 1 0;
2404                fixed: 1 0;
2405                rel1.to_x: "elm.padding.text1.right";
2406                rel2 {
2407                   relative: 0.0 1.0;
2408                   to_x: "elm.padding.text1.right";
2409                }
2410                align: 0.0 0.5;
2411                color: GENLIST_PART_LIST_LINE_COLOR_INC;
2412             }
2413          }
2414          part { name: "elm.padding.text2.left";
2415             type: RECT;
2416             mouse_events: 0;
2417             scale: 1;
2418             description { state: "default" 0.0;
2419                min: GENLIST_PADDING_16_INC 0;
2420                fixed: 1 0;
2421                rel1 {
2422                    relative: 1.0 0.0;
2423                    to_x: "vertical_line";
2424                }
2425                rel2.to_x: "vertical_line";
2426                align: 0.0 0.5;
2427                visible: 0;
2428             }
2429          }
2430          part { name: "elm.text.2";
2431             clip_to: "disclip";
2432             type: TEXT;
2433             mouse_events: 0;
2434             scale: 1;
2435             description { state: "default" 0.0;
2436                rel1 {
2437                   relative: 1.0 0.0;
2438                   to_x: "elm.padding.text2.left";
2439                }
2440                rel2 {
2441                   relative: 0.0  1.0;
2442                   to_x: "elm.padding.right";
2443                }
2444                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
2445                text {
2446                   font: "SLP:style=Roman";
2447                   size: GENLIST_FONT_44_INC;
2448                   min: 0 1;
2449                   align: 0.0 0.5;
2450                   text_class: "list_item";
2451                }
2452             }
2453             description { state: "selected" 0.0;
2454                inherit: "default" 0.0;
2455                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
2456             }
2457             GENLIST_DESCRIPTION_FLIP_ENABLED
2458          }
2459          GENLIST_PART_FLIP
2460          GENLIST_PART_DISCLIP
2461       }
2462       programs {
2463          // signal: elm,state,%s,active
2464          //   a "check" item named %s went active
2465          // signal: elm,state,%s,passive
2466          //   a "check" item named %s went passive
2467          // default is passive
2468          program { name: "go_active";
2469             signal: "elm,state,selected";
2470             source: "elm";
2471             action: STATE_SET "selected" 0.0;
2472             target: "bg_image";
2473             target: "elm.text.1";
2474             target: "elm.text.2";
2475             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2476          }
2477          program { name: "go_passive";
2478             signal: "elm,state,unselected";
2479             source: "elm";
2480             action: STATE_SET "default" 0.0;
2481             target: "bg_image";
2482             target: "elm.text.1";
2483             target: "elm.text.2";
2484             transition: LINEAR 0.1;
2485          }
2486          program { name: "go_disabled";
2487             signal: "elm,state,disabled";
2488             source: "elm";
2489             action: STATE_SET "disabled" 0.0;
2490             target: "disclip";
2491          }
2492          program { name: "go_enabled";
2493             signal: "elm,state,enabled";
2494             source: "elm";
2495             action: STATE_SET "default" 0.0;
2496             target: "disclip";
2497          }
2498          program { name: "flip_enabled";
2499             signal: "elm,state,flip,enabled";
2500             source: "elm";
2501             action: STATE_SET "flip_enabled" 0.0;
2502             target: "elm.text.2";
2503             target: "elm.flip.content";
2504          }
2505          program { name: "flip_disabled";
2506             signal: "elm,state,flip,disabled";
2507             source: "elm";
2508             action: STATE_SET "default" 0.0;
2509             target: "elm.text.2";
2510             target: "elm.flip.content";
2511          }
2512          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2513       }
2514    }
2515
2516 // 3.2.1
2517    group { name: "elm/genlist/item/2text.2/default";
2518       alias: "elm/genlist/item_odd/2text.2/default";
2519       alias: "elm/genlist/item_compress/2text.2/default";
2520       alias: "elm/genlist/item_compress_odd/2text.2/default";
2521       data.item: "stacking" "above";
2522       data.item: "selectraise" "on";
2523       data.item: "texts" "elm.text.1 elm.text.2";
2524       data.item: "flips" "elm.flip.content";
2525       images {
2526          image: "00_list_bar_press_1x80.png" COMP;
2527       }
2528       parts {
2529          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
2530          GENLIST_PART_BG_IMAGE
2531          GENLIST_PART_BOTTOM_LINE
2532          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
2533          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
2534          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
2535          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
2536          part { name: "elm.text.1";
2537             clip_to: "disclip";
2538             type: TEXT;
2539             mouse_events: 0;
2540             scale: 1;
2541             description { state: "default" 0.0;
2542                min: 0 GENLIST_SIZE_61_INC;
2543                fixed: 0 1;
2544                rel1 {
2545                   relative: 1.0 1.0;
2546                   to_x: "elm.padding.left";
2547                   to_y: "elm.padding.top";
2548                }
2549                rel2 {
2550                   relative: 0.0 1.0;
2551                   to_x: "elm.padding.right";
2552                   to_y: "elm.padding.top";
2553                }
2554                align: 0.0 0.0;
2555                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
2556                text {
2557                   font: "SLP:style=Roman";
2558                   size: GENLIST_FONT_44_INC;
2559                   min: 0 1;
2560                   align: 0.0 0.5;
2561                   text_class: "list_item";
2562                }
2563             }
2564             description { state: "selected" 0.0;
2565                inherit: "default" 0.0;
2566                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
2567             }
2568             GENLIST_DESCRIPTION_FLIP_ENABLED
2569          }
2570          part { name: "elm.text.2";
2571             clip_to: "disclip";
2572             type: TEXT;
2573             mouse_events: 0;
2574             scale: 1;
2575             description { state: "default" 0.0;
2576                rel1 {
2577                   relative: 1.0 1.0;
2578                   to_x: "elm.padding.left";
2579                   to_y: "elm.text.1";
2580                }
2581                rel2 {
2582                   relative: 0.0 0.0;
2583                   to_x: "elm.padding.right";
2584                   to_y: "elm.padding.bottom";
2585                }
2586                align: 0.0 0.0;
2587                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
2588                text {
2589                   font: "SLP:style=Medium";
2590                   size: GENLIST_FONT_32_INC;
2591                   min: 0 1;
2592                   align: 0.0 0.5;
2593                   text_class: "slp_medium";
2594                }
2595             }
2596             description { state: "selected" 0.0;
2597                inherit: "default" 0.0;
2598                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
2599             }
2600             GENLIST_DESCRIPTION_FLIP_ENABLED
2601          }
2602          GENLIST_PART_FLIP
2603          GENLIST_PART_DISCLIP
2604       }
2605       programs {
2606          // signal: elm,state,%s,active
2607          //   a "check" item named %s went active
2608          // signal: elm,state,%s,passive
2609          //   a "check" item named %s went passive
2610          // default is passive
2611          program { name: "go_active";
2612             signal: "elm,state,selected";
2613             source: "elm";
2614             action: STATE_SET "selected" 0.0;
2615             target: "bg_image";
2616             target: "elm.text.1";
2617             target: "elm.text.2";
2618             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2619          }
2620          program { name: "go_passive";
2621             signal: "elm,state,unselected";
2622             source: "elm";
2623             action: STATE_SET "default" 0.0;
2624             target: "bg_image";
2625             target: "elm.text.1";
2626             target: "elm.text.2";
2627             transition: LINEAR 0.1;
2628          }
2629          program { name: "go_disabled";
2630             signal: "elm,state,disabled";
2631             source: "elm";
2632             action: STATE_SET "disabled" 0.0;
2633             target: "disclip";
2634          }
2635          program { name: "go_enabled";
2636             signal: "elm,state,enabled";
2637             source: "elm";
2638             action: STATE_SET "default" 0.0;
2639             target: "disclip";
2640          }
2641          GENLIST_PROGRAM_FLIP_2TEXT
2642          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2643       }
2644    }
2645
2646    group { name: "elm/genlist/item_compress/2text.2.tb/default";
2647       inherit: "elm/genlist/item/2text.2/default";
2648       parts {
2649          part { name: "elm.text.2";
2650             clip_to: "disclip";
2651             type: TEXTBLOCK;
2652             mouse_events: 0;
2653             scale: 1;
2654             description { state: "default" 0.0;
2655                rel1 {
2656                   relative: 1.0 1.0;
2657                   to_x: "elm.padding.left";
2658                   to_y: "elm.text.1";
2659                }
2660                rel2 {
2661                   relative: 0.0 0.0;
2662                   to_x: "elm.padding.right";
2663                   to_y: "elm.padding.bottom";
2664                }
2665                align: 0.0 0.5;
2666                text {
2667                   style: "genlist_default_textblock_style";
2668                   min: 0 1;
2669                   align: 0.0 0.5;
2670                }
2671             }
2672             description { state: "selected" 0.0;
2673                inherit: "default" 0.0;
2674                text.style: "genlist_default_textblock_selected_style";
2675             }
2676             GENLIST_DESCRIPTION_FLIP_ENABLED
2677          }
2678       }
2679    }
2680
2681 //
2682    group { name: "elm/genlist/item/2text.8/default";
2683       alias: "elm/genlist/item_odd/2text.8/default";
2684       alias: "elm/genlist/item_compress/2text.8/default";
2685       alias: "elm/genlist/item_compress_odd/2text.8/default";
2686       data.item: "stacking" "above";
2687       data.item: "selectraise" "on";
2688       data.item: "texts" "elm.text.1 elm.text.2";
2689       data.item: "flips" "elm.flip.content";
2690       images {
2691          image: "00_list_bar_press_1x80.png" COMP;
2692       }
2693       parts {
2694          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
2695          GENLIST_PART_BG_IMAGE
2696          GENLIST_PART_BOTTOM_LINE
2697          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
2698          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
2699          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
2700          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
2701          part { name: "elm.text.1";
2702             clip_to: "disclip";
2703             type: TEXTBLOCK;
2704             mouse_events: 0;
2705             scale: 1;
2706             description { state: "default" 0.0;
2707                min: 0 GENLIST_SIZE_61_INC;
2708                fixed: 1 1;
2709                rel1 {
2710                   relative: 1.0 1.0;
2711                   to_x: "elm.padding.left";
2712                   to_y: "elm.padding.top";
2713                }
2714                rel2 {
2715                   relative: 0.0 1.0;
2716                   to_x: "elm.padding.right";
2717                   to_y: "elm.padding.top";
2718                }
2719                align: 0.0 0.0;
2720                text {
2721                   style: "genlist_default_textblock_style";
2722                   min: 0 1;
2723                   align: 0.0 0.5;
2724                }
2725             }
2726             description { state: "selected" 0.0;
2727                inherit: "default" 0.0;
2728                text.style: "genlist_default_textblock_selected_style";
2729             }
2730             GENLIST_DESCRIPTION_FLIP_ENABLED
2731          }
2732          part { name: "elm.text.2";
2733             clip_to: "disclip";
2734             type: TEXTBLOCK;
2735             mouse_events: 0;
2736             scale: 1;
2737             description { state: "default" 0.0;
2738                fixed: 1 0;
2739                rel1 {
2740                   relative: 1.0 1.0;
2741                   to_x: "elm.padding.left";
2742                   to_y: "elm.text.1";
2743                }
2744                rel2 {
2745                   relative: 0.0 0.0;
2746                   to_x: "elm.padding.right";
2747                   to_y: "elm.padding.bottom";
2748                }
2749                align: 0.0 0.0;
2750                text {
2751                   style: "genlist_sub_textblock_style";
2752                   min: 0 1;
2753                   align: 0.0 0.5;
2754                }
2755             }
2756             description { state: "selected" 0.0;
2757                inherit: "default" 0.0;
2758                text.style: "genlist_sub_textblock_selected_style";
2759             }
2760             GENLIST_DESCRIPTION_FLIP_ENABLED
2761          }
2762          GENLIST_PART_FLIP
2763          GENLIST_PART_DISCLIP
2764       }
2765       programs {
2766          // signal: elm,state,%s,active
2767          //   a "check" item named %s went active
2768          // signal: elm,state,%s,passive
2769          //   a "check" item named %s went passive
2770          // default is passive
2771          program { name: "go_active";
2772             signal: "elm,state,selected";
2773             source: "elm";
2774             action: STATE_SET "selected" 0.0;
2775             target: "bg_image";
2776             target: "elm.text.1";
2777             target: "elm.text.2";
2778             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2779          }
2780          program { name: "go_passive";
2781             signal: "elm,state,unselected";
2782             source: "elm";
2783             action: STATE_SET "default" 0.0;
2784             target: "bg_image";
2785             target: "elm.text.1";
2786             target: "elm.text.2";
2787             transition: LINEAR 0.1;
2788          }
2789          program { name: "go_disabled";
2790             signal: "elm,state,disabled";
2791             source: "elm";
2792             action: STATE_SET "disabled" 0.0;
2793             target: "disclip";
2794          }
2795          program { name: "go_enabled";
2796             signal: "elm,state,enabled";
2797             source: "elm";
2798             action: STATE_SET "default" 0.0;
2799             target: "disclip";
2800          }
2801          GENLIST_PROGRAM_FLIP_2TEXT
2802          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2803       }
2804    }
2805
2806 // 3.2.2
2807    group { name: "elm/genlist/item/2text.3/default";
2808       alias: "elm/genlist/item_odd/2text.3/default";
2809       alias: "elm/genlist/item_compress/2text.3/default";
2810       alias: "elm/genlist/item_compress_odd/2text.3/default";
2811       data.item: "stacking" "above";
2812       data.item: "selectraise" "on";
2813       data.item: "texts" "elm.text.1 elm.text.2";
2814       data.item: "flips" "elm.flip.content";
2815       images {
2816          image: "00_list_bar_press_1x80.png" COMP;
2817       }
2818       parts {
2819          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
2820          GENLIST_PART_BG_IMAGE
2821          GENLIST_PART_BOTTOM_LINE
2822          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
2823          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
2824          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
2825          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
2826          part { name: "elm.text.1";
2827             clip_to: "disclip";
2828             type: TEXT;
2829             mouse_events: 0;
2830             scale: 1;
2831             description { state: "default" 0.0;
2832                min: 0 GENLIST_SIZE_61_INC;
2833                fixed: 0 1;
2834                rel1 {
2835                   relative: 1.0 0.0;
2836                   to_x: "elm.padding.left";
2837                   to_y: "elm.padding.bottom";
2838                }
2839                rel2 {
2840                   relative: 0.0 0.0;
2841                   to_x: "elm.padding.right";
2842                   to_y: "elm.padding.bottom";
2843                }
2844                align: 0.0 1.0;
2845                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
2846                text {
2847                   font: "SLP:style=Roman";
2848                   size: GENLIST_FONT_44_INC;
2849                   min: 0 1;
2850                   align: 0.0 0.5;
2851                   text_class: "slp_roman";
2852                }
2853             }
2854             description { state: "selected" 0.0;
2855                inherit: "default" 0.0;
2856                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
2857             }
2858             GENLIST_DESCRIPTION_FLIP_ENABLED
2859          }
2860          part { name: "elm.text.2";
2861             clip_to: "disclip";
2862             type: TEXT;
2863             mouse_events: 0;
2864             scale: 1;
2865             description { state: "default" 0.0;
2866                rel1 {
2867                   relative: 1.0 1.0;
2868                   to_x: "elm.padding.left";
2869                   to_y: "elm.padding.top";
2870                }
2871                rel2 {
2872                   relative: 0.0 0.0;
2873                   to_x: "elm.padding.right";
2874                   to_y: "elm.text.1";
2875                }
2876                align: 0.0 1.0;
2877                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
2878                text {
2879                   font: "SLP:style=Medium";
2880                   size: GENLIST_FONT_32_INC;
2881                   min: 0 1;
2882                   align: 0.0 0.5;
2883                   text_class: "list_item";
2884                }
2885             }
2886             description { state: "selected" 0.0;
2887                inherit: "default" 0.0;
2888                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
2889             }
2890             GENLIST_DESCRIPTION_FLIP_ENABLED
2891          }
2892          GENLIST_PART_FLIP
2893          GENLIST_PART_DISCLIP
2894       }
2895       programs {
2896          // signal: elm,state,%s,active
2897          //   a "check" item named %s went active
2898          // signal: elm,state,%s,passive
2899          //   a "check" item named %s went passive
2900          // default is passive
2901          program { name: "go_active";
2902             signal: "elm,state,selected";
2903             source: "elm";
2904             action: STATE_SET "selected" 0.0;
2905             target: "bg_image";
2906             target: "elm.text.1";
2907             target: "elm.text.2";
2908             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
2909          }
2910          program { name: "go_passive";
2911             signal: "elm,state,unselected";
2912             source: "elm";
2913             action: STATE_SET "default" 0.0;
2914             target: "bg_image";
2915             target: "elm.text.1";
2916             target: "elm.text.2";
2917             transition: LINEAR 0.1;
2918          }
2919          program { name: "go_disabled";
2920             signal: "elm,state,disabled";
2921             source: "elm";
2922             action: STATE_SET "disabled" 0.0;
2923             target: "disclip";
2924          }
2925          program { name: "go_enabled";
2926             signal: "elm,state,enabled";
2927             source: "elm";
2928             action: STATE_SET "default" 0.0;
2929             target: "disclip";
2930          }
2931          GENLIST_PROGRAM_FLIP_2TEXT
2932          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
2933       }
2934    }
2935
2936 // 3.2.3
2937    group { name: "elm/genlist/item/3text/default";
2938       alias: "elm/genlist/item_odd/3text/default";
2939       alias: "elm/genlist/item_compress/3text/default";
2940       alias: "elm/genlist/item_compress_odd/3text/default";
2941       data.item: "stacking" "above";
2942       data.item: "selectraise" "on";
2943       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
2944       data.item: "flips" "elm.flip.content";
2945       images {
2946          image: "00_list_bar_press_1x80.png" COMP;
2947       }
2948       parts {
2949          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
2950          GENLIST_PART_BG_IMAGE
2951          GENLIST_PART_BOTTOM_LINE
2952          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
2953          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
2954          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
2955          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
2956          part { name: "elm.text.3";
2957             clip_to: "disclip";
2958             type: TEXT;
2959             mouse_events: 0;
2960             scale: 1;
2961             description { state: "default" 0.0;
2962                min: GENLIST_SIZE_133_INC GENLIST_SIZE_61_INC;
2963                fixed: 1 1;
2964                rel1 {
2965                   relative: 0.0 1.0;
2966                   to_x: "elm.padding.right";
2967                   to_y: "elm.padding.top";
2968                }
2969                rel2 {
2970                   relative: 0.0 1.0;
2971                   to_x: "elm.padding.right";
2972                   to_y: "elm.padding.top";
2973                }
2974                align: 1.0 0.0;
2975                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
2976                text {
2977                   font: "SLP:style=Medium";
2978                   size: GENLIST_FONT_32_INC;
2979                   min: 0 1;
2980                   align: 1.0 0.5;
2981                   text_class: "slp_medium";
2982                }
2983             }
2984             description { state: "selected" 0.0;
2985                inherit: "default" 0.0;
2986                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
2987             }
2988             GENLIST_DESCRIPTION_FLIP_ENABLED
2989          }
2990          part { name: "elm.padding.text3.left";
2991             clip_to: "disclip";
2992             type: RECT;
2993             mouse_events: 0;
2994             scale: 1;
2995             description { state: "default" 0.0;
2996                min: GENLIST_ICON_SMALL_SIZE 0;
2997                fixed: 1 0;
2998                rel1.to_x: "elm.text.3";
2999                rel2 {
3000                   relative: 0.0 1.0;
3001                   to_x: "elm.text.3";
3002                }
3003                align: 1.0 0.5;
3004                visible: 0;
3005             }
3006          }
3007          part { name: "elm.text.1";
3008             clip_to: "disclip";
3009             type: TEXT;
3010             mouse_events: 0;
3011             scale: 1;
3012             description { state: "default" 0.0;
3013                rel1 {
3014                   relative: 1.0 1.0;
3015                   to_x: "elm.padding.left";
3016                   to_y: "elm.padding.top";
3017                }
3018                rel2 {
3019                   relative: 0.0 1.0;
3020                   to_x: "elm.padding.text3.left";
3021                   to_y: "elm.text.3";
3022                }
3023                align: 0.0 0.5;
3024                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
3025                text {
3026                   font: "SLP:style=Roman";
3027                   size: GENLIST_FONT_44_INC;
3028                   min: 0 1;
3029                   align: 0.0 0.5;
3030                   text_class: "list_item";
3031                }
3032             }
3033             description { state: "selected" 0.0;
3034                inherit: "default" 0.0;
3035                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3036             }
3037             GENLIST_DESCRIPTION_FLIP_ENABLED
3038          }
3039          part { name: "elm.text.2";
3040             clip_to: "disclip";
3041             type: TEXT;
3042             mouse_events: 0;
3043             scale: 1;
3044             description { state: "default" 0.0;
3045                rel1 {
3046                   relative: 1.0 1.0;
3047                   to_x: "elm.padding.left";
3048                   to_y: "elm.text.1";
3049                }
3050                rel2 {
3051                   relative: 0.0 0.0;
3052                   to_x: "elm.padding.right";
3053                   to_y: "elm.padding.bottom";
3054                }
3055                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
3056                text {
3057                   font: "SLP:style=Medium";
3058                   size: GENLIST_FONT_32_INC;
3059                   min: 0 1;
3060                   align: 0.0 0.5;
3061                   text_class: "slp_medium";
3062                }
3063             }
3064             description { state: "selected" 0.0;
3065                inherit: "default" 0.0;
3066                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3067             }
3068             GENLIST_DESCRIPTION_FLIP_ENABLED
3069          }
3070          GENLIST_PART_FLIP
3071          GENLIST_PART_DISCLIP
3072       }
3073       programs {
3074          // signal: elm,state,%s,active
3075          //   a "check" item named %s went active
3076          // signal: elm,state,%s,passive
3077          //   a "check" item named %s went passive
3078          // default is passive
3079          program { name: "go_active";
3080             signal: "elm,state,selected";
3081             source: "elm";
3082             action: STATE_SET "selected" 0.0;
3083             target: "bg_image";
3084             target: "elm.text.1";
3085             target: "elm.text.2";
3086             target: "elm.text.3";
3087             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
3088          }
3089          program { name: "go_passive";
3090             signal: "elm,state,unselected";
3091             source: "elm";
3092             action: STATE_SET "default" 0.0;
3093             target: "bg_image";
3094             target: "elm.text.1";
3095             target: "elm.text.2";
3096             target: "elm.text.3";
3097             transition: LINEAR 0.1;
3098          }
3099          program { name: "go_disabled";
3100             signal: "elm,state,disabled";
3101             source: "elm";
3102             action: STATE_SET "disabled" 0.0;
3103             target: "disclip";
3104          }
3105          program { name: "go_enabled";
3106             signal: "elm,state,enabled";
3107             source: "elm";
3108             action: STATE_SET "default" 0.0;
3109             target: "disclip";
3110          }
3111          GENLIST_PROGRAM_FLIP_3TEXT
3112          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
3113       }
3114    }
3115
3116    group { name: "elm/genlist/item_compress/3text.tb/default";
3117       inherit: "elm/genlist/item/3text/default";
3118       parts {
3119          part { name: "elm.text.2";
3120             clip_to: "disclip";
3121             type: TEXTBLOCK;
3122             mouse_events: 0;
3123             scale: 1;
3124             description { state: "default" 0.0;
3125                rel1 {
3126                   relative: 1.0 1.0;
3127                   to_x: "elm.padding.left";
3128                   to_y: "elm.text.1";
3129                }
3130                rel2 {
3131                   relative: 0.0 0.0;
3132                   to_x: "elm.padding.right";
3133                   to_y: "elm.padding.bottom";
3134                }
3135                align: 0.0 0.5;
3136                text {
3137                   style: "genlist_default_textblock_style";
3138                   min: 0 1;
3139                   align: 0.0 0.5;
3140                }
3141             }
3142             description { state: "selected" 0.0;
3143                inherit: "default" 0.0;
3144                text.style: "genlist_default_textblock_selected_style";
3145             }
3146             GENLIST_DESCRIPTION_FLIP_ENABLED
3147          }
3148       }
3149    }
3150
3151 // 3.2.4
3152    group { name: "elm/genlist/item/2text.1icon.2/default";
3153       alias: "elm/genlist/item_odd/2text.1icon.2/default";
3154       alias: "elm/genlist/item_compress/2text.1icon.2/default";
3155       alias: "elm/genlist/item_compress_odd/2text.1icon.2/default";
3156       data.item: "stacking" "above";
3157       data.item: "selectraise" "on";
3158       data.item: "texts" "elm.text.1 elm.text.2";
3159       data.item: "contents" "elm.icon";
3160       data.item: "flips" "elm.flip.content";
3161       images {
3162          image: "00_list_bar_press_1x80.png" COMP;
3163       }
3164       parts {
3165          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
3166          GENLIST_PART_BG_IMAGE
3167          GENLIST_PART_BOTTOM_LINE
3168          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
3169          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
3170          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
3171          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
3172          part { name: "elm.icon";
3173             clip_to: "disclip";
3174             type: SWALLOW;
3175             scale: 1;
3176             description { state: "default" 0.0;
3177                fixed: 1 1;
3178                rel1 {
3179                   relative: 0.0 1.0;
3180                   to_x: "elm.padding.right";
3181                   to_y: "elm.padding.top";
3182                }
3183                rel2 {
3184                   relative: 0.0 0.0;
3185                   to_x: "elm.padding.right";
3186                   to_y: "elm.padding.bottom";
3187                }
3188                align: 1.0 0.5;
3189             }
3190             GENLIST_DESCRIPTION_FLIP_ENABLED
3191          }
3192          part { name: "elm.padding.icon.left";
3193             clip_to: "disclip";
3194             type: RECT;
3195             scale: 1;
3196             description { state: "default" 0.0;
3197                min: GENLIST_PADDING_16_INC 0;
3198                fixed: 1 0;
3199                rel1.to_x: "elm.icon";
3200                rel2 {
3201                   relative: 0.0 1.0;
3202                   to_x: "elm.icon";
3203                }
3204                align: 1.0 0.0;
3205                visible: 0;
3206             }
3207          }
3208          part { name: "elm.text.1";
3209             clip_to: "disclip";
3210             type: TEXT;
3211             mouse_events: 0;
3212             scale: 1;
3213             description { state: "default" 0.0;
3214                min: 0 GENLIST_SIZE_61_INC;
3215                fixed: 0 1;
3216                rel1 {
3217                   relative: 1.0 1.0;
3218                   to_x: "elm.padding.left";
3219                   to_y: "elm.padding.top";
3220                }
3221                rel2 {
3222                   relative: 0.0 1.0;
3223                   to_x: "elm.padding.icon.left";
3224                   to_y: "elm.padding.top";
3225                }
3226                align: 0.0 0.0;
3227                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
3228                text {
3229                   font: "SLP:style=Roman";
3230                   size: GENLIST_FONT_44_INC;
3231                   min: 0 1;
3232                   align: 0.0 0.5;
3233                   text_class: "list_item";
3234                }
3235             }
3236             description { state: "selected" 0.0;
3237                inherit: "default" 0.0;
3238                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3239             }
3240             GENLIST_DESCRIPTION_FLIP_ENABLED
3241          }
3242          part { name: "elm.text.2";
3243             clip_to: "disclip";
3244             type: TEXT;
3245             mouse_events: 0;
3246             scale: 1;
3247             description { state: "default" 0.0;
3248                rel1 {
3249                   relative: 1.0 1.0;
3250                   to_x: "elm.padding.left";
3251                   to_y: "elm.text.1";
3252                }
3253                rel2 {
3254                   relative: 0.0 0.0;
3255                   to_x: "elm.padding.icon.left";
3256                   to_y: "elm.padding.bottom";
3257                }
3258                align: 0.0 0.0;
3259                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
3260                text {
3261                   font: "SLP:style=Medium";
3262                   size: GENLIST_FONT_32_INC;
3263                   min: 0 1;
3264                   align: 0.0 0.5;
3265                   text_class: "slp_medium";
3266                }
3267             }
3268             description { state: "selected" 0.0;
3269                inherit: "default" 0.0;
3270                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3271             }
3272             GENLIST_DESCRIPTION_FLIP_ENABLED
3273          }
3274          GENLIST_PART_FLIP
3275          GENLIST_PART_DISCLIP
3276       }
3277       programs {
3278          // signal: elm,state,%s,active
3279          //   a "check" item named %s went active
3280          // signal: elm,state,%s,passive
3281          //   a "check" item named %s went passive
3282          // default is passive
3283          program { name: "go_active";
3284             signal: "elm,state,selected";
3285             source: "elm";
3286             action: STATE_SET "selected" 0.0;
3287             target: "bg_image";
3288             target: "elm.text.1";
3289             target: "elm.text.2";
3290             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
3291          }
3292          program { name: "go_passive";
3293             signal: "elm,state,unselected";
3294             source: "elm";
3295             action: STATE_SET "default" 0.0;
3296             target: "bg_image";
3297             target: "elm.text.1";
3298             target: "elm.text.2";
3299             transition: LINEAR 0.1;
3300          }
3301          program { name: "go_disabled";
3302             signal: "elm,state,disabled";
3303             source: "elm";
3304             action: STATE_SET "disabled" 0.0;
3305             target: "disclip";
3306          }
3307          program { name: "go_enabled";
3308             signal: "elm,state,enabled";
3309             source: "elm";
3310             action: STATE_SET "default" 0.0;
3311             target: "disclip";
3312          }
3313          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
3314          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
3315       }
3316    }
3317
3318 // 3.2.5
3319    group { name: "elm/genlist/item/2text.1icon.10/default";
3320       alias: "elm/genlist/item_odd/2text.1icon.10/default";
3321       alias: "elm/genlist/item_compress/2text.1icon.10/default";
3322       alias: "elm/genlist/item_compress_odd/2text.1icon.10/default";
3323       data.item: "stacking" "above";
3324       data.item: "selectraise" "on";
3325       data.item: "texts" "elm.text.1 elm.text.2";
3326       data.item: "contents" "elm.icon";
3327       data.item: "flips" "elm.flip.content";
3328       images {
3329          image: "00_list_bar_press_1x80.png" COMP;
3330       }
3331       parts {
3332          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
3333          GENLIST_PART_BG_IMAGE
3334          GENLIST_PART_BOTTOM_LINE
3335          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
3336          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
3337          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
3338          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
3339          part { name: "elm.icon";
3340             clip_to: "disclip";
3341             type: SWALLOW;
3342             scale: 1;
3343             description { state: "default" 0.0;
3344                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
3345                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
3346                fixed: 1 1;
3347                rel1 {
3348                   relative: 0.0 1.0;
3349                   to_x: "elm.padding.right";
3350                   to_y: "elm.padding.top";
3351                }
3352                rel2 {
3353                   relative: 0.0 0.0;
3354                   to_x: "elm.padding.right";
3355                   to_y: "elm.padding.bottom";
3356                }
3357                align: 1.0 0.5;
3358             }
3359             GENLIST_DESCRIPTION_FLIP_ENABLED
3360          }
3361          part { name: "elm.padding.icon.left";
3362             clip_to: "disclip";
3363             type: RECT;
3364             scale: 1;
3365             description { state: "default" 0.0;
3366                min: GENLIST_PADDING_16_INC 0;
3367                fixed: 1 0;
3368                rel1.to_x: "elm.icon";
3369                rel2 {
3370                   relative: 0.0 1.0;
3371                   to_x: "elm.icon";
3372                }
3373                align: 1.0 0.0;
3374                visible: 0;
3375             }
3376          }
3377          part { name: "elm.text.1";
3378             clip_to: "disclip";
3379             type: TEXT;
3380             mouse_events: 0;
3381             scale: 1;
3382             description { state: "default" 0.0;
3383                min: 0 GENLIST_SIZE_61_INC;
3384                fixed: 0 1;
3385                rel1 {
3386                   relative: 1.0 1.0;
3387                   to_x: "elm.padding.left";
3388                   to_y: "elm.padding.top";
3389                }
3390                rel2 {
3391                   relative: 0.0 1.0;
3392                   to_x: "elm.padding.icon.left";
3393                   to_y: "elm.padding.top";
3394                }
3395                align: 0.0 0.0;
3396                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
3397                text {
3398                   font: "SLP:style=Roman";
3399                   size: GENLIST_FONT_44_INC;
3400                   min: 0 1;
3401                   align: 0.0 0.5;
3402                   text_class: "list_item";
3403                }
3404             }
3405             description { state: "selected" 0.0;
3406                inherit: "default" 0.0;
3407                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3408             }
3409             GENLIST_DESCRIPTION_FLIP_ENABLED
3410          }
3411          part { name: "elm.text.2";
3412             clip_to: "disclip";
3413             type: TEXT;
3414             mouse_events: 0;
3415             scale: 1;
3416             description { state: "default" 0.0;
3417                rel1 {
3418                   relative: 1.0 1.0;
3419                   to_x: "elm.padding.left";
3420                   to_y: "elm.text.1";
3421                }
3422                rel2 {
3423                   relative: 0.0 0.0;
3424                   to_x: "elm.padding.icon.left";
3425                   to_y: "elm.padding.bottom";
3426                }
3427                align: 0.0 0.0;
3428                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
3429                text {
3430                   font: "SLP:style=Medium";
3431                   size: GENLIST_FONT_32_INC;
3432                   min: 0 1;
3433                   align: 0.0 0.5;
3434                   text_class: "slp_medium";
3435                }
3436             }
3437             description { state: "selected" 0.0;
3438                inherit: "default" 0.0;
3439                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3440             }
3441             GENLIST_DESCRIPTION_FLIP_ENABLED
3442          }
3443          GENLIST_PART_FLIP
3444          GENLIST_PART_DISCLIP
3445       }
3446       programs {
3447          // signal: elm,state,%s,active
3448          //   a "check" item named %s went active
3449          // signal: elm,state,%s,passive
3450          //   a "check" item named %s went passive
3451          // default is passive
3452          program { name: "go_active";
3453             signal: "elm,state,selected";
3454             source: "elm";
3455             action: STATE_SET "selected" 0.0;
3456             target: "bg_image";
3457             target: "elm.text.1";
3458             target: "elm.text.2";
3459             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
3460          }
3461          program { name: "go_passive";
3462             signal: "elm,state,unselected";
3463             source: "elm";
3464             action: STATE_SET "default" 0.0;
3465             target: "bg_image";
3466             target: "elm.text.1";
3467             target: "elm.text.2";
3468             transition: LINEAR 0.1;
3469          }
3470          program { name: "go_disabled";
3471             signal: "elm,state,disabled";
3472             source: "elm";
3473             action: STATE_SET "disabled" 0.0;
3474             target: "disclip";
3475          }
3476          program { name: "go_enabled";
3477             signal: "elm,state,enabled";
3478             source: "elm";
3479             action: STATE_SET "default" 0.0;
3480             target: "disclip";
3481          }
3482          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
3483          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
3484       }
3485    }
3486
3487    group { name: "elm/genlist/item_compress/2text.1icon.10.tb/default";
3488       inherit: "elm/genlist/item/2text.1icon.10/default";
3489       parts {
3490          part { name: "elm.text.2";
3491             clip_to: "disclip";
3492             type: TEXTBLOCK;
3493             mouse_events: 0;
3494             scale: 1;
3495             description { state: "default" 0.0;
3496                rel1 {
3497                   relative: 1.0 1.0;
3498                   to_x: "elm.padding.left";
3499                   to_y: "elm.text.1";
3500                }
3501                rel2 {
3502                   relative: 0.0 0.0;
3503                   to_x: "elm.padding.icon.left";
3504                   to_y: "elm.padding.bottom";
3505                }
3506                align: 0.0 0.5;
3507                text {
3508                   style: "genlist_default_textblock_style";
3509                   min: 0 1;
3510                   align: 0.0 0.5;
3511                }
3512             }
3513             description { state: "selected" 0.0;
3514                inherit: "default" 0.0;
3515                text.style: "genlist_default_textblock_selected_style";
3516             }
3517             GENLIST_DESCRIPTION_FLIP_ENABLED
3518          }
3519       }
3520    }
3521
3522 // 3.2.6
3523    group { name: "elm/genlist/item/2text.1icon.3/default";
3524       alias: "elm/genlist/item_odd/2text.1icon.3/default";
3525       alias: "elm/genlist/item_compress/2text.1icon.3/default";
3526       alias: "elm/genlist/item_compress_odd/2text.1icon.3/default";
3527       data.item: "stacking" "above";
3528       data.item: "selectraise" "on";
3529       data.item: "texts" "elm.text.1 elm.text.2";
3530       data.item: "contents" "elm.icon";
3531       data.item: "flips" "elm.flip.content";
3532       images {
3533          image: "00_list_bar_press_1x80.png" COMP;
3534       }
3535       parts {
3536          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
3537          GENLIST_PART_BG_IMAGE
3538          GENLIST_PART_BOTTOM_LINE
3539          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
3540          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
3541          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
3542          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
3543          part { name: "elm.text.1";
3544             clip_to: "disclip";
3545             type: TEXT;
3546             mouse_events: 0;
3547             scale: 1;
3548             description { state: "default" 0.0;
3549                min: 0 GENLIST_SIZE_61_INC;
3550                fixed: 0 1;
3551                rel1 {
3552                   relative: 1.0 1.0;
3553                   to_x: "elm.padding.left";
3554                   to_y: "elm.padding.top";
3555                }
3556                rel2 {
3557                   relative: 0.0 1.0;
3558                   to_x: "elm.padding.icon.left";
3559                   to_y: "elm.padding.top";
3560                }
3561                align: 0.0 0.0;
3562                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
3563                text {
3564                   font: "SLP:style=Roman";
3565                   size: GENLIST_FONT_44_INC;
3566                   min: 0 1;
3567                   align: 0.0 0.5;
3568                   text_class: "list_item";
3569                }
3570             }
3571             description { state: "selected" 0.0;
3572                inherit: "default" 0.0;
3573                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3574             }
3575             GENLIST_DESCRIPTION_FLIP_ENABLED
3576          }
3577          part { name: "elm.icon";
3578             clip_to: "disclip";
3579             type: SWALLOW;
3580             scale: 1;
3581             description { state: "default" 0.0;
3582                fixed: 1 1;
3583                rel1 {
3584                   relative: 0.0 1.0;
3585                   to_x: "elm.padding.right";
3586                   to_y: "elm.padding.top";
3587                }
3588                rel2 {
3589                   relative: 0.0 1.0;
3590                   to_x: "elm.padding.right";
3591                   to_y: "elm.text.1";
3592                }
3593                align: 1.0 0.5;
3594             }
3595             GENLIST_DESCRIPTION_FLIP_ENABLED
3596          }
3597          part { name: "elm.padding.icon.left";
3598             clip_to: "disclip";
3599             type: RECT;
3600             scale: 1;
3601             description { state: "default" 0.0;
3602                min: GENLIST_PADDING_16_INC 0;
3603                fixed: 1 0;
3604                rel1.to_x: "elm.icon";
3605                rel2 {
3606                   relative: 0.0 1.0;
3607                   to_x: "elm.icon";
3608                }
3609                align: 1.0 0.0;
3610                visible: 0;
3611             }
3612          }
3613          part { name: "elm.text.2";
3614             clip_to: "disclip";
3615             type: TEXT;
3616             mouse_events: 0;
3617             scale: 1;
3618             description { state: "default" 0.0;
3619                rel1 {
3620                   relative: 1.0 1.0;
3621                   to_x: "elm.padding.left";
3622                   to_y: "elm.text.1";
3623                }
3624                rel2 {
3625                   relative: 0.0 0.0;
3626                   to_x: "elm.padding.icon.left";
3627                   to_y: "elm.padding.bottom";
3628                }
3629                align: 0.0 0.0;
3630                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
3631                text {
3632                   font: "SLP:style=Medium";
3633                   size: GENLIST_FONT_32_INC;
3634                   min: 0 1;
3635                   align: 0.0 0.5;
3636                   text_class: "slp_medium";
3637                }
3638             }
3639             description { state: "selected" 0.0;
3640                inherit: "default" 0.0;
3641                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3642             }
3643             GENLIST_DESCRIPTION_FLIP_ENABLED
3644          }
3645          GENLIST_PART_FLIP
3646          GENLIST_PART_DISCLIP
3647       }
3648       programs {
3649          // signal: elm,state,%s,active
3650          //   a "check" item named %s went active
3651          // signal: elm,state,%s,passive
3652          //   a "check" item named %s went passive
3653          // default is passive
3654          program { name: "go_active";
3655             signal: "elm,state,selected";
3656             source: "elm";
3657             action: STATE_SET "selected" 0.0;
3658             target: "bg_image";
3659             target: "elm.text.1";
3660             target: "elm.text.2";
3661             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
3662          }
3663          program { name: "go_passive";
3664             signal: "elm,state,unselected";
3665             source: "elm";
3666             action: STATE_SET "default" 0.0;
3667             target: "bg_image";
3668             target: "elm.text.1";
3669             target: "elm.text.2";
3670             transition: LINEAR 0.1;
3671          }
3672          program { name: "go_disabled";
3673             signal: "elm,state,disabled";
3674             source: "elm";
3675             action: STATE_SET "disabled" 0.0;
3676             target: "disclip";
3677          }
3678          program { name: "go_enabled";
3679             signal: "elm,state,enabled";
3680             source: "elm";
3681             action: STATE_SET "default" 0.0;
3682             target: "disclip";
3683          }
3684          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
3685          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
3686       }
3687    }
3688
3689 // 3.2.7
3690    group { name: "elm/genlist/item/3text.1icon/default";
3691       alias: "elm/genlist/item_odd/3text.1icon/default";
3692       alias: "elm/genlist/item_compress/3text.1icon/default";
3693       alias: "elm/genlist/item_compress_odd/3text.1icon/default";
3694       data.item: "stacking" "above";
3695       data.item: "selectraise" "on";
3696       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
3697       data.item: "contents" "elm.icon";
3698       data.item: "flips" "elm.flip.content";
3699       images {
3700          image: "00_list_bar_press_1x80.png" COMP;
3701       }
3702       parts {
3703          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
3704          GENLIST_PART_BG_IMAGE
3705          GENLIST_PART_BOTTOM_LINE
3706          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
3707          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
3708          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
3709          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
3710          part { name: "elm.text.3";
3711             clip_to: "disclip";
3712             type: TEXT;
3713             mouse_events: 0;
3714             scale: 1;
3715             description { state: "default" 0.0;
3716                min: GENLIST_SIZE_133_INC GENLIST_SIZE_48_INC;
3717                fixed: 1 1;
3718                rel1 {
3719                   relative: 0.0 0.0;
3720                   to_x: "elm.padding.right";
3721                   to_y: "elm.padding.bottom";
3722                }
3723                rel2 {
3724                   relative: 0.0 0.0;
3725                   to_x: "elm.padding.right";
3726                   to_y: "elm.padding.bottom";
3727                }
3728                align: 1.0 1.0;
3729                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
3730                text {
3731                   font: "SLP:style=Medium";
3732                   size: GENLIST_FONT_32_INC;
3733                   min: 0 1;
3734                   align: 1.0 0.5;
3735                   text_class: "slp_medium";
3736                }
3737             }
3738             description { state: "selected" 0.0;
3739                inherit: "default" 0.0;
3740                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3741             }
3742             GENLIST_DESCRIPTION_FLIP_ENABLED
3743          }
3744          part { name: "elm.padding.text3.left";
3745             clip_to: "disclip";
3746             type: RECT;
3747             mouse_events: 0;
3748             scale: 1;
3749             description { state: "default" 0.0;
3750                min: GENLIST_ICON_SMALL_SIZE 0;
3751                fixed: 1 0;
3752                rel1.to_x: "elm.text.3";
3753                rel2 {
3754                   relative: 0.0 1.0;
3755                   to_x: "elm.text.3";
3756                }
3757                align: 1.0 0.5;
3758                visible: 0;
3759             }
3760          }
3761          part { name: "elm.icon";
3762             clip_to: "disclip";
3763             type: SWALLOW;
3764             scale: 1;
3765             description { state: "default" 0.0;
3766                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
3767                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
3768                fixed: 1 1;
3769                rel1 {
3770                   relative: 0.0 1.0;
3771                   to_x: "elm.padding.right";
3772                   to_y: "elm.padding.top";
3773                }
3774                rel2 {
3775                   relative: 0.0 0.0;
3776                   to_x: "elm.padding.right";
3777                   to_y: "elm.text.3";
3778                }
3779                align: 1.0 0.5;
3780             }
3781             GENLIST_DESCRIPTION_FLIP_ENABLED
3782          }
3783          part { name: "elm.padding.icon.left";
3784             clip_to: "disclip";
3785             type: RECT;
3786             scale: 1;
3787             description { state: "default" 0.0;
3788                min: GENLIST_PADDING_16_INC 0;
3789                fixed: 1 0;
3790                rel1.to_x: "elm.icon";
3791                rel2 {
3792                   relative: 0.0 1.0;
3793                   to_x: "elm.icon";
3794                }
3795                align: 1.0 0.0;
3796                visible: 0;
3797             }
3798          }
3799          part { name: "elm.text.1";
3800             clip_to: "disclip";
3801             type: TEXT;
3802             mouse_events: 0;
3803             scale: 1;
3804             description { state: "default" 0.0;
3805                rel1 {
3806                   relative: 1.0 1.0;
3807                   to_x: "elm.padding.left";
3808                   to_y: "elm.padding.top";
3809                }
3810                rel2 {
3811                   relative: 0.0 0.0;
3812                   to_x: "elm.padding.icon.left";
3813                   to_y: "elm.text.3";
3814                }
3815                align: 0.0 0.5;
3816                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
3817                text {
3818                   font: "SLP:style=Roman";
3819                   size: GENLIST_FONT_44_INC;
3820                   min: 0 1;
3821                   align: 0.0 0.5;
3822                   text_class: "list_item";
3823                }
3824             }
3825             description { state: "selected" 0.0;
3826                inherit: "default" 0.0;
3827                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3828             }
3829             GENLIST_DESCRIPTION_FLIP_ENABLED
3830          }
3831          part { name: "elm.text.2";
3832             clip_to: "disclip";
3833             type: TEXT;
3834             mouse_events: 0;
3835             scale: 1;
3836             description { state: "default" 0.0;
3837                rel1 {
3838                   relative: 1.0 1.0;
3839                   to_x: "elm.padding.left";
3840                   to_y: "elm.text.1";
3841                }
3842                rel2 {
3843                   relative: 0.0 0.0;
3844                   to_x: "elm.padding.text3.left";
3845                   to_y: "elm.padding.bottom";
3846                }
3847                align: 0.0 0.5;
3848                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
3849                text {
3850                   font: "SLP:style=Medium";
3851                   size: GENLIST_FONT_32_INC;
3852                   min: 0 1;
3853                   align: 0.0 0.5;
3854                   text_class: "slp_medium";
3855                }
3856             }
3857             description { state: "selected" 0.0;
3858                inherit: "default" 0.0;
3859                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
3860             }
3861             GENLIST_DESCRIPTION_FLIP_ENABLED
3862          }
3863          GENLIST_PART_FLIP
3864          GENLIST_PART_DISCLIP
3865       }
3866       programs {
3867          // signal: elm,state,%s,active
3868          //   a "check" item named %s went active
3869          // signal: elm,state,%s,passive
3870          //   a "check" item named %s went passive
3871          // default is passive
3872          program { name: "go_active";
3873             signal: "elm,state,selected";
3874             source: "elm";
3875             action: STATE_SET "selected" 0.0;
3876             target: "bg_image";
3877             target: "elm.text.1";
3878             target: "elm.text.2";
3879             target: "elm.text.3";
3880             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
3881          }
3882          program { name: "go_passive";
3883             signal: "elm,state,unselected";
3884             source: "elm";
3885             action: STATE_SET "default" 0.0;
3886             target: "bg_image";
3887             target: "elm.text.1";
3888             target: "elm.text.2";
3889             target: "elm.text.3";
3890             transition: LINEAR 0.1;
3891          }
3892          program { name: "go_disabled";
3893             signal: "elm,state,disabled";
3894             source: "elm";
3895             action: STATE_SET "disabled" 0.0;
3896             target: "disclip";
3897          }
3898          program { name: "go_enabled";
3899             signal: "elm,state,enabled";
3900             source: "elm";
3901             action: STATE_SET "default" 0.0;
3902             target: "disclip";
3903          }
3904          GENLIST_PROGRAM_FLIP_3TEXT_1ICON
3905          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
3906       }
3907    }
3908
3909 // 3.2.8
3910    group { name: "elm/genlist/item/2text.2icon/default";
3911       alias: "elm/genlist/item_odd/2text.2icon/default";
3912       alias: "elm/genlist/item_compress/2text.2icon/default";
3913       alias: "elm/genlist/item_compress_odd/2text.2icon/default";
3914       data.item: "stacking" "above";
3915       data.item: "selectraise" "on";
3916       data.item: "texts" "elm.text.1 elm.text.2";
3917       data.item: "contents" "elm.icon.1 elm.icon.2";
3918       data.item: "flips" "elm.flip.content";
3919       images {
3920          image: "00_list_bar_press_1x80.png" COMP;
3921       }
3922       parts {
3923          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
3924          GENLIST_PART_BG_IMAGE
3925          GENLIST_PART_BOTTOM_LINE
3926          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
3927          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
3928          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
3929          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
3930          part { name: "elm.icon.1";
3931             clip_to: "disclip";
3932             type: SWALLOW;
3933             scale: 1;
3934             description { state: "default" 0.0;
3935                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
3936                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
3937                fixed: 1 1;
3938                rel1 {
3939                   relative: 1.0 1.0;
3940                   to_x: "elm.padding.left";
3941                   to_y: "elm.text.1";
3942                }
3943                rel2 {
3944                   relative: 1.0 0.0;
3945                   to_x: "elm.padding.left";
3946                   to_y: "elm.padding.bottom";
3947                }
3948                align: 0.0 0.5;
3949             }
3950             GENLIST_DESCRIPTION_FLIP_ENABLED
3951          }
3952          part { name: "elm.padding.icon1.right";
3953             clip_to: "disclip";
3954             type: RECT;
3955             scale: 1;
3956             description { state: "default" 0.0;
3957                min: GENLIST_PADDING_16_INC 0;
3958                fixed: 1 0;
3959                rel1 {
3960                   relative: 1.0 0.0;
3961                   to_x: "elm.icon.1";
3962                }
3963                rel2.to_x: "elm.icon.1";
3964                align: 0.0 0.0;
3965                visible: 0;
3966             }
3967          }
3968          part { name: "elm.icon.2";
3969             clip_to: "disclip";
3970             type: SWALLOW;
3971             scale: 1;
3972             description { state: "default" 0.0;
3973                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
3974                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
3975                fixed: 1 1;
3976                rel1 {
3977                   relative: 0.0 1.0;
3978                   to_x: "elm.padding.right";
3979                   to_y: "elm.padding.top";
3980                }
3981                rel2 {
3982                   relative: 0.0 1.0;
3983                   to_x: "elm.padding.right";
3984                   to_y: "elm.text.1";
3985                }
3986                align: 1.0 0.5;
3987             }
3988             GENLIST_DESCRIPTION_FLIP_ENABLED
3989          }
3990          part { name: "elm.padding.icon2.left";
3991             clip_to: "disclip";
3992             type: RECT;
3993             scale: 1;
3994             description { state: "default" 0.0;
3995                min: GENLIST_PADDING_16_INC 0;
3996                fixed: 1 0;
3997                rel1 {
3998                   relative: 0.0 0.0;
3999                   to_x: "elm.icon.2";
4000                }
4001                rel2.to_x: "elm.icon.2";
4002                align: 1.0 0.0;
4003                visible: 0;
4004             }
4005          }
4006          part { name: "elm.text.1";
4007             clip_to: "disclip";
4008             type: TEXT;
4009             mouse_events: 0;
4010             scale: 1;
4011             description { state: "default" 0.0;
4012                min: 0 GENLIST_SIZE_61_INC;
4013                fixed: 0 1;
4014                rel1 {
4015                   relative: 1.0 1.0;
4016                   to_x: "elm.padding.left";
4017                   to_y: "elm.padding.top";
4018                }
4019                rel2 {
4020                   relative: 0.0 1.0;
4021                   to_x: "elm.padding.icon2.left";
4022                   to_y: "elm.padding.top";
4023                }
4024                align: 0.0 0.0;
4025                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
4026                text {
4027                   font: "SLP:style=Roman";
4028                   size: GENLIST_FONT_44_INC;
4029                   min: 0 1;
4030                   align: 0.0 0.5;
4031                   text_class: "list_item";
4032                }
4033             }
4034             description { state: "selected" 0.0;
4035                inherit: "default" 0.0;
4036                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4037             }
4038             GENLIST_DESCRIPTION_FLIP_ENABLED
4039          }
4040          part { name: "elm.text.2";
4041             clip_to: "disclip";
4042             type: TEXT;
4043             mouse_events: 0;
4044             scale: 1;
4045             description { state: "default" 0.0;
4046                rel1 {
4047                   relative: 1.0 1.0;
4048                   to_x: "elm.padding.icon1.right";
4049                   to_y: "elm.text.1";
4050                }
4051                rel2 {
4052                   relative: 0.0 0.0;
4053                   to_x: "elm.padding.right";
4054                   to_y: "elm.padding.bottom";
4055                }
4056                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
4057                text {
4058                   font: "SLP:style=Medium";
4059                   size: GENLIST_FONT_32_INC;
4060                   min: 0 1;
4061                   align: 0.0 0.5;
4062                   text_class: "slp_medium";
4063                }
4064             }
4065             description { state: "selected" 0.0;
4066                inherit: "default" 0.0;
4067                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4068             }
4069             GENLIST_DESCRIPTION_FLIP_ENABLED
4070          }
4071          GENLIST_PART_FLIP
4072          GENLIST_PART_DISCLIP
4073       }
4074       programs {
4075          // signal: elm,state,%s,active
4076          //   a "check" item named %s went active
4077          // signal: elm,state,%s,passive
4078          //   a "check" item named %s went passive
4079          // default is passive
4080          program { name: "go_active";
4081             signal: "elm,state,selected";
4082             source: "elm";
4083             action: STATE_SET "selected" 0.0;
4084             target: "bg_image";
4085             target: "elm.text.1";
4086             target: "elm.text.2";
4087             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
4088          }
4089          program { name: "go_passive";
4090             signal: "elm,state,unselected";
4091             source: "elm";
4092             action: STATE_SET "default" 0.0;
4093             target: "bg_image";
4094             target: "elm.text.1";
4095             target: "elm.text.2";
4096             transition: LINEAR 0.1;
4097          }
4098          program { name: "go_disabled";
4099             signal: "elm,state,disabled";
4100             source: "elm";
4101             action: STATE_SET "disabled" 0.0;
4102             target: "disclip";
4103          }
4104          program { name: "go_enabled";
4105             signal: "elm,state,enabled";
4106             source: "elm";
4107             action: STATE_SET "default" 0.0;
4108             target: "disclip";
4109          }
4110          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
4111          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
4112       }
4113    }
4114
4115 // 3.2.9
4116    group { name: "elm/genlist/item/2text.7/default";
4117       alias: "elm/genlist/item_odd/2text.7/default";
4118       alias: "elm/genlist/item_compress/2text.7/default";
4119       alias: "elm/genlist/item_compress_odd/2text.7/default";
4120       data.item: "stacking" "above";
4121       data.item: "selectraise" "on";
4122       data.item: "texts" "elm.text.1 elm.text.2";
4123       data.item: "flips" "elm.flip.content";
4124       images {
4125          image: "00_list_bar_press_1x80.png" COMP;
4126       }
4127       parts {
4128          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
4129          GENLIST_PART_BG_IMAGE
4130          GENLIST_PART_BOTTOM_LINE
4131          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
4132          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
4133          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
4134          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
4135          part { name: "elm.text.1";
4136             clip_to: "disclip";
4137             type: TEXT;
4138             mouse_events: 0;
4139             scale: 1;
4140             description { state: "default" 0.0;
4141                min: 0 GENLIST_SIZE_61_INC;
4142                fixed: 0 1;
4143                rel1 {
4144                   relative: 1.0 1.0;
4145                   to_x: "elm.padding.left";
4146                   to_y: "elm.padding.top";
4147                }
4148                rel2 {
4149                   relative: 0.0 1.0;
4150                   to_x: "elm.padding.right";
4151                   to_y: "elm.padding.top";
4152                }
4153                align: 0.0 0.0;
4154                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
4155                text {
4156                   font: "SLP:style=Roman";
4157                   size: GENLIST_FONT_44_INC;
4158                   min: 0 1;
4159                   align: 0.0 0.5;
4160                   text_class: "list_item";
4161                }
4162             }
4163             description { state: "selected" 0.0;
4164                inherit: "default" 0.0;
4165                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4166             }
4167             GENLIST_DESCRIPTION_FLIP_ENABLED
4168          }
4169          part { name: "elm.text.2";
4170             clip_to: "disclip";
4171             type: TEXT;
4172             mouse_events: 0;
4173             scale: 1;
4174             description { state: "default" 0.0;
4175                rel1 {
4176                   relative: 1.0 1.0;
4177                   to_x: "elm.padding.left";
4178                   to_y: "elm.text.1";
4179                }
4180                rel2 {
4181                   relative: 0.0 0.0;
4182                   to_x: "elm.padding.right";
4183                   to_y: "elm.padding.bottom";
4184                }
4185                align: 0.0 0.0;
4186                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
4187                text {
4188                   font: "SLP:style=Medium";
4189                   size: GENLIST_FONT_32_INC;
4190                   min: 0 1;
4191                   align: 0.0 0.5;
4192                   text_class: "slp_medium";
4193                }
4194             }
4195             description { state: "selected" 0.0;
4196                inherit: "default" 0.0;
4197                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4198             }
4199             GENLIST_DESCRIPTION_FLIP_ENABLED
4200          }
4201          GENLIST_PART_FLIP
4202          GENLIST_PART_DISCLIP
4203       }
4204       programs {
4205          // signal: elm,state,%s,active
4206          //   a "check" item named %s went active
4207          // signal: elm,state,%s,passive
4208          //   a "check" item named %s went passive
4209          // default is passive
4210          program { name: "go_active";
4211             signal: "elm,state,selected";
4212             source: "elm";
4213             action: STATE_SET "selected" 0.0;
4214             target: "bg_image";
4215             target: "elm.text.1";
4216             target: "elm.text.2";
4217             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
4218          }
4219          program { name: "go_passive";
4220             signal: "elm,state,unselected";
4221             source: "elm";
4222             action: STATE_SET "default" 0.0;
4223             target: "bg_image";
4224             target: "elm.text.1";
4225             target: "elm.text.2";
4226             transition: LINEAR 0.1;
4227          }
4228          program { name: "go_disabled";
4229             signal: "elm,state,disabled";
4230             source: "elm";
4231             action: STATE_SET "disabled" 0.0;
4232             target: "disclip";
4233          }
4234          program { name: "go_enabled";
4235             signal: "elm,state,enabled";
4236             source: "elm";
4237             action: STATE_SET "default" 0.0;
4238             target: "disclip";
4239          }
4240          GENLIST_PROGRAM_FLIP_2TEXT
4241          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
4242       }
4243    }
4244
4245 // 3.2.10
4246    group { name: "elm/genlist/item/2text.1icon.7/default";
4247       alias: "elm/genlist/item_odd/2text.1icon.7/default";
4248       alias: "elm/genlist/item_compress/2text.1icon.7/default";
4249       alias: "elm/genlist/item_compress_odd/2text.1icon.7/default";
4250       data.item: "stacking" "above";
4251       data.item: "selectraise" "on";
4252       data.item: "texts" "elm.text.1 elm.text.2";
4253       data.item: "contents" "elm.icon";
4254       data.item: "flips" "elm.flip.content";
4255       images {
4256          image: "00_list_bar_press_1x80.png" COMP;
4257       }
4258       parts {
4259          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
4260          GENLIST_PART_BG_IMAGE
4261          GENLIST_PART_BOTTOM_LINE
4262          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
4263          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
4264          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
4265          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
4266          part { name: "elm.icon";
4267             clip_to: "disclip";
4268             type: SWALLOW;
4269             scale: 1;
4270             description { state: "default" 0.0;
4271                fixed: 1 1;
4272                rel1 {
4273                   relative: 0.0 1.0;
4274                   to_x: "elm.padding.right";
4275                   to_y: "elm.padding.top";
4276                }
4277                rel2 {
4278                   relative: 0.0 0.0;
4279                   to_x: "elm.padding.right";
4280                   to_y: "elm.padding.bottom";
4281                }
4282                align: 1.0 0.5;
4283             }
4284             GENLIST_DESCRIPTION_FLIP_ENABLED
4285          }
4286          part { name: "elm.padding.icon.left";
4287             clip_to: "disclip";
4288             type: RECT;
4289             scale: 1;
4290             description { state: "default" 0.0;
4291                min: GENLIST_PADDING_16_INC 0;
4292                fixed: 1 0;
4293                rel1.to_x: "elm.icon";
4294                rel2 {
4295                   relative: 0.0 1.0;
4296                   to_x: "elm.icon";
4297                }
4298                align: 1.0 0.0;
4299                visible: 0;
4300             }
4301          }
4302          part { name: "elm.text.1";
4303             clip_to: "disclip";
4304             type: TEXT;
4305             mouse_events: 0;
4306             scale: 1;
4307             description { state: "default" 0.0;
4308                min: 0 GENLIST_SIZE_61_INC;
4309                fixed: 0 1;
4310                rel1 {
4311                   relative: 1.0 1.0;
4312                   to_x: "elm.padding.left";
4313                   to_y: "elm.padding.top";
4314                }
4315                rel2 {
4316                   relative: 0.0 1.0;
4317                   to_x: "elm.padding.icon.left";
4318                   to_y: "elm.padding.top";
4319                }
4320                align: 0.0 0.0;
4321                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
4322                text {
4323                   font: "SLP:style=Roman";
4324                   size: GENLIST_FONT_44_INC;
4325                   min: 0 1;
4326                   align: 0.0 0.5;
4327                   text_class: "list_item";
4328                }
4329             }
4330             description { state: "selected" 0.0;
4331                inherit: "default" 0.0;
4332                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4333             }
4334             GENLIST_DESCRIPTION_FLIP_ENABLED
4335          }
4336          part { name: "elm.text.2";
4337             clip_to: "disclip";
4338             type: TEXT;
4339             mouse_events: 0;
4340             scale: 1;
4341             description { state: "default" 0.0;
4342                rel1 {
4343                   relative: 1.0 1.0;
4344                   to_x: "elm.padding.left";
4345                   to_y: "elm.text.1";
4346                }
4347                rel2 {
4348                   relative: 0.0 0.0;
4349                   to_x: "elm.padding.icon.left";
4350                   to_y: "elm.padding.bottom";
4351                }
4352                align: 0.0 0.0;
4353                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
4354                text {
4355                   font: "SLP:style=Medium";
4356                   size: GENLIST_FONT_32_INC;
4357                   min: 0 1;
4358                   align: 0.0 0.5;
4359                   text_class: "slp_medium";
4360                }
4361             }
4362             description { state: "selected" 0.0;
4363                inherit: "default" 0.0;
4364                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4365             }
4366             GENLIST_DESCRIPTION_FLIP_ENABLED
4367          }
4368          GENLIST_PART_FLIP
4369          GENLIST_PART_DISCLIP
4370       }
4371       programs {
4372          // signal: elm,state,%s,active
4373          //   a "check" item named %s went active
4374          // signal: elm,state,%s,passive
4375          //   a "check" item named %s went passive
4376          // default is passive
4377          program { name: "go_active";
4378             signal: "elm,state,selected";
4379             source: "elm";
4380             action: STATE_SET "selected" 0.0;
4381             target: "bg_image";
4382             target: "elm.text.1";
4383             target: "elm.text.2";
4384             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
4385          }
4386          program { name: "go_passive";
4387             signal: "elm,state,unselected";
4388             source: "elm";
4389             action: STATE_SET "default" 0.0;
4390             target: "bg_image";
4391             target: "elm.text.1";
4392             target: "elm.text.2";
4393             transition: LINEAR 0.1;
4394          }
4395          program { name: "go_disabled";
4396             signal: "elm,state,disabled";
4397             source: "elm";
4398             action: STATE_SET "disabled" 0.0;
4399             target: "disclip";
4400          }
4401          program { name: "go_enabled";
4402             signal: "elm,state,enabled";
4403             source: "elm";
4404             action: STATE_SET "default" 0.0;
4405             target: "disclip";
4406          }
4407          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
4408          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
4409       }
4410    }
4411
4412    group { name: "elm/genlist/item_compress/2text.1icon.7.tb/default";
4413       inherit: "elm/genlist/item/2text.1icon.7/default";
4414       parts {
4415          part { name: "elm.text.2";
4416             clip_to: "disclip";
4417             type: TEXTBLOCK;
4418             mouse_events: 0;
4419             scale: 1;
4420             description { state: "default" 0.0;
4421                rel1 {
4422                   relative: 1.0 1.0;
4423                   to_x: "elm.padding.left";
4424                   to_y: "elm.text.1";
4425                }
4426                rel2 {
4427                   relative: 0.0 0.0;
4428                   to_x: "elm.padding.icon.left";
4429                   to_y: "elm.padding.bottom";
4430                }
4431                align: 0.0 0.5;
4432                text {
4433                   style: "genlist_default_textblock_style";
4434                   min: 0 1;
4435                   align: 0.0 0.5;
4436                }
4437             }
4438             description { state: "selected" 0.0;
4439                inherit: "default" 0.0;
4440                text.style: "genlist_default_textblock_selected_style";
4441             }
4442             GENLIST_DESCRIPTION_FLIP_ENABLED
4443          }
4444       }
4445    }
4446
4447 // 3.2.11
4448    group { name: "elm/genlist/item/2text.1icon.11/default";
4449       alias: "elm/genlist/item_odd/2text.1icon.11/default";
4450       alias: "elm/genlist/item_compress/2text.1icon.11/default";
4451       alias: "elm/genlist/item_compress_odd/2text.1icon.11/default";
4452       data.item: "stacking" "above";
4453       data.item: "selectraise" "on";
4454       data.item: "texts" "elm.text.1 elm.text.2";
4455       data.item: "contents" "elm.icon";
4456       data.item: "flips" "elm.flip.content";
4457       images {
4458          image: "00_list_bar_press_1x80.png" COMP;
4459       }
4460       parts {
4461          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
4462          GENLIST_PART_BG_IMAGE
4463          GENLIST_PART_BOTTOM_LINE
4464          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
4465          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
4466          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
4467          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
4468          part { name: "elm.icon";
4469             clip_to: "disclip";
4470             type: SWALLOW;
4471             scale: 1;
4472             description { state: "default" 0.0;
4473                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
4474                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
4475                fixed: 1 1;
4476                rel1 {
4477                   relative: 0.0 1.0;
4478                   to_x: "elm.padding.right";
4479                   to_y: "elm.padding.top";
4480                }
4481                rel2 {
4482                   relative: 0.0 0.0;
4483                   to_x: "elm.padding.right";
4484                   to_y: "elm.padding.bottom";
4485                }
4486                align: 1.0 0.5;
4487             }
4488             GENLIST_DESCRIPTION_FLIP_ENABLED
4489          }
4490          part { name: "elm.padding.icon.left";
4491             clip_to: "disclip";
4492             type: RECT;
4493             scale: 1;
4494             description { state: "default" 0.0;
4495                min: GENLIST_PADDING_16_INC 0;
4496                fixed: 1 0;
4497                rel1.to_x: "elm.icon";
4498                rel2 {
4499                   relative: 0.0 1.0;
4500                   to_x: "elm.icon";
4501                }
4502                align: 1.0 0.0;
4503                visible: 0;
4504             }
4505          }
4506          part { name: "elm.text.1";
4507             clip_to: "disclip";
4508             type: TEXT;
4509             mouse_events: 0;
4510             scale: 1;
4511             description { state: "default" 0.0;
4512                min: 0 GENLIST_SIZE_61_INC;
4513                fixed: 0 1;
4514                rel1 {
4515                   relative: 1.0 1.0;
4516                   to_x: "elm.padding.left";
4517                   to_y: "elm.padding.top";
4518                }
4519                rel2 {
4520                   relative: 0.0 1.0;
4521                   to_x: "elm.padding.icon.left";
4522                   to_y: "elm.padding.top";
4523                }
4524                align: 0.0 0.0;
4525                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
4526                text {
4527                   font: "SLP:style=Roman";
4528                   size: GENLIST_FONT_44_INC;
4529                   min: 0 1;
4530                   align: 0.0 0.5;
4531                   text_class: "list_item";
4532                }
4533             }
4534             description { state: "selected" 0.0;
4535                inherit: "default" 0.0;
4536                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4537             }
4538             GENLIST_DESCRIPTION_FLIP_ENABLED
4539          }
4540          part { name: "elm.text.2";
4541             clip_to: "disclip";
4542             type: TEXT;
4543             mouse_events: 0;
4544             scale: 1;
4545             description { state: "default" 0.0;
4546                rel1 {
4547                   relative: 1.0 1.0;
4548                   to_x: "elm.padding.left";
4549                   to_y: "elm.text.1";
4550                }
4551                rel2 {
4552                   relative: 0.0 0.0;
4553                   to_x: "elm.padding.icon.left";
4554                   to_y: "elm.padding.bottom";
4555                }
4556                align: 0.0 0.0;
4557                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
4558                text {
4559                   font: "SLP:style=Medium";
4560                   size: GENLIST_FONT_32_INC;
4561                   min: 0 1;
4562                   align: 0.0 0.5;
4563                   text_class: "slp_medium";
4564                }
4565             }
4566             description { state: "selected" 0.0;
4567                inherit: "default" 0.0;
4568                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4569             }
4570             GENLIST_DESCRIPTION_FLIP_ENABLED
4571          }
4572          GENLIST_PART_FLIP
4573          GENLIST_PART_DISCLIP
4574       }
4575       programs {
4576          // signal: elm,state,%s,active
4577          //   a "check" item named %s went active
4578          // signal: elm,state,%s,passive
4579          //   a "check" item named %s went passive
4580          // default is passive
4581          program { name: "go_active";
4582             signal: "elm,state,selected";
4583             source: "elm";
4584             action: STATE_SET "selected" 0.0;
4585             target: "bg_image";
4586             target: "elm.text.1";
4587             target: "elm.text.2";
4588             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
4589          }
4590          program { name: "go_passive";
4591             signal: "elm,state,unselected";
4592             source: "elm";
4593             action: STATE_SET "default" 0.0;
4594             target: "bg_image";
4595             target: "elm.text.1";
4596             target: "elm.text.2";
4597             transition: LINEAR 0.1;
4598          }
4599          program { name: "go_disabled";
4600             signal: "elm,state,disabled";
4601             source: "elm";
4602             action: STATE_SET "disabled" 0.0;
4603             target: "disclip";
4604          }
4605          program { name: "go_enabled";
4606             signal: "elm,state,enabled";
4607             source: "elm";
4608             action: STATE_SET "default" 0.0;
4609             target: "disclip";
4610          }
4611          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
4612          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
4613       }
4614    }
4615
4616 // 3.2.12
4617    group { name: "elm/genlist/item/2text.2icon.2/default";
4618       alias: "elm/genlist/item_odd/2text.2icon.2/default";
4619       alias: "elm/genlist/item_compress/2text.2icon.2/default";
4620       alias: "elm/genlist/item_compress_odd/2text.2icon.2/default";
4621       data.item: "stacking" "above";
4622       data.item: "selectraise" "on";
4623       data.item: "texts" "elm.text.1 elm.text.2";
4624       data.item: "contents" "elm.icon.1 elm.icon.2";
4625       data.item: "flips" "elm.flip.content";
4626       images {
4627          image: "00_list_bar_press_1x80.png" COMP;
4628       }
4629       parts {
4630          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
4631          GENLIST_PART_BG_IMAGE
4632          GENLIST_PART_BOTTOM_LINE
4633          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
4634          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
4635          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
4636          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
4637          part { name: "elm.icon.2";
4638             clip_to: "disclip";
4639             type: SWALLOW;
4640             scale: 1;
4641             description { state: "default" 0.0;
4642                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
4643                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
4644                fixed: 1 1;
4645                rel1 {
4646                   relative: 0.0 1.0;
4647                   to_x: "elm.padding.right";
4648                   to_y: "elm.padding.top";
4649                }
4650                rel2 {
4651                   relative: 0.0 0.0;
4652                   to_x: "elm.padding.right";
4653                   to_y: "elm.padding.bottom";
4654                }
4655                align: 1.0 0.5;
4656             }
4657             GENLIST_DESCRIPTION_FLIP_ENABLED
4658          }
4659          part { name: "elm.padding.icon2.left";
4660             clip_to: "disclip";
4661             type: RECT;
4662             scale: 1;
4663             description { state: "default" 0.0;
4664                min: GENLIST_PADDING_16_INC 0;
4665                fixed: 1 0;
4666                rel1.to_x: "elm.icon.2";
4667                rel2 {
4668                   relative: 0.0 1.0;
4669                   to_x: "elm.icon.2";
4670                }
4671                align: 1.0 0.0;
4672                visible: 0;
4673             }
4674          }
4675         part { name: "elm.text.1";
4676             clip_to: "disclip";
4677             type: TEXT;
4678             mouse_events: 0;
4679             scale: 1;
4680             description { state: "default" 0.0;
4681                min: 0 GENLIST_SIZE_61_INC;
4682                fixed: 0 1;
4683                rel1 {
4684                   relative: 1.0 1.0;
4685                   to_x: "elm.padding.left";
4686                   to_y: "elm.padding.top";
4687                }
4688                rel2 {
4689                   relative: 0.0 1.0;
4690                   to_x: "elm.padding.icon2.left";
4691                   to_y: "elm.padding.top";
4692                }
4693                align: 0.0 0.0;
4694                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
4695                text {
4696                   font: "SLP:style=Roman";
4697                   size: GENLIST_FONT_44_INC;
4698                   min: 0 1;
4699                   align: 0.0 0.5;
4700                   text_class: "list_item";
4701                }
4702             }
4703             description { state: "selected" 0.0;
4704                inherit: "default" 0.0;
4705                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4706             }
4707             GENLIST_DESCRIPTION_FLIP_ENABLED
4708          }
4709          part { name: "elm.text.2";
4710             clip_to: "disclip";
4711             type: TEXT;
4712             mouse_events: 0;
4713             scale: 1;
4714             description { state: "default" 0.0;
4715                min: 0 0;
4716                max: GENLIST_SIZE_576_INC 0;
4717                fixed: 1 0;
4718                rel1 {
4719                   relative: 1.0 1.0;
4720                   to_x: "elm.padding.left";
4721                   to_y: "elm.text.1";
4722                }
4723                rel2 {
4724                   relative: 1.0 0.0;
4725                   to_x: "elm.padding.left";
4726                   to_y: "elm.padding.bottom";
4727                }
4728                align: 0.0 0.5;
4729                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
4730                text {
4731                   font: "SLP:style=Medium";
4732                   size: GENLIST_FONT_32_INC;
4733                   min: 1 1;
4734                   align: 0.0 0.5;
4735                   text_class: "slp_medium";
4736                }
4737             }
4738             description { state: "selected" 0.0;
4739                inherit: "default" 0.0;
4740                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4741             }
4742             GENLIST_DESCRIPTION_FLIP_ENABLED
4743          }
4744          part { name: "elm.padding.text2.right";
4745             clip_to: "disclip";
4746             type: RECT;
4747             scale: 1;
4748             description { state: "default" 0.0;
4749                min: GENLIST_PADDING_16_INC 0;
4750                fixed: 1 0;
4751                visible: 0;
4752                rel1 {
4753                   relative: 1.0 0.0;
4754                   to_x: "elm.text.2";
4755                }
4756                rel2.to_x: "elm.text.2";
4757                align: 0.0 0.0;
4758             }
4759          }
4760          part { name: "elm.icon.1";
4761             clip_to: "disclip";
4762             type: SWALLOW;
4763             scale: 1;
4764             description { state: "default" 0.0;
4765                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
4766                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
4767                fixed: 1 1;
4768                rel1 {
4769                   relative: 1.0 1.0;
4770                   to_x: "elm.padding.text2.right";
4771                   to_y: "elm.text.1";
4772                }
4773                rel2 {
4774                   relative: 1.0 0.0;
4775                   to_x: "elm.padding.text2.right";
4776                   to_y: "elm.padding.bottom";
4777                }
4778                align: 0.0 0.5;
4779             }
4780             GENLIST_DESCRIPTION_FLIP_ENABLED
4781          }
4782          GENLIST_PART_FLIP
4783          GENLIST_PART_DISCLIP
4784       }
4785       programs {
4786          // signal: elm,state,%s,active
4787          //   a "check" item named %s went active
4788          // signal: elm,state,%s,passive
4789          //   a "check" item named %s went passive
4790          // default is passive
4791          program { name: "go_active";
4792             signal: "elm,state,selected";
4793             source: "elm";
4794             action: STATE_SET "selected" 0.0;
4795             target: "bg_image";
4796             target: "elm.text.1";
4797             target: "elm.text.2";
4798             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
4799          }
4800          program { name: "go_passive";
4801             signal: "elm,state,unselected";
4802             source: "elm";
4803             action: STATE_SET "default" 0.0;
4804             target: "bg_image";
4805             target: "elm.text.1";
4806             target: "elm.text.2";
4807             transition: LINEAR 0.1;
4808          }
4809          program { name: "go_disabled";
4810             signal: "elm,state,disabled";
4811             source: "elm";
4812             action: STATE_SET "disabled" 0.0;
4813             target: "disclip";
4814          }
4815          program { name: "go_enabled";
4816             signal: "elm,state,enabled";
4817             source: "elm";
4818             action: STATE_SET "default" 0.0;
4819             target: "disclip";
4820          }
4821          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
4822          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
4823       }
4824    }
4825
4826 // 3.2.13
4827    group { name: "elm/genlist/item/2text.1icon.4/default";
4828       alias: "elm/genlist/item_odd/2text.1icon.4/default";
4829       alias: "elm/genlist/item_compress/2text.1icon.4/default";
4830       alias: "elm/genlist/item_compress_odd/2text.1icon.4/default";
4831       data.item: "stacking" "above";
4832       data.item: "selectraise" "on";
4833       data.item: "texts" "elm.text.1 elm.text.2";
4834       data.item: "contents" "elm.icon";
4835       data.item: "flips" "elm.flip.content";
4836       images {
4837          image: "00_list_bar_press_1x80.png" COMP;
4838       }
4839       parts {
4840          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
4841          GENLIST_PART_BG_IMAGE
4842          GENLIST_PART_BOTTOM_LINE
4843          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
4844          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
4845          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
4846          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
4847          part { name: "elm.icon";
4848             clip_to: "disclip";
4849             type: SWALLOW;
4850             scale: 1;
4851             description { state: "default" 0.0;
4852                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
4853                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
4854                fixed: 1 1;
4855                rel1 {
4856                   relative: 1.0 1.0;
4857                   to_x: "elm.padding.left";
4858                   to_y: "elm.padding.top";
4859                }
4860                rel2 {
4861                   relative: 1.0 0.0;
4862                   to_x: "elm.padding.left";
4863                   to_y: "elm.padding.bottom";
4864                }
4865                align: 0.0 0.5;
4866             }
4867             GENLIST_DESCRIPTION_FLIP_ENABLED
4868          }
4869          part { name: "elm.padding.icon.right";
4870             clip_to: "disclip";
4871             type: RECT;
4872             scale: 1;
4873             description { state: "default" 0.0;
4874                min: GENLIST_PADDING_16_INC 0;
4875                fixed: 1 0;
4876                rel1 {
4877                   relative: 1.0 0.0;
4878                   to_x: "elm.icon";
4879                }
4880                rel2.to_x: "elm.icon";
4881                align: 0.0 0.0;
4882                visible: 0;
4883             }
4884          }
4885          part { name: "elm.text.1";
4886             clip_to: "disclip";
4887             type: TEXT;
4888             mouse_events: 0;
4889             scale: 1;
4890             description { state: "default" 0.0;
4891                min: 0 GENLIST_SIZE_61_INC;
4892                fixed: 0 1;
4893                rel1 {
4894                   relative: 1.0 1.0;
4895                   to_x: "elm.padding.icon.right";
4896                   to_y: "elm.padding.top";
4897                }
4898                rel2 {
4899                   relative: 0.0 1.0;
4900                   to_x: "elm.padding.right";
4901                   to_y: "elm.padding.top";
4902                }
4903                align: 0.0 0.0;
4904                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
4905                text {
4906                   font: "SLP:style=Roman";
4907                   size: GENLIST_FONT_44_INC;
4908                   min: 0 1;
4909                   align: 0.0 0.5;
4910                   text_class: "list_item";
4911                }
4912             }
4913             description { state: "selected" 0.0;
4914                inherit: "default" 0.0;
4915                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4916             }
4917             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
4918             GENLIST_DESCRIPTION_FLIP_ENABLED
4919          }
4920          part { name: "elm.text.2";
4921             clip_to: "disclip";
4922             type: TEXT;
4923             mouse_events: 0;
4924             scale: 1;
4925             description { state: "default" 0.0;
4926                rel1 {
4927                   relative: 1.0 1.0;
4928                   to_x: "elm.padding.icon.right";
4929                   to_y: "elm.text.1";
4930                }
4931                rel2 {
4932                   relative: 0.0 0.0;
4933                   to_x: "elm.padding.right";
4934                   to_y: "elm.padding.bottom";
4935                }
4936                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
4937                text {
4938                   font: "SLP:style=Medium";
4939                   size: GENLIST_FONT_32_INC;
4940                   min: 0 1;
4941                   align: 0.0 0.5;
4942                   text_class: "slp_medium";
4943                }
4944             }
4945             description { state: "selected" 0.0;
4946                inherit: "default" 0.0;
4947                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
4948             }
4949             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
4950             GENLIST_DESCRIPTION_FLIP_ENABLED
4951          }
4952          GENLIST_PART_FLIP
4953          GENLIST_PART_DISCLIP
4954       }
4955       programs {
4956          // signal: elm,state,%s,active
4957          //   a "check" item named %s went active
4958          // signal: elm,state,%s,passive
4959          //   a "check" item named %s went passive
4960          // default is passive
4961          program { name: "go_active";
4962             signal: "elm,state,selected";
4963             source: "elm";
4964             action: STATE_SET "selected" 0.0;
4965             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_2TEXT
4966             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
4967          }
4968          program { name: "go_passive";
4969             signal: "elm,state,unselected";
4970             source: "elm";
4971             action: STATE_SET "default" 0.0;
4972             target: "bg_image";
4973             target: "elm.text.1";
4974             target: "elm.text.2";
4975             transition: LINEAR 0.1;
4976          }
4977          program { name: "go_disabled";
4978             signal: "elm,state,disabled";
4979             source: "elm";
4980             action: STATE_SET "disabled" 0.0;
4981             target: "disclip";
4982          }
4983          program { name: "go_enabled";
4984             signal: "elm,state,enabled";
4985             source: "elm";
4986             action: STATE_SET "default" 0.0;
4987             target: "disclip";
4988          }
4989          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
4990          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
4991       }
4992    }
4993
4994    group { name: "elm/genlist/item_compress/2text.1icon.4.tb/default";
4995       inherit: "elm/genlist/item/2text.1icon.4/default";
4996       parts {
4997          part { name: "elm.text.1";
4998             clip_to: "disclip";
4999             type: TEXTBLOCK;
5000             mouse_events: 0;
5001             scale: 1;
5002             description { state: "default" 0.0;
5003                min: 0 GENLIST_SIZE_61_INC;
5004                fixed: 0 1;
5005                rel1 {
5006                   relative: 1.0 1.0;
5007                   to_x: "elm.padding.icon.right";
5008                   to_y: "elm.padding.top";
5009                }
5010                rel2 {
5011                   relative: 0.0 1.0;
5012                   to_x: "elm.padding.right";
5013                   to_y: "elm.padding.top";
5014                }
5015                align: 0.0 0.0;
5016                text {
5017                   style: "genlist_default_textblock_style";
5018                   size: GENLIST_FONT_44_INC;
5019                   min: 0 1;
5020                   align: 0.0 0.5;
5021                   text_class: "list_item";
5022                }
5023             }
5024             description { state: "selected" 0.0;
5025                inherit: "default" 0.0;
5026                text.style: "genlist_default_textblock_selected_style";
5027             }
5028             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
5029             GENLIST_DESCRIPTION_FLIP_ENABLED
5030          }
5031          part { name: "elm.text.2";
5032             clip_to: "disclip";
5033             type: TEXTBLOCK;
5034             mouse_events: 0;
5035             scale: 1;
5036             description { state: "default" 0.0;
5037                rel1 {
5038                   relative: 1.0 1.0;
5039                   to_x: "elm.padding.icon.right";
5040                   to_y: "elm.text.1";
5041                }
5042                rel2 {
5043                   relative: 0.0 0.0;
5044                   to_x: "elm.padding.right";
5045                   to_y: "elm.padding.bottom";
5046                }
5047                align: 0.0 0.5;
5048                text {
5049                   style: "genlist_default_textblock_style";
5050                   size: GENLIST_FONT_32_INC;
5051                   min: 0 1;
5052                   align: 0.0 0.5;
5053                }
5054             }
5055             description { state: "selected" 0.0;
5056                inherit: "default" 0.0;
5057                text.style: "genlist_default_textblock_selected_style";
5058             }
5059             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
5060             GENLIST_DESCRIPTION_FLIP_ENABLED
5061          }
5062       }
5063    }
5064
5065 // 3.2.14
5066    group { name: "elm/genlist/item/3text.1icon.2/default";
5067       alias: "elm/genlist/item_odd/3text.1icon.2/default";
5068       alias: "elm/genlist/item_compress/3text.1icon.2/default";
5069       alias: "elm/genlist/item_compress_odd/3text.1icon.2/default";
5070       data.item: "stacking" "above";
5071       data.item: "selectraise" "on";
5072       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
5073       data.item: "contents" "elm.icon";
5074       data.item: "flips" "elm.flip.content";
5075       images {
5076          image: "00_list_bar_press_1x80.png" COMP;
5077       }
5078       parts {
5079          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
5080          GENLIST_PART_BG_IMAGE
5081          GENLIST_PART_BOTTOM_LINE
5082          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
5083          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
5084          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
5085          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
5086          part { name: "elm.icon";
5087             clip_to: "disclip";
5088             type: SWALLOW;
5089             scale: 1;
5090             description { state: "default" 0.0;
5091                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5092                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5093                fixed: 1 1;
5094                rel1 {
5095                   relative: 1.0 1.0;
5096                   offset: 0 0;
5097                   to_x: "elm.padding.left";
5098                   to_y: "elm.padding.top";
5099                }
5100                rel2 {
5101                   relative: 1.0 0.0;
5102                   to_x: "elm.padding.left";
5103                   to_y: "elm.padding.bottom";
5104                }
5105                align: 0.0 0.5;
5106             }
5107             GENLIST_DESCRIPTION_FLIP_ENABLED
5108          }
5109          part { name: "elm.padding.icon.right";
5110             clip_to: "disclip";
5111             type: RECT;
5112             scale: 1;
5113             description { state: "default" 0.0;
5114                min: GENLIST_PADDING_16_INC 0;
5115                fixed: 1 0;
5116                rel1 {
5117                   relative: 1.0 0.0;
5118                   to_x: "elm.icon";
5119                }
5120                rel2.to_x: "elm.icon";
5121                align: 0.0 0.0;
5122                visible: 0;
5123             }
5124          }
5125          part { name: "elm.text.3";
5126             clip_to: "disclip";
5127             type: TEXT;
5128             mouse_events: 0;
5129             scale: 1;
5130             description { state: "default" 0.0;
5131                min: 0 GENLIST_SIZE_61_INC;
5132                max: GENLIST_SIZE_192_INC GENLIST_SIZE_61_INC;
5133                fixed: 0 1;
5134                rel1 {
5135                   relative: 0.0 1.0;
5136                   to_x: "elm.padding.left";
5137                   to_y: "elm.padding.top";
5138                }
5139                rel2 {
5140                   relative: 0.0 1.0;
5141                   to_x: "elm.padding.right";
5142                   to_y: "elm.padding.top";
5143                }
5144                align: 1.0 0.0;
5145                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
5146                text {
5147                   font: "SLP:style=Medium";
5148                   size: GENLIST_FONT_32_INC;
5149                   min: 0 1;
5150                   max: 1 0;
5151                   align: 1.0 0.5;
5152                   text_class: "slp_medium";
5153                }
5154             }
5155             description { state: "selected" 0.0;
5156                inherit: "default" 0.0;
5157                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5158             }
5159             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
5160             GENLIST_DESCRIPTION_FLIP_ENABLED
5161          }
5162          part { name: "elm.padding.text3.left";
5163             clip_to: "disclip";
5164             type: RECT;
5165             mouse_events: 0;
5166             scale: 1;
5167             description { state: "default" 0.0;
5168                min: GENLIST_ICON_SMALL_SIZE 0;
5169                fixed: 1 0;
5170                rel1.to_x: "elm.text.3";
5171                rel2 {
5172                   relative: 0.0 1.0;
5173                   to_x: "elm.text.3";
5174                }
5175                align: 1.0 0.5;
5176                visible: 0;
5177             }
5178          }
5179          part { name: "elm.text.1";
5180             clip_to: "disclip";
5181             type: TEXT;
5182             mouse_events: 0;
5183             scale: 1;
5184             description { state: "default" 0.0;
5185                rel1 {
5186                   relative: 1.0 1.0;
5187                   to_x: "elm.padding.icon.right";
5188                   to_y: "elm.padding.top";
5189                }
5190                rel2 {
5191                   relative: 0.0 1.0;
5192                   to_x: "elm.padding.text3.left";
5193                   to_y: "elm.text.3";
5194                }
5195                align: 0.0 0.5;
5196                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
5197                text {
5198                   font: "SLP:style=Roman";
5199                   size: GENLIST_FONT_44_INC;
5200                   min: 0 1;
5201                   align: 0.0 0.5;
5202                   text_class: "list_item";
5203                }
5204             }
5205             description { state: "selected" 0.0;
5206                inherit: "default" 0.0;
5207                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5208             }
5209             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
5210             GENLIST_DESCRIPTION_FLIP_ENABLED
5211          }
5212          part { name: "elm.text.2";
5213             clip_to: "disclip";
5214             type: TEXT;
5215             mouse_events: 0;
5216             scale: 1;
5217             description { state: "default" 0.0;
5218                rel1 {
5219                   relative: 1.0 1.0;
5220                   to_x: "elm.padding.icon.right";
5221                   to_y: "elm.text.1";
5222                }
5223                rel2 {
5224                   relative: 0.0 0.0;
5225                   to_x: "elm.padding.right";
5226                   to_y: "elm.padding.bottom";
5227                }
5228                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
5229                text {
5230                   font: "SLP:style=Medium";
5231                   size: GENLIST_FONT_32_INC;
5232                   min: 0 1;
5233                   align: 0.0 0.5;
5234                   text_class: "slp_medium";
5235                }
5236             }
5237             description { state: "selected" 0.0;
5238                inherit: "default" 0.0;
5239                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5240             }
5241             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
5242             GENLIST_DESCRIPTION_FLIP_ENABLED
5243          }
5244          GENLIST_PART_FLIP
5245          GENLIST_PART_DISCLIP
5246       }
5247       programs {
5248          // signal: elm,state,%s,active
5249          //   a "check" item named %s went active
5250          // signal: elm,state,%s,passive
5251          //   a "check" item named %s went passive
5252          // default is passive
5253          program { name: "go_active";
5254             signal: "elm,state,selected";
5255             source: "elm";
5256             action: STATE_SET "selected" 0.0;
5257             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_3TEXT
5258             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
5259          }
5260          program { name: "go_passive";
5261             signal: "elm,state,unselected";
5262             source: "elm";
5263             action: STATE_SET "default" 0.0;
5264             target: "bg_image";
5265             target: "elm.text.1";
5266             target: "elm.text.2";
5267             target: "elm.text.3";
5268             transition: LINEAR 0.1;
5269          }
5270          program { name: "go_disabled";
5271             signal: "elm,state,disabled";
5272             source: "elm";
5273             action: STATE_SET "disabled" 0.0;
5274             target: "disclip";
5275          }
5276          program { name: "go_enabled";
5277             signal: "elm,state,enabled";
5278             source: "elm";
5279             action: STATE_SET "default" 0.0;
5280             target: "disclip";
5281          }
5282          GENLIST_PROGRAM_FLIP_3TEXT_1ICON
5283          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
5284       }
5285    }
5286
5287 // 3.2.15
5288    group { name: "elm/genlist/item/2text.1icon.8/default";
5289       alias: "elm/genlist/item_odd/2text.1icon.8/default";
5290       alias: "elm/genlist/item_compress/2text.1icon.8/default";
5291       alias: "elm/genlist/item_compress_odd/2text.1icon.8/default";
5292       data.item: "stacking" "above";
5293       data.item: "selectraise" "on";
5294       data.item: "texts" "elm.text.1 elm.text.2";
5295       data.item: "contents" "elm.icon";
5296       data.item: "flips" "elm.flip.content";
5297       images {
5298          image: "00_list_bar_press_1x80.png" COMP;
5299       }
5300       parts {
5301          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
5302          GENLIST_PART_BG_IMAGE
5303          GENLIST_PART_BOTTOM_LINE
5304          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
5305          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
5306          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
5307          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
5308          part { name: "elm.icon";
5309             clip_to: "disclip";
5310             type: SWALLOW;
5311             scale: 1;
5312             description { state: "default" 0.0;
5313                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5314                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5315                fixed: 1 1;
5316                rel1 {
5317                   relative: 1.0 1.0;
5318                   to_x: "elm.padding.left";
5319                   to_y: "elm.padding.top";
5320                }
5321                rel2 {
5322                   relative: 1.0 0.0;
5323                   to_x: "elm.padding.left";
5324                   to_y: "elm.padding.bottom";
5325                }
5326                align: 0.0 0.5;
5327             }
5328             GENLIST_DESCRIPTION_FLIP_ENABLED
5329          }
5330          part { name: "elm.padding.icon.right";
5331             clip_to: "disclip";
5332             type: RECT;
5333             scale: 1;
5334             description { state: "default" 0.0;
5335                min: GENLIST_PADDING_16_INC 0;
5336                fixed: 1 0;
5337                rel1 {
5338                   relative: 1.0 0.0;
5339                   to_x: "elm.icon";
5340                }
5341                rel2.to_x: "elm.icon";
5342                align: 0.0 0.0;
5343                visible: 0;
5344             }
5345          }
5346          part { name: "elm.text.1";
5347             clip_to: "disclip";
5348             type: TEXT;
5349             mouse_events: 0;
5350             scale: 1;
5351             description { state: "default" 0.0;
5352                min: 0 GENLIST_SIZE_61_INC;
5353                fixed: 0 1;
5354                rel1 {
5355                   relative: 1.0 1.0;
5356                   to_x: "elm.padding.icon.right";
5357                   to_y: "elm.padding.top";
5358                }
5359                rel2 {
5360                   relative: 0.0 1.0;
5361                   to_x: "elm.padding.right";
5362                   to_y: "elm.padding.top";
5363                }
5364                align: 0.0 0.0;
5365                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
5366                text {
5367                   font: "SLP:style=Roman";
5368                   size: GENLIST_FONT_44_INC;
5369                   min: 0 1;
5370                   align: 0.0 0.5;
5371                   text_class: "list_item";
5372                }
5373             }
5374             description { state: "selected" 0.0;
5375                inherit: "default" 0.0;
5376                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5377             }
5378             GENLIST_DESCRIPTION_FLIP_ENABLED
5379          }
5380          part { name: "elm.text.2";
5381             clip_to: "disclip";
5382             type: TEXT;
5383             mouse_events: 0;
5384             scale: 1;
5385             description { state: "default" 0.0;
5386                rel1 {
5387                   relative: 1.0 1.0;
5388                   to_x: "elm.padding.icon.right";
5389                   to_y: "elm.text.1";
5390                }
5391                rel2 {
5392                   relative: 0.0 0.0;
5393                   to_x: "elm.padding.right";
5394                   to_y: "elm.padding.bottom";
5395                }
5396                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
5397                text {
5398                   font: "SLP:style=Medium";
5399                   size: GENLIST_FONT_32_INC;
5400                   min: 0 1;
5401                   align: 0.0 0.5;
5402                   text_class: "slp_medium";
5403                }
5404             }
5405             description { state: "selected" 0.0;
5406                inherit: "default" 0.0;
5407                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5408             }
5409             GENLIST_DESCRIPTION_FLIP_ENABLED
5410          }
5411          GENLIST_PART_FLIP
5412          GENLIST_PART_DISCLIP
5413       }
5414       programs {
5415          // signal: elm,state,%s,active
5416          //   a "check" item named %s went active
5417          // signal: elm,state,%s,passive
5418          //   a "check" item named %s went passive
5419          // default is passive
5420          program { name: "go_active";
5421             signal: "elm,state,selected";
5422             source: "elm";
5423             action: STATE_SET "selected" 0.0;
5424             target: "bg_image";
5425             target: "elm.text.1";
5426             target: "elm.text.2";
5427             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
5428          }
5429          program { name: "go_passive";
5430             signal: "elm,state,unselected";
5431             source: "elm";
5432             action: STATE_SET "default" 0.0;
5433             target: "bg_image";
5434             target: "elm.text.1";
5435             target: "elm.text.2";
5436             transition: LINEAR 0.1;
5437          }
5438          program { name: "go_disabled";
5439             signal: "elm,state,disabled";
5440             source: "elm";
5441             action: STATE_SET "disabled" 0.0;
5442             target: "disclip";
5443          }
5444          program { name: "go_enabled";
5445             signal: "elm,state,enabled";
5446             source: "elm";
5447             action: STATE_SET "default" 0.0;
5448             target: "disclip";
5449          }
5450          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
5451          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
5452       }
5453    }
5454
5455 // 3.2.16
5456    group { name: "elm/genlist/item/2text.2icon.3/default";
5457       alias: "elm/genlist/item_odd/2text.2icon.3/default";
5458       alias: "elm/genlist/item_compress/2text.2icon.3/default";
5459       alias: "elm/genlist/item_compress_odd/2text.2icon.3/default";
5460       data.item: "stacking" "above";
5461       data.item: "selectraise" "on";
5462       data.item: "texts" "elm.text.1 elm.text.2";
5463       data.item: "contents" "elm.icon.1 elm.icon.2";
5464       data.item: "flips" "elm.flip.content";
5465       images {
5466          image: "00_list_bar_press_1x80.png" COMP;
5467       }
5468       parts {
5469          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
5470          GENLIST_PART_BG_IMAGE
5471          GENLIST_PART_BOTTOM_LINE
5472          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
5473          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
5474          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
5475          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
5476          part { name: "elm.icon.1";
5477             clip_to: "disclip";
5478             type: SWALLOW;
5479             scale: 1;
5480             description { state: "default" 0.0;
5481                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5482                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5483                fixed: 1 1;
5484                rel1 {
5485                   relative: 1.0 1.0;
5486                   to_x: "elm.padding.left";
5487                   to_y: "elm.padding.top";
5488                }
5489                rel2 {
5490                   relative: 1.0 0.0;
5491                   to_x: "elm.padding.left";
5492                   to_y: "elm.padding.bottom";
5493                }
5494                align: 0.0 0.5;
5495             }
5496             GENLIST_DESCRIPTION_FLIP_ENABLED
5497          }
5498          part { name: "elm.padding.icon1.right";
5499             clip_to: "disclip";
5500             type: RECT;
5501             scale: 1;
5502             description { state: "default" 0.0;
5503                min: GENLIST_PADDING_16_INC 0;
5504                fixed: 1 0;
5505                rel1 {
5506                   relative: 1.0 0.0;
5507                   to_x: "elm.icon.1";
5508                }
5509                rel2.to_x: "elm.icon.1";
5510                align: 0.0 0.0;
5511                visible: 0;
5512             }
5513          }
5514          part { name: "elm.text.1";
5515             clip_to: "disclip";
5516             type: TEXT;
5517             mouse_events: 0;
5518             scale: 1;
5519             description { state: "default" 0.0;
5520                min: 0 GENLIST_SIZE_61_INC;
5521                fixed: 0 1;
5522                rel1 {
5523                   relative: 1.0 1.0;
5524                   to_x: "elm.padding.icon1.right";
5525                   to_y: "elm.padding.top";
5526                }
5527                rel2 {
5528                   relative: 0.0 1.0;
5529                   to_x: "elm.padding.icon2.left";
5530                   to_y: "elm.padding.top";
5531                }
5532                align: 0.0 0.0;
5533                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
5534                text {
5535                   font: "SLP:style=Roman";
5536                   size: GENLIST_FONT_44_INC;
5537                   min: 0 1;
5538                   align: 0.0 0.5;
5539                   text_class: "list_item";
5540                }
5541             }
5542             description { state: "selected" 0.0;
5543                inherit: "default" 0.0;
5544                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5545             }
5546             GENLIST_DESCRIPTION_FLIP_ENABLED
5547          }
5548          part { name: "elm.icon.2";
5549             clip_to: "disclip";
5550             type: SWALLOW;
5551             scale: 1;
5552             description { state: "default" 0.0;
5553                fixed: 1 1;
5554                rel1 {
5555                   relative: 0.0 1.0;
5556                   to_x: "elm.padding.right";
5557                   to_y: "elm.padding.top";
5558                }
5559                rel2 {
5560                   relative: 0.0 1.0;
5561                   to_x: "elm.padding.right";
5562                   to_y: "elm.text.1";
5563                }
5564                align: 1.0 0.5;
5565             }
5566             GENLIST_DESCRIPTION_FLIP_ENABLED
5567          }
5568          part { name: "elm.padding.icon2.left";
5569             clip_to: "disclip";
5570             type: RECT;
5571             scale: 1;
5572             description { state: "default" 0.0;
5573                min: GENLIST_PADDING_16_INC 0;
5574                fixed: 1 0;
5575                rel1 {
5576                   relative: 0.0 0.0;
5577                   to_x: "elm.icon.2";
5578                }
5579                rel2.to_x: "elm.icon.2";
5580                align: 1.0 0.0;
5581                visible: 0;
5582             }
5583          }
5584          part { name: "elm.text.2";
5585             clip_to: "disclip";
5586             type: TEXT;
5587             mouse_events: 0;
5588             scale: 1;
5589             description { state: "default" 0.0;
5590                rel1 {
5591                   relative: 1.0 1.0;
5592                   to_x: "elm.padding.icon1.right";
5593                   to_y: "elm.text.1";
5594                }
5595                rel2 {
5596                   relative: 0.0 0.0;
5597                   to_x: "elm.padding.icon2.left";
5598                   to_y: "elm.padding.bottom";
5599                }
5600                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
5601                text {
5602                   font: "SLP:style=Medium";
5603                   size: GENLIST_FONT_32_INC;
5604                   min: 0 1;
5605                   align: 0.0 0.5;
5606                   text_class: "slp_medium";
5607                }
5608             }
5609             description { state: "selected" 0.0;
5610                inherit: "default" 0.0;
5611                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5612             }
5613             GENLIST_DESCRIPTION_FLIP_ENABLED
5614          }
5615          GENLIST_PART_FLIP
5616          GENLIST_PART_DISCLIP
5617       }
5618       programs {
5619          // signal: elm,state,%s,active
5620          //   a "check" item named %s went active
5621          // signal: elm,state,%s,passive
5622          //   a "check" item named %s went passive
5623          // default is passive
5624          program { name: "go_active";
5625             signal: "elm,state,selected";
5626             source: "elm";
5627             action: STATE_SET "selected" 0.0;
5628             target: "bg_image";
5629             target: "elm.text.1";
5630             target: "elm.text.2";
5631             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
5632          }
5633          program { name: "go_passive";
5634             signal: "elm,state,unselected";
5635             source: "elm";
5636             action: STATE_SET "default" 0.0;
5637             target: "bg_image";
5638             target: "elm.text.1";
5639             target: "elm.text.2";
5640             transition: LINEAR 0.1;
5641          }
5642          program { name: "go_disabled";
5643             signal: "elm,state,disabled";
5644             source: "elm";
5645             action: STATE_SET "disabled" 0.0;
5646             target: "disclip";
5647          }
5648          program { name: "go_enabled";
5649             signal: "elm,state,enabled";
5650             source: "elm";
5651             action: STATE_SET "default" 0.0;
5652             target: "disclip";
5653          }
5654          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
5655          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
5656       }
5657    }
5658
5659    group { name: "elm/genlist/item_compress/2text.2icon.3.tb/default";
5660       inherit: "elm/genlist/item/2text.2icon.3/default";
5661       parts {
5662          part { name: "elm.text.2";
5663             clip_to: "disclip";
5664             type: TEXTBLOCK;
5665             mouse_events: 0;
5666             scale: 1;
5667             description { state: "default" 0.0;
5668                rel1 {
5669                   relative: 1.0 1.0;
5670                   to_x: "elm.padding.icon1.right";
5671                   to_y: "elm.text.1";
5672                }
5673                rel2 {
5674                   relative: 0.0 0.0;
5675                   to_x: "elm.padding.icon2.left";
5676                   to_y: "elm.padding.bottom";
5677                }
5678                align: 0.0 0.5;
5679                text {
5680                   style: "genlist_default_textblock_style";
5681                   min: 0 1;
5682                   align: 0.0 0.5;
5683                }
5684             }
5685             description { state: "selected" 0.0;
5686                inherit: "default" 0.0;
5687                text.style: "genlist_default_textblock_selected_style";
5688             }
5689             GENLIST_DESCRIPTION_FLIP_ENABLED
5690          }
5691       }
5692    }
5693
5694 // 3.2.17
5695    group { name: "elm/genlist/item/2text.2icon.4/default";
5696       alias: "elm/genlist/item_odd/2text.2icon.4/default";
5697       alias: "elm/genlist/item_compress/2text.2icon.4/default";
5698       alias: "elm/genlist/item_compress_odd/2text.2icon.4/default";
5699       data.item: "stacking" "above";
5700       data.item: "selectraise" "on";
5701       data.item: "texts" "elm.text.1 elm.text.2";
5702       data.item: "contents" "elm.icon.1 elm.icon.2";
5703       data.item: "flips" "elm.flip.content";
5704       images {
5705          image: "00_list_bar_press_1x80.png" COMP;
5706       }
5707       parts {
5708          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
5709          GENLIST_PART_BG_IMAGE
5710          GENLIST_PART_BOTTOM_LINE
5711          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
5712          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
5713          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
5714          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
5715          part { name: "elm.icon.1";
5716             clip_to: "disclip";
5717             type: SWALLOW;
5718             scale: 1;
5719             description { state: "default" 0.0;
5720                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5721                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5722                fixed: 1 1;
5723                rel1 {
5724                   relative: 1.0 1.0;
5725                   to_x: "elm.padding.left";
5726                   to_y: "elm.padding.top";
5727                }
5728                rel2 {
5729                   relative: 1.0 0.0;
5730                   to_x: "elm.padding.left";
5731                   to_y: "elm.padding.bottom";
5732                }
5733                align: 0.0 0.5;
5734             }
5735             GENLIST_DESCRIPTION_FLIP_ENABLED
5736          }
5737          part { name: "elm.padding.icon1.right";
5738             clip_to: "disclip";
5739             type: RECT;
5740             scale: 1;
5741             description { state: "default" 0.0;
5742                min: GENLIST_PADDING_16_INC 0;
5743                fixed: 1 0;
5744                rel1 {
5745                   relative: 1.0 0.0;
5746                   to_x: "elm.icon.1";
5747                }
5748                rel2.to_x: "elm.icon.1";
5749                align: 0.0 0.0;
5750                visible: 0;
5751             }
5752          }
5753          part { name: "elm.icon.2";
5754             clip_to: "disclip";
5755             type: SWALLOW;
5756             scale: 1;
5757             description { state: "default" 0.0;
5758                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5759                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
5760                fixed: 1 1;
5761                rel1 {
5762                   relative: 0.0 1.0;
5763                   to_x: "elm.padding.right";
5764                   to_y: "elm.padding.top";
5765                }
5766                rel2 {
5767                   relative: 0.0 0.0;
5768                   to_x: "elm.padding.right";
5769                   to_y: "elm.padding.bottom";
5770                }
5771                align: 1.0 0.5;
5772             }
5773             GENLIST_DESCRIPTION_FLIP_ENABLED
5774          }
5775          part { name: "elm.padding.icon2.left";
5776             clip_to: "disclip";
5777             type: RECT;
5778             scale: 1;
5779             description { state: "default" 0.0;
5780                min: GENLIST_PADDING_16_INC 0;
5781                fixed: 1 0;
5782                rel1.to_x: "elm.icon.2";
5783                rel2 {
5784                   relative: 0.0 1.0;
5785                   to_x: "elm.icon.2";
5786                }
5787                align: 1.0 0.0;
5788                visible: 0;
5789             }
5790          }
5791          part { name: "elm.text.1";
5792             clip_to: "disclip";
5793             type: TEXT;
5794             mouse_events: 0;
5795             scale: 1;
5796             description { state: "default" 0.0;
5797                min: 0 GENLIST_SIZE_61_INC;
5798                fixed: 0 1;
5799                rel1 {
5800                   relative: 1.0 1.0;
5801                   to_x: "elm.padding.icon1.right";
5802                   to_y: "elm.padding.top";
5803                }
5804                rel2 {
5805                   relative: 0.0 1.0;
5806                   to_x: "elm.padding.icon2.left";
5807                   to_y: "elm.padding.top";
5808                }
5809                align: 0.0 0.0;
5810                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
5811                text {
5812                   font: "SLP:style=Roman";
5813                   size: GENLIST_FONT_44_INC;
5814                   min: 0 1;
5815                   align: 0.0 0.5;
5816                   text_class: "list_item";
5817                }
5818             }
5819             description { state: "selected" 0.0;
5820                inherit: "default" 0.0;
5821                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5822             }
5823             GENLIST_DESCRIPTION_FLIP_ENABLED
5824          }
5825          part { name: "elm.text.2";
5826             clip_to: "disclip";
5827             type: TEXT;
5828             mouse_events: 0;
5829             scale: 1;
5830             description { state: "default" 0.0;
5831                rel1 {
5832                   relative: 1.0 1.0;
5833                   to_x: "elm.padding.icon1.right";
5834                   to_y: "elm.text.1";
5835                }
5836                rel2 {
5837                   relative: 0.0 0.0;
5838                   to_x: "elm.padding.icon2.left";
5839                   to_y: "elm.padding.bottom";
5840                }
5841                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
5842                text {
5843                   font: "SLP:style=Medium";
5844                   size: GENLIST_FONT_32_INC;
5845                   min: 0 1;
5846                   align: 0.0 0.5;
5847                   text_class: "slp_medium";
5848                }
5849             }
5850             description { state: "selected" 0.0;
5851                inherit: "default" 0.0;
5852                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
5853             }
5854             GENLIST_DESCRIPTION_FLIP_ENABLED
5855          }
5856          GENLIST_PART_FLIP
5857          GENLIST_PART_DISCLIP
5858       }
5859       programs {
5860          // signal: elm,state,%s,active
5861          //   a "check" item named %s went active
5862          // signal: elm,state,%s,passive
5863          //   a "check" item named %s went passive
5864          // default is passive
5865          program { name: "go_active";
5866             signal: "elm,state,selected";
5867             source: "elm";
5868             action: STATE_SET "selected" 0.0;
5869             target: "bg_image";
5870             target: "elm.text.1";
5871             target: "elm.text.2";
5872             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
5873          }
5874          program { name: "go_passive";
5875             signal: "elm,state,unselected";
5876             source: "elm";
5877             action: STATE_SET "default" 0.0;
5878             target: "bg_image";
5879             target: "elm.text.1";
5880             target: "elm.text.2";
5881             transition: LINEAR 0.1;
5882          }
5883          program { name: "go_disabled";
5884             signal: "elm,state,disabled";
5885             source: "elm";
5886             action: STATE_SET "disabled" 0.0;
5887             target: "disclip";
5888          }
5889          program { name: "go_enabled";
5890             signal: "elm,state,enabled";
5891             source: "elm";
5892             action: STATE_SET "default" 0.0;
5893             target: "disclip";
5894          }
5895          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
5896          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
5897       }
5898    }
5899
5900    group { name: "elm/genlist/item_compress/2text.2icon.4.tb/default";
5901       inherit: "elm/genlist/item/2text.2icon.4/default";
5902       parts {
5903          part { name: "elm.text.1";
5904             clip_to: "disclip";
5905             type: TEXTBLOCK;
5906             mouse_events: 0;
5907             scale: 1;
5908             description { state: "default" 0.0;
5909                min: 0 GENLIST_SIZE_61_INC;
5910                fixed: 0 1;
5911                rel1 {
5912                   relative: 1.0 1.0;
5913                   to_x: "elm.padding.icon1.right";
5914                   to_y: "elm.padding.top";
5915                }
5916                rel2 {
5917                   relative: 0.0 1.0;
5918                   to_x: "elm.padding.icon2.left";
5919                   to_y: "elm.padding.top";
5920                }
5921                align: 0.0 0.0;
5922                text {
5923                   style: "genlist_default_textblock_style";
5924                   size: GENLIST_FONT_44_INC;
5925                   min: 0 1;
5926                   align: 0.0 0.5;
5927                   text_class: "list_item";
5928                }
5929             }
5930             description { state: "selected" 0.0;
5931                inherit: "default" 0.0;
5932                text.style: "genlist_default_textblock_selected_style";
5933             }
5934             GENLIST_DESCRIPTION_FLIP_ENABLED
5935          }
5936          part { name: "elm.text.2";
5937             clip_to: "disclip";
5938             type: TEXTBLOCK;
5939             mouse_events: 0;
5940             scale: 1;
5941             description { state: "default" 0.0;
5942                rel1 {
5943                   relative: 1.0 1.0;
5944                   to_x: "elm.padding.icon1.right";
5945                   to_y: "elm.text.1";
5946                }
5947                rel2 {
5948                   relative: 0.0 0.0;
5949                   to_x: "elm.padding.icon2.left";
5950                   to_y: "elm.padding.bottom";
5951                }
5952                text {
5953                   style: "genlist_default_textblock_style";
5954                   size: GENLIST_FONT_32_INC;
5955                   min: 0 1;
5956                   align: 0.0 0.5;
5957                   text_class: "slp_medium";
5958                }
5959             }
5960             description { state: "selected" 0.0;
5961                inherit: "default" 0.0;
5962                text.style: "genlist_default_textblock_selected_style";
5963             }
5964             GENLIST_DESCRIPTION_FLIP_ENABLED
5965          }
5966       }
5967    }
5968
5969 // 3.2.18
5970    group { name: "elm/genlist/item/2text.1icon.9/default";
5971       alias: "elm/genlist/item_odd/2text.1icon.9/default";
5972       alias: "elm/genlist/item_compress/2text.1icon.9/default";
5973       alias: "elm/genlist/item_compress_odd/2text.1icon.9/default";
5974       data.item: "stacking" "above";
5975       data.item: "selectraise" "on";
5976       data.item: "texts" "elm.text.1 elm.text.2";
5977       data.item: "contents" "elm.icon";
5978       data.item: "flips" "elm.flip.content";
5979       images {
5980          image: "00_list_bar_press_1x80.png" COMP;
5981       }
5982       parts {
5983          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
5984          GENLIST_PART_BG_IMAGE
5985          GENLIST_PART_BOTTOM_LINE
5986          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
5987          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
5988          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
5989          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
5990          part { name: "elm.icon";
5991             clip_to: "disclip";
5992             type: SWALLOW;
5993             scale: 1;
5994             description { state: "default" 0.0;
5995                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
5996                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
5997                fixed: 1 1;
5998                rel1 {
5999                   relative: 1.0 1.0;
6000                   to_x: "elm.padding.left";
6001                   to_y: "elm.padding.top";
6002                }
6003                rel2 {
6004                   relative: 1.0 0.0;
6005                   to_x: "elm.padding.left";
6006                   to_y: "elm.padding.bottom";
6007                }
6008                align: 0.0 0.5;
6009             }
6010             GENLIST_DESCRIPTION_FLIP_ENABLED
6011          }
6012          part { name: "elm.padding.icon.right";
6013             clip_to: "disclip";
6014             type: RECT;
6015             scale: 1;
6016             description { state: "default" 0.0;
6017                min: GENLIST_PADDING_16_INC 0;
6018                fixed: 1 0;
6019                rel1 {
6020                   relative: 1.0 0.0;
6021                   to_x: "elm.icon";
6022                }
6023                rel2.to_x: "elm.icon";
6024                align: 0.0 0.0;
6025                visible: 0;
6026             }
6027          }
6028          part { name: "elm.text.1";
6029             clip_to: "disclip";
6030             type: TEXT;
6031             mouse_events: 0;
6032             scale: 1;
6033             description { state: "default" 0.0;
6034                min: 0 GENLIST_SIZE_61_INC;
6035                fixed: 0 1;
6036                rel1 {
6037                   relative: 1.0 1.0;
6038                   to_x: "elm.padding.icon.right";
6039                   to_y: "elm.padding.top";
6040                }
6041                rel2 {
6042                   relative: 0.0 1.0;
6043                   to_x: "elm.padding.right";
6044                   to_y: "elm.padding.top";
6045                }
6046                align: 0.0 0.0;
6047                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
6048                text {
6049                   font: "SLP:style=Roman";
6050                   size: GENLIST_FONT_44_INC;
6051                   min: 0 1;
6052                   align: 0.0 0.5;
6053                   text_class: "list_item";
6054                }
6055             }
6056             description { state: "selected" 0.0;
6057                inherit: "default" 0.0;
6058                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6059             }
6060             GENLIST_DESCRIPTION_FLIP_ENABLED
6061          }
6062          part { name: "elm.text.2";
6063             clip_to: "disclip";
6064             type: TEXT;
6065             mouse_events: 0;
6066             scale: 1;
6067             description { state: "default" 0.0;
6068                rel1 {
6069                   relative: 1.0 1.0;
6070                   to_x: "elm.padding.icon.right";
6071                   to_y: "elm.text.1";
6072                }
6073                rel2 {
6074                   relative: 0.0 0.0;
6075                   to_x: "elm.padding.right";
6076                   to_y: "elm.padding.bottom";
6077                }
6078                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
6079                text {
6080                   font: "SLP:style=Medium";
6081                   size: GENLIST_FONT_32_INC;
6082                   min: 0 1;
6083                   align: 0.0 0.5;
6084                   text_class: "slp_medium";
6085                }
6086             }
6087             description { state: "selected" 0.0;
6088                inherit: "default" 0.0;
6089                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6090             }
6091             GENLIST_DESCRIPTION_FLIP_ENABLED
6092          }
6093          GENLIST_PART_FLIP
6094          GENLIST_PART_DISCLIP
6095       }
6096       programs {
6097          // signal: elm,state,%s,active
6098          //   a "check" item named %s went active
6099          // signal: elm,state,%s,passive
6100          //   a "check" item named %s went passive
6101          // default is passive
6102          program { name: "go_active";
6103             signal: "elm,state,selected";
6104             source: "elm";
6105             action: STATE_SET "selected" 0.0;
6106             target: "bg_image";
6107             target: "elm.text.1";
6108             target: "elm.text.2";
6109             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
6110          }
6111          program { name: "go_passive";
6112             signal: "elm,state,unselected";
6113             source: "elm";
6114             action: STATE_SET "default" 0.0;
6115             target: "bg_image";
6116             target: "elm.text.1";
6117             target: "elm.text.2";
6118             transition: LINEAR 0.1;
6119          }
6120          program { name: "go_disabled";
6121             signal: "elm,state,disabled";
6122             source: "elm";
6123             action: STATE_SET "disabled" 0.0;
6124             target: "disclip";
6125          }
6126          program { name: "go_enabled";
6127             signal: "elm,state,enabled";
6128             source: "elm";
6129             action: STATE_SET "default" 0.0;
6130             target: "disclip";
6131          }
6132          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
6133          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
6134       }
6135    }
6136
6137 // ???
6138    group { name: "elm/genlist/item_compress/multiline/dialogue/2text/default";
6139       alias: "elm/genlist/item_compress_odd/multiline/dialogue/2text/default";
6140       data.item: "stacking" "above";
6141       data.item: "selectraise" "on";
6142       data.item: "texts" "elm.text.1 elm.text.2";
6143       parts {
6144          part { name: "base";
6145             type: RECT;
6146             repeat_events: 1;
6147             description { state: "default" 0.0;
6148                color: GENLIST_PART_BG_COLOR_INC;
6149             }
6150          }
6151          GENLIST_PART_DIALOGUE_BG_IMAGE
6152          GENLIST_PART_BOTTOM_LINE
6153          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
6154          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
6155          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
6156          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
6157          GENLIST_PART_DIALOGUE_ITEM
6158          GENLIST_PART_DIALOGUE_RIGHT_LINE
6159          part { name: "elm.text.1";
6160             clip_to: "disclip";
6161             type: TEXT;
6162             mouse_events: 0;
6163             scale: 1;
6164             description { state: "default" 0.0;
6165                min: 0 GENLIST_SIZE_48_INC;
6166                fixed: 0 1;
6167                rel1 {
6168                   relative: 1.0 1.0;
6169                   to_x: "elm.padding.left";
6170                   to_y: "elm.padding.top";
6171                }
6172                rel2 {
6173                   relative: 0.0 1.0;
6174                   to_x: "elm.padding.right";
6175                   to_y: "elm.padding.top";
6176                }
6177                align: 0.0 0.0;
6178                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
6179                text {
6180                   font: "SLP:style=Roman";
6181                   size: GENLIST_FONT_44_INC;
6182                   min: 0 1;
6183                   align: 0.0 0.5;
6184                   text_class: "list_item";
6185                }
6186             }
6187             description { state: "selected" 0.0;
6188                inherit: "default" 0.0;
6189                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6190             }
6191          }
6192          part { name: "elm.text.2";
6193             clip_to: "disclip";
6194             type: TEXTBLOCK;
6195             mouse_events: 0;
6196             scale: 1;
6197             description { state: "default" 0.0;
6198                rel1 {
6199                   relative: 1.0 1.0;
6200                   to_x: "elm.padding.left";
6201                   to_y: "elm.text.1";
6202                }
6203                rel2 {
6204                   relative: 0.0 0.0;
6205                   to_x: "elm.padding.right";
6206                   to_y: "elm.padding.bottom";
6207                }
6208                text {
6209                   style: "genlist_textblock_sub_style";
6210                   min: 0 1;
6211                   align: 0.0 0.5;
6212                }
6213             }
6214             description { state: "selected" 0.0;
6215                inherit: "default" 0.0;
6216                text.style: "genlist_textblock_sub_selected_style";
6217             }
6218          }
6219          GENLIST_PART_DISCLIP
6220       }
6221       programs {
6222          // signal: elm,state,%s,active
6223          //   a "check" item named %s went active
6224          // signal: elm,state,%s,passive
6225          //   a "check" item named %s went passive
6226          // default is passive
6227          program { name: "go_active";
6228             signal: "elm,state,selected";
6229             source: "elm";
6230             action: STATE_SET "selected" 0.0;
6231             target: "bg_image";
6232             target: "elm.text.1";
6233             target: "elm.text.2";
6234             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
6235          }
6236          program { name: "go_passive";
6237             signal: "elm,state,unselected";
6238             source: "elm";
6239             action: STATE_SET "default" 0.0;
6240             target: "bg_image";
6241             target: "elm.text.1";
6242             target: "elm.text.2";
6243             transition: LINEAR 0.1;
6244          }
6245          program { name: "go_disabled";
6246             signal: "elm,state,disabled";
6247             source: "elm";
6248             action: STATE_SET "disabled" 0.0;
6249             target: "disclip";
6250          }
6251          program { name: "go_enabled";
6252             signal: "elm,state,enabled";
6253             source: "elm";
6254             action: STATE_SET "default" 0.0;
6255             target: "disclip";
6256          }
6257          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
6258       }
6259    }
6260
6261 // 3.2.19
6262    group { name: "elm/genlist/item/2text.2icon.7/default";
6263       alias: "elm/genlist/item_odd/2text.2icon.7/default";
6264       alias: "elm/genlist/item_compress/2text.2icon.7/default";
6265       alias: "elm/genlist/item_compress_odd/2text.2icon.7/default";
6266       data.item: "stacking" "above";
6267       data.item: "selectraise" "on";
6268       data.item: "texts" "elm.text.1 elm.text.2";
6269       data.item: "contents" "elm.icon.1 elm.icon.2";
6270       data.item: "flips" "elm.flip.content";
6271       images {
6272          image: "00_list_bar_press_1x80.png" COMP;
6273       }
6274       parts {
6275          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
6276          GENLIST_PART_BG_IMAGE
6277          GENLIST_PART_BOTTOM_LINE
6278          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
6279          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
6280          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
6281          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
6282          part { name: "elm.icon.1";
6283             clip_to: "disclip";
6284             type: SWALLOW;
6285             scale: 1;
6286             description { state: "default" 0.0;
6287                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
6288                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
6289                fixed: 1 1;
6290                rel1 {
6291                   relative: 1.0 1.0;
6292                   to_x: "elm.padding.left";
6293                   to_y: "elm.padding.top";
6294                }
6295                rel2 {
6296                   relative: 1.0 0.0;
6297                   to_x: "elm.padding.left";
6298                   to_y: "elm.padding.bottom";
6299                }
6300                align: 0.0 0.5;
6301             }
6302             GENLIST_DESCRIPTION_FLIP_ENABLED
6303          }
6304          part { name: "elm.padding.icon1.right";
6305             clip_to: "disclip";
6306             type: RECT;
6307             scale: 1;
6308             description { state: "default" 0.0;
6309                min: GENLIST_PADDING_16_INC 0;
6310                fixed: 1 0;
6311                rel1 {
6312                   relative: 1.0 0.0;
6313                   to_x: "elm.icon.1";
6314                }
6315                rel2.to_x: "elm.icon.1";
6316                align: 0.0 0.0;
6317                visible: 0;
6318             }
6319          }
6320          part { name: "elm.icon.2";
6321             clip_to: "disclip";
6322             type: SWALLOW;
6323             scale: 1;
6324             description { state: "default" 0.0;
6325                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
6326                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
6327                fixed: 1 1;
6328                rel1 {
6329                   relative: 0.0 1.0;
6330                   to_x: "elm.padding.right";
6331                   to_y: "elm.padding.top";
6332                }
6333                rel2 {
6334                   relative: 0.0 0.0;
6335                   to_x: "elm.padding.right";
6336                   to_y: "elm.padding.bottom";
6337                }
6338                align: 1.0 0.5;
6339             }
6340             GENLIST_DESCRIPTION_FLIP_ENABLED
6341          }
6342          part { name: "elm.padding.icon2.left";
6343             clip_to: "disclip";
6344             type: RECT;
6345             scale: 1;
6346             description { state: "default" 0.0;
6347                min: GENLIST_PADDING_16_INC 0;
6348                fixed: 1 0;
6349                rel1.to_x: "elm.icon.2";
6350                rel2 {
6351                   relative: 0.0 1.0;
6352                   to_x: "elm.icon.2";
6353                }
6354                align: 1.0 0.0;
6355                visible: 0;
6356             }
6357          }
6358          part { name: "elm.text.1";
6359             clip_to: "disclip";
6360             type: TEXT;
6361             mouse_events: 0;
6362             scale: 1;
6363             description { state: "default" 0.0;
6364                min: 0 GENLIST_SIZE_61_INC;
6365                fixed: 0 1;
6366                rel1 {
6367                   relative: 1.0 1.0;
6368                   to_x: "elm.padding.icon1.right";
6369                   to_y: "elm.padding.top";
6370                }
6371                rel2 {
6372                   relative: 0.0 1.0;
6373                   to_x: "elm.padding.icon2.left";
6374                   to_y: "elm.padding.top";
6375                }
6376                align: 0.0 0.0;
6377                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
6378                text {
6379                   font: "SLP:style=Roman";
6380                   size: GENLIST_FONT_44_INC;
6381                   min: 0 1;
6382                   align: 0.0 0.5;
6383                   text_class: "list_item";
6384                }
6385             }
6386             description { state: "selected" 0.0;
6387                inherit: "default" 0.0;
6388                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6389             }
6390             GENLIST_DESCRIPTION_FLIP_ENABLED
6391          }
6392          part { name: "elm.text.2";
6393             clip_to: "disclip";
6394             type: TEXT;
6395             mouse_events: 0;
6396             scale: 1;
6397             description { state: "default" 0.0;
6398                rel1 {
6399                   relative: 1.0 1.0;
6400                   to_x: "elm.padding.icon1.right";
6401                   to_y: "elm.text.1";
6402                }
6403                rel2 {
6404                   relative: 0.0 0.0;
6405                   to_x: "elm.padding.icon2.left";
6406                   to_y: "elm.padding.bottom";
6407                }
6408                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
6409                text {
6410                   font: "SLP:style=Medium";
6411                   size: GENLIST_FONT_32_INC;
6412                   min: 0 1;
6413                   align: 0.0 0.5;
6414                   text_class: "slp_medium";
6415                }
6416             }
6417             description { state: "selected" 0.0;
6418                inherit: "default" 0.0;
6419                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6420             }
6421             GENLIST_DESCRIPTION_FLIP_ENABLED
6422          }
6423          GENLIST_PART_FLIP
6424          GENLIST_PART_DISCLIP
6425       }
6426       programs {
6427          // signal: elm,state,%s,active
6428          //   a "check" item named %s went active
6429          // signal: elm,state,%s,passive
6430          //   a "check" item named %s went passive
6431          // default is passive
6432          program { name: "go_active";
6433             signal: "elm,state,selected";
6434             source: "elm";
6435             action: STATE_SET "selected" 0.0;
6436             target: "bg_image";
6437             target: "elm.text.1";
6438             target: "elm.text.2";
6439             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
6440          }
6441          program { name: "go_passive";
6442             signal: "elm,state,unselected";
6443             source: "elm";
6444             action: STATE_SET "default" 0.0;
6445             target: "bg_image";
6446             target: "elm.text.1";
6447             target: "elm.text.2";
6448             transition: LINEAR 0.1;
6449          }
6450          program { name: "go_disabled";
6451             signal: "elm,state,disabled";
6452             source: "elm";
6453             action: STATE_SET "disabled" 0.0;
6454             target: "disclip";
6455          }
6456          program { name: "go_enabled";
6457             signal: "elm,state,enabled";
6458             source: "elm";
6459             action: STATE_SET "default" 0.0;
6460             target: "disclip";
6461          }
6462          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
6463          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
6464       }
6465    }
6466
6467 // 3.2.20
6468    group { name: "elm/genlist/item/2text.2icon.5/default";
6469       alias: "elm/genlist/item_odd/2text.2icon.5/default";
6470       alias: "elm/genlist/item_compress/2text.2icon.5/default";
6471       alias: "elm/genlist/item_compress_odd/2text.2icon.5/default";
6472       data.item: "stacking" "above";
6473       data.item: "selectraise" "on";
6474       data.item: "texts" "elm.text.1 elm.text.2";
6475       data.item: "contents" "elm.icon.1 elm.icon.2";
6476       data.item: "flips" "elm.flip.content";
6477       images {
6478          image: "00_list_bar_press_1x80.png" COMP;
6479       }
6480       parts {
6481          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
6482          GENLIST_PART_BG_IMAGE
6483          GENLIST_PART_BOTTOM_LINE
6484          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
6485          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
6486          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
6487          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
6488          part { name: "elm.icon.1";
6489             clip_to: "disclip";
6490             type: SWALLOW;
6491             scale: 1;
6492             description { state: "default" 0.0;
6493                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
6494                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
6495                fixed: 1 1;
6496                rel1 {
6497                   relative: 1.0 1.0;
6498                   to_x: "elm.padding.left";
6499                   to_y: "elm.padding.top";
6500                }
6501                rel2 {
6502                   relative: 1.0 0.0;
6503                   to_x: "elm.padding.left";
6504                   to_y: "elm.padding.bottom";
6505                }
6506                align: 0.0 0.5;
6507             }
6508             GENLIST_DESCRIPTION_FLIP_ENABLED
6509          }
6510          part { name: "elm.padding.icon1.right";
6511             clip_to: "disclip";
6512             type: RECT;
6513             scale: 1;
6514             description { state: "default" 0.0;
6515                min: GENLIST_PADDING_16_INC 0;
6516                fixed: 1 0;
6517                rel1 {
6518                   relative: 1.0 0.0;
6519                   to_x: "elm.icon.1";
6520                }
6521                rel2.to_x: "elm.icon.1";
6522                align: 0.0 0.0;
6523                visible: 0;
6524             }
6525          }
6526          part { name: "elm.icon.2";
6527             clip_to: "disclip";
6528             type: SWALLOW;
6529             scale: 1;
6530             description { state: "default" 0.0;
6531                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
6532                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
6533                fixed: 1 1;
6534                rel1 {
6535                   relative: 1.0 1.0;
6536                   to_x: "elm.padding.icon1.right";
6537                   to_y: "elm.padding.top";
6538                }
6539                rel2 {
6540                   relative: 1.0 0.0;
6541                   to_x: "elm.padding.icon1.right";
6542                   to_y: "elm.padding.bottom";
6543                }
6544                align: 0.0 0.5;
6545             }
6546             GENLIST_DESCRIPTION_FLIP_ENABLED
6547          }
6548          part { name: "elm.padding.icon2.right";
6549             clip_to: "disclip";
6550             type: RECT;
6551             scale: 1;
6552             description { state: "default" 0.0;
6553                min: GENLIST_PADDING_16_INC 0;
6554                fixed: 1 0;
6555                rel1 {
6556                   relative: 1.0 0.0;
6557                   to_x: "elm.icon.2";
6558                }
6559                rel2.to_x: "elm.icon.2";
6560                align: 0.0 0.0;
6561                visible: 0;
6562             }
6563          }
6564          part { name: "elm.text.1";
6565             clip_to: "disclip";
6566             type: TEXT;
6567             mouse_events: 0;
6568             scale: 1;
6569             description { state: "default" 0.0;
6570                min: 0 GENLIST_SIZE_61_INC;
6571                fixed: 0 1;
6572                rel1 {
6573                   relative: 1.0 1.0;
6574                   to_x: "elm.padding.icon2.right";
6575                   to_y: "elm.padding.top";
6576                }
6577                rel2 {
6578                   relative: 0.0 1.0;
6579                   to_x: "elm.padding.right";
6580                   to_y: "elm.padding.top";
6581                }
6582                align: 0.0 0.0;
6583                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
6584                text {
6585                   font: "SLP:style=Roman";
6586                   size: GENLIST_FONT_44_INC;
6587                   min: 0 1;
6588                   align: 0.0 0.5;
6589                   text_class: "list_item";
6590                }
6591             }
6592             description { state: "selected" 0.0;
6593                inherit: "default" 0.0;
6594                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6595             }
6596             GENLIST_DESCRIPTION_FLIP_ENABLED
6597          }
6598          part { name: "elm.text.2";
6599             clip_to: "disclip";
6600             type: TEXT;
6601             mouse_events: 0;
6602             scale: 1;
6603             description { state: "default" 0.0;
6604                rel1 {
6605                   relative: 1.0 1.0;
6606                   to_x: "elm.padding.icon2.right";
6607                   to_y: "elm.text.1";
6608                }
6609                rel2 {
6610                   relative: 0.0 0.0;
6611                   to_x: "elm.padding.right";
6612                   to_y: "elm.padding.bottom";
6613                }
6614                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
6615                text {
6616                   font: "SLP:style=Medium";
6617                   size: GENLIST_FONT_32_INC;
6618                   min: 0 1;
6619                   align: 0.0 0.5;
6620                   text_class: "slp_medium";
6621                }
6622             }
6623             description { state: "selected" 0.0;
6624                inherit: "default" 0.0;
6625                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6626             }
6627             GENLIST_DESCRIPTION_FLIP_ENABLED
6628          }
6629          GENLIST_PART_FLIP
6630          GENLIST_PART_DISCLIP
6631       }
6632       programs {
6633          // signal: elm,state,%s,active
6634          //   a "check" item named %s went active
6635          // signal: elm,state,%s,passive
6636          //   a "check" item named %s went passive
6637          // default is passive
6638          program { name: "go_active";
6639             signal: "elm,state,selected";
6640             source: "elm";
6641             action: STATE_SET "selected" 0.0;
6642             target: "bg_image";
6643             target: "elm.text.1";
6644             target: "elm.text.2";
6645             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
6646          }
6647          program { name: "go_passive";
6648             signal: "elm,state,unselected";
6649             source: "elm";
6650             action: STATE_SET "default" 0.0;
6651             target: "bg_image";
6652             target: "elm.text.1";
6653             target: "elm.text.2";
6654             transition: LINEAR 0.1;
6655          }
6656          program { name: "go_disabled";
6657             signal: "elm,state,disabled";
6658             source: "elm";
6659             action: STATE_SET "disabled" 0.0;
6660             target: "disclip";
6661          }
6662          program { name: "go_enabled";
6663             signal: "elm,state,enabled";
6664             source: "elm";
6665             action: STATE_SET "default" 0.0;
6666             target: "disclip";
6667          }
6668          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
6669          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
6670       }
6671    }
6672
6673 // ???
6674    group { name: "elm/genlist/item/3text.5icon/default";
6675       alias: "elm/genlist/item_odd/3text.5icon/default";
6676       alias: "elm/genlist/item_compress/3text.5icon/default";
6677       alias: "elm/genlist/item_compress_odd/3text.5icon/default";
6678       data.item: "stacking" "above";
6679       data.item: "selectraise" "on";
6680       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
6681       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4 elm.swallow.colorbar";
6682       data.item: "flips" "elm.flip.content";
6683       images {
6684          image: "00_list_bar_press_1x80.png" COMP;
6685       }
6686       parts {
6687          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
6688          GENLIST_PART_BG_IMAGE
6689          GENLIST_PART_BOTTOM_LINE
6690          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
6691          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
6692          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
6693          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
6694          part { name: "elm.swallow.colorbar";
6695             clip_to: "disclip";
6696             type: SWALLOW;
6697             scale: 1;
6698             description { state: "default" 0.0;
6699                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
6700                fixed: 1 1;
6701                rel2.relative: 0.0 0.0;
6702                align: 0.0 0.0;
6703             }
6704          }
6705          part { name: "elm.text.3";
6706             clip_to: "disclip";
6707             type: TEXT;
6708             mouse_events: 0;
6709             scale: 1;
6710             description { state: "default" 0.0;
6711                min: GENLIST_SIZE_133_INC GENLIST_SIZE_61_INC;
6712                fixed: 1 1;
6713                rel1 {
6714                   relative: 0.0 0.0;
6715                   to_x: "elm.padding.right";
6716                   to_y: "elm.padding.bottom";
6717                }
6718                rel2 {
6719                   relative: 0.0 0.0;
6720                   to_x: "elm.padding.right";
6721                   to_y: "elm.padding.bottom";
6722                }
6723                align: 1.0 1.0;
6724                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
6725                text {
6726                   font: "SLP:style=Medium";
6727                   size: GENLIST_FONT_32_INC;
6728                   min: 0 1;
6729                   align: 1.0 0.5;
6730                   text_class: "slp_medium";
6731                }
6732             }
6733             description { state: "selected" 0.0;
6734                inherit: "default" 0.0;
6735                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6736             }
6737             GENLIST_DESCRIPTION_FLIP_ENABLED
6738          }
6739          part { name: "elm.icon.1";
6740             clip_to: "disclip";
6741             type: SWALLOW;
6742             scale: 1;
6743             description { state: "default" 0.0;
6744                rel1 {
6745                   relative: 0.0 1.0;
6746                   to_x: "elm.padding.right";
6747                   to_y: "elm.padding.top";
6748                }
6749                rel2 {
6750                   relative: 0.0 0.0;
6751                   to_x: "elm.padding.right";
6752                   to_y: "elm.text.3";
6753                }
6754                align: 1.0 0.5;
6755             }
6756             GENLIST_DESCRIPTION_FLIP_ENABLED
6757          }
6758          part { name: "elm.padding.icon1.left";
6759             clip_to: "disclip";
6760             type: RECT;
6761             scale: 1;
6762             description { state: "default" 0.0;
6763                min: GENLIST_PADDING_16_INC 0;
6764                fixed: 1 0;
6765                rel1.to_x: "elm.icon.1";
6766                rel2 {
6767                   relative: 0.0 1.0;
6768                   to_x: "elm.icon.1";
6769                }
6770                align: 1.0 0.0;
6771                visible: 0;
6772             }
6773          }
6774          part { name: "elm.text.1";
6775             clip_to: "disclip";
6776             type: TEXT;
6777             mouse_events: 0;
6778             scale: 1;
6779             description { state: "default" 0.0;
6780                min: 0 GENLIST_SIZE_61_INC;
6781                fixed: 0 1;
6782                rel1 {
6783                   relative: 1.0 1.0;
6784                   to_x: "elm.padding.left";
6785                   to_y: "elm.padding.top";
6786                }
6787                rel2 {
6788                   relative: 0.0 1.0;
6789                   to_x: "elm.padding.icon1.left";
6790                   to_y: "elm.padding.top";
6791                }
6792                align: 0.0 0.0;
6793                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
6794                text {
6795                   font: "SLP:style=Roman";
6796                   size: GENLIST_FONT_44_INC;
6797                   min: 0 1;
6798                   align: 0.0 0.5;
6799                   text_class: "list_item";
6800                }
6801             }
6802             description { state: "selected" 0.0;
6803                inherit: "default" 0.0;
6804                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6805             }
6806             GENLIST_DESCRIPTION_FLIP_ENABLED
6807          }
6808          part { name: "elm.padding.text3.left";
6809             clip_to: "disclip";
6810             type: RECT;
6811             scale: 1;
6812             description { state: "default" 0.0;
6813                min: GENLIST_PADDING_16_INC 0;
6814                fixed: 1 0;
6815                rel1.to: "elm.text.3";
6816                rel2 {
6817                   relative: 0.0 1.0;
6818                   to: "elm.text.3";
6819                }
6820                align: 1.0 1.0;
6821                visible: 0;
6822             }
6823          }
6824          part { name: "elm.text.2";
6825             clip_to: "disclip";
6826             type: TEXT;
6827             mouse_events: 0;
6828             scale: 1;
6829             description { state: "default" 0.0;
6830                rel1 {
6831                   relative: 1.0 1.0;
6832                   to_x: "elm.padding.left";
6833                   to_y: "elm.text.1";
6834                }
6835                rel2 {
6836                   relative: 0.0 0.0;
6837                   to_x: "elm.padding.text3.left";
6838                   to_y: "elm.padding.bottom";
6839                }
6840                align: 0.0 0.5;
6841                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
6842                text {
6843                   font: "SLP:style=Medium";
6844                   size: GENLIST_FONT_32_INC;
6845                   min: 0 1;
6846                   align: 0.0 0.5;
6847                   text_class: "slp_medium";
6848                }
6849             }
6850             description { state: "selected" 0.0;
6851                inherit: "default" 0.0;
6852                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
6853             }
6854             GENLIST_DESCRIPTION_FLIP_ENABLED
6855          }
6856          part { name: "elm.padding.icon2.left";
6857             clip_to: "disclip";
6858             type: RECT;
6859             scale: 1;
6860             description { state: "default" 0.0;
6861                min: GENLIST_PADDING_16_INC 0;
6862                fixed: 1 0;
6863                rel1 {
6864                   relative: 1.0 0.0;
6865                   to_x: "elm.text.2";
6866                }
6867                rel2.to_x: "elm.text.2";
6868                align: 0.0 0.0;
6869                visible: 0;
6870             }
6871          }
6872          part { name: "elm.icon.2";
6873             clip_to: "disclip";
6874             type: SWALLOW;
6875             scale: 1;
6876             description { state: "default" 0.0;
6877                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
6878                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
6879                fixed: 1 1;
6880                rel1 {
6881                   relative: 1.0 1.0;
6882                   to_x: "elm.padding.icon2.left";
6883                   to_y: "elm.text.1";
6884                }
6885                rel2 {
6886                   relative: 1.0 0.0;
6887                   to_x: "elm.padding.icon2.left";
6888                   to_y: "elm.padding.bottom";
6889                }
6890                align: 0.0 0.5;
6891             }
6892             GENLIST_DESCRIPTION_FLIP_ENABLED
6893          }
6894          part { name: "elm.padding.icon3.left";
6895             clip_to: "disclip";
6896             type: RECT;
6897             scale: 1;
6898             description { state: "default" 0.0;
6899                min: GENLIST_PADDING_16_INC 0;
6900                fixed: 1 0;
6901                rel1 {
6902                   relative: 1.0 0.0;
6903                   to_x: "elm.icon.2";
6904                }
6905                rel2.to_x: "elm.icon.2";
6906                align: 0.0 0.0;
6907                visible: 0;
6908             }
6909          }
6910          part { name: "elm.icon.3";
6911             clip_to: "disclip";
6912             type: SWALLOW;
6913             scale: 1;
6914             description { state: "default" 0.0;
6915                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
6916                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
6917                fixed: 1 1;
6918                rel1 {
6919                   relative: 1.0 1.0;
6920                   to_x: "elm.padding.icon3.left";
6921                   to_y: "elm.text.1";
6922                }
6923                rel2 {
6924                   relative: 1.0 0.0;
6925                   to_x: "elm.padding.icon3.left";
6926                   to_y: "elm.padding.bottom";
6927                }
6928                align: 0.0 0.5;
6929             }
6930             GENLIST_DESCRIPTION_FLIP_ENABLED
6931          }
6932          part { name: "elm.padding.icon4.left";
6933             clip_to: "disclip";
6934             type: RECT;
6935             scale: 1;
6936             description { state: "default" 0.0;
6937                min: GENLIST_PADDING_16_INC 0;
6938                fixed: 1 0;
6939                rel1 {
6940                   relative: 1.0 0.0;
6941                   to_x: "elm.icon.3";
6942                }
6943                rel2.to_x: "elm.icon.3";
6944                align: 0.0 0.0;
6945                visible: 0;
6946             }
6947          }
6948          part { name: "elm.icon.4";
6949             clip_to: "disclip";
6950             type: SWALLOW;
6951             scale: 1;
6952             description { state: "default" 0.0;
6953                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
6954                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
6955                fixed: 1 1;
6956                rel1 {
6957                   relative: 1.0 1.0;
6958                   to_x: "elm.padding.icon4.left";
6959                   to_y: "elm.text.1";
6960                }
6961                rel2 {
6962                   relative: 1.0 0.0;
6963                   to_x: "elm.padding.icon4.left";
6964                   to_y: "elm.padding.bottom";
6965                }
6966                align: 0.0 0.5;
6967             }
6968             GENLIST_DESCRIPTION_FLIP_ENABLED
6969          }
6970          GENLIST_PART_FLIP
6971          GENLIST_PART_DISCLIP
6972       }
6973       programs {
6974          // signal: elm,state,%s,active
6975          //   a "check" item named %s went active
6976          // signal: elm,state,%s,passive
6977          //   a "check" item named %s went passive
6978          // default is passive
6979          program { name: "go_active";
6980             signal: "elm,state,selected";
6981             source: "elm";
6982             action: STATE_SET "selected" 0.0;
6983             target: "bg_image";
6984             target: "elm.text.1";
6985             target: "elm.text.2";
6986             target: "elm.text.3";
6987             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
6988          }
6989          program { name: "go_passive";
6990             signal: "elm,state,unselected";
6991             source: "elm";
6992             action: STATE_SET "default" 0.0;
6993             target: "bg_image";
6994             target: "elm.text.1";
6995             target: "elm.text.2";
6996             target: "elm.text.3";
6997             transition: LINEAR 0.1;
6998          }
6999          program { name: "go_disabled";
7000             signal: "elm,state,disabled";
7001             source: "elm";
7002             action: STATE_SET "disabled" 0.0;
7003             target: "disclip";
7004          }
7005          program { name: "go_enabled";
7006             signal: "elm,state,enabled";
7007             source: "elm";
7008             action: STATE_SET "default" 0.0;
7009             target: "disclip";
7010          }
7011          GENLIST_PROGRAM_FLIP_3TEXT_2ICON
7012          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
7013       }
7014    }
7015
7016 // ???
7017    /* NOTE: This style is new mailbox style for email application. Otherwise do not use this. */
7018    group { name: "elm/genlist/item/3text.5icon.2/default";
7019       alias: "elm/genlist/item_odd/3text.5icon.2/default";
7020       alias: "elm/genlist/item_compress/3text.5icon.2/default";
7021       alias: "elm/genlist/item_compress_odd/3text.5icon.2/default";
7022       data.item: "stacking" "above";
7023       data.item: "selectraise" "on";
7024       data.item: "texts" "elm.text.subject elm.text.name elm.text.date";
7025       data.item: "contents" "elm.icon.important elm.icon.num elm.icon.attach elm.icon.colorbar elm.swallow.outbox.progress elm.icon.checkbox";
7026       data.item: "flips" "elm.flip.content";
7027       images {
7028          image: "00_list_bar_press_1x80.png" COMP;
7029       }
7030       parts {
7031          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
7032          GENLIST_PART_BG
7033          GENLIST_PART_BG_IMAGE
7034          GENLIST_PART_BOTTOM_LINE
7035          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
7036          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
7037          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
7038          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
7039          part { name: "elm.icon.colorbar";
7040             clip_to: "disclip";
7041             type: SWALLOW;
7042             scale: 1;
7043             description { state: "default" 0.0;
7044                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
7045                fixed: 1 1;
7046                rel2.relative: 0.0 0.0;
7047                align: 0.0 0.0;
7048             }
7049          }
7050          part { name: "elm.icon.checkbox";
7051             clip_to: "disclip";
7052             type: SWALLOW;
7053             mouse_events: 1;
7054             scale: 1;
7055             description { state: "default" 0.0;
7056                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
7057                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
7058                fixed: 1 1;
7059                rel1 {
7060                   relative: 1.0 0.0;
7061                   to_x: "elm.padding.left";
7062                   to_y: "elm.padding.top";
7063                }
7064                rel2 {
7065                   relative: 0.0 0.0;
7066                   to_x: "elm.padding.right";
7067                   to_y: "elm.padding.bottom";
7068                }
7069                align: 0.0 0.5;
7070             }
7071          }
7072          part { name: "elm.text.date";
7073             clip_to: "disclip";
7074             type: TEXT;
7075             mouse_events: 0;
7076             scale: 1;
7077             description { state: "default" 0.0;
7078                min: GENLIST_SIZE_154_INC GENLIST_SIZE_61_INC;
7079                fixed: 1 1;
7080                rel1 {
7081                   to_x: "elm.padding.right";
7082                   to_y: "elm.padding.bottom";
7083                }
7084                rel2 {
7085                   relative: 0.0 0.0;
7086                   to_x: "elm.padding.right";
7087                   to_y: "elm.padding.bottom";
7088                }
7089                align: 1.0 1.0;
7090                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
7091                text {
7092                   font: "SLP:style=Medium";
7093                   size: GENLIST_FONT_32_INC;
7094                   min: 0 1;
7095                   align: 1.0 0.5;
7096                   text_class: "slp_medium";
7097                }
7098             }
7099             description { state: "selected" 0.0;
7100                inherit: "default" 0.0;
7101                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
7102             }
7103             GENLIST_DESCRIPTION_FLIP_ENABLED
7104          }
7105          part { name: "elm.icon.important";
7106             clip_to: "disclip";
7107             type: SWALLOW;
7108             mouse_events: 1;
7109             scale: 1;
7110             description { state: "default" 0.0;
7111                min: GENLIST_SIZE_56_INC GENLIST_SIZE_61_INC;
7112                fixed: 1 1;
7113                rel1 {
7114                   relative: 0.0 1.0;
7115                   to_x: "elm.padding.right";
7116                   to_y: "elm.padding.top";
7117                }
7118                rel2 {
7119                   relative: 0.0 0.0;
7120                   to_x: "elm.padding.right";
7121                   to_y: "elm.text.date";
7122                }
7123                align: 1.0 0.5;
7124             }
7125             GENLIST_DESCRIPTION_FLIP_ENABLED
7126          }
7127          part { name: "elm.padding.icon.important.left";
7128             clip_to: "disclip";
7129             type: RECT;
7130             scale: 1;
7131             description { state: "default" 0.0;
7132                min: GENLIST_PADDING_16_INC 0;
7133                fixed: 1 0;
7134                rel1{
7135                   relative: 0.0 1.0;
7136                   to_x: "elm.icon.important";
7137                }
7138                rel2 {
7139                   relative: 0.0 1.0;
7140                   to_x: "elm.icon.important";
7141                }
7142                align: 1.0 0.0;
7143                visible: 0;
7144             }
7145          }
7146          part { name: "elm.padding.icon.checkbox.right";
7147             clip_to: "disclip";
7148             type: RECT;
7149             scale: 1;
7150             description { state: "default" 0.0;
7151                min: GENLIST_PADDING_16_INC 0;
7152                fixed: 1 0;
7153                rel1 {
7154                   relative: 1.0 0.0;
7155                   to_x: "elm.icon.checkbox";
7156                   to_y: "elm.padding.top";
7157                }
7158                rel2 {
7159                   relative: 1.0 0.0;
7160                   to_x:  "elm.icon.checkbox";
7161                   to_y: "elm.padding.bottom";
7162                }
7163                align: 1.0 0.0;
7164                visible: 0;
7165             }
7166          }
7167          part { name: "elm.text.subject.rect";
7168             clip_to: "disclip";
7169             type: RECT;
7170             scale: 1;
7171             description { state: "default" 0.0;
7172                min: 0 GENLIST_SIZE_61_INC;
7173                fixed: 1 1;
7174                rel1 {
7175                   relative: 1.0 1.0;
7176                   to_x: "elm.padding.icon.checkbox.right";
7177                   to_y: "elm.padding.top";
7178                }
7179                rel2 {
7180                   relative: 0.0 0.0;
7181                   to_x: "elm.padding.icon.important.left";
7182                   to_y: "elm.padding.top";
7183                }
7184                align: 0.0 0.0;
7185                visible: 0;
7186             }
7187          }
7188          part { name: "elm.text.subject";
7189             clip_to: "disclip";
7190             type: TEXTBLOCK;
7191             mouse_events: 0;
7192             scale: 1;
7193             description { state: "default" 0.0;
7194                fixed: 1 1;
7195                rel1.to: "elm.text.subject.rect";
7196                rel2.to: "elm.text.subject.rect";
7197                align: 0.0 0.0;
7198                text {
7199                   style: "genlist_email_textblock_unread_style";
7200                   min: 0 1;
7201                   max: 0 1;
7202                   align: 0.0 0.5;
7203                }
7204             }
7205             description { state: "selected" 0.0;
7206                inherit: "default" 0.0;
7207                text.style: "genlist_email_textblock_selected_style";
7208             }
7209             description { state: "read" 0.0;
7210                inherit: "default" 0.0;
7211                text.style: "genlist_email_textblock_read_style";
7212             }
7213             description { state: "unread" 0.0;
7214                inherit: "default" 0.0;
7215                text.style: "genlist_email_textblock_unread_style";
7216             }
7217             description { state: "urgency_read" 0.0;
7218                inherit: "default" 0.0;
7219                text.style: "genlist_email_textblock_urgency_read_style";
7220             }
7221             description { state: "urgency_unread" 0.0;
7222                inherit: "default" 0.0;
7223                text.style: "genlist_email_textblock_urgency_unread_style";
7224             }
7225             GENLIST_DESCRIPTION_FLIP_ENABLED
7226          }
7227          part { name: "elm.text.name";
7228             clip_to: "disclip";
7229             type: TEXTBLOCK;
7230             scale: 1;
7231             description { state: "default" 0.0;
7232                fixed: 1 1;
7233                rel1 {
7234                   relative: 1.0 1.0;
7235                   to_x: "elm.padding.icon.checkbox.right";
7236                   to_y: "elm.text.subject";
7237                }
7238                rel2 {
7239                   relative: 0.0 0.0;
7240                   to_x: "elm.padding.icon.num.left";
7241                   to_y: "elm.padding.bottom";
7242                }
7243                align: 0.0 0.5;
7244                text {
7245                   style: "genlist_email_textblock2_style";
7246                   min: 0 1;
7247                   align: 0.0 0.5;
7248                }
7249             }
7250             description { state: "selected" 0.0;
7251                inherit: "default" 0.0;
7252                text.style: "genlist_email_textblock2_selected_style";
7253             }
7254             GENLIST_DESCRIPTION_FLIP_ENABLED
7255          }
7256          part { name: "elm.padding.icon.num.left";
7257             clip_to: "disclip";
7258             type: RECT;
7259             scale: 1;
7260             description { state: "default" 0.0;
7261                min: GENLIST_PADDING_16_INC 0;
7262                fixed: 1 0;
7263                rel1 {
7264                   relative: 0.0 1.0;
7265                   to_x: "elm.icon.num";
7266                   to_y: "elm.text.subject";
7267                }
7268                rel2 {
7269                   relative: 0.0 0.0;
7270                   to_x: "elm.icon.num";
7271                   to_y: "elm.padding.bottom";
7272                }
7273                align: 1.0 0.0;
7274                visible: 0;
7275             }
7276          }
7277          part { name: "elm.icon.num";
7278             clip_to: "disclip";
7279             type: SWALLOW;
7280             mouse_events: 0;
7281             scale: 1;
7282             description { state: "default" 0.0;
7283                min: GENLIST_SIZE_112_INC GENLIST_SIZE_45_INC;
7284                max: GENLIST_SIZE_112_INC GENLIST_SIZE_45_INC;
7285                fixed: 1 1;
7286                rel1 {
7287                   relative: 0.0 1.0;
7288                   to_x: "elm.padding.icon.attach.left";
7289                   to_y: "elm.text.subject";
7290                }
7291                rel2 {
7292                   relative: 0.0 0.0;
7293                   to_x: "elm.padding.icon.attach.left";
7294                   to_y: "elm.padding.bottom";
7295                }
7296                align: 1.0 0.5;
7297             }
7298             GENLIST_DESCRIPTION_FLIP_ENABLED
7299          }
7300          part { name: "elm.padding.icon.attach.left";
7301             clip_to: "disclip";
7302             type: RECT;
7303             scale: 1;
7304             description { state: "default" 0.0;
7305                min: GENLIST_PADDING_16_INC 0;
7306                fixed: 1 0;
7307                rel1 {
7308                   relative: 0.0 1.0;
7309                   to_x: "elm.icon.attach";
7310                   to_y: "elm.text.subject";
7311                }
7312                rel2 {
7313                   relative: 0.0 0.0;
7314                   to_x: "elm.icon.attach";
7315                   to_y: "elm.padding.bottom";
7316                }
7317                align: 1.0 0.0;
7318                visible: 0;
7319             }
7320          }
7321          part { name: "elm.icon.attach";
7322             clip_to: "disclip";
7323             type: SWALLOW;
7324             scale: 1;
7325             description { state: "default" 0.0;
7326                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
7327                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
7328                fixed: 1 1;
7329                rel1 {
7330                   relative: 0.0 1.0;
7331                   to_x: "elm.text.date";
7332                   to_y: "elm.text.subject";
7333                }
7334                rel2 {
7335                   relative: 0.0 0.0;
7336                   to_x: "elm.text.date";
7337                   to_y: "elm.padding.bottom";
7338                }
7339                align: 1.0 0.5;
7340             }
7341             GENLIST_DESCRIPTION_FLIP_ENABLED
7342          }
7343          part { name: "elm.swallow.outbox.progress";
7344             type: SWALLOW;
7345             scale: 1;
7346             mouse_events: 1;
7347             repeat_events: 0;
7348             description { state: "default" 0.0;
7349                min: GENLIST_SIZE_168_INC 0;
7350                fixed: 1 1;
7351                color: 0 0 0 0;
7352                align: 1.0 0.5;
7353                rel1 {
7354                   relative: 0.0 1.0;
7355                   offset: 0 0;
7356                   to_x: "elm.padding.right";
7357                   to_y: "elm.padding.top";
7358                }
7359                rel2 {
7360                   relative: 0.0 0.0;
7361                   offset: 0 0;
7362                   to_x: "elm.padding.right";
7363                   to_y: "elm.padding.bottom";
7364                }
7365             }
7366          }
7367          GENLIST_PART_FLIP
7368          GENLIST_PART_DISCLIP
7369       }
7370       programs {
7371          // signal: elm,state,%s,active
7372          //   a "check" item named %s went active
7373          // signal: elm,state,%s,passive
7374          //   a "check" item named %s went passive
7375          // default is passive
7376          program { name: "go_active";
7377             signal: "elm,state,selected";
7378             source: "elm";
7379             action: STATE_SET "selected" 0.0;
7380             target: "bg_image";
7381             target: "elm.text.subject";
7382             target: "elm.text.name";
7383             target: "elm.text.date";
7384             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
7385          }
7386          program { name: "go_passive";
7387             signal: "elm,state,unselected";
7388             source: "elm";
7389             action: STATE_SET "default" 0.0;
7390             target: "bg_image";
7391             target: "elm.text.subject";
7392             target: "elm.text.name";
7393             target: "elm.text.date";
7394             transition: LINEAR 0.1;
7395          }
7396          program { name: "go_disabled";
7397             signal: "elm,state,disabled";
7398             source: "elm";
7399             action: STATE_SET "disabled" 0.0;
7400             target: "disclip";
7401          }
7402          program { name: "go_enabled";
7403             signal: "elm,state,enabled";
7404             source: "elm";
7405             action: STATE_SET "default" 0.0;
7406             target: "disclip";
7407          }
7408          program { name: "go_read";
7409             signal: "elm,state,read";
7410             source: "elm";
7411             action: STATE_SET "read" 0.0;
7412             target: "elm.text.subject";
7413          }
7414          program { name: "go_unread";
7415             signal: "elm,state,unread";
7416             source: "elm";
7417             action: STATE_SET "unread" 0.0;
7418             target: "elm.text.subject";
7419          }
7420          program { name: "go_urgeny_unread";
7421             signal: "elm,state,urgency_unread";
7422             source: "elm";
7423             action: STATE_SET "urgency_unread" 0.0;
7424             target: "elm.text.subject";
7425          }
7426          program { name: "go_urgency_read";
7427             signal: "elm,state,urgency_read";
7428             source: "elm";
7429             action: STATE_SET "urgency_read" 0.0;
7430             target: "elm.text.subject";
7431          }
7432          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
7433       }
7434    }
7435
7436 // ???
7437    /* NOTE: This style is a temporary style for email application. Otherwise do not use this. */
7438    group { name: "elm/genlist/item/4text.8icon/default";
7439       alias: "elm/genlist/item_odd/4text.8icon/default";
7440       alias: "elm/genlist/item_compress/4text.8icon/default";
7441       alias: "elm/genlist/item_compress_odd/4text.8icon/default";
7442       data.item: "stacking" "above";
7443       data.item: "selectraise" "on";
7444       data.item: "texts" "elm.text.subject elm.text.name elm.text.date elm.text.preview elm.text.num";
7445       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";
7446       data.item: "flips" "elm.flip.content";
7447       images {
7448          image: "00_list_bar_press_1x80.png" COMP;
7449          image: "M02_button_06_normal.png" COMP;
7450       }
7451       parts {
7452          GENLIST_PART_BASE( GENLIST_SIZE_160_INC )
7453          GENLIST_PART_BG
7454          GENLIST_PART_BG_IMAGE
7455          GENLIST_PART_BOTTOM_LINE
7456          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_8_INC )
7457          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_8_INC )
7458          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
7459          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
7460          part { name: "elm.icon.colorbar";
7461             clip_to: "disclip";
7462             type: SWALLOW;
7463             scale: 1;
7464             description { state: "default" 0.0;
7465                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
7466                fixed: 1 1;
7467                rel2.relative: 0.0 0.0;
7468                align: 0.0 0.0;
7469             }
7470          }
7471
7472          part { name: "elm.icon.checkbox.touch";
7473             clip_to: "disclip";
7474             type: SWALLOW;
7475             mouse_events: 1;
7476             scale: 1;
7477             description { state: "default" 0.0;
7478                max: GENLIST_PADDING_74_INC GENLIST_SIZE_160_INC;
7479                fixed: 1 1;
7480                rel1 {
7481                   relative: 0.0 0.0;
7482                   to_x: "elm.padding.left";
7483                   to_y: "elm.padding.top";
7484                }
7485                rel2 {
7486                   relative: 0.0 0.0;
7487                   to_x: "elm.padding.right";
7488                   to_y: "elm.padding.bottom";
7489                }
7490                align: 0.0 0.5;
7491             }
7492          }
7493          part { name: "elm.icon.checkbox";
7494             clip_to: "disclip";
7495             type: SWALLOW;
7496             mouse_events: 1;
7497             scale: 1;
7498             description { state: "default" 0.0;
7499                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
7500                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
7501                fixed: 1 1;
7502                rel1 {
7503                   relative: 1.0 0.0;
7504                   to_x: "elm.padding.left";
7505                   to_y: "elm.padding.top";
7506                }
7507                rel2 {
7508                   relative: 0.0 0.0;
7509                   to_x: "elm.padding.right";
7510                   to_y: "elm.padding.bottom";
7511                }
7512                align: 0.0 0.5;
7513             }
7514          }
7515          part { name: "elm.padding.icon.checkbox.right";
7516             clip_to: "disclip";
7517             type: RECT;
7518             scale: 1;
7519             description { state: "default" 0.0;
7520                min: GENLIST_PADDING_16_INC 0;
7521                fixed: 1 0;
7522                rel1 {
7523                   relative: 1.0 0.0;
7524                   to_x: "elm.icon.checkbox";
7525                   to_y: "elm.padding.top";
7526                }
7527                rel2 {
7528                   relative: 1.0 0.0;
7529                   to_x:  "elm.icon.checkbox";
7530                   to_y: "elm.padding.bottom";
7531                }
7532                align: 1.0 0.0;
7533                visible: 0;
7534             }
7535          }
7536
7537          part { name: "elm.icon.important";
7538             clip_to: "disclip";
7539             type: SWALLOW;
7540             mouse_events: 1;
7541             scale: 1;
7542             description { state: "default" 0.0;
7543                min: GENLIST_SIZE_56_INC GENLIST_SIZE_SLIDE_60_INC;
7544                fixed: 1 1;
7545                rel1 {
7546                   relative: 0.0 1.0;
7547                   to_x: "elm.padding.right";
7548                   to_y: "elm.padding.top";
7549                }
7550                rel2 {
7551                   relative: 0.0 1.0;
7552                   to_x: "elm.padding.right";
7553                   to_y: "elm.padding.top";
7554                }
7555                align: 1.0 0.0;
7556             }
7557             GENLIST_DESCRIPTION_FLIP_ENABLED
7558          }
7559
7560          part { name: "elm.icon.important.touch";
7561             clip_to: "disclip";
7562             type: SWALLOW;
7563             mouse_events: 1;
7564             scale: 1;
7565             description { state: "default" 0.0;
7566                min: GENLIST_SIZE_56_INC GENLIST_SIZE_SLIDE_60_INC;
7567                fixed: 1 1;
7568                rel1 {
7569                   relative: 0.0 1.0;
7570                   to_x: "elm.padding.right";
7571                   to_y: "elm.padding.top";
7572                }
7573                rel2 {
7574                   relative: 0.0 1.0;
7575                   to_x: "elm.padding.right";
7576                   to_y: "elm.padding.top";
7577                }
7578                align: 1.0 0.0;
7579             }
7580             GENLIST_DESCRIPTION_FLIP_ENABLED
7581          }
7582
7583          part { name: "elm.padding.icon.important.left";
7584             clip_to: "disclip";
7585             type: RECT;
7586             scale: 1;
7587             description { state: "default" 0.0;
7588                min: GENLIST_PADDING_16_INC 0;
7589                fixed: 1 0;
7590                rel1{
7591                   relative: 0.0 1.0;
7592                   to_x: "elm.icon.important";
7593                }
7594                rel2 {
7595                   relative: 0.0 1.0;
7596                   to_x: "elm.icon.important";
7597                }
7598                align: 1.0 0.0;
7599                visible: 0;
7600             }
7601          }
7602          part { name: "elm.icon.num";
7603             clip_to: "disclip";
7604             type: IMAGE;
7605             mouse_events: 0;
7606             scale: 1;
7607             description { state: "default" 0.0;
7608                max: 0 GENLIST_SIZE_SLIDE_60_INC;
7609                fixed: 1 1;
7610                rel1 {
7611                   relative: 0.0 1.0;
7612                   offset: 0 GENLIST_SIZE_8_INC;
7613                   to_x: "elm.padding.icon.important.left";
7614                   to_y: "elm.padding.top";
7615                }
7616                rel2 {
7617                   relative: 0.0 1.0;
7618                   offset: 0 GENLIST_SIZE_8_INC;
7619                   to_x: "elm.padding.icon.important.left";
7620                   to_y: "elm.padding.top";
7621                }
7622                align: 1.0 0.0;
7623                image.normal: "M02_button_06_normal.png";
7624                image.border: 5 5 5 5;
7625             }
7626             description { state: "num_enable" 0.0;
7627                inherit: "default" 0.0;
7628                max: GENLIST_HEIGHT_62_INC GENLIST_SIZE_SLIDE_60_INC;
7629                min: GENLIST_SIZE_46_INC GENLIST_SIZE_44_INC;
7630             }
7631             GENLIST_DESCRIPTION_FLIP_ENABLED
7632          }
7633
7634          part { name: "elm.text.num";
7635             clip_to: "disclip";
7636             type: TEXT;
7637             mouse_events: 0;
7638             scale: 1;
7639             description { state: "default" 0.0;
7640                max: 0 GENLIST_SIZE_SLIDE_60_INC;
7641                fixed: 1 1;
7642                rel1 {
7643                   relative: 0.0 1.0;
7644                   offset: 0 GENLIST_SIZE_8_INC;
7645                   to_x: "elm.padding.icon.important.left";
7646                   to_y: "elm.padding.top";
7647                }
7648                rel2 {
7649                   relative: 0.0 1.0;
7650                   offset: 0 GENLIST_SIZE_8_INC;
7651                   to_x: "elm.padding.icon.important.left";
7652                   to_y: "elm.padding.top";
7653                }
7654                align: 1.0 0.0;
7655             }
7656             description { state: "num_enable" 0.0;
7657                inherit: "default" 0.0;
7658                max: GENLIST_HEIGHT_62_INC GENLIST_SIZE_SLIDE_60_INC;
7659                min: GENLIST_SIZE_46_INC GENLIST_SIZE_44_INC;
7660                text {
7661                   font: "SLP:style=Medium";
7662                   size: GENLIST_FONT_32_INC;
7663                   min: 1 1;
7664                   align: 0.5 0.5;
7665                   text_class: "slp_medium";
7666                }
7667                color: GENLIST_PART_FONT_CONVERTOR_STYLE_COLOR_INC;
7668             }
7669             GENLIST_DESCRIPTION_FLIP_ENABLED
7670          }
7671
7672          part { name: "elm.icon.attach";
7673             clip_to: "disclip";
7674             type: SWALLOW;
7675             scale: 1;
7676             description { state: "default" 0.0;
7677                min: 0 GENLIST_SIZE_SLIDE_60_INC;
7678                fixed: 1 1;
7679                rel1 {
7680                   relative: 0.0 1.0;
7681                   to_x: "elm.icon.num";
7682                   to_y: "elm.padding.top";
7683                }
7684                rel2 {
7685                   relative: 0.0 1.0;
7686                   to_x: "elm.icon.num";
7687                   to_y: "elm.padding.top";
7688                }
7689                align: 1.0 0.0;
7690             }
7691             description { state: "attach_enable" 0.0;
7692                inherit: "default" 0.0;
7693                min: GENLIST_SIZE_48_INC GENLIST_SIZE_SLIDE_60_INC;
7694             }
7695             GENLIST_DESCRIPTION_FLIP_ENABLED
7696          }
7697          part { name: "elm.text.subject";
7698             clip_to: "disclip";
7699             type: TEXTBLOCK;
7700             mouse_events: 0;
7701             scale: 1;
7702             description { state: "default" 0.0;
7703                min: 0 GENLIST_SIZE_SLIDE_60_INC;
7704                fixed: 1 1;
7705                rel1 {
7706                   relative: 1.0 1.0;
7707                   to_x: "elm.padding.icon.checkbox.right";
7708                   to_y: "elm.padding.top";
7709                }
7710                rel2{
7711                   relative: 0.0 1.0;
7712                   to_x: "elm.icon.attach";
7713                   to_y: "elm.padding.top";
7714                }
7715                align: 0.0 0.0;
7716                text {
7717                   style: "genlist_email_textblock_unread_style";
7718                   min: 0 1;
7719                   max: 0 1;
7720                   align: 0.0 0.5;
7721                }
7722             }
7723             description { state: "selected" 0.0;
7724                inherit: "default" 0.0;
7725                text.style: "genlist_email_textblock_selected_style";
7726             }
7727             description { state: "read" 0.0;
7728                inherit: "default" 0.0;
7729                text.style: "genlist_email_textblock_read_style";
7730             }
7731             description { state: "unread" 0.0;
7732                inherit: "default" 0.0;
7733                text.style: "genlist_email_textblock_unread_style";
7734             }
7735             GENLIST_DESCRIPTION_FLIP_ENABLED
7736          }
7737
7738          part { name: "elm.padding.intermediate";
7739             clip_to: "disclip";
7740             type: RECT;
7741             scale: 1;
7742             description { state: "default" 0.0;
7743                min: 0 GENLIST_PADDING_4_INC;
7744                fixed: 0 1;
7745                rel1 {
7746                   relative: 1.0 1.0;
7747                   to_x: "elm.padding.icon.checkbox.right";
7748                   to_y: "elm.icon.attach";
7749                }
7750                rel2 {
7751                   relative: 1.0 1.0;
7752                   to_x:  "elm.padding.icon.checkbox.right";
7753                   to_y: "elm.icon.attach";
7754                }
7755                align: 1.0 0.0;
7756                visible: 0;
7757             }
7758          }
7759
7760          part { name: "elm.icon.priority";
7761             clip_to: "disclip";
7762             type: SWALLOW;
7763             scale: 1;
7764             description { state: "default" 0.0;
7765                min: 0 GENLIST_SIZE_40_INC;
7766                fixed: 1 1;
7767                rel1 {
7768                   relative: 1.0 1.0;
7769                   to_x: "elm.padding.icon.checkbox.right";
7770                   to_y: "elm.padding.intermediate";
7771                }
7772                rel2 {
7773                   relative: 1.0 1.0;
7774                   to_x: "elm.padding.icon.checkbox.right";
7775                   to_y: "elm.padding.intermediate";
7776                }
7777                align: 0.0 0.0;
7778             }
7779             description { state: "priority_enable" 0.0;
7780                inherit: "default" 0.0;
7781                min: GENLIST_SIZE_48_INC GENLIST_SIZE_40_INC;
7782             }
7783             GENLIST_DESCRIPTION_FLIP_ENABLED
7784          }
7785          part { name: "elm.icon.lastverb";
7786             clip_to: "disclip";
7787             type: SWALLOW;
7788             scale: 1;
7789             description { state: "default" 0.0;
7790                min: 0 GENLIST_SIZE_40_INC;
7791                fixed: 1 1;
7792                rel1 {
7793                   relative: 1.0 1.0;
7794                   to_x: "elm.padding.icon.checkbox.right";
7795                   to_y: "elm.icon.priority";
7796                }
7797                rel2 {
7798                   relative: 1.0 1.0;
7799                   to_x: "elm.padding.icon.checkbox.right";
7800                   to_y: "elm.icon.priority";
7801                }
7802                align: 0.0 0.0;
7803             }
7804             description { state: "lastverb_enable" 0.0;
7805                inherit: "default" 0.0;
7806                min: GENLIST_SIZE_48_INC GENLIST_SIZE_40_INC;
7807             }
7808             GENLIST_DESCRIPTION_FLIP_ENABLED
7809          }
7810
7811          part { name: "elm.text.date";
7812             clip_to: "disclip";
7813             type: TEXT;
7814             mouse_events: 0;
7815             scale: 1;
7816             description { state: "default" 0.0;
7817                min: GENLIST_SIZE_154_INC GENLIST_SIZE_40_INC;
7818                fixed: 1 1;
7819                rel1 {
7820                   to_x: "elm.padding.right";
7821                   to_y: "elm.padding.bottom";
7822                }
7823                rel2 {
7824                   relative: 0.0 0.0;
7825                   to_x: "elm.padding.right";
7826                   to_y: "elm.padding.bottom";
7827                }
7828                align: 1.0 1.0;
7829                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
7830                text {
7831                   font: "SLP:style=Medium";
7832                   size: GENLIST_FONT_32_INC;
7833                   min: 0 1;
7834                   align: 1.0 0.5;
7835                   text_class: "slp_medium";
7836                }
7837             }
7838             description { state: "selected" 0.0;
7839                inherit: "default" 0.0;
7840                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
7841             }
7842             GENLIST_DESCRIPTION_FLIP_ENABLED
7843          }
7844
7845          part { name: "elm.icon.appointment";
7846             clip_to: "disclip";
7847             type: SWALLOW;
7848             mouse_events: 0;
7849             scale: 1;
7850             description { state: "default" 0.0;
7851                min: 0 GENLIST_SIZE_40_INC;
7852                fixed: 1 1;
7853                rel1 {
7854                   relative: 0.0 1.0;
7855                   to_x: "elm.padding.right";
7856                   to_y: "elm.padding.intermediate";
7857                }
7858                rel2 {
7859                   relative: 0.0 1.0;
7860                   to_x: "elm.padding.right";
7861                   to_y: "elm.padding.intermediate";
7862                }
7863                align: 1.0 0.0;
7864             }
7865             GENLIST_DESCRIPTION_FLIP_ENABLED
7866          }
7867          part { name: "elm.text.name";
7868             clip_to: "disclip";
7869             type: TEXTBLOCK;
7870             scale: 1;
7871             description { state: "default" 0.0;
7872                min: 0 GENLIST_SIZE_40_INC;
7873                fixed: 1 1;
7874                rel1 {
7875                   relative: 1.0 1.0;
7876                   to_x: "elm.icon.priority";
7877                   to_y: "elm.padding.intermediate";
7878                }
7879                rel2 {
7880                   relative: 0.0 1.0;
7881                   to_x: "elm.icon.appointment";
7882                   to_y: "elm.padding.intermediate";
7883                }
7884                align: 0.0 0.0;
7885                text {
7886                   style: "genlist_email_textblock2_style";
7887                   min: 0 1;
7888                   align: 0.0 0.5;
7889                }
7890             }
7891             description { state: "selected" 0.0;
7892                inherit: "default" 0.0;
7893                text.style: "genlist_email_textblock2_selected_style";
7894             }
7895             GENLIST_DESCRIPTION_FLIP_ENABLED
7896          }
7897          part { name: "elm.text.preview";
7898             clip_to: "disclip";
7899             type: TEXT;
7900             scale: 1;
7901             description { state: "default" 0.0;
7902                min: 0 GENLIST_SIZE_40_INC;
7903                fixed: 1 1;
7904                rel1 {
7905                   relative: 1.0 0.0;
7906                   to_x: "elm.icon.lastverb";
7907                   to_y: "elm.padding.bottom";
7908                }
7909                rel2 {
7910                   relative: 0.0 0.0;
7911                   to_x: "elm.text.date";
7912                   to_y: "elm.padding.bottom";
7913                }
7914                align: 0.0 1.0;
7915                color: GENLIST_PART_FONT_CONTENTS_TEXT_COLOR_INC;
7916                text {
7917                   font: "SLP:style=Medium";
7918                   size: GENLIST_FONT_30_INC;
7919                   min: 0 1;
7920                   align: 0.0 0.5;
7921                   text_class: "slp_medium";
7922                }
7923             }
7924             description { state: "selected" 0.0;
7925                inherit: "default" 0.0;
7926                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
7927             }
7928             GENLIST_DESCRIPTION_FLIP_ENABLED
7929          }
7930          part { name: "elm.swallow.outbox.progress";
7931             type: SWALLOW;
7932             scale: 1;
7933             mouse_events: 1;
7934             repeat_events: 0;
7935             description { state: "default" 0.0;
7936                min: GENLIST_SIZE_168_INC 0;
7937                fixed: 1 1;
7938                color: 0 0 0 0;
7939                align: 1.0 0.5;
7940                rel1 {
7941                   relative: 0.0 1.0;
7942                   offset: 0 0;
7943                   to_x: "elm.padding.right";
7944                   to_y: "elm.padding.top";
7945                }
7946                rel2 {
7947                   relative: 0.0 0.0;
7948                   offset: 0 0;
7949                   to_x: "elm.padding.right";
7950                   to_y: "elm.padding.bottom";
7951                }
7952             }
7953          }
7954          GENLIST_PART_FLIP
7955          GENLIST_PART_DISCLIP
7956       }
7957       programs {
7958          // signal: elm,state,%s,active
7959          //   a "check" item named %s went active
7960          // signal: elm,state,%s,passive
7961          //   a "check" item named %s went passive
7962          // default is passive
7963          program { name: "go_active";
7964             signal: "elm,state,selected";
7965             source: "elm";
7966             action: STATE_SET "selected" 0.0;
7967             target: "bg_image";
7968             target: "elm.text.subject";
7969             target: "elm.text.name";
7970             target: "elm.text.date";
7971             target: "elm.text.preview";
7972             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
7973          }
7974          program { name: "go_passive";
7975             signal: "elm,state,unselected";
7976             source: "elm";
7977             action: STATE_SET "default" 0.0;
7978             target: "bg_image";
7979             target: "elm.text.subject";
7980             target: "elm.text.name";
7981             target: "elm.text.date";
7982             target: "elm.text.preview";
7983             transition: LINEAR 0.1;
7984          }
7985          program { name: "go_disabled";
7986             signal: "elm,state,disabled";
7987             source: "elm";
7988             action: STATE_SET "disabled" 0.0;
7989             target: "disclip";
7990          }
7991          program { name: "go_enabled";
7992             signal: "elm,state,enabled";
7993             source: "elm";
7994             action: STATE_SET "default" 0.0;
7995             target: "disclip";
7996          }
7997          program { name: "go_read";
7998             signal: "elm,state,read";
7999             source: "elm";
8000             action: STATE_SET "read" 0.0;
8001             target: "elm.text.subject";
8002          }
8003          program { name: "go_unread";
8004             signal: "elm,state,unread";
8005             source: "elm";
8006             action: STATE_SET "unread" 0.0;
8007             target: "elm.text.subject";
8008          }
8009          program { name: "go_attach";
8010             signal: "elm,state,attach";
8011             source: "elm";
8012             action: STATE_SET "attach_enable" 0.0;
8013             target: "elm.icon.attach";
8014          }
8015          program { name: "go_priority";
8016             signal: "elm,state,priority";
8017             source: "elm";
8018             action: STATE_SET "priority_enable" 0.0;
8019             target: "elm.icon.priority";
8020          }
8021          program { name: "go_lastverb";
8022             signal: "elm,state,lastverb";
8023             source: "elm";
8024             action: STATE_SET "lastverb_enable" 0.0;
8025             target: "elm.icon.lastverb";
8026          }
8027          program { name: "go_num";
8028             signal: "elm,state,num";
8029             source: "elm";
8030             action: STATE_SET "num_enable" 0.0;
8031             target: "elm.icon.num";
8032             target: "elm.text.num";
8033          }
8034          program { name: "click";
8035             signal: "mouse,up,1";
8036             source: "elm.icon.checkbox.touch";
8037             action: SIGNAL_EMIT "elm,action,check,toggle" "";
8038          }
8039          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
8040       }
8041    }
8042
8043
8044 // ???
8045    /* NOTE: This style is a temporary style for email application. Otherwise do not use this. */
8046    group { name: "elm/genlist/item/3text.6icon/default";
8047       alias: "elm/genlist/item_odd/3text.6icon/default";
8048       alias: "elm/genlist/item_compress/3text.6icon/default";
8049       alias: "elm/genlist/item_compress_odd/3text.6icon/default";
8050       data.item: "stacking" "above";
8051       data.item: "selectraise" "on";
8052       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
8053       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4 elm.swallow.colorbar elm.swallow.outbox.progress";
8054       data.item: "flips" "elm.flip.content";
8055       images {
8056          image: "00_list_bar_press_1x80.png" COMP;
8057       }
8058       parts {
8059          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
8060          GENLIST_PART_BG
8061          GENLIST_PART_BG_IMAGE
8062          GENLIST_PART_BOTTOM_LINE
8063          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
8064          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
8065          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
8066          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
8067          part { name: "elm.swallow.colorbar";
8068             clip_to: "disclip";
8069             type: SWALLOW;
8070             scale: 1;
8071             description { state: "default" 0.0;
8072                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
8073                rel2.relative: 0.0 0.0;
8074                align: 0.0 0.0;
8075             }
8076          }
8077          part { name: "elm.text.3";
8078             clip_to: "disclip";
8079             type: TEXT;
8080             mouse_events: 0;
8081             scale: 1;
8082             description { state: "default" 0.0;
8083                min: GENLIST_SIZE_154_INC GENLIST_SIZE_61_INC;
8084                rel1 {
8085                   relative: 0.0 0.0;
8086                   to_x: "elm.padding.right";
8087                   to_y: "elm.padding.bottom";
8088                }
8089                rel2 {
8090                   relative: 0.0 0.0;
8091                   to_x: "elm.padding.right";
8092                   to_y: "elm.padding.bottom";
8093                }
8094                align: 1.0 1.0;
8095                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
8096                text {
8097                   font: "SLP:style=Medium";
8098                   size: GENLIST_FONT_32_INC;
8099                   min: 0 1;
8100                   align: 1.0 0.5;
8101                   text_class: "slp_medium";
8102                }
8103             }
8104             description { state: "selected" 0.0;
8105                inherit: "default" 0.0;
8106                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
8107             }
8108             GENLIST_DESCRIPTION_FLIP_ENABLED
8109          }
8110          part { name: "elm.icon.1";
8111             clip_to: "disclip";
8112             type: SWALLOW;
8113             mouse_events: 0;
8114             scale: 1;
8115             description { state: "default" 0.0;
8116                rel1 {
8117                   relative: 0.0 1.0;
8118                   to_x: "elm.padding.right";
8119                   to_y: "elm.padding.top";
8120                }
8121                rel2 {
8122                   relative: 0.0 0.0;
8123                   to_x: "elm.padding.right";
8124                   to_y: "elm.text.3";
8125                }
8126                align: 1.0 0.0;
8127             }
8128             GENLIST_DESCRIPTION_FLIP_ENABLED
8129          }
8130          part { name: "elm.padding.icon1.left";
8131             clip_to: "disclip";
8132             type: RECT;
8133             scale: 1;
8134             description { state: "default" 0.0;
8135                min: GENLIST_PADDING_16_INC 0;
8136                rel1.to_x: "elm.icon.1";
8137                rel2 {
8138                   relative: 0.0 1.0;
8139                   to_x: "elm.icon.1";
8140                }
8141                align: 1.0 0.0;
8142                visible: 0;
8143             }
8144          }
8145          part { name: "elm.text1.rect";
8146             clip_to: "disclip";
8147             type: RECT;
8148             scale: 1;
8149             description { state: "default" 0.0;
8150                min: 0 GENLIST_SIZE_61_INC;
8151                rel1 {
8152                   relative: 1.0 1.0;
8153                   to_x: "elm.swallow.colorbar";
8154                   to_y: "elm.padding.top";
8155                }
8156                rel2 {
8157                   relative: 0.0 0.0;
8158                   to_x: "elm.padding.icon1.left";
8159                   to_y: "elm.padding.top";
8160                }
8161                align: 0.0 0.0;
8162                visible: 0;
8163             }
8164          }
8165          part { name: "elm.text.1";
8166             clip_to: "disclip";
8167             type: TEXTBLOCK;
8168             mouse_events: 0;
8169             scale: 1;
8170             description { state: "default" 0.0;
8171                rel1.to: "elm.text1.rect";
8172                rel2.to: "elm.text1.rect";
8173                align: 0.0 0.0;
8174                text {
8175                   style: "genlist_email_textblock_unread_style";
8176                   min: 0 1;
8177                   max: 0 1;
8178                   align: 0.0 0.5;
8179                }
8180             }
8181             description { state: "selected" 0.0;
8182                inherit: "default" 0.0;
8183                text.style: "genlist_email_textblock_selected_style";
8184             }
8185             description { state: "read" 0.0;
8186                inherit: "default" 0.0;
8187                text.style: "genlist_email_textblock_read_style";
8188             }
8189             description { state: "unread" 0.0;
8190                inherit: "default" 0.0;
8191                text.style: "genlist_email_textblock_unread_style";
8192             }
8193             description { state: "urgency_read" 0.0;
8194                inherit: "default" 0.0;
8195                text.style: "genlist_email_textblock_urgency_read_style";
8196             }
8197             description { state: "urgency_unread" 0.0;
8198                inherit: "default" 0.0;
8199                text.style: "genlist_email_textblock_urgency_unread_style";
8200             }
8201             GENLIST_DESCRIPTION_FLIP_ENABLED
8202          }
8203          part { name: "elm.text.2";
8204             clip_to: "disclip";
8205             type: TEXTBLOCK;
8206             scale: 1;
8207             description { state: "default" 0.0;
8208                rel1 {
8209                   relative: 1.0 1.0;
8210                   to_x: "elm.padding.left";
8211                   to_y: "elm.text.1";
8212                }
8213                rel2 {
8214                   relative: 0.0 0.0;
8215                   to_x: "elm.padding.icon2.left";
8216                   to_y: "elm.padding.bottom";
8217                }
8218                align: 0.0 0.5;
8219                text {
8220                   style: "genlist_email_textblock2_style";
8221                   min: 0 1;
8222                   align: 0.0 0.5;
8223                }
8224             }
8225             description { state: "selected" 0.0;
8226                inherit: "default" 0.0;
8227                text.style: "genlist_email_textblock2_selected_style";
8228             }
8229             GENLIST_DESCRIPTION_FLIP_ENABLED
8230          }
8231          part { name: "elm.padding.icon2.left";
8232             clip_to: "disclip";
8233             type: RECT;
8234             scale: 1;
8235             description { state: "default" 0.0;
8236                min: GENLIST_PADDING_16_INC 0;
8237                rel1 {
8238                   relative: 0.0 1.0;
8239                   to_x: "elm.icon.2";
8240                   to_y: "elm.text.1";
8241                }
8242                rel2 {
8243                   relative: 0.0 0.0;
8244                   to_x: "elm.icon.2";
8245                   to_y: "elm.padding.bottom";
8246                }
8247                align: 1.0 0.0;
8248                visible: 0;
8249             }
8250          }
8251          part { name: "elm.icon.2";
8252             clip_to: "disclip";
8253             type: SWALLOW;
8254             scale: 1;
8255             description { state: "default" 0.0;
8256                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8257                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8258                rel1 {
8259                   relative: 0.0 1.0;
8260                   to_x: "elm.padding.icon3.left";
8261                   to_y: "elm.text.1";
8262                }
8263                rel2 {
8264                   relative: 0.0 0.0;
8265                   to_x: "elm.padding.icon3.left";
8266                   to_y: "elm.padding.bottom";
8267                }
8268                align: 1.0 0.5;
8269             }
8270             GENLIST_DESCRIPTION_FLIP_ENABLED
8271          }
8272          part { name: "elm.padding.icon3.left";
8273             clip_to: "disclip";
8274             type: RECT;
8275             scale: 1;
8276             description { state: "default" 0.0;
8277                min: GENLIST_PADDING_16_INC 0;
8278                rel1 {
8279                   relative: 0.0 1.0;
8280                   to_x: "elm.icon.3";
8281                   to_y: "elm.text.1";
8282                }
8283                rel2 {
8284                   relative: 0.0 0.0;
8285                   to_x: "elm.icon.3";
8286                   to_y: "elm.padding.bottom";
8287                }
8288                align: 1.0 0.0;
8289                visible: 0;
8290             }
8291          }
8292          part { name: "elm.icon.3";
8293             clip_to: "disclip";
8294             type: SWALLOW;
8295             scale: 1;
8296             description { state: "default" 0.0;
8297                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8298                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8299                rel1 {
8300                   relative: 0.0 1.0;
8301                   to_x: "elm.padding.icon4.left";
8302                   to_y: "elm.text.1";
8303                }
8304                rel2 {
8305                   relative: 0.0 0.0;
8306                   to_x: "elm.padding.icon4.left";
8307                   to_y: "elm.padding.bottom";
8308                }
8309                align: 1.0 0.5;
8310             }
8311             GENLIST_DESCRIPTION_FLIP_ENABLED
8312          }
8313          part { name: "elm.padding.icon4.left";
8314             clip_to: "disclip";
8315             type: RECT;
8316             scale: 1;
8317             description { state: "default" 0.0;
8318                min: GENLIST_PADDING_16_INC 0;
8319                rel1 {
8320                   relative: 0.0 1.0;
8321                   to_x: "elm.icon.4";
8322                   to_y: "elm.text.1";
8323                }
8324                rel2 {
8325                   relative: 0.0 0.0;
8326                   to_x: "elm.icon.4";
8327                   to_y: "elm.padding.bottom";
8328                }
8329                align: 1.0 0.0;
8330                visible: 0;
8331             }
8332          }
8333          part { name: "elm.icon.4";
8334             clip_to: "disclip";
8335             type: SWALLOW;
8336             scale: 1;
8337             description { state: "default" 0.0;
8338                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8339                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8340                rel1 {
8341                   relative: 0.0 1.0;
8342                   to_x: "elm.text.3";
8343                   to_y: "elm.text.1";
8344                }
8345                rel2 {
8346                   relative: 0.0 0.0;
8347                   to_x: "elm.text.3";
8348                   to_y: "elm.padding.bottom";
8349                }
8350                align: 1.0 0.5;
8351             }
8352             GENLIST_DESCRIPTION_FLIP_ENABLED
8353          }
8354          part { name: "elm.swallow.outbox.progress";
8355             type: SWALLOW;
8356             scale: 1;
8357             mouse_events: 1;
8358             repeat_events: 0;
8359             description { state: "default" 0.0;
8360                min: GENLIST_SIZE_168_INC 0;
8361                color: 0 0 0 0;
8362                align: 1.0 0.5;
8363                rel1 {
8364                   relative: 0.0 1.0;
8365                   offset: 0 0;
8366                   to_x: "elm.padding.right";
8367                   to_y: "elm.padding.top";
8368                }
8369                rel2 {
8370                   relative: 0.0 0.0;
8371                   offset: 0 0;
8372                   to_x: "elm.padding.right";
8373                   to_y: "elm.padding.bottom";
8374                }
8375             }
8376          }
8377          GENLIST_PART_FLIP
8378          GENLIST_PART_DISCLIP
8379       }
8380       programs {
8381          // signal: elm,state,%s,active
8382          //   a "check" item named %s went active
8383          // signal: elm,state,%s,passive
8384          //   a "check" item named %s went passive
8385          // default is passive
8386          program { name: "go_active";
8387             signal: "elm,state,selected";
8388             source: "elm";
8389             action: STATE_SET "selected" 0.0;
8390             target: "bg_image";
8391             target: "elm.text.1";
8392             target: "elm.text.2";
8393             target: "elm.text.3";
8394             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
8395          }
8396          program { name: "go_passive";
8397             signal: "elm,state,unselected";
8398             source: "elm";
8399             action: STATE_SET "default" 0.0;
8400             target: "bg_image";
8401             target: "elm.text.1";
8402             target: "elm.text.2";
8403             target: "elm.text.3";
8404             transition: LINEAR 0.1;
8405          }
8406          program { name: "go_disabled";
8407             signal: "elm,state,disabled";
8408             source: "elm";
8409             action: STATE_SET "disabled" 0.0;
8410             target: "disclip";
8411          }
8412          program { name: "go_enabled";
8413             signal: "elm,state,enabled";
8414             source: "elm";
8415             action: STATE_SET "default" 0.0;
8416             target: "disclip";
8417          }
8418          GENLIST_PROGRAM_FLIP_3TEXT_2ICON
8419          program { name: "go_read";
8420             signal: "elm,state,read";
8421             source: "elm";
8422             action: STATE_SET "read" 0.0;
8423             target: "elm.text.1";
8424          }
8425          program { name: "go_unread";
8426             signal: "elm,state,unread";
8427             source: "elm";
8428             action: STATE_SET "unread" 0.0;
8429             target: "elm.text.1";
8430          }
8431          program { name: "go_urgeny_unread";
8432             signal: "elm,state,urgency_unread";
8433             source: "elm";
8434             action: STATE_SET "urgency_unread" 0.0;
8435             target: "elm.text.1";
8436          }
8437          program { name: "go_urgency_read";
8438             signal: "elm,state,urgency_read";
8439             source: "elm";
8440             action: STATE_SET "urgency_read" 0.0;
8441             target: "elm.text.1";
8442          }
8443          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
8444       }
8445    }
8446
8447 // 3.2.24
8448    group { name: "elm/genlist/item/2text.3icon.2/default";
8449       alias: "elm/genlist/item_odd/2text.3icon.2/default";
8450       alias: "elm/genlist/item_compress/2text.3icon.2/default";
8451       alias: "elm/genlist/item_compress_odd/2text.3icon.2/default";
8452       data.item: "stacking" "above";
8453       data.item: "selectraise" "on";
8454       data.item: "texts" "elm.text.1 elm.text.2";
8455       data.item: "contents" "elm.icon.1 elm.icon.2 elm.swallow.colorbar";
8456       data.item: "flips" "elm.flip.content";
8457       images {
8458          image: "00_list_bar_press_1x80.png" COMP;
8459       }
8460       parts {
8461          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
8462          GENLIST_PART_BG_IMAGE
8463          GENLIST_PART_BOTTOM_LINE
8464          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
8465          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
8466          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
8467          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
8468          part { name: "elm.swallow.colorbar";
8469             clip_to: "disclip";
8470             type: SWALLOW;
8471             scale: 1;
8472             description { state: "default" 0.0;
8473                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
8474                fixed: 1 1;
8475                rel2.relative: 0.0 0.0;
8476                align: 0.0 0.0;
8477             }
8478          }
8479          part { name: "elm.icon.2";
8480             clip_to: "disclip";
8481             type: SWALLOW;
8482             scale: 1;
8483             description { state: "default" 0.0;
8484                fixed: 1 1;
8485                rel1 {
8486                   relative: 0.0 1.0;
8487                   to_x: "elm.padding.right";
8488                   to_y: "elm.padding.top";
8489                }
8490                rel2 {
8491                   relative: 0.0 0.0;
8492                   to_x: "elm.padding.right";
8493                   to_y: "elm.padding.bottom";
8494                }
8495                align: 1.0 0.5;
8496             }
8497             GENLIST_DESCRIPTION_FLIP_ENABLED
8498          }
8499          part { name: "elm.padding.icon2.left";
8500             clip_to: "disclip";
8501             type: RECT;
8502             scale: 1;
8503             description { state: "default" 0.0;
8504                min: GENLIST_PADDING_16_INC 0;
8505                fixed: 1 0;
8506                rel1.to_x: "elm.icon.2";
8507                rel2 {
8508                   relative: 0.0 1.0;
8509                   to_x: "elm.icon.2";
8510                }
8511                align: 1.0 0.0;
8512                visible: 0;
8513             }
8514          }
8515          part { name: "elm.text.2";
8516             clip_to: "disclip";
8517             type: TEXT;
8518             mouse_events: 0;
8519             scale: 1;
8520             description { state: "default" 0.0;
8521                min: 0 GENLIST_SIZE_48_INC;
8522                fixed: 0 1;
8523                rel1 {
8524                   relative: 1.0 0.0;
8525                   to_x: "elm.padding.left";
8526                   to_y: "elm.padding.bottom";
8527                }
8528                rel2 {
8529                   relative: 0.0 0.0;
8530                   to_x: "elm.padding.icon2.left";
8531                   to_y: "elm.padding.bottom";
8532                }
8533                align: 0.0 1.0;
8534                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
8535                text {
8536                   font: "SLP:style=Medium";
8537                   size: GENLIST_FONT_32_INC;
8538                   min: 0 1;
8539                   align: 0.0 0.5;
8540                   text_class: "slp_medium";
8541                }
8542             }
8543             description { state: "selected" 0.0;
8544                inherit: "default" 0.0;
8545                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
8546             }
8547             GENLIST_DESCRIPTION_FLIP_ENABLED
8548          }
8549          part { name: "elm.text.1";
8550             clip_to: "disclip";
8551             type: TEXT;
8552             mouse_events: 0;
8553             scale: 1;
8554             description { state: "default" 0.0;
8555                min: 0 0;
8556                max: GENLIST_SIZE_560_INC 0;
8557                fixed: 1 0;
8558                rel1 {
8559                   relative: 1.0 1.0;
8560                   to_x: "elm.padding.left";
8561                   to_y: "elm.padding.top";
8562                }
8563                rel2 {
8564                   relative: 1.0 0.0;
8565                   to_x: "elm.padding.left";
8566                   to_y: "elm.text.2";
8567                }
8568                align: 0.0 0.5;
8569                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
8570                text {
8571                   font: "SLP:style=Roman";
8572                   size: GENLIST_FONT_44_INC;
8573                   min: 1 1;
8574                   align: 0.0 0.5;
8575                   text_class: "list_item";
8576                }
8577             }
8578             description { state: "selected" 0.0;
8579                inherit: "default" 0.0;
8580                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
8581             }
8582             GENLIST_DESCRIPTION_FLIP_ENABLED
8583          }
8584          part { name: "elm.padding.icon1.left";
8585             clip_to: "disclip";
8586             type: RECT;
8587             scale: 1;
8588             description { state: "default" 0.0;
8589                min: GENLIST_PADDING_16_INC 0;
8590                fixed: 1 0;
8591                rel1 {
8592                   relative: 1.0 0.0;
8593                   to_x: "elm.text.1";
8594                }
8595                rel2.to_x: "elm.text.1";
8596                align: 0.0 0.0;
8597                visible: 0;
8598             }
8599          }
8600          part { name: "elm.icon.1";
8601             clip_to: "disclip";
8602             type: SWALLOW;
8603             scale: 1;
8604             description { state: "default" 0.0;
8605                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8606                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8607                fixed: 1 1;
8608                rel1 {
8609                   relative: 1.0 1.0;
8610                   to_x: "elm.padding.icon1.left";
8611                   to_y: "elm.padding.top";
8612                }
8613                rel2 {
8614                   relative: 1.0 0.0;
8615                   to_x: "elm.padding.icon1.left";
8616                   to_y: "elm.text.2";
8617                }
8618                align: 0.0 0.5;
8619             }
8620             GENLIST_DESCRIPTION_FLIP_ENABLED
8621          }
8622          GENLIST_PART_FLIP
8623          GENLIST_PART_DISCLIP
8624       }
8625       programs {
8626          // signal: elm,state,%s,active
8627          //   a "check" item named %s went active
8628          // signal: elm,state,%s,passive
8629          //   a "check" item named %s went passive
8630          // default is passive
8631          program { name: "go_active";
8632             signal: "elm,state,selected";
8633             source: "elm";
8634             action: STATE_SET "selected" 0.0;
8635             target: "bg_image";
8636             target: "elm.text.1";
8637             target: "elm.text.2";
8638             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
8639          }
8640          program { name: "go_passive";
8641             signal: "elm,state,unselected";
8642             source: "elm";
8643             action: STATE_SET "default" 0.0;
8644             target: "bg_image";
8645             target: "elm.text.1";
8646             target: "elm.text.2";
8647             transition: LINEAR 0.1;
8648          }
8649          program { name: "go_disabled";
8650             signal: "elm,state,disabled";
8651             source: "elm";
8652             action: STATE_SET "disabled" 0.0;
8653             target: "disclip";
8654          }
8655          program { name: "go_enabled";
8656             signal: "elm,state,enabled";
8657             source: "elm";
8658             action: STATE_SET "default" 0.0;
8659             target: "disclip";
8660          }
8661          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
8662          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
8663       }
8664    }
8665
8666 // 3.2.25
8667    group { name: "elm/genlist/item/2text.3icon.3/default";
8668       alias: "elm/genlist/item_odd/2text.3icon.3/default";
8669       alias: "elm/genlist/item_compress/2text.3icon.3/default";
8670       alias: "elm/genlist/item_compress_odd/2text.3icon.3/default";
8671       data.item: "stacking" "above";
8672       data.item: "selectraise" "on";
8673       data.item: "texts" "elm.text.1 elm.text.2";
8674       data.item: "contents" "elm.icon.1 elm.icon.2 elm.swallow.colorbar";
8675       data.item: "flips" "elm.flip.content";
8676       images {
8677          image: "00_list_bar_press_1x80.png" COMP;
8678       }
8679       parts {
8680          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
8681          GENLIST_PART_BG_IMAGE
8682          GENLIST_PART_BOTTOM_LINE
8683          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
8684          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
8685          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
8686          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
8687          part { name: "elm.swallow.colorbar";
8688             clip_to: "disclip";
8689             type: SWALLOW;
8690             scale: 1;
8691             description { state: "default" 0.0;
8692                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
8693                fixed: 1 1;
8694                rel2.relative: 0.0 0.0;
8695                align: 0.0 0.0;
8696             }
8697          }
8698          part { name: "elm.icon.1";
8699             clip_to: "disclip";
8700             type: SWALLOW;
8701             scale: 1;
8702             description { state: "default" 0.0;
8703                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
8704                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
8705                fixed: 1 1;
8706                rel1 {
8707                   relative: 1.0 1.0;
8708                   to_x: "elm.padding.left";
8709                   to_y: "elm.padding.top";
8710                }
8711                rel2 {
8712                   relative: 1.0 0.0;
8713                   to_x: "elm.padding.left";
8714                   to_y: "elm.padding.bottom";
8715                }
8716                align: 0.0 0.5;
8717             }
8718             GENLIST_DESCRIPTION_FLIP_ENABLED
8719          }
8720          part { name: "elm.padding.icon1.right";
8721             clip_to: "disclip";
8722             type: RECT;
8723             scale: 1;
8724             description { state: "default" 0.0;
8725                min: GENLIST_PADDING_16_INC 0;
8726                fixed: 1 0;
8727                rel1 {
8728                   relative: 1.0 0.0;
8729                   to_x: "elm.icon.1";
8730                }
8731                rel2.to_x: "elm.icon.1";
8732                align: 0.0 0.0;
8733                visible: 0;
8734             }
8735          }
8736          part { name: "elm.icon.2";
8737             clip_to: "disclip";
8738             type: SWALLOW;
8739             scale: 1;
8740             description { state: "default" 0.0;
8741                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
8742                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
8743                fixed: 1 1;
8744                rel1 {
8745                   relative: 0.0 1.0;
8746                   to_x: "elm.padding.right";
8747                   to_y: "elm.padding.top";
8748                }
8749                rel2 {
8750                   relative: 0.0 1.0;
8751                   to_x: "elm.padding.right";
8752                   to_y: "elm.padding.bottom";
8753                }
8754                align: 1.0 0.5;
8755             }
8756             GENLIST_DESCRIPTION_FLIP_ENABLED
8757          }
8758          part { name: "elm.padding.icon2.left";
8759             clip_to: "disclip";
8760             type: RECT;
8761             scale: 1;
8762             description { state: "default" 0.0;
8763                min: GENLIST_PADDING_16_INC 0;
8764                fixed: 1 0;
8765                rel1 {
8766                   relative: 0.0 0.0;
8767                   to_x: "elm.icon.2";
8768                }
8769                rel2.to_x: "elm.icon.2";
8770                align: 1.0 0.0;
8771                visible: 0;
8772             }
8773          }
8774          part { name: "elm.text.1";
8775             clip_to: "disclip";
8776             type: TEXT;
8777             mouse_events: 0;
8778             scale: 1;
8779             description { state: "default" 0.0;
8780                min: 0 GENLIST_SIZE_61_INC;
8781                fixed: 1 1;
8782                rel1 {
8783                   relative: 1.0 1.0;
8784                   to_x: "elm.padding.icon1.right";
8785                   to_y: "elm.padding.top";
8786                }
8787                rel2 {
8788                   relative: 0.0 1.0;
8789                   to_x: "elm.padding.icon2.left";
8790                   to_y: "elm.padding.top";
8791                }
8792                align: 0.0 0.0;
8793                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
8794                text {
8795                   font: "SLP:style=Roman";
8796                   size: GENLIST_FONT_44_INC;
8797                   min: 0 1;
8798                   align: 0.0 0.5;
8799                   text_class: "list_item";
8800                }
8801             }
8802             description { state: "selected" 0.0;
8803                inherit: "default" 0.0;
8804                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
8805             }
8806             GENLIST_DESCRIPTION_FLIP_ENABLED
8807          }
8808          part { name: "elm.text.2";
8809             clip_to: "disclip";
8810             type: TEXT;
8811             mouse_events: 0;
8812             scale: 1;
8813             description { state: "default" 0.0;
8814                rel1 {
8815                   relative: 1.0 1.0;
8816                   to_x: "elm.padding.icon1.right";
8817                   to_y: "elm.text.1";
8818                }
8819                rel2 {
8820                   relative: 0.0 0.0;
8821                   to_x: "elm.padding.icon2.left";
8822                   to_y: "elm.padding.bottom";
8823                }
8824                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
8825                text {
8826                   font: "SLP:style=Medium";
8827                   size: GENLIST_FONT_32_INC;
8828                   min: 0 1;
8829                   align: 0.0 0.5;
8830                   text_class: "slp_medium";
8831                }
8832             }
8833             description { state: "selected" 0.0;
8834                inherit: "default" 0.0;
8835                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
8836             }
8837             GENLIST_DESCRIPTION_FLIP_ENABLED
8838          }
8839          GENLIST_PART_FLIP
8840          GENLIST_PART_DISCLIP
8841       }
8842       programs {
8843          // signal: elm,state,%s,active
8844          //   a "check" item named %s went active
8845          // signal: elm,state,%s,passive
8846          //   a "check" item named %s went passive
8847          // default is passive
8848          program { name: "go_active";
8849             signal: "elm,state,selected";
8850             source: "elm";
8851             action: STATE_SET "selected" 0.0;
8852             target: "bg_image";
8853             target: "elm.text.1";
8854             target: "elm.text.2";
8855             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
8856          }
8857          program { name: "go_passive";
8858             signal: "elm,state,unselected";
8859             source: "elm";
8860             action: STATE_SET "default" 0.0;
8861             target: "bg_image";
8862             target: "elm.text.1";
8863             target: "elm.text.2";
8864             transition: LINEAR 0.1;
8865          }
8866          program { name: "go_disabled";
8867             signal: "elm,state,disabled";
8868             source: "elm";
8869             action: STATE_SET "disabled" 0.0;
8870             target: "disclip";
8871          }
8872          program { name: "go_enabled";
8873             signal: "elm,state,enabled";
8874             source: "elm";
8875             action: STATE_SET "default" 0.0;
8876             target: "disclip";
8877          }
8878          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
8879          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
8880       }
8881    }
8882
8883 // 3.2.26
8884    group { name: "elm/genlist/item/2text.2icon.6/default";
8885       alias: "elm/genlist/item_odd/2text.2icon.6/default";
8886       alias: "elm/genlist/item_compress/2text.2icon.6/default";
8887       alias: "elm/genlist/item_compress_odd/2text.2icon.6/default";
8888       data.item: "stacking" "above";
8889       data.item: "selectraise" "on";
8890       data.item: "texts" "elm.text.1 elm.text.2";
8891       data.item: "contents" "elm.icon.1 elm.icon.2";
8892       data.item: "flips" "elm.flip.content";
8893       images {
8894          image: "00_list_bar_press_1x80.png" COMP;
8895       }
8896       parts {
8897          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
8898          GENLIST_PART_BG_IMAGE
8899          GENLIST_PART_BOTTOM_LINE
8900          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
8901          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
8902          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
8903          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
8904          part { name: "elm.icon.1";
8905             clip_to: "disclip";
8906             type: SWALLOW;
8907             scale: 1;
8908             description { state: "default" 0.0;
8909                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
8910                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
8911                fixed: 1 1;
8912                rel1 {
8913                   relative: 1.0 1.0;
8914                   to_x: "elm.padding.left";
8915                   to_y: "elm.padding.top";
8916                }
8917                rel2 {
8918                   relative: 1.0 0.0;
8919                   to_x: "elm.padding.left";
8920                   to_y: "elm.padding.bottom";
8921                }
8922                align: 0.0 0.5;
8923             }
8924             GENLIST_DESCRIPTION_FLIP_ENABLED
8925          }
8926          part { name: "elm.padding.icon1.right";
8927             clip_to: "disclip";
8928             type: RECT;
8929             scale: 1;
8930             description { state: "default" 0.0;
8931                min: GENLIST_PADDING_16_INC 0;
8932                fixed: 1 0;
8933                rel1 {
8934                   relative: 1.0 0.0;
8935                   to_x: "elm.icon.1";
8936                }
8937                rel2.to_x: "elm.icon.1";
8938                align: 0.0 0.0;
8939                visible: 0;
8940             }
8941          }
8942          part { name: "elm.text.1";
8943             clip_to: "disclip";
8944             type: TEXT;
8945             mouse_events: 0;
8946             scale: 1;
8947             description { state: "default" 0.0;
8948                min: 0 GENLIST_SIZE_61_INC;
8949                fixed: 0 1;
8950                rel1 {
8951                   relative: 1.0 1.0;
8952                   to_x: "elm.padding.icon1.right";
8953                   to_y: "elm.padding.top";
8954                }
8955                rel2 {
8956                   relative: 0.0 1.0;
8957                   to_x: "elm.padding.right";
8958                   to_y: "elm.padding.top";
8959                }
8960                align: 0.0 0.0;
8961                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
8962                text {
8963                   font: "SLP:style=Roman";
8964                   size: GENLIST_FONT_44_INC;
8965                   min: 0 1;
8966                   align: 0.0 0.5;
8967                   text_class: "list_item";
8968                }
8969             }
8970             description { state: "selected" 0.0;
8971                inherit: "default" 0.0;
8972                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
8973             }
8974             GENLIST_DESCRIPTION_FLIP_ENABLED
8975          }
8976          part { name: "elm.icon.2";
8977             clip_to: "disclip";
8978             type: SWALLOW;
8979             scale: 1;
8980             description { state: "default" 0.0;
8981                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8982                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
8983                fixed: 1 1;
8984                rel1 {
8985                   relative: 0.0 1.0;
8986                   to_x: "elm.padding.right";
8987                   to_y: "elm.text.1";
8988                }
8989                rel2 {
8990                   relative: 0.0 1.0;
8991                   to_x: "elm.padding.right";
8992                   to_y: "elm.padding.bottom";
8993                }
8994                align: 1.0 0.5;
8995             }
8996             GENLIST_DESCRIPTION_FLIP_ENABLED
8997          }
8998          part { name: "elm.padding.icon2.left";
8999             type: RECT;
9000             scale: 1;
9001             description { state: "default" 0.0;
9002                min: GENLIST_PADDING_16_INC 0;
9003                fixed: 1 0;
9004                rel1 {
9005                   relative: 0.0 0.0;
9006                   to_x: "elm.icon.2";
9007                }
9008                rel2.to_x: "elm.icon.2";
9009                align: 1.0 0.0;
9010                visible: 0;
9011             }
9012          }
9013          part { name: "elm.text.2";
9014             clip_to: "disclip";
9015             type: TEXT;
9016             mouse_events: 0;
9017             scale: 1;
9018             description { state: "default" 0.0;
9019                rel1 {
9020                   relative: 1.0 1.0;
9021                   to_x: "elm.padding.icon1.right";
9022                   to_y: "elm.text.1";
9023                }
9024                rel2 {
9025                   relative: 0.0 0.0;
9026                   offset: 0 0;
9027                   to_x: "elm.padding.icon2.left";
9028                   to_y: "elm.padding.bottom";
9029                }
9030                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
9031                text {
9032                   font: "SLP:style=Medium";
9033                   size: GENLIST_FONT_32_INC;
9034                   min: 0 1;
9035                   align: 0.0 0.5;
9036                   text_class: "slp_medium";
9037                }
9038             }
9039             description { state: "selected" 0.0;
9040                inherit: "default" 0.0;
9041                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
9042             }
9043             GENLIST_DESCRIPTION_FLIP_ENABLED
9044          }
9045          GENLIST_PART_FLIP
9046          GENLIST_PART_DISCLIP
9047       }
9048       programs {
9049          // signal: elm,state,%s,active
9050          //   a "check" item named %s went active
9051          // signal: elm,state,%s,passive
9052          //   a "check" item named %s went passive
9053          // default is passive
9054          program { name: "go_active";
9055             signal: "elm,state,selected";
9056             source: "elm";
9057             action: STATE_SET "selected" 0.0;
9058             target: "bg_image";
9059             target: "elm.text.1";
9060             target: "elm.text.2";
9061             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
9062          }
9063          program { name: "go_passive";
9064             signal: "elm,state,unselected";
9065             source: "elm";
9066             action: STATE_SET "default" 0.0;
9067             target: "bg_image";
9068             target: "elm.text.1";
9069             target: "elm.text.2";
9070             transition: LINEAR 0.1;
9071          }
9072          program { name: "go_disabled";
9073             signal: "elm,state,disabled";
9074             source: "elm";
9075             action: STATE_SET "disabled" 0.0;
9076             target: "disclip";
9077          }
9078          program { name: "go_enabled";
9079             signal: "elm,state,enabled";
9080             source: "elm";
9081             action: STATE_SET "default" 0.0;
9082             target: "disclip";
9083          }
9084          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
9085          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
9086       }
9087    }
9088
9089    group { name: "elm/genlist/item_compress/2text.2icon.6.tb/default";
9090       inherit: "elm/genlist/item/2text.2icon.6/default";
9091       parts {
9092          part { name: "elm.text.1";
9093             clip_to: "disclip";
9094             type: TEXTBLOCK;
9095             mouse_events: 0;
9096             scale: 1;
9097             description { state: "default" 0.0;
9098                min: 0 GENLIST_SIZE_61_INC;
9099                fixed: 0 1;
9100                rel1 {
9101                   relative: 1.0 1.0;
9102                   to_x: "elm.padding.icon1.right";
9103                   to_y: "elm.padding.top";
9104                }
9105                rel2 {
9106                   relative: 0.0 1.0;
9107                   to_x: "elm.padding.right";
9108                   to_y: "elm.padding.top";
9109                }
9110                align: 0.0 0.0;
9111                text {
9112                   style: "genlist_default_textblock_style";
9113                   size: GENLIST_FONT_44_INC;
9114                   min: 0 1;
9115                   align: 0.0 0.5;
9116                   text_class: "list_item";
9117                }
9118             }
9119             description { state: "selected" 0.0;
9120                inherit: "default" 0.0;
9121                text.style: "genlist_default_textblock_selected_style";
9122             }
9123             GENLIST_DESCRIPTION_FLIP_ENABLED
9124          }
9125          part { name: "elm.text.2";
9126             clip_to: "disclip";
9127             type: TEXTBLOCK;
9128             mouse_events: 0;
9129             scale: 1;
9130             description { state: "default" 0.0;
9131                rel1 {
9132                   relative: 1.0 1.0;
9133                   to_x: "elm.padding.icon1.right";
9134                   to_y: "elm.text.1";
9135                }
9136                rel2 {
9137                   relative: 0.0 0.0;
9138                   offset: 0 0;
9139                   to_x: "elm.padding.icon2.left";
9140                   to_y: "elm.padding.bottom";
9141                }
9142                text {
9143                   style: "genlist_default_textblock_style";
9144                   size: GENLIST_FONT_32_INC;
9145                   min: 0 1;
9146                   align: 0.0 0.5;
9147                   text_class: "slp_medium";
9148                }
9149             }
9150             description { state: "selected" 0.0;
9151                inherit: "default" 0.0;
9152                text.style: "genlist_default_textblock_selected_style";
9153             }
9154             GENLIST_DESCRIPTION_FLIP_ENABLED
9155          }
9156       }
9157    }
9158
9159 // 3.2.27
9160    group { name: "elm/genlist/item/2text.1icon.12/default";
9161       alias: "elm/genlist/item_odd/2text.1icon.12/default";
9162       alias: "elm/genlist/item_compress/2text.1icon.12/default";
9163       alias: "elm/genlist/item_compress_odd/2text.1icon.12/default";
9164       data.item: "stacking" "above";
9165       data.item: "selectraise" "on";
9166       data.item: "texts" "elm.text.1 elm.text.2";
9167       data.item: "contents" "elm.icon";
9168       data.item: "flips" "elm.flip.content";
9169       images {
9170          image: "00_list_bar_press_1x80.png" COMP;
9171       }
9172       parts {
9173          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
9174          GENLIST_PART_BG_IMAGE
9175          GENLIST_PART_BOTTOM_LINE
9176          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
9177          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
9178          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
9179          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
9180          part { name: "elm.icon";
9181             clip_to: "disclip";
9182             type: SWALLOW;
9183             scale: 1;
9184             description { state: "default" 0.0;
9185                min: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
9186                max: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
9187                fixed: 1 1;
9188                rel1 {
9189                   relative: 0.0 1.0;
9190                   to_x: "elm.padding.right";
9191                   to_y: "elm.padding.top";
9192                }
9193                rel2 {
9194                   relative: 0.0 0.0;
9195                   to_x: "elm.padding.right";
9196                   to_y: "elm.padding.bottom";
9197                }
9198                align: 1.0 0.5;
9199             }
9200             GENLIST_DESCRIPTION_FLIP_ENABLED
9201          }
9202          part { name: "elm.padding.icon.left";
9203             clip_to: "disclip";
9204             type: RECT;
9205             scale: 1;
9206             description { state: "default" 0.0;
9207                min: GENLIST_PADDING_16_INC 0;
9208                fixed: 1 0;
9209                rel1.to_x: "elm.icon";
9210                rel2 {
9211                   relative: 0.0 1.0;
9212                   to_x: "elm.icon";
9213                }
9214                align: 1.0 0.0;
9215                visible: 0;
9216             }
9217          }
9218          part { name: "elm.text.1";
9219             clip_to: "disclip";
9220             type: TEXT;
9221             mouse_events: 0;
9222             scale: 1;
9223             description { state: "default" 0.0;
9224                min: 0 GENLIST_SIZE_61_INC;
9225                fixed: 0 1;
9226                rel1 {
9227                   relative: 1.0 1.0;
9228                   to_x: "elm.padding.left";
9229                   to_y: "elm.padding.top";
9230                }
9231                rel2 {
9232                   relative: 0.0 1.0;
9233                   to_x: "elm.padding.icon.left";
9234                   to_y: "elm.padding.top";
9235                }
9236                align: 0.0 0.0;
9237                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
9238                text {
9239                   font: "SLP:style=Roman";
9240                   size: GENLIST_FONT_44_INC;
9241                   min: 0 1;
9242                   align: 0.0 0.5;
9243                   text_class: "list_item";
9244                }
9245             }
9246             description { state: "selected" 0.0;
9247                inherit: "default" 0.0;
9248                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
9249             }
9250             GENLIST_DESCRIPTION_FLIP_ENABLED
9251          }
9252          part { name: "elm.text.2";
9253             clip_to: "disclip";
9254             type: TEXT;
9255             mouse_events: 0;
9256             scale: 1;
9257             description { state: "default" 0.0;
9258                rel1 {
9259                   relative: 1.0 1.0;
9260                   to_x: "elm.padding.left";
9261                   to_y: "elm.text.1";
9262                }
9263                rel2 {
9264                   relative: 0.0 0.0;
9265                   to_x: "elm.padding.icon.left";
9266                   to_y: "elm.padding.bottom";
9267                }
9268                align: 0.0 0.0;
9269                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
9270                text {
9271                   font: "SLP:style=Medium";
9272                   size: GENLIST_FONT_32_INC;
9273                   min: 0 1;
9274                   align: 0.0 0.5;
9275                   text_class: "slp_medium";
9276                }
9277             }
9278             description { state: "selected" 0.0;
9279                inherit: "default" 0.0;
9280                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
9281             }
9282             GENLIST_DESCRIPTION_FLIP_ENABLED
9283          }
9284          GENLIST_PART_FLIP
9285          GENLIST_PART_DISCLIP
9286       }
9287       programs {
9288          // signal: elm,state,%s,active
9289          //   a "check" item named %s went active
9290          // signal: elm,state,%s,passive
9291          //   a "check" item named %s went passive
9292          // default is passive
9293          program { name: "go_active";
9294             signal: "elm,state,selected";
9295             source: "elm";
9296             action: STATE_SET "selected" 0.0;
9297             target: "bg_image";
9298             target: "elm.text.1";
9299             target: "elm.text.2";
9300             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
9301          }
9302          program { name: "go_passive";
9303             signal: "elm,state,unselected";
9304             source: "elm";
9305             action: STATE_SET "default" 0.0;
9306             target: "bg_image";
9307             target: "elm.text.1";
9308             target: "elm.text.2";
9309             transition: LINEAR 0.1;
9310          }
9311          program { name: "go_disabled";
9312             signal: "elm,state,disabled";
9313             source: "elm";
9314             action: STATE_SET "disabled" 0.0;
9315             target: "disclip";
9316          }
9317          program { name: "go_enabled";
9318             signal: "elm,state,enabled";
9319             source: "elm";
9320             action: STATE_SET "default" 0.0;
9321             target: "disclip";
9322          }
9323          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
9324          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
9325       }
9326    }
9327
9328 // ???
9329    /* NOTE: This style is a temporary style for email application. Otherwise do not use this. */
9330    group { name: "elm/genlist/item/2text.1icon.13/default";
9331       alias: "elm/genlist/item_odd/2text.1icon.13/default";
9332       alias: "elm/genlist/item_compress/2text.1icon.13/default";
9333       alias: "elm/genlist/item_compress_odd/2text.1icon.13/default";
9334       data.item: "stacking" "above";
9335       data.item: "selectraise" "on";
9336       data.item: "texts" "elm.text elm.text.msgcount";
9337       data.item: "contents" "elm.icon";
9338       data.item: "flips" "elm.flip.content";
9339       images {
9340          image: "00_list_bar_press_1x80.png" COMP;
9341       }
9342       parts {
9343          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
9344          GENLIST_PART_BG
9345          GENLIST_PART_BG_IMAGE
9346          GENLIST_PART_BOTTOM_LINE
9347          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
9348          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
9349          part { name: "elm.icon";
9350             clip_to: "disclip";
9351             type: SWALLOW;
9352             scale: 1;
9353             description { state: "default" 0.0;
9354                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
9355                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
9356                fixed: 1 1;
9357                rel1 {
9358                   relative: 1.0 0.0;
9359                   to_x: "elm.padding.left";
9360                }
9361                rel2 {
9362                   relative: 1.0 1.0;
9363                   to_x: "elm.padding.left";
9364                }
9365                align: 0.0 0.5;
9366             }
9367             GENLIST_DESCRIPTION_FLIP_ENABLED
9368          }
9369          part { name: "elm.text.msgcount";
9370             clip_to: "disclip";
9371             type: TEXT;
9372             mouse_events: 0;
9373             scale: 1;
9374             description {
9375                state: "default" 0.0;
9376                fixed: 1 1;
9377                align: 0 0;
9378                color: GENLIST_PART_EMAIL_MSGCOUNT_TEXT_COLOR_INC;
9379                rel1.to: "elm.icon";
9380                rel2.to: "elm.icon";
9381                text {
9382                   font: "SLP:style=Medium";
9383                   size: GENLIST_FONT_28_INC;
9384                   min: 0 1;
9385                   align: 0.5 0.5;
9386                   text_class: "slp_medium";
9387                }
9388                align: 0.0 0.5;
9389             }
9390          }
9391          part { name: "elm.padding.icon.right";
9392             clip_to: "disclip";
9393             type: RECT;
9394             scale: 1;
9395             description {
9396                state: "default" 0.0;
9397                min: GENLIST_SIZE_16_INC 0;
9398                fixed: 1 0;
9399                rel1 {
9400                   relative: 1.0 0.0;
9401                   to_x: "elm.icon";
9402                }
9403                rel2.to_x: "elm.icon";
9404                visible: 0;
9405             }
9406          }
9407          part { name: "elm.text";
9408             clip_to: "disclip";
9409             type: TEXT;
9410             mouse_events: 0;
9411             scale: 1;
9412             description { state: "default" 0.0;
9413                rel1 {
9414                   relative: 1.0 0.0;
9415                   to_x: "elm.padding.icon.right";
9416                }
9417                rel2 {
9418                   relative: 0.0 1.0;
9419                   to_x: "elm.padding.right";
9420                }
9421                align: 0.0 0.5;
9422                color: GENLIST_PART_FONT_UNREAD_EMAIL_COLOR_INC;
9423                text {
9424                   font: "SLP:style=Roman";
9425                   size: GENLIST_FONT_44_INC;
9426                   min: 0 1;
9427                   align: 0.0 0.5;
9428                   text_class: "list_item";
9429                }
9430             }
9431             description { state: "selected" 0.0;
9432                inherit: "default" 0.0;
9433                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
9434             }
9435             GENLIST_DESCRIPTION_FLIP_ENABLED
9436          }
9437          GENLIST_PART_FLIP
9438          GENLIST_PART_DISCLIP
9439       }
9440       programs {
9441          program { name: "go_active";
9442             signal: "elm,state,selected";
9443             source: "elm";
9444             action: STATE_SET "selected" 0.0;
9445             target: "bg_image";
9446             target: "elm.text";
9447             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
9448          }
9449          program { name: "go_passive";
9450             signal: "elm,state,unselected";
9451             source: "elm";
9452             action: STATE_SET "default" 0.0;
9453             target: "bg_image";
9454             target: "elm.text";
9455             transition: LINEAR 0.1;
9456          }
9457          program { name: "go_disabled";
9458             signal: "elm,state,disabled";
9459             source: "elm";
9460             action: STATE_SET "disabled" 0.0;
9461             target: "disclip";
9462          }
9463          program { name: "go_enabled";
9464             signal: "elm,state,enabled";
9465             source: "elm";
9466             action: STATE_SET "default" 0.0;
9467             target: "disclip";
9468          }
9469          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
9470       }
9471    }
9472
9473 // ???
9474    /* NOTE: This style is a temporary style for email application. Otherwise do not use this. */
9475    group { name: "elm/genlist/item/2text.1icon.14/default";
9476       alias: "elm/genlist/item_odd/2text.1icon.14/default";
9477       alias: "elm/genlist/item_compress/2text.1icon.14/default";
9478       alias: "elm/genlist/item_compress_odd/2text.1icon.14/default";
9479       data.item: "stacking" "above";
9480       data.item: "selectraise" "on";
9481       data.item: "texts" "elm.text elm.text.msgcount";
9482       data.item: "contents" "elm.check elm.icon";
9483       data.item: "flips" "elm.flip.content";
9484       images {
9485          image: "00_list_bar_press_1x80.png" COMP;
9486       }
9487       parts {
9488          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
9489          GENLIST_PART_BG
9490          GENLIST_PART_BG_IMAGE
9491          GENLIST_PART_BOTTOM_LINE
9492          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
9493          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
9494          part { name: "elm.check";
9495             clip_to: "disclip";
9496             type: SWALLOW;
9497             mouse_events: 1;
9498             scale: 1;
9499             description { state: "default" 0.0;
9500                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
9501                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
9502                fixed: 1 1;
9503                rel1 {
9504                   relative: 1.0 0.0;
9505                   to_x: "elm.padding.left";
9506                }
9507                rel2 {
9508                   relative: 1.0 1.0;
9509                   to_x: "elm.padding.left";
9510                }
9511                align: 0.0 0.5;
9512             }
9513             GENLIST_DESCRIPTION_FLIP_ENABLED
9514          }
9515
9516          part { name: "elm.padding.icon.checkbox.right";
9517             clip_to: "disclip";
9518             type: RECT;
9519             scale: 1;
9520             description { state: "default" 0.0;
9521                min: GENLIST_PADDING_16_INC 0;
9522                fixed: 1 0;
9523                rel1 {
9524                   relative: 1.0 0.0;
9525                   to_x: "elm.check";
9526                }
9527                rel2 {
9528                   relative: 1.0 1.0;
9529                   to_x:  "elm.check";
9530                }
9531                align: 1.0 0.0;
9532                visible: 0;
9533             }
9534          }
9535          part { name: "elm.icon";
9536             clip_to: "disclip";
9537             type: SWALLOW;
9538             scale: 1;
9539             description { state: "default" 0.0;
9540                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
9541                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
9542                fixed: 1 1;
9543                rel1.to_x: "elm.padding.right";
9544                rel2 {
9545                   relative: 0.0 1.0;
9546                   to_x: "elm.padding.right";
9547                }
9548                align: 1.0 0.5;
9549             }
9550             GENLIST_DESCRIPTION_FLIP_ENABLED
9551          }
9552          part { name: "elm.text.msgcount";
9553             clip_to: "disclip";
9554             type: TEXT;
9555             mouse_events: 0;
9556             scale: 1;
9557             description {
9558                state: "default" 0.0;
9559                fixed: 1 1;
9560                align: 0 0;
9561                color: GENLIST_PART_EMAIL_MSGCOUNT_TEXT_COLOR_INC;
9562                rel1.to: "elm.icon";
9563                rel2.to: "elm.icon";
9564                text {
9565                   font: "SLP:style=Medium";
9566                   size: GENLIST_FONT_28_INC;
9567                   min: 0 1;
9568                   align: 0.5 0.5;
9569                   text_class: "slp_medium";
9570                }
9571                align: 0.0 0.5;
9572             }
9573          }
9574          part { name: "elm.padding.icon.left";
9575             clip_to: "disclip";
9576             type: RECT;
9577             scale: 1;
9578             description {
9579                state: "default" 0.0;
9580                min: GENLIST_SIZE_16_INC 0;
9581                fixed: 1 0;
9582                rel1.to_x: "elm.icon";
9583                rel2 {
9584                   relative: 0.0 1.0;
9585                   to_x: "elm.icon";
9586                }
9587                align: 1.0 0.0;
9588                visible: 0;
9589             }
9590          }
9591          part { name: "elm.text";
9592             clip_to: "disclip";
9593             type: TEXTBLOCK;
9594             mouse_events: 0;
9595             scale: 1;
9596             description { state: "default" 0.0;
9597                rel1 {
9598                   relative: 1.0 0.0;
9599                   to_x: "elm.padding.icon.checkbox.right";
9600                }
9601                rel2 {
9602                   relative: 0.0 1.0;
9603                   to_x: "elm.padding.icon.left";
9604                }
9605                align: 0.0 0.5;
9606                text {
9607                   style: "genlist_email_textblock_unread_style";
9608                   min: 0 1;
9609                   max: 0 1;
9610                   align: 0.0 0.5;
9611                }
9612             }
9613             description { state: "selected" 0.0;
9614                inherit: "default" 0.0;
9615                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
9616             }
9617             GENLIST_DESCRIPTION_FLIP_ENABLED
9618          }
9619          GENLIST_PART_FLIP
9620          GENLIST_PART_DISCLIP
9621       }
9622       programs {
9623          program { name: "go_active";
9624             signal: "elm,state,selected";
9625             source: "elm";
9626             action: STATE_SET "selected" 0.0;
9627             target: "bg_image";
9628             target: "elm.text";
9629             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
9630          }
9631          program { name: "go_passive";
9632             signal: "elm,state,unselected";
9633             source: "elm";
9634             action: STATE_SET "default" 0.0;
9635             target: "bg_image";
9636             target: "elm.text";
9637             transition: LINEAR 0.1;
9638          }
9639          program { name: "go_disabled";
9640             signal: "elm,state,disabled";
9641             source: "elm";
9642             action: STATE_SET "disabled" 0.0;
9643             target: "disclip";
9644          }
9645          program { name: "go_enabled";
9646             signal: "elm,state,enabled";
9647             source: "elm";
9648             action: STATE_SET "default" 0.0;
9649             target: "disclip";
9650          }
9651          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
9652       }
9653    }
9654
9655 // 3.2.28
9656    group { name: "elm/genlist/item/2text.3icon/default";
9657       alias: "elm/genlist/item_odd/2text.3icon/default";
9658       alias: "elm/genlist/item_compress/2text.3icon/default";
9659       alias: "elm/genlist/item_compress_odd/2text.3icon/default";
9660       data.item: "stacking" "above";
9661       data.item: "selectraise" "on";
9662       data.item: "texts" "elm.text.1 elm.text.2";
9663       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
9664       data.item: "flips" "elm.flip.content";
9665       images {
9666          image: "00_list_bar_press_1x80.png" COMP;
9667       }
9668       parts {
9669          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
9670          GENLIST_PART_BG_IMAGE
9671          GENLIST_PART_BOTTOM_LINE
9672          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
9673          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
9674          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
9675          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
9676          part { name: "elm.icon.3";
9677             clip_to: "disclip";
9678             type: SWALLOW;
9679             scale: 1;
9680             description { state: "default" 0.0;
9681                min: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
9682                max: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
9683                fixed: 1 1;
9684                rel1 {
9685                   relative: 0.0 1.0;
9686                   to_x: "elm.padding.right";
9687                   to_y: "elm.padding.top";
9688                }
9689                rel2 {
9690                   relative: 0.0 1.0;
9691                   to_x: "elm.padding.right";
9692                   to_y: "elm.padding.bottom";
9693                }
9694                align: 1.0 0.5;
9695             }
9696             GENLIST_DESCRIPTION_FLIP_ENABLED
9697          }
9698          part { name: "elm.padding.icon3.left";
9699             clip_to: "disclip";
9700             type: RECT;
9701             scale: 1;
9702             description { state: "default" 0.0;
9703                min: GENLIST_PADDING_16_INC 0;
9704                fixed: 1 0;
9705                rel1.to_x: "elm.icon.3";
9706                rel2 {
9707                   relative: 0.0 1.0;
9708                   to_x: "elm.icon.3";
9709                }
9710                align: 1.0 0.0;
9711                visible: 0;
9712             }
9713          }
9714          part { name: "elm.text.2";
9715             clip_to: "disclip";
9716             type: TEXT;
9717             mouse_events: 0;
9718             scale: 1;
9719             description { state: "default" 0.0;
9720                min: 0 GENLIST_SIZE_48_INC;
9721                fixed: 1 1;
9722                rel1 {
9723                   relative: 1.0 0.0;
9724                   to_x: "elm.padding.icon2.right";
9725                   to_y: "elm.padding.bottom";
9726                }
9727                rel2 {
9728                   relative: 0.0 0.0;
9729                   to_x: "elm.padding.icon3.left";
9730                   to_y: "elm.padding.bottom";
9731                }
9732                align: 0.0 1.0;
9733                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
9734                text {
9735                   font: "SLP:style=Medium";
9736                   size: GENLIST_FONT_32_INC;
9737                   min: 0 1;
9738                   align: 0.0 0.5;
9739                   text_class: "slp_medium";
9740                }
9741             }
9742             description { state: "selected" 0.0;
9743                inherit: "default" 0.0;
9744                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
9745             }
9746             GENLIST_DESCRIPTION_FLIP_ENABLED
9747          }
9748          part { name: "elm.icon.2";
9749             clip_to: "disclip";
9750             type: SWALLOW;
9751             scale: 1;
9752             description { state: "default" 0.0;
9753                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
9754                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
9755                fixed: 1 1;
9756                rel1 {
9757                   relative: 1.0 0.0;
9758                   to_x: "elm.padding.left";
9759                   to_y: "elm.text.2";
9760                }
9761                rel2 {
9762                   relative: 1.0 0.0;
9763                   to_x: "elm.padding.left";
9764                   to_y: "elm.padding.bottom";
9765                }
9766                align: 0.0 0.5;
9767             }
9768             GENLIST_DESCRIPTION_FLIP_ENABLED
9769          }
9770          part { name: "elm.padding.icon2.right";
9771             clip_to: "disclip";
9772             type: RECT;
9773             scale: 1;
9774             description { state: "default" 0.0;
9775                min: GENLIST_PADDING_16_INC 0;
9776                fixed: 1 0;
9777                rel1 {
9778                   relative: 1.0 0.0;
9779                   to_x: "elm.icon.2";
9780                }
9781                rel2.to_x: "elm.icon.2";
9782                align: 0.0 0.0;
9783                visible: 0;
9784             }
9785          }
9786          part { name: "elm.text.1";
9787             clip_to: "disclip";
9788             type: TEXT;
9789             mouse_events: 0;
9790             scale: 1;
9791             description { state: "default" 0.0;
9792                min: 0 0;
9793                max: GENLIST_SIZE_576_INC 0;
9794                fixed: 1 0;
9795                rel1 {
9796                   relative: 1.0 1.0;
9797                   to_x: "elm.padding.left";
9798                   to_y: "elm.padding.top";
9799                }
9800                rel2 {
9801                   relative: 1.0 0.0;
9802                   to_x: "elm.padding.left";
9803                   to_y: "elm.text.2";
9804                }
9805                align: 0.0 0.5;
9806                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
9807                text {
9808                   font: "SLP:style=Roman";
9809                   size: GENLIST_FONT_44_INC;
9810                   min: 1 1;
9811                   align: 0.0 0.5;
9812                   text_class: "list_item";
9813                }
9814             }
9815             description { state: "selected" 0.0;
9816                inherit: "default" 0.0;
9817                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
9818             }
9819             GENLIST_DESCRIPTION_FLIP_ENABLED
9820          }
9821
9822          part { name: "elm.padding.icon1.left";
9823             type: RECT;
9824             scale: 1;
9825             description { state: "default" 0.0;
9826                min: GENLIST_PADDING_16_INC 0;
9827                fixed: 1 0;
9828                rel1 {
9829                   relative: 1.0 0.0;
9830                   to_x: "elm.text.1";
9831                }
9832                rel2.to_x: "elm.text.1";
9833                align: 0.0 0.0;
9834                visible: 0;
9835             }
9836          }
9837          part { name: "elm.icon.1";
9838             clip_to: "disclip";
9839             type: SWALLOW;
9840             scale: 1;
9841             description { state: "default" 0.0;
9842                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
9843                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
9844                fixed: 1 1;
9845                rel1 {
9846                   relative: 1.0 1.0;
9847                   to_x: "elm.padding.icon1.left";
9848                   to_y: "elm.padding.top";
9849                }
9850                rel2 {
9851                   relative: 1.0 0.0;
9852                   to_x: "elm.padding.icon1.left";
9853                   to_y: "elm.text.2";
9854                }
9855                align: 0.0 0.5;
9856             }
9857             GENLIST_DESCRIPTION_FLIP_ENABLED
9858          }
9859          GENLIST_PART_FLIP
9860          GENLIST_PART_DISCLIP
9861       }
9862       programs {
9863          // signal: elm,state,%s,active
9864          //   a "check" item named %s went active
9865          // signal: elm,state,%s,passive
9866          //   a "check" item named %s went passive
9867          // default is passive
9868          program { name: "go_active";
9869             signal: "elm,state,selected";
9870             source: "elm";
9871             action: STATE_SET "selected" 0.0;
9872             target: "bg_image";
9873             target: "elm.text.1";
9874             target: "elm.text.2";
9875             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
9876          }
9877          program { name: "go_passive";
9878             signal: "elm,state,unselected";
9879             source: "elm";
9880             action: STATE_SET "default" 0.0;
9881             target: "bg_image";
9882             target: "elm.text.1";
9883             target: "elm.text.2";
9884             transition: LINEAR 0.1;
9885          }
9886          program { name: "go_disabled";
9887             signal: "elm,state,disabled";
9888             source: "elm";
9889             action: STATE_SET "disabled" 0.0;
9890             target: "disclip";
9891          }
9892          program { name: "go_enabled";
9893             signal: "elm,state,enabled";
9894             source: "elm";
9895             action: STATE_SET "default" 0.0;
9896             target: "disclip";
9897          }
9898          GENLIST_PROGRAM_FLIP_2TEXT_3ICON
9899          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
9900       }
9901    }
9902
9903 // 3.2.29
9904    group { name: "elm/genlist/item/2text.1icon.5/default";
9905       alias: "elm/genlist/item_odd/2text.1icon.5/default";
9906       alias: "elm/genlist/item_compress/2text.1icon.5/default";
9907       alias: "elm/genlist/item_compress_odd/2text.1icon.5/default";
9908       data.item: "stacking" "above";
9909       data.item: "selectraise" "on";
9910       data.item: "texts" "elm.text.1 elm.text.2";
9911       data.item: "contents" "elm.icon";
9912       data.item: "flips" "elm.flip.content";
9913       images {
9914          image: "00_list_bar_press_1x80.png" COMP;
9915       }
9916       parts {
9917          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
9918          GENLIST_PART_BG_IMAGE
9919          GENLIST_PART_BOTTOM_LINE
9920          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
9921          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
9922          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
9923          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
9924          part { name: "elm.icon";
9925             clip_to: "disclip";
9926             type: SWALLOW;
9927             scale: 1;
9928             description { state: "default" 0.0;
9929                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
9930                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
9931                fixed: 1 1;
9932                rel1 {
9933                   relative: 0.0 1.0;
9934                   to_x: "elm.padding.right";
9935                   to_y: "elm.padding.top";
9936                }
9937                rel2 {
9938                   relative: 0.0 0.0;
9939                   to_x: "elm.padding.right";
9940                   to_y: "elm.padding.bottom";
9941                }
9942                align: 1.0 0.5;
9943             }
9944             GENLIST_DESCRIPTION_FLIP_ENABLED
9945          }
9946          part { name: "elm.padding.icon.left";
9947             clip_to: "disclip";
9948             type: RECT;
9949             scale: 1;
9950             description { state: "default" 0.0;
9951                min: GENLIST_PADDING_16_INC 0;
9952                fixed: 1 0;
9953                rel1.to_x: "elm.icon";
9954                rel2 {
9955                   relative: 0.0 1.0;
9956                   to_x: "elm.icon";
9957                }
9958                align: 1.0 0.0;
9959                visible: 0;
9960             }
9961          }
9962          part { name: "elm.text.1";
9963             clip_to: "disclip";
9964             type: TEXT;
9965             mouse_events: 0;
9966             scale: 1;
9967             description { state: "default" 0.0;
9968                min: 0 GENLIST_SIZE_61_INC;
9969                fixed: 0 1;
9970                rel1 {
9971                   relative: 1.0 0.0;
9972                   to_x: "elm.padding.left";
9973                   to_y: "elm.padding.bottom";
9974                }
9975                rel2 {
9976                   relative: 0.0 0.0;
9977                   to_x: "elm.padding.icon.left";
9978                   to_y: "elm.padding.bottom";
9979                }
9980                align: 0.0 1.0;
9981                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
9982                text {
9983                   font: "SLP:style=Roman";
9984                   size: GENLIST_FONT_44_INC;
9985                   min: 0 1;
9986                   align: 0.0 0.5;
9987                   text_class: "slp_roman";
9988                }
9989             }
9990             description { state: "selected" 0.0;
9991                inherit: "default" 0.0;
9992                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
9993             }
9994             GENLIST_DESCRIPTION_FLIP_ENABLED
9995          }
9996          part { name: "elm.text.2";
9997             clip_to: "disclip";
9998             type: TEXT;
9999             mouse_events: 0;
10000             scale: 1;
10001             description { state: "default" 0.0;
10002                rel1 {
10003                   relative: 1.0 1.0;
10004                   to_x: "elm.padding.left";
10005                   to_y: "elm.padding.top";
10006                }
10007                rel2 {
10008                   relative: 0.0 0.0;
10009                   to_x: "elm.padding.icon.left";
10010                   to_y: "elm.text.1";
10011                }
10012                align: 0.0 1.0;
10013                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
10014                text {
10015                   font: "SLP:style=Medium";
10016                   size: GENLIST_FONT_32_INC;
10017                   min: 0 1;
10018                   align: 0.0 0.5;
10019                   text_class: "list_item";
10020                }
10021             }
10022             description { state: "selected" 0.0;
10023                inherit: "default" 0.0;
10024                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
10025             }
10026             GENLIST_DESCRIPTION_FLIP_ENABLED
10027          }
10028          GENLIST_PART_FLIP
10029          GENLIST_PART_DISCLIP
10030       }
10031       programs {
10032          // signal: elm,state,%s,active
10033          //   a "check" item named %s went active
10034          // signal: elm,state,%s,passive
10035          //   a "check" item named %s went passive
10036          // default is passive
10037          program { name: "go_active";
10038             signal: "elm,state,selected";
10039             source: "elm";
10040             action: STATE_SET "selected" 0.0;
10041             target: "bg_image";
10042             target: "elm.text.1";
10043             target: "elm.text.2";
10044             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
10045          }
10046          program { name: "go_passive";
10047             signal: "elm,state,unselected";
10048             source: "elm";
10049             action: STATE_SET "default" 0.0;
10050             target: "bg_image";
10051             target: "elm.text.1";
10052             target: "elm.text.2";
10053             transition: LINEAR 0.1;
10054          }
10055          program { name: "go_disabled";
10056             signal: "elm,state,disabled";
10057             source: "elm";
10058             action: STATE_SET "disabled" 0.0;
10059             target: "disclip";
10060          }
10061          program { name: "go_enabled";
10062             signal: "elm,state,enabled";
10063             source: "elm";
10064             action: STATE_SET "default" 0.0;
10065             target: "disclip";
10066          }
10067          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
10068          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
10069       }
10070    }
10071
10072 // 3.2.30
10073    group { name: "elm/genlist/item/1text.3icon.3/default";
10074       alias: "elm/genlist/item_odd/1text.3icon.3/default";
10075       alias: "elm/genlist/item_compress/1text.3icon.3/default";
10076       alias: "elm/genlist/item_compress_odd/1text.3icon.3/default";
10077       data.item: "stacking" "above";
10078       data.item: "selectraise" "on";
10079       data.item: "texts" "elm.text.1";
10080       data.item: "contents" "elm.icon.1 elm.icon.2 elm.swallow.progress";
10081       data.item: "flips" "elm.flip.content";
10082       images {
10083          image: "00_list_bar_press_1x80.png" COMP;
10084       }
10085       parts {
10086          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
10087          GENLIST_PART_BG_IMAGE
10088          GENLIST_PART_BOTTOM_LINE
10089          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
10090          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
10091          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
10092          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
10093          part { name: "elm.icon.1";
10094             clip_to: "disclip";
10095             type: SWALLOW;
10096             scale: 1;
10097             description { state: "default" 0.0;
10098                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10099                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10100                fixed: 1 1;
10101                rel1 {
10102                   relative: 1.0 1.0;
10103                   to_x: "elm.padding.left";
10104                   to_y: "elm.padding.top";
10105                }
10106                rel2 {
10107                   relative: 1.0 0.0;
10108                   to_x: "elm.padding.left";
10109                   to_y: "elm.padding.bottom";
10110                }
10111                align: 0.0 0.5;
10112             }
10113             GENLIST_DESCRIPTION_FLIP_ENABLED
10114          }
10115          part { name: "elm.padding.icon1.right";
10116             clip_to: "disclip";
10117             type: RECT;
10118             scale: 1;
10119             description { state: "default" 0.0;
10120                min: GENLIST_PADDING_16_INC 0;
10121                fixed: 1 0;
10122                rel1 {
10123                   relative: 1.0 0.0;
10124                   to_x: "elm.icon.1";
10125                }
10126                rel2.to_x: "elm.icon.1";
10127                align: 0.0 0.0;
10128                visible: 0;
10129             }
10130          }
10131          part { name: "elm.icon.2";
10132             clip_to: "disclip";
10133             type: SWALLOW;
10134             scale: 1;
10135             description { state: "default" 0.0;
10136                fixed: 1 1;
10137                rel1 {
10138                   relative: 0.0 1.0;
10139                   to_x: "elm.padding.right";
10140                   to_y: "elm.padding.top";
10141                }
10142                rel2 {
10143                   relative: 0.0 0.0;
10144                   to_x: "elm.padding.right";
10145                   to_y: "elm.padding.bottom";
10146                }
10147                align: 1.0 0.5;
10148             }
10149             GENLIST_DESCRIPTION_FLIP_ENABLED
10150          }
10151          part { name: "elm.padding.icon2.left";
10152             clip_to: "disclip";
10153             type: RECT;
10154             scale: 1;
10155             description { state: "default" 0.0;
10156                min: GENLIST_PADDING_16_INC 0;
10157                fixed: 1 0;
10158                rel1.to_x: "elm.icon.2";
10159                rel2 {
10160                   relative: 0.0 1.0;
10161                   to_x: "elm.icon.2";
10162                }
10163                align: 1.0 0.0;
10164                visible: 0;
10165             }
10166          }
10167          part { name: "elm.text.1";
10168             clip_to: "disclip";
10169             type: TEXT;
10170             mouse_events: 0;
10171             scale: 1;
10172             description { state: "default" 0.0;
10173                min: 0 GENLIST_SIZE_61_INC;
10174                fixed: 0 1;
10175                rel1 {
10176                   relative: 1.0 1.0;
10177                   to_x: "elm.padding.icon1.right";
10178                   to_y: "elm.padding.top";
10179                }
10180                rel2 {
10181                   relative: 0.0 1.0;
10182                   to_x: "elm.padding.icon2.left";
10183                   to_y: "elm.padding.top";
10184                }
10185                align: 0 0;
10186                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
10187                text {
10188                   font: "SLP:style=Roman";
10189                   size: GENLIST_FONT_44_INC;
10190                   min: 0 1;
10191                   align: 0.0 0.5;
10192                   text_class: "list_item";
10193                }
10194             }
10195             description { state: "selected" 0.0;
10196                inherit: "default" 0.0;
10197                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
10198             }
10199             GENLIST_DESCRIPTION_FLIP_ENABLED
10200          }
10201          part { name: "elm.swallow.progress";
10202             clip_to: "disclip";
10203             type: SWALLOW;
10204             scale: 1;
10205             description { state: "default" 0.0;
10206                fixed: 0 1;
10207                rel1 {
10208                   relative: 1.0 1.0;
10209                   to_x: "elm.padding.icon1.right";
10210                   to_y: "elm.text.1";
10211                }
10212                rel2 {
10213                   relative: 0.0 1.0;
10214                   to_x: "elm.padding.icon2.left";
10215                   to_y: "elm.text.1";
10216                }
10217                align: 0.5 0.0;
10218             }
10219             GENLIST_DESCRIPTION_FLIP_ENABLED
10220          }
10221          GENLIST_PART_FLIP
10222          GENLIST_PART_DISCLIP
10223       }
10224       programs {
10225          // signal: elm,state,%s,active
10226          //   a "check" item named %s went active
10227          // signal: elm,state,%s,passive
10228          //   a "check" item named %s went passive
10229          // default is passive
10230          program { name: "go_active";
10231             signal: "elm,state,selected";
10232             source: "elm";
10233             action: STATE_SET "selected" 0.0;
10234             target: "bg_image";
10235             target: "elm.text.1";
10236             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
10237          }
10238          program { name: "go_passive";
10239             signal: "elm,state,unselected";
10240             source: "elm";
10241             action: STATE_SET "default" 0.0;
10242             target: "bg_image";
10243             target: "elm.text.1";
10244             transition: LINEAR 0.1;
10245          }
10246          program { name: "go_disabled";
10247             signal: "elm,state,disabled";
10248             source: "elm";
10249             action: STATE_SET "disabled" 0.0;
10250             target: "disclip";
10251          }
10252          program { name: "go_enabled";
10253             signal: "elm,state,enabled";
10254             source: "elm";
10255             action: STATE_SET "default" 0.0;
10256             target: "disclip";
10257          }
10258          program { name: "flip_enabled";
10259             signal: "elm,state,flip,enabled";
10260             source: "elm";
10261             action: STATE_SET "flip_enabled" 0.0;
10262             target: "elm.text.1";
10263             target: "elm.icon.1";
10264             target: "elm.icon.2";
10265             target: "elm.swallow.progress";
10266             target: "elm.flip.content";
10267          }
10268          program { name: "flip_disabled";
10269             signal: "elm,state,flip,disabled";
10270             source: "elm";
10271             action: STATE_SET "default" 0.0;
10272             target: "elm.text.1";
10273             target: "elm.icon.1";
10274             target: "elm.icon.2";
10275             target: "elm.swallow.progress";
10276             target: "elm.flip.content";
10277          }
10278          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
10279       }
10280    }
10281
10282 // 3.2.30
10283    group { name: "elm/genlist/item/3text.3icon/default";
10284       alias: "elm/genlist/item_odd/3text.3icon/default";
10285       alias: "elm/genlist/item_compress/3text.3icon/default";
10286       alias: "elm/genlist/item_compress_odd/3text.3icon/default";
10287       data.item: "stacking" "above";
10288       data.item: "selectraise" "on";
10289       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
10290       data.item: "contents" "elm.icon.1 elm.icon.2 elm.swallow.progress";
10291       data.item: "flips" "elm.flip.content";
10292       images {
10293          image: "00_list_bar_press_1x80.png" COMP;
10294       }
10295       parts {
10296          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
10297          GENLIST_PART_BG_IMAGE
10298          GENLIST_PART_BOTTOM_LINE
10299          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
10300          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
10301          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
10302          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
10303          part { name: "elm.icon.1";
10304             clip_to: "disclip";
10305             type: SWALLOW;
10306             scale: 1;
10307             description { state: "default" 0.0;
10308                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10309                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10310                fixed: 1 1;
10311                rel1 {
10312                   relative: 1.0 1.0;
10313                   to_x: "elm.padding.left";
10314                   to_y: "elm.padding.top";
10315                }
10316                rel2 {
10317                   relative: 1.0 0.0;
10318                   to_x: "elm.padding.left";
10319                   to_y: "elm.padding.bottom";
10320                }
10321                align: 0.0 0.5;
10322             }
10323             GENLIST_DESCRIPTION_FLIP_ENABLED
10324          }
10325          part { name: "elm.padding.icon1.right";
10326             clip_to: "disclip";
10327             type: RECT;
10328             scale: 1;
10329             description { state: "default" 0.0;
10330                min: GENLIST_PADDING_16_INC 0;
10331                fixed: 1 0;
10332                rel1 {
10333                   relative: 1.0 0.0;
10334                   to_x: "elm.icon.1";
10335                }
10336                rel2.to_x: "elm.icon.1";
10337                align: 0.0 0.0;
10338                visible: 0;
10339             }
10340          }
10341          part { name: "elm.icon.2";
10342             clip_to: "disclip";
10343             type: SWALLOW;
10344             scale: 1;
10345             description { state: "default" 0.0;
10346                fixed: 1 1;
10347                rel1 {
10348                   relative: 0.0 1.0;
10349                   to_x: "elm.padding.right";
10350                   to_y: "elm.padding.top";
10351                }
10352                rel2 {
10353                   relative: 0.0 0.0;
10354                   to_x: "elm.padding.right";
10355                   to_y: "elm.padding.bottom";
10356                }
10357                align: 1.0 0.5;
10358             }
10359             GENLIST_DESCRIPTION_FLIP_ENABLED
10360          }
10361          part { name: "elm.padding.icon2.left";
10362             clip_to: "disclip";
10363             type: RECT;
10364             scale: 1;
10365             description { state: "default" 0.0;
10366                min: GENLIST_PADDING_16_INC 0;
10367                fixed: 1 0;
10368                rel1.to_x: "elm.icon.2";
10369                rel2 {
10370                   relative: 0.0 1.0;
10371                   to_x: "elm.icon.2";
10372                }
10373                align: 1.0 0.0;
10374                visible: 0;
10375             }
10376          }
10377          part { name: "elm.text.1";
10378             clip_to: "disclip";
10379             type: TEXT;
10380             mouse_events: 0;
10381             scale: 1;
10382             description { state: "default" 0.0;
10383                min: 0 GENLIST_SIZE_61_INC;
10384                fixed: 0 1;
10385                rel1 {
10386                   relative: 1.0 0.0;
10387                   to_x: "elm.padding.icon1.right";
10388                   to_y: "elm.padding.top";
10389                }
10390                rel2 {
10391                   relative: 0.0 0.0;
10392                   to_x: "elm.padding.icon2.left";
10393                   to_y: "elm.padding.top";
10394                }
10395                align: 0 0;
10396                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
10397                text {
10398                   font: "SLP:style=Roman";
10399                   size: GENLIST_FONT_44_INC;
10400                   min: 0 1;
10401                   align: 0.0 0.5;
10402                   text_class: "list_item";
10403                }
10404             }
10405             description { state: "selected" 0.0;
10406                inherit: "default" 0.0;
10407                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
10408             }
10409             GENLIST_DESCRIPTION_FLIP_ENABLED
10410          }
10411          part { name: "elm.swallow.progress";
10412             clip_to: "disclip";
10413             type: SWALLOW;
10414             scale: 1;
10415             description { state: "default" 0.0;
10416                fixed: 0 1;
10417                rel1 {
10418                   relative: 1.0 1.0;
10419                   to_x: "elm.padding.icon1.right";
10420                   to_y: "elm.text.1";
10421                }
10422                rel2 {
10423                   relative: 0.0 0.0;
10424                   to_x: "elm.padding.icon2.left";
10425                   to_y: "elm.text.2";
10426                }
10427                align: 0.5 0.5;
10428             }
10429             GENLIST_DESCRIPTION_FLIP_ENABLED
10430          }
10431          part { name: "elm.text.2";
10432             clip_to: "disclip";
10433             type: TEXT;
10434             mouse_events: 0;
10435             scale: 1;
10436             description { state: "default" 0.0;
10437                min: 0 GENLIST_SIZE_48_INC;
10438                fixed: 0 1;
10439                rel1 {
10440                   relative: 1.0 1.0;
10441                   to_x: "elm.padding.icon1.right";
10442                   to_y: "elm.padding.bottom";
10443                }
10444                rel2 {
10445                   relative: 0.0 1.0;
10446                   to_x: "elm.padding.icon2.left";
10447                   to_y: "elm.padding.bottom";
10448                }
10449                align: 0 1;
10450                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
10451                text {
10452                   font: "SLP:style=Roman";
10453                   size: GENLIST_FONT_32_INC;
10454                   min: 0 1;
10455                   align: 0.0 0.5;
10456                   text_class: "slp_roman";
10457                }
10458             }
10459             description { state: "selected" 0.0;
10460                inherit: "default" 0.0;
10461                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
10462             }
10463             GENLIST_DESCRIPTION_FLIP_ENABLED
10464          }
10465          part { name: "elm.text.3";
10466             clip_to: "disclip";
10467             type: TEXT;
10468             mouse_events: 0;
10469             scale: 1;
10470             description { state: "default" 0.0;
10471                min: 0 GENLIST_SIZE_48_INC;
10472                fixed: 0 1;
10473                rel1 {
10474                   relative: 1.0 1.0;
10475                   to_x: "elm.padding.icon1.right";
10476                   to_y: "elm.padding.bottom";
10477                }
10478                rel2 {
10479                   relative: 0.0 1.0;
10480                   to_x: "elm.padding.icon2.left";
10481                   to_y: "elm.padding.bottom";
10482                }
10483                align: 1 1;
10484                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
10485                text {
10486                   font: "SLP:style=Roman";
10487                   size: GENLIST_FONT_32_INC;
10488                   min: 0 1;
10489                   align: 1.0 0.5;
10490                   text_class: "slp_roman";
10491                }
10492             }
10493             description { state: "selected" 0.0;
10494                inherit: "default" 0.0;
10495                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
10496             }
10497             GENLIST_DESCRIPTION_FLIP_ENABLED
10498          }
10499          GENLIST_PART_FLIP
10500          GENLIST_PART_DISCLIP
10501       }
10502       programs {
10503          // signal: elm,state,%s,active
10504          //   a "check" item named %s went active
10505          // signal: elm,state,%s,passive
10506          //   a "check" item named %s went passive
10507          // default is passive
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.1";
10514             target: "elm.text.2";
10515             target: "elm.text.3";
10516             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
10517          }
10518          program { name: "go_passive";
10519             signal: "elm,state,unselected";
10520             source: "elm";
10521             action: STATE_SET "default" 0.0;
10522             target: "bg_image";
10523             target: "elm.text.1";
10524             target: "elm.text.2";
10525             target: "elm.text.3";
10526             transition: LINEAR 0.1;
10527          }
10528          program { name: "go_disabled";
10529             signal: "elm,state,disabled";
10530             source: "elm";
10531             action: STATE_SET "disabled" 0.0;
10532             target: "disclip";
10533          }
10534          program { name: "go_enabled";
10535             signal: "elm,state,enabled";
10536             source: "elm";
10537             action: STATE_SET "default" 0.0;
10538             target: "disclip";
10539          }
10540          program { name: "flip_enabled";
10541             signal: "elm,state,flip,enabled";
10542             source: "elm";
10543             action: STATE_SET "flip_enabled" 0.0;
10544             target: "elm.text.1";
10545             target: "elm.text.2";
10546             target: "elm.text.3";
10547             target: "elm.icon.1";
10548             target: "elm.icon.2";
10549             target: "elm.swallow.progress";
10550             target: "elm.flip.content";
10551          }
10552          program { name: "flip_disabled";
10553             signal: "elm,state,flip,disabled";
10554             source: "elm";
10555             action: STATE_SET "default" 0.0;
10556             target: "elm.text.1";
10557             target: "elm.text.2";
10558             target: "elm.text.3";
10559             target: "elm.icon.1";
10560             target: "elm.icon.2";
10561             target: "elm.swallow.progress";
10562             target: "elm.flip.content";
10563          }
10564          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
10565       }
10566    }
10567
10568 // 3.2.31
10569    group { name: "elm/genlist/item/2text.2icon.8/default";
10570       alias: "elm/genlist/item_odd/2text.2icon.8/default";
10571       alias: "elm/genlist/item_compress/2text.2icon.8/default";
10572       alias: "elm/genlist/item_compress_odd/2text.2icon.8/default";
10573       data.item: "stacking" "above";
10574       data.item: "selectraise" "on";
10575       data.item: "texts" "elm.text.1 elm.text.2";
10576       data.item: "contents" "elm.icon.1 elm.icon.2";
10577       data.item: "flips" "elm.flip.content";
10578       images {
10579          image: "00_list_bar_press_1x80.png" COMP;
10580       }
10581       parts {
10582          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
10583          GENLIST_PART_BG_IMAGE
10584          GENLIST_PART_BOTTOM_LINE
10585          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
10586          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
10587          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
10588          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
10589          part { name: "elm.icon.1";
10590             clip_to: "disclip";
10591             type: SWALLOW;
10592             scale: 1;
10593             description { state: "default" 0.0;
10594                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10595                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10596                fixed: 1 1;
10597                rel1 {
10598                   relative: 1.0 1.0;
10599                   to_x: "elm.padding.left";
10600                   to_y: "elm.padding.top";
10601                }
10602                rel2 {
10603                   relative: 1.0 0.0;
10604                   to_x: "elm.padding.left";
10605                   to_y: "elm.padding.bottom";
10606                }
10607                align: 0.0 0.5;
10608             }
10609             GENLIST_DESCRIPTION_FLIP_ENABLED
10610          }
10611          part { name: "elm.padding.icon1.right";
10612             clip_to: "disclip";
10613             type: RECT;
10614             scale: 1;
10615             description { state: "default" 0.0;
10616                min: GENLIST_PADDING_16_INC 0;
10617                fixed: 1 0;
10618                rel1 {
10619                   relative: 1.0 0.0;
10620                   to_x: "elm.icon.1";
10621                }
10622                rel2.to_x: "elm.icon.1";
10623                align: 0.0 0.0;
10624                visible: 0;
10625             }
10626          }
10627          part { name: "elm.icon.2";
10628             clip_to: "disclip";
10629             type: SWALLOW;
10630             scale: 1;
10631             description { state: "default" 0.0;
10632                fixed: 1 1;
10633                rel1 {
10634                   relative: 0.0 1.0;
10635                   to_x: "elm.padding.right";
10636                   to_y: "elm.padding.top";
10637                }
10638                rel2 {
10639                   relative: 0.0 0.0;
10640                   to_x: "elm.padding.right";
10641                   to_y: "elm.padding.bottom";
10642                }
10643                align: 1.0 0.5;
10644             }
10645             GENLIST_DESCRIPTION_FLIP_ENABLED
10646          }
10647          part { name: "elm.padding.icon2.left";
10648             clip_to: "disclip";
10649             type: RECT;
10650             scale: 1;
10651             description { state: "default" 0.0;
10652                min: GENLIST_PADDING_16_INC 0;
10653                fixed: 1 0;
10654                rel1.to_x: "elm.icon.2";
10655                rel2 {
10656                   relative: 0.0 1.0;
10657                   to_x: "elm.icon.2";
10658                }
10659                align: 1.0 0.0;
10660                visible: 0;
10661             }
10662          }
10663          part { name: "elm.text.1";
10664             clip_to: "disclip";
10665             type: TEXT;
10666             mouse_events: 0;
10667             scale: 1;
10668             description { state: "default" 0.0;
10669                min: 0 GENLIST_SIZE_61_INC;
10670                fixed: 0 1;
10671                rel1 {
10672                   relative: 1.0 1.0;
10673                   to_x: "elm.padding.icon1.right";
10674                   to_y: "elm.padding.top";
10675                }
10676                rel2 {
10677                   relative: 0.0 1.0;
10678                   to_x: "elm.padding.icon2.left";
10679                   to_y: "elm.padding.top";
10680                }
10681                align: 0.0 0.0;
10682                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
10683                text {
10684                   font: "SLP:style=Roman";
10685                   size: GENLIST_FONT_44_INC;
10686                   min: 0 1;
10687                   align: 0.0 0.5;
10688                   text_class: "list_item";
10689                }
10690             }
10691             description { state: "selected" 0.0;
10692                inherit: "default" 0.0;
10693                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
10694             }
10695             GENLIST_DESCRIPTION_FLIP_ENABLED
10696          }
10697          part { name: "elm.text.2";
10698             clip_to: "disclip";
10699             type: TEXT;
10700             mouse_events: 0;
10701             scale: 1;
10702             description { state: "default" 0.0;
10703                rel1 {
10704                   relative: 1.0 1.0;
10705                   to_x: "elm.padding.icon1.right";
10706                   to_y: "elm.text.1";
10707                }
10708                rel2 {
10709                   relative: 0.0 0.0;
10710                   to_x: "elm.padding.icon2.left";
10711                   to_y: "elm.padding.bottom";
10712                }
10713                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
10714                text {
10715                   font: "SLP:style=Medium";
10716                   size: GENLIST_FONT_32_INC;
10717                   min: 0 1;
10718                   align: 0.0 0.5;
10719                   text_class: "slp_medium";
10720                }
10721             }
10722             description { state: "selected" 0.0;
10723                inherit: "default" 0.0;
10724                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
10725             }
10726             GENLIST_DESCRIPTION_FLIP_ENABLED
10727          }
10728          GENLIST_PART_FLIP
10729          GENLIST_PART_DISCLIP
10730       }
10731       programs {
10732          // signal: elm,state,%s,active
10733          //   a "check" item named %s went active
10734          // signal: elm,state,%s,passive
10735          //   a "check" item named %s went passive
10736          // default is passive
10737          program { name: "go_active";
10738             signal: "elm,state,selected";
10739             source: "elm";
10740             action: STATE_SET "selected" 0.0;
10741             target: "bg_image";
10742             target: "elm.text.1";
10743             target: "elm.text.2";
10744             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
10745          }
10746          program { name: "go_passive";
10747             signal: "elm,state,unselected";
10748             source: "elm";
10749             action: STATE_SET "default" 0.0;
10750             target: "bg_image";
10751             target: "elm.text.1";
10752             target: "elm.text.2";
10753             transition: LINEAR 0.1;
10754          }
10755          program { name: "go_disabled";
10756             signal: "elm,state,disabled";
10757             source: "elm";
10758             action: STATE_SET "disabled" 0.0;
10759             target: "disclip";
10760          }
10761          program { name: "go_enabled";
10762             signal: "elm,state,enabled";
10763             source: "elm";
10764             action: STATE_SET "default" 0.0;
10765             target: "disclip";
10766          }
10767          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
10768          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
10769       }
10770    }
10771
10772    group { name: "elm/genlist/item_compress/2text.2icon.8.tb/default";
10773       inherit: "elm/genlist/item/2text.2icon.8/default";
10774       parts {
10775          part { name: "elm.text.1";
10776             clip_to: "disclip";
10777             type: TEXTBLOCK;
10778             mouse_events: 0;
10779             scale: 1;
10780             description { state: "default" 0.0;
10781                min: 0 GENLIST_SIZE_61_INC;
10782                fixed: 0 1;
10783                rel1 {
10784                   relative: 1.0 1.0;
10785                   to_x: "elm.padding.icon1.right";
10786                   to_y: "elm.padding.top";
10787                }
10788                rel2 {
10789                   relative: 0.0 1.0;
10790                   to_x: "elm.padding.icon2.left";
10791                   to_y: "elm.padding.top";
10792                }
10793                align: 0.0 0.0;
10794                text {
10795                   style: "genlist_default_textblock_style";
10796                   size: GENLIST_FONT_44_INC;
10797                   min: 0 1;
10798                   align: 0.0 0.5;
10799                   text_class: "slp_roman";
10800                }
10801             }
10802             description { state: "selected" 0.0;
10803                inherit: "default" 0.0;
10804                text.style: "genlist_default_textblock_selected_style";
10805             }
10806             GENLIST_DESCRIPTION_FLIP_ENABLED
10807          }
10808       }
10809    }
10810
10811 // 3.2.33
10812    group { name: "elm/genlist/item/1text.2icon.5/default";
10813       alias: "elm/genlist/item_odd/1text.2icon.5/default";
10814       alias: "elm/genlist/item_compress/1text.2icon.5/default";
10815       alias: "elm/genlist/item_compress_odd/1text.2icon.5/default";
10816       data.item: "stacking" "above";
10817       data.item: "selectraise" "on";
10818       data.item: "texts" "elm.text.1";
10819       data.item: "contents" "elm.icon.1 elm.swallow.progress";
10820       data.item: "flips" "elm.flip.content";
10821       images {
10822          image: "00_list_bar_press_1x80.png" COMP;
10823       }
10824       parts {
10825          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
10826          GENLIST_PART_BG_IMAGE
10827          GENLIST_PART_BOTTOM_LINE
10828          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
10829          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
10830          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
10831          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
10832          part { name: "elm.icon.1";
10833             clip_to: "disclip";
10834             type: SWALLOW;
10835             scale: 1;
10836             description { state: "default" 0.0;
10837                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10838                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
10839                fixed: 1 1;
10840                rel1 {
10841                   relative: 1.0 1.0;
10842                   to_x: "elm.padding.left";
10843                   to_y: "elm.padding.top";
10844                }
10845                rel2 {
10846                   relative: 1.0 0.0;
10847                   to_x: "elm.padding.left";
10848                   to_y: "elm.padding.bottom";
10849                }
10850                align: 0.0 0.5;
10851             }
10852             GENLIST_DESCRIPTION_FLIP_ENABLED
10853          }
10854          part { name: "elm.padding.icon1.right";
10855             clip_to: "disclip";
10856             type: RECT;
10857             scale: 1;
10858             description { state: "default" 0.0;
10859                min: GENLIST_PADDING_16_INC 0;
10860                fixed: 1 0;
10861                rel1 {
10862                   relative: 1.0 0.0;
10863                   to_x: "elm.icon.1";
10864                }
10865                rel2.to_x: "elm.icon.1";
10866                align: 0.0 0.0;
10867                visible: 0;
10868             }
10869          }
10870          part { name: "elm.text.1";
10871             clip_to: "disclip";
10872             type: TEXT;
10873             mouse_events: 0;
10874             scale: 1;
10875             description { state: "default" 0.0;
10876                min: 0 GENLIST_SIZE_61_INC;
10877                fixed: 0 1;
10878                rel1 {
10879                   relative: 1.0 1.0;
10880                   to_x: "elm.padding.icon1.right";
10881                   to_y: "elm.padding.top";
10882                }
10883                rel2 {
10884                   relative: 0.0 1.0;
10885                   to_x: "elm.padding.right";
10886                   to_y: "elm.padding.top";
10887                }
10888                align: 0 0;
10889                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
10890                text {
10891                   font: "SLP:style=Roman";
10892                   size: GENLIST_FONT_44_INC;
10893                   min: 0 1;
10894                   align: 0.0 0.5;
10895                   text_class: "list_item";
10896                }
10897             }
10898             description { state: "selected" 0.0;
10899                inherit: "default" 0.0;
10900                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
10901             }
10902             GENLIST_DESCRIPTION_FLIP_ENABLED
10903          }
10904          part { name: "elm.swallow.progress";
10905             clip_to: "disclip";
10906             type: SWALLOW;
10907             scale: 1;
10908             description { state: "default" 0.0;
10909                fixed: 0 1;
10910                rel1 {
10911                   relative: 1.0 1.0;
10912                   to_x: "elm.padding.icon1.right";
10913                   to_y: "elm.text.1";
10914                }
10915                rel2 {
10916                   relative: 0.0 1.0;
10917                   to_x: "elm.padding.right";
10918                   to_y: "elm.text.1";
10919                }
10920                align: 0.5 0.0;
10921             }
10922             GENLIST_DESCRIPTION_FLIP_ENABLED
10923          }
10924          GENLIST_PART_FLIP
10925          GENLIST_PART_DISCLIP
10926       }
10927       programs {
10928          // signal: elm,state,%s,active
10929          //   a "check" item named %s went active
10930          // signal: elm,state,%s,passive
10931          //   a "check" item named %s went passive
10932          // default is passive
10933          program { name: "go_active";
10934             signal: "elm,state,selected";
10935             source: "elm";
10936             action: STATE_SET "selected" 0.0;
10937             target: "bg_image";
10938             target: "elm.text.1";
10939             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
10940          }
10941          program { name: "go_passive";
10942             signal: "elm,state,unselected";
10943             source: "elm";
10944             action: STATE_SET "default" 0.0;
10945             target: "bg_image";
10946             target: "elm.text.1";
10947             transition: LINEAR 0.1;
10948          }
10949          program { name: "go_disabled";
10950             signal: "elm,state,disabled";
10951             source: "elm";
10952             action: STATE_SET "disabled" 0.0;
10953             target: "disclip";
10954          }
10955          program { name: "go_enabled";
10956             signal: "elm,state,enabled";
10957             source: "elm";
10958             action: STATE_SET "default" 0.0;
10959             target: "disclip";
10960          }
10961          program { name: "flip_enabled";
10962             signal: "elm,state,flip,enabled";
10963             source: "elm";
10964             action: STATE_SET "flip_enabled" 0.0;
10965             target: "elm.text.1";
10966             target: "elm.icon.1";
10967             target: "elm.swallow.progress";
10968             target: "elm.flip.content";
10969          }
10970          program { name: "flip_disabled";
10971             signal: "elm,state,flip,disabled";
10972             source: "elm";
10973             action: STATE_SET "default" 0.0;
10974             target: "elm.text.1";
10975             target: "elm.icon.1";
10976             target: "elm.swallow.progress";
10977             target: "elm.flip.content";
10978          }
10979          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
10980       }
10981    }
10982
10983 // 3.2.33
10984    group { name: "elm/genlist/item/2text.3icon.4/default";
10985       alias: "elm/genlist/item_odd/2text.3icon.4/default";
10986       alias: "elm/genlist/item_compress/2text.3icon.4/default";
10987       alias: "elm/genlist/item_compress_odd/2text.3icon.4/default";
10988       data.item: "stacking" "above";
10989       data.item: "selectraise" "on";
10990       data.item: "texts" "elm.text.1 elm.text.2";
10991       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
10992       data.item: "flips" "elm.flip.content";
10993       images {
10994          image: "00_list_bar_press_1x80.png" COMP;
10995       }
10996       parts {
10997          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
10998          GENLIST_PART_BG_IMAGE
10999          GENLIST_PART_BOTTOM_LINE
11000          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
11001          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
11002          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
11003          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
11004          part { name: "elm.icon.1";
11005             clip_to: "disclip";
11006             type: SWALLOW;
11007             scale: 1;
11008             description { state: "default" 0.0;
11009                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
11010                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
11011                fixed: 1 1;
11012                rel1 {
11013                   relative: 1.0 1.0;
11014                   to_x: "elm.padding.left";
11015                   to_y: "elm.padding.top";
11016                }
11017                rel2 {
11018                   relative: 1.0 0.0;
11019                   to_x: "elm.padding.left";
11020                   to_y: "elm.padding.bottom";
11021                }
11022                align: 0.0 0.5;
11023             }
11024             GENLIST_DESCRIPTION_FLIP_ENABLED
11025          }
11026          part { name: "elm.padding.icon1.right";
11027             clip_to: "disclip";
11028             type: RECT;
11029             scale: 1;
11030             description { state: "default" 0.0;
11031                min: GENLIST_SIZE_16_INC 0;
11032                fixed: 1 0;
11033                rel1 {
11034                   relative: 1.0 0.0;
11035                   to_x: "elm.icon.1";
11036                }
11037                rel2.to_x: "elm.icon.1";
11038                align: 0.0 0.0;
11039                visible: 0;
11040             }
11041          }
11042          part { name: "elm.icon.2";
11043             clip_to: "disclip";
11044             type: SWALLOW;
11045             scale: 1;
11046             description { state: "default" 0.0;
11047                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
11048                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
11049                fixed: 1 1;
11050                rel1 {
11051                   relative: 1.0 1.0;
11052                   to_x: "elm.padding.icon1.right";
11053                   to_y: "elm.padding.top";
11054                }
11055                rel2 {
11056                   relative: 1.0 0.0;
11057                   to_x: "elm.padding.icon1.right";
11058                   to_y: "elm.padding.bottom";
11059                }
11060                align: 0.0 0.5;
11061             }
11062             GENLIST_DESCRIPTION_FLIP_ENABLED
11063          }
11064          part { name: "elm.padding.icon2.right";
11065             clip_to: "disclip";
11066             type: RECT;
11067             scale: 1;
11068             description { state: "default" 0.0;
11069                min: GENLIST_SIZE_16_INC 0;
11070                fixed: 1 0;
11071                rel1 {
11072                   relative: 1.0 0.0;
11073                   to_x: "elm.icon.2";
11074                }
11075                rel2.to_x: "elm.icon.2";
11076                align: 0.0 0.0;
11077                visible: 0;
11078             }
11079          }
11080          part { name: "elm.icon.3";
11081             clip_to: "disclip";
11082             type: SWALLOW;
11083             scale: 1;
11084             description { state: "default" 0.0;
11085                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
11086                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
11087                fixed: 1 1;
11088                rel1 {
11089                   relative: 0.0 1.0;
11090                   to_x: "elm.padding.right";
11091                   to_y: "elm.padding.top";
11092                }
11093                rel2 {
11094                   relative: 0.0 0.0;
11095                   to_x: "elm.padding.right";
11096                   to_y: "elm.padding.bottom";
11097                }
11098                align: 1.0 0.5;
11099             }
11100             GENLIST_DESCRIPTION_FLIP_ENABLED
11101          }
11102          part { name: "elm.padding.icon3.left";
11103             clip_to: "disclip";
11104             type: RECT;
11105             scale: 1;
11106             description { state: "default" 0.0;
11107                min: GENLIST_SIZE_16_INC 0;
11108                fixed: 1 0;
11109                rel1.to_x: "elm.icon.3";
11110                rel2 {
11111                   relative: 0.0 1.0;
11112                   to_x: "elm.icon.3";
11113                }
11114                align: 1.0 0.0;
11115                visible: 0;
11116             }
11117          }
11118          part { name: "elm.text.1";
11119             clip_to: "disclip";
11120             type: TEXT;
11121             mouse_events: 0;
11122             scale: 1;
11123             description { state: "default" 0.0;
11124                min: 0 GENLIST_SIZE_61_INC;
11125                fixed: 0 1;
11126                rel1 {
11127                   relative: 1.0 1.0;
11128                   to_x: "elm.padding.icon2.right";
11129                   to_y: "elm.padding.top";
11130                }
11131                rel2 {
11132                   relative: 0.0 1.0;
11133                   to_x: "elm.padding.icon3.left";
11134                   to_y: "elm.padding.top";
11135                }
11136                align: 0.0 0.0;
11137                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
11138                text {
11139                   font: "SLP:style=Roman";
11140                   size: GENLIST_FONT_44_INC;
11141                   min: 0 1;
11142                   align: 0.0 0.5;
11143                   text_class: "list_item";
11144                }
11145             }
11146             description { state: "selected" 0.0;
11147                inherit: "default" 0.0;
11148                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
11149             }
11150             GENLIST_DESCRIPTION_FLIP_ENABLED
11151          }
11152          part { name: "elm.text.2";
11153             clip_to: "disclip";
11154             type: TEXT;
11155             mouse_events: 0;
11156             scale: 1;
11157             description { state: "default" 0.0;
11158                rel1 {
11159                   relative: 1.0 1.0;
11160                   to_x: "elm.padding.icon2.right";
11161                   to_y: "elm.text.1";
11162                }
11163                rel2 {
11164                   relative: 0.0 0.0;
11165                   to_x: "elm.padding.icon3.left";
11166                   to_y: "elm.padding.bottom";
11167                }
11168                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
11169                text {
11170                   font: "SLP:style=Medium";
11171                   size: GENLIST_FONT_32_INC;
11172                   min: 0 1;
11173                   align: 0.0 0.5;
11174                   text_class: "slp_medium";
11175                }
11176             }
11177             description { state: "selected" 0.0;
11178                inherit: "default" 0.0;
11179                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
11180             }
11181             GENLIST_DESCRIPTION_FLIP_ENABLED
11182          }
11183          GENLIST_PART_FLIP
11184          GENLIST_PART_DISCLIP
11185       }
11186       programs {
11187          // signal: elm,state,%s,active
11188          //   a "check" item named %s went active
11189          // signal: elm,state,%s,passive
11190          //   a "check" item named %s went passive
11191          // default is passive
11192          program { name: "go_active";
11193             signal: "elm,state,selected";
11194             source: "elm";
11195             action: STATE_SET "selected" 0.0;
11196             target: "bg_image";
11197             target: "elm.text.1";
11198             target: "elm.text.2";
11199             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
11200          }
11201          program { name: "go_passive";
11202             signal: "elm,state,unselected";
11203             source: "elm";
11204             action: STATE_SET "default" 0.0;
11205             target: "bg_image";
11206             target: "elm.text.1";
11207             target: "elm.text.2";
11208             transition: LINEAR 0.1;
11209          }
11210          program { name: "go_disabled";
11211             signal: "elm,state,disabled";
11212             source: "elm";
11213             action: STATE_SET "disabled" 0.0;
11214             target: "disclip";
11215          }
11216          program { name: "go_enabled";
11217             signal: "elm,state,enabled";
11218             source: "elm";
11219             action: STATE_SET "default" 0.0;
11220             target: "disclip";
11221          }
11222          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
11223          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
11224       }
11225    }
11226
11227 // 3.2.34
11228    group { name: "elm/genlist/item/2text.2icon.9/default";
11229       alias: "elm/genlist/item_odd/2text.2icon.9/default";
11230       alias: "elm/genlist/item_compress/2text.2icon.9/default";
11231       alias: "elm/genlist/item_compress_odd/2text.2icon.9/default";
11232       data.item: "stacking" "above";
11233       data.item: "selectraise" "on";
11234       data.item: "texts" "elm.text.1 elm.text.2";
11235       data.item: "contents" "elm.icon.1 elm.icon.2";
11236       data.item: "flips" "elm.flip.content";
11237       images {
11238          image: "00_list_bar_press_1x80.png" COMP;
11239       }
11240       parts {
11241          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
11242          GENLIST_PART_BG_IMAGE
11243          GENLIST_PART_BOTTOM_LINE
11244          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
11245          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
11246          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
11247          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
11248          part { name: "elm.icon.2";
11249             clip_to: "disclip";
11250             type: SWALLOW;
11251             scale: 1;
11252             description { state: "default" 0.0;
11253                fixed: 1 1;
11254                rel1 {
11255                   relative: 0.0 1.0;
11256                   to_x: "elm.padding.right";
11257                   to_y: "elm.padding.top";
11258                }
11259                rel2 {
11260                   relative: 0.0 0.0;
11261                   to_x: "elm.padding.right";
11262                   to_y: "elm.padding.bottom";
11263                }
11264                align: 1.0 0.5;
11265             }
11266             GENLIST_DESCRIPTION_FLIP_ENABLED
11267          }
11268          part { name: "elm.padding.icon2.left";
11269             clip_to: "disclip";
11270             type: RECT;
11271             scale: 1;
11272             description { state: "default" 0.0;
11273                min: GENLIST_SIZE_16_INC 0;
11274                fixed: 1 0;
11275                rel1.to_x: "elm.icon.2";
11276                rel2 {
11277                   relative: 0.0 1.0;
11278                   to_x: "elm.icon.2";
11279                }
11280                align: 1.0 0.0;
11281                visible: 0;
11282             }
11283          }
11284          part { name: "elm.text.2";
11285             clip_to: "disclip";
11286             type: TEXT;
11287             mouse_events: 0;
11288             scale: 1;
11289             description { state: "default" 0.0;
11290                min: 0 GENLIST_SIZE_48_INC;
11291                fixed: 0 1;
11292                rel1 {
11293                   relative: 1.0 0.0;
11294                   to_x: "elm.padding.left";
11295                   to_y: "elm.padding.bottom";
11296                }
11297                rel2 {
11298                   relative: 0.0 0.0;
11299                   to_x: "elm.padding.icon2.left";
11300                   to_y: "elm.padding.bottom";
11301                }
11302                align: 0.0 1.0;
11303                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
11304                text {
11305                   font: "SLP:style=Medium";
11306                   size: GENLIST_FONT_32_INC;
11307                   min: 0 1;
11308                   align: 0.0 0.5;
11309                   text_class: "slp_medium";
11310                }
11311             }
11312             description { state: "selected" 0.0;
11313                inherit: "default" 0.0;
11314                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
11315             }
11316             GENLIST_DESCRIPTION_FLIP_ENABLED
11317          }
11318          part { name: "elm.text.1";
11319             clip_to: "disclip";
11320             type: TEXT;
11321             mouse_events: 0;
11322             scale: 1;
11323             description { state: "default" 0.0;
11324                min: 0 0;
11325                max: GENLIST_SIZE_560_INC 0;
11326                fixed: 1 0;
11327                rel1 {
11328                   relative: 1.0 1.0;
11329                   to_x: "elm.padding.left";
11330                   to_y: "elm.padding.top";
11331                }
11332                rel2 {
11333                   relative: 1.0 0.0;
11334                   to_x: "elm.padding.left";
11335                   to_y: "elm.text.2";
11336                }
11337                align: 0.0 0.5;
11338                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
11339                text {
11340                   font: "SLP:style=Roman";
11341                   size: GENLIST_FONT_44_INC;
11342                   min: 1 1;
11343                   align: 0.0 0.5;
11344                   text_class: "list_item";
11345                }
11346             }
11347             description { state: "selected" 0.0;
11348                inherit: "default" 0.0;
11349                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
11350             }
11351             GENLIST_DESCRIPTION_FLIP_ENABLED
11352          }
11353          part { name: "elm.padding.icon1.left";
11354             clip_to: "disclip";
11355             type: RECT;
11356             scale: 1;
11357             description { state: "default" 0.0;
11358                min: GENLIST_SIZE_16_INC 0;
11359                fixed: 1 0;
11360                rel1 {
11361                   relative: 1.0 0.0;
11362                   to_x: "elm.text.1";
11363                }
11364                rel2.to_x: "elm.text.1";
11365                align: 0.0 0.0;
11366                visible: 0;
11367             }
11368          }
11369          part { name: "elm.icon.1";
11370             clip_to: "disclip";
11371             type: SWALLOW;
11372             scale: 1;
11373             description { state: "default" 0.0;
11374                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11375                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11376                fixed: 1 1;
11377                rel1 {
11378                   relative: 1.0 1.0;
11379                   to_x: "elm.padding.icon1.left";
11380                   to_y: "elm.padding.top";
11381                }
11382                rel2 {
11383                   relative: 1.0 0.0;
11384                   to_x: "elm.padding.icon1.left";
11385                   to_y: "elm.text.2";
11386                }
11387                align: 0.0 0.5;
11388             }
11389             GENLIST_DESCRIPTION_FLIP_ENABLED
11390          }
11391          GENLIST_PART_FLIP
11392          GENLIST_PART_DISCLIP
11393       }
11394       programs {
11395          // signal: elm,state,%s,active
11396          //   a "check" item named %s went active
11397          // signal: elm,state,%s,passive
11398          //   a "check" item named %s went passive
11399          // default is passive
11400          program { name: "go_active";
11401             signal: "elm,state,selected";
11402             source: "elm";
11403             action: STATE_SET "selected" 0.0;
11404             target: "bg_image";
11405             target: "elm.text.1";
11406             target: "elm.text.2";
11407             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
11408          }
11409          program { name: "go_passive";
11410             signal: "elm,state,unselected";
11411             source: "elm";
11412             action: STATE_SET "default" 0.0;
11413             target: "bg_image";
11414             target: "elm.text.1";
11415             target: "elm.text.2";
11416             transition: LINEAR 0.1;
11417          }
11418          program { name: "go_disabled";
11419             signal: "elm,state,disabled";
11420             source: "elm";
11421             action: STATE_SET "disabled" 0.0;
11422             target: "disclip";
11423          }
11424          program { name: "go_enabled";
11425             signal: "elm,state,enabled";
11426             source: "elm";
11427             action: STATE_SET "default" 0.0;
11428             target: "disclip";
11429          }
11430          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
11431          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
11432       }
11433    }
11434
11435 // 10.1 Help_dialogue group
11436    group { name: "elm/genlist/item_compress/multiline/1text/default";
11437       alias: "elm/genlist/item_compress_odd/multiline/1text/default";
11438       data.item: "stacking" "above";
11439       data.item: "selectraise" "on";
11440       data.item: "texts" "elm.text.1";
11441       parts {
11442          part { name: "base";
11443             type: RECT;
11444             repeat_events: 1;
11445             description { state: "default" 0.0;
11446                color: GENLIST_PART_BG_COLOR_INC;
11447             }
11448          }
11449          GENLIST_PART_BG_IMAGE
11450          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_22_INC )
11451          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_22_INC )
11452          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
11453          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_32_INC )
11454          part { name: "elm.text.1";
11455             clip_to: "disclip";
11456             type: TEXTBLOCK;
11457             mouse_events: 0;
11458             scale: 1;
11459             description { state: "default" 0.0;
11460                rel1 {
11461                   relative: 1.0 1.0;
11462                   to_x: "elm.padding.left";
11463                   to_y: "elm.padding.top";
11464                }
11465                rel2 {
11466                   relative: 0.0 0.0;
11467                   to_x: "elm.padding.right";
11468                   to_y: "elm.padding.bottom";
11469                }
11470                text {
11471                   style: "genlist_textblock_help_style";
11472                   min: 0 1;
11473                   align: 0.0 0.5;
11474                }
11475             }
11476          }
11477          GENLIST_PART_DISCLIP
11478       }
11479       programs {
11480          program { name: "go_disabled";
11481             signal: "elm,state,disabled";
11482             source: "elm";
11483             action: STATE_SET "disabled" 0.0;
11484             target: "disclip";
11485          }
11486          program { name: "go_enabled";
11487             signal: "elm,state,enabled";
11488             source: "elm";
11489             action: STATE_SET "default" 0.0;
11490             target: "disclip";
11491          }
11492       }
11493    }
11494
11495 // 3.4.1
11496    group { name: "elm/genlist/item_compress/multiline/2text/default";
11497       alias: "elm/genlist/item_compress_odd/multiline/2text/default";
11498       alias: "elm/genlist/item_compress/multiline.2text/default";
11499       alias: "elm/genlist/item_compress_odd/multiline.2text/default";
11500       data.item: "stacking" "above";
11501       data.item: "selectraise" "on";
11502       data.item: "texts" "elm.text.1 elm.text.2";
11503       parts {
11504          part { name: "base";
11505             type: RECT;
11506             repeat_events: 1;
11507             description { state: "default" 0.0;
11508                color: GENLIST_PART_BG_COLOR_INC;
11509             }
11510          }
11511          GENLIST_PART_BG_IMAGE
11512          GENLIST_PART_BOTTOM_LINE
11513          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
11514          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
11515          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
11516          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
11517          part { name: "elm.text.1";
11518             clip_to: "disclip";
11519             type: TEXT;
11520             mouse_events: 0;
11521             scale: 1;
11522             description { state: "default" 0.0;
11523                min: 0 GENLIST_SIZE_61_INC;
11524                fixed: 0 1;
11525                rel1 {
11526                   relative: 1.0 1.0;
11527                   to_x: "elm.padding.left";
11528                   to_y: "elm.padding.top";
11529                }
11530                rel2 {
11531                   relative: 0.0 1.0;
11532                   to_x: "elm.padding.right";
11533                   to_y: "elm.padding.top";
11534                }
11535                align: 0.0 0.0;
11536                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
11537                text {
11538                   font: "SLP:style=Roman";
11539                   size: GENLIST_FONT_42_INC;
11540                   min: 0 1;
11541                   align: 0.0 0.5;
11542                   text_class: "list_item";
11543                }
11544             }
11545             description { state: "selected" 0.0;
11546                inherit: "default" 0.0;
11547                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
11548             }
11549          }
11550          part { name: "elm.text.2";
11551             clip_to: "disclip";
11552             type: TEXTBLOCK;
11553             mouse_events: 0;
11554             scale: 1;
11555             description { state: "default" 0.0;
11556                rel1 {
11557                   relative: 1.0 1.0;
11558                   to_x: "elm.padding.left";
11559                   to_y: "elm.text.1";
11560                }
11561                rel2 {
11562                   relative: 0.0 0.0;
11563                   to_x: "elm.padding.right";
11564                   to_y: "elm.padding.bottom";
11565                }
11566                text {
11567                   style: "genlist_textblock_flexible_sub_style";
11568                   min: 0 1;
11569                   align: 0.0 0.5;
11570                }
11571             }
11572             description { state: "selected" 0.0;
11573                inherit: "default" 0.0;
11574                text.style: "genlist_textblock_flexible_sub_selected_style";
11575             }
11576          }
11577          GENLIST_PART_DISCLIP
11578       }
11579       programs {
11580          // signal: elm,state,%s,active
11581          //   a "check" item named %s went active
11582          // signal: elm,state,%s,passive
11583          //   a "check" item named %s went passive
11584          // default is passive
11585          program { name: "go_active";
11586             signal: "elm,state,selected";
11587             source: "elm";
11588             action: STATE_SET "selected" 0.0;
11589             target: "bg_image";
11590             target: "elm.text.1";
11591             target: "elm.text.2";
11592             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
11593          }
11594          program { name: "go_passive";
11595             signal: "elm,state,unselected";
11596             source: "elm";
11597             action: STATE_SET "default" 0.0;
11598             target: "bg_image";
11599             target: "elm.text.1";
11600             target: "elm.text.2";
11601             transition: LINEAR 0.1;
11602          }
11603          program { name: "go_disabled";
11604             signal: "elm,state,disabled";
11605             source: "elm";
11606             action: STATE_SET "disabled" 0.0;
11607             target: "disclip";
11608          }
11609          program { name: "go_enabled";
11610             signal: "elm,state,enabled";
11611             source: "elm";
11612             action: STATE_SET "default" 0.0;
11613             target: "disclip";
11614          }
11615          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
11616       }
11617    }
11618
11619 // 3.4.2
11620    group { name: "elm/genlist/item/multiline/3text.2icon/default";
11621       alias: "elm/genlist/item_odd/multiline/3text.2icon/default";
11622       alias: "elm/genlist/item_compress/multiline/3text.2icon/default";
11623       alias: "elm/genlist/item_compress_odd/multiline/3text.2icon/default";
11624       data.item: "stacking" "above";
11625       data.item: "selectraise" "on";
11626       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
11627       data.item: "contents" "elm.icon.1 elm.icon.2";
11628       data.item: "flips" "elm.flip.content";
11629       images {
11630          image: "00_list_bar_press_1x80.png" COMP;
11631       }
11632       parts {
11633          GENLIST_PART_BASE( GENLIST_HEIGHT_165_INC )
11634          GENLIST_PART_BG_IMAGE
11635          GENLIST_PART_BOTTOM_LINE
11636          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
11637          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
11638          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
11639          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
11640          part { name: "elm.icon.2";
11641             clip_to: "disclip";
11642             type: SWALLOW;
11643             scale: 1;
11644             description { state: "default" 0.0;
11645                min: GENLIST_SIZE_176_INC GENLIST_SIZE_176_INC;
11646                max: GENLIST_SIZE_176_INC GENLIST_SIZE_176_INC;
11647                fixed: 1 1;
11648                rel1 {
11649                   relative: 0.0 1.0;
11650                   to_x: "elm.padding.right";
11651                   to_y: "elm.padding.top";
11652                }
11653                rel2 {
11654                   relative: 0.0 0.0;
11655                   to_x: "elm.padding.right";
11656                   to_y: "elm.padding.bottom";
11657                }
11658                align: 1.0 0.5;
11659             }
11660             GENLIST_DESCRIPTION_FLIP_ENABLED
11661          }
11662          part { name: "elm.padding.icon2.left";
11663             clip_to: "disclip";
11664             type: RECT;
11665             scale: 1;
11666             description { state: "default" 0.0;
11667                min: GENLIST_PADDING_16_INC 0;
11668                fixed: 1 0;
11669                rel1.to_x: "elm.icon.2";
11670                rel2 {
11671                   relative: 0.0 1.0;
11672                   to_x: "elm.icon.2";
11673                }
11674                align: 1.0 0.0;
11675                visible: 0;
11676             }
11677          }
11678          part { name: "elm.text.1.rect";
11679             clip_to: "disclip";
11680             type: RECT;
11681             scale: 1;
11682             description { state: "default" 0.0;
11683                min: 0 GENLIST_SIZE_48_INC;
11684                fixed: 0 1;
11685                rel1 {
11686                   relative: 1.0 1.0;
11687                   to_x: "elm.padding.left";
11688                   to_y: "elm.padding.top";
11689                }
11690                rel2 {
11691                   relative: 0.0 1.0;
11692                   to_x: "elm.padding.icon2.left";
11693                   to_y: "elm.padding.top";
11694                }
11695                align: 0.0 0.0;
11696                visible: 0;
11697             }
11698          }
11699          part { name: "elm.text.1";
11700             clip_to: "disclip";
11701             type: TEXT;
11702             mouse_events: 0;
11703             scale: 1;
11704             description { state: "default" 0.0;
11705                fixed: 1 1;
11706                rel1.to: "elm.text.1.rect";
11707                rel2.to: "elm.text.1.rect";
11708                align: 0.0 0.0;
11709                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_UNREAD_COLOR_INC;
11710                text {
11711                   font: "SLP:style=Roman";
11712                   size: GENLIST_FONT_40_INC;
11713                   min: 0 1;
11714                   align: 0.0 0.5;
11715                   text_class: "list_item";
11716                }
11717             }
11718             description { state: "selected" 0.0;
11719                inherit: "default" 0.0;
11720                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
11721             }
11722             GENLIST_DESCRIPTION_FLIP_ENABLED
11723          }
11724          part { name: "elm.text.2";
11725             clip_to: "disclip";
11726             type: TEXT;
11727             mouse_events: 0;
11728             scale: 1;
11729             description { state: "default" 0.0;
11730                min: 0 GENLIST_SIZE_48_INC;
11731                fixed: 0 1;
11732                rel1 {
11733                   relative: 1.0 1.0;
11734                   to_x: "elm.padding.left";
11735                   to_y: "elm.text.1.rect";
11736                }
11737                rel2 {
11738                   relative: 0.0 1.0;
11739                   to_x: "elm.padding.icon2.left";
11740                   to_y: "elm.text.1.rect";
11741                }
11742                align: 0.0 0.0;
11743                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_UNREAD_COLOR_INC;
11744                text {
11745                   font: "SLP:style=Roman";
11746                   size: GENLIST_FONT_36_INC;
11747                   min: 0 1;
11748                   align: 0.0 0.5;
11749                   text_class: "slp_roman";
11750                }
11751             }
11752             description { state: "selected" 0.0;
11753                inherit: "default" 0.0;
11754                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
11755             }
11756             GENLIST_DESCRIPTION_FLIP_ENABLED
11757          }
11758          part { name: "elm.text.3";
11759             clip_to: "disclip";
11760             type: TEXT;
11761             mouse_events: 0;
11762             scale: 1;
11763             description { state: "default" 0.0;
11764                min: 0 GENLIST_SIZE_35_INC;
11765                fixed: 0 1;
11766                rel1 {
11767                   relative: 1.0 0.0;
11768                   to_x: "elm.padding.icon1.right";
11769                   to_y: "elm.padding.bottom";
11770                }
11771                rel2 {
11772                   relative: 0.0 0.0;
11773                   to_x: "elm.padding.icon2.left";
11774                   to_y: "elm.padding.bottom";
11775                }
11776                align: 0.0 1.0;
11777                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_3_COLOR_INC;
11778                text {
11779                   font: "SLP:style=Medium";
11780                   size: GENLIST_FONT_30_INC;
11781                   min: 0 1;
11782                   align: 0.0 0.5;
11783                   text_class: "slp_medium";
11784                }
11785             }
11786             description { state: "selected" 0.0;
11787                inherit: "default" 0.0;
11788                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_3_FOCUS_COLOR_INC;
11789             }
11790             GENLIST_DESCRIPTION_FLIP_ENABLED
11791          }
11792          part { name: "elm.icon.1";
11793             clip_to: "disclip";
11794             type: SWALLOW;
11795             scale: 1;
11796             description { state: "default" 0.0;
11797                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11798                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
11799                fixed: 1 1;
11800                rel1 {
11801                   relative: 1.0 1.0;
11802                   to_x: "elm.padding.left";
11803                   to_y: "elm.text.2";
11804                }
11805                rel2 {
11806                   relative: 1.0 0.0;
11807                   to_x: "elm.padding.left";
11808                   to_y: "elm.padding.bottom";
11809                }
11810                align: 0.0 0.5;
11811             }
11812             GENLIST_DESCRIPTION_FLIP_ENABLED
11813          }
11814          part { name: "elm.padding.icon1.right";
11815             clip_to: "disclip";
11816             type: RECT;
11817             scale: 1;
11818             description { state: "default" 0.0;
11819                min: GENLIST_PADDING_16_INC 0;
11820                fixed: 1 0;
11821                rel1 {
11822                   relative: 1.0 0.0;
11823                   to_x: "elm.icon.1";
11824                }
11825                rel2.to_x: "elm.icon.1";
11826                align: 0.0 0.0;
11827                visible: 0;
11828             }
11829          }
11830          GENLIST_PART_FLIP
11831          GENLIST_PART_DISCLIP
11832       }
11833       programs {
11834          // signal: elm,state,%s,active
11835          //   a "check" item named %s went active
11836          // signal: elm,state,%s,passive
11837          //   a "check" item named %s went passive
11838          // default is passive
11839          program { name: "go_active";
11840             signal: "elm,state,selected";
11841             source: "elm";
11842             action: STATE_SET "selected" 0.0;
11843             target: "bg_image";
11844             target: "elm.text.1";
11845             target: "elm.text.2";
11846             target: "elm.text.3";
11847             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
11848          }
11849          program { name: "go_passive";
11850             signal: "elm,state,unselected";
11851             source: "elm";
11852             action: STATE_SET "default" 0.0;
11853             target: "bg_image";
11854             target: "elm.text.1";
11855             target: "elm.text.2";
11856             target: "elm.text.3";
11857             transition: LINEAR 0.1;
11858          }
11859          program { name: "go_disabled";
11860             signal: "elm,state,disabled";
11861             source: "elm";
11862             action: STATE_SET "disabled" 0.0;
11863             target: "disclip";
11864          }
11865          program { name: "go_enabled";
11866             signal: "elm,state,enabled";
11867             source: "elm";
11868             action: STATE_SET "default" 0.0;
11869             target: "disclip";
11870          }
11871          GENLIST_PROGRAM_FLIP_3TEXT_2ICON
11872          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
11873       }
11874    }
11875
11876 // 3.4.2
11877    group { name: "elm/genlist/item/multiline/3text.2icon.2/default";
11878       alias: "elm/genlist/item_odd/multiline/3text.2icon.2/default";
11879       alias: "elm/genlist/item_compress/multiline/3text.2icon.2/default";
11880       alias: "elm/genlist/item_compress_odd/multiline/3text.2icon.2/default";
11881       data.item: "stacking" "above";
11882       data.item: "selectraise" "on";
11883       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
11884       data.item: "contents" "elm.icon.1 elm.icon.2";
11885       data.item: "flips" "elm.flip.content";
11886       images {
11887          image: "00_list_bar_press_1x80.png" COMP;
11888       }
11889       parts {
11890          GENLIST_PART_BASE( GENLIST_HEIGHT_165_INC )
11891          GENLIST_PART_BG_IMAGE
11892          GENLIST_PART_BOTTOM_LINE
11893          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
11894          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
11895          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
11896          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
11897          part { name: "elm.icon.2";
11898             clip_to: "disclip";
11899             type: SWALLOW;
11900             scale: 1;
11901             description { state: "default" 0.0;
11902                min: GENLIST_HEIGHT_164_INC GENLIST_HEIGHT_164_INC;
11903                max: GENLIST_HEIGHT_164_INC GENLIST_HEIGHT_164_INC;
11904                fixed: 1 1;
11905                rel1 {
11906                   relative: 0.0 1.0;
11907                   to_x: "elm.padding.right";
11908                   to_y: "elm.padding.top";
11909                }
11910                rel2 {
11911                   relative: 0.0 0.0;
11912                   to_x: "elm.padding.right";
11913                   to_y: "elm.padding.bottom";
11914                }
11915                align: 1.0 0.5;
11916             }
11917             GENLIST_DESCRIPTION_FLIP_ENABLED
11918          }
11919          part { name: "elm.padding.icon2.left";
11920             clip_to: "disclip";
11921             type: RECT;
11922             scale: 1;
11923             description { state: "default" 0.0;
11924                min: GENLIST_PADDING_16_INC 0;
11925                fixed: 1 0;
11926                rel1.to_x: "elm.icon.2";
11927                rel2 {
11928                   relative: 0.0 1.0;
11929                   to_x: "elm.icon.2";
11930                }
11931                align: 1.0 0.0;
11932                visible: 0;
11933             }
11934          }
11935          part { name: "elm.text.1.rect";
11936             clip_to: "disclip";
11937             type: RECT;
11938             scale: 1;
11939             description { state: "default" 0.0;
11940                min: 0 GENLIST_SIZE_48_INC;
11941                fixed: 0 1;
11942                rel1 {
11943                   relative: 1.0 1.0;
11944                   to_x: "elm.padding.left";
11945                   to_y: "elm.padding.top";
11946                }
11947                rel2 {
11948                   relative: 0.0 1.0;
11949                   to_x: "elm.padding.icon2.left";
11950                   to_y: "elm.padding.top";
11951                }
11952                align: 0.0 0.0;
11953                visible: 0;
11954             }
11955          }
11956          part { name: "elm.text.1";
11957             clip_to: "disclip";
11958             type: TEXT;
11959             mouse_events: 0;
11960             scale: 1;
11961             description { state: "default" 0.0;
11962                fixed: 1 1;
11963                rel1.to: "elm.text.1.rect";
11964                rel2.to: "elm.text.1.rect";
11965                align: 0.0 0.0;
11966                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_READ_COLOR_INC;
11967                text {
11968                   font: "SLP:style=Roman";
11969                   size: GENLIST_FONT_40_INC;
11970                   min: 0 1;
11971                   align: 0.0 0.5;
11972                   text_class: "list_item";
11973                }
11974             }
11975             description { state: "selected" 0.0;
11976                inherit: "default" 0.0;
11977                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
11978             }
11979             GENLIST_DESCRIPTION_FLIP_ENABLED
11980          }
11981          part { name: "elm.text.2";
11982             clip_to: "disclip";
11983             type: TEXT;
11984             mouse_events: 0;
11985             scale: 1;
11986             description { state: "default" 0.0;
11987                min: 0 GENLIST_SIZE_48_INC;
11988                fixed: 0 1;
11989                rel1 {
11990                   relative: 1.0 1.0;
11991                   to_x: "elm.padding.left";
11992                   to_y: "elm.text.1.rect";
11993                }
11994                rel2 {
11995                   relative: 0.0 1.0;
11996                   to_x: "elm.padding.icon2.left";
11997                   to_y: "elm.text.1.rect";
11998                }
11999                align: 0.0 0.0;
12000                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_2_COLOR_INC;
12001                text {
12002                   font: "SLP:style=Roman";
12003                   size: GENLIST_FONT_36_INC;
12004                   min: 0 1;
12005                   align: 0.0 0.5;
12006                   text_class: "slp_roman";
12007                }
12008             }
12009             description { state: "selected" 0.0;
12010                inherit: "default" 0.0;
12011                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12012             }
12013             GENLIST_DESCRIPTION_FLIP_ENABLED
12014          }
12015          part { name: "elm.text.3";
12016             clip_to: "disclip";
12017             type: TEXT;
12018             mouse_events: 0;
12019             scale: 1;
12020             description { state: "default" 0.0;
12021                min: 0 GENLIST_SIZE_35_INC;
12022                fixed: 0 1;
12023                rel1 {
12024                   relative: 1.0 0.0;
12025                   to_x: "elm.padding.icon1.right";
12026                   to_y: "elm.padding.bottom";
12027                }
12028                rel2 {
12029                   relative: 0.0 0.0;
12030                   to_x: "elm.padding.icon2.left";
12031                   to_y: "elm.padding.bottom";
12032                }
12033                align: 0.0 1.0;
12034                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_3_COLOR_INC;
12035                text {
12036                   font: "SLP:style=Medium";
12037                   size: GENLIST_FONT_30_INC;
12038                   min: 0 1;
12039                   align: 0.0 0.5;
12040                   text_class: "slp_medium";
12041                }
12042             }
12043             description { state: "selected" 0.0;
12044                inherit: "default" 0.0;
12045                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_3_FOCUS_COLOR_INC;
12046             }
12047             GENLIST_DESCRIPTION_FLIP_ENABLED
12048          }
12049          part { name: "elm.icon.1";
12050             clip_to: "disclip";
12051             type: SWALLOW;
12052             scale: 1;
12053             description { state: "default" 0.0;
12054                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12055                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12056                fixed: 1 1;
12057                rel1 {
12058                   relative: 1.0 1.0;
12059                   to_x: "elm.padding.left";
12060                   to_y: "elm.text.2";
12061                }
12062                rel2 {
12063                   relative: 1.0 0.0;
12064                   to_x: "elm.padding.left";
12065                   to_y: "elm.padding.bottom";
12066                }
12067                align: 0.0 0.5;
12068             }
12069             GENLIST_DESCRIPTION_FLIP_ENABLED
12070          }
12071          part { name: "elm.padding.icon1.right";
12072             clip_to: "disclip";
12073             type: RECT;
12074             scale: 1;
12075             description { state: "default" 0.0;
12076                min: GENLIST_PADDING_16_INC 0;
12077                fixed: 1 0;
12078                rel1 {
12079                   relative: 1.0 0.0;
12080                   to_x: "elm.icon.1";
12081                }
12082                rel2.to_x: "elm.icon.1";
12083                align: 0.0 0.0;
12084                visible: 0;
12085             }
12086          }
12087          GENLIST_PART_FLIP
12088          GENLIST_PART_DISCLIP
12089       }
12090       programs {
12091          // signal: elm,state,%s,active
12092          //   a "check" item named %s went active
12093          // signal: elm,state,%s,passive
12094          //   a "check" item named %s went passive
12095          // default is passive
12096          program { name: "go_active";
12097             signal: "elm,state,selected";
12098             source: "elm";
12099             action: STATE_SET "selected" 0.0;
12100             target: "bg_image";
12101             target: "elm.text.1";
12102             target: "elm.text.2";
12103             target: "elm.text.3";
12104             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
12105          }
12106          program { name: "go_passive";
12107             signal: "elm,state,unselected";
12108             source: "elm";
12109             action: STATE_SET "default" 0.0;
12110             target: "bg_image";
12111             target: "elm.text.1";
12112             target: "elm.text.2";
12113             target: "elm.text.3";
12114             transition: LINEAR 0.1;
12115          }
12116          program { name: "go_disabled";
12117             signal: "elm,state,disabled";
12118             source: "elm";
12119             action: STATE_SET "disabled" 0.0;
12120             target: "disclip";
12121          }
12122          program { name: "go_enabled";
12123             signal: "elm,state,enabled";
12124             source: "elm";
12125             action: STATE_SET "default" 0.0;
12126             target: "disclip";
12127          }
12128          GENLIST_PROGRAM_FLIP_3TEXT_2ICON
12129          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
12130       }
12131    }
12132
12133 // 3.4.3
12134    group { name: "elm/genlist/item/multiline/3text.1icon/default";
12135       alias: "elm/genlist/item_odd/multiline/3text.1icon/default";
12136       alias: "elm/genlist/item_compress/multiline/3text.1icon/default";
12137       alias: "elm/genlist/item_compress_odd/multiline/3text.1icon/default";
12138       data.item: "stacking" "above";
12139       data.item: "selectraise" "on";
12140       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
12141       data.item: "contents" "elm.icon";
12142       data.item: "flips" "elm.flip.content";
12143       images {
12144          image: "00_list_bar_press_1x80.png" COMP;
12145       }
12146       parts {
12147          GENLIST_PART_BASE( GENLIST_HEIGHT_165_INC )
12148          GENLIST_PART_BG_IMAGE
12149          GENLIST_PART_BOTTOM_LINE
12150          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
12151          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
12152          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
12153          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
12154          part { name: "elm.text.1.rect";
12155             clip_to: "disclip";
12156             type: RECT;
12157             scale: 1;
12158             description { state: "default" 0.0;
12159                min: 0 GENLIST_SIZE_48_INC;
12160                fixed: 0 1;
12161                rel1 {
12162                   relative: 1.0 1.0;
12163                   to_x: "elm.padding.left";
12164                   to_y: "elm.padding.top";
12165                }
12166                rel2 {
12167                   relative: 0.0 1.0;
12168                   to_x: "elm.padding.right";
12169                   to_y: "elm.padding.top";
12170                }
12171                align: 0.0 0.0;
12172                visible: 0;
12173             }
12174          }
12175          part { name: "elm.text.1";
12176             clip_to: "disclip";
12177             type: TEXT;
12178             mouse_events: 0;
12179             scale: 1;
12180             description { state: "default" 0.0;
12181                fixed: 1 1;
12182                rel1.to: "elm.text.1.rect";
12183                rel2.to: "elm.text.1.rect";
12184                align: 0.0 0.0;
12185                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_UNREAD_COLOR_INC;
12186                text {
12187                   font: "SLP:style=Roman";
12188                   size: GENLIST_FONT_40_INC;
12189                   min: 0 1;
12190                   align: 0.0 0.5;
12191                   text_class: "list_item";
12192                }
12193             }
12194             description { state: "selected" 0.0;
12195                inherit: "default" 0.0;
12196                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12197             }
12198             GENLIST_DESCRIPTION_FLIP_ENABLED
12199          }
12200          part { name: "elm.text.2";
12201             clip_to: "disclip";
12202             type: TEXT;
12203             mouse_events: 0;
12204             scale: 1;
12205             description { state: "default" 0.0;
12206                min: 0 GENLIST_SIZE_48_INC;
12207                fixed: 0 1;
12208                rel1 {
12209                   relative: 1.0 1.0;
12210                   to_x: "elm.padding.left";
12211                   to_y: "elm.text.1.rect";
12212                }
12213                rel2 {
12214                   relative: 0.0 1.0;
12215                   to_x: "elm.padding.right";
12216                   to_y: "elm.text.1.rect";
12217                }
12218                align: 0.0 0.0;
12219                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_UNREAD_COLOR_INC;
12220                text {
12221                   font: "SLP:style=Roman";
12222                   size: GENLIST_FONT_36_INC;
12223                   min: 0 1;
12224                   align: 0.0 0.5;
12225                   text_class: "slp_roman";
12226                }
12227             }
12228             description { state: "selected" 0.0;
12229                inherit: "default" 0.0;
12230                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12231             }
12232             GENLIST_DESCRIPTION_FLIP_ENABLED
12233          }
12234          part { name: "elm.text.3";
12235             clip_to: "disclip";
12236             type: TEXT;
12237             mouse_events: 0;
12238             scale: 1;
12239             description { state: "default" 0.0;
12240                min: 0 GENLIST_SIZE_35_INC;
12241                fixed: 0 1;
12242                rel1 {
12243                   relative: 1.0 0.0;
12244                   to_x: "elm.padding.icon.right";
12245                   to_y: "elm.padding.bottom";
12246                }
12247                rel2 {
12248                   relative: 0.0 0.0;
12249                   to_x: "elm.padding.right";
12250                   to_y: "elm.padding.bottom";
12251                }
12252                align: 0.0 1.0;
12253                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_3_COLOR_INC;
12254                text {
12255                   font: "SLP:style=Medium";
12256                   size: GENLIST_FONT_30_INC;
12257                   min: 0 1;
12258                   align: 0.0 0.5;
12259                   text_class: "slp_medium";
12260                }
12261             }
12262             description { state: "selected" 0.0;
12263                inherit: "default" 0.0;
12264                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_3_FOCUS_COLOR_INC;
12265             }
12266             GENLIST_DESCRIPTION_FLIP_ENABLED
12267          }
12268          part { name: "elm.icon";
12269             clip_to: "disclip";
12270             type: SWALLOW;
12271             scale: 1;
12272             description { state: "default" 0.0;
12273                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12274                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12275                fixed: 1 1;
12276                rel1 {
12277                   relative: 1.0 0.0;
12278                   to_x: "elm.padding.left";
12279                   to_y: "elm.text.3";
12280                }
12281                rel2 {
12282                   relative: 1.0 0.0;
12283                   to_x: "elm.padding.left";
12284                   to_y: "elm.padding.bottom";
12285                }
12286                align: 0.0 0.5;
12287             }
12288             GENLIST_DESCRIPTION_FLIP_ENABLED
12289          }
12290          part { name: "elm.padding.icon.right";
12291             clip_to: "disclip";
12292             type: RECT;
12293             scale: 1;
12294             description { state: "default" 0.0;
12295                min: GENLIST_PADDING_16_INC 0;
12296                fixed: 1 0;
12297                rel1 {
12298                   relative: 1.0 0.0;
12299                   to_x: "elm.icon";
12300                }
12301                rel2.to_x: "elm.icon";
12302                align: 0.0 0.0;
12303                visible: 0;
12304             }
12305          }
12306          GENLIST_PART_FLIP
12307          GENLIST_PART_DISCLIP
12308       }
12309       programs {
12310          // signal: elm,state,%s,active
12311          //   a "check" item named %s went active
12312          // signal: elm,state,%s,passive
12313          //   a "check" item named %s went passive
12314          // default is passive
12315          program { name: "go_active";
12316             signal: "elm,state,selected";
12317             source: "elm";
12318             action: STATE_SET "selected" 0.0;
12319             target: "bg_image";
12320             target: "elm.text.1";
12321             target: "elm.text.2";
12322             target: "elm.text.3";
12323             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
12324          }
12325          program { name: "go_passive";
12326             signal: "elm,state,unselected";
12327             source: "elm";
12328             action: STATE_SET "default" 0.0;
12329             target: "bg_image";
12330             target: "elm.text.1";
12331             target: "elm.text.2";
12332             target: "elm.text.3";
12333             transition: LINEAR 0.1;
12334          }
12335          program { name: "go_disabled";
12336             signal: "elm,state,disabled";
12337             source: "elm";
12338             action: STATE_SET "disabled" 0.0;
12339             target: "disclip";
12340          }
12341          program { name: "go_enabled";
12342             signal: "elm,state,enabled";
12343             source: "elm";
12344             action: STATE_SET "default" 0.0;
12345             target: "disclip";
12346          }
12347          GENLIST_PROGRAM_FLIP_3TEXT_1ICON
12348          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
12349       }
12350    }
12351
12352 // 3.4.3
12353    group { name: "elm/genlist/item/multiline/3text.1icon.2/default";
12354       alias: "elm/genlist/item_odd/multiline/3text.1icon.2/default";
12355       alias: "elm/genlist/item_compress/multiline/3text.1icon.2/default";
12356       alias: "elm/genlist/item_compress_odd/multiline/3text.1icon.2/default";
12357       data.item: "stacking" "above";
12358       data.item: "selectraise" "on";
12359       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
12360       data.item: "contents" "elm.icon";
12361       data.item: "flips" "elm.flip.content";
12362       images {
12363          image: "00_list_bar_press_1x80.png" COMP;
12364       }
12365       parts {
12366          GENLIST_PART_BASE( GENLIST_HEIGHT_165_INC )
12367          GENLIST_PART_BG_IMAGE
12368          GENLIST_PART_BOTTOM_LINE
12369          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
12370          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
12371          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
12372          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
12373          part { name: "elm.text.1.rect";
12374             clip_to: "disclip";
12375             type: RECT;
12376             scale: 1;
12377             description { state: "default" 0.0;
12378                min: 0 GENLIST_SIZE_48_INC;
12379                fixed: 0 1;
12380                rel1 {
12381                   relative: 1.0 1.0;
12382                   to_x: "elm.padding.left";
12383                   to_y: "elm.padding.top";
12384                }
12385                rel2 {
12386                   relative: 0.0 1.0;
12387                   to_x: "elm.padding.right";
12388                   to_y: "elm.padding.top";
12389                }
12390                align: 0.0 0.0;
12391                visible: 0;
12392             }
12393          }
12394          part { name: "elm.text.1";
12395             clip_to: "disclip";
12396             type: TEXT;
12397             mouse_events: 0;
12398             scale: 1;
12399             description { state: "default" 0.0;
12400                fixed: 1 1;
12401                rel1.to: "elm.text.1.rect";
12402                rel2.to: "elm.text.1.rect";
12403                align: 0.0 0.0;
12404                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_UNREAD_COLOR_INC;
12405                text {
12406                   font: "SLP:style=Roman";
12407                   size: GENLIST_FONT_40_INC;
12408                   min: 0 1;
12409                   align: 0.0 0.5;
12410                   text_class: "list_item";
12411                }
12412             }
12413             description { state: "selected" 0.0;
12414                inherit: "default" 0.0;
12415                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12416             }
12417             GENLIST_DESCRIPTION_FLIP_ENABLED
12418          }
12419          part { name: "elm.text.2";
12420             clip_to: "disclip";
12421             type: TEXT;
12422             mouse_events: 0;
12423             scale: 1;
12424             description { state: "default" 0.0;
12425                min: 0 GENLIST_SIZE_48_INC;
12426                fixed: 0 1;
12427                rel1 {
12428                   relative: 1.0 1.0;
12429                   to_x: "elm.padding.left";
12430                   to_y: "elm.text.1.rect";
12431                }
12432                rel2 {
12433                   relative: 0.0 1.0;
12434                   to_x: "elm.padding.right";
12435                   to_y: "elm.text.1.rect";
12436                }
12437                align: 0.0 0.0;
12438                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_2_COLOR_INC;
12439                text {
12440                   font: "SLP:style=Roman";
12441                   size: GENLIST_FONT_36_INC;
12442                   min: 0 1;
12443                   align: 0.0 0.5;
12444                   text_class: "slp_roman";
12445                }
12446             }
12447             description { state: "selected" 0.0;
12448                inherit: "default" 0.0;
12449                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12450             }
12451             GENLIST_DESCRIPTION_FLIP_ENABLED
12452          }
12453          part { name: "elm.text.3";
12454             clip_to: "disclip";
12455             type: TEXT;
12456             mouse_events: 0;
12457             scale: 1;
12458             description { state: "default" 0.0;
12459                min: 0 GENLIST_SIZE_35_INC;
12460                fixed: 0 1;
12461                rel1 {
12462                   relative: 1.0 0.0;
12463                   to_x: "elm.padding.icon.right";
12464                   to_y: "elm.padding.bottom";
12465                }
12466                rel2 {
12467                   relative: 0.0 0.0;
12468                   to_x: "elm.padding.right";
12469                   to_y: "elm.padding.bottom";
12470                }
12471                align: 0.0 1.0;
12472                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_3_COLOR_INC;
12473                text {
12474                   font: "SLP:style=Medium";
12475                   size: GENLIST_FONT_30_INC;
12476                   min: 0 1;
12477                   align: 0.0 0.5;
12478                   text_class: "slp_medium";
12479                }
12480             }
12481             description { state: "selected" 0.0;
12482                inherit: "default" 0.0;
12483                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_3_FOCUS_COLOR_INC;
12484             }
12485             GENLIST_DESCRIPTION_FLIP_ENABLED
12486          }
12487          part { name: "elm.icon";
12488             clip_to: "disclip";
12489             type: SWALLOW;
12490             scale: 1;
12491             description { state: "default" 0.0;
12492                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12493                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12494                fixed: 1 1;
12495                rel1 {
12496                   relative: 1.0 0.0;
12497                   to_x: "elm.padding.left";
12498                   to_y: "elm.text.3";
12499                }
12500                rel2 {
12501                   relative: 1.0 0.0;
12502                   to_x: "elm.padding.left";
12503                   to_y: "elm.padding.bottom";
12504                }
12505                align: 0.0 0.5;
12506             }
12507             GENLIST_DESCRIPTION_FLIP_ENABLED
12508          }
12509          part { name: "elm.padding.icon.right";
12510             clip_to: "disclip";
12511             type: RECT;
12512             scale: 1;
12513             description { state: "default" 0.0;
12514                min: GENLIST_PADDING_16_INC 0;
12515                fixed: 1 0;
12516                rel1 {
12517                   relative: 1.0 0.0;
12518                   to_x: "elm.icon";
12519                }
12520                rel2.to_x: "elm.icon";
12521                align: 0.0 0.0;
12522                visible: 0;
12523             }
12524          }
12525          GENLIST_PART_FLIP
12526          GENLIST_PART_DISCLIP
12527       }
12528       programs {
12529          // signal: elm,state,%s,active
12530          //   a "check" item named %s went active
12531          // signal: elm,state,%s,passive
12532          //   a "check" item named %s went passive
12533          // default is passive
12534          program { name: "go_active";
12535             signal: "elm,state,selected";
12536             source: "elm";
12537             action: STATE_SET "selected" 0.0;
12538             target: "bg_image";
12539             target: "elm.text.1";
12540             target: "elm.text.2";
12541             target: "elm.text.3";
12542             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
12543          }
12544          program { name: "go_passive";
12545             signal: "elm,state,unselected";
12546             source: "elm";
12547             action: STATE_SET "default" 0.0;
12548             target: "bg_image";
12549             target: "elm.text.1";
12550             target: "elm.text.2";
12551             target: "elm.text.3";
12552             transition: LINEAR 0.1;
12553          }
12554          program { name: "go_disabled";
12555             signal: "elm,state,disabled";
12556             source: "elm";
12557             action: STATE_SET "disabled" 0.0;
12558             target: "disclip";
12559          }
12560          program { name: "go_enabled";
12561             signal: "elm,state,enabled";
12562             source: "elm";
12563             action: STATE_SET "default" 0.0;
12564             target: "disclip";
12565          }
12566          GENLIST_PROGRAM_FLIP_3TEXT_1ICON
12567          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
12568       }
12569    }
12570
12571    // 2.2.3.11
12572    group { name: "elm/genlist/item/multiline/4text.4icon.1/default";
12573       alias: "elm/genlist/item_odd/multiline/4text.4icon.1/default";
12574       alias: "elm/genlist/item_compress/multiline/4text.4icon.1/default";
12575       alias: "elm/genlist/item_compress_odd/multiline/4text.4icon.1/default";
12576       data.item: "stacking" "above";
12577       data.item: "selectraise" "on";
12578       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
12579       data.item: "contents" "elm.icon.1 elm.icon.3 elm.icon.4";
12580       data.item: "flips" "elm.flip.content";
12581       images {
12582          image: "00_list_bar_press_1x80.png" COMP;
12583       }
12584       parts {
12585          GENLIST_PART_BASE( GENLIST_HEIGHT_161_INC )
12586          GENLIST_PART_BG_IMAGE
12587          GENLIST_PART_BOTTOM_LINE
12588          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_8_INC )
12589          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_8_INC )
12590          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
12591          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
12592
12593          part { name: "elm.icon.1";
12594             clip_to: "disclip";
12595             type: SWALLOW;
12596             scale: 1;
12597             description { state: "default" 0.0;
12598                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
12599                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
12600                fixed: 1 1;
12601                rel1 {
12602                   relative: 1.0 1.0;
12603                   to_x: "elm.padding.left";
12604                   to_y: "elm.padding.top";
12605                }
12606                rel2 {
12607                   relative: 1.0 0.0;
12608                   to_x: "elm.padding.left";
12609                   to_y: "elm.padding.bottom";
12610                }
12611                align: 0.0 0.5;
12612             }
12613             GENLIST_DESCRIPTION_FLIP_ENABLED
12614          }
12615          part { name: "elm.padding.icon1.right";
12616             clip_to: "disclip";
12617             type: RECT;
12618             scale: 1;
12619             description { state: "default" 0.0;
12620                min: GENLIST_PADDING_16_INC 0;
12621                fixed: 1 0;
12622                rel1 {
12623                   relative: 1.0 0.0;
12624                   to_x: "elm.icon.1";
12625                }
12626                rel2.to_x: "elm.icon.1";
12627                align: 0.0 0.0;
12628                visible: 0;
12629             }
12630          }
12631          part { name: "elm.icon.3";
12632             clip_to: "disclip";
12633             type: SWALLOW;
12634             scale: 1;
12635             description { state: "default" 0.0;
12636                min: GENLIST_SIZE_66_INC GENLIST_SIZE_60_INC;
12637                max: GENLIST_SIZE_66_INC GENLIST_SIZE_60_INC;
12638                fixed: 1 1;
12639                rel1 {
12640                   relative: 0.0 1.0;
12641                   to_x: "elm.padding.right";
12642                   to_y: "elm.padding.top";
12643                }
12644                rel2 {
12645                   relative: 0.0 0.0;
12646                   to_x: "elm.padding.right";
12647                   to_y: "elm.padding.bottom";
12648                }
12649                align: 1.0 0.0;
12650             }
12651             GENLIST_DESCRIPTION_FLIP_ENABLED
12652          }
12653          part { name: "elm.icon.3.left";
12654             clip_to: "disclip";
12655             type: RECT;
12656             scale: 1;
12657             description { state: "default" 0.0;
12658                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12659                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12660                fixed: 1 1;
12661                rel1 {
12662                   relative: 0.0 1.0;
12663                   to_x: "elm.icon.3";
12664                   to_y: "elm.padding.top";
12665                }
12666                rel2 {
12667                   relative: 0.0 0.0;
12668                   to_x: "elm.icon.3";
12669                   to_y: "elm.padding.bottom";
12670                }
12671                align: 1.0 0.0;
12672                visible: 0;
12673             }
12674             GENLIST_DESCRIPTION_FLIP_ENABLED
12675          }
12676          part { name: "elm.icon.4";
12677             clip_to: "disclip";
12678             type: SWALLOW;
12679             scale: 1;
12680             description { state: "default" 0.0;
12681                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12682                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12683                fixed: 1 1;
12684                rel1 {
12685                   relative: 0.0 1.0;
12686                   to_x: "elm.icon.3.left";
12687                   to_y: "elm.padding.top";
12688                }
12689                rel2 {
12690                   relative: 0.0 0.0;
12691                   to_x: "elm.icon.3.left";
12692                   to_y: "elm.text.2";
12693                }
12694                align: 1.0 0.5;
12695             }
12696             GENLIST_DESCRIPTION_FLIP_ENABLED
12697          }
12698          part { name: "elm.icon.4.left";
12699             clip_to: "disclip";
12700             type: RECT;
12701             scale: 1;
12702             description { state: "default" 0.0;
12703                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12704                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
12705                fixed: 1 1;
12706                rel1 {
12707                   relative: 0.0 1.0;
12708                   to_x: "elm.icon.4";
12709                   to_y: "elm.padding.top";
12710                }
12711                rel2 {
12712                   relative: 0.0 0.0;
12713                   to_x: "elm.icon.4";
12714                   to_y: "elm.padding.bottom";
12715                }
12716                align: 1.0 0.0;
12717                visible: 0;
12718             }
12719             GENLIST_DESCRIPTION_FLIP_ENABLED
12720          }
12721
12722          part { name: "elm.text.1.rect";
12723             clip_to: "disclip";
12724             type: RECT;
12725             scale: 1;
12726             description { state: "default" 0.0;
12727                min: 0 GENLIST_SIZE_60_INC;
12728                fixed: 0 1;
12729                rel1 {
12730                   relative: 1.0 1.0;
12731                   to_x: "elm.padding.left";
12732                   to_y: "elm.padding.top";
12733                }
12734                rel2 {
12735                   relative: 0.0 1.0;
12736                   to_x: "elm.icon.4.left";
12737                   to_y: "elm.padding.top";
12738                }
12739                align: 0.0 0.0;
12740                visible: 0;
12741             }
12742          }
12743          part { name: "elm.text.1";
12744             clip_to: "disclip";
12745             type: TEXT;
12746             mouse_events: 0;
12747             scale: 1;
12748             description { state: "default" 0.0;
12749                fixed: 1 1;
12750                rel1 {
12751                   relative: 1.0 1.0;
12752                   to_x: "elm.padding.icon1.right";
12753                   to_y: "elm.padding.top";
12754                }
12755                rel2.to: "elm.text.1.rect";
12756                align: 0.0 0.0;
12757                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_UNREAD_COLOR_INC;
12758                text {
12759                   font: "SLP:style=Roman";
12760                   size: GENLIST_FONT_44_INC;
12761                   min: 0 1;
12762                   align: 0.0 0.5;
12763                   text_class: "list_item";
12764                }
12765             }
12766             description { state: "selected" 0.0;
12767                inherit: "default" 0.0;
12768                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12769             }
12770             GENLIST_DESCRIPTION_FLIP_ENABLED
12771          }
12772          part { name: "elm.text.1.bottom";
12773             clip_to: "disclip";
12774             type: RECT;
12775             scale: 1;
12776             description { state: "default" 0.0;
12777                min: 0 GENLIST_SIZE_4_INC;
12778                fixed: 1 1;
12779                rel1 {
12780                   relative: 1.0 1.0;
12781                   to_x: "elm.padding.icon1.right";
12782                   to_y: "elm.text.1.rect";
12783                }
12784                rel2 {
12785                   relative: 0.0 1.0;
12786                   to_x: "elm.padding.right";
12787                   to_y: "elm.text.1.rect";
12788                }
12789                align: 0.0 1.0;
12790                visible: 0;
12791             }
12792             GENLIST_DESCRIPTION_FLIP_ENABLED
12793          }
12794          part { name: "elm.text.2";
12795             clip_to: "disclip";
12796             type: TEXT;
12797             mouse_events: 0;
12798             scale: 1;
12799             description { state: "default" 0.0;
12800                min: 0 GENLIST_SIZE_40_INC;
12801                fixed: 0 1;
12802                rel1 {
12803                   relative: 1.0 1.0;
12804                   to_x: "elm.padding.icon1.right";
12805                   to_y: "elm.text.1.bottom";
12806                }
12807                rel2 {
12808                   relative: 0.0 1.0;
12809                   to_x: "elm.padding.right";
12810                   to_y: "elm.text.1.bottom";
12811                }
12812                align: 0.0 0.0;
12813                color: GENLIST_PART_FONT_NAME_TEXT_COLOR_INC;
12814                text {
12815                   font: "SLP:style=Medium";
12816                   size: GENLIST_FONT_32_INC;
12817                   min: 0 1;
12818                   align: 0.0 0.5;
12819                   text_class: "slp_medium";
12820                }
12821             }
12822             description { state: "selected" 0.0;
12823                inherit: "default" 0.0;
12824                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12825             }
12826             GENLIST_DESCRIPTION_FLIP_ENABLED
12827          }
12828          part { name: "elm.text.4";
12829             clip_to: "disclip";
12830             type: TEXT;
12831             mouse_events: 0;
12832             scale: 1;
12833             description { state: "default" 0.0;
12834                min: GENLIST_SIZE_133_INC GENLIST_SIZE_40_INC;
12835                fixed: 1 1;
12836                rel1 {
12837                   relative: 0.0 1.0;
12838                   to_x: "elm.padding.right";
12839                   to_y: "elm.text.2";
12840                }
12841                rel2 {
12842                   relative: 0.0 0.0;
12843                   to_x: "elm.padding.right";
12844                   to_y: "elm.padding.bottom";
12845                }
12846                align: 1.0 0.0;
12847                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
12848                text {
12849                   font: "SLP:style=Medium";
12850                   size: GENLIST_FONT_32_INC;
12851                   min: 0 1;
12852                   align: 0.0 0.5;
12853                   text_class: "slp_medium";
12854                }
12855             }
12856             description { state: "selected" 0.0;
12857                inherit: "default" 0.0;
12858                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12859             }
12860             GENLIST_DESCRIPTION_FLIP_ENABLED
12861          }
12862          part { name: "elm.text.4.left";
12863             clip_to: "disclip";
12864             type: RECT;
12865             scale: 1;
12866             description { state: "default" 0.0;
12867                min: GENLIST_SIZE_16_INC GENLIST_SIZE_40_INC;
12868                max: GENLIST_SIZE_16_INC GENLIST_SIZE_40_INC;
12869                fixed: 1 1;
12870                color: 255 0 255 255;
12871                rel1 {
12872                   relative: 0.0 1.0;
12873                   to_x: "elm.text.4";
12874                   to_y: "elm.text.2";
12875                }
12876                rel2 {
12877                   relative: 0.0 0.0;
12878                   to_x: "elm.text.4";
12879                   to_y: "elm.padding.bottom";
12880                }
12881                align: 1.0 0.0;
12882                visible: 0;
12883             }
12884             GENLIST_DESCRIPTION_FLIP_ENABLED
12885          }
12886          part { name: "elm.text.3";
12887             clip_to: "disclip";
12888             type: TEXT;
12889             mouse_events: 0;
12890             scale: 1;
12891             description { state: "default" 0.0;
12892                min: 0 GENLIST_SIZE_40_INC;
12893                fixed: 0 1;
12894                rel1 {
12895                   relative: 1.0 0.0;
12896                   to_x: "elm.padding.icon1.right";
12897                   to_y: "elm.padding.bottom";
12898                }
12899                rel2 {
12900                   relative: 0.0 0.0;
12901                   to_x: "elm.text.4.left";
12902                   to_y: "elm.padding.bottom";
12903                }
12904                align: 0.0 1.0;
12905                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
12906                text {
12907                   font: "SLP:style=Medium";
12908                   size: GENLIST_FONT_32_INC;
12909                   min: 0 1;
12910                   align: 0.0 0.5;
12911                   text_class: "slp_medium";
12912                }
12913             }
12914             description { state: "selected" 0.0;
12915                inherit: "default" 0.0;
12916                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
12917             }
12918             GENLIST_DESCRIPTION_FLIP_ENABLED
12919          }
12920
12921          GENLIST_PART_FLIP
12922          GENLIST_PART_DISCLIP
12923       }
12924       programs {
12925          program { name: "go_active";
12926             signal: "elm,state,selected";
12927             source: "elm";
12928             action: STATE_SET "selected" 0.0;
12929             target: "bg_image";
12930             target: "elm.text.1";
12931             target: "elm.text.2";
12932             target: "elm.text.3";
12933             target: "elm.text.4";
12934          }
12935          program { name: "go_passive";
12936             signal: "elm,state,unselected";
12937             source: "elm";
12938             action: STATE_SET "default" 0.0;
12939             target: "bg_image";
12940             target: "elm.text.1";
12941             target: "elm.text.2";
12942             target: "elm.text.3";
12943             target: "elm.text.4";
12944             transition: LINEAR 0.1;
12945          }
12946          program { name: "go_disabled";
12947             signal: "elm,state,disabled";
12948             source: "elm";
12949             action: STATE_SET "disabled" 0.0;
12950             target: "disclip";
12951          }
12952          program { name: "go_enabled";
12953             signal: "elm,state,enabled";
12954             source: "elm";
12955             action: STATE_SET "default" 0.0;
12956             target: "disclip";
12957          }
12958       }
12959    }
12960
12961    // 2.2.3.12
12962    group { name: "elm/genlist/item/multiline/4text.6icon.8/default";
12963       alias: "elm/genlist/item_odd/multiline/4text.6icon.8/default";
12964       alias: "elm/genlist/item_compress/multiline/4text.6icon.8/default";
12965       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.8/default";
12966       inherit: "elm/genlist/item/multiline/4text.4icon.1/default";
12967
12968       parts {
12969          part { name: "elm.text.1";
12970             description { state: "default" 0.0;
12971                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_READ_COLOR_INC;
12972             }
12973          }
12974       }
12975    }
12976
12977    // 2.2.3.9
12978    group { name: "elm/genlist/item/multiline/4text.6icon.5/default";
12979       alias: "elm/genlist/item_odd/multiline/4text.6icon.5/default";
12980       alias: "elm/genlist/item_compress/multiline/4text.6icon.5/default";
12981       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.5/default";
12982       inherit: "elm/genlist/item/multiline/4text.4icon.1/default";
12983       data.item: "contents" "elm.icon.1 elm.icon.3 elm.icon.4 elm.icon.5";
12984
12985       parts {
12986          part { name: "elm.icon.5";
12987             clip_to: "disclip";
12988             type: SWALLOW;
12989             scale: 1;
12990             description { state: "default" 0.0;
12991                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12992                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
12993                fixed: 1 1;
12994                rel1 {
12995                   relative: 0.0 1.0;
12996                   to_x: "elm.icon.4.left";
12997                   to_y: "elm.padding.top";
12998                }
12999                rel2 {
13000                   relative: 0.0 0.0;
13001                   to_x: "elm.icon.4.left";
13002                   to_y: "elm.text.2";
13003                }
13004                align: 1.0 0.5;
13005             }
13006             GENLIST_DESCRIPTION_FLIP_ENABLED
13007          }
13008          part { name: "elm.icon.5.left";
13009             clip_to: "disclip";
13010             type: RECT;
13011             scale: 1;
13012             description { state: "default" 0.0;
13013                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
13014                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
13015                fixed: 1 1;
13016                rel1 {
13017                   relative: 0.0 1.0;
13018                   to_x: "elm.icon.5";
13019                   to_y: "elm.padding.top";
13020                }
13021                rel2 {
13022                   relative: 0.0 0.0;
13023                   to_x: "elm.icon.5";
13024                   to_y: "elm.padding.bottom";
13025                }
13026                align: 1.0 0.0;
13027                visible: 0;
13028             }
13029             GENLIST_DESCRIPTION_FLIP_ENABLED
13030          }
13031          part { name: "elm.text.1.rect";
13032             description { state: "default" 0.0;
13033                rel2.to_x: "elm.icon.5.left";
13034             }
13035          }
13036       }
13037    }
13038
13039    // 2.2.3.10
13040    group { name: "elm/genlist/item/multiline/4text.6icon.6/default";
13041       alias: "elm/genlist/item_odd/multiline/4text.6icon.6/default";
13042       alias: "elm/genlist/item_compress/multiline/4text.6icon.6/default";
13043       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.6/default";
13044       inherit: "elm/genlist/item/multiline/4text.6icon.5/default";
13045
13046       parts {
13047          part { name: "elm.text.1";
13048             description { state: "default" 0.0;
13049                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_READ_COLOR_INC;
13050             }
13051          }
13052       }
13053    }
13054
13055    // 2.2.3.7
13056    group { name: "elm/genlist/item/multiline/4text.6icon.3/default";
13057       alias: "elm/genlist/item_odd/multiline/4text.6icon.3/default";
13058       alias: "elm/genlist/item_compress/multiline/4text.6icon.3/default";
13059       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.3/default";
13060       inherit: "elm/genlist/item/multiline/4text.4icon.1/default";
13061       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4";
13062
13063       parts {
13064           part { name: "elm.icon.2";
13065             clip_to: "disclip";
13066             type: SWALLOW;
13067             scale: 1;
13068             description { state: "default" 0.0;
13069                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
13070                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
13071                fixed: 1 1;
13072                rel1 {
13073                   relative: 1.0 1.0;
13074                   to_x: "elm.padding.icon1.right";
13075                   to_y: "elm.text.2";
13076                }
13077                rel2 {
13078                   relative: 1.0 0.0;
13079                   to_x: "elm.padding.icon1.right";
13080                   to_y: "elm.padding.bottom";
13081                }
13082                align: 0.0 0.5;
13083             }
13084             GENLIST_DESCRIPTION_FLIP_ENABLED
13085          }
13086          part { name: "elm.padding.icon2.right";
13087             clip_to: "disclip";
13088             type: RECT;
13089             scale: 1;
13090             description { state: "default" 0.0;
13091                min: GENLIST_SIZE_16_INC 0;
13092                fixed: 1 0;
13093                rel1 {
13094                   relative: 1.0 0.0;
13095                   to_x: "elm.icon.2";
13096                }
13097                rel2.to_x: "elm.icon.2";
13098                align: 0.0 0.0;
13099                visible: 0;
13100             }
13101          }
13102          part { name: "elm.text.3";
13103             clip_to: "disclip";
13104             type: TEXT;
13105             mouse_events: 0;
13106             scale: 1;
13107             description { state: "default" 0.0;
13108                min: 0 GENLIST_SIZE_40_INC;
13109                fixed: 0 1;
13110                rel1 {
13111                   relative: 1.0 0.0;
13112                   to_x: "elm.padding.icon2.right";
13113                   to_y: "elm.padding.bottom";
13114                }
13115                rel2 {
13116                   relative: 0.0 0.0;
13117                   to_x: "elm.text.4.left";
13118                   to_y: "elm.padding.bottom";
13119                }
13120                align: 0.0 1.0;
13121                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
13122                text {
13123                   font: "SLP:style=Medium";
13124                   size: GENLIST_FONT_32_INC;
13125                   min: 0 1;
13126                   align: 0.0 0.5;
13127                   text_class: "slp_medium";
13128                }
13129             }
13130             description { state: "selected" 0.0;
13131                inherit: "default" 0.0;
13132                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
13133             }
13134             GENLIST_DESCRIPTION_FLIP_ENABLED
13135          }
13136       }
13137    }
13138
13139    // 2.2.3.8
13140    group { name: "elm/genlist/item/multiline/4text.6icon.4/default";
13141       alias: "elm/genlist/item_odd/multiline/4text.6icon.4/default";
13142       alias: "elm/genlist/item_compress/multiline/4text.6icon.4/default";
13143       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.4/default";
13144       inherit: "elm/genlist/item/multiline/4text.6icon.3/default";
13145
13146       parts {
13147          part { name: "elm.text.1";
13148             description { state: "default" 0.0;
13149                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_READ_COLOR_INC;
13150             }
13151          }
13152       }
13153    }
13154
13155    // 2.2.3.5
13156    group { name: "elm/genlist/item/multiline/4text.6icon.1/default";
13157       alias: "elm/genlist/item_odd/multiline/4text.6icon.1/default";
13158       alias: "elm/genlist/item_compress/multiline/4text.6icon.1/default";
13159       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.1/default";
13160       inherit: "elm/genlist/item/multiline/4text.6icon.3/default";
13161       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4 elm.icon.5";
13162
13163       parts {
13164          part { name: "elm.icon.5";
13165             clip_to: "disclip";
13166             type: SWALLOW;
13167             scale: 1;
13168             description { state: "default" 0.0;
13169                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
13170                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
13171                fixed: 1 1;
13172                rel1 {
13173                   relative: 0.0 1.0;
13174                   to_x: "elm.icon.4.left";
13175                   to_y: "elm.padding.top";
13176                }
13177                rel2 {
13178                   relative: 0.0 0.0;
13179                   to_x: "elm.icon.4.left";
13180                   to_y: "elm.text.2";
13181                }
13182                align: 1.0 0.5;
13183             }
13184             GENLIST_DESCRIPTION_FLIP_ENABLED
13185          }
13186          part { name: "elm.icon.5.left";
13187             clip_to: "disclip";
13188             type: RECT;
13189             scale: 1;
13190             description { state: "default" 0.0;
13191                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
13192                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
13193                fixed: 1 1;
13194                rel1 {
13195                   relative: 0.0 1.0;
13196                   to_x: "elm.icon.5";
13197                   to_y: "elm.padding.top";
13198                }
13199                rel2 {
13200                   relative: 0.0 0.0;
13201                   to_x: "elm.icon.5";
13202                   to_y: "elm.padding.bottom";
13203                }
13204                align: 1.0 0.0;
13205                visible: 0;
13206             }
13207             GENLIST_DESCRIPTION_FLIP_ENABLED
13208          }
13209          part { name: "elm.text.1.rect";
13210             description { state: "default" 0.0;
13211                rel2 {
13212                   to_x: "elm.icon.5.left";
13213                }
13214             }
13215          }
13216       }
13217    }
13218
13219    // 2.2.3.6
13220    group { name: "elm/genlist/item/multiline/4text.6icon.2/default";
13221       alias: "elm/genlist/item_odd/multiline/4text.6icon.2/default";
13222       alias: "elm/genlist/item_compress/multiline/4text.6icon.2/default";
13223       alias: "elm/genlist/item_compress_odd/multiline/4text.6icon.2/default";
13224       inherit: "elm/genlist/item/multiline/4text.6icon.1/default";
13225
13226       parts {
13227          part { name: "elm.text.1";
13228             description { state: "default" 0.0;
13229                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
13230             }
13231          }
13232       }
13233    }
13234
13235    // 2.2.3.13
13236    group { name: "elm/genlist/item/multiline/3text.4icon.2/default";
13237       alias: "elm/genlist/item_odd/multiline/3text.4icon.2/default";
13238       alias: "elm/genlist/item_compress/multiline/3text.4icon.2/default";
13239       alias: "elm/genlist/item_compress_odd/multiline/3text.4icon.2/default";
13240       data.item: "stacking" "above";
13241       data.item: "selectraise" "on";
13242       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
13243       data.item: "contents" "elm.icon.1 elm.icon.4";
13244       data.item: "flips" "elm.flip.content";
13245       images {
13246          image: "00_list_bar_press_1x80.png" COMP;
13247       }
13248       parts {
13249          GENLIST_PART_BASE( GENLIST_HEIGHT_161_INC )
13250          GENLIST_PART_BG_IMAGE
13251          GENLIST_PART_BOTTOM_LINE
13252          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_8_INC )
13253          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_8_INC )
13254          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
13255          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
13256
13257          part { name: "elm.icon.1";
13258             clip_to: "disclip";
13259             type: SWALLOW;
13260             scale: 1;
13261             description { state: "default" 0.0;
13262                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
13263                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
13264                fixed: 1 1;
13265                rel1 {
13266                   relative: 1.0 1.0;
13267                   to_x: "elm.padding.left";
13268                   to_y: "elm.padding.top";
13269                }
13270                rel2 {
13271                   relative: 1.0 0.0;
13272                   to_x: "elm.padding.left";
13273                   to_y: "elm.padding.bottom";
13274                }
13275                align: 0.0 0.5;
13276             }
13277             GENLIST_DESCRIPTION_FLIP_ENABLED
13278          }
13279          part { name: "elm.padding.icon1.right";
13280             clip_to: "disclip";
13281             type: RECT;
13282             scale: 1;
13283             description { state: "default" 0.0;
13284                min: GENLIST_PADDING_16_INC 0;
13285                fixed: 1 0;
13286                rel1 {
13287                   relative: 1.0 0.0;
13288                   to_x: "elm.icon.1";
13289                }
13290                rel2.to_x: "elm.icon.1";
13291                align: 0.0 0.0;
13292                visible: 0;
13293             }
13294          }
13295          part { name: "elm.icon.4";
13296             clip_to: "disclip";
13297             type: SWALLOW;
13298             scale: 1;
13299             description { state: "default" 0.0;
13300                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
13301                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
13302                fixed: 1 1;
13303                rel1 {
13304                   relative: 0.0 1.0;
13305                   to_x: "elm.padding.right";
13306                   to_y: "elm.padding.top";
13307                }
13308                rel2 {
13309                   relative: 0.0 0.0;
13310                   to_x: "elm.padding.right";
13311                   to_y: "elm.text.2";
13312                }
13313                align: 1.0 0.5;
13314             }
13315             GENLIST_DESCRIPTION_FLIP_ENABLED
13316          }
13317          part { name: "elm.icon.4.left";
13318             clip_to: "disclip";
13319             type: RECT;
13320             scale: 1;
13321             description { state: "default" 0.0;
13322                min: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
13323                max: GENLIST_SIZE_16_INC GENLIST_SIZE_60_INC;
13324                fixed: 1 1;
13325                rel1 {
13326                   relative: 0.0 1.0;
13327                   to_x: "elm.icon.4";
13328                   to_y: "elm.padding.top";
13329                }
13330                rel2 {
13331                   relative: 0.0 0.0;
13332                   to_x: "elm.icon.4";
13333                   to_y: "elm.padding.bottom";
13334                }
13335                align: 1.0 0.0;
13336                visible: 0;
13337             }
13338             GENLIST_DESCRIPTION_FLIP_ENABLED
13339          }
13340          part { name: "elm.icon.2";
13341             clip_to: "disclip";
13342             type: SWALLOW;
13343             scale: 1;
13344             description { state: "default" 0.0;
13345                fixed: 1 1;
13346                min: GENLIST_SIZE_88_INC GENLIST_SIZE_74_INC;
13347                rel1 {
13348                   relative: 0.0 1.0;
13349                   to_x: "elm.padding.right";
13350                   to_y: "elm.text.1.bottom";
13351                }
13352                rel2 {
13353                   relative: 0.0 0.0;
13354                   to_x: "elm.padding.right";
13355                   to_y: "elm.padding.bottom";
13356                }
13357                align: 1.0 0.5;
13358             }
13359             GENLIST_DESCRIPTION_FLIP_ENABLED
13360          }
13361          part { name: "elm.padding.icon2.left";
13362             clip_to: "disclip";
13363             type: RECT;
13364             scale: 1;
13365             description { state: "default" 0.0;
13366                min: GENLIST_PADDING_16_INC 0;
13367                fixed: 1 0;
13368                rel1.to_x: "elm.icon.2";
13369                rel2 {
13370                   relative: 0.0 1.0;
13371                   to_x: "elm.icon.2";
13372                }
13373                align: 1.0 0.0;
13374                visible: 0;
13375             }
13376          }
13377          part { name: "elm.text.1.rect";
13378             clip_to: "disclip";
13379             type: RECT;
13380             scale: 1;
13381             description { state: "default" 0.0;
13382                min: 0 GENLIST_SIZE_60_INC;
13383                fixed: 0 1;
13384                rel1 {
13385                   relative: 1.0 1.0;
13386                   to_x: "elm.padding.left";
13387                   to_y: "elm.padding.top";
13388                }
13389                rel2 {
13390                   relative: 0.0 1.0;
13391                   to_x: "elm.icon.4.left";
13392                   to_y: "elm.padding.top";
13393                }
13394                align: 0.0 0.0;
13395                visible: 0;
13396             }
13397          }
13398          part { name: "elm.text.1";
13399             clip_to: "disclip";
13400             type: TEXT;
13401             mouse_events: 0;
13402             scale: 1;
13403             description { state: "default" 0.0;
13404                fixed: 1 1;
13405                rel1 {
13406                   relative: 1.0 1.0;
13407                   to_x: "elm.padding.icon1.right";
13408                   to_y: "elm.padding.top";
13409                }
13410                rel2.to: "elm.text.1.rect";
13411                align: 0.0 0.0;
13412                color: GENLIST_PART_FONT_3LINE_MAIN_TEXT_UNREAD_COLOR_INC;
13413                text {
13414                   font: "SLP:style=Roman";
13415                   size: GENLIST_FONT_44_INC;
13416                   min: 0 1;
13417                   align: 0.0 0.5;
13418                   text_class: "list_item";
13419                }
13420             }
13421             description { state: "selected" 0.0;
13422                inherit: "default" 0.0;
13423                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
13424             }
13425             GENLIST_DESCRIPTION_FLIP_ENABLED
13426          }
13427          part { name: "elm.text.1.bottom";
13428             clip_to: "disclip";
13429             type: RECT;
13430             scale: 1;
13431             description { state: "default" 0.0;
13432                min: 0 GENLIST_SIZE_4_INC;
13433                fixed: 1 1;
13434                rel1 {
13435                   relative: 1.0 1.0;
13436                   to_x: "elm.padding.icon1.right";
13437                   to_y: "elm.text.1.rect";
13438                }
13439                rel2 {
13440                   relative: 0.0 1.0;
13441                   to_x: "elm.padding.right";
13442                   to_y: "elm.text.1.rect";
13443                }
13444                align: 0.0 1.0;
13445                visible: 0;
13446             }
13447             GENLIST_DESCRIPTION_FLIP_ENABLED
13448          }
13449          part { name: "elm.text.2";
13450             clip_to: "disclip";
13451             type: TEXT;
13452             mouse_events: 0;
13453             scale: 1;
13454             description { state: "default" 0.0;
13455                min: 0 GENLIST_SIZE_40_INC;
13456                fixed: 0 1;
13457                rel1 {
13458                   relative: 1.0 1.0;
13459                   to_x: "elm.padding.icon1.right";
13460                   to_y: "elm.text.1.bottom";
13461                }
13462                rel2 {
13463                   relative: 0.0 1.0;
13464                   to_x: "elm.padding.icon2.left";
13465                   to_y: "elm.text.1.bottom";
13466                }
13467                align: 0.0 0.0;
13468                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
13469                text {
13470                   font: "SLP:style=Medium";
13471                   size: GENLIST_FONT_32_INC;
13472                   min: 0 1;
13473                   align: 0.0 0.5;
13474                   text_class: "slp_medium";
13475                }
13476             }
13477             description { state: "selected" 0.0;
13478                inherit: "default" 0.0;
13479                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
13480             }
13481             GENLIST_DESCRIPTION_FLIP_ENABLED
13482          }
13483          part { name: "elm.text.3";
13484             clip_to: "disclip";
13485             type: TEXT;
13486             mouse_events: 0;
13487             scale: 1;
13488             description { state: "default" 0.0;
13489                min: 0 GENLIST_SIZE_40_INC;
13490                fixed: 0 1;
13491                rel1 {
13492                   relative: 1.0 0.0;
13493                   to_x: "elm.padding.icon1.right";
13494                   to_y: "elm.padding.bottom";
13495                }
13496                rel2 {
13497                   relative: 0.0 0.0;
13498                   to_x: "elm.padding.icon2.left";
13499                   to_y: "elm.padding.bottom";
13500                }
13501                align: 0.0 1.0;
13502                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
13503                text {
13504                   font: "SLP:style=Medium";
13505                   size: GENLIST_FONT_32_INC;
13506                   min: 0 1;
13507                   align: 0.0 0.5;
13508                   text_class: "slp_medium";
13509                }
13510             }
13511             description { state: "selected" 0.0;
13512                inherit: "default" 0.0;
13513                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
13514             }
13515             GENLIST_DESCRIPTION_FLIP_ENABLED
13516          }
13517
13518          GENLIST_PART_FLIP
13519          GENLIST_PART_DISCLIP
13520       }
13521       programs {
13522          // signal: elm,state,%s,active
13523          //   a "check" item named %s went active
13524          // signal: elm,state,%s,passive
13525          //   a "check" item named %s went passive
13526          // default is passive
13527          program { name: "go_active";
13528             signal: "elm,state,selected";
13529             source: "elm";
13530             action: STATE_SET "selected" 0.0;
13531             target: "bg_image";
13532             target: "elm.text.1";
13533             target: "elm.text.2";
13534             target: "elm.text.3";
13535          }
13536          program { name: "go_passive";
13537             signal: "elm,state,unselected";
13538             source: "elm";
13539             action: STATE_SET "default" 0.0;
13540             target: "bg_image";
13541             target: "elm.text.1";
13542             target: "elm.text.2";
13543             target: "elm.text.3";
13544             transition: LINEAR 0.1;
13545          }
13546          program { name: "go_disabled";
13547             signal: "elm,state,disabled";
13548             source: "elm";
13549             action: STATE_SET "disabled" 0.0;
13550             target: "disclip";
13551          }
13552          program { name: "go_enabled";
13553             signal: "elm,state,enabled";
13554             source: "elm";
13555             action: STATE_SET "default" 0.0;
13556             target: "disclip";
13557          }
13558       }
13559    }
13560
13561 // 3.4.4
13562    group { name: "elm/genlist/item/multiline/1title.2text/default";
13563       alias: "elm/genlist/item_odd/multiline/1title.2text/default";
13564       alias: "elm/genlist/item_compress/multiline/1title.2text/default";
13565       alias: "elm/genlist/item_compress_odd/multiline/1title.2text/default";
13566       data.item: "stacking" "above";
13567       data.item: "selectraise" "on";
13568       data.item: "texts" "elm.title elm.text.1 elm.text.2";
13569       parts {
13570          part { name: "base";
13571             type: RECT;
13572             repeat_events: 1;
13573             description { state: "default" 0.0;
13574                color: GENLIST_PART_BG_COLOR_INC;
13575             }
13576          }
13577          GENLIST_PART_BG_IMAGE
13578          GENLIST_PART_BOTTOM_LINE
13579          GENLIST_PART_PADDING_TOP( 0 )
13580          GENLIST_PART_PADDING_BOTTOM( 0 )
13581          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
13582          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
13583          part { name: "vertical_line";
13584             clip_to: "disclip";
13585             type: RECT;
13586             mouse_events: 0;
13587             description { state: "default" 0.0;
13588                min: 1 0;
13589                fixed: 1 0;
13590                rel1 {
13591                   relative: 1.0 0.0;
13592                   to_x: "elm.padding.title.right";
13593                }
13594                rel2.to_x: "elm.padding.title.right";
13595                color: GENLIST_PART_LIST_LINE_COLOR_INC;
13596             }
13597          }
13598          part { name: "center_line";
13599             clip_to: "disclip";
13600             type: RECT;
13601             mouse_events: 0;
13602             description { state: "default" 0.0;
13603                min: 0 1;
13604                fixed: 0 1;
13605                color: GENLIST_PART_LIST_LINE_COLOR_INC;
13606                rel1 {
13607                   relative: 1.0 0.5;
13608                   to_x: "vertical_line";
13609                }
13610                rel2.relative: 1.0 0.5;
13611                align: 0.5 1.0;
13612             }
13613          }
13614          part { name: "elm.title";
13615             clip_to: "disclip";
13616             type: TEXTBLOCK;
13617             mouse_events: 0;
13618             scale: 1;
13619             description { state: "default" 0.0;
13620                min: 224 0;
13621                fixed: 1 0;
13622                rel1 {
13623                   relative: 1.0 1.0;
13624                   to_x: "elm.padding.left";
13625                   to_y: "elm.padding.top";
13626                }
13627                rel2 {
13628                   relative: 1.0 0.0;
13629                   to_x: "elm.padding.left";
13630                   to_y: "elm.padding.bottom";
13631                }
13632                align: 0.0 0.5;
13633                text {
13634                   style: "genlist_multiline_textblock_style";
13635                   min: 0 1;
13636                   align: 0.0 0.5;
13637                }
13638             }
13639             description { state: "selected" 0.0;
13640                inherit: "default" 0.0;
13641                text.style: "genlist_multiline_textblock_selected_style";
13642             }
13643          }
13644          part { name: "elm.padding.title.right";
13645             clip_to: "disclip";
13646             type: RECT;
13647             mouse_events: 0;
13648             scale: 1;
13649             description { state: "default" 0.0;
13650                min: GENLIST_PADDING_16_INC 0;
13651                fixed: 1 0;
13652                rel1 {
13653                    relative: 1.0 0.0;
13654                    to_x: "elm.title";
13655                }
13656                rel2.to_x: "elm.title";
13657                visible: 0;
13658                align: 0.0 0.5;
13659             }
13660          }
13661          part { name: "elm.padding.text.left";
13662             clip_to: "disclip";
13663             type: RECT;
13664             mouse_events: 0;
13665             scale: 1;
13666             description { state: "default" 0.0;
13667                min: GENLIST_PADDING_16_INC 0;
13668                fixed: 1 0;
13669                rel1 {
13670                    relative: 1.0 0.0;
13671                    to_x: "vertical_line";
13672                }
13673                rel2.to_x: "vertical_line";
13674                visible: 0;
13675                align: 0.0 0.5;
13676             }
13677          }
13678          part { name: "elm.text.1";
13679             clip_to: "disclip";
13680             type: TEXT;
13681             mouse_events: 0;
13682             scale: 1;
13683             description { state: "default" 0.0;
13684                rel1 {
13685                   relative: 1.0 1.0;
13686                   to_x: "elm.padding.text.left";
13687                   to_y: "elm.padding.top";
13688                }
13689                rel2 {
13690                   relative: 0.0 0.0;
13691                   to_x: "elm.padding.right";
13692                   to_y: "center_line";
13693                }
13694                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
13695                text {
13696                   font: "SLP:style=Roman";
13697                   size: GENLIST_FONT_44_INC;
13698                   min: 0 1;
13699                   align: 0.0 0.5;
13700                   text_class: "slp_roman";
13701                }
13702             }
13703          }
13704          part { name: "elm.text.2";
13705             clip_to: "disclip";
13706             type: TEXT;
13707             mouse_events: 0;
13708             scale: 1;
13709             description { state: "default" 0.0;
13710                rel1 {
13711                   relative: 1.0 1.0;
13712                   to_x: "elm.padding.text.left";
13713                   to_y: "center_line";
13714                }
13715                rel2 {
13716                   relative: 0.0 0.0;
13717                   to_x: "elm.padding.right";
13718                   to_y: "elm.padding.bottom";
13719                }
13720                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
13721                text {
13722                   font: "SLP:style=Roman";
13723                   size: GENLIST_FONT_44_INC;
13724                   min: 0 1;
13725                   align: 0.0 0.5;
13726                   text_class: "slp_roman";
13727                }
13728             }
13729          }
13730          GENLIST_PART_DISCLIP
13731       }
13732       programs {
13733          // signal: elm,state,%s,active
13734          //   a "check" item named %s went active
13735          // signal: elm,state,%s,passive
13736          //   a "check" item named %s went passive
13737          // default is passive
13738          program { name: "go_active";
13739             signal: "elm,state,selected";
13740             source: "elm";
13741             action: STATE_SET "selected" 0.0;
13742             target: "bg_image";
13743             target: "elm.title";
13744             target: "elm.text.1";
13745             target: "elm.text.2";
13746             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
13747          }
13748          program { name: "go_passive";
13749             signal: "elm,state,unselected";
13750             source: "elm";
13751             action: STATE_SET "default" 0.0;
13752             target: "bg_image";
13753             target: "elm.title";
13754             target: "elm.text.1";
13755             target: "elm.text.2";
13756             transition: LINEAR 0.1;
13757          }
13758          program { name: "go_disabled";
13759             signal: "elm,state,disabled";
13760             source: "elm";
13761             action: STATE_SET "disabled" 0.0;
13762             target: "disclip";
13763          }
13764          program { name: "go_enabled";
13765             signal: "elm,state,enabled";
13766             source: "elm";
13767             action: STATE_SET "default" 0.0;
13768             target: "disclip";
13769          }
13770          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
13771       }
13772    }
13773
13774 // 3.4.5
13775    group { name: "elm/genlist/item_compress/multiline/1title.1text/default";
13776       alias: "elm/genlist/item_compress_odd/multiline/1title.1text/default";
13777       data.item: "stacking" "above";
13778       data.item: "selectraise" "on";
13779       data.item: "texts" "elm.title elm.text";
13780       parts {
13781          part { name: "base";
13782             type: RECT;
13783             repeat_events: 1;
13784             description { state: "default" 0.0;
13785                color: GENLIST_PART_BG_COLOR_INC;
13786             }
13787          }
13788          GENLIST_PART_BG_IMAGE
13789          GENLIST_PART_BOTTOM_LINE
13790          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
13791          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
13792          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
13793          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
13794          part { name: "elm.title";
13795             clip_to: "disclip";
13796             type: TEXT;
13797             mouse_events: 0;
13798             scale: 1;
13799             description { state: "default" 0.0;
13800                min: GENLIST_SIZE_195_INC 0;
13801                fixed: 1 0;
13802                rel1 {
13803                   relative: 1.0 0.0;
13804                   to_x: "elm.padding.left";
13805                }
13806                rel2 {
13807                   relative: 1.0 1.0;
13808                   to_x: "elm.padding.left";
13809                }
13810                align: 0.0 0.0;
13811                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
13812                text {
13813                   font: "SLP:style=Medium";
13814                   size: GENLIST_FONT_32_INC;
13815                   min: 0 1;
13816                   align: 0.0 0.5;
13817                   text_class: "slp_medium";
13818                }
13819             }
13820             description { state: "selected" 0.0;
13821                inherit: "default" 0.0;
13822                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
13823             }
13824          }
13825          part { name: "elm.padding.title.right";
13826             clip_to: "disclip";
13827             type: RECT;
13828             mouse_events: 0;
13829             description { state: "default" 0.0;
13830                min: GENLIST_PADDING_16_INC 0;
13831                fixed: 1 0;
13832                rel1 {
13833                   relative: 1.0 0.0;
13834                   to_x: "elm.title";
13835                }
13836                rel2.to_x: "elm.title";
13837                align: 0.0 0.5;
13838                visible: 0;
13839             }
13840          }
13841          part { name: "vertical_line";
13842             clip_to: "disclip";
13843             type: RECT;
13844             mouse_events: 0;
13845             description { state: "default" 0.0;
13846                min: 1 0;
13847                fixed: 1 0;
13848                rel1 {
13849                   relative: 1.0 0.0;
13850                   to_x: "elm.padding.title.right";
13851                }
13852                rel2.to_x: "elm.padding.title.right";
13853                align: 0.0 0.5;
13854                color: GENLIST_PART_LIST_LINE_COLOR_INC;
13855             }
13856          }
13857          part { name: "elm.padding.text.left";
13858             clip_to: "disclip";
13859             type: RECT;
13860             mouse_events: 0;
13861             description { state: "default" 0.0;
13862                min: GENLIST_PADDING_16_INC 0;
13863                fixed: 1 0;
13864                rel1 {
13865                   relative: 1.0 0.0;
13866                   to_x: "vertical_line";
13867                }
13868                rel2.to_x: "vertical_line";
13869                align: 0.0 0.5;
13870                visible: 0;
13871             }
13872          }
13873          part { name: "elm.text";
13874             clip_to: "disclip";
13875             type: TEXTBLOCK;
13876             mouse_events: 0;
13877             scale: 1;
13878             description { state: "default" 0.0;
13879                rel1 {
13880                   relative: 1.0 1.0;
13881                   to_x: "elm.padding.text.left";
13882                   to_y: "elm.padding.top";
13883                }
13884                rel2 {
13885                   relative: 0.0 0.0;
13886                   to_x: "elm.padding.right";
13887                   to_y: "elm.padding.bottom";
13888                }
13889                text {
13890                   style: "genlist_textblock_flexible_style";
13891                   min: 0 1;
13892                   align: 0.0 0.5;
13893                   text_class: "list_item";
13894                }
13895             }
13896             description { state: "selected" 0.0;
13897                inherit: "default" 0.0;
13898                text.style: "genlist_textblock_flexible_selected_style";
13899             }
13900          }
13901          GENLIST_PART_DISCLIP
13902       }
13903       programs {
13904          // signal: elm,state,%s,active
13905          //   a "check" item named %s went active
13906          // signal: elm,state,%s,passive
13907          //   a "check" item named %s went passive
13908          // default is passive
13909          program { name: "go_active";
13910             signal: "elm,state,selected";
13911             source: "elm";
13912             action: STATE_SET "selected" 0.0;
13913             target: "bg_image";
13914             target: "elm.title";
13915             target: "elm.text";
13916             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
13917          }
13918          program { name: "go_passive";
13919             signal: "elm,state,unselected";
13920             source: "elm";
13921             action: STATE_SET "default" 0.0;
13922             target: "bg_image";
13923             target: "elm.title";
13924             target: "elm.text";
13925             transition: LINEAR 0.1;
13926          }
13927          program { name: "go_disabled";
13928             signal: "elm,state,disabled";
13929             source: "elm";
13930             action: STATE_SET "disabled" 0.0;
13931             target: "disclip";
13932          }
13933          program { name: "go_enabled";
13934             signal: "elm,state,enabled";
13935             source: "elm";
13936             action: STATE_SET "default" 0.0;
13937             target: "disclip";
13938          }
13939          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
13940       }
13941    }
13942
13943 // 3.4.6
13944    group { name: "elm/genlist/item_compress/multiline/2text.1icon/default";
13945       alias: "elm/genlist/item_compress_odd/multiline/2text.1icon/default";
13946       data.item: "stacking" "above";
13947       data.item: "selectraise" "on";
13948       data.item: "texts" "elm.text.1 elm.text.2";
13949       data.item: "contents" "elm.icon";
13950       parts {
13951          part { name: "base";
13952             type: RECT;
13953             repeat_events: 1;
13954             description { state: "default" 0.0;
13955                color: GENLIST_PART_BG_COLOR_INC;
13956             }
13957          }
13958          GENLIST_PART_BG_IMAGE
13959          GENLIST_PART_BOTTOM_LINE
13960          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
13961          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
13962          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
13963          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
13964          part { name: "elm.text.1";
13965             clip_to: "disclip";
13966             type: TEXT;
13967             mouse_events: 0;
13968             scale: 1;
13969             description { state: "default" 0.0;
13970                min: 0 GENLIST_SIZE_48_INC;
13971                fixed: 0 1;
13972                rel1 {
13973                   relative: 1.0 1.0;
13974                   to_x: "elm.padding.left";
13975                   to_y: "elm.padding.top";
13976                }
13977                rel2 {
13978                   relative: 0.0 1.0;
13979                   to_x: "elm.padding.icon.left";
13980                   to_y: "elm.padding.top";
13981                }
13982                align: 0.0 0.0;
13983                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
13984                text {
13985                   font: "SLP:style=Roman";
13986                   size: GENLIST_FONT_42_INC;
13987                   min: 0 1;
13988                   align: 0.0 0.5;
13989                   text_class: "list_item";
13990                }
13991             }
13992             description { state: "selected" 0.0;
13993                inherit: "default" 0.0;
13994                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
13995             }
13996          }
13997          part { name: "elm.icon";
13998             clip_to: "disclip";
13999             type: SWALLOW;
14000             scale: 1;
14001             description { state: "default" 0.0;
14002                fixed: 1 1;
14003                rel1 {
14004                   relative: 0.0 1.0;
14005                   to_x: "elm.padding.right";
14006                   to_y: "elm.padding.top";
14007                }
14008                rel2 {
14009                   relative: 0.0 0.0;
14010                   to_x: "elm.padding.right";
14011                   to_y: "elm.padding.bottom";
14012                }
14013                align: 1.0 0.5;
14014             }
14015             GENLIST_DESCRIPTION_FLIP_ENABLED
14016          }
14017          part { name: "elm.padding.icon.left";
14018             clip_to: "disclip";
14019             type: RECT;
14020             scale: 1;
14021             description { state: "default" 0.0;
14022                min: GENLIST_PADDING_16_INC 0;
14023                fixed: 1 0;
14024                rel1.to_x: "elm.icon";
14025                rel2 {
14026                   relative: 0.0 1.0;
14027                   to_x: "elm.icon";
14028                }
14029                align: 1.0 0.0;
14030                visible: 0;
14031             }
14032          }
14033          part { name: "elm.text.2";
14034             clip_to: "disclip";
14035             type: TEXTBLOCK;
14036             mouse_events: 0;
14037             scale: 1;
14038             description { state: "default" 0.0;
14039                rel1 {
14040                   relative: 1.0 1.0;
14041                   to_x: "elm.padding.left";
14042                   to_y: "elm.text.1";
14043                }
14044                rel2 {
14045                   relative: 0.0 0.0;
14046                   to_x: "elm.padding.icon.left";
14047                   to_y: "elm.padding.bottom";
14048                }
14049                text {
14050                   style: "genlist_textblock_sub_style";
14051                   min: 0 1;
14052                   align: 0.0 0.5;
14053                }
14054             }
14055             description { state: "selected" 0.0;
14056                inherit: "default" 0.0;
14057                text.style: "genlist_textblock_sub_selected_style";
14058             }
14059          }
14060          GENLIST_PART_DISCLIP
14061       }
14062       programs {
14063          // signal: elm,state,%s,active
14064          //   a "check" item named %s went active
14065          // signal: elm,state,%s,passive
14066          //   a "check" item named %s went passive
14067          // default is passive
14068          program { name: "go_active";
14069             signal: "elm,state,selected";
14070             source: "elm";
14071             action: STATE_SET "selected" 0.0;
14072             target: "bg_image";
14073             target: "elm.text.1";
14074             target: "elm.text.2";
14075             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14076          }
14077          program { name: "go_passive";
14078             signal: "elm,state,unselected";
14079             source: "elm";
14080             action: STATE_SET "default" 0.0;
14081             target: "bg_image";
14082             target: "elm.text.1";
14083             target: "elm.text.2";
14084             transition: LINEAR 0.1;
14085          }
14086          program { name: "go_disabled";
14087             signal: "elm,state,disabled";
14088             source: "elm";
14089             action: STATE_SET "disabled" 0.0;
14090             target: "disclip";
14091          }
14092          program { name: "go_enabled";
14093             signal: "elm,state,enabled";
14094             source: "elm";
14095             action: STATE_SET "default" 0.0;
14096             target: "disclip";
14097          }
14098          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14099       }
14100    }
14101
14102 // 3.4.7
14103    group { name: "elm/genlist/item_compress/multiline/2text.1icon.2/default";
14104       alias: "elm/genlist/item_compress_odd/multiline/2text.1icon.2/default";
14105       data.item: "stacking" "above";
14106       data.item: "selectraise" "on";
14107       data.item: "texts" "elm.text.1 elm.text.2";
14108       data.item: "contents" "elm.icon";
14109       parts {
14110          part { name: "base";
14111             type: RECT;
14112             repeat_events: 1;
14113             description { state: "default" 0.0;
14114                color: GENLIST_PART_BG_COLOR_INC;
14115             }
14116          }
14117          GENLIST_PART_BG_IMAGE
14118          GENLIST_PART_BOTTOM_LINE
14119          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
14120          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_18_INC )
14121          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
14122          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
14123          part { name: "elm.icon";
14124             clip_to: "disclip";
14125             type: SWALLOW;
14126             scale: 1;
14127             description { state: "default" 0.0;
14128                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
14129                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
14130                fixed: 1 1;
14131                rel1 {
14132                   relative: 1.0 1.0;
14133                   to_x: "elm.padding.left";
14134                   to_y: "elm.padding.top";
14135                }
14136                rel2 {
14137                   relative: 1.0 1.0;
14138                   to_x: "elm.padding.left";
14139                   to_y: "elm.text.1";
14140                }
14141                align: 0.0 0.5;
14142             }
14143             GENLIST_DESCRIPTION_FLIP_ENABLED
14144          }
14145          part { name: "elm.padding.icon.right";
14146             clip_to: "disclip";
14147             type: RECT;
14148             scale: 1;
14149             description { state: "default" 0.0;
14150                min: GENLIST_PADDING_16_INC 0;
14151                fixed: 1 0;
14152                rel1 {
14153                   relative: 1.0 0.0;
14154                   to_x: "elm.icon";
14155                }
14156                rel2.to_x: "elm.icon";
14157                align: 0.0 0.0;
14158                visible: 0;
14159             }
14160          }
14161          part { name: "elm.text.1";
14162             clip_to: "disclip";
14163             type: TEXT;
14164             mouse_events: 0;
14165             scale: 1;
14166             description { state: "default" 0.0;
14167                min: 0 GENLIST_SIZE_48_INC;
14168                fixed: 0 1;
14169                rel1 {
14170                   relative: 1.0 1.0;
14171                   to_x: "elm.padding.icon.right";
14172                   to_y: "elm.padding.top";
14173                }
14174                rel2 {
14175                   relative: 0.0 1.0;
14176                   to_x: "elm.padding.right";
14177                   to_y: "elm.padding.top";
14178                }
14179                align: 0.0 0.0;
14180                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
14181                text {
14182                   font: "SLP:style=Roman";
14183                   size: GENLIST_FONT_42_INC;
14184                   min: 0 1;
14185                   align: 0.0 0.5;
14186                   text_class: "list_item";
14187                }
14188             }
14189             description { state: "selected" 0.0;
14190                inherit: "default" 0.0;
14191                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
14192             }
14193          }
14194          part { name: "elm.text.2";
14195             clip_to: "disclip";
14196             type: TEXTBLOCK;
14197             mouse_events: 0;
14198             scale: 1;
14199             description { state: "default" 0.0;
14200                rel1 {
14201                   relative: 1.0 1.0;
14202                   to_x: "elm.padding.left";
14203                   to_y: "elm.text.1";
14204                }
14205                rel2 {
14206                   relative: 0.0 0.0;
14207                   to_x: "elm.padding.right";
14208                   to_y: "elm.padding.bottom";
14209                }
14210                text {
14211                   style: "genlist_textblock_sub_style";
14212                   min: 0 1;
14213                   align: 0.0 0.5;
14214                }
14215             }
14216             description { state: "selected" 0.0;
14217                inherit: "default" 0.0;
14218                text.style: "genlist_textblock_sub_selected_style";
14219             }
14220          }
14221          GENLIST_PART_DISCLIP
14222       }
14223       programs {
14224          // signal: elm,state,%s,active
14225          //   a "check" item named %s went active
14226          // signal: elm,state,%s,passive
14227          //   a "check" item named %s went passive
14228          // default is passive
14229          program { name: "go_active";
14230             signal: "elm,state,selected";
14231             source: "elm";
14232             action: STATE_SET "selected" 0.0;
14233             target: "bg_image";
14234             target: "elm.text.1";
14235             target: "elm.text.2";
14236             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14237          }
14238          program { name: "go_passive";
14239             signal: "elm,state,unselected";
14240             source: "elm";
14241             action: STATE_SET "default" 0.0;
14242             target: "bg_image";
14243             target: "elm.text.1";
14244             target: "elm.text.2";
14245             transition: LINEAR 0.1;
14246          }
14247          program { name: "go_disabled";
14248             signal: "elm,state,disabled";
14249             source: "elm";
14250             action: STATE_SET "disabled" 0.0;
14251             target: "disclip";
14252          }
14253          program { name: "go_enabled";
14254             signal: "elm,state,enabled";
14255             source: "elm";
14256             action: STATE_SET "default" 0.0;
14257             target: "disclip";
14258          }
14259          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14260       }
14261    }
14262
14263    group { name: "elm/genlist/item/readmessage/default";
14264       alias: "elm/genlist/item_odd/readmessage/default";
14265       alias: "elm/genlist/item_compress/readmessage/default";
14266       alias: "elm/genlist/item_compress_odd/readmessage/default";
14267
14268       data.item: "stacking" "above";
14269       data.item: "selectraise" "on";
14270       data.item: "contents" "elm.icon";
14271       parts {
14272          part { name: "base";
14273             type: RECT;
14274             repeat_events: 1;
14275             description { state: "default" 0.0;
14276                color: GENLIST_PART_LIST_BG_COLOR_INC;
14277             }
14278          }
14279          part { name: "elm.icon";
14280             clip_to: "disclip";
14281             type: SWALLOW;
14282             scale: 1;
14283             description { state: "default" 0.0;
14284                //rel1 { relative: 0.0 1.0; to_y: "elm.rect.top.pad"; }
14285                rel2 {
14286                   relative: 0.76 0.0;
14287                   to_y: "elm.padding.bottom";
14288                }
14289             }
14290          }
14291          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_24_INC )
14292          GENLIST_PART_DISCLIP
14293       }
14294       programs {
14295          // signal: elm,state,%s,active
14296          //   a "check" item named %s went active
14297          // signal: elm,state,%s,passive
14298          //   a "check" item named %s went passive
14299          // default is passive
14300          /*program { name: "go_active";
14301             signal: "elm,state,selected";
14302             source: "elm";
14303             action: STATE_SET "selected" 0.0;
14304             target: "bg_image";
14305          }
14306          program { name: "go_passive";
14307             signal: "elm,state,unselected";
14308             source: "elm";
14309             action: STATE_SET "default" 0.0;
14310             target: "bg_image";
14311             transition: LINEAR 0.1;
14312          }*/
14313          program { name: "go_disabled";
14314             signal: "elm,state,disabled";
14315             source: "elm";
14316             action: STATE_SET "disabled" 0.0;
14317             target: "disclip";
14318          }
14319          program { name: "go_enabled";
14320             signal: "elm,state,enabled";
14321             source: "elm";
14322             action: STATE_SET "default" 0.0;
14323             target: "disclip";
14324          }
14325       }
14326    }
14327
14328    group { name: "elm/genlist/item/sentmessage/default";
14329       alias: "elm/genlist/item_odd/sentmessage/default";
14330       alias: "elm/genlist/item_compress/sentmessage/default";
14331       alias: "elm/genlist/item_compress_odd/sentmessage/default";
14332
14333       data.item: "stacking" "above";
14334       data.item: "selectraise" "on";
14335       data.item: "contents" "elm.icon";
14336       parts {
14337          part { name: "base";
14338             type: RECT;
14339             repeat_events: 1;
14340             description { state: "default" 0.0;
14341                color: GENLIST_PART_LIST_BG_COLOR_INC;
14342             }
14343          }
14344          part { name: "elm.icon";
14345             clip_to: "disclip";
14346             type: SWALLOW;
14347             scale: 1;
14348             description { state: "default" 0.0;
14349                rel1.relative: 0.24 0.0; //to_y: "elm.rect.top.pad"; }
14350                rel2 {
14351                   relative: 1.0 0.0;
14352                   to_y: "elm.padding.bottom";
14353                }
14354             }
14355          }
14356          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_24_INC )
14357          GENLIST_PART_DISCLIP
14358       }
14359       programs {
14360          // signal: elm,state,%s,active
14361          //   a "check" item named %s went active
14362          // signal: elm,state,%s,passive
14363          //   a "check" item named %s went passive
14364          // default is passive
14365          /*program { name: "go_active";
14366             signal: "elm,state,selected";
14367             source: "elm";
14368             action: STATE_SET "selected" 0.0;
14369             target: "bg_image";
14370          }
14371          program { name: "go_passive";
14372             signal: "elm,state,unselected";
14373             source: "elm";
14374             action: STATE_SET "default" 0.0;
14375             target: "bg_image";
14376             transition: LINEAR 0.1;
14377          }*/
14378          program { name: "go_disabled";
14379             signal: "elm,state,disabled";
14380             source: "elm";
14381             action: STATE_SET "disabled" 0.0;
14382             target: "disclip";
14383          }
14384          program { name: "go_enabled";
14385             signal: "elm,state,enabled";
14386             source: "elm";
14387             action: STATE_SET "default" 0.0;
14388             target: "disclip";
14389          }
14390       }
14391    }
14392
14393 // 2.4.4.1
14394    group { name : "elm/genlist/item/dialogue/title/default";
14395       alias: "elm/genlist/item_odd/dialogue/title/default";
14396       alias: "elm/genlist/item_compress/dialogue/title/default";
14397       alias: "elm/genlist/item_compress_odd/dialogue/title/default";
14398       alias: "elm/layout/dialogue/title";
14399       alias: "elm/genlist/item/dialogue/grouptitle/default";
14400       alias: "elm/genlist/item_odd/dialogue/grouptitle/default";
14401       alias: "elm/genlist/item_compress/dialogue/grouptitle/default";
14402       alias: "elm/genlist/item_compress_odd/dialogue/grouptitle/default";
14403       alias: "elm/layout/dialogue/grouptitle";
14404
14405       data.item: "stacking" "above";
14406       data.item: "selectraise" "on";
14407       data.item: "texts" "elm.text";
14408       data.item: "contents" "elm.icon";
14409       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14410
14411       parts {
14412  //        GENLIST_PART_BASE_EVENT_OFF
14413          GENLIST_PART_DISCLIP
14414          GENLIST_DIALOGUE_PART_BASE(   GENLIST_GT_H )
14415          GENLIST_PART_PADDING_TOP(     GENLIST_GT_PAD_T_H )
14416          GENLIST_PART_PADDING_BOTTOM(  GENLIST_GT_PAD_B_H )
14417          GENLIST_PART_PADDING_LEFT(    GENLIST_GT_PAD_L_W )
14418          GENLIST_PART_PADDING_RIGHT(   GENLIST_GT_PAD_R_W )
14419          GENLIST_PART_BOTTOM_LINE
14420          part { name: "elm.text";
14421             type: TEXT;
14422             scale: 1;
14423             description { state: "default" 0.0;
14424                align: 0.0 0.0;
14425                rel1 {
14426                   relative: 1.0 1.0;
14427                   to_x: "elm.padding.left";
14428                   to_y: "elm.padding.top";
14429                }
14430                rel2 {
14431                   relative: 0.0 0.0;
14432                   offset: GENLIST_GT_PAD_M_W 0;
14433                   to_x: "elm.icon";
14434                   to_y: "elm.padding.bottom";
14435                }
14436                color: GENLIST_DIALOGUE_GT_TEXT_COLOR;
14437                text {
14438                   font: "SLP:style=Medium";
14439                   size: GENLIST_FONT_28_INC;
14440                   min: 0 1;
14441                   align: 0.0 0.5;
14442                   text_class: "list_item";
14443                }
14444             }
14445          }
14446          part { name: "elm.icon";
14447             type: SWALLOW;
14448             scale: 1;
14449             description { state: "default" 0.0;
14450                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
14451                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
14452                fixed: 1 1;
14453                            align: 1.0 1.0;
14454                rel2 {
14455                   relative: 0.0 0.0;
14456                   to_x: "elm.padding.right";
14457                   to_y: "elm.padding.bottom";
14458                }
14459             }
14460          }
14461       }
14462    }
14463
14464 // Dialogue Group Separators
14465 // default separator
14466 // FIXME: style (dialogue) might be moved to last words (as-is default)
14467 // FIXME: seperator --> separator typo
14468 // FIXME: Check whether below separators are used now..
14469    group { name : "elm/genlist/item/dialogue/separator/default";
14470       alias: "elm/genlist/item_odd/dialogue/separator/default";
14471       alias: "elm/genlist/item_compress/dialogue/separator/default";
14472       alias: "elm/genlist/item_compress_odd/dialogue/separator/default";
14473           //FIXME: below name should be used??
14474       alias: "elm/genlist/item/dialogue/separator/21/with_line/default";
14475       alias: "elm/genlist/item_odd/dialogue/separator/21/with_line/default";
14476       alias: "elm/genlist/item_compress/dialogue/separator/21/with_line/default";
14477       alias: "elm/genlist/item_compress_odd/dialogue/separator/21/with_line/default";
14478       alias: "elm/layout/dialogue/separator/hd33/with_line";
14479
14480       data.item: "stacking" "above";
14481       data.item: "selectraise" "on";
14482       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14483
14484       parts {
14485          GENLIST_PART_DIALOGUE_BASE(GENLIST_DIALOGUE_SEPARATOR_DEFAULT_HEIGHT + 1)
14486          GENLIST_PART_BOTTOM_LINE
14487          GENLIST_PART_DISCLIP
14488       }
14489    }
14490
14491    group { name : "elm/genlist/item/dialogue/separator/end/default";
14492       alias: "elm/genlist/item_odd/dialogue/separator/end/default";
14493       alias: "elm/genlist/item_compress/dialogue/separator/end/default";
14494       alias: "elm/genlist/item_compress_odd/dialogue/separator/end/default";
14495       data.item: "stacking" "above";
14496       data.item: "selectraise" "on";
14497       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14498       parts {
14499          GENLIST_PART_DIALOGUE_BASE(GENLIST_DIALOGUE_SEPARATOR_DEFAULT_HEIGHT)
14500          GENLIST_PART_DISCLIP
14501       }
14502    }
14503
14504    group { name : "elm/genlist/item/dialogue/seperator.2/default";
14505       alias: "elm/genlist/item_odd/dialogue/seperator.2/default";
14506       alias: "elm/genlist/item_compress/dialogue/seperator.2/default";
14507       alias: "elm/genlist/item_compress_odd/dialogue/seperator.2/default";
14508       alias: "elm/genlist/item/dialogue/separator/11/with_line/default";
14509       alias: "elm/genlist/item_odd/dialogue/separator/11/with_line/default";
14510       alias: "elm/genlist/item_compress/dialogue/separator/11/with_line/default";
14511       alias: "elm/genlist/item_compress_odd/dialogue/separator/11/with_line/default";
14512       alias: "elm/layout/dialogue/separator/hd18/with_line";
14513
14514       data.item: "stacking" "above";
14515       data.item: "selectraise" "on";
14516       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14517
14518       parts {
14519          GENLIST_PART_DIALOGUE_BASE( GENLIST_PADDING_18_INC )
14520          GENLIST_PART_BOTTOM_LINE
14521          GENLIST_PART_DISCLIP
14522       }
14523    }
14524
14525    group { name : "elm/genlist/item/dialogue/seperator.3/default";
14526       alias: "elm/genlist/item_odd/dialogue/seperator.3/default";
14527       alias: "elm/genlist/item_compress/dialogue/seperator.3/default";
14528       alias: "elm/genlist/item_compress_odd/dialogue/seperator.3/default";
14529       alias: "elm/genlist/item/dialogue/separator/20/default";
14530       alias: "elm/genlist/item_odd/dialogue/separator/20/default";
14531       alias: "elm/genlist/item_compress/dialogue/separator/20/default";
14532       alias: "elm/genlist/item_compress_odd/dialogue/separator/20/default";
14533       alias: "elm/layout/dialogue/separator/hd32";
14534
14535       data.item: "stacking" "above";
14536       data.item: "selectraise" "on";
14537       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14538
14539       parts {
14540          GENLIST_PART_DIALOGUE_BASE( GENLIST_PADDING_32_INC )
14541          GENLIST_PART_DISCLIP
14542       }
14543    }
14544
14545    group { name : "elm/genlist/item/dialogue/seperator.4/default";
14546       alias: "elm/genlist/item_odd/dialogue/seperator.4/default";
14547       alias: "elm/genlist/item_compress/dialogue/seperator.4/default";
14548       alias: "elm/genlist/item_compress_odd/dialogue/seperator.4/default";
14549       alias: "elm/genlist/item/dialogue/separator/10/default";
14550       alias: "elm/genlist/item_odd/dialogue/separator/10/default";
14551       alias: "elm/genlist/item_compress/dialogue/separator/10/default";
14552       alias: "elm/genlist/item_compress_odd/dialogue/separator/10/default";
14553       alias: "elm/layout/dialogue/separator/hd16";
14554
14555       data.item: "stacking" "above";
14556       data.item: "selectraise" "on";
14557       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14558
14559       parts {
14560          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_16_INC )
14561          GENLIST_PART_DISCLIP
14562       }
14563    }
14564
14565    group { name : "elm/genlist/item/dialogue/seperator.5/default";
14566       alias: "elm/genlist/item_odd/dialogue/seperator.5/default";
14567       alias: "elm/genlist/item_compress/dialogue/seperator.5/default";
14568       alias: "elm/genlist/item_compress_odd/dialogue/seperator.5/default";
14569       alias: "elm/genlist/item/dialogue/separator/1/with_line/default";
14570       alias: "elm/genlist/item_odd/dialogue/separator/1/with_line/default";
14571       alias: "elm/genlist/item_compress/dialogue/separator/1/with_line/default";
14572       alias: "elm/genlist/item_compress_odd/dialogue/separator/1/with_line/default";
14573       alias: "elm/layout/dialogue/separator/hd1";
14574
14575       data.item: "stacking" "above";
14576       data.item: "selectraise" "on";
14577       data.item: "treesize" "GENLIST_TREESIZE_DEFAULT";
14578
14579       parts {
14580          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_1_INC )
14581          GENLIST_PART_BOTTOM_LINE
14582          GENLIST_PART_DISCLIP
14583       }
14584    }
14585
14586 // 4.1.1
14587    group { name: "elm/genlist/item/dialogue/1text/default";
14588       alias: "elm/genlist/item_odd/dialogue/1text/default";
14589       alias: "elm/genlist/item_compress/dialogue/1text/default";
14590       alias: "elm/genlist/item_compress_odd/dialogue/1text/default";
14591       alias: "elm/genlist/item/dialogue.1text/default";
14592       alias: "elm/genlist/item_odd/dialogue.1text/default";
14593       alias: "elm/genlist/item_compress/dialogue.1text/default";
14594       alias: "elm/genlist/item_compress_odd/dialogue.1text/default";
14595       alias: "elm/layout/dialogue/1text";
14596       data.item: "stacking" "above";
14597       data.item: "selectraise" "on";
14598       data.item: "texts" "elm.text";
14599       data.item: "flips" "elm.flip.content";
14600       parts {
14601          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
14602          GENLIST_PART_DIALOGUE_BG_IMAGE
14603          GENLIST_PART_BOTTOM_LINE
14604          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
14605          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
14606          GENLIST_PART_DIALOGUE_ITEM
14607          GENLIST_PART_DIALOGUE_RIGHT_LINE
14608          part { name: "elm.text";
14609             clip_to: "disclip";
14610             type: TEXT;
14611             mouse_events: 0;
14612             scale: 1;
14613             description { state: "default" 0.0;
14614                rel1 {
14615                   relative: 1.0  0.0;
14616                   to_x: "elm.padding.left";
14617                }
14618                rel2 {
14619                   relative: 0.0 1.0;
14620                   to_x: "elm.padding.right";
14621                }
14622                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
14623                text {
14624                   font: "SLP:style=Roman";
14625                   size: GENLIST_FONT_44_INC;
14626                   min: 0 1;
14627                   align: 0.0 0.5;
14628                   text_class: "list_item";
14629                }
14630             }
14631             description { state: "selected" 0.0;
14632                inherit: "default" 0.0;
14633                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
14634             }
14635             GENLIST_DESCRIPTION_FLIP_ENABLED
14636          }
14637          GENLIST_PART_FLIP
14638          GENLIST_PART_DISCLIP
14639       }
14640       programs {
14641          // signal: elm,state,%s,active
14642          //   a "check" item named %s went active
14643          // signal: elm,state,%s,passive
14644          //   a "check" item named %s went passive
14645          // default is passive
14646          program { name: "go_active";
14647             signal: "elm,state,selected";
14648             source: "elm";
14649             action: STATE_SET "selected" 0.0;
14650             target: "bg_image";
14651             target: "elm.text";
14652             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14653          }
14654          program { name: "go_passive";
14655             signal: "elm,state,unselected";
14656             source: "elm";
14657             action: STATE_SET "default" 0.0;
14658             target: "bg_image";
14659             target: "elm.text";
14660             transition: LINEAR 0.1;
14661          }
14662          program { name: "go_disabled";
14663             signal: "elm,state,disabled";
14664             source: "elm";
14665             action: STATE_SET "disabled" 0.0;
14666             target: "disclip";
14667          }
14668          program { name: "go_enabled";
14669             signal: "elm,state,enabled";
14670             source: "elm";
14671             action: STATE_SET "default" 0.0;
14672             target: "disclip";
14673          }
14674          //GENLIST_PROGRAM_FLIP_1TEXT
14675          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14676       }
14677    }
14678
14679 // 4.1.2
14680    group { name: "elm/genlist/item/dialogue/1text.1icon/default";
14681       alias: "elm/genlist/item_odd/dialogue/1text.1icon/default";
14682       alias: "elm/genlist/item_compress/dialogue/1text.1icon/default";
14683       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon/default";
14684       alias: "elm/layout/dialogue/1text.1icon";
14685       data.item: "stacking" "above";
14686       data.item: "selectraise" "on";
14687       data.item: "texts" "elm.text";
14688       data.item: "contents" "elm.icon";
14689       data.item: "flips" "elm.flip.content";
14690       parts {
14691          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
14692          GENLIST_PART_DIALOGUE_BG_IMAGE
14693          GENLIST_PART_BOTTOM_LINE
14694          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
14695          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
14696          GENLIST_PART_DIALOGUE_ITEM
14697          GENLIST_PART_DIALOGUE_RIGHT_LINE
14698          part { name: "elm.icon";
14699             clip_to: "disclip";
14700             type: SWALLOW;
14701             scale: 1;
14702             description { state: "default" 0.0;
14703                fixed: 1 1;
14704                rel1.to_x: "elm.padding.right";
14705                rel2 {
14706                   relative: 0.0 1.0;
14707                   to_x: "elm.padding.right";
14708                }
14709                align: 1.0 0.5;
14710             }
14711             GENLIST_DESCRIPTION_FLIP_ENABLED
14712          }
14713          part { name: "elm.padding.icon.left";
14714             clip_to: "disclip";
14715             type: RECT;
14716             scale: 1;
14717             description { state: "default" 0.0;
14718                min: GENLIST_PADDING_16_INC 0;
14719                fixed: 1 0;
14720                rel1.to_x: "elm.icon";
14721                rel2 {
14722                   relative: 0.0 1.0;
14723                   to_x: "elm.icon";
14724                }
14725                align: 1.0 0.0;
14726                visible: 0;
14727             }
14728          }
14729          part { name: "elm.text";
14730             clip_to: "disclip";
14731             type: TEXT;
14732             mouse_events: 0;
14733             scale: 1;
14734             description { state: "default" 0.0;
14735                rel1 {
14736                   relative: 1.0 0.0;
14737                   to_x: "elm.padding.left";
14738                }
14739                rel2 {
14740                   relative: 0.0 1.0;
14741                   to_x: "elm.padding.icon.left";
14742                }
14743                align: 0.0 0.0;
14744                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
14745                text {
14746                   font: "SLP:style=Roman";
14747                   size: GENLIST_FONT_44_INC;
14748                   min: 0 1;
14749                   align: 0.0 0.5;
14750                   text_class: "list_item";
14751                }
14752             }
14753             description { state: "selected" 0.0;
14754                inherit: "default" 0.0;
14755                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
14756             }
14757             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
14758             GENLIST_DESCRIPTION_FLIP_ENABLED
14759          }
14760          GENLIST_PART_FLIP
14761          GENLIST_PART_DISCLIP
14762       }
14763       programs {
14764          program { name: "go_active";
14765             signal: "elm,state,selected";
14766             source: "elm";
14767             action: STATE_SET "selected" 0.0;
14768             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_1TEXT
14769             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14770          }
14771          program { name: "go_passive";
14772             signal: "elm,state,unselected";
14773             source: "elm";
14774             action: STATE_SET "default" 0.0;
14775             target: "bg_image";
14776             target: "elm.text";
14777             transition: LINEAR 0.1;
14778          }
14779          program { name: "go_disabled";
14780             signal: "elm,state,disabled";
14781             source: "elm";
14782             action: STATE_SET "disabled" 0.0;
14783             target: "disclip";
14784          }
14785          program { name: "go_enabled";
14786             signal: "elm,state,enabled";
14787             source: "elm";
14788             action: STATE_SET "default" 0.0;
14789             target: "disclip";
14790          }
14791          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
14792          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14793       }
14794    }
14795
14796 // 4.1.3
14797    group { name: "elm/genlist/item/dialogue/1text.1icon.2/default";
14798       alias: "elm/genlist/item_odd/dialogue/1text.1icon.2/default";
14799       alias: "elm/genlist/item_compress/dialogue/1text.1icon.2/default";
14800       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.2/default";
14801       alias: "elm/layout/dialogue/1text.1icon.2";
14802       data.item: "stacking" "above";
14803       data.item: "selectraise" "on";
14804       data.item: "texts" "elm.text";
14805       data.item: "contents" "elm.icon";
14806       data.item: "flips" "elm.flip.content";
14807       parts {
14808          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
14809          GENLIST_PART_DIALOGUE_BG_IMAGE
14810          GENLIST_PART_BOTTOM_LINE
14811          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
14812          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
14813          GENLIST_PART_DIALOGUE_ITEM
14814          GENLIST_PART_DIALOGUE_RIGHT_LINE
14815          part { name: "elm.icon";
14816             clip_to: "disclip";
14817             type: SWALLOW;
14818             scale: 1;
14819             description { state: "default" 0.0;
14820                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
14821                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
14822                fixed: 1 1;
14823                rel1 {
14824                   relative: 1.0 0.0;
14825                   to_x: "elm.padding.left";
14826                }
14827                rel2 {
14828                   relative: 1.0 1.0;
14829                   to_x: "elm.padding.left";
14830                }
14831                align: 0.0 0.5;
14832             }
14833             GENLIST_DESCRIPTION_FLIP_ENABLED
14834          }
14835          part { name: "elm.padding.icon.right";
14836             clip_to: "disclip";
14837             type: RECT;
14838             scale: 1;
14839             description { state: "default" 0.0;
14840                min: GENLIST_PADDING_16_INC 0;
14841                fixed: 1 0;
14842                rel1 {
14843                   relative: 1.0 0.0;
14844                   to_x: "elm.icon";
14845                }
14846                rel2.to_x: "elm.icon";
14847                align: 0.0 0.0;
14848                visible: 0;
14849             }
14850          }
14851          part { name: "elm.text";
14852             clip_to: "disclip";
14853             type: TEXT;
14854             mouse_events: 0;
14855             scale: 1;
14856             description { state: "default" 0.0;
14857                rel1 {
14858                   relative: 1.0 0.0;
14859                   to_x: "elm.padding.icon.right";
14860                }
14861                rel2 {
14862                   relative: 0.0 1.0;
14863                   to_x: "elm.padding.right";
14864                }
14865                align: 0.0 0.0;
14866                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
14867                text {
14868                   font: "SLP:style=Roman";
14869                   size: GENLIST_FONT_44_INC;
14870                   min: 0 1;
14871                   align: 0.0 0.5;
14872                   text_class: "list_item";
14873                }
14874             }
14875             description { state: "selected" 0.0;
14876                inherit: "default" 0.0;
14877                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
14878             }
14879             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
14880             GENLIST_DESCRIPTION_FLIP_ENABLED
14881          }
14882          GENLIST_PART_FLIP
14883          GENLIST_PART_DISCLIP
14884       }
14885       programs {
14886          program { name: "go_active";
14887             signal: "elm,state,selected";
14888             source: "elm";
14889             action: STATE_SET "selected" 0.0;
14890             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_1TEXT
14891             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
14892          }
14893          program { name: "go_passive";
14894             signal: "elm,state,unselected";
14895             source: "elm";
14896             action: STATE_SET "default" 0.0;
14897             target: "bg_image";
14898             target: "elm.text";
14899             transition: LINEAR 0.1;
14900          }
14901          program { name: "go_disabled";
14902             signal: "elm,state,disabled";
14903             source: "elm";
14904             action: STATE_SET "disabled" 0.0;
14905             target: "disclip";
14906          }
14907          program { name: "go_enabled";
14908             signal: "elm,state,enabled";
14909             source: "elm";
14910             action: STATE_SET "default" 0.0;
14911             target: "disclip";
14912          }
14913          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
14914          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
14915       }
14916    }
14917
14918 // 4.1.4
14919    group { name: "elm/genlist/item/dialogue/1text.2icon/default";
14920       alias: "elm/genlist/item_odd/dialogue/1text.2icon/default";
14921       alias: "elm/genlist/item_compress/dialogue/1text.2icon/default";
14922       alias: "elm/genlist/item_compress_odd/dialogue/1text.2icon/default";
14923       alias: "elm/layout/dialogue/1text.2icon";
14924       data.item: "stacking" "above";
14925       data.item: "selectraise" "on";
14926       data.item: "texts" "elm.text";
14927       data.item: "contents" "elm.icon.1 elm.icon.2";
14928       data.item: "flips" "elm.flip.content";
14929       parts {
14930          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
14931          GENLIST_PART_DIALOGUE_BG_IMAGE
14932          GENLIST_PART_BOTTOM_LINE
14933          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
14934          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
14935          GENLIST_PART_DIALOGUE_ITEM
14936          GENLIST_PART_DIALOGUE_RIGHT_LINE
14937          part { name: "elm.icon.1";
14938             clip_to: "disclip";
14939             type: SWALLOW;
14940             scale: 1;
14941             description { state: "default" 0.0;
14942                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
14943                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
14944                fixed: 1 1;
14945                rel1 {
14946                   relative: 1.0 0.0;
14947                   to_x: "elm.padding.left";
14948                }
14949                rel2 {
14950                   relative: 1.0 1.0;
14951                   to_x: "elm.padding.left";
14952                }
14953                align: 0.0 0.5;
14954             }
14955             GENLIST_DESCRIPTION_FLIP_ENABLED
14956          }
14957          part { name: "elm.padding.icon.right";
14958             clip_to: "disclip";
14959             type: RECT;
14960             scale: 1;
14961             description { state: "default" 0.0;
14962                min: GENLIST_PADDING_16_INC 0;
14963                fixed: 1 0;
14964                rel1 {
14965                   relative: 1.0 0.0;
14966                   to_x: "elm.icon.1";
14967                }
14968                rel2.to_x: "elm.icon.1";
14969                align: 0.0 0.0;
14970                visible: 0;
14971             }
14972          }
14973          part { name: "elm.icon.2";
14974             clip_to: "disclip";
14975             type: SWALLOW;
14976             scale: 1;
14977             description { state: "default" 0.0;
14978                fixed: 1 1;
14979                rel1.to_x: "elm.padding.right";
14980                rel2 {
14981                   relative: 0.0 1.0;
14982                   to_x: "elm.padding.right";
14983                }
14984                align: 1.0 0.5;
14985             }
14986             GENLIST_DESCRIPTION_FLIP_ENABLED
14987          }
14988          part { name: "elm.padding.icon.left";
14989             clip_to: "disclip";
14990             type: RECT;
14991             scale: 1;
14992             description { state: "default" 0.0;
14993                min: GENLIST_PADDING_16_INC 0;
14994                fixed: 1 0;
14995                rel1.to_x: "elm.icon.2";
14996                rel2 {
14997                   relative: 0.0 1.0;
14998                   to_x: "elm.icon.2";
14999                }
15000                align: 1.0 0.0;
15001                visible: 0;
15002             }
15003          }
15004          part { name: "elm.text";
15005             clip_to: "disclip";
15006             type: TEXT;
15007             mouse_events: 0;
15008             scale: 1;
15009             description { state: "default" 0.0;
15010                rel1 {
15011                   relative: 1.0 0.0;
15012                   to_x: "elm.padding.icon.right";
15013                }
15014                rel2 {
15015                   relative: 0.0 1.0;
15016                   to_x: "elm.padding.icon.left";
15017                }
15018                align: 0.0 0.0;
15019                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
15020                text {
15021                   font: "SLP:style=Roman";
15022                   size: GENLIST_FONT_44_INC;
15023                   min: 0 1;
15024                   align: 0.0 0.5;
15025                   text_class: "list_item";
15026                }
15027             }
15028             description { state: "selected" 0.0;
15029                inherit: "default" 0.0;
15030                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
15031             }
15032             GENLIST_DESCRIPTION_FLIP_ENABLED
15033          }
15034          GENLIST_PART_FLIP
15035          GENLIST_PART_DISCLIP
15036       }
15037       programs {
15038          program { name: "go_active";
15039             signal: "elm,state,selected";
15040             source: "elm";
15041             action: STATE_SET "selected" 0.0;
15042             target: "bg_image";
15043             target: "elm.text";
15044             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15045          }
15046          program { name: "go_passive";
15047             signal: "elm,state,unselected";
15048             source: "elm";
15049             action: STATE_SET "default" 0.0;
15050             target: "bg_image";
15051             target: "elm.text";
15052             transition: LINEAR 0.1;
15053          }
15054          program { name: "go_disabled";
15055             signal: "elm,state,disabled";
15056             source: "elm";
15057             action: STATE_SET "disabled" 0.0;
15058             target: "disclip";
15059          }
15060          program { name: "go_enabled";
15061             signal: "elm,state,enabled";
15062             source: "elm";
15063             action: STATE_SET "default" 0.0;
15064             target: "disclip";
15065          }
15066          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
15067          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15068       }
15069    }
15070
15071 // 4.1.5
15072    group { name: "elm/genlist/item/dialogue/2text.1icon/default";
15073       alias: "elm/genlist/item_odd/dialogue/2text.1icon/default";
15074       alias: "elm/genlist/item_compress/dialogue/2text.1icon/default";
15075       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon/default";
15076       alias: "elm/layout/dialogue/2text.1icon";
15077       data.item: "stacking" "above";
15078       data.item: "selectraise" "on";
15079       data.item: "texts" "elm.text.1 elm.text.2";
15080       data.item: "contents" "elm.icon";
15081       data.item: "flips" "elm.flip.content";
15082       parts {
15083          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
15084          GENLIST_PART_DIALOGUE_BG_IMAGE
15085          GENLIST_PART_BOTTOM_LINE
15086          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15087          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15088          GENLIST_PART_DIALOGUE_ITEM
15089          GENLIST_PART_DIALOGUE_RIGHT_LINE
15090          part { name: "elm.icon";
15091             clip_to: "disclip";
15092             type: SWALLOW;
15093             scale: 1;
15094             description { state: "default" 0.0;
15095                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15096                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15097                fixed: 1 1;
15098                rel1 {
15099                   relative: 1.0 0.0;
15100                   to_x: "elm.padding.left";
15101                }
15102                rel2 {
15103                   relative: 1.0 1.0;
15104                   to_x: "elm.padding.left";
15105                }
15106                align: 0.0 0.5;
15107             }
15108             GENLIST_DESCRIPTION_FLIP_ENABLED
15109          }
15110          part { name: "elm.padding.icon.right";
15111             clip_to: "disclip";
15112             type: RECT;
15113             scale: 1;
15114             description { state: "default" 0.0;
15115                min: GENLIST_PADDING_16_INC 0;
15116                fixed: 1 0;
15117                rel1 {
15118                   relative: 1.0 0.0;
15119                   to_x: "elm.icon";
15120                }
15121                rel2.to_x: "elm.icon";
15122                align: 0.0 0.0;
15123                visible: 0;
15124             }
15125          }
15126          part { name: "elm.text.2";
15127             clip_to: "disclip";
15128             type: TEXT;
15129             mouse_events: 0;
15130             scale: 1;
15131             description { state: "default" 0.0;
15132                min: GENLIST_SIZE_133_INC 0;
15133                fixed: 1 0;
15134                rel1.to_x: "elm.padding.right";
15135                rel2 {
15136                   relative: 0.0 1.0;
15137                   to_x: "elm.padding.right";
15138                }
15139                align: 1.0 0.5;
15140                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;;
15141                text {
15142                   font: "SLP:style=Medium";
15143                   size: GENLIST_FONT_32_INC;
15144                   min: 0 1;
15145                   align: 1.0 0.5;
15146                   text_class: "slp_medium";
15147                }
15148             }
15149             description { state: "selected" 0.0;
15150                inherit: "default" 0.0;
15151                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
15152             }
15153             GENLIST_DESCRIPTION_FLIP_ENABLED
15154          }
15155          part { name: "elm.padding.text2.left";
15156             type: RECT;
15157             mouse_events: 0;
15158             scale: 1;
15159             description { state: "default" 0.0;
15160                min: GENLIST_ICON_SMALL_SIZE 0;
15161                fixed: 1 0;
15162                rel1.to_x: "elm.text.2";
15163                rel2 {
15164                   relative: 0.0 1.0;
15165                   to_x: "elm.text.2";
15166                }
15167                visible: 0;
15168                align: 1.0 0.5;
15169             }
15170          }
15171          part { name: "elm.text.1";
15172             clip_to: "disclip";
15173             type: TEXT;
15174             mouse_events: 0;
15175             scale: 1;
15176             description { state: "default" 0.0;
15177                rel1 {
15178                   relative: 1.0 0.0;
15179                   to_x: "elm.padding.icon.right";
15180                }
15181                rel2 {
15182                   relative: 0.0 1.0;
15183                   to_x: "elm.padding.text2.left";
15184                }
15185                align: 0.0 0.0;
15186                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
15187                text {
15188                   font: "SLP:style=Roman";
15189                   size: GENLIST_FONT_44_INC;
15190                   min: 0 1;
15191                   align: 0.0 0.5;
15192                   text_class: "list_item";
15193                }
15194             }
15195             description { state: "selected" 0.0;
15196                inherit: "default" 0.0;
15197                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
15198             }
15199             GENLIST_DESCRIPTION_FLIP_ENABLED
15200          }
15201          GENLIST_PART_FLIP
15202          GENLIST_PART_DISCLIP
15203       }
15204       programs {
15205          program { name: "go_active";
15206             signal: "elm,state,selected";
15207             source: "elm";
15208             action: STATE_SET "selected" 0.0;
15209             target: "bg_image";
15210             target: "elm.text.1";
15211             target: "elm.text.2";
15212             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15213          }
15214          program { name: "go_passive";
15215             signal: "elm,state,unselected";
15216             source: "elm";
15217             action: STATE_SET "default" 0.0;
15218             target: "bg_image";
15219             target: "elm.text.1";
15220             target: "elm.text.2";
15221             transition: LINEAR 0.1;
15222          }
15223          program { name: "go_disabled";
15224             signal: "elm,state,disabled";
15225             source: "elm";
15226             action: STATE_SET "disabled" 0.0;
15227             target: "disclip";
15228          }
15229          program { name: "go_enabled";
15230             signal: "elm,state,enabled";
15231             source: "elm";
15232             action: STATE_SET "default" 0.0;
15233             target: "disclip";
15234          }
15235          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
15236          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15237       }
15238    }
15239 //
15240 // 4.1.6 textblock for message
15241    group { name: "elm/genlist/item/dialogue/1text.1icon.6/default";
15242       alias: "elm/genlist/item_odd/dialogue/1text.1icon.6/default";
15243       alias: "elm/genlist/item_compress/dialogue/1text.1icon.6/default";
15244       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.6/default";
15245       alias: "elm/layout/dialogue/1text.1icon.6";
15246       data.item: "stacking" "above";
15247       data.item: "selectraise" "on";
15248       data.item: "texts" "elm.text";
15249       data.item: "contents" "elm.icon";
15250       data.item: "flips" "elm.flip.content";
15251       parts {
15252          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
15253          GENLIST_PART_DIALOGUE_BG_IMAGE
15254          GENLIST_PART_BOTTOM_LINE
15255          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15256          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15257          GENLIST_PART_DIALOGUE_ITEM
15258          GENLIST_PART_DIALOGUE_RIGHT_LINE
15259          part { name: "elm.icon";
15260             clip_to: "disclip";
15261             type: SWALLOW;
15262             scale: 1;
15263             description { state: "default" 0.0;
15264                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
15265                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
15266                fixed: 1 1;
15267                rel1 {
15268                   relative: 1.0 0.0;
15269                   to_x: "elm.padding.left";
15270                }
15271                rel2 {
15272                   relative: 1.0 1.0;
15273                   to_x: "elm.padding.left";
15274                }
15275                align: 0.0 0.5;
15276             }
15277             GENLIST_DESCRIPTION_FLIP_ENABLED
15278          }
15279          part { name: "elm.padding.icon.right";
15280             type: RECT;
15281             scale: 1;
15282             description { state: "default" 0.0;
15283                min: GENLIST_PADDING_16_INC 0;
15284                fixed: 1 0;
15285                rel1 {
15286                   relative: 1.0 0.0;
15287                   to_x: "elm.icon";
15288                }
15289                rel2.to_x: "elm.icon";
15290                align: 0.0 0.0;
15291                visible: 0;
15292             }
15293          }
15294          part { name: "elm.text";
15295             clip_to: "disclip";
15296             type: TEXTBLOCK;
15297             mouse_events: 0;
15298             scale: 1;
15299             description { state: "default" 0.0;
15300                rel1 {
15301                   relative: 1.0 0.0;
15302                   to_x: "elm.padding.icon.right";
15303                }
15304                rel2 {
15305                   relative: 0.0 1.0;
15306                   to_x: "elm.padding.right";
15307                }
15308                align: 0.0 0.5;
15309                text {
15310                   style: "genlist_default_textblock_style";
15311                   min: 0 1;
15312                   align: 0.0 0.5;
15313                }
15314             }
15315             description { state: "selected" 0.0;
15316                inherit: "default" 0.0;
15317                text.style: "genlist_default_textblock_selected_style";
15318             }
15319             GENLIST_DESCRIPTION_FLIP_ENABLED
15320          }
15321          GENLIST_PART_FLIP
15322          GENLIST_PART_DISCLIP
15323       }
15324       programs {
15325          program { name: "go_active";
15326             signal: "elm,state,selected";
15327             source: "elm";
15328             action: STATE_SET "selected" 0.0;
15329             target: "bg_image";
15330             target: "elm.text";
15331             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15332          }
15333          program { name: "go_passive";
15334             signal: "elm,state,unselected";
15335             source: "elm";
15336             action: STATE_SET "default" 0.0;
15337             target: "bg_image";
15338             target: "elm.text";
15339             transition: LINEAR 0.1;
15340          }
15341          program { name: "go_disabled";
15342             signal: "elm,state,disabled";
15343             source: "elm";
15344             action: STATE_SET "disabled" 0.0;
15345             target: "disclip";
15346          }
15347          program { name: "go_enabled";
15348             signal: "elm,state,enabled";
15349             source: "elm";
15350             action: STATE_SET "default" 0.0;
15351             target: "disclip";
15352          }
15353          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
15354          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15355       }
15356    }
15357
15358 // 4.1.17
15359    group { name: "elm/genlist/item/dialogue/1text.1icon.4/default";
15360       alias: "elm/genlist/item_odd/dialogue/1text.1icon.4/default";
15361       alias: "elm/genlist/item_compress/dialogue/1text.1icon.4/default";
15362       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.4/default";
15363       alias: "elm/layout/dialogue/1text.1icon.4";
15364       data.item: "stacking" "above";
15365       data.item: "selectraise" "on";
15366       data.item: "texts" "elm.text";
15367       data.item: "contents" "elm.icon";
15368       data.item: "flips" "elm.flip.content";
15369       parts {
15370          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
15371          GENLIST_PART_DIALOGUE_BG_IMAGE
15372          GENLIST_PART_BOTTOM_LINE
15373          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15374          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15375          GENLIST_PART_DIALOGUE_ITEM
15376          GENLIST_PART_DIALOGUE_RIGHT_LINE
15377          part { name: "elm.icon";
15378             clip_to: "disclip";
15379             type: SWALLOW;
15380             scale: 1;
15381             description { state: "default" 0.0;
15382                min: 60 60;
15383                max: 60 60;
15384                fixed: 1 1;
15385                rel1.to_x: "elm.padding.right";
15386                rel2 {
15387                   relative: 0.0 1.0;
15388                   to_x: "elm.padding.right";
15389                }
15390                align: 1.0 0.5;
15391             }
15392             GENLIST_DESCRIPTION_FLIP_ENABLED
15393          }
15394          part { name: "elm.padding.icon.left";
15395             clip_to: "disclip";
15396             type: RECT;
15397             scale: 1;
15398             description { state: "default" 0.0;
15399                min: 10 0;
15400                fixed: 1 0;
15401                rel1.to_x: "elm.icon";
15402                rel2 {
15403                   relative: 0.0 1.0;
15404                   to_x: "elm.icon";
15405                }
15406                align: 1.0 0.0;
15407                visible: 0;
15408             }
15409          }
15410          part { name: "elm.text";
15411             clip_to: "disclip";
15412             type: TEXT;
15413             mouse_events: 0;
15414             scale: 1;
15415             description { state: "default" 0.0;
15416                rel1 {
15417                   relative: 1.0 0.0;
15418                   to_x: "elm.padding.left";
15419                }
15420                rel2 {
15421                   relative: 0.0 1.0;
15422                   to_x: "elm.padding.icon.left";
15423                }
15424                align: 0.0 0.0;
15425                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
15426                text {
15427                   font: "SLP:style=Roman";
15428                   size: GENLIST_FONT_44_INC;
15429                   min: 0 1;
15430                   align: 0.0 0.5;
15431                   text_class: "list_item";
15432                }
15433             }
15434             description { state: "selected" 0.0;
15435                inherit: "default" 0.0;
15436                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
15437             }
15438             GENLIST_DESCRIPTION_FLIP_ENABLED
15439          }
15440          GENLIST_PART_FLIP
15441          GENLIST_PART_DISCLIP
15442       }
15443       programs {
15444          program { name: "go_active";
15445             signal: "elm,state,selected";
15446             source: "elm";
15447             action: STATE_SET "selected" 0.0;
15448             target: "bg_image";
15449             target: "elm.text";
15450             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15451          }
15452          program { name: "go_passive";
15453             signal: "elm,state,unselected";
15454             source: "elm";
15455             action: STATE_SET "default" 0.0;
15456             target: "bg_image";
15457             target: "elm.text";
15458             transition: LINEAR 0.1;
15459          }
15460          program { name: "go_disabled";
15461             signal: "elm,state,disabled";
15462             source: "elm";
15463             action: STATE_SET "disabled" 0.0;
15464             target: "disclip";
15465          }
15466          program { name: "go_enabled";
15467             signal: "elm,state,enabled";
15468             source: "elm";
15469             action: STATE_SET "default" 0.0;
15470             target: "disclip";
15471          }
15472          GENLIST_PROGRAM_FLIP_1TEXT_1ICON
15473          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15474       }
15475    }
15476
15477    // 4.1.19
15478    group { name: "elm/genlist/item/dialogue/1text.1icon.5/default";
15479       alias: "elm/genlist/item_odd/dialogue/1text.1icon.5/default";
15480       alias: "elm/genlist/item_compress/dialogue/1text.1icon.5/default";
15481       alias: "elm/genlist/item_compress_odd/dialogue/1text.1icon.5/default";
15482
15483       data.item: "stacking" "above";
15484       data.item: "selectraise" "on";
15485       data.item: "texts" "elm.text.1";
15486       data.item: "contents" "elm.icon.1";
15487
15488       parts {
15489          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
15490                  GENLIST_PART_DIALOGUE_BG_IMAGE
15491          GENLIST_PART_BOTTOM_LINE
15492          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
15493          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
15494          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15495          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15496          GENLIST_PART_DIALOGUE_ITEM
15497          GENLIST_PART_DIALOGUE_RIGHT_LINE
15498          part { name: "elm.text.1";
15499             clip_to: "disclip";
15500             type: TEXT;
15501             mouse_events: 0;
15502             scale: 1;
15503             description { state: "default" 0.0;
15504                min: 0 GENLIST_SIZE_48_INC;
15505                fixed: 0 1;
15506                rel1 {
15507                   relative: 1.0 1.0;
15508                   to_x: "elm.padding.left";
15509                   to_y: "elm.padding.top";
15510                }
15511                rel2 {
15512                   relative: 0.0 1.0;
15513                   to_x: "elm.padding.right";
15514                   to_y: "elm.padding.top";
15515                }
15516                align: 0.0 0.0;
15517                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
15518                text {
15519                   font: "SLP:style=Medium";
15520                   size: GENLIST_FONT_32_INC;
15521                   min: 0 1;
15522                   align: 0.0 0.5;
15523                   text_class: "list_item";
15524                }
15525             }
15526             description { state: "selected" 0.0;
15527                inherit: "default" 0.0;
15528                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
15529             }
15530             GENLIST_DESCRIPTION_FLIP_ENABLED
15531          }
15532          part { name: "elm.icon.1";
15533             clip_to: "disclip";
15534             type: SWALLOW;
15535             scale: 1;
15536             description { state: "default" 0.0;
15537                rel1 {
15538                   relative: 1.0 1.0;
15539                   to_x: "elm.padding.left";
15540                   to_y: "elm.text.1";
15541                }
15542                rel2 {
15543                   relative: 0.0 0.0;
15544                   to_x: "elm.padding.right";
15545                   to_y: "elm.padding.bottom";
15546                }
15547             }
15548          }
15549          GENLIST_PART_DISCLIP
15550       }
15551       programs {
15552          // signal: elm,state,%s,active
15553          //   a "check" item named %s went active
15554          // signal: elm,state,%s,passive
15555          //   a "check" item named %s went passive
15556          // default is passive
15557          /*program { name: "go_active";
15558             signal: "elm,state,selected";
15559             source: "elm";
15560             action: STATE_SET "selected" 0.0;
15561             target: "bg_image";
15562             target: "elm.text";
15563          }
15564          program { name: "go_passive";
15565             signal: "elm,state,unselected";
15566             source: "elm";
15567             action: STATE_SET "default" 0.0;
15568             target: "bg_image";
15569             target: "elm.text";
15570             transition: LINEAR 0.1;
15571          }*/
15572          program { name: "go_disabled";
15573             signal: "elm,state,disabled";
15574             source: "elm";
15575             action: STATE_SET "disabled" 0.0;
15576             target: "disclip";
15577          }
15578          program { name: "go_enabled";
15579             signal: "elm,state,enabled";
15580             source: "elm";
15581             action: STATE_SET "default" 0.0;
15582             target: "disclip";
15583          }
15584       }
15585    }
15586
15587    group { name: "elm/genlist/item/dialogue/2text.5/default";
15588       alias: "elm/genlist/item_odd/dialogue/2text.5/default";
15589       alias: "elm/genlist/item_compress/dialogue/2text.5/default";
15590       alias: "elm/genlist/item_compress_odd/dialogue/2text.5/default";
15591       data.item: "stacking" "above";
15592       data.item: "selectraise" "on";
15593       data.item: "texts" "elm.text.1 elm.text.2";
15594       data.item: "flips" "elm.flip.content";
15595       parts {
15596          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
15597          GENLIST_PART_DIALOGUE_BG_IMAGE
15598          GENLIST_PART_BOTTOM_LINE
15599          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15600          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15601          GENLIST_PART_DIALOGUE_ITEM
15602          GENLIST_PART_DIALOGUE_RIGHT_LINE
15603          part { name: "elm.text.2";
15604             clip_to: "disclip";
15605             type: TEXT;
15606             mouse_events: 0;
15607             scale: 1;
15608             description { state: "default" 0.0;
15609                min: GENLIST_SIZE_154_INC 0;
15610                fixed: 1 0;
15611                rel1.to_x: "elm.padding.right";
15612                rel2 {
15613                   relative: 0.0 1.0;
15614                   to_x: "elm.padding.right";
15615                }
15616                align: 1.0 0.5;
15617                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;;
15618                text {
15619                   font: "SLP:style=Medium";
15620                   size: GENLIST_FONT_32_INC;
15621                   min: 0 1;
15622                   align: 1.0 0.5;
15623                   text_class: "slp_roman";
15624                }
15625             }
15626             description { state: "selected" 0.0;
15627                inherit: "default" 0.0;
15628                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
15629             }
15630             GENLIST_DESCRIPTION_FLIP_ENABLED
15631          }
15632          part { name: "elm.padding.text2.left";
15633             type: RECT;
15634             mouse_events: 0;
15635             scale: 1;
15636             description { state: "default" 0.0;
15637                min: GENLIST_ICON_SMALL_SIZE 0;
15638                fixed: 1 0;
15639                rel1.to_x: "elm.text.2";
15640                rel2 {
15641                   relative: 0.0 1.0;
15642                   to_x: "elm.text.2";
15643                }
15644                visible: 0;
15645                align: 1.0 0.5;
15646             }
15647          }
15648          part { name: "elm.text.1";
15649             clip_to: "disclip";
15650             type: TEXT;
15651             mouse_events: 0;
15652             scale: 1;
15653             description { state: "default" 0.0;
15654                rel1 {
15655                   relative: 1.0 0.0;
15656                   to_x: "elm.padding.left";
15657                }
15658                rel2 {
15659                   relative: 0.0 1.0;
15660                   to_x: "elm.padding.text2.left";
15661                }
15662                align: 0.0 0.0;
15663                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
15664                text {
15665                   font: "SLP:style=Roman";
15666                   size: GENLIST_FONT_44_INC;
15667                   min: 0 1;
15668                   align: 0.0 0.5;
15669                   text_class: "list_item";
15670                }
15671             }
15672             description { state: "selected" 0.0;
15673                inherit: "default" 0.0;
15674                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
15675             }
15676             GENLIST_DESCRIPTION_FLIP_ENABLED
15677          }
15678          GENLIST_PART_FLIP
15679          GENLIST_PART_DISCLIP
15680       }
15681       programs {
15682          program { name: "go_active";
15683             signal: "elm,state,selected";
15684             source: "elm";
15685             action: STATE_SET "selected" 0.0;
15686             target: "bg_image";
15687             target: "elm.text.1";
15688             target: "elm.text.2";
15689             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15690          }
15691          program { name: "go_passive";
15692             signal: "elm,state,unselected";
15693             source: "elm";
15694             action: STATE_SET "default" 0.0;
15695             target: "bg_image";
15696             target: "elm.text.1";
15697             target: "elm.text.2";
15698             transition: LINEAR 0.1;
15699          }
15700          program { name: "go_disabled";
15701             signal: "elm,state,disabled";
15702             source: "elm";
15703             action: STATE_SET "disabled" 0.0;
15704             target: "disclip";
15705          }
15706          program { name: "go_enabled";
15707             signal: "elm,state,enabled";
15708             source: "elm";
15709             action: STATE_SET "default" 0.0;
15710             target: "disclip";
15711          }
15712          GENLIST_PROGRAM_FLIP_2TEXT
15713          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15714          //GENLIST_PROGRAM_FLIP_1TEXT
15715       }
15716    }
15717
15718    group { name: "elm/genlist/item/dialogue/1text.2icon.2/default";
15719       alias: "elm/genlist/item_odd/dialogue/1text.2icon.2/default";
15720       alias: "elm/genlist/item_compress/dialogue/1text.2icon.2/default";
15721       alias: "elm/genlist/item_compress_odd/dialogue/1text.2icon.2/default";
15722       alias: "elm/layout/dialogue/1text.2icon.2";
15723       data.item: "stacking" "above";
15724       data.item: "selectraise" "on";
15725       data.item: "texts" "elm.text";
15726       data.item: "contents" "elm.icon.1 elm.icon.2";
15727       data.item: "flips" "elm.flip.content";
15728       parts {
15729          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
15730          GENLIST_PART_DIALOGUE_BG_IMAGE
15731          GENLIST_PART_BOTTOM_LINE
15732          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15733          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15734          GENLIST_PART_DIALOGUE_ITEM
15735          GENLIST_PART_DIALOGUE_RIGHT_LINE
15736          part { name: "elm.icon.1";
15737             clip_to: "disclip";
15738             type: SWALLOW;
15739             scale: 1;
15740             description { state: "default" 0.0;
15741                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
15742                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
15743                fixed: 1 1;
15744                rel1 {
15745                   relative: 1.0 0.0;
15746                   to_x: "elm.padding.left";
15747                }
15748                rel2 {
15749                   relative: 1.0 1.0;
15750                   to_x: "elm.padding.left";
15751                }
15752                align: 0.0 0.5;
15753             }
15754             GENLIST_DESCRIPTION_FLIP_ENABLED
15755          }
15756          part { name: "elm.padding.icon1.right";
15757             clip_to: "disclip";
15758             type: RECT;
15759             scale: 1;
15760             description { state: "default" 0.0;
15761                min: GENLIST_PADDING_16_INC 0;
15762                fixed: 1 0;
15763                rel1 {
15764                   relative: 1.0 0.0;
15765                   to_x: "elm.icon.1";
15766                }
15767                rel2.to_x: "elm.icon.1";
15768                align: 0.0 0.0;
15769                visible: 0;
15770             }
15771          }
15772          part { name: "elm.icon.2";
15773             clip_to: "disclip";
15774             type: SWALLOW;
15775             scale: 1;
15776             description { state: "default" 0.0;
15777                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15778                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15779                fixed: 1 1;
15780                rel1.to_x: "elm.padding.right";
15781                rel2 {
15782                   relative: 0.0 1.0;
15783                   to_x: "elm.padding.right";
15784                }
15785                align: 1.0 0.5;
15786             }
15787             GENLIST_DESCRIPTION_FLIP_ENABLED
15788          }
15789          part { name: "elm.padding.icon2.left";
15790             clip_to: "disclip";
15791             type: RECT;
15792             scale: 1;
15793             description { state: "default" 0.0;
15794                min: GENLIST_PADDING_16_INC 0;
15795                fixed: 1 0;
15796                rel1.to_x: "elm.icon.2";
15797                rel2 {
15798                   relative: 0.0 1.0;
15799                   to_x: "elm.icon.2";
15800                }
15801                align: 1.0 0.0;
15802                visible: 0;
15803             }
15804          }
15805          part { name: "elm.text";
15806             clip_to: "disclip";
15807             type: TEXT;
15808             mouse_events: 0;
15809             scale: 1;
15810             description { state: "default" 0.0;
15811                rel1 {
15812                   relative: 1.0 0.0;
15813                   to_x: "elm.padding.icon1.right";
15814                }
15815                rel2 {
15816                   relative: 0.0 1.0;
15817                   to_x: "elm.padding.icon2.left";
15818                }
15819                align: 0.0 0.0;
15820                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
15821                text {
15822                   font: "SLP:style=Roman";
15823                   size: GENLIST_FONT_44_INC;
15824                   min: 0 1;
15825                   align: 0.0 0.5;
15826                   text_class: "list_item";
15827                }
15828             }
15829             description { state: "selected" 0.0;
15830                inherit: "default" 0.0;
15831                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
15832             }
15833             GENLIST_DESCRIPTION_FLIP_ENABLED
15834          }
15835          GENLIST_PART_FLIP
15836          GENLIST_PART_DISCLIP
15837       }
15838       programs {
15839          program { name: "go_active";
15840             signal: "elm,state,selected";
15841             source: "elm";
15842             action: STATE_SET "selected" 0.0;
15843             target: "bg_image";
15844             target: "elm.text";
15845             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
15846          }
15847          program { name: "go_passive";
15848             signal: "elm,state,unselected";
15849             source: "elm";
15850             action: STATE_SET "default" 0.0;
15851             target: "bg_image";
15852             target: "elm.text";
15853             transition: LINEAR 0.1;
15854          }
15855          program { name: "go_disabled";
15856             signal: "elm,state,disabled";
15857             source: "elm";
15858             action: STATE_SET "disabled" 0.0;
15859             target: "disclip";
15860          }
15861          program { name: "go_enabled";
15862             signal: "elm,state,enabled";
15863             source: "elm";
15864             action: STATE_SET "default" 0.0;
15865             target: "disclip";
15866          }
15867          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
15868          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
15869       }
15870    }
15871
15872    group { name: "elm/genlist/item/dialogue/1text.3icon/default";
15873       alias: "elm/genlist/item_odd/dialogue/1text.3icon/default";
15874       alias: "elm/genlist/item_compress/dialogue/1text.3icon/default";
15875       alias: "elm/genlist/item_compress_odd/dialogue/1text.3icon/default";
15876       alias: "elm/layout/dialogue/1text.3icon";
15877       data.item: "stacking" "above";
15878       data.item: "selectraise" "on";
15879       data.item: "texts" "elm.text";
15880       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
15881       data.item: "flips" "elm.flip.content";
15882       parts {
15883          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
15884          GENLIST_PART_DIALOGUE_BG_IMAGE
15885          GENLIST_PART_BOTTOM_LINE
15886          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
15887          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
15888          GENLIST_PART_DIALOGUE_ITEM
15889          GENLIST_PART_DIALOGUE_RIGHT_LINE
15890          part { name: "elm.icon.1";
15891             clip_to: "disclip";
15892             type: SWALLOW;
15893             scale: 1;
15894             description { state: "default" 0.0;
15895                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
15896                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
15897                fixed: 1 1;
15898                rel1 {
15899                   relative: 1.0 0.0;
15900                   to_x: "elm.padding.left";
15901                }
15902                rel2 {
15903                   relative: 1.0 1.0;
15904                   to_x: "elm.padding.left";
15905                }
15906                align: 0.0 0.5;
15907             }
15908             GENLIST_DESCRIPTION_FLIP_ENABLED
15909          }
15910          part { name: "elm.padding.icon1.right";
15911             clip_to: "disclip";
15912             type: RECT;
15913             scale: 1;
15914             description { state: "default" 0.0;
15915                min: GENLIST_PADDING_16_INC 0;
15916                fixed: 1 0;
15917                rel1 {
15918                   relative: 1.0 0.0;
15919                   to_x: "elm.icon.1";
15920                }
15921                rel2.to_x: "elm.icon.1";
15922                align: 0.0 0.0;
15923                visible: 0;
15924             }
15925          }
15926          part { name: "elm.icon.3";
15927             clip_to: "disclip";
15928             type: SWALLOW;
15929             scale: 1;
15930             description { state: "default" 0.0;
15931                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15932                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15933                fixed: 1 1;
15934                rel1.to_x: "elm.padding.right";
15935                rel2 {
15936                   relative: 0.0 1.0;
15937                   to_x: "elm.padding.right";
15938                }
15939                align: 1.0 0.5;
15940             }
15941             GENLIST_DESCRIPTION_FLIP_ENABLED
15942          }
15943          part { name: "elm.padding.icon3.left";
15944             clip_to: "disclip";
15945             type: RECT;
15946             scale: 1;
15947             description { state: "default" 0.0;
15948                min: GENLIST_PADDING_16_INC 0;
15949                fixed: 1 0;
15950                rel1.to_x: "elm.icon.3";
15951                rel2 {
15952                   relative: 0.0 1.0;
15953                   to_x: "elm.icon.3";
15954                }
15955                align: 1.0 0.0;
15956                visible: 0;
15957             }
15958          }
15959          part { name: "elm.icon.2";
15960             clip_to: "disclip";
15961             type: SWALLOW;
15962             scale: 1;
15963             description { state: "default" 0.0;
15964                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15965                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
15966                fixed: 1 1;
15967                rel1.to_x: "elm.padding.icon3.left";
15968                rel2 {
15969                   relative: 0.0 1.0;
15970                   to_x: "elm.padding.icon3.left";
15971                }
15972                align: 1.0 0.5;
15973             }
15974             GENLIST_DESCRIPTION_FLIP_ENABLED
15975          }
15976          part { name: "elm.padding.icon2.left";
15977             clip_to: "disclip";
15978             type: RECT;
15979             scale: 1;
15980             description { state: "default" 0.0;
15981                min: GENLIST_PADDING_16_INC 0;
15982                fixed: 1 0;
15983                rel1.to_x: "elm.icon.2";
15984                rel2 {
15985                   relative: 0.0 1.0;
15986                   to_x: "elm.icon.2";
15987                }
15988                align: 0.0 0.0;
15989                visible: 0;
15990             }
15991          }
15992          part { name: "elm.text";
15993             clip_to: "disclip";
15994             type: TEXT;
15995             mouse_events: 0;
15996             scale: 1;
15997             description { state: "default" 0.0;
15998                rel1 {
15999                   relative: 1.0 0.0;
16000                   to_x: "elm.padding.icon1.right";
16001                }
16002                rel2 {
16003                   relative: 0.0 1.0;
16004                   to_x: "elm.padding.icon2.left";
16005                }
16006                align: 0.0 0.5;
16007                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
16008                text {
16009                   font: "SLP:style=Roman";
16010                   size: GENLIST_FONT_44_INC;
16011                   min: 0 1;
16012                   align: 0.0 0.5;
16013                   text_class: "list_item";
16014                }
16015             }
16016             description { state: "selected" 0.0;
16017                inherit: "default" 0.0;
16018                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
16019             }
16020             GENLIST_DESCRIPTION_FLIP_ENABLED
16021          }
16022          GENLIST_PART_FLIP
16023          GENLIST_PART_DISCLIP
16024       }
16025       programs {
16026          // signal: elm,state,%s,active
16027          //   a "check" item named %s went active
16028          // signal: elm,state,%s,passive
16029          //   a "check" item named %s went passive
16030          // default is passive
16031          program { name: "go_active";
16032             signal: "elm,state,selected";
16033             source: "elm";
16034             action: STATE_SET "selected" 0.0;
16035             target: "bg_image";
16036             target: "elm.text";
16037             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
16038          }
16039          program { name: "go_passive";
16040             signal: "elm,state,unselected";
16041             source: "elm";
16042             action: STATE_SET "default" 0.0;
16043             target: "bg_image";
16044             target: "elm.text";
16045             transition: LINEAR 0.1;
16046          }
16047          program { name: "go_disabled";
16048             signal: "elm,state,disabled";
16049             source: "elm";
16050             action: STATE_SET "disabled" 0.0;
16051             target: "disclip";
16052          }
16053          program { name: "go_enabled";
16054             signal: "elm,state,enabled";
16055             source: "elm";
16056             action: STATE_SET "default" 0.0;
16057             target: "disclip";
16058          }
16059          GENLIST_PROGRAM_FLIP_1TEXT_3ICON
16060          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
16061          //GENLIST_PROGRAM_FLIP_1TEXT
16062       }
16063    }
16064
16065    /* password style 4.2.13 */
16066    /* on landscape mode, 4 swallow parts will be placed left-align basis with having padding on the right side. */
16067    group { name: "elm/genlist/item/dialogue/1text.4icon/default";
16068       alias: "elm/genlist/item_odd/dialogue/1text.4icon/default";
16069       alias: "elm/genlist/item_compress/dialogue/1text.4icon/default";
16070       alias: "elm/genlist/item_compress_odd/dialogue/1text.4icon/default";
16071       alias: "elm/layout/dialogue/4icon";
16072       data.item: "stacking" "above";
16073       data.item: "selectraise" "on";
16074       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4";
16075       data.item: "texts" "elm.text.1";
16076       images {
16077          image : "00_input_bg.png" COMP;
16078       }
16079       parts {
16080          GENLIST_PART_BASE( GENLIST_HEIGHT_207_INC )
16081          GENLIST_PART_DIALOGUE_BG_IMAGE
16082          GENLIST_PART_BOTTOM_LINE
16083          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
16084          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_24_INC )
16085          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
16086          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
16087          GENLIST_PART_DIALOGUE_ITEM
16088          GENLIST_PART_DIALOGUE_RIGHT_LINE
16089          part { name: "elm.text.1";
16090             clip_to: "disclip";
16091             type: TEXT;
16092             mouse_events: 0;
16093             scale: 1;
16094             description { state: "default" 0.0;
16095                fixed: 1 1;
16096                rel1 {
16097                   relative: 1.0 0.0;
16098                   to_x: "elm.padding.left";
16099                   to_y: "elm.icon.1";
16100                }
16101                rel2 {
16102                   relative: 0.0 1.0;
16103                   to_x: "elm.padding.right";
16104                   to_y: "elm.padding.top";
16105                }
16106                color: GENLIST_DIALOGUE_FONT_PASSWORD_TITLE_COLOR_INC;
16107                text {
16108                   font: "SLP:style=Medium";
16109                   size: GENLIST_FONT_32_INC;
16110                   min: 0 1;
16111                   align: 0.0 0.5;
16112                   text_class: "list_item";
16113                }
16114             }
16115             description { state: "selected" 0.0;
16116                inherit: "default" 0.0;
16117                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
16118             }
16119          }
16120          part { name: "elm.padding.icon1.left";
16121             clip_to: "disclip";
16122             type: RECT;
16123             scale: 1;
16124             description { state: "default" 0.0;
16125                min: GENLIST_PADDING_74_INC 0;
16126                fixed: 1 0;
16127                rel1 {
16128                   relative: 1.0 0.0;
16129                   to_x: "elm.rect.dialogue";
16130                   to_y: "elm.padding.bottom";
16131                }
16132                rel2 {
16133                   relative: 1.0 0.0;
16134                   to_x: "elm.rect.dialogue";
16135                   to_y: "elm.padding.bottom";
16136                }
16137                align: 0.0 1.0;
16138                visible: 0;
16139             }
16140          }
16141          part { name: "elm.icon1.bg";
16142             clip_to: "disclip";
16143             type: IMAGE;
16144             scale: 1;
16145             description { state: "default" 0.0;
16146                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
16147                fixed: 1 1;
16148                rel1 {
16149                   relative: 1.0 0.0;
16150                   to_x: "elm.padding.icon1.left";
16151                   to_y: "elm.padding.bottom";
16152                }
16153                rel2 {
16154                   relative: 1.0 0.0;
16155                   to_x: "elm.padding.icon1.left";
16156                   to_y: "elm.padding.bottom";
16157                }
16158                align: 0.0 1.0;
16159                image.normal: "00_input_bg.png";
16160                image.border: 5 5 5 5;
16161                image.border_scale: 1;
16162             }
16163          }
16164          part { name: "elm.icon.1";
16165             clip_to: "disclip";
16166             type: SWALLOW;
16167             scale: 1;
16168             description { state: "default" 0.0;
16169                rel1 {
16170                   to: "elm.icon1.bg";
16171                   offset: 2 2;
16172                }
16173                rel2 {
16174                   to: "elm.icon1.bg";
16175                   offset: -3 -3;
16176                }
16177                align: 0.5 0.5;
16178             }
16179          }
16180          part { name: "elm.padding.icon2.left";
16181             clip_to: "disclip";
16182             type: RECT;
16183             scale: 1;
16184             description { state: "default" 0.0;
16185                min: GENLIST_ICON_SMALL_SIZE 0;
16186                fixed: 1 0;
16187                rel1 {
16188                   relative: 1.0 0.0;
16189                   to_x: "elm.icon1.bg";
16190                   to_y: "elm.padding.bottom";
16191                }
16192                rel2 {
16193                   relative: 1.0 0.0;
16194                   to_x: "elm.icon1.bg";
16195                   to_y: "elm.padding.bottom";
16196                }
16197                align: 0.0 1.0;
16198                visible: 0;
16199             }
16200          }
16201          part { name: "elm.icon2.bg";
16202             clip_to: "disclip";
16203             type: IMAGE;
16204             scale: 1;
16205             description { state: "default" 0.0;
16206                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
16207                fixed: 1 1;
16208                rel1 {
16209                   relative: 1.0 0.0;
16210                   to_x: "elm.padding.icon2.left";
16211                   to_y: "elm.padding.bottom";
16212                }
16213                rel2 {
16214                   relative: 1.0 0.0;
16215                   to_x: "elm.padding.icon2.left";
16216                   to_y: "elm.padding.bottom";
16217                }
16218                align: 0.0 1.0;
16219                image.normal: "00_input_bg.png";
16220                image.border: 5 5 5 5;
16221                image.border_scale: 1;
16222             }
16223          }
16224          part { name: "elm.icon.2";
16225             clip_to: "disclip";
16226             type: SWALLOW;
16227             scale: 1;
16228             description { state: "default" 0.0;
16229                rel1 {
16230                   to: "elm.icon2.bg";
16231                   offset: 2 2;
16232                }
16233                rel2 {
16234                   to: "elm.icon2.bg";
16235                   offset: -3 -3;
16236                }
16237                align: 0.5 0.5;
16238             }
16239          }
16240          part { name: "elm.padding.icon3.left";
16241             clip_to: "disclip";
16242             type: RECT;
16243             scale: 1;
16244             description { state: "default" 0.0;
16245                min: GENLIST_ICON_SMALL_SIZE 0;
16246                fixed: 1 0;
16247                rel1 {
16248                   relative: 1.0 0.0;
16249                   to_x: "elm.icon2.bg";
16250                   to_y: "elm.padding.bottom";
16251                }
16252                rel2 {
16253                   relative: 1.0 0.0;
16254                   to_x: "elm.icon2.bg";
16255                   to_y: "elm.padding.bottom";
16256                }
16257                align: 0.0 1.0;
16258                visible: 0;
16259             }
16260          }
16261          part { name: "elm.icon3.bg";
16262             clip_to: "disclip";
16263             type: IMAGE;
16264             scale: 1;
16265             description { state: "default" 0.0;
16266                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
16267                fixed: 1 1;
16268                rel1 {
16269                   relative: 1.0 0.0;
16270                   to_x: "elm.padding.icon3.left";
16271                   to_y: "elm.padding.bottom";
16272                }
16273                rel2 {
16274                   relative: 1.0 0.0;
16275                   to_x: "elm.padding.icon3.left";
16276                   to_y: "elm.padding.bottom";
16277                }
16278                align: 0.0 1.0;
16279                image.normal: "00_input_bg.png";
16280                image.border: 5 5 5 5;
16281                image.border_scale: 1;
16282             }
16283          }
16284          part { name: "elm.icon.3";
16285             clip_to: "disclip";
16286             type: SWALLOW;
16287             scale: 1;
16288             description { state: "default" 0.0;
16289                rel1 {
16290                   to: "elm.icon3.bg";
16291                   offset: 2 2;
16292                }
16293                rel2 {
16294                   to: "elm.icon3.bg";
16295                   offset: -3 -3;
16296                }
16297                align: 0.5 0.5;
16298             }
16299          }
16300          part { name: "elm.padding.icon4.left";
16301             clip_to: "disclip";
16302             type: RECT;
16303             scale: 1;
16304             description { state: "default" 0.0;
16305                min: GENLIST_ICON_SMALL_SIZE 0;
16306                fixed: 1 0;
16307                rel1 {
16308                   relative: 1.0 0.0;
16309                   to_x: "elm.icon3.bg";
16310                   to_y: "elm.padding.bottom";
16311                }
16312                rel2 {
16313                   relative: 1.0 0.0;
16314                   to_x: "elm.icon3.bg";
16315                   to_y: "elm.padding.bottom";
16316                }
16317                align: 0.0 1.0;
16318                visible: 0;
16319             }
16320          }
16321          part { name: "elm.icon4.bg";
16322             clip_to: "disclip";
16323             type: IMAGE;
16324             scale: 1;
16325             description { state: "default" 0.0;
16326                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
16327                fixed: 1 1;
16328                rel1 {
16329                   relative: 1.0 0.0;
16330                   to_x: "elm.padding.icon4.left";
16331                   to_y: "elm.padding.bottom";
16332                }
16333                rel2 {
16334                   relative: 1.0 0.0;
16335                   to_x: "elm.padding.icon4.left";
16336                   to_y: "elm.padding.bottom";
16337                }
16338                align: 0.0 1.0;
16339                image.normal: "00_input_bg.png";
16340                image.border: 5 5 5 5;
16341                image.border_scale: 1;
16342             }
16343          }
16344          part { name: "elm.icon.4";
16345             clip_to: "disclip";
16346             type: SWALLOW;
16347             scale: 1;
16348             description { state: "default" 0.0;
16349                rel1 {
16350                   to: "elm.icon4.bg";
16351                   offset: 2 2;
16352                }
16353                rel2 {
16354                   to: "elm.icon4.bg";
16355                   offset: -3 -3;
16356                }
16357                align: 0.5 0.5;
16358             }
16359          }
16360          GENLIST_PART_DISCLIP
16361       }
16362       programs {
16363          // signal: elm,state,%s,active
16364          //   a "check" item named %s went active
16365          // signal: elm,state,%s,passive
16366          //   a "check" item named %s went passive
16367          // default is passive
16368          /*program { name: "go_active";
16369             signal: "elm,state,selected";
16370             source: "elm";
16371             action: STATE_SET "selected" 0.0;
16372             target: "bg_image";
16373             target: "elm.text.1";
16374             target: "elm.text.2";
16375          }
16376          program { name: "go_passive";
16377             signal: "elm,state,unselected";
16378             source: "elm";
16379             action: STATE_SET "default" 0.0;
16380             target: "bg_image";
16381             target: "elm.text.1";
16382             target: "elm.text.2";
16383             transition: LINEAR 0.1;
16384          }*/
16385          program { name: "go_disabled";
16386             signal: "elm,state,disabled";
16387             source: "elm";
16388             action: STATE_SET "disabled" 0.0;
16389             target: "disclip";
16390          }
16391          program { name: "go_enabled";
16392             signal: "elm,state,enabled";
16393             source: "elm";
16394             action: STATE_SET "default" 0.0;
16395             target: "disclip";
16396          }
16397       }
16398    }
16399
16400    group { name: "elm/genlist/item/dialogue/3icon/default";
16401       alias: "elm/genlist/item_odd/dialogue/3icon/default";
16402       alias: "elm/genlist/item_compress/dialogue/3icon/default";
16403       alias: "elm/genlist/item_compress_odd/dialogue/3icon/default";
16404       alias: "elm/layout/dialogue/3icon";
16405       data.item: "stacking" "above";
16406       data.item: "selectraise" "on";
16407       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
16408       parts {
16409          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
16410          GENLIST_PART_DIALOGUE_BG_IMAGE
16411          GENLIST_PART_BOTTOM_LINE
16412          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
16413          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
16414          GENLIST_PART_DIALOGUE_ITEM
16415          GENLIST_PART_DIALOGUE_RIGHT_LINE
16416          part { name: "elm.icon.1";
16417             clip_to: "disclip";
16418             type: SWALLOW;
16419             scale: 1;
16420             description { state: "default" 0.0;
16421                min: GENLIST_SIZE_80_INC GENLIST_SIZE_80_INC;
16422                max: GENLIST_SIZE_80_INC GENLIST_SIZE_80_INC;
16423                fixed: 1 1;
16424                rel1 {
16425                   relative: 1.0 0.0;
16426                   to_x: "elm.padding.left";
16427                }
16428                rel2 {
16429                   relative: 1.0 1.0;
16430                   to_x: "elm.padding.left";
16431                }
16432                align: 0.0 0.5;
16433             }
16434             GENLIST_DESCRIPTION_FLIP_ENABLED
16435          }
16436          part { name: "elm.padding.icon1.right";
16437             clip_to: "disclip";
16438             type: RECT;
16439             scale: 1;
16440             description { state: "default" 0.0;
16441                min: GENLIST_PADDING_16_INC 0;
16442                fixed: 1 0;
16443                rel1 {
16444                   relative: 1.0 0.0;
16445                   to_x: "elm.icon.1";
16446                }
16447                rel2.to_x: "elm.icon.1";
16448                align: 0.0 0.0;
16449                visible: 0;
16450             }
16451          }
16452          part { name: "elm.icon.3";
16453             clip_to: "disclip";
16454             type: SWALLOW;
16455             scale: 1;
16456             description { state: "default" 0.0;
16457                min: GENLIST_SIZE_80_INC GENLIST_SIZE_80_INC;
16458                max: GENLIST_SIZE_80_INC GENLIST_SIZE_80_INC;
16459                fixed: 1 1;
16460                rel1.to_x: "elm.padding.right";
16461                rel2 {
16462                   relative: 0.0 1.0;
16463                   to_x: "elm.padding.right";
16464                }
16465                align: 1.0 0.5;
16466             }
16467             GENLIST_DESCRIPTION_FLIP_ENABLED
16468          }
16469          part { name: "elm.padding.icon3.left";
16470             clip_to: "disclip";
16471             type: RECT;
16472             scale: 1;
16473             description { state: "default" 0.0;
16474                min: GENLIST_PADDING_16_INC 0;
16475                fixed: 1 0;
16476                rel1.to_x: "elm.icon.3";
16477                rel2 {
16478                   relative: 0.0 1.0;
16479                   to_x: "elm.icon.3";
16480                }
16481                align: 1.0 0.0;
16482                visible: 0;
16483             }
16484          }
16485          part { name: "elm.icon.2";
16486             clip_to: "disclip";
16487             type: SWALLOW;
16488             scale: 1;
16489             description { state: "default" 0.0;
16490                rel1 {
16491                   relative: 1.0 0.0;
16492                   to_x: "elm.padding.icon1.right";
16493                }
16494                rel2 {
16495                   relative: 0.0 1.0;
16496                   to_x: "elm.padding.icon3.left";
16497                }
16498                align: 0.0 0.5;
16499             }
16500             GENLIST_DESCRIPTION_FLIP_ENABLED
16501          }
16502          GENLIST_PART_DISCLIP
16503       }
16504       programs {
16505          // signal: elm,state,%s,active
16506          //   a "check" item named %s went active
16507          // signal: elm,state,%s,passive
16508          //   a "check" item named %s went passive
16509          // default is passive
16510          program { name: "go_disabled";
16511             signal: "elm,state,disabled";
16512             source: "elm";
16513             action: STATE_SET "disabled" 0.0;
16514             target: "disclip";
16515          }
16516          program { name: "go_enabled";
16517             signal: "elm,state,enabled";
16518             source: "elm";
16519             action: STATE_SET "default" 0.0;
16520             target: "disclip";
16521          }
16522       }
16523    }
16524
16525    group { name: "elm/genlist/item/dialogue/2text.1icon.4/default";
16526       alias: "elm/genlist/item_odd/dialogue/2text.1icon.4/default";
16527       alias: "elm/genlist/item_compress/dialogue/2text.1icon.4/default";
16528       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.4/default";
16529       alias: "elm/layout/dialogue/2text.1icon.4";
16530       data.item: "stacking" "above";
16531       data.item: "selectraise" "on";
16532       data.item: "texts" "elm.text.1 elm.text.2";
16533       data.item: "contents" "elm.icon";
16534       data.item: "flips" "elm.flip.content";
16535       parts {
16536          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
16537          GENLIST_PART_DIALOGUE_BG_IMAGE
16538          GENLIST_PART_BOTTOM_LINE
16539          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_11_INC )
16540          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_16_INC )
16541          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
16542          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
16543          GENLIST_PART_DIALOGUE_ITEM
16544          GENLIST_PART_DIALOGUE_RIGHT_LINE
16545          part { name: "elm.text.2";
16546             clip_to: "disclip";
16547             type: TEXT;
16548             mouse_events: 0;
16549             scale: 1;
16550             description { state: "default" 0.0;
16551                min: GENLIST_SIZE_133_INC GENLIST_SIZE_61_INC;
16552                fixed: 1 1;
16553                rel1 {
16554                   relative: 0.0 1.0;
16555                   to_x: "elm.padding.right";
16556                   to_y: "elm.padding.top";
16557                }
16558                rel2 {
16559                   relative: 0.0 1.0;
16560                   to_x: "elm.padding.right";
16561                   to_y: "elm.padding.top";
16562                }
16563                align: 1.0 0.0;
16564                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
16565                text {
16566                   font: "SLP:style=Medium";
16567                   size: GENLIST_FONT_32_INC;
16568                   min: 0 1;
16569                   align: 1.0 0.5;
16570                   text_class: "slp_medium";
16571                }
16572             }
16573             description { state: "selected" 0.0;
16574                inherit: "default" 0.0;
16575                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
16576             }
16577             GENLIST_DESCRIPTION_FLIP_ENABLED
16578          }
16579          part { name: "elm.padding.text2.left";
16580             clip_to: "disclip";
16581             type: RECT;
16582             mouse_events: 0;
16583             scale: 1;
16584             description { state: "default" 0.0;
16585                min: GENLIST_ICON_SMALL_SIZE 0;
16586                fixed: 1 0;
16587                rel1.to_x: "elm.text.2";
16588                rel2 {
16589                   relative: 0.0 1.0;
16590                   to_x: "elm.text.2";
16591                }
16592                align: 1.0 0.5;
16593                visible: 0;
16594             }
16595          }
16596          part { name: "elm.text.1";
16597             clip_to: "disclip";
16598             type: TEXT;
16599             mouse_events: 0;
16600             scale: 1;
16601             description { state: "default" 0.0;
16602                rel1 {
16603                   relative: 1.0 1.0;
16604                   to_x: "elm.padding.left";
16605                   to_y: "elm.padding.top";
16606                }
16607                rel2 {
16608                   relative: 0.0 1.0;
16609                   to_x: "elm.padding.text2.left";
16610                   to_y: "elm.text.2";
16611                }
16612                align: 0.0 0.5;
16613                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
16614                text {
16615                   font: "SLP:style=Roman";
16616                   size: GENLIST_FONT_44_INC;
16617                   min: 0 1;
16618                   align: 0.0 0.5;
16619                   text_class: "list_item";
16620                }
16621             }
16622             description { state: "selected" 0.0;
16623                inherit: "default" 0.0;
16624                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
16625             }
16626             GENLIST_DESCRIPTION_FLIP_ENABLED
16627          }
16628          part { name: "elm.icon";
16629             clip_to: "disclip";
16630             type: SWALLOW;
16631             scale: 1;
16632             description { state: "default" 0.0;
16633                min: 0 GENLIST_SIZE_16_INC;
16634                fixed: 0 1;
16635                rel1 {
16636                   relative: 1.0 0.0;
16637                   to_x: "elm.padding.left";
16638                   to_y: "elm.padding.bottom";
16639                }
16640                rel2 {
16641                   relative: 0.0 0.0;
16642                   to_x: "elm.padding.right";
16643                   to_y: "elm.padding.bottom";
16644                }
16645                align: 0.0 1.0;
16646             }
16647             GENLIST_DESCRIPTION_FLIP_ENABLED
16648          }
16649          GENLIST_PART_FLIP
16650          GENLIST_PART_DISCLIP
16651       }
16652       programs {
16653          // signal: elm,state,%s,active
16654          //   a "check" item named %s went active
16655          // signal: elm,state,%s,passive
16656          //   a "check" item named %s went passive
16657          // default is passive
16658          program { name: "go_active";
16659             signal: "elm,state,selected";
16660             source: "elm";
16661             action: STATE_SET "selected" 0.0;
16662             target: "bg_image";
16663             target: "elm.text.1";
16664             target: "elm.text.2";
16665             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
16666          }
16667          program { name: "go_passive";
16668             signal: "elm,state,unselected";
16669             source: "elm";
16670             action: STATE_SET "default" 0.0;
16671             target: "bg_image";
16672             target: "elm.text.1";
16673             target: "elm.text.2";
16674             transition: LINEAR 0.1;
16675          }
16676          program { name: "go_disabled";
16677             signal: "elm,state,disabled";
16678             source: "elm";
16679             action: STATE_SET "disabled" 0.0;
16680             target: "disclip";
16681          }
16682          program { name: "go_enabled";
16683             signal: "elm,state,enabled";
16684             source: "elm";
16685             action: STATE_SET "default" 0.0;
16686             target: "disclip";
16687          }
16688          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
16689          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
16690       }
16691    }
16692
16693    group { name: "elm/genlist/item/dialogue/1title.1text/default";
16694       alias: "elm/genlist/item_odd/dialogue/1title.1text/default";
16695       alias: "elm/genlist/item_compress/dialogue/1title.1text/default";
16696       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text/default";
16697       alias: "elm/genlist/item/dialogue.1title.1text/default";
16698       alias: "elm/genlist/item_odd/dialogue.1title.1text/default";
16699       alias: "elm/genlist/item_compress/dialogue.1title.1text/default";
16700       alias: "elm/genlist/item_compress_odd/dialogue.1title.1text/default";
16701       alias: "elm/layout/dialogue/1title.1text";
16702       data.item: "stacking" "above";
16703       data.item: "selectraise" "on";
16704       data.item: "texts" "elm.title elm.text";
16705       data.item: "flips" "elm.flip.content";
16706       parts {
16707          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
16708          GENLIST_PART_DIALOGUE_BG_IMAGE
16709          GENLIST_PART_BOTTOM_LINE
16710          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
16711          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
16712          GENLIST_PART_DIALOGUE_ITEM
16713          GENLIST_PART_DIALOGUE_RIGHT_LINE
16714          part { name: "elm.title";
16715             clip_to: "disclip";
16716             type: TEXT;
16717             mouse_events: 0;
16718             scale: 1;
16719             description { state: "default" 0.0;
16720                min: GENLIST_SIZE_163_INC 0;
16721                fixed: 1 0;
16722                rel1 {
16723                   relative: 1.0 0.0;
16724                   to_x: "elm.padding.left";
16725                }
16726                rel2.to_x: "elm.padding.left";
16727                align: 0.0 0.5;
16728                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
16729                text {
16730                   font: "SLP:style=Medium";
16731                   size: GENLIST_FONT_32_INC;
16732                   min: 0 1;
16733                   align: 0.0 0.5;
16734                   text_class: "slp_roman";
16735                }
16736             }
16737          }
16738          part { name: "vertical_line";
16739             type: RECT;
16740             mouse_events: 0;
16741             description { state: "default" 0.0;
16742                min: 1 0;
16743                fixed: 1 0;
16744                rel1 {
16745                   relative: 1.0 0.0;
16746                   to_x: "elm.title";
16747                }
16748                rel2.to_x: "elm.title";
16749                align: 0.0 0.5;
16750                color: GENLIST_PART_LIST_LINE_COLOR_INC;
16751             }
16752          }
16753          part { name: "elm.padding.text.left";
16754             clip_to: "disclip";
16755             type: RECT;
16756             mouse_events: 0;
16757             scale: 1;
16758             description { state: "default" 0.0;
16759                min: GENLIST_PADDING_16_INC 0;
16760                fixed: 1 0;
16761                rel1 {
16762                    relative: 1.0 0.0;
16763                    to_x: "vertical_line";
16764                }
16765                rel2.to_x: "vertical_line";
16766                align: 0.0 0.5;
16767                visible: 0;
16768             }
16769          }
16770          part { name: "elm.text";
16771             clip_to: "disclip";
16772             type: TEXT;
16773             mouse_events: 0;
16774             scale: 1;
16775             description { state: "default" 0.0;
16776                rel1 {
16777                   relative: 1.0 0.0;
16778                   to_x: "elm.padding.text.left";
16779                }
16780                rel2 {
16781                   relative: 0.0 1.0;
16782                   to_x: "elm.padding.right";
16783                }
16784                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
16785                text {
16786                   font: "SLP:style=Roman";
16787                   size: GENLIST_FONT_44_INC;
16788                   min: 0 1;
16789                   align: 0.0 0.5;
16790                   text_class: "list_item";
16791                }
16792             }
16793             GENLIST_DESCRIPTION_FLIP_ENABLED
16794          }
16795          part { name: "elm.flip.content";
16796             clip_to: "disclip";
16797             type: SWALLOW;
16798             mouse_events: 1;
16799             scale: 1;
16800             description { state: "default" 0.0;
16801                fixed: 1 1;
16802                rel1 {
16803                   relative: 0.0 0.5;
16804                   to_x: "elm.text";
16805                }
16806                rel2 {
16807                   relative: 0.0 0.5;
16808                   to_x: "elm.padding.right";
16809                }
16810                visible: 0;
16811             }
16812             description { state: "flip_enabled" 0.0;
16813                inherit: "default" 0.0;
16814                visible: 1;
16815             }
16816          }
16817          GENLIST_PART_DISCLIP
16818       }
16819       programs {
16820          // signal: elm,state,%s,active
16821          //   a "check" item named %s went active
16822          // signal: elm,state,%s,passive
16823          //   a "check" item named %s went passive
16824          // default is passive
16825          /*program { name: "go_active";
16826             signal: "elm,state,selected";
16827             source: "elm";
16828             action: STATE_SET "selected" 0.0;
16829             target: "elm.text";
16830          }
16831          program { name: "go_passive";
16832             signal: "elm,state,unselected";
16833             source: "elm";
16834             action: STATE_SET "default" 0.0;
16835             target: "elm.text";
16836             transition: LINEAR 0.1;
16837          }*/
16838          program { name: "go_disabled";
16839             signal: "elm,state,disabled";
16840             source: "elm";
16841             action: STATE_SET "disabled" 0.0;
16842             target: "disclip";
16843          }
16844          program { name: "go_enabled";
16845             signal: "elm,state,enabled";
16846             source: "elm";
16847             action: STATE_SET "default" 0.0;
16848             target: "disclip";
16849          }
16850          //GENLIST_PROGRAM_FLIP_1TEXT
16851       }
16852    }
16853
16854    group { name: "elm/genlist/item/dialogue/1title.1text.3/default";
16855       alias: "elm/genlist/item_odd/dialogue/1title.1text.3/default";
16856       alias: "elm/genlist/item_compress/dialogue/1title.1text.3/default";
16857       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.3/default";
16858       alias: "elm/genlist/item/dialogue.1title.1text.3/default";
16859       alias: "elm/genlist/item_odd/dialogue.1title.1text.3/default";
16860       alias: "elm/genlist/item_compress/dialogue.1title.1text.3/default";
16861       alias: "elm/genlist/item_compress_odd/dialogue.1title.1text.3/default";
16862       alias: "elm/layout/dialogue/1title.1text.3";
16863       data.item: "stacking" "above";
16864       data.item: "selectraise" "on";
16865       data.item: "texts" "elm.title elm.text";
16866       data.item: "flips" "elm.flip.content.title elm.flip.content";
16867       parts {
16868          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
16869          GENLIST_PART_DIALOGUE_BG_IMAGE
16870          GENLIST_PART_BOTTOM_LINE
16871          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
16872          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
16873          GENLIST_PART_DIALOGUE_ITEM
16874          GENLIST_PART_DIALOGUE_RIGHT_LINE
16875          part { name: "elm.title";
16876             clip_to: "disclip";
16877             type: TEXT;
16878             mouse_events: 0;
16879             scale: 1;
16880             description { state: "default" 0.0;
16881                min: GENLIST_SIZE_163_INC 0;
16882                fixed: 1 0;
16883                rel1 {
16884                   relative: 1.0 0.0;
16885                   to_x: "elm.padding.left";
16886                }
16887                rel2.to_x: "elm.padding.left";
16888                align: 0.0 0.5;
16889                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
16890                text {
16891                   font: "SLP:style=Medium";
16892                   size: GENLIST_FONT_32_INC;
16893                   min: 0 1;
16894                   align: 0.0 0.5;
16895                   text_class: "slp_medium";
16896                }
16897             }
16898             GENLIST_DESCRIPTION_FLIP_ENABLED
16899          }
16900          part { name: "elm.flip.content.title";
16901             clip_to: "disclip";
16902             type: SWALLOW;
16903             description { state: "default" 0.0;
16904                visible: 0;
16905                fixed: 1 1;
16906                rel1.to: "elm.title";
16907                rel2.to: "elm.title";
16908             }
16909             description { state: "flip_enabled" 0.0;
16910                inherit: "default" 0.0;
16911                visible: 1;
16912             }
16913          }
16914          part { name: "vertical_line";
16915             type: RECT;
16916             mouse_events: 0;
16917             description { state: "default" 0.0;
16918                min: 1 0;
16919                fixed: 1 0;
16920                rel1 {
16921                   relative: 1.0 0.0;
16922                   to_x: "elm.title";
16923                }
16924                rel2.to_x: "elm.title";
16925                align: 0.0 0.5;
16926                color: GENLIST_PART_LIST_LINE_COLOR_INC;
16927             }
16928          }
16929          part { name: "elm.padding.text.left";
16930             clip_to: "disclip";
16931             type: RECT;
16932             mouse_events: 0;
16933             scale: 1;
16934             description { state: "default" 0.0;
16935                min: GENLIST_PADDING_16_INC 0;
16936                fixed: 1 0;
16937                rel1 {
16938                    relative: 1.0 0.0;
16939                    to_x: "vertical_line";
16940                }
16941                rel2.to_x: "vertical_line";
16942                align: 0.0 0.5;
16943                visible: 0;
16944             }
16945          }
16946          part { name: "elm.text";
16947             clip_to: "disclip";
16948             type: TEXT;
16949             mouse_events: 0;
16950             scale: 1;
16951             description { state: "default" 0.0;
16952                rel1 {
16953                   relative: 1.0 0.0;
16954                   to_x: "elm.padding.text.left";
16955                }
16956                rel2 {
16957                   relative: 0.0 1.0;
16958                   to_x: "elm.padding.right";
16959                }
16960                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
16961                text {
16962                   font: "SLP:style=Roman";
16963                   size: GENLIST_FONT_44_INC;
16964                   min: 0 1;
16965                   align: 0.0 0.5;
16966                   text_class: "list_item";
16967                }
16968             }
16969             GENLIST_DESCRIPTION_FLIP_ENABLED
16970          }
16971          part { name: "elm.flip.content";
16972             clip_to: "disclip";
16973             type: SWALLOW;
16974             mouse_events: 1;
16975             scale: 1;
16976             description { state: "default" 0.0;
16977                fixed: 1 1;
16978                rel1 {
16979                   relative: 0.0 0.5;
16980                   to_x: "elm.text";
16981                }
16982                rel2 {
16983                   relative: 0.0 0.5;
16984                   to_x: "elm.padding.right";
16985                }
16986                visible: 0;
16987             }
16988             description { state: "flip_enabled" 0.0;
16989                inherit: "default" 0.0;
16990                visible: 1;
16991             }
16992          }
16993          GENLIST_PART_DISCLIP
16994       }
16995       programs {
16996          // signal: elm,state,%s,active
16997          //   a "check" item named %s went active
16998          // signal: elm,state,%s,passive
16999          //   a "check" item named %s went passive
17000          // default is passive
17001          /*program { name: "go_active";
17002             signal: "elm,state,selected";
17003             source: "elm";
17004             action: STATE_SET "selected" 0.0;
17005             target: "elm.text";
17006          }
17007          program { name: "go_passive";
17008             signal: "elm,state,unselected";
17009             source: "elm";
17010             action: STATE_SET "default" 0.0;
17011             target: "elm.text";
17012             transition: LINEAR 0.1;
17013          }*/
17014          program { name: "go_disabled";
17015             signal: "elm,state,disabled";
17016             source: "elm";
17017             action: STATE_SET "disabled" 0.0;
17018             target: "disclip";
17019          }
17020          program { name: "go_enabled";
17021             signal: "elm,state,enabled";
17022             source: "elm";
17023             action: STATE_SET "default" 0.0;
17024             target: "disclip";
17025          }
17026          program { name: "flip_enabled";
17027             signal: "elm,state,flip,enabled";
17028             source: "elm";
17029             action: STATE_SET "flip_enabled" 0.0;
17030             target: "elm.title";
17031             target: "elm.text";
17032             target: "elm.flip.content.title";
17033             target: "elm.flip.content";
17034          }
17035          program { name: "flip_disabled";
17036             signal: "elm,state,flip,disabled";
17037             source: "elm";
17038             action: STATE_SET "default" 0.0;
17039             target: "elm.title";
17040             target: "elm.text";
17041             target: "elm.flip.content.title";
17042             target: "elm.flip.content";
17043          }
17044       }
17045    }
17046
17047    group { name: "elm/genlist/item/dialogue/1title.1text.1icon/default";
17048       alias: "elm/genlist/item_odd/dialogue/1title.1text.1icon/default";
17049       alias: "elm/genlist/item_compress/dialogue/1title.1text.1icon/default";
17050       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.1icon/default";
17051       alias: "elm/layout/dialogue/1title.1text.1icon";
17052       data.item: "stacking" "above";
17053       data.item: "selectraise" "on";
17054       data.item: "texts" "elm.title elm.text";
17055       data.item: "contents" "elm.icon";
17056       data.item: "flips" "elm.flip.content";
17057       parts {
17058          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
17059          GENLIST_PART_DIALOGUE_BG_IMAGE
17060          GENLIST_PART_BOTTOM_LINE
17061          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
17062          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
17063          GENLIST_PART_DIALOGUE_ITEM
17064          GENLIST_PART_DIALOGUE_RIGHT_LINE
17065          part { name: "elm.title";
17066             clip_to: "disclip";
17067             type: TEXT;
17068             mouse_events: 0;
17069             scale: 1;
17070             description { state: "default" 0.0;
17071                min: GENLIST_SIZE_163_INC 0;
17072                fixed: 1 0;
17073                rel1 {
17074                   relative: 1.0 0.0;
17075                   to_x: "elm.padding.left";
17076                }
17077                rel2.to_x: "elm.padding.left";
17078                align: 0.0 0.5;
17079                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
17080                text {
17081                   font: "SLP:style=Medium";
17082                   size: GENLIST_FONT_32_INC;
17083                   min: 0 1;
17084                   align: 0.0 0.5;
17085                   text_class: "slp_medium";
17086                }
17087             }
17088          }
17089          part { name: "vertical_line";
17090             type: RECT;
17091             mouse_events: 0;
17092             description { state: "default" 0.0;
17093                min: 1 0;
17094                fixed: 1 0;
17095                rel1 {
17096                   relative: 1.0 0.0;
17097                   to_x: "elm.title";
17098                }
17099                rel2.to_x: "elm.title";
17100                align: 0.0 0.5;
17101                color: GENLIST_PART_LIST_LINE_COLOR_INC;
17102             }
17103          }
17104          part { name: "elm.padding.text.left";
17105             clip_to: "disclip";
17106             type: RECT;
17107             mouse_events: 0;
17108             scale: 1;
17109             description { state: "default" 0.0;
17110                min: GENLIST_PADDING_16_INC 0;
17111                fixed: 1 0;
17112                rel1 {
17113                    relative: 1.0 0.0;
17114                    to_x: "vertical_line";
17115                }
17116                rel2.to_x: "vertical_line";
17117                align: 0.0 0.5;
17118                visible: 0;
17119             }
17120          }
17121          part { name: "elm.icon";
17122            clip_to: "disclip";
17123             type: SWALLOW;
17124             mouse_events: 0;
17125             scale: 1;
17126             description { state: "default" 0.0;
17127                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
17128                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
17129                fixed: 1 1;
17130                rel1.to_x: "elm.padding.right";
17131                rel2 {
17132                   relative: 0.0 1.0;
17133                   to_x: "elm.padding.right";
17134                }
17135                align: 1.0 0.5;
17136             }
17137          }
17138          part { name: "elm.padding.icon.left";
17139             clip_to: "disclip";
17140             type: RECT;
17141             mouse_events: 0;
17142             scale: 1;
17143             description { state: "default" 0.0;
17144                min: GENLIST_PADDING_16_INC 0;
17145                fixed: 1 0;
17146                rel1.to_x: "elm.icon";
17147                rel2 {
17148                    relative: 0.0 1.0;
17149                    to_x: "elm.icon";
17150                }
17151                rel2.to_x: "elm.icon";
17152                align: 1.0 0.5;
17153                visible: 0;
17154             }
17155          }
17156          part { name: "elm.text";
17157             clip_to: "disclip";
17158             type: TEXT;
17159             mouse_events: 0;
17160             scale: 1;
17161             description { state: "default" 0.0;
17162                rel1 {
17163                   relative: 1.0 0.0;
17164                   to_x: "elm.padding.text.left";
17165                }
17166                rel2 {
17167                   relative: 0.0 1.0;
17168                   to_x: "elm.padding.icon.left";
17169                }
17170                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
17171                text {
17172                   font: "SLP:style=Roman";
17173                   size: GENLIST_FONT_44_INC;
17174                   min: 0 1;
17175                   align: 0.0 0.5;
17176                   text_class: "list_item";
17177                }
17178             }
17179             GENLIST_DESCRIPTION_FLIP_ENABLED
17180          }
17181          part { name: "elm.flip.content";
17182             clip_to: "disclip";
17183             type: SWALLOW;
17184             mouse_events: 1;
17185             scale: 1;
17186             description { state: "default" 0.0;
17187                fixed: 1 1;
17188                rel1 {
17189                   relative: 0.0 0.5;
17190                   to_x: "elm.text";
17191                }
17192                rel2 {
17193                   relative: 0.0 0.5;
17194                   to_x: "elm.padding.right";
17195                }
17196                visible: 0;
17197             }
17198             description { state: "flip_enabled" 0.0;
17199                inherit: "default" 0.0;
17200                visible: 1;
17201             }
17202          }
17203          GENLIST_PART_DISCLIP
17204       }
17205       programs {
17206          // signal: elm,state,%s,active
17207          //   a "check" item named %s went active
17208          // signal: elm,state,%s,passive
17209          //   a "check" item named %s went passive
17210          // default is passive
17211          /*program { name: "go_active";
17212             signal: "elm,state,selected";
17213             source: "elm";
17214             action: STATE_SET "selected" 0.0;
17215             target: "elm.text";
17216          }
17217          program { name: "go_passive";
17218             signal: "elm,state,unselected";
17219             source: "elm";
17220             action: STATE_SET "default" 0.0;
17221             target: "elm.text";
17222             transition: LINEAR 0.1;
17223          }*/
17224          program { name: "go_disabled";
17225             signal: "elm,state,disabled";
17226             source: "elm";
17227             action: STATE_SET "disabled" 0.0;
17228             target: "disclip";
17229          }
17230          program { name: "go_enabled";
17231             signal: "elm,state,enabled";
17232             source: "elm";
17233             action: STATE_SET "default" 0.0;
17234             target: "disclip";
17235          }
17236          //GENLIST_PROGRAM_FLIP_1TEXT
17237       }
17238    }
17239
17240    group { name: "elm/genlist/item/dialogue/1title.1text.1icon.2/default";
17241       alias: "elm/genlist/item_odd/dialogue/1title.1text.1icon.2/default";
17242       alias: "elm/genlist/item_compress/dialogue/1title.1text.1icon.2/default";
17243       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.1icon.2/default";
17244       alias: "elm/layout/dialogue/1title.1text.1icon.2";
17245       data.item: "stacking" "above";
17246       data.item: "selectraise" "on";
17247       data.item: "texts" "elm.title elm.text";
17248       data.item: "contents" "elm.icon";
17249       data.item: "flips" "elm.flip.content.title elm.flip.content";
17250       parts {
17251          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
17252          GENLIST_PART_DIALOGUE_BG_IMAGE
17253          GENLIST_PART_BOTTOM_LINE
17254          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
17255          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
17256          GENLIST_PART_DIALOGUE_ITEM
17257          GENLIST_PART_DIALOGUE_RIGHT_LINE
17258          part { name: "elm.title";
17259             clip_to: "disclip";
17260             type: TEXT;
17261             mouse_events: 0;
17262             scale: 1;
17263             description { state: "default" 0.0;
17264                min: GENLIST_SIZE_163_INC 0;
17265                fixed: 1 0;
17266                rel1 {
17267                   relative: 1.0 0.0;
17268                   to_x: "elm.padding.left";
17269                }
17270                rel2.to_x: "elm.padding.left";
17271                align: 0.0 0.5;
17272                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
17273                text {
17274                   font: "SLP:style=Medium";
17275                   size: GENLIST_FONT_32_INC;
17276                   min: 0 1;
17277                   align: 0.0 0.5;
17278                   text_class: "slp_medium";
17279                }
17280             }
17281             GENLIST_DESCRIPTION_FLIP_ENABLED
17282          }
17283          part { name: "elm.flip.content.title";
17284             clip_to: "disclip";
17285             type: SWALLOW;
17286             description { state: "default" 0.0;
17287                visible: 0;
17288                fixed: 1 1;
17289                rel1.to: "elm.title";
17290                rel2.to: "elm.title";
17291             }
17292             description { state: "flip_enabled" 0.0;
17293                inherit: "default" 0.0;
17294                visible: 1;
17295             }
17296          }
17297          part { name: "vertical_line";
17298             type: RECT;
17299             mouse_events: 0;
17300             description { state: "default" 0.0;
17301                min: 1 0;
17302                fixed: 1 0;
17303                rel1 {
17304                   relative: 1.0 0.0;
17305                   to_x: "elm.title";
17306                }
17307                rel2.to_x: "elm.title";
17308                align: 0.0 0.5;
17309                color: GENLIST_PART_LIST_LINE_COLOR_INC;
17310             }
17311          }
17312          part { name: "elm.padding.text.left";
17313             clip_to: "disclip";
17314             type: RECT;
17315             mouse_events: 0;
17316             scale: 1;
17317             description { state: "default" 0.0;
17318                min: GENLIST_PADDING_16_INC 0;
17319                fixed: 1 0;
17320                rel1 {
17321                    relative: 1.0 0.0;
17322                    to_x: "vertical_line";
17323                }
17324                rel2.to_x: "vertical_line";
17325                align: 0.0 0.5;
17326                visible: 0;
17327             }
17328          }
17329          part { name: "elm.icon";
17330            clip_to: "disclip";
17331             type: SWALLOW;
17332             mouse_events: 0;
17333             scale: 1;
17334             description { state: "default" 0.0;
17335                min: 0 0;
17336                max: 0 0;
17337                rel1.to_x: "elm.padding.right";
17338                rel2 {
17339                   relative: 0.0 1.0;
17340                   to_x: "elm.padding.right";
17341                }
17342                align: 1.0 0.5;
17343                visible: 0;
17344             }
17345             description { state: "contact_default_number_enabled" 0.0;
17346                inherit: "default" 0.0;
17347                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
17348                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
17349                visible: 1;
17350             }
17351          }
17352          part { name: "elm.padding.icon.left";
17353             clip_to: "disclip";
17354             type: RECT;
17355             mouse_events: 0;
17356             scale: 1;
17357             description { state: "default" 0.0;
17358                min: 0 0;
17359                fixed: 1 0;
17360                rel1.to_x: "elm.icon";
17361                rel2 {
17362                    relative: 0.0 1.0;
17363                    to_x: "elm.icon";
17364                }
17365                rel2.to_x: "elm.icon";
17366                align: 1.0 0.5;
17367                visible: 0;
17368             }
17369             description { state: "contact_default_number_enabled" 0.0;
17370                inherit: "default" 0.0;
17371                min: GENLIST_PADDING_16_INC 0;
17372             }
17373          }
17374          part { name: "elm.text";
17375             clip_to: "disclip";
17376             type: TEXT;
17377             mouse_events: 0;
17378             scale: 1;
17379             description { state: "default" 0.0;
17380                rel1 {
17381                   relative: 1.0 0.0;
17382                   to_x: "elm.padding.text.left";
17383                }
17384                rel2 {
17385                   relative: 0.0 1.0;
17386                   to_x: "elm.padding.icon.left";
17387                }
17388                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
17389                text {
17390                   font: "SLP:style=Roman";
17391                   size: GENLIST_FONT_44_INC;
17392                   min: 0 1;
17393                   align: 0.0 0.5;
17394                   text_class: "list_item";
17395                }
17396             }
17397             description { state: "contact_default_number_enabled" 0.0;
17398                inherit: "default" 0.0;
17399                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
17400             }
17401             GENLIST_DESCRIPTION_FLIP_ENABLED
17402          }
17403          part { name: "elm.flip.content";
17404             clip_to: "disclip";
17405             type: SWALLOW;
17406             mouse_events: 1;
17407             scale: 1;
17408             description { state: "default" 0.0;
17409                fixed: 1 1;
17410                rel1 {
17411                   relative: 0.0 0.5;
17412                   to_x: "elm.text";
17413                }
17414                rel2 {
17415                   relative: 1.0 0.5;
17416                   to_x: "elm.padding.icon.left";
17417                }
17418                visible: 0;
17419             }
17420             description { state: "flip_enabled" 0.0;
17421                inherit: "default" 0.0;
17422                visible: 1;
17423             }
17424          }
17425          GENLIST_PART_DISCLIP
17426       }
17427       programs {
17428          // signal: elm,state,%s,active
17429          //   a "check" item named %s went active
17430          // signal: elm,state,%s,passive
17431          //   a "check" item named %s went passive
17432          // default is passive
17433          /*program { name: "go_active";
17434             signal: "elm,state,selected";
17435             source: "elm";
17436             action: STATE_SET "selected" 0.0;
17437             target: "elm.text";
17438          }
17439          program { name: "go_passive";
17440             signal: "elm,state,unselected";
17441             source: "elm";
17442             action: STATE_SET "default" 0.0;
17443             target: "elm.text";
17444             transition: LINEAR 0.1;
17445          }*/
17446          program { name: "go_disabled";
17447             signal: "elm,state,disabled";
17448             source: "elm";
17449             action: STATE_SET "disabled" 0.0;
17450             target: "disclip";
17451          }
17452          program { name: "go_enabled";
17453             signal: "elm,state,enabled";
17454             source: "elm";
17455             action: STATE_SET "default" 0.0;
17456             target: "disclip";
17457          }
17458          program { name: "flip_enabled";
17459             signal: "elm,state,flip,enabled";
17460             source: "elm";
17461             action: STATE_SET "flip_enabled" 0.0;
17462             target: "elm.title";
17463             target: "elm.text";
17464             target: "elm.flip.content.title";
17465             target: "elm.flip.content";
17466          }
17467          program { name: "flip_disabled";
17468             signal: "elm,state,flip,disabled";
17469             source: "elm";
17470             action: STATE_SET "default" 0.0;
17471             target: "elm.title";
17472             target: "elm.text";
17473             target: "elm.flip.content.title";
17474             target: "elm.flip.content";
17475          }
17476          program { name: "contact_default_number_enabled";
17477             signal: "elm,state,contact,default_number,enabled";
17478             source: "elm";
17479             action: STATE_SET "contact_default_number_enabled" 0.0;
17480             target: "elm.icon";
17481             target: "elm.padding.icon.left";
17482             target: "elm.text";
17483          }
17484          program { name: "contact_default_number_disabled";
17485             signal: "elm,state,contact,default_number,disabled";
17486             source: "elm";
17487             action: STATE_SET "default" 0.0;
17488             target: "elm.icon";
17489             target: "elm.padding.icon.left";
17490             target: "elm.text";
17491          }
17492       }
17493    }
17494
17495    group { name: "elm/genlist/item/dialogue/2text.4/default";
17496       alias: "elm/genlist/item_odd/dialogue/2text.4/default";
17497       alias: "elm/genlist/item_compress/dialogue/2text.4/default";
17498       alias: "elm/genlist/item_compress_odd/dialogue/2text.4/default";
17499       alias: "elm/layout/dialogue/2text.4";
17500       data.item: "stacking" "above";
17501       data.item: "selectraise" "on";
17502       data.item: "texts" "elm.text.1 elm.text.2";
17503       data.item: "flips" "elm.flip.content";
17504       parts {
17505          GENLIST_PART_BASE( GENLIST_HEIGHT_97_INC )
17506          GENLIST_PART_DIALOGUE_BG_IMAGE
17507          GENLIST_PART_BOTTOM_LINE
17508          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
17509          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
17510          GENLIST_PART_DIALOGUE_ITEM
17511          GENLIST_PART_DIALOGUE_RIGHT_LINE
17512          part { name: "elm.text.2";
17513             clip_to: "disclip";
17514             type: TEXT;
17515             mouse_events: 0;
17516             scale: 1;
17517             description { state: "default" 0.0;
17518                min: GENLIST_SIZE_206_INC 0;
17519                fixed: 1 0;
17520                rel1.to_x: "elm.padding.right";
17521                rel2 {
17522                   relative: 0.0 1.0;
17523                   to_x: "elm.padding.right";
17524                }
17525                rel2.to_x: "elm.padding.right";
17526                align: 1.0 0.5;
17527                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
17528                text {
17529                   font: "SLP:style=Medium";
17530                   size: GENLIST_FONT_32_INC;
17531                   min: 0 1;
17532                   align: 0.0 0.5;
17533                   text_class: "slp_medium";
17534                }
17535             }
17536          }
17537          part { name: "elm.padding.text2.left";
17538             type: RECT;
17539             mouse_events: 0;
17540             scale: 1;
17541             description { state: "default" 0.0;
17542                min: GENLIST_PADDING_16_INC 0;
17543                fixed: 1 0;
17544                rel1.to_x: "elm.text.2";
17545                rel2 {
17546                   relative: 0.0 1.0;
17547                   to_x: "elm.text.2";
17548                }
17549                align: 1.0 0.5;
17550                visible: 0;
17551             }
17552          }
17553          part { name: "vertical_line";
17554             type: RECT;
17555             mouse_events: 0;
17556             description { state: "default" 0.0;
17557                min: 1 0;
17558                fixed: 1 0;
17559                rel1.to_x: "elm.padding.text2.left";
17560                rel2 {
17561                   relative: 0.0 1.0;
17562                   to_x: "elm.padding.text2.left";
17563                }
17564                align: 1.0 0.5;
17565                color: GENLIST_PART_LIST_LINE_COLOR_INC;
17566             }
17567          }
17568          part { name: "elm.padding.text1.right";
17569             type: RECT;
17570             mouse_events: 0;
17571             scale: 1;
17572             description { state: "default" 0.0;
17573                min: GENLIST_PADDING_16_INC 0;
17574                fixed: 1 0;
17575                rel1.to_x: "vertical_line";
17576                rel2 {
17577                   relative: 0.0 1.0;
17578                   to_x: "vertical_line";
17579                }
17580                align: 1.0 0.5;
17581                visible: 0;
17582             }
17583          }
17584          part { name: "elm.text.1";
17585             clip_to: "disclip";
17586             type: TEXT;
17587             mouse_events: 0;
17588             scale: 1;
17589             description { state: "default" 0.0;
17590                rel1 {
17591                   relative: 1.0 0.0;
17592                   to_x: "elm.padding.left";
17593                }
17594                rel2 {
17595                   relative: 0.0  1.0;
17596                   to_x: "elm.padding.text1.right";
17597                }
17598                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
17599                text {
17600                   font: "SLP:style=Roman";
17601                   size: GENLIST_FONT_42_INC;
17602                   min: 0 1;
17603                   align: 1.0 0.5;
17604                   text_class: "list_item";
17605                }
17606             }
17607             description { state: "selected" 0.0;
17608                inherit: "default" 0.0;
17609                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
17610             }
17611             GENLIST_DESCRIPTION_FLIP_ENABLED
17612          }
17613          part { name: "elm.flip.content";
17614             clip_to: "disclip";
17615             type: SWALLOW;
17616             mouse_events: 1;
17617             scale: 1;
17618             description { state: "default" 0.0;
17619                fixed: 1 1;
17620                rel1 {
17621                   relative: 1.0 0.5;
17622                   to_x: "vertical_line";
17623                }
17624                rel2 {
17625                   relative: 0.0 0.5;
17626                   to_x: "elm.padding.right";
17627                }
17628                visible: 0;
17629             }
17630             description { state: "flip_enabled" 0.0;
17631                inherit: "default" 0.0;
17632                visible: 1;
17633             }
17634          }
17635          GENLIST_PART_DISCLIP
17636       }
17637       programs {
17638          // signal: elm,state,%s,active
17639          //   a "check" item named %s went active
17640          // signal: elm,state,%s,passive
17641          //   a "check" item named %s went passive
17642          // default is passive
17643          /*program { name: "go_active";
17644             signal: "elm,state,selected";
17645             source: "elm";
17646             action: STATE_SET "selected" 0.0;
17647             target: "elm.text";
17648          }
17649          program { name: "go_passive";
17650             signal: "elm,state,unselected";
17651             source: "elm";
17652             action: STATE_SET "default" 0.0;
17653             target: "elm.text";
17654             transition: LINEAR 0.1;
17655          }*/
17656          program { name: "go_disabled";
17657             signal: "elm,state,disabled";
17658             source: "elm";
17659             action: STATE_SET "disabled" 0.0;
17660             target: "disclip";
17661          }
17662          program { name: "go_enabled";
17663             signal: "elm,state,enabled";
17664             source: "elm";
17665             action: STATE_SET "default" 0.0;
17666             target: "disclip";
17667          }
17668          GENLIST_PROGRAM_FLIP_2TEXT
17669       }
17670    }
17671
17672    group { name: "elm/genlist/item_compress/dialogue/2text.4.tb/default";
17673       inherit: "elm/genlist/item/dialogue/2text.4/default";
17674       parts {
17675          part { name: "elm.text.2";
17676             clip_to: "disclip";
17677             type: TEXTBLOCK;
17678             mouse_events: 0;
17679             scale: 1;
17680             description { state: "default" 0.0;
17681                min: GENLIST_SIZE_206_INC 0;
17682                fixed: 1 0;
17683                rel1.to_x: "elm.padding.right";
17684                rel2 {
17685                   relative: 0.0 1.0;
17686                   to_x: "elm.padding.right";
17687                }
17688                rel2.to_x: "elm.padding.right";
17689                align: 1.0 0.5;
17690                text {
17691                   style: "genlist_default_textblock_style";
17692                   size: GENLIST_FONT_32_INC;
17693                   min: 0 1;
17694                   align: 0.0 0.5;
17695                }
17696             }
17697          }
17698       }
17699    }
17700
17701    group { name: "elm/genlist/item/dialogue/1text.3icon.2/default";
17702       alias: "elm/genlist/item_odd/dialogue/1text.3icon.2/default";
17703       alias: "elm/genlist/item_compress/dialogue/1text.3icon.2/default";
17704       alias: "elm/genlist/item_compress_odd/dialogue/1text.3icon.2/default";
17705       alias: "elm/layout/dialogue/1text.3icon.2";
17706       data.item: "stacking" "above";
17707       data.item: "selectraise" "on";
17708       data.item: "texts" "elm.text";
17709       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
17710       data.item: "flips" "elm.flip.content";
17711       images {
17712          image: "00_list_bar_press_1x80.png" COMP;
17713       }
17714       parts {
17715          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
17716          GENLIST_PART_DIALOGUE_BG_IMAGE
17717          GENLIST_PART_BOTTOM_LINE
17718          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
17719          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
17720          GENLIST_PART_DIALOGUE_ITEM
17721          GENLIST_PART_DIALOGUE_RIGHT_LINE
17722          part { name: "elm.icon.1";
17723             clip_to: "disclip";
17724             type: SWALLOW;
17725             scale: 1;
17726             description { state: "default" 0.0;
17727                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
17728                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
17729                fixed: 1 1;
17730                rel1 {
17731                   relative: 1.0 0.0;
17732                   to_x: "elm.padding.left";
17733                }
17734                rel2.to_x: "elm.padding.left";
17735                align: 0.0 0.5;
17736             }
17737             GENLIST_DESCRIPTION_FLIP_ENABLED
17738          }
17739          part { name: "elm.padding.icon1.right";
17740             clip_to: "disclip";
17741             type: RECT;
17742             scale: 1;
17743             description { state: "default" 0.0;
17744                min: GENLIST_SIZE_16_INC 0;
17745                fixed: 1 0;
17746                rel1 {
17747                   relative: 1.0 0.0;
17748                   to_x: "elm.icon.1";
17749                }
17750                rel2.to_x: "elm.icon.1";
17751                align: 0.0 0.0;
17752                visible: 0;
17753             }
17754          }
17755          part { name: "elm.icon.2";
17756             clip_to: "disclip";
17757             type: SWALLOW;
17758             scale: 1;
17759             description { state: "default" 0.0;
17760                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
17761                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
17762                fixed: 1 1;
17763                rel1 {
17764                   relative: 1.0 0.0;
17765                   to_x: "elm.padding.icon1.right";
17766                }
17767                rel2.to_x: "elm.padding.icon1.right";
17768                align: 0.0 0.5;
17769             }
17770             GENLIST_DESCRIPTION_FLIP_ENABLED
17771          }
17772          part { name: "elm.padding.icon2.right";
17773             clip_to: "disclip";
17774             type: RECT;
17775             scale: 1;
17776             description { state: "default" 0.0;
17777                min: GENLIST_SIZE_16_INC 0;
17778                fixed: 1 0;
17779                rel1 {
17780                   relative: 1.0 0.0;
17781                   to_x: "elm.icon.2";
17782                }
17783                rel2.to_x: "elm.icon.2";
17784                visible: 0;
17785             }
17786          }
17787          part { name: "elm.icon.3";
17788             clip_to: "disclip";
17789             type: SWALLOW;
17790             scale: 1;
17791             description { state: "default" 0.0;
17792                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
17793                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
17794                fixed: 1 1;
17795                rel1 {
17796                   relative: 0.0 0.0;
17797                   to_x: "elm.padding.right";
17798                }
17799                rel2 {
17800                   relative: 0.0 1.0;
17801                   to_x: "elm.padding.right";
17802                }
17803                align: 1.0 0.5;
17804             }
17805             GENLIST_DESCRIPTION_FLIP_ENABLED
17806          }
17807          part { name: "elm.padding.icon3.left";
17808             clip_to: "disclip";
17809             type: RECT;
17810             scale: 1;
17811             description { state: "default" 0.0;
17812                min: GENLIST_SIZE_16_INC 0;
17813                fixed: 1 0;
17814                rel1.to_x: "elm.icon.3";
17815                rel2 {
17816                   relative: 0.0 1.0;
17817                   to_x: "elm.icon.3";
17818                }
17819                align: 1.0 0.0;
17820                visible: 0;
17821             }
17822          }
17823          part { name: "elm.text";
17824             clip_to: "disclip";
17825             type: TEXT;
17826             mouse_events: 0;
17827             scale: 1;
17828             description { state: "default" 0.0;
17829                rel1 {
17830                   relative: 1.0 0.0;
17831                   to_x: "elm.padding.icon2.right";
17832                }
17833                rel2 {
17834                   relative: 0.0 1.0;
17835                   to_x: "elm.padding.icon3.left";
17836                }
17837                align: 0.0 0.5;
17838                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
17839                text {
17840                   font: "SLP:style=Roman";
17841                   size: GENLIST_FONT_44_INC;
17842                   min: 0 1;
17843                   align: 0.0 0.5;
17844                   text_class: "list_item";
17845                }
17846             }
17847             description { state: "selected" 0.0;
17848                inherit: "default" 0.0;
17849                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
17850             }
17851             GENLIST_DESCRIPTION_FLIP_ENABLED
17852          }
17853          GENLIST_PART_FLIP
17854          GENLIST_PART_DISCLIP
17855       }
17856       programs {
17857          program { name: "go_active";
17858             signal: "elm,state,selected";
17859             source: "elm";
17860             action: STATE_SET "selected" 0.0;
17861             target: "bg_image";
17862             target: "elm.text";
17863             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
17864          }
17865          program { name: "go_passive";
17866             signal: "elm,state,unselected";
17867             source: "elm";
17868             action: STATE_SET "default" 0.0;
17869             target: "bg_image";
17870             target: "elm.text";
17871             transition: LINEAR 0.1;
17872          }
17873          program { name: "go_disabled";
17874             signal: "elm,state,disabled";
17875             source: "elm";
17876             action: STATE_SET "disabled" 0.0;
17877             target: "disclip";
17878          }
17879          program { name: "go_enabled";
17880             signal: "elm,state,enabled";
17881             source: "elm";
17882             action: STATE_SET "default" 0.0;
17883             target: "disclip";
17884          }
17885          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
17886          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
17887       }
17888    }
17889
17890    group { name: "elm/genlist/item/dialogue/2text/default";
17891       alias: "elm/genlist/item_odd/dialogue/2text/default";
17892       alias: "elm/genlist/item_compress/dialogue/2text/default";
17893       alias: "elm/genlist/item_compress_odd/dialogue/2text/default";
17894       alias: "elm/layout/dialogue/2text";
17895       data.item: "stacking" "above";
17896       data.item: "selectraise" "on";
17897       data.item: "texts" "elm.text.1 elm.text.2";
17898       data.item: "flips" "elm.flip.content";
17899       parts {
17900          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
17901          GENLIST_PART_DIALOGUE_BG_IMAGE
17902          GENLIST_PART_BOTTOM_LINE
17903          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
17904          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
17905          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
17906          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
17907          GENLIST_PART_DIALOGUE_ITEM
17908          GENLIST_PART_DIALOGUE_RIGHT_LINE
17909          part { name: "elm.text.1";
17910             clip_to: "disclip";
17911             type: TEXT;
17912             mouse_events: 0;
17913             scale: 1;
17914             description { state: "default" 0.0;
17915                min: 0 GENLIST_SIZE_61_INC;
17916                fixed: 0 1;
17917                rel1 {
17918                   relative: 1.0 1.0;
17919                   to_x: "elm.padding.left";
17920                   to_y: "elm.padding.top";
17921                }
17922                rel2 {
17923                   relative: 0.0 1.0;
17924                   to_x: "elm.padding.right";
17925                   to_y: "elm.padding.top";
17926                }
17927                align: 0.0 0.0;
17928                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
17929                text {
17930                   font: "SLP:style=Roman";
17931                   size: GENLIST_FONT_44_INC;
17932                   min: 0 1;
17933                   align: 0.0 0.5;
17934                   text_class: "list_item";
17935                }
17936             }
17937             description { state: "selected" 0.0;
17938                inherit: "default" 0.0;
17939                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
17940             }
17941             GENLIST_DESCRIPTION_FLIP_ENABLED
17942          }
17943          part { name: "elm.text.2";
17944             clip_to: "disclip";
17945             type: TEXT;
17946             mouse_events: 0;
17947             scale: 1;
17948             description { state: "default" 0.0;
17949                rel1 {
17950                   relative: 1.0 1.0;
17951                   to_x: "elm.padding.left";
17952                   to_y: "elm.text.1";
17953                }
17954                rel2 {
17955                   relative: 0.0 0.0;
17956                   to_x: "elm.padding.right";
17957                   to_y: "elm.padding.bottom";
17958                }
17959                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
17960                text {
17961                   font: "SLP:style=Medium";
17962                   size: GENLIST_FONT_32_INC;
17963                   min: 0 1;
17964                   align: 0.0 0.5;
17965                   text_class: "slp_medium";
17966                }
17967             }
17968             description { state: "selected" 0.0;
17969                inherit: "default" 0.0;
17970                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
17971             }
17972             GENLIST_DESCRIPTION_FLIP_ENABLED
17973          }
17974          GENLIST_PART_FLIP
17975          GENLIST_PART_DISCLIP
17976       }
17977       programs {
17978          // signal: elm,state,%s,active
17979          //   a "check" item named %s went active
17980          // signal: elm,state,%s,passive
17981          //   a "check" item named %s went passive
17982          // default is passive
17983          program { name: "go_active";
17984             signal: "elm,state,selected";
17985             source: "elm";
17986             action: STATE_SET "selected" 0.0;
17987             target: "bg_image";
17988             target: "elm.text.1";
17989             target: "elm.text.2";
17990             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
17991          }
17992          program { name: "go_passive";
17993             signal: "elm,state,unselected";
17994             source: "elm";
17995             action: STATE_SET "default" 0.0;
17996             target: "bg_image";
17997             target: "elm.text.1";
17998             target: "elm.text.2";
17999             transition: LINEAR 0.1;
18000          }
18001          program { name: "go_disabled";
18002             signal: "elm,state,disabled";
18003             source: "elm";
18004             action: STATE_SET "disabled" 0.0;
18005             target: "disclip";
18006          }
18007          program { name: "go_enabled";
18008             signal: "elm,state,enabled";
18009             source: "elm";
18010             action: STATE_SET "default" 0.0;
18011             target: "disclip";
18012          }
18013          GENLIST_PROGRAM_FLIP_2TEXT
18014          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18015       }
18016    }
18017
18018    group { name: "elm/genlist/item/dialogue/2text.2/default";
18019       alias: "elm/genlist/item_odd/dialogue/2text.2/default";
18020       alias: "elm/genlist/item_compress/dialogue/2text.2/default";
18021       alias: "elm/genlist/item_compress_odd/dialogue/2text.2/default";
18022       alias: "elm/layout/dialogue/2text.2";
18023       data.item: "stacking" "above";
18024       data.item: "selectraise" "on";
18025       data.item: "texts" "elm.text.1 elm.text.2";
18026       data.item: "flips" "elm.flip.content";
18027       parts {
18028          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
18029          GENLIST_PART_DIALOGUE_BG_IMAGE
18030          GENLIST_PART_BOTTOM_LINE
18031          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
18032          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
18033          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18034          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
18035          GENLIST_PART_DIALOGUE_ITEM
18036          GENLIST_PART_DIALOGUE_RIGHT_LINE
18037          part { name: "elm.text.1";
18038             clip_to: "disclip";
18039             type: TEXT;
18040             mouse_events: 0;
18041             scale: 1;
18042             description { state: "default" 0.0;
18043                min: 0 GENLIST_SIZE_61_INC;
18044                fixed: 0 1;
18045                rel1 {
18046                   relative: 1.0 0.0;
18047                   to_x: "elm.padding.left";
18048                   to_y: "elm.padding.bottom";
18049                }
18050                rel2 {
18051                   relative: 0.0 0.0;
18052                   to_x: "elm.padding.right";
18053                   to_y: "elm.padding.bottom";
18054                }
18055                align: 0.0 1.0;
18056                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
18057                text {
18058                   font: "SLP:style=Roman";
18059                   size: GENLIST_FONT_44_INC;
18060                   min: 0 1;
18061                   align: 0.0 0.5;
18062                   text_class: "list_item";
18063                }
18064             }
18065             description { state: "selected" 0.0;
18066                inherit: "default" 0.0;
18067                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
18068             }
18069             GENLIST_DESCRIPTION_FLIP_ENABLED
18070          }
18071          part { name: "elm.text.2";
18072             clip_to: "disclip";
18073             type: TEXT;
18074             mouse_events: 0;
18075             scale: 1;
18076             description { state: "default" 0.0;
18077                rel1 {
18078                   relative: 1.0 1.0;
18079                   to_x: "elm.padding.left";
18080                   to_y: "elm.padding.top";
18081                }
18082                rel2 {
18083                   relative: 0.0 0.0;
18084                   to_x: "elm.padding.right";
18085                   to_y: "elm.text.1";
18086                }
18087                align: 0.0 1.0;
18088                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
18089                text {
18090                   font: "SLP:style=Medium";
18091                   size: GENLIST_FONT_32_INC;
18092                   min: 0 1;
18093                   align: 0.0 0.5;
18094                   text_class: "slp_medium";
18095                }
18096             }
18097             description { state: "selected" 0.0;
18098                inherit: "default" 0.0;
18099                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
18100             }
18101             GENLIST_DESCRIPTION_FLIP_ENABLED
18102          }
18103          GENLIST_PART_FLIP
18104          GENLIST_PART_DISCLIP
18105       }
18106       programs {
18107          // signal: elm,state,%s,active
18108          //   a "check" item named %s went active
18109          // signal: elm,state,%s,passive
18110          //   a "check" item named %s went passive
18111          // default is passive
18112          program { name: "go_active";
18113             signal: "elm,state,selected";
18114             source: "elm";
18115             action: STATE_SET "selected" 0.0;
18116             target: "bg_image";
18117             target: "elm.text.1";
18118             target: "elm.text.2";
18119             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18120          }
18121          program { name: "go_passive";
18122             signal: "elm,state,unselected";
18123             source: "elm";
18124             action: STATE_SET "default" 0.0;
18125             target: "bg_image";
18126             target: "elm.text.1";
18127             target: "elm.text.2";
18128             transition: LINEAR 0.1;
18129          }
18130          program { name: "go_disabled";
18131             signal: "elm,state,disabled";
18132             source: "elm";
18133             action: STATE_SET "disabled" 0.0;
18134             target: "disclip";
18135          }
18136          program { name: "go_enabled";
18137             signal: "elm,state,enabled";
18138             source: "elm";
18139             action: STATE_SET "default" 0.0;
18140             target: "disclip";
18141          }
18142          GENLIST_PROGRAM_FLIP_2TEXT
18143          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18144       }
18145    }
18146
18147    group { name: "elm/genlist/item/dialogue/2text.3/default";
18148       alias: "elm/genlist/item_odd/dialogue/2text.3/default";
18149       alias: "elm/genlist/item_compress/dialogue/2text.3/default";
18150       alias: "elm/genlist/item_compress_odd/dialogue/2text.3/default";
18151       alias: "elm/layout/dialogue/2text.3";
18152       data.item: "stacking" "above";
18153       data.item: "selectraise" "on";
18154       data.item: "texts" "elm.text.1 elm.text.2";
18155       data.item: "flips" "elm.flip.content";
18156       parts {
18157          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
18158          GENLIST_PART_DIALOGUE_BG_IMAGE
18159          GENLIST_PART_BOTTOM_LINE
18160          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
18161          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
18162          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18163          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
18164          GENLIST_PART_DIALOGUE_ITEM
18165          GENLIST_PART_DIALOGUE_RIGHT_LINE
18166          part { name: "elm.text.1";
18167             clip_to: "disclip";
18168             type: TEXT;
18169             mouse_events: 0;
18170             scale: 1;
18171             description { state: "default" 0.0;
18172                min: 0 GENLIST_SIZE_61_INC;
18173                fixed: 0 1;
18174                rel1 {
18175                   relative: 1.0 1.0;
18176                   to_x: "elm.padding.left";
18177                   to_y: "elm.padding.top";
18178                }
18179                rel2 {
18180                   relative: 0.0 1.0;
18181                   to_x: "elm.padding.right";
18182                   to_y: "elm.padding.top";
18183                }
18184                align: 0.0 0.0;
18185                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
18186                text {
18187                   font: "SLP:style=Roman";
18188                   size: GENLIST_FONT_44_INC;
18189                   min: 0 1;
18190                   align: 0.0 0.5;
18191                   text_class: "list_item";
18192                }
18193             }
18194             description { state: "selected" 0.0;
18195                inherit: "default" 0.0;
18196                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
18197             }
18198             GENLIST_DESCRIPTION_FLIP_ENABLED
18199          }
18200          part { name: "elm.text.2";
18201             clip_to: "disclip";
18202             type: TEXT;
18203             mouse_events: 0;
18204             scale: 1;
18205             description { state: "default" 0.0;
18206                rel1 {
18207                   relative: 1.0 1.0;
18208                   to_x: "elm.padding.left";
18209                   to_y: "elm.text.1";
18210                }
18211                rel2 {
18212                   relative: 0.0 0.0;
18213                   to_x: "elm.padding.right";
18214                   to_y: "elm.padding.bottom";
18215                }
18216                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
18217                text {
18218                   font: "SLP:style=Medium";
18219                   size: GENLIST_FONT_32_INC;
18220                   min: 0 1;
18221                   align: 0.0 0.5;
18222                   text_class: "slp_roman";
18223                }
18224             }
18225             description { state: "selected" 0.0;
18226                inherit: "default" 0.0;
18227                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
18228             }
18229             GENLIST_DESCRIPTION_FLIP_ENABLED
18230          }
18231          GENLIST_PART_FLIP
18232          GENLIST_PART_DISCLIP
18233       }
18234       programs {
18235          // signal: elm,state,%s,active
18236          //   a "check" item named %s went active
18237          // signal: elm,state,%s,passive
18238          //   a "check" item named %s went passive
18239          // default is passive
18240          program { name: "go_active";
18241             signal: "elm,state,selected";
18242             source: "elm";
18243             action: STATE_SET "selected" 0.0;
18244             target: "bg_image";
18245             target: "elm.text.1";
18246             target: "elm.text.2";
18247             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18248          }
18249          program { name: "go_passive";
18250             signal: "elm,state,unselected";
18251             source: "elm";
18252             action: STATE_SET "default" 0.0;
18253             target: "bg_image";
18254             target: "elm.text.1";
18255             target: "elm.text.2";
18256             transition: LINEAR 0.1;
18257          }
18258          program { name: "go_disabled";
18259             signal: "elm,state,disabled";
18260             source: "elm";
18261             action: STATE_SET "disabled" 0.0;
18262             target: "disclip";
18263          }
18264          program { name: "go_enabled";
18265             signal: "elm,state,enabled";
18266             source: "elm";
18267             action: STATE_SET "default" 0.0;
18268             target: "disclip";
18269          }
18270          GENLIST_PROGRAM_FLIP_2TEXT
18271          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18272       }
18273    }
18274
18275    group { name: "elm/genlist/item/dialogue/2text.1icon.2/default";
18276       alias: "elm/genlist/item_odd/dialogue/2text.1icon.2/default";
18277       alias: "elm/genlist/item_compress/dialogue/2text.1icon.2/default";
18278       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.2/default";
18279       alias: "elm/layout/dialogue/2text.1icon.2";
18280       data.item: "stacking" "above";
18281       data.item: "selectraise" "on";
18282       data.item: "texts" "elm.text.1 elm.text.2";
18283       data.item: "contents" "elm.icon";
18284       data.item: "flips" "elm.flip.content";
18285       parts {
18286          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
18287          GENLIST_PART_DIALOGUE_BG_IMAGE
18288          GENLIST_PART_BOTTOM_LINE
18289          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
18290          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
18291          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18292          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
18293          GENLIST_PART_DIALOGUE_ITEM
18294          GENLIST_PART_DIALOGUE_RIGHT_LINE
18295          part { name: "elm.icon";
18296             clip_to: "disclip";
18297             type: SWALLOW;
18298             scale: 1;
18299             description { state: "default" 0.0;
18300                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18301                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18302                fixed: 1 1;
18303                rel1 {
18304                   relative: 1.0 0.0;
18305                   to_x: "elm.padding.left";
18306                }
18307                rel2.to_x: "elm.padding.left";
18308                align: 0.0 0.5;
18309             }
18310             GENLIST_DESCRIPTION_FLIP_ENABLED
18311          }
18312          part { name: "elm.padding.icon.right";
18313             clip_to: "disclip";
18314             type: RECT;
18315             scale: 1;
18316             description { state: "default" 0.0;
18317                min: GENLIST_PADDING_16_INC 0;
18318                fixed: 1 0;
18319                rel1 {
18320                   relative: 1.0 0.0;
18321                   to_x: "elm.icon";
18322                }
18323                rel2.to_x: "elm.icon";
18324                align: 0.0 0.0;
18325                visible: 0;
18326             }
18327          }
18328          part { name: "elm.text.1";
18329             clip_to: "disclip";
18330             type: TEXT;
18331             mouse_events: 0;
18332             scale: 1;
18333             description { state: "default" 0.0;
18334                min: 0 GENLIST_SIZE_61_INC;
18335                fixed: 0 1;
18336                rel1 {
18337                   relative: 1.0 1.0;
18338                   to_x: "elm.padding.icon.right";
18339                   to_y: "elm.padding.top";
18340                }
18341                rel2 {
18342                   relative: 0.0 1.0;
18343                   to_x: "elm.padding.right";
18344                   to_y: "elm.padding.top";
18345                }
18346                align: 0.0 0.0;
18347                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
18348                text {
18349                   font: "SLP:style=Roman";
18350                   size: GENLIST_FONT_44_INC;
18351                   min: 0 1;
18352                   align: 0.0 0.5;
18353                   text_class: "list_item";
18354                }
18355             }
18356             description { state: "selected" 0.0;
18357                inherit: "default" 0.0;
18358                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
18359             }
18360             GENLIST_DESCRIPTION_FLIP_ENABLED
18361          }
18362          part { name: "elm.text.2";
18363             clip_to: "disclip";
18364             type: TEXT;
18365             mouse_events: 0;
18366             scale: 1;
18367             description { state: "default" 0.0;
18368                rel1 {
18369                   relative: 1.0 1.0;
18370                   to_x: "elm.padding.icon.right";
18371                   to_y: "elm.text.1";
18372                }
18373                rel2 {
18374                   relative: 0.0 0.0;
18375                   to_x: "elm.padding.right";
18376                   to_y: "elm.padding.bottom";
18377                }
18378                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
18379                text {
18380                   font: "SLP:style=Medium";
18381                   size: GENLIST_FONT_32_INC;
18382                   min: 0 1;
18383                   align: 0.0 0.5;
18384                   text_class: "slp_medium";
18385                }
18386             }
18387             description { state: "selected" 0.0;
18388                inherit: "default" 0.0;
18389                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
18390             }
18391             GENLIST_DESCRIPTION_FLIP_ENABLED
18392          }
18393          GENLIST_PART_FLIP
18394          GENLIST_PART_DISCLIP
18395       }
18396       programs {
18397          // signal: elm,state,%s,active
18398          //   a "check" item named %s went active
18399          // signal: elm,state,%s,passive
18400          //   a "check" item named %s went passive
18401          // default is passive
18402          program { name: "go_active";
18403             signal: "elm,state,selected";
18404             source: "elm";
18405             action: STATE_SET "selected" 0.0;
18406             target: "bg_image";
18407             target: "elm.text.1";
18408             target: "elm.text.2";
18409             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18410          }
18411          program { name: "go_passive";
18412             signal: "elm,state,unselected";
18413             source: "elm";
18414             action: STATE_SET "default" 0.0;
18415             target: "bg_image";
18416             target: "elm.text.1";
18417             target: "elm.text.2";
18418             transition: LINEAR 0.1;
18419          }
18420          program { name: "go_disabled";
18421             signal: "elm,state,disabled";
18422             source: "elm";
18423             action: STATE_SET "disabled" 0.0;
18424             target: "disclip";
18425          }
18426          program { name: "go_enabled";
18427             signal: "elm,state,enabled";
18428             source: "elm";
18429             action: STATE_SET "default" 0.0;
18430             target: "disclip";
18431          }
18432          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
18433          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18434       }
18435    }
18436
18437    group { name: "elm/genlist/item/dialogue/2text.1icon.3/default";
18438       alias: "elm/genlist/item_odd/dialogue/2text.1icon.3/default";
18439       alias: "elm/genlist/item_compress/dialogue/2text.1icon.3/default";
18440       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.3/default";
18441       alias: "elm/layout/dialogue/2text.1icon.3";
18442       data.item: "stacking" "above";
18443       data.item: "selectraise" "on";
18444       data.item: "texts" "elm.text.1 elm.text.2";
18445       data.item: "contents" "elm.icon";
18446       data.item: "flips" "elm.flip.content";
18447       parts {
18448          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
18449          GENLIST_PART_DIALOGUE_BG_IMAGE
18450          GENLIST_PART_BOTTOM_LINE
18451          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
18452          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
18453          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18454          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
18455          GENLIST_PART_DIALOGUE_ITEM
18456          GENLIST_PART_DIALOGUE_RIGHT_LINE
18457          part { name: "elm.icon";
18458             clip_to: "disclip";
18459             type: SWALLOW;
18460             scale: 1;
18461             description { state: "default" 0.0;
18462                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18463                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18464                fixed: 1 1;
18465                rel1 {
18466                   relative: 1.0 0.0;
18467                   to_x: "elm.padding.left";
18468                }
18469                rel2.to_x: "elm.padding.left";
18470                align: 0.0 0.5;
18471             }
18472             GENLIST_DESCRIPTION_FLIP_ENABLED
18473          }
18474          part { name: "elm.padding.icon.right";
18475             clip_to: "disclip";
18476             type: RECT;
18477             scale: 1;
18478             description { state: "default" 0.0;
18479                min: GENLIST_PADDING_16_INC 0;
18480                fixed: 1 0;
18481                rel1 {
18482                   relative: 1.0 0.0;
18483                   to_x: "elm.icon";
18484                }
18485                rel2.to_x: "elm.icon";
18486                align: 0.0 0.0;
18487                visible: 0;
18488             }
18489          }
18490          part { name: "elm.text.1";
18491             clip_to: "disclip";
18492             type: TEXT;
18493             mouse_events: 0;
18494             scale: 1;
18495             description { state: "default" 0.0;
18496                min: 0 GENLIST_SIZE_61_INC;
18497                fixed: 0 1;
18498                rel1 {
18499                   relative: 1.0 1.0;
18500                   to_x: "elm.padding.icon.right";
18501                   to_y: "elm.padding.top";
18502                }
18503                rel2 {
18504                   relative: 0.0 1.0;
18505                   to_x: "elm.padding.right";
18506                   to_y: "elm.padding.top";
18507                }
18508                align: 0.0 0.0;
18509                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
18510                text {
18511                   font: "SLP:style=Roman";
18512                   size: GENLIST_FONT_44_INC;
18513                   min: 0 1;
18514                   align: 0.0 0.5;
18515                   text_class: "list_item";
18516                }
18517             }
18518             description { state: "selected" 0.0;
18519                inherit: "default" 0.0;
18520                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
18521             }
18522             GENLIST_DESCRIPTION_FLIP_ENABLED
18523          }
18524          part { name: "elm.text.2";
18525             clip_to: "disclip";
18526             type: TEXT;
18527             mouse_events: 0;
18528             scale: 1;
18529             description { state: "default" 0.0;
18530                rel1 {
18531                   relative: 1.0 1.0;
18532                   to_x: "elm.padding.icon.right";
18533                   to_y: "elm.text.1";
18534                }
18535                rel2 {
18536                   relative: 0.0 0.0;
18537                   to_x: "elm.padding.right";
18538                   to_y: "elm.padding.bottom";
18539                }
18540                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
18541                text {
18542                   font: "SLP:style=Medium";
18543                   size: GENLIST_FONT_32_INC;
18544                   min: 0 1;
18545                   align: 0.0 0.5;
18546                   text_class: "slp_medium";
18547                }
18548             }
18549             description { state: "selected" 0.0;
18550                inherit: "default" 0.0;
18551                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
18552             }
18553             GENLIST_DESCRIPTION_FLIP_ENABLED
18554          }
18555          GENLIST_PART_FLIP
18556          GENLIST_PART_DISCLIP
18557       }
18558       programs {
18559          // signal: elm,state,%s,active
18560          //   a "check" item named %s went active
18561          // signal: elm,state,%s,passive
18562          //   a "check" item named %s went passive
18563          // default is passive
18564          program { name: "go_active";
18565             signal: "elm,state,selected";
18566             source: "elm";
18567             action: STATE_SET "selected" 0.0;
18568             target: "bg_image";
18569             target: "elm.text.1";
18570             target: "elm.text.2";
18571             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18572          }
18573          program { name: "go_passive";
18574             signal: "elm,state,unselected";
18575             source: "elm";
18576             action: STATE_SET "default" 0.0;
18577             target: "bg_image";
18578             target: "elm.text.1";
18579             target: "elm.text.2";
18580             transition: LINEAR 0.1;
18581          }
18582          program { name: "go_disabled";
18583             signal: "elm,state,disabled";
18584             source: "elm";
18585             action: STATE_SET "disabled" 0.0;
18586             target: "disclip";
18587          }
18588          program { name: "go_enabled";
18589             signal: "elm,state,enabled";
18590             source: "elm";
18591             action: STATE_SET "default" 0.0;
18592             target: "disclip";
18593          }
18594          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
18595          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18596       }
18597    }
18598
18599    group { name: "elm/genlist/item/dialogue/2text.3icon/default";
18600       alias: "elm/genlist/item_odd/dialogue/2text.3icon/default";
18601       alias: "elm/genlist/item_compress/dialogue/2text.3icon/default";
18602       alias: "elm/genlist/item_compress_odd/dialogue/2text.3icon/default";
18603       alias: "elm/layout/dialogue/2text.3icon";
18604       data.item: "stacking" "above";
18605       data.item: "selectraise" "on";
18606       data.item: "texts" "elm.text.1 elm.text.2";
18607       data.item: "contents" "elm.icon.1 elm.icon.2 elm.swallow.colorbar";
18608       data.item: "flips" "elm.flip.content";
18609       parts {
18610          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
18611          GENLIST_PART_DIALOGUE_BG_IMAGE
18612          GENLIST_PART_BOTTOM_LINE
18613          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
18614          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
18615          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18616          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
18617          GENLIST_PART_DIALOGUE_ITEM
18618          GENLIST_PART_DIALOGUE_RIGHT_LINE
18619          part { name: "elm.swallow.colorbar";
18620             clip_to: "disclip";
18621             type: SWALLOW;
18622             scale: 1;
18623             description { state: "default" 0.0;
18624                min: GENLIST_SIZE_10_INC GENLIST_SIZE_21_INC;
18625                fixed: 1 1;
18626                rel1 {
18627                   relative: 1.0 0.0;
18628                   to_x: "elm.rect.dialogue";
18629                }
18630                rel2 {
18631                   relative: 1.0 0.0;
18632                   to_x: "elm.rect.dialogue";
18633                }
18634                align: 0.0 0.0;
18635             }
18636          }
18637          part { name: "elm.icon.1";
18638             clip_to: "disclip";
18639             type: SWALLOW;
18640             scale: 1;
18641             description { state: "default" 0.0;
18642                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18643                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18644                fixed: 1 1;
18645                rel1 {
18646                   relative: 1.0 0.0;
18647                   to_x: "elm.padding.left";
18648                }
18649                rel2 {
18650                   relative: 1.0 1.0;
18651                   to_x: "elm.padding.left";
18652                }
18653                align: 0.0 0.5;
18654             }
18655             GENLIST_DESCRIPTION_FLIP_ENABLED
18656          }
18657          part { name: "elm.padding.icon1.right";
18658             type: RECT;
18659             scale: 1;
18660             description { state: "default" 0.0;
18661                min: GENLIST_PADDING_16_INC 0;
18662                fixed: 1 0;
18663                rel1 {
18664                   relative: 1.0 0.0;
18665                   to_x: "elm.icon.1";
18666                }
18667                rel2.to_x: "elm.icon.1";
18668                align: 0.0 0.0;
18669                visible: 0;
18670             }
18671          }
18672          part { name: "elm.icon.2";
18673             clip_to: "disclip";
18674             type: SWALLOW;
18675             scale: 1;
18676             description { state: "default" 0.0;
18677                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18678                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18679                fixed: 1 1;
18680                rel1.to_x: "elm.padding.right";
18681                rel2 {
18682                   relative: 0.0 1.0;
18683                   to_x: "elm.padding.right";
18684                }
18685                align: 1.0 0.5;
18686             }
18687             GENLIST_DESCRIPTION_FLIP_ENABLED
18688          }
18689          part { name: "elm.padding.icon2.left";
18690             type: RECT;
18691             scale: 1;
18692             description { state: "default" 0.0;
18693                min: GENLIST_PADDING_16_INC 0;
18694                fixed: 1 0;
18695                rel1.to_x: "elm.icon.2";
18696                rel2 {
18697                   relative: 0.0 1.0;
18698                   to_x: "elm.icon.2";
18699                }
18700                align: 1.0 0.0;
18701                visible: 0;
18702             }
18703          }
18704          part { name: "elm.text.1";
18705             clip_to: "disclip";
18706             type: TEXT;
18707             mouse_events: 0;
18708             scale: 1;
18709             description { state: "default" 0.0;
18710                min: 0 GENLIST_SIZE_61_INC;
18711                fixed: 0 1;
18712                rel1 {
18713                   relative: 1.0 1.0;
18714                   to_x: "elm.padding.icon1.right";
18715                   to_y: "elm.padding.top";
18716                }
18717                rel2 {
18718                   relative: 0.0 1.0;
18719                   to_x: "elm.padding.icon2.left";
18720                   to_y: "elm.padding.top";
18721                }
18722                align: 0.0 0.0;
18723                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
18724                text {
18725                   font: "SLP:style=Roman";
18726                   size: GENLIST_FONT_44_INC;
18727                   min: 0 1;
18728                   align: 0.0 0.5;
18729                   text_class: "list_item";
18730                }
18731             }
18732             description { state: "selected" 0.0;
18733                inherit: "default" 0.0;
18734                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
18735             }
18736             GENLIST_DESCRIPTION_FLIP_ENABLED
18737          }
18738          part { name: "elm.text.2";
18739             clip_to: "disclip";
18740             type: TEXT;
18741             mouse_events: 0;
18742             scale: 1;
18743             description { state: "default" 0.0;
18744                rel1 {
18745                   relative: 1.0 1.0;
18746                   to_x: "elm.padding.icon1.right";
18747                   to_y: "elm.text.1";
18748                }
18749                rel2 {
18750                   relative: 0.0 0.0;
18751                   to_x: "elm.padding.icon2.left";
18752                   to_y: "elm.padding.bottom";
18753                }
18754                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
18755                text {
18756                   font: "SLP:style=Medium";
18757                   size: GENLIST_FONT_32_INC;
18758                   min: 0 1;
18759                   align: 0.0 0.5;
18760                   text_class: "slp_medium";
18761                }
18762             }
18763             description { state: "selected" 0.0;
18764                inherit: "default" 0.0;
18765                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
18766             }
18767             GENLIST_DESCRIPTION_FLIP_ENABLED
18768          }
18769          GENLIST_PART_FLIP
18770          GENLIST_PART_DISCLIP
18771       }
18772       programs {
18773          // signal: elm,state,%s,active
18774          //   a "check" item named %s went active
18775          // signal: elm,state,%s,passive
18776          //   a "check" item named %s went passive
18777          // default is passive
18778          program { name: "go_active";
18779             signal: "elm,state,selected";
18780             source: "elm";
18781             action: STATE_SET "selected" 0.0;
18782             target: "bg_image";
18783             target: "elm.text.1";
18784             target: "elm.text.2";
18785             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18786          }
18787          program { name: "go_passive";
18788             signal: "elm,state,unselected";
18789             source: "elm";
18790             action: STATE_SET "default" 0.0;
18791             target: "bg_image";
18792             target: "elm.text.1";
18793             target: "elm.text.2";
18794             transition: LINEAR 0.1;
18795          }
18796          program { name: "go_disabled";
18797             signal: "elm,state,disabled";
18798             source: "elm";
18799             action: STATE_SET "disabled" 0.0;
18800             target: "disclip";
18801          }
18802          program { name: "go_enabled";
18803             signal: "elm,state,enabled";
18804             source: "elm";
18805             action: STATE_SET "default" 0.0;
18806             target: "disclip";
18807          }
18808          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
18809          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
18810       }
18811    }
18812
18813    group { name: "elm/genlist/item/dialogue/2text.2icon/default";
18814       alias: "elm/genlist/item_odd/dialogue/2text.2icon/default";
18815       alias: "elm/genlist/item_compress/dialogue/2text.2icon/default";
18816       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon/default";
18817       alias: "elm/layout/dialogue/2text.2icon";
18818       data.item: "stacking" "above";
18819       data.item: "selectraise" "on";
18820       data.item: "texts" "elm.text.1 elm.text.2";
18821       data.item: "contents" "elm.icon.1 elm.icon.2";
18822       data.item: "flips" "elm.flip.content";
18823       parts {
18824          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
18825          GENLIST_PART_DIALOGUE_BG_IMAGE
18826          GENLIST_PART_BOTTOM_LINE
18827          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
18828          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
18829          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
18830          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
18831          GENLIST_PART_DIALOGUE_ITEM
18832          GENLIST_PART_DIALOGUE_RIGHT_LINE
18833          part { name: "elm.icon.1";
18834             clip_to: "disclip";
18835             type: SWALLOW;
18836             scale: 1;
18837             description { state: "default" 0.0;
18838                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
18839                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
18840                fixed: 1 1;
18841                rel1 {
18842                   relative: 1.0 1.0;
18843                   to_x: "elm.padding.left";
18844                   to_y: "elm.padding.top";
18845                }
18846                rel2 {
18847                   relative: 1.0 0.0;
18848                   to_x: "elm.padding.left";
18849                   to_y: "elm.padding.bottom";
18850                }
18851                align: 0.0 0.5;
18852             }
18853             GENLIST_DESCRIPTION_FLIP_ENABLED
18854          }
18855          part { name: "elm.padding.icon1.right";
18856             clip_to: "disclip";
18857             type: RECT;
18858             scale: 1;
18859             description { state: "default" 0.0;
18860                min: GENLIST_PADDING_16_INC 0;
18861                fixed: 1 0;
18862                rel1 {
18863                   relative: 1.0 0.0;
18864                   to_x: "elm.icon.1";
18865                }
18866                rel2.to_x: "elm.icon.1";
18867                align: 0.0 0.0;
18868                visible: 0;
18869             }
18870          }
18871          part { name: "elm.icon.2";
18872             clip_to: "disclip";
18873             type: SWALLOW;
18874             scale: 1;
18875             description { state: "default" 0.0;
18876                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18877                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
18878                fixed: 1 1;
18879                rel1 {
18880                   relative: 1.0 1.0;
18881                   to_x: "elm.padding.icon1.right";
18882                   to_y: "elm.padding.top";
18883                }
18884                rel2 {
18885                   relative: 1.0 0.0;
18886                   to_x: "elm.padding.icon1.right";
18887                   to_y: "elm.padding.bottom";
18888                }
18889                align: 0.0 0.5;
18890             }
18891             GENLIST_DESCRIPTION_FLIP_ENABLED
18892          }
18893          part { name: "elm.padding.icon2.right";
18894             clip_to: "disclip";
18895             type: RECT;
18896             scale: 1;
18897             description { state: "default" 0.0;
18898                min: GENLIST_PADDING_16_INC 0;
18899                fixed: 1 0;
18900                rel1 {
18901                   relative: 1.0 0.0;
18902                   to_x: "elm.icon.2";
18903                }
18904                rel2.to_x: "elm.icon.2";
18905                align: 0.0 0.0;
18906                visible: 0;
18907             }
18908          }
18909          part { name: "elm.text.1";
18910             clip_to: "disclip";
18911             type: TEXT;
18912             mouse_events: 0;
18913             scale: 1;
18914             description { state: "default" 0.0;
18915                min: 0 GENLIST_SIZE_61_INC;
18916                fixed: 0 1;
18917                rel1 {
18918                   relative: 1.0 1.0;
18919                   to_x: "elm.padding.icon2.right";
18920                   to_y: "elm.padding.top";
18921                }
18922                rel2 {
18923                   relative: 0.0 1.0;
18924                   to_x: "elm.padding.right";
18925                   to_y: "elm.padding.top";
18926                }
18927                align: 0.0 0.0;
18928                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
18929                text {
18930                   font: "SLP:style=Roman";
18931                   size: GENLIST_FONT_44_INC;
18932                   min: 0 1;
18933                   align: 0.0 0.5;
18934                   text_class: "list_item";
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          part { name: "elm.text.2";
18944             clip_to: "disclip";
18945             type: TEXT;
18946             mouse_events: 0;
18947             scale: 1;
18948             description { state: "default" 0.0;
18949                rel1 {
18950                   relative: 1.0 1.0;
18951                   to_x: "elm.padding.icon2.right";
18952                   to_y: "elm.text.1";
18953                }
18954                rel2 {
18955                   relative: 0.0 0.0;
18956                   to_x: "elm.padding.right";
18957                   to_y: "elm.padding.bottom";
18958                }
18959                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
18960                text {
18961                   font: "SLP:style=Medium";
18962                   size: GENLIST_FONT_32_INC;
18963                   min: 0 1;
18964                   align: 0.0 0.5;
18965                   text_class: "slp_medium";
18966                }
18967             }
18968             description { state: "selected" 0.0;
18969                inherit: "default" 0.0;
18970                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
18971             }
18972             GENLIST_DESCRIPTION_FLIP_ENABLED
18973          }
18974          GENLIST_PART_FLIP
18975          GENLIST_PART_DISCLIP
18976       }
18977       programs {
18978          // signal: elm,state,%s,active
18979          //   a "check" item named %s went active
18980          // signal: elm,state,%s,passive
18981          //   a "check" item named %s went passive
18982          // default is passive
18983          program { name: "go_active";
18984             signal: "elm,state,selected";
18985             source: "elm";
18986             action: STATE_SET "selected" 0.0;
18987             target: "bg_image";
18988             target: "elm.text.1";
18989             target: "elm.text.2";
18990             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
18991          }
18992          program { name: "go_passive";
18993             signal: "elm,state,unselected";
18994             source: "elm";
18995             action: STATE_SET "default" 0.0;
18996             target: "bg_image";
18997             target: "elm.text.1";
18998             target: "elm.text.2";
18999             transition: LINEAR 0.1;
19000          }
19001          program { name: "go_disabled";
19002             signal: "elm,state,disabled";
19003             source: "elm";
19004             action: STATE_SET "disabled" 0.0;
19005             target: "disclip";
19006          }
19007          program { name: "go_enabled";
19008             signal: "elm,state,enabled";
19009             source: "elm";
19010             action: STATE_SET "default" 0.0;
19011             target: "disclip";
19012          }
19013          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
19014          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
19015       }
19016    }
19017
19018    group { name: "elm/genlist/item/dialogue/2text.2icon.2/default";
19019       alias: "elm/genlist/item_odd/dialogue/2text.2icon.2/default";
19020       alias: "elm/genlist/item_compress/dialogue/2text.2icon.2/default";
19021       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon.2/default";
19022       alias: "elm/layout/dialogue/2text.2icon.2";
19023       data.item: "stacking" "above";
19024       data.item: "selectraise" "on";
19025       data.item: "texts" "elm.text.1 elm.text.2";
19026       data.item: "contents" "elm.icon.1 elm.icon.2";
19027       data.item: "flips" "elm.flip.content";
19028       parts {
19029          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
19030          GENLIST_PART_DIALOGUE_BG_IMAGE
19031          GENLIST_PART_BOTTOM_LINE
19032          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
19033          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
19034          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
19035          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
19036          GENLIST_PART_DIALOGUE_ITEM
19037          GENLIST_PART_DIALOGUE_RIGHT_LINE
19038          part { name: "elm.icon.1";
19039             clip_to: "disclip";
19040             type: SWALLOW;
19041             scale: 1;
19042             description { state: "default" 0.0;
19043                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
19044                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
19045                fixed: 1 1;
19046                rel1 {
19047                   relative: 1.0 1.0;
19048                   to_x: "elm.padding.left";
19049                   to_y: "elm.padding.top";
19050                }
19051                rel2 {
19052                   relative: 1.0 0.0;
19053                   to_x: "elm.padding.left";
19054                   to_y: "elm.padding.bottom";
19055                }
19056                align: 0.0 0.5;
19057             }
19058             GENLIST_DESCRIPTION_FLIP_ENABLED
19059          }
19060          part { name: "elm.padding.icon1.right";
19061             clip_to: "disclip";
19062             type: RECT;
19063             scale: 1;
19064             description { state: "default" 0.0;
19065                min: GENLIST_PADDING_16_INC 0;
19066                fixed: 1 0;
19067                rel1 {
19068                   relative: 1.0 0.0;
19069                   to_x: "elm.icon.1";
19070                }
19071                rel2.to_x: "elm.icon.1";
19072                align: 0.0 0.0;
19073                visible: 0;
19074             }
19075          }
19076          part { name: "elm.text.1";
19077             clip_to: "disclip";
19078             type: TEXT;
19079             mouse_events: 0;
19080             scale: 1;
19081             description { state: "default" 0.0;
19082                min: 0 GENLIST_SIZE_61_INC;
19083                fixed: 0 1;
19084                rel1 {
19085                   relative: 1.0 1.0;
19086                   to_x: "elm.padding.icon1.right";
19087                   to_y: "elm.padding.top";
19088                }
19089                rel2 {
19090                   relative: 0.0 1.0;
19091                   to_x: "elm.padding.right";
19092                   to_y: "elm.padding.top";
19093                }
19094                align: 0.0 0.0;
19095                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
19096                text {
19097                   font: "SLP:style=Roman";
19098                   size: GENLIST_FONT_44_INC;
19099                   min: 0 1;
19100                   align: 0.0 0.5;
19101                   text_class: "list_item";
19102                }
19103             }
19104             description { state: "selected" 0.0;
19105                inherit: "default" 0.0;
19106                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19107             }
19108             GENLIST_DESCRIPTION_FLIP_ENABLED
19109          }
19110          part { name: "elm.icon.2";
19111             clip_to: "disclip";
19112             type: SWALLOW;
19113             scale: 1;
19114             description { state: "default" 0.0;
19115                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
19116                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
19117                fixed: 1 1;
19118                rel1 {
19119                   relative: 0.0 1.0;
19120                   to_x: "elm.padding.right";
19121                   to_y: "elm.text.1";
19122                }
19123                rel2 {
19124                   relative: 0.0 0.0;
19125                   to_x: "elm.padding.right";
19126                   to_y: "elm.padding.bottom";
19127                }
19128                align: 1.0 0.5;
19129             }
19130             GENLIST_DESCRIPTION_FLIP_ENABLED
19131          }
19132          part { name: "elm.padding.icon2.left";
19133             clip_to: "disclip";
19134             type: RECT;
19135             scale: 1;
19136             description { state: "default" 0.0;
19137                min: GENLIST_PADDING_16_INC 0;
19138                fixed: 1 0;
19139                rel1 {
19140                   relative: 0.0 0.0;
19141                   to_x: "elm.icon.2";
19142                }
19143                rel2.to_x: "elm.icon.2";
19144                align: 1.0 0.0;
19145                visible: 0;
19146             }
19147          }
19148          part { name: "elm.text.2";
19149             clip_to: "disclip";
19150             type: TEXT;
19151             mouse_events: 0;
19152             scale: 1;
19153             description { state: "default" 0.0;
19154                rel1 {
19155                   relative: 1.0 1.0;
19156                   to_x: "elm.padding.icon1.right";
19157                   to_y: "elm.text.1";
19158                }
19159                rel2 {
19160                   relative: 0.0 0.0;
19161                   to_x: "elm.padding.icon2.left";
19162                   to_y: "elm.padding.bottom";
19163                }
19164                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
19165                text {
19166                   font: "SLP:style=Medium";
19167                   size: GENLIST_FONT_32_INC;
19168                   min: 0 1;
19169                   align: 0.0 0.5;
19170                   text_class: "slp_medium";
19171                }
19172             }
19173             description { state: "selected" 0.0;
19174                inherit: "default" 0.0;
19175                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19176             }
19177             GENLIST_DESCRIPTION_FLIP_ENABLED
19178          }
19179          GENLIST_PART_FLIP
19180          GENLIST_PART_DISCLIP
19181       }
19182       programs {
19183          // signal: elm,state,%s,active
19184          //   a "check" item named %s went active
19185          // signal: elm,state,%s,passive
19186          //   a "check" item named %s went passive
19187          // default is passive
19188          program { name: "go_active";
19189             signal: "elm,state,selected";
19190             source: "elm";
19191             action: STATE_SET "selected" 0.0;
19192             target: "bg_image";
19193             target: "elm.text.1";
19194             target: "elm.text.2";
19195             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
19196          }
19197          program { name: "go_passive";
19198             signal: "elm,state,unselected";
19199             source: "elm";
19200             action: STATE_SET "default" 0.0;
19201             target: "bg_image";
19202             target: "elm.text.1";
19203             target: "elm.text.2";
19204             transition: LINEAR 0.1;
19205          }
19206          program { name: "go_disabled";
19207             signal: "elm,state,disabled";
19208             source: "elm";
19209             action: STATE_SET "disabled" 0.0;
19210             target: "disclip";
19211          }
19212          program { name: "go_enabled";
19213             signal: "elm,state,enabled";
19214             source: "elm";
19215             action: STATE_SET "default" 0.0;
19216             target: "disclip";
19217          }
19218          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
19219          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
19220       }
19221    }
19222
19223    group { name: "elm/genlist/item/dialogue/2text.2icon.3/default";
19224       alias: "elm/genlist/item_odd/dialogue/2text.2icon.3/default";
19225       alias: "elm/genlist/item_compress/dialogue/2text.2icon.3/default";
19226       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon.3/default";
19227       alias: "elm/layout/dialogue/2text.2icon.3";
19228       data.item: "stacking" "above";
19229       data.item: "selectraise" "on";
19230       data.item: "texts" "elm.text.1 elm.text.2";
19231       data.item: "contents" "elm.icon.1 elm.icon.2";
19232       data.item: "flips" "elm.flip.content";
19233       parts {
19234          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
19235          GENLIST_PART_DIALOGUE_BG_IMAGE
19236          GENLIST_PART_BOTTOM_LINE
19237          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
19238          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
19239          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
19240          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
19241          GENLIST_PART_DIALOGUE_ITEM
19242          GENLIST_PART_DIALOGUE_RIGHT_LINE
19243          part { name: "elm.icon.1";
19244             clip_to: "disclip";
19245             type: SWALLOW;
19246             scale: 1;
19247             description { state: "default" 0.0;
19248                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
19249                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
19250                fixed: 1 1;
19251                rel1 {
19252                   relative: 1.0 1.0;
19253                   to_x: "elm.padding.left";
19254                   to_y: "elm.padding.top";
19255                }
19256                rel2 {
19257                   relative: 1.0 0.0;
19258                   to_x: "elm.padding.left";
19259                   to_y: "elm.padding.bottom";
19260                }
19261                align: 0.0 0.5;
19262             }
19263             GENLIST_DESCRIPTION_FLIP_ENABLED
19264          }
19265          part { name: "elm.padding.icon1.right";
19266             clip_to: "disclip";
19267             type: RECT;
19268             scale: 1;
19269             description { state: "default" 0.0;
19270                min: GENLIST_PADDING_16_INC 0;
19271                fixed: 1 0;
19272                rel1 {
19273                   relative: 1.0 0.0;
19274                   to_x: "elm.icon.1";
19275                }
19276                rel2.to_x: "elm.icon.1";
19277                align: 0.0 0.0;
19278                visible: 0;
19279             }
19280          }
19281          part { name: "elm.icon.2";
19282             clip_to: "disclip";
19283             type: SWALLOW;
19284             scale: 1;
19285             description { state: "default" 0.0;
19286                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
19287                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
19288                fixed: 1 1;
19289                rel1 {
19290                   relative: 0.0 1.0;
19291                   to_x: "elm.padding.right";
19292                   to_y: "elm.padding.top";
19293                }
19294                rel2 {
19295                   relative: 0.0 0.0;
19296                   to_x: "elm.padding.right";
19297                   to_y: "elm.padding.bottom";
19298                }
19299                align: 1.0 0.5;
19300             }
19301             GENLIST_DESCRIPTION_FLIP_ENABLED
19302          }
19303          part { name: "elm.padding.icon2.left";
19304             clip_to: "disclip";
19305             type: RECT;
19306             scale: 1;
19307             description { state: "default" 0.0;
19308                min: GENLIST_PADDING_16_INC 0;
19309                fixed: 1 0;
19310                rel1.to_x: "elm.icon.2";
19311                rel2 {
19312                   relative: 0.0 1.0;
19313                   to_x: "elm.icon.2";
19314                }
19315                align: 1.0 0.0;
19316                visible: 0;
19317             }
19318          }
19319          part { name: "elm.text.1";
19320             clip_to: "disclip";
19321             type: TEXT;
19322             mouse_events: 0;
19323             scale: 1;
19324             description { state: "default" 0.0;
19325                min: 0 GENLIST_SIZE_61_INC;
19326                fixed: 0 1;
19327                rel1 {
19328                   relative: 1.0 1.0;
19329                   to_x: "elm.padding.icon1.right";
19330                   to_y: "elm.padding.top";
19331                }
19332                rel2 {
19333                   relative: 0.0 1.0;
19334                   to_x: "elm.padding.icon2.left";
19335                   to_y: "elm.padding.top";
19336                }
19337                align: 0.0 0.0;
19338                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
19339                text {
19340                   font: "SLP:style=Roman";
19341                   size: GENLIST_FONT_44_INC;
19342                   min: 0 1;
19343                   align: 0.0 0.5;
19344                   text_class: "list_item";
19345                }
19346             }
19347             description { state: "selected" 0.0;
19348                inherit: "default" 0.0;
19349                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19350             }
19351             GENLIST_DESCRIPTION_FLIP_ENABLED
19352          }
19353          part { name: "elm.text.2";
19354             clip_to: "disclip";
19355             type: TEXT;
19356             mouse_events: 0;
19357             scale: 1;
19358             description { state: "default" 0.0;
19359                rel1 {
19360                   relative: 1.0 1.0;
19361                   to_x: "elm.padding.icon1.right";
19362                   to_y: "elm.text.1";
19363                }
19364                rel2 {
19365                   relative: 0.0 0.0;
19366                   to_x: "elm.padding.icon2.left";
19367                   to_y: "elm.padding.bottom";
19368                }
19369                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
19370                text {
19371                   font: "SLP:style=Medium";
19372                   size: GENLIST_FONT_32_INC;
19373                   min: 0 1;
19374                   align: 0.0 0.5;
19375                   text_class: "slp_medium";
19376                }
19377             }
19378             description { state: "selected" 0.0;
19379                inherit: "default" 0.0;
19380                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19381             }
19382             GENLIST_DESCRIPTION_FLIP_ENABLED
19383          }
19384          GENLIST_PART_FLIP
19385          GENLIST_PART_DISCLIP
19386       }
19387       programs {
19388          // signal: elm,state,%s,active
19389          //   a "check" item named %s went active
19390          // signal: elm,state,%s,passive
19391          //   a "check" item named %s went passive
19392          // default is passive
19393          program { name: "go_active";
19394             signal: "elm,state,selected";
19395             source: "elm";
19396             action: STATE_SET "selected" 0.0;
19397             target: "bg_image";
19398             target: "elm.text.1";
19399             target: "elm.text.2";
19400             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
19401          }
19402          program { name: "go_passive";
19403             signal: "elm,state,unselected";
19404             source: "elm";
19405             action: STATE_SET "default" 0.0;
19406             target: "bg_image";
19407             target: "elm.text.1";
19408             target: "elm.text.2";
19409             transition: LINEAR 0.1;
19410          }
19411          program { name: "go_disabled";
19412             signal: "elm,state,disabled";
19413             source: "elm";
19414             action: STATE_SET "disabled" 0.0;
19415             target: "disclip";
19416          }
19417          program { name: "go_enabled";
19418             signal: "elm,state,enabled";
19419             source: "elm";
19420             action: STATE_SET "default" 0.0;
19421             target: "disclip";
19422          }
19423          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
19424          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
19425       }
19426    }
19427
19428    group { name: "elm/genlist/item_compress/dialogue/2text.2icon.3.tb/default";
19429       inherit: "elm/genlist/item/dialogue/2text.2icon.3/default";
19430       parts {
19431          part { name: "elm.text.2";
19432             clip_to: "disclip";
19433             type: TEXTBLOCK;
19434             mouse_events: 0;
19435             scale: 1;
19436             description { state: "default" 0.0;
19437                rel1 {
19438                   relative: 1.0 1.0;
19439                   to_x: "elm.padding.icon1.right";
19440                   to_y: "elm.text.1";
19441                }
19442                rel2 {
19443                   relative: 0.0 0.0;
19444                   to_x: "elm.padding.icon2.left";
19445                   to_y: "elm.padding.bottom";
19446                }
19447                text {
19448                   style: "genlist_default_textblock_style";
19449                   size: GENLIST_FONT_32_INC;
19450                   min: 0 1;
19451                   align: 0.0 0.5;
19452                   text_class: "slp_medium";
19453                }
19454             }
19455             description { state: "selected" 0.0;
19456                inherit: "default" 0.0;
19457                text.style: "genlist_default_textblock_selected_style";
19458             }
19459             GENLIST_DESCRIPTION_FLIP_ENABLED
19460          }
19461       }
19462    }
19463
19464    group { name: "elm/genlist/item/dialogue/2text.1icon.5/default";
19465       alias: "elm/genlist/item_odd/dialogue/2text.1icon.5/default";
19466       alias: "elm/genlist/item_compress/dialogue/2text.1icon.5/default";
19467       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.5/default";
19468       alias: "elm/layout/dialogue/2text.1icon.5";
19469       data.item: "stacking" "above";
19470       data.item: "selectraise" "on";
19471       data.item: "texts" "elm.text.1 elm.text.2";
19472       data.item: "contents" "elm.icon";
19473       data.item: "flips" "elm.flip.content";
19474       parts {
19475          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
19476          GENLIST_PART_DIALOGUE_BG_IMAGE
19477          GENLIST_PART_BOTTOM_LINE
19478          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
19479          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
19480          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
19481          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
19482          GENLIST_PART_DIALOGUE_ITEM
19483          GENLIST_PART_DIALOGUE_RIGHT_LINE
19484          part { name: "elm.icon";
19485             clip_to: "disclip";
19486             type: SWALLOW;
19487             scale: 1;
19488             description { state: "default" 0.0;
19489                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
19490                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
19491                fixed: 1 1;
19492                rel1 {
19493                   relative: 0.0 1.0;
19494                   to_x: "elm.padding.right";
19495                   to_y: "elm.padding.top";
19496                }
19497                rel2 {
19498                   relative: 0.0 0.0;
19499                   to_x: "elm.padding.right";
19500                   to_y: "elm.padding.bottom";
19501                }
19502                align: 1.0 0.5;
19503             }
19504             GENLIST_DESCRIPTION_FLIP_ENABLED
19505          }
19506          part { name: "elm.padding.icon.left";
19507             clip_to: "disclip";
19508             type: RECT;
19509             scale: 1;
19510             description { state: "default" 0.0;
19511                min: GENLIST_PADDING_16_INC 0;
19512                fixed: 1 0;
19513                rel1.to_x: "elm.icon";
19514                rel2 {
19515                   relative: 0.0 1.0;
19516                   to_x: "elm.icon";
19517                }
19518                align: 1.0 0.0;
19519                visible: 0;
19520             }
19521          }
19522          part { name: "elm.text.1";
19523             clip_to: "disclip";
19524             type: TEXT;
19525             mouse_events: 0;
19526             scale: 1;
19527             description { state: "default" 0.0;
19528                min: 0 GENLIST_SIZE_61_INC;
19529                fixed: 0 1;
19530                rel1 {
19531                   relative: 1.0 0.0;
19532                   to_x: "elm.padding.left";
19533                   to_y: "elm.padding.bottom";
19534                }
19535                rel2 {
19536                   relative: 0.0 0.0;
19537                   to_x: "elm.padding.icon.left";
19538                   to_y: "elm.padding.bottom";
19539                }
19540                align: 0.0 1.0;
19541                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
19542                text {
19543                   font: "SLP:style=Roman";
19544                   size: GENLIST_FONT_44_INC;
19545                   min: 0 1;
19546                   align: 0.0 0.5;
19547                   text_class: "list_item";
19548                }
19549             }
19550             description { state: "selected" 0.0;
19551                inherit: "default" 0.0;
19552                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19553             }
19554             GENLIST_DESCRIPTION_FLIP_ENABLED
19555          }
19556          part { name: "elm.text.2";
19557             clip_to: "disclip";
19558             type: TEXT;
19559             mouse_events: 0;
19560             scale: 1;
19561             description { state: "default" 0.0;
19562                rel1 {
19563                   relative: 1.0 1.0;
19564                   to_x: "elm.padding.left";
19565                   to_y: "elm.padding.top";
19566                }
19567                rel2 {
19568                   relative: 0.0 0.0;
19569                   to_x: "elm.padding.icon.left";
19570                   to_y: "elm.text.1";
19571                }
19572                align: 0.0 0.0;
19573                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
19574                text {
19575                   font: "SLP:style=Medium";
19576                   size: GENLIST_FONT_32_INC;
19577                   min: 0 1;
19578                   align: 0.0 0.5;
19579                   text_class: "slp_roman";
19580                }
19581             }
19582             description { state: "selected" 0.0;
19583                inherit: "default" 0.0;
19584                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19585             }
19586             GENLIST_DESCRIPTION_FLIP_ENABLED
19587          }
19588          GENLIST_PART_FLIP
19589          GENLIST_PART_DISCLIP
19590       }
19591       programs {
19592          // signal: elm,state,%s,active
19593          //   a "check" item named %s went active
19594          // signal: elm,state,%s,passive
19595          //   a "check" item named %s went passive
19596          // default is passive
19597          program { name: "go_active";
19598             signal: "elm,state,selected";
19599             source: "elm";
19600             action: STATE_SET "selected" 0.0;
19601             target: "bg_image";
19602             target: "elm.text.1";
19603             target: "elm.text.2";
19604             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
19605          }
19606          program { name: "go_passive";
19607             signal: "elm,state,unselected";
19608             source: "elm";
19609             action: STATE_SET "default" 0.0;
19610             target: "bg_image";
19611             target: "elm.text.1";
19612             target: "elm.text.2";
19613             transition: LINEAR 0.1;
19614          }
19615          program { name: "go_disabled";
19616             signal: "elm,state,disabled";
19617             source: "elm";
19618             action: STATE_SET "disabled" 0.0;
19619             target: "disclip";
19620          }
19621          program { name: "go_enabled";
19622             signal: "elm,state,enabled";
19623             source: "elm";
19624             action: STATE_SET "default" 0.0;
19625             target: "disclip";
19626          }
19627          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
19628          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
19629       }
19630    }
19631
19632 // 4.2.11
19633    group { name: "elm/genlist/item_compress/dialogue/1title.1text.2/default";
19634       alias: "elm/genlist/item_compress_odd/dialogue/1title.1text.2/default";
19635       alias: "elm/layout/dialogue/1title.1text.2";
19636       data.item: "stacking" "above";
19637       data.item: "selectraise" "on";
19638       data.item: "texts" "elm.title elm.text";
19639       parts {
19640          part { name: "base";
19641             type: RECT;
19642             repeat_events: 1;
19643             description { state: "default" 0.0;
19644                color: GENLIST_PART_BG_COLOR_INC;
19645             }
19646          }
19647          GENLIST_PART_DIALOGUE_BG_IMAGE
19648          GENLIST_PART_BOTTOM_LINE
19649          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_21_INC )
19650          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_22_INC )
19651          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
19652          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
19653          GENLIST_PART_DIALOGUE_ITEM
19654          GENLIST_PART_DIALOGUE_RIGHT_LINE
19655          part { name: "elm.title";
19656             clip_to: "disclip";
19657             type: TEXT;
19658             mouse_events: 0;
19659             scale: 1;
19660             description { state: "default" 0.0;
19661                min: GENLIST_SIZE_163_INC 0;
19662                fixed: 1 0;
19663                rel1 {
19664                   relative: 1.0 0.0;
19665                   to_x: "elm.padding.left";
19666                }
19667                rel2 {
19668                   relative: 1.0 1.0;
19669                   to_x: "elm.padding.left";
19670                }
19671                align: 0.0 0.0;
19672                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
19673                text {
19674                   font: "SLP:style=Medium";
19675                   size: GENLIST_FONT_32_INC;
19676                   min: 0 1;
19677                   align: 0.0 0.5;
19678                   text_class: "slp_medium";
19679                }
19680             }
19681             description { state: "selected" 0.0;
19682                inherit: "default" 0.0;
19683                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
19684             }
19685          }
19686          part { name: "vertical_line";
19687             clip_to: "disclip";
19688             type: RECT;
19689             mouse_events: 0;
19690             description { state: "default" 0.0;
19691                min: 1 0;
19692                fixed: 1 0;
19693                rel1 {
19694                   relative: 1.0 0.0;
19695                   to_x: "elm.title";
19696                }
19697                rel2.to_x: "elm.title";
19698                align: 0.0 0.5;
19699                color: GENLIST_PART_LIST_LINE_COLOR_INC;
19700             }
19701          }
19702          part { name: "elm.padding.text.left";
19703             clip_to: "disclip";
19704             type: RECT;
19705             mouse_events: 0;
19706             description { state: "default" 0.0;
19707                min: GENLIST_PADDING_16_INC 0;
19708                fixed: 1 0;
19709                rel1 {
19710                   relative: 1.0 0.0;
19711                   to_x: "vertical_line";
19712                }
19713                rel2.to_x: "vertical_line";
19714                align: 0.0 0.5;
19715                visible: 0;
19716             }
19717          }
19718          part { name: "elm.text";
19719             clip_to: "disclip";
19720             type: TEXTBLOCK;
19721             mouse_events: 0;
19722             scale: 1;
19723             description { state: "default" 0.0;
19724                rel1 {
19725                   relative: 1.0 1.0;
19726                   to_x: "elm.padding.text.left";
19727                   to_y: "elm.padding.top";
19728                }
19729                rel2 {
19730                   relative: 0.0 0.0;
19731                   to_x: "elm.padding.right";
19732                   to_y: "elm.padding.bottom";
19733                }
19734                text {
19735                   style: "genlist_textblock_flexible_style";
19736                   min: 0 1;
19737                   align: 0.0 0.5;
19738                }
19739             }
19740             description { state: "selected" 0.0;
19741                inherit: "default" 0.0;
19742                text.style: "genlist_textblock_selected_style";
19743             }
19744          }
19745          GENLIST_PART_DISCLIP
19746       }
19747       programs {
19748          // signal: elm,state,%s,active
19749          //   a "check" item named %s went active
19750          // signal: elm,state,%s,passive
19751          //   a "check" item named %s went passive
19752          // default is passive
19753          program { name: "go_active";
19754             signal: "elm,state,selected";
19755             source: "elm";
19756             action: STATE_SET "selected" 0.0;
19757             target: "bg_image";
19758             target: "elm.title";
19759             target: "elm.text";
19760             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
19761          }
19762          program { name: "go_passive";
19763             signal: "elm,state,unselected";
19764             source: "elm";
19765             action: STATE_SET "default" 0.0;
19766             target: "bg_image";
19767             target: "elm.title";
19768             target: "elm.text";
19769             transition: LINEAR 0.1;
19770          }
19771          program { name: "go_disabled";
19772             signal: "elm,state,disabled";
19773             source: "elm";
19774             action: STATE_SET "disabled" 0.0;
19775             target: "disclip";
19776          }
19777          program { name: "go_enabled";
19778             signal: "elm,state,enabled";
19779             source: "elm";
19780             action: STATE_SET "default" 0.0;
19781             target: "disclip";
19782          }
19783          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
19784       }
19785    }
19786
19787 /*   group { name: "elm/genlist/item/dialogue/1title.2text/default";
19788       alias: "elm/genlist/item_odd/dialogue/1title.2text/default";
19789       alias: "elm/genlist/item_compress/dialogue/1title.2text/default";
19790       alias: "elm/genlist/item_compress_odd/dialogue/1title.2text/default";
19791       alias: "elm/layout/dialogue/1title.2text";
19792       data.item: "stacking" "above";
19793       data.item: "selectraise" "on";
19794       data.item: "texts" "elm.title elm.text.1 elm.text.2";
19795       parts {
19796          GENLIST_PART_BASE( GENLIST_HEIGHT_142_INC )
19797          GENLIST_PART_BOTTOM_LINE
19798          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
19799          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
19800          GENLIST_PART_DIALOGUE_ITEM
19801          GENLIST_PART_DIALOGUE_RIGHT_LINE
19802          part { name: "vertical_line";
19803             clip_to: "disclip";
19804             type: RECT;
19805             mouse_events: 0;
19806             description { state: "default" 0.0;
19807                min: 1 0;
19808                fixed: 1 0;
19809                rel1 {
19810                   relative: 1.0 0.0;
19811                   to_x: "elm.title";
19812                }
19813                rel2.to_x: "elm.title";
19814                align: 0.0 0.5;
19815                color: GENLIST_PART_LIST_LINE_COLOR_INC;
19816             }
19817          }
19818          part { name: "center_line";
19819             clip_to: "disclip";
19820             type: RECT;
19821             mouse_events: 0;
19822             description { state: "default" 0.0;
19823                min: 0 1;
19824                fixed: 0 1;
19825                color: GENLIST_PART_LIST_LINE_COLOR_INC;
19826                rel1 {
19827                   relative: 1.0 0.5;
19828                   to_x: "vertical_line";
19829                }
19830                rel2.relative: 1.0 0.5;
19831                align: 0.5 1.0;
19832             }
19833          }
19834          part { name: "elm.title";
19835             clip_to: "disclip";
19836             type: TEXT;
19837             mouse_events: 0;
19838             scale: 1;
19839             description { state: "default" 0.0;
19840                min: GENLIST_SIZE_163_INC 0;
19841                fixed: 1 0;
19842                rel1 {
19843                   relative: 1.0  0.0;
19844                   to_x: "elm.padding.left";
19845                }
19846                rel2.to_x: "elm.padding.left";
19847                align: 0.0 0.5;
19848                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
19849                text {
19850                   font: "SLP:style=Medium";
19851                   size: GENLIST_FONT_32_INC;
19852                   min: 0 1;
19853                   align: 0.0 0.5;
19854                   text_class: "slp_medium";
19855                }
19856             }
19857          }
19858          part { name: "elm.padding.title.right";
19859             clip_to: "disclip";
19860             type: RECT;
19861             mouse_events: 0;
19862             scale: 1;
19863             description { state: "default" 0.0;
19864                min: GENLIST_PADDING_16_INC 0;
19865                fixed: 1 0;
19866                rel1 {
19867                    relative: 1.0 0.0;
19868                    to_x: "elm.title";
19869                }
19870                rel2.to_x: "elm.title";
19871                visible: 0;
19872                align: 0.0 0.5;
19873             }
19874          }
19875          part { name: "elm.text.1";
19876             clip_to: "disclip";
19877             type: TEXT;
19878             mouse_events: 0;
19879             scale: 1;
19880             description { state: "default" 0.0;
19881                rel1 {
19882                   relative: 1.0 0.0;
19883                   to_x: "elm.padding.title.right";
19884                }
19885                rel2 {
19886                   relative: 0.0 0.0;
19887                   to_x: "elm.padding.right";
19888                   to_y: "center_line";
19889                }
19890                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
19891                text {
19892                   font: "SLP:style=Roman";
19893                   size: GENLIST_FONT_44_INC;
19894                   min: 0 1;
19895                   align: 0.0 0.5;
19896                   text_class: "list_item";
19897                }
19898             }
19899          }
19900          part { name: "elm.text.2";
19901             clip_to: "disclip";
19902             type: TEXT;
19903             mouse_events: 0;
19904             scale: 1;
19905             description { state: "default" 0.0;
19906                rel1 {
19907                   relative: 1.0 0.5;
19908                   to_x: "elm.padding.title.right";
19909                }
19910                rel2 {
19911                   relative: 0.0 1.0;
19912                   to_x: "elm.padding.right";
19913                }
19914                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
19915                text {
19916                   font: "SLP:style=Roman";
19917                   size: GENLIST_FONT_44_INC;
19918                   min: 0 1;
19919                   align: 0.0 0.5;
19920                   text_class: "slp_roman";
19921                }
19922             }
19923          }
19924          GENLIST_PART_DISCLIP
19925       }
19926       programs {
19927          // signal: elm,state,%s,active
19928          //   a "check" item named %s went active
19929          // signal: elm,state,%s,passive
19930          //   a "check" item named %s went passive
19931          // default is passive
19932          program { name: "go_active";
19933             signal: "elm,state,selected";
19934             source: "elm";
19935             action: STATE_SET "selected" 0.0;
19936             target: "elm.title";
19937             target: "elm.text.1";
19938             target: "elm.text.2";
19939          }
19940          program { name: "go_passive";
19941             signal: "elm,state,unselected";
19942             source: "elm";
19943             action: STATE_SET "default" 0.0;
19944             target: "elm.title";
19945             target: "elm.text.1";
19946             target: "elm.text.2";
19947             transition: LINEAR 0.1;
19948          }
19949          program { name: "go_disabled";
19950             signal: "elm,state,disabled";
19951             source: "elm";
19952             action: STATE_SET "disabled" 0.0;
19953             target: "disclip";
19954          }
19955          program { name: "go_enabled";
19956             signal: "elm,state,enabled";
19957             source: "elm";
19958             action: STATE_SET "default" 0.0;
19959             target: "disclip";
19960          }
19961       }
19962    }*/
19963
19964    /* DEPRECATED : remove this style. use dialogue/1text.4icon instead. */
19965    group { name: "elm/genlist/item/dialogue/4icon/default";
19966       alias: "elm/genlist/item_odd/dialogue/4icon/default";
19967       alias: "elm/genlist/item_compress/dialogue/4icon/default";
19968       alias: "elm/genlist/item_compress_odd/dialogue/4icon/default";
19969       alias: "elm/layout/dialogue/4icon";
19970       data.item: "stacking" "above";
19971       data.item: "selectraise" "on";
19972       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4";
19973       images {
19974          image : "00_input_bg.png" COMP;
19975       }
19976       parts {
19977          GENLIST_PART_BASE( GENLIST_HEIGHT_207_INC )
19978          GENLIST_PART_DIALOGUE_BG_IMAGE
19979          GENLIST_PART_BOTTOM_LINE
19980          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
19981          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_22_INC )
19982          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_12_INC )
19983          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_74_INC )
19984          GENLIST_PART_DIALOGUE_ITEM
19985          GENLIST_PART_DIALOGUE_RIGHT_LINE
19986          part { name: "text";
19987             clip_to: "disclip";
19988             type: TEXT;
19989             mouse_events: 0;
19990             scale: 1;
19991             description { state: "default" 0.0;
19992                min: 0 GENLIST_SIZE_48_INC;
19993                fixed: 0 1;
19994                rel1 {
19995                   relative: 1.0 1.0;
19996                   to_x: "elm.padding.left";
19997                   to_y: "elm.padding.top";
19998                }
19999                rel2 {
20000                   relative: 0.0 1.0;
20001                   to_x: "elm.padding.right";
20002                   to_y: "elm.padding.top";
20003                }
20004                align: 0.0 0.0;
20005                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
20006                text {
20007                   font: "SLP:style=Medium";
20008                   size: GENLIST_FONT_32_INC;
20009                   min: 0 1;
20010                   align: 0.0 0.5;
20011                   text: "Password";
20012                   text_class: "list_item";
20013                }
20014             }
20015             description { state: "selected" 0.0;
20016                inherit: "default" 0.0;
20017                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
20018             }
20019          }
20020          part { name: "elm.padding.icon1.left";
20021             clip_to: "disclip";
20022             type: RECT;
20023             scale: 1;
20024             description { state: "default" 0.0;
20025                min: GENLIST_PADDING_74_INC 0;
20026                fixed: 1 0;
20027                rel1 {
20028                   relative: 1.0 0.0;
20029                   to_x: "elm.padding.left";
20030                   to_y: "elm.padding.bottom";
20031                }
20032                rel2 {
20033                   relative: 1.0 0.0;
20034                   to_x: "elm.padding.left";
20035                   to_y: "elm.padding.bottom";
20036                }
20037                align: 0.0 1.0;
20038                visible: 0;
20039             }
20040          }
20041          part { name: "elm.icon1.bg";
20042             clip_to: "disclip";
20043             type: IMAGE;
20044             scale: 1;
20045             description { state: "default" 0.0;
20046                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
20047                fixed: 1 1;
20048                rel1 {
20049                   relative: 1.0 0.0;
20050                   to_x: "elm.padding.icon1.left";
20051                   to_y: "elm.padding.bottom";
20052                }
20053                rel2 {
20054                   relative: 1.0 0.0;
20055                   to_x: "elm.padding.icon1.left";
20056                   to_y: "elm.padding.bottom";
20057                }
20058                align: 0.0 1.0;
20059                image.normal: "00_input_bg.png";
20060                image.border: 4 4 4 4; // TODO: check this out.
20061                image.border_scale: 1;
20062             }
20063          }
20064          part { name: "elm.icon.1";
20065             clip_to: "disclip";
20066             type: SWALLOW;
20067             scale: 1;
20068             description { state: "default" 0.0;
20069                rel1.to: "elm.icon1.bg";
20070                rel2.to: "elm.icon1.bg";
20071                align: 0.5 0.5;
20072             }
20073          }
20074          part { name: "elm.padding.icon2.left";
20075             clip_to: "disclip";
20076             type: RECT;
20077             scale: 1;
20078             description { state: "default" 0.0;
20079                min: GENLIST_ICON_SMALL_SIZE 0;
20080                fixed: 1 0;
20081                rel1 {
20082                   relative: 1.0 0.0;
20083                   to_x: "elm.icon1.bg";
20084                   to_y: "elm.padding.bottom";
20085                }
20086                rel2 {
20087                   relative: 1.0 0.0;
20088                   to_x: "elm.icon1.bg";
20089                   to_y: "elm.padding.bottom";
20090                }
20091                align: 0.0 1.0;
20092                visible: 0;
20093             }
20094          }
20095          part { name: "elm.icon2.bg";
20096             clip_to: "disclip";
20097             type: IMAGE;
20098             scale: 1;
20099             description { state: "default" 0.0;
20100                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
20101                fixed: 1 1;
20102                rel1 {
20103                   relative: 1.0 0.0;
20104                   to_x: "elm.padding.icon2.left";
20105                   to_y: "elm.padding.bottom";
20106                }
20107                rel2 {
20108                   relative: 1.0 0.0;
20109                   to_x: "elm.padding.icon2.left";
20110                   to_y: "elm.padding.bottom";
20111                }
20112                align: 0.0 1.0;
20113                image.normal: "00_input_bg.png";
20114                image.border: 4 4 4 4; // TODO : check this out
20115                image.border_scale: 1;
20116             }
20117          }
20118          part { name: "elm.icon.2";
20119             clip_to: "disclip";
20120             type: SWALLOW;
20121             scale: 1;
20122             description { state: "default" 0.0;
20123                rel1.to: "elm.icon2.bg";
20124                rel2.to: "elm.icon2.bg";
20125                align: 0.5 0.5;
20126             }
20127          }
20128          part { name: "elm.padding.icon3.left";
20129             clip_to: "disclip";
20130             type: RECT;
20131             scale: 1;
20132             description { state: "default" 0.0;
20133                min: GENLIST_ICON_SMALL_SIZE 0;
20134                fixed: 1 0;
20135                rel1 {
20136                   relative: 1.0 0.0;
20137                   to_x: "elm.icon2.bg";
20138                   to_y: "elm.padding.bottom";
20139                }
20140                rel2 {
20141                   relative: 1.0 0.0;
20142                   to_x: "elm.icon2.bg";
20143                   to_y: "elm.padding.bottom";
20144                }
20145                align: 0.0 1.0;
20146                visible: 0;
20147             }
20148          }
20149          part { name: "elm.icon3.bg";
20150             clip_to: "disclip";
20151             type: IMAGE;
20152             scale: 1;
20153             description { state: "default" 0.0;
20154                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
20155                fixed: 1 1;
20156                rel1 {
20157                   relative: 1.0 0.0;
20158                   to_x: "elm.padding.icon3.left";
20159                   to_y: "elm.padding.bottom";
20160                }
20161                rel2 {
20162                   relative: 1.0 0.0;
20163                   to_x: "elm.padding.icon3.left";
20164                   to_y: "elm.padding.bottom";
20165                }
20166                align: 0.0 1.0;
20167                image.normal: "00_input_bg.png";
20168                image.border: 4 4 4 4; // TODO: handle this?
20169                image.border_scale: 1;
20170             }
20171          }
20172          part { name: "elm.icon.3";
20173             clip_to: "disclip";
20174             type: SWALLOW;
20175             scale: 1;
20176             description { state: "default" 0.0;
20177                rel1.to: "elm.icon3.bg";
20178                rel2.to: "elm.icon3.bg";
20179                align: 0.5 0.5;
20180             }
20181          }
20182          part { name: "elm.padding.icon4.left";
20183             clip_to: "disclip";
20184             type: RECT;
20185             scale: 1;
20186             description { state: "default" 0.0;
20187                min: GENLIST_ICON_SMALL_SIZE 0;
20188                fixed: 1 0;
20189                rel1 {
20190                   relative: 1.0 0.0;
20191                   to_x: "elm.icon3.bg";
20192                   to_y: "elm.padding.bottom";
20193                }
20194                rel2 {
20195                   relative: 1.0 0.0;
20196                   to_x: "elm.icon3.bg";
20197                   to_y: "elm.padding.bottom";
20198                }
20199                align: 0.0 1.0;
20200                visible: 0;
20201             }
20202          }
20203          part { name: "elm.icon4.bg";
20204             clip_to: "disclip";
20205             type: IMAGE;
20206             scale: 1;
20207             description { state: "default" 0.0;
20208                min: GENLIST_SIZE_116_INC GENLIST_SIZE_116_INC;
20209                fixed: 1 1;
20210                rel1 {
20211                   relative: 1.0 0.0;
20212                   to_x: "elm.padding.icon4.left";
20213                   to_y: "elm.padding.bottom";
20214                }
20215                rel2 {
20216                   relative: 1.0 0.0;
20217                   to_x: "elm.padding.icon4.left";
20218                   to_y: "elm.padding.bottom";
20219                }
20220                align: 0.0 1.0;
20221                image.normal: "00_input_bg.png";
20222                image.border: 4 4 4 4; // TODO: check this out
20223                image.border_scale: 1;
20224             }
20225          }
20226          part { name: "elm.icon.4";
20227             clip_to: "disclip";
20228             type: SWALLOW;
20229             scale: 1;
20230             description { state: "default" 0.0;
20231                rel1.to: "elm.icon4.bg";
20232                rel2.to: "elm.icon4.bg";
20233                align: 0.5 0.5;
20234             }
20235          }
20236          GENLIST_PART_DISCLIP
20237       }
20238       programs {
20239          // signal: elm,state,%s,active
20240          //   a "check" item named %s went active
20241          // signal: elm,state,%s,passive
20242          //   a "check" item named %s went passive
20243          // default is passive
20244          /*program { name: "go_active";
20245             signal: "elm,state,selected";
20246             source: "elm";
20247             action: STATE_SET "selected" 0.0;
20248             target: "bg_image";
20249             target: "elm.text.1";
20250             target: "elm.text.2";
20251          }
20252          program { name: "go_passive";
20253             signal: "elm,state,unselected";
20254             source: "elm";
20255             action: STATE_SET "default" 0.0;
20256             target: "bg_image";
20257             target: "elm.text.1";
20258             target: "elm.text.2";
20259             transition: LINEAR 0.1;
20260          }*/
20261          program { name: "go_disabled";
20262             signal: "elm,state,disabled";
20263             source: "elm";
20264             action: STATE_SET "disabled" 0.0;
20265             target: "disclip";
20266          }
20267          program { name: "go_enabled";
20268             signal: "elm,state,enabled";
20269             source: "elm";
20270             action: STATE_SET "default" 0.0;
20271             target: "disclip";
20272          }
20273       }
20274    }
20275
20276    group { name: "elm/genlist/item/dialogue/2text.2icon.4/default";
20277       alias: "elm/genlist/item_odd/dialogue/2text.2icon.4/default";
20278       alias: "elm/genlist/item_compress/dialogue/2text.2icon.4/default";
20279       alias: "elm/genlist/item_compress_odd/dialogue/2text.2icon.4/default";
20280       alias: "elm/layout/dialogue/2text.2icon.4";
20281       data.item: "stacking" "above";
20282       data.item: "selectraise" "on";
20283       data.item: "texts" "elm.text.1 elm.text.2";
20284       data.item: "contents" "elm.icon.1 elm.icon.2";
20285       data.item: "flips" "elm.flip.content";
20286       images {
20287          image: "00_list_bar_press_1x80.png" COMP;
20288       }
20289       parts {
20290          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
20291          GENLIST_PART_DIALOGUE_BG_IMAGE
20292          GENLIST_PART_BOTTOM_LINE
20293          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
20294          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
20295          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
20296          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
20297          GENLIST_PART_DIALOGUE_ITEM
20298          GENLIST_PART_DIALOGUE_RIGHT_LINE
20299          part { name: "elm.icon.1";
20300             clip_to: "disclip";
20301             type: SWALLOW;
20302             scale: 1;
20303             description { state: "default" 0.0;
20304                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
20305                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
20306                fixed: 1 1;
20307                rel1 {
20308                   relative: 1.0 1.0;
20309                   to_x: "elm.padding.left";
20310                   to_y: "elm.text.1";
20311                }
20312                rel2 {
20313                   relative: 1.0 0.0;
20314                   to_x: "elm.padding.left";
20315                   to_y: "elm.padding.bottom";
20316                }
20317                align: 0.0 0.5;
20318             }
20319             GENLIST_DESCRIPTION_FLIP_ENABLED
20320          }
20321          part { name: "elm.padding.icon1.right";
20322             clip_to: "disclip";
20323             type: RECT;
20324             scale: 1;
20325             description { state: "default" 0.0;
20326                min: GENLIST_PADDING_16_INC 0;
20327                fixed: 1 0;
20328                rel1 {
20329                   relative: 1.0 0.0;
20330                   to_x: "elm.icon.1";
20331                }
20332                rel2.to_x: "elm.icon.1";
20333                align: 0.0 0.0;
20334                visible: 0;
20335             }
20336          }
20337          part { name: "elm.icon.2";
20338             clip_to: "disclip";
20339             type: SWALLOW;
20340             scale: 1;
20341             description { state: "default" 0.0;
20342                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
20343                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
20344                fixed: 1 1;
20345                rel1 {
20346                   relative: 0.0 1.0;
20347                   to_x: "elm.padding.right";
20348                   to_y: "elm.padding.top";
20349                }
20350                rel2 {
20351                   relative: 0.0 1.0;
20352                   to_x: "elm.padding.right";
20353                   to_y: "elm.text.1";
20354                }
20355                align: 1.0 0.5;
20356             }
20357             GENLIST_DESCRIPTION_FLIP_ENABLED
20358          }
20359          part { name: "elm.padding.icon2.left";
20360             clip_to: "disclip";
20361             type: RECT;
20362             scale: 1;
20363             description { state: "default" 0.0;
20364                min: GENLIST_PADDING_16_INC 0;
20365                fixed: 1 0;
20366                rel1 {
20367                   relative: 0.0 0.0;
20368                   to_x: "elm.icon.2";
20369                }
20370                rel2.to_x: "elm.icon.2";
20371                align: 1.0 0.0;
20372                visible: 0;
20373             }
20374          }
20375          part { name: "elm.text.1";
20376             clip_to: "disclip";
20377             type: TEXT;
20378             mouse_events: 0;
20379             scale: 1;
20380             description { state: "default" 0.0;
20381                min: 0 GENLIST_SIZE_61_INC;
20382                fixed: 0 1;
20383                rel1 {
20384                   relative: 1.0 1.0;
20385                   to_x: "elm.padding.left";
20386                   to_y: "elm.padding.top";
20387                }
20388                rel2 {
20389                   relative: 0.0 1.0;
20390                   to_x: "elm.padding.icon2.left";
20391                   to_y: "elm.padding.top";
20392                }
20393                align: 0.0 0.0;
20394                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
20395                text {
20396                   font: "SLP:style=Roman";
20397                   size: GENLIST_FONT_44_INC;
20398                   min: 0 1;
20399                   align: 0.0 0.5;
20400                   text_class: "list_item";
20401                }
20402             }
20403             description { state: "selected" 0.0;
20404                inherit: "default" 0.0;
20405                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
20406             }
20407             GENLIST_DESCRIPTION_FLIP_ENABLED
20408          }
20409          part { name: "elm.text.2";
20410             clip_to: "disclip";
20411             type: TEXT;
20412             mouse_events: 0;
20413             scale: 1;
20414             description { state: "default" 0.0;
20415                rel1 {
20416                   relative: 1.0 1.0;
20417                   to_x: "elm.padding.icon1.right";
20418                   to_y: "elm.text.1";
20419                }
20420                rel2 {
20421                   relative: 0.0 0.0;
20422                   to_x: "elm.padding.right";
20423                   to_y: "elm.padding.bottom";
20424                }
20425                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
20426                text {
20427                   font: "SLP:style=Medium";
20428                   size: GENLIST_FONT_32_INC;
20429                   min: 0 1;
20430                   align: 0.0 0.5;
20431                   text_class: "slp_medium";
20432                }
20433             }
20434             description { state: "selected" 0.0;
20435                inherit: "default" 0.0;
20436                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
20437             }
20438             GENLIST_DESCRIPTION_FLIP_ENABLED
20439          }
20440          GENLIST_PART_FLIP
20441          GENLIST_PART_DISCLIP
20442       }
20443       programs {
20444          // signal: elm,state,%s,active
20445          //   a "check" item named %s went active
20446          // signal: elm,state,%s,passive
20447          //   a "check" item named %s went passive
20448          // default is passive
20449          program { name: "go_active";
20450             signal: "elm,state,selected";
20451             source: "elm";
20452             action: STATE_SET "selected" 0.0;
20453             target: "bg_image";
20454             target: "elm.text.1";
20455             target: "elm.text.2";
20456             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
20457          }
20458          program { name: "go_passive";
20459             signal: "elm,state,unselected";
20460             source: "elm";
20461             action: STATE_SET "default" 0.0;
20462             target: "bg_image";
20463             target: "elm.text.1";
20464             target: "elm.text.2";
20465             transition: LINEAR 0.1;
20466          }
20467          program { name: "go_disabled";
20468             signal: "elm,state,disabled";
20469             source: "elm";
20470             action: STATE_SET "disabled" 0.0;
20471             target: "disclip";
20472          }
20473          program { name: "go_enabled";
20474             signal: "elm,state,enabled";
20475             source: "elm";
20476             action: STATE_SET "default" 0.0;
20477             target: "disclip";
20478          }
20479          GENLIST_PROGRAM_FLIP_2TEXT_2ICON
20480          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
20481       }
20482    }
20483
20484    group { name: "elm/genlist/item/dialogue/2text.1icon.6/default";
20485       alias: "elm/genlist/item_odd/dialogue/2text.1icon.6/default";
20486       alias: "elm/genlist/item_compress/dialogue/2text.1icon.6/default";
20487       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.6/default";
20488       alias: "elm/layout/dialogue/2text.1icon.6";
20489       data.item: "stacking" "above";
20490       data.item: "selectraise" "on";
20491       data.item: "texts" "elm.text.1 elm.text.2";
20492       data.item: "contents" "elm.icon";
20493       data.item: "flips" "elm.flip.content";
20494       parts {
20495          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
20496          GENLIST_PART_DIALOGUE_BG_IMAGE
20497          GENLIST_PART_BOTTOM_LINE
20498          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
20499          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC)
20500          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
20501          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
20502          GENLIST_PART_DIALOGUE_ITEM
20503          GENLIST_PART_DIALOGUE_RIGHT_LINE
20504          part { name: "elm.icon";
20505             clip_to: "disclip";
20506             type: SWALLOW;
20507             scale: 1;
20508             description { state: "default" 0.0;
20509                fixed: 1 1;
20510                rel1.to_x: "elm.padding.right";
20511                rel2 {
20512                   relative: 0.0 1.0;
20513                   to_x: "elm.padding.right";
20514                }
20515                align: 1.0 0.5;
20516             }
20517             GENLIST_DESCRIPTION_FLIP_ENABLED
20518          }
20519          part { name: "elm.padding.icon.left";
20520             clip_to: "disclip";
20521             type: RECT;
20522             scale: 1;
20523             description { state: "default" 0.0;
20524                min: GENLIST_SIZE_16_INC 0;
20525                fixed: 1 0;
20526                rel1.to_x: "elm.icon";
20527                rel2 {
20528                   relative: 0.0 1.0;
20529                   to_x: "elm.icon";
20530                }
20531                align: 1.0 0.0;
20532                visible: 0;
20533             }
20534          }
20535          part { name: "elm.text.1";
20536             clip_to: "disclip";
20537             type: TEXT;
20538             mouse_events: 0;
20539             scale: 1;
20540             description { state: "default" 0.0;
20541                min: 0 GENLIST_SIZE_61_INC;
20542                fixed: 0 1;
20543                rel1 {
20544                   relative: 1.0 1.0;
20545                   to_x: "elm.padding.left";
20546                   to_y: "elm.padding.top";
20547                }
20548                rel2 {
20549                   relative: 0.0 1.0;
20550                   to_x: "elm.padding.icon.left";
20551                   to_y: "elm.padding.top";
20552                }
20553                align: 0.0 0.0;
20554                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
20555                text {
20556                   font: "SLP:style=Roman";
20557                   size: GENLIST_FONT_44_INC;
20558                   min: 0 1;
20559                   align: 0.0 0.5;
20560                   text_class: "list_item";
20561                }
20562             }
20563             description { state: "selected" 0.0;
20564                inherit: "default" 0.0;
20565                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
20566             }
20567             GENLIST_DESCRIPTION_FLIP_ENABLED
20568          }
20569          part { name: "elm.text.2";
20570             clip_to: "disclip";
20571             type: TEXT;
20572             mouse_events: 0;
20573             scale: 1;
20574             description { state: "default" 0.0;
20575                rel1 {
20576                   relative: 1.0 1.0;
20577                   to_x: "elm.padding.left";
20578                   to_y: "elm.text.1";
20579                }
20580                rel2 {
20581                   relative: 0.0 0.0;
20582                   to_x: "elm.padding.icon.left";
20583                   to_y: "elm.padding.bottom";
20584                }
20585                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
20586                text {
20587                   font: "SLP:style=Medium";
20588                   size: GENLIST_FONT_32_INC;
20589                   min: 0 1;
20590                   align: 0.0 0.5;
20591                   text_class: "slp_medium";
20592                }
20593             }
20594             description { state: "selected" 0.0;
20595                inherit: "default" 0.0;
20596                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
20597             }
20598             GENLIST_DESCRIPTION_FLIP_ENABLED
20599          }
20600          GENLIST_PART_FLIP
20601          GENLIST_PART_DISCLIP
20602       }
20603       programs {
20604          // signal: elm,state,%s,active
20605          //   a "check" item named %s went active
20606          // signal: elm,state,%s,passive
20607          //   a "check" item named %s went passive
20608          // default is passive
20609          program { name: "go_active";
20610             signal: "elm,state,selected";
20611             source: "elm";
20612             action: STATE_SET "selected" 0.0;
20613             target: "bg_image";
20614             target: "elm.text.1";
20615             target: "elm.text.2";
20616             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
20617          }
20618          program { name: "go_passive";
20619             signal: "elm,state,unselected";
20620             source: "elm";
20621             action: STATE_SET "default" 0.0;
20622             target: "bg_image";
20623             target: "elm.text.1";
20624             target: "elm.text.2";
20625             transition: LINEAR 0.1;
20626          }
20627          program { name: "go_disabled";
20628             signal: "elm,state,disabled";
20629             source: "elm";
20630             action: STATE_SET "disabled" 0.0;
20631             target: "disclip";
20632          }
20633          program { name: "go_enabled";
20634             signal: "elm,state,enabled";
20635             source: "elm";
20636             action: STATE_SET "default" 0.0;
20637             target: "disclip";
20638          }
20639          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
20640          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
20641       }
20642    }
20643
20644    group { name: "elm/genlist/item/dialogue/2text.1icon.7/default";
20645       alias: "elm/genlist/item_odd/dialogue/2text.1icon.7/default";
20646       alias: "elm/genlist/item_compress/dialogue/2text.1icon.7/default";
20647       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.7/default";
20648       alias: "elm/layout/dialogue/2text.1icon.7";
20649       data.item: "stacking" "above";
20650       data.item: "selectraise" "on";
20651       data.item: "texts" "elm.text.1 elm.text.2";
20652       data.item: "contents" "elm.icon";
20653       data.item: "flips" "elm.flip.content";
20654       parts {
20655          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
20656          GENLIST_PART_DIALOGUE_BG_IMAGE
20657          GENLIST_PART_BOTTOM_LINE
20658          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
20659          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
20660          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
20661          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
20662          GENLIST_PART_DIALOGUE_ITEM
20663          GENLIST_PART_DIALOGUE_RIGHT_LINE
20664          part { name: "elm.icon";
20665             clip_to: "disclip";
20666             type: SWALLOW;
20667             scale: 1;
20668             description { state: "default" 0.0;
20669                min: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
20670                max: GENLIST_SIZE_96_INC GENLIST_SIZE_96_INC;
20671                fixed: 1 1;
20672                rel1 {
20673                   relative: 0.0 1.0;
20674                   to_x: "elm.padding.right";
20675                   to_y: "elm.padding.top";
20676                }
20677                rel2 {
20678                   relative: 0.0 0.0;
20679                   to_x: "elm.padding.right";
20680                   to_y: "elm.padding.bottom";
20681                }
20682                align: 1.0 0.5;
20683             }
20684             GENLIST_DESCRIPTION_FLIP_ENABLED
20685          }
20686          part { name: "elm.padding.icon.left";
20687             clip_to: "disclip";
20688             type: RECT;
20689             scale: 1;
20690             description { state: "default" 0.0;
20691                min: GENLIST_SIZE_16_INC 0;
20692                fixed: 1 0;
20693                rel1.to_x: "elm.icon";
20694                rel2 {
20695                   relative: 0.0 1.0;
20696                   to_x: "elm.icon";
20697                }
20698                align: 1.0 0.0;
20699                visible: 0;
20700             }
20701          }
20702          part { name: "elm.text.1";
20703             clip_to: "disclip";
20704             type: TEXT;
20705             mouse_events: 0;
20706             scale: 1;
20707             description { state: "default" 0.0;
20708                min: 0 GENLIST_SIZE_61_INC;
20709                fixed: 0 1;
20710                rel1 {
20711                   relative: 1.0 1.0;
20712                   to_x: "elm.padding.left";
20713                   to_y: "elm.padding.top";
20714                }
20715                rel2 {
20716                   relative: 0.0 1.0;
20717                   to_x: "elm.padding.icon.left";
20718                   to_y: "elm.padding.top";
20719                }
20720                align: 0.0 0.0;
20721                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
20722                text {
20723                   font: "SLP:style=Roman";
20724                   size: GENLIST_FONT_44_INC;
20725                   min: 0 1;
20726                   align: 0.0 0.5;
20727                   text_class: "list_item";
20728                }
20729             }
20730             description { state: "selected" 0.0;
20731                inherit: "default" 0.0;
20732                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
20733             }
20734             GENLIST_DESCRIPTION_FLIP_ENABLED
20735          }
20736          part { name: "elm.text.2";
20737             clip_to: "disclip";
20738             type: TEXT;
20739             mouse_events: 0;
20740             scale: 1;
20741             description { state: "default" 0.0;
20742                rel1 {
20743                   relative: 1.0 1.0;
20744                   to_x: "elm.padding.left";
20745                   to_y: "elm.text.1";
20746                }
20747                rel2 {
20748                   relative: 0.0 0.0;
20749                   to_x: "elm.padding.icon.left";
20750                   to_y: "elm.padding.bottom";
20751                }
20752                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
20753                text {
20754                   font: "SLP:style=Medium";
20755                   size: GENLIST_FONT_32_INC;
20756                   min: 0 1;
20757                   align: 0.0 0.5;
20758                   text_class: "slp_medium";
20759                }
20760             }
20761             description { state: "selected" 0.0;
20762                inherit: "default" 0.0;
20763                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
20764             }
20765             GENLIST_DESCRIPTION_FLIP_ENABLED
20766          }
20767          GENLIST_PART_FLIP
20768          GENLIST_PART_DISCLIP
20769       }
20770       programs {
20771          // signal: elm,state,%s,active
20772          //   a "check" item named %s went active
20773          // signal: elm,state,%s,passive
20774          //   a "check" item named %s went passive
20775          // default is passive
20776          program { name: "go_active";
20777             signal: "elm,state,selected";
20778             source: "elm";
20779             action: STATE_SET "selected" 0.0;
20780             target: "bg_image";
20781             target: "elm.text.1";
20782             target: "elm.text.2";
20783             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
20784          }
20785          program { name: "go_passive";
20786             signal: "elm,state,unselected";
20787             source: "elm";
20788             action: STATE_SET "default" 0.0;
20789             target: "bg_image";
20790             target: "elm.text.1";
20791             target: "elm.text.2";
20792             transition: LINEAR 0.1;
20793          }
20794          program { name: "go_disabled";
20795             signal: "elm,state,disabled";
20796             source: "elm";
20797             action: STATE_SET "disabled" 0.0;
20798             target: "disclip";
20799          }
20800          program { name: "go_enabled";
20801             signal: "elm,state,enabled";
20802             source: "elm";
20803             action: STATE_SET "default" 0.0;
20804             target: "disclip";
20805          }
20806          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
20807          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
20808       }
20809    }
20810
20811    group { name: "elm/genlist/item/dialogue/2text.1icon.8/default";
20812       alias: "elm/genlist/item_odd/dialogue/2text.1icon.8/default";
20813       alias: "elm/genlist/item_compress/dialogue/2text.1icon.8/default";
20814       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.8/default";
20815       alias: "elm/layout/dialogue/2text.1icon.8";
20816       data.item: "stacking" "above";
20817       data.item: "selectraise" "on";
20818       data.item: "texts" "elm.text.1 elm.text.2";
20819       data.item: "contents" "elm.icon";
20820       data.item: "flips" "elm.flip.content";
20821       images {
20822          image: "00_list_bar_press_1x80.png" COMP;
20823       }
20824       parts {
20825          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
20826          GENLIST_PART_DIALOGUE_BG_IMAGE
20827          GENLIST_PART_BOTTOM_LINE
20828          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
20829          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
20830          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
20831          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
20832          GENLIST_PART_DIALOGUE_ITEM
20833          GENLIST_PART_DIALOGUE_RIGHT_LINE
20834          part { name: "elm.text.2";
20835             clip_to: "disclip";
20836             type: TEXT;
20837             mouse_events: 0;
20838             scale: 1;
20839             description { state: "default" 0.0;
20840                min: 0 GENLIST_SIZE_48_INC;
20841                fixed: 0 1;
20842                rel1 {
20843                   relative: 1.0 1.0;
20844                   to_x: "elm.padding.left";
20845                   to_y: "elm.padding.top";
20846                }
20847                rel2 {
20848                   relative: 0.0 1.0;
20849                   to_x: "elm.padding.right";
20850                   to_y: "elm.padding.top";
20851                }
20852                align: 0.0 0.0;
20853                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
20854                text {
20855                   font: "SLP:style=Medium";
20856                   size: GENLIST_FONT_32_INC;
20857                   min: 0 1;
20858                   align: 0.0 0.5;
20859                   text_class: "slp_roman";
20860                }
20861             }
20862             description { state: "selected" 0.0;
20863                inherit: "default" 0.0;
20864                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
20865             }
20866             GENLIST_DESCRIPTION_FLIP_ENABLED
20867          }
20868          part { name: "elm.text.1";
20869             clip_to: "disclip";
20870             type: TEXT;
20871             mouse_events: 0;
20872             scale: 1;
20873             description { state: "default" 0.0;
20874                min: GENLIST_SIZE_672_INC 0;
20875                fixed: 1 0;
20876                rel1 {
20877                   relative: 1.0 1.0;
20878                   to_x: "elm.padding.left";
20879                   to_y: "elm.text.2";
20880                }
20881                rel2 {
20882                   relative: 1.0 0.0;
20883                   to_x: "elm.padding.left";
20884                   to_y: "elm.padding.bottom";
20885                }
20886                align: 0.0 0.5;
20887                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
20888                text {
20889                   font: "SLP:style=Roman";
20890                   size: GENLIST_FONT_44_INC;
20891                   min: 1 1;
20892                   align: 0.0 0.5;
20893                   text_class: "list_item";
20894                }
20895             }
20896             description { state: "selected" 0.0;
20897                inherit: "default" 0.0;
20898                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
20899             }
20900             GENLIST_DESCRIPTION_FLIP_ENABLED
20901          }
20902          part { name: "elm.padding.text1.right";
20903             clip_to: "disclip";
20904             type: RECT;
20905             scale: 1;
20906             description { state: "default" 0.0;
20907                min: GENLIST_SIZE_16_INC 0;
20908                fixed: 1 0;
20909                visible: 0;
20910                rel1 {
20911                   relative: 1.0 0.0;
20912                   to_x: "elm.text.1";
20913                }
20914                rel2.to_x: "elm.text.1";
20915                align: 0.0 0.0;
20916             }
20917          }
20918          part { name: "elm.icon";
20919             clip_to: "disclip";
20920             type: SWALLOW;
20921             scale: 1;
20922             description { state: "default" 0.0;
20923                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
20924                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
20925                fixed: 1 1;
20926                rel1 {
20927                   relative: 1.0 1.0;
20928                   to_x: "elm.padding.text1.right";
20929                   to_y: "elm.text.2";
20930                }
20931                rel2 {
20932                   relative: 1.0 0.0;
20933                   to_x: "elm.padding.text1.right";
20934                   to_y: "elm.padding.bottom";
20935                }
20936                align: 0.0 0.5;
20937             }
20938             GENLIST_DESCRIPTION_FLIP_ENABLED
20939          }
20940          GENLIST_PART_FLIP
20941          GENLIST_PART_DISCLIP
20942       }
20943       programs {
20944          // signal: elm,state,%s,active
20945          //   a "check" item named %s went active
20946          // signal: elm,state,%s,passive
20947          //   a "check" item named %s went passive
20948          // default is passive
20949          program { name: "go_active";
20950             signal: "elm,state,selected";
20951             source: "elm";
20952             action: STATE_SET "selected" 0.0;
20953             target: "bg_image";
20954             target: "elm.text.1";
20955             target: "elm.text.2";
20956             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
20957          }
20958          program { name: "go_passive";
20959             signal: "elm,state,unselected";
20960             source: "elm";
20961             action: STATE_SET "default" 0.0;
20962             target: "bg_image";
20963             target: "elm.text.1";
20964             target: "elm.text.2";
20965             transition: LINEAR 0.1;
20966          }
20967          program { name: "go_disabled";
20968             signal: "elm,state,disabled";
20969             source: "elm";
20970             action: STATE_SET "disabled" 0.0;
20971             target: "disclip";
20972          }
20973          program { name: "go_enabled";
20974             signal: "elm,state,enabled";
20975             source: "elm";
20976             action: STATE_SET "default" 0.0;
20977             target: "disclip";
20978          }
20979          GENLIST_PROGRAM_FLIP_2TEXT_1ICON
20980          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
20981       }
20982    }
20983
20984    // 2.4.2.19
20985    group { name: "elm/genlist/item/dialogue/2text.1icon.9/default";
20986       alias: "elm/genlist/item_odd/dialogue/2text.1icon.9/default";
20987       alias: "elm/genlist/item_compress/dialogue/2text.1icon.9/default";
20988       alias: "elm/genlist/item_compress_odd/dialogue/2text.1icon.9/default";
20989       alias: "elm/layout/dialogue/2text.1icon.9";
20990       data.item: "stacking" "above";
20991       data.item: "selectraise" "on";
20992       data.item: "texts" "elm.text.1 elm.text.2";
20993       data.item: "contents" "elm.icon.1";
20994       data.item: "flips" "elm.flip.content";
20995       images {
20996          image: "00_list_bar_press_1x80.png" COMP;
20997       }
20998       parts {
20999          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
21000          GENLIST_PART_DIALOGUE_BG_IMAGE
21001          GENLIST_PART_BOTTOM_LINE
21002          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
21003          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
21004          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
21005          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
21006          GENLIST_PART_DIALOGUE_ITEM
21007          GENLIST_PART_DIALOGUE_RIGHT_LINE
21008          part { name: "elm.icon.1";
21009             clip_to: "disclip";
21010             type: SWALLOW;
21011             scale: 1;
21012             description { state: "default" 0.0;
21013                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
21014                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
21015                fixed: 1 1;
21016                rel1 {
21017                   relative: 1.0 1.0;
21018                   to_x: "elm.padding.left";
21019                   to_y: "elm.text.1";
21020                }
21021                rel2 {
21022                   relative: 1.0 0.0;
21023                   to_x: "elm.padding.left";
21024                   to_y: "elm.padding.bottom";
21025                }
21026                align: 0.0 0.5;
21027             }
21028             GENLIST_DESCRIPTION_FLIP_ENABLED
21029          }
21030          part { name: "elm.padding.icon1.right";
21031             clip_to: "disclip";
21032             type: RECT;
21033             scale: 1;
21034             description { state: "default" 0.0;
21035                min: GENLIST_PADDING_16_INC 0;
21036                fixed: 1 0;
21037                rel1 {
21038                   relative: 1.0 0.0;
21039                   to_x: "elm.icon.1";
21040                }
21041                rel2.to_x: "elm.icon.1";
21042                align: 0.0 0.0;
21043                visible: 0;
21044             }
21045          }
21046          part { name: "elm.text.1";
21047             clip_to: "disclip";
21048             type: TEXT;
21049             mouse_events: 0;
21050             scale: 1;
21051             description { state: "default" 0.0;
21052                min: 0 GENLIST_SIZE_61_INC;
21053                fixed: 0 1;
21054                rel1 {
21055                   relative: 1.0 1.0;
21056                   to_x: "elm.padding.left";
21057                   to_y: "elm.padding.top";
21058                }
21059                rel2 {
21060                   relative: 0.0 1.0;
21061                   to_x: "elm.padding.right";
21062                   to_y: "elm.padding.top";
21063                }
21064                align: 0.0 0.0;
21065                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
21066                text {
21067                   font: "SLP:style=Roman";
21068                   size: GENLIST_FONT_44_INC;
21069                   min: 0 1;
21070                   align: 0.0 0.5;
21071                   text_class: "list_item";
21072                }
21073             }
21074             description { state: "selected" 0.0;
21075                inherit: "default" 0.0;
21076                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
21077             }
21078             GENLIST_DESCRIPTION_FLIP_ENABLED
21079          }
21080          part { name: "elm.text.2";
21081             clip_to: "disclip";
21082             type: TEXT;
21083             mouse_events: 0;
21084             scale: 1;
21085             description { state: "default" 0.0;
21086                rel1 {
21087                   relative: 1.0 1.0;
21088                   to_x: "elm.padding.icon1.right";
21089                   to_y: "elm.text.1";
21090                }
21091                rel2 {
21092                   relative: 0.0 0.0;
21093                   to_x: "elm.padding.right";
21094                   to_y: "elm.padding.bottom";
21095                }
21096                color: GENLIST_PART_FONT_LIST_SUB_TEXT_SETTINGS_COLOR_INC;
21097                text {
21098                   font: "SLP:style=Medium";
21099                   size: GENLIST_FONT_32_INC;
21100                   min: 0 1;
21101                   align: 0.0 0.5;
21102                   text_class: "slp_medium";
21103                }
21104             }
21105             description { state: "selected" 0.0;
21106                inherit: "default" 0.0;
21107                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
21108             }
21109             GENLIST_DESCRIPTION_FLIP_ENABLED
21110          }
21111          GENLIST_PART_FLIP
21112          GENLIST_PART_DISCLIP
21113       }
21114       programs {
21115          // signal: elm,state,%s,active
21116          //   a "check" item named %s went active
21117          // signal: elm,state,%s,passive
21118          //   a "check" item named %s went passive
21119          // default is passive
21120          program { name: "go_active";
21121             signal: "elm,state,selected";
21122             source: "elm";
21123             action: STATE_SET "selected" 0.0;
21124             target: "bg_image";
21125             target: "elm.text.1";
21126             target: "elm.text.2";
21127          }
21128          program { name: "go_passive";
21129             signal: "elm,state,unselected";
21130             source: "elm";
21131             action: STATE_SET "default" 0.0;
21132             target: "bg_image";
21133             target: "elm.text.1";
21134             target: "elm.text.2";
21135             transition: LINEAR 0.1;
21136          }
21137          program { name: "go_disabled";
21138             signal: "elm,state,disabled";
21139             source: "elm";
21140             action: STATE_SET "disabled" 0.0;
21141             target: "disclip";
21142          }
21143          program { name: "go_enabled";
21144             signal: "elm,state,enabled";
21145             source: "elm";
21146             action: STATE_SET "default" 0.0;
21147             target: "disclip";
21148          }
21149       }
21150    }
21151
21152 // 4.3.1
21153    group { name: "elm/genlist/item/dialogue/bg/2text.2icon/default";
21154       alias: "elm/genlist/item_odd/dialogue/bg/2text.2icon/default";
21155       alias: "elm/genlist/item_compress/dialogue/bg/2text.2icon/default";
21156       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.2icon/default";
21157       alias: "elm/layout/dialogue/bg/2text.2icon";
21158       data.item: "stacking" "above";
21159       data.item: "selectraise" "on";
21160       data.item: "texts" "elm.text.1 elm.text.2";
21161       data.item: "contents" "elm.icon.1 elm.icon.2";
21162       images {
21163           image: "00_list_thumbnail_bg.png" COMP;
21164       }
21165       parts {
21166          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_190_INC )
21167          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_48_INC )
21168          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_48_INC )
21169          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
21170          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
21171          part { name: "elm.icon1.bg";
21172             scale: 1;
21173             description { state: "default" 0.0;
21174                min: GENLIST_SIZE_128_INC GENLIST_SIZE_128_INC;
21175                fixed: 1 1;
21176                align: 0.0 0.52;
21177                rel1 {
21178                   relative: 1.0 0.5;
21179                   to_x: "elm.padding.left";
21180                }
21181                rel2 {
21182                   relative: 1.0 0.5;
21183                   to_x: "elm.padding.left";
21184                }
21185                image {
21186                   normal: "00_list_thumbnail_bg.png";
21187                   border: 1 1 1 1;
21188                   border_scale: 1;
21189                   middle: NONE;
21190                }
21191             }
21192          }
21193          part { name: "elm.icon.1";
21194             type: SWALLOW;
21195             description { state: "default" 0.0;
21196                rel1.to: "elm.icon1.bg";
21197                rel2.to: "elm.icon1.bg";
21198             }
21199          }
21200          part { name: "elm.padding.icon1.right";
21201             type: RECT;
21202             mouse_events: 0;
21203             scale: 1;
21204             description { state: "default" 0.0;
21205                min: GENLIST_PADDING_24_INC 0;
21206                fixed: 1 0;
21207                rel1 {
21208                    relative: 1.0 0.0;
21209                    to_x: "elm.icon1.bg";
21210                }
21211                rel2.to_x: "elm.icon1.bg";
21212                visible: 0;
21213                align: 0.0 0.5;
21214             }
21215          }
21216          part { name: "elm.icon.2";
21217             type: SWALLOW;
21218             scale: 1;
21219             description { state: "default" 0.0;
21220                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
21221                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
21222                fixed: 1 1;
21223                rel1 {
21224                   relative: 0.0 0.5;
21225                   to_x: "elm.padding.right";
21226                }
21227                rel2 {
21228                   relative: 0.0 0.5;
21229                   to_x: "elm.padding.right";
21230                }
21231                align: 1.0 0.5;
21232             }
21233          }
21234          part { name: "elm.padding.icon2.right";
21235             type: RECT;
21236             mouse_events: 0;
21237             scale: 1;
21238             description { state: "default" 0.0;
21239                min: GENLIST_PADDING_16_INC 0;
21240                fixed: 1 0;
21241                rel1.to_x: "elm.icon.2";
21242                rel2 {
21243                   relative: 0.0 1.0;
21244                   to_x: "elm.icon.2";
21245                }
21246                rel2.to_x: "elm.icon.2";
21247                visible: 0;
21248                align: 1.0 0.5;
21249             }
21250          }
21251          part { name: "elm.text.1";
21252             clip_to: "disclip";
21253             type: TEXT;
21254             mouse_events: 0;
21255             scale: 1;
21256             description { state: "default" 0.0;
21257                min: 0 GENLIST_SIZE_54_INC;
21258                fixed: 0 1;
21259                align: 0 0;
21260                rel1 {
21261                   relative: 1.0 1.0;
21262                   to_x: "elm.padding.icon1.right";
21263                   to_y: "elm.padding.top";
21264                }
21265                rel2 {
21266                   relative: 0.0 1.0;
21267                   to_x: "elm.padding.icon2.right";
21268                   to_y: "elm.padding.top";
21269                }
21270                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_MAIN_COLOR_INC;
21271                text {
21272                   font: "SLP:style=Roman";
21273                   size: GENLIST_FONT_48_INC;
21274                   align: 0.0 0.5;
21275                   text_class: "list_item";
21276                }
21277             }
21278          }
21279          part { name: "elm.padding.text.1.bottom";
21280             type: RECT;
21281             mouse_events: 0;
21282             scale: 1;
21283             description { state: "default" 0.0;
21284                min: 0 GENLIST_PADDING_8_INC;
21285                fixed: 0 1;
21286                rel1 {
21287                    relative: 0.0 1.0;
21288                    to_y: "elm.text.1";
21289                }
21290                rel2.to_y: "elm.text.1";
21291                visible: 0;
21292                align: 0.0 0.0;
21293             }
21294          }
21295          part { name: "elm.text.2";
21296             clip_to: "disclip";
21297             type: TEXT;
21298             mouse_events: 0;
21299             scale: 1;
21300             description { state: "default" 0.0;
21301                rel1 {
21302                   relative: 1.0 1.0;
21303                   to_x: "elm.padding.icon1.right";
21304                   to_y: "elm.padding.text.1.bottom";
21305                }
21306                rel2 {
21307                   relative: 0.0 0.0;
21308                   to_x: "elm.padding.icon2.right";
21309                   to_y: "elm.padding.bottom";
21310                }
21311                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
21312                text {
21313                   font: "SLP:style=Medium";
21314                   size: GENLIST_FONT_32_INC;
21315                   align: 0.0 0.5;
21316                   text_class: "slp_medium";
21317                }
21318             }
21319          }
21320          GENLIST_PART_DISCLIP
21321       }
21322       programs {
21323          // signal: elm,state,%s,active
21324          //   a "check" item named %s went active
21325          // signal: elm,state,%s,passive
21326          //   a "check" item named %s went passive
21327          // default is passive
21328          /*program { name: "go_active";
21329             signal: "elm,state,selected";
21330             source: "elm";
21331             action: STATE_SET "selected" 0.0;
21332             target: "elm.text";
21333             target: "elm.text.sub";
21334          }
21335          program { name: "go_passive";
21336             signal: "elm,state,unselected";
21337             source: "elm";
21338             action: STATE_SET "default" 0.0;
21339             target: "elm.text";
21340             target: "elm.text.sub";
21341             transition: LINEAR 0.1;
21342          }*/
21343          program { name: "go_disabled";
21344             signal: "elm,state,disabled";
21345             source: "elm";
21346             action: STATE_SET "disabled" 0.0;
21347             target: "disclip";
21348          }
21349          program { name: "go_enabled";
21350             signal: "elm,state,enabled";
21351             source: "elm";
21352             action: STATE_SET "default" 0.0;
21353             target: "disclip";
21354          }
21355       }
21356    }
21357
21358 // 4.3.2
21359    group { name: "elm/genlist/item/dialogue/bg/3text.2icon/default";
21360       alias: "elm/genlist/item_odd/dialogue/bg/3text.2icon/default";
21361       alias: "elm/genlist/item_compress/dialogue/bg/3text.2icon/default";
21362       alias: "elm/genlist/item_compress_odd/dialogue/bg/3text.2icon/default";
21363       alias: "elm/layout/dialogue/bg/3text.2icon";
21364       data.item: "stacking" "above";
21365       data.item: "selectraise" "on";
21366       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
21367       data.item: "contents" "elm.icon.1 elm.icon.2";
21368       images {
21369           image: "00_list_thumbnail_bg.png" COMP;
21370       }
21371       parts {
21372          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_190_INC )
21373          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_32_INC )
21374          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_32_INC )
21375          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
21376          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
21377          part { name: "elm.icon1.bg";
21378             scale: 1;
21379             description { state: "default" 0.0;
21380                min: GENLIST_SIZE_128_INC GENLIST_SIZE_128_INC;
21381                fixed: 1 1;
21382                align: 0.0 0.52;
21383                rel1 {
21384                   relative: 1.0 0.5;
21385                   to_x: "elm.padding.left";
21386                }
21387                rel2 {
21388                   relative: 1.0 0.5;
21389                   to_x: "elm.padding.left";
21390                }
21391                image {
21392                   normal: "00_list_thumbnail_bg.png";
21393                   border: 1 1 1 1;
21394                   border_scale: 1;
21395                   middle: NONE;
21396                }
21397             }
21398          }
21399          part { name: "elm.icon.1";
21400             type: SWALLOW;
21401             description { state: "default" 0.0;
21402                rel1.to: "elm.icon1.bg";
21403                rel2.to: "elm.icon1.bg";
21404             }
21405          }
21406          part { name: "elm.padding.icon1.right";
21407             type: RECT;
21408             mouse_events: 0;
21409             scale: 1;
21410             description { state: "default" 0.0;
21411                min: GENLIST_PADDING_24_INC 0;
21412                fixed: 1 0;
21413                rel1 {
21414                    relative: 1.0 0.0;
21415                    to_x: "elm.icon1.bg";
21416                }
21417                rel2.to_x: "elm.icon1.bg";
21418                visible: 0;
21419                align: 0.0 0.5;
21420             }
21421          }
21422          part { name: "elm.icon.2";
21423             type: SWALLOW;
21424             scale: 1;
21425             description { state: "default" 0.0;
21426                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
21427                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
21428                fixed: 1 1;
21429                rel1 {
21430                   relative: 0.0 0.5;
21431                   to_x: "elm.padding.right";
21432                }
21433                rel2 {
21434                   relative: 0.0 0.5;
21435                   to_x: "elm.padding.right";
21436                }
21437                align: 1.0 0.5;
21438             }
21439          }
21440          part { name: "elm.padding.icon2.right";
21441             type: RECT;
21442             mouse_events: 0;
21443             scale: 1;
21444             description { state: "default" 0.0;
21445                min: GENLIST_PADDING_16_INC 0;
21446                fixed: 1 0;
21447                rel1.to_x: "elm.icon.2";
21448                rel2 {
21449                   relative: 0.0 1.0;
21450                   to_x: "elm.icon.2";
21451                }
21452                rel2.to_x: "elm.icon.2";
21453                visible: 0;
21454                align: 1.0 0.5;
21455             }
21456          }
21457          part { name: "elm.text.1";
21458             clip_to: "disclip";
21459             type: TEXT;
21460             mouse_events: 0;
21461             scale: 1;
21462             description { state: "default" 0.0;
21463                min: 0 GENLIST_SIZE_54_INC;
21464                fixed: 0 1;
21465                align: 0 0;
21466                rel1 {
21467                   relative: 1.0 1.0;
21468                   to_x: "elm.padding.icon1.right";
21469                   to_y: "elm.padding.top";
21470                }
21471                rel2 {
21472                   relative: 0.0 1.0;
21473                   to_x: "elm.padding.icon2.right";
21474                   to_y: "elm.padding.top";
21475                }
21476                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_MAIN_COLOR_INC;
21477                text {
21478                   font: "SLP:style=Roman";
21479                   size: GENLIST_FONT_48_INC;
21480                   align: 0.0 0.5;
21481                   text_class: "list_item";
21482                }
21483             }
21484          }
21485          part { name: "elm.padding.text.1.bottom";
21486             type: RECT;
21487             mouse_events: 0;
21488             scale: 1;
21489             description { state: "default" 0.0;
21490                min: 0 GENLIST_PADDING_8_INC;
21491                fixed: 0 1;
21492                rel1 {
21493                    relative: 0.0 1.0;
21494                    to_y: "elm.text.1";
21495                }
21496                rel2.to_y: "elm.text.1";
21497                visible: 0;
21498                align: 0.0 0.0;
21499             }
21500          }
21501          part { name: "elm.text.2";
21502             clip_to: "disclip";
21503             type: TEXT;
21504             mouse_events: 0;
21505             scale: 1;
21506             description { state: "default" 0.0;
21507                rel1 {
21508                   relative: 1.0 1.0;
21509                   to_x: "elm.padding.icon1.right";
21510                   to_y: "elm.padding.text.1.bottom";
21511                }
21512                rel2 {
21513                   relative: 0.0 0.0;
21514                   to_x: "elm.padding.icon2.right";
21515                   to_y: "elm.text.3";
21516                }
21517                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
21518                text {
21519                   font: "SLP:style=Medium";
21520                   size: GENLIST_FONT_32_INC;
21521                   align: 0.0 0.5;
21522                   text_class: "slp_medium";
21523                }
21524             }
21525          }
21526          part { name: "elm.text.3";
21527             clip_to: "disclip";
21528             type: TEXT;
21529             mouse_events: 0;
21530             scale: 1;
21531             description { state: "default" 0.0;
21532                min: 0 GENLIST_ICON_SMALL_SIZE;
21533                fixed: 0 1;
21534                align: 0 1;
21535                rel1 {
21536                   relative: 1.0 0.0;
21537                   to_x: "elm.padding.icon1.right";
21538                   to_y: "elm.padding.bottom";
21539                }
21540                rel2 {
21541                   relative: 0.0 0.0;
21542                   to_x: "elm.padding.icon2.right";
21543                   to_y: "elm.padding.bottom";
21544                }
21545                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
21546                text {
21547                   font: "SLP:style=Medium";
21548                   size: GENLIST_FONT_32_INC;
21549                   align: 0.0 0.5;
21550                   text_class: "slp_medium";
21551                }
21552             }
21553          }
21554          GENLIST_PART_DISCLIP
21555       }
21556       programs {
21557          // signal: elm,state,%s,active
21558          //   a "check" item named %s went active
21559          // signal: elm,state,%s,passive
21560          //   a "check" item named %s went passive
21561          // default is passive
21562          /*program { name: "go_active";
21563             signal: "elm,state,selected";
21564             source: "elm";
21565             action: STATE_SET "selected" 0.0;
21566             target: "elm.text";
21567             target: "elm.text.sub";
21568          }
21569          program { name: "go_passive";
21570             signal: "elm,state,unselected";
21571             source: "elm";
21572             action: STATE_SET "default" 0.0;
21573             target: "elm.text";
21574             target: "elm.text.sub";
21575             transition: LINEAR 0.1;
21576          }*/
21577          program { name: "go_disabled";
21578             signal: "elm,state,disabled";
21579             source: "elm";
21580             action: STATE_SET "disabled" 0.0;
21581             target: "disclip";
21582          }
21583          program { name: "go_enabled";
21584             signal: "elm,state,enabled";
21585             source: "elm";
21586             action: STATE_SET "default" 0.0;
21587             target: "disclip";
21588          }
21589       }
21590    }
21591
21592 // 4.3.3
21593    group { name: "elm/genlist/item/dialogue/bg/5text.2icon/default";
21594       alias: "elm/genlist/item_odd/dialogue/bg/5text.2icon/default";
21595       alias: "elm/genlist/item_compress/dialogue/bg/5text.2icon/default";
21596       alias: "elm/genlist/item_compress_odd/dialogue/bg/5text.2icon/default";
21597       alias: "elm/layout/dialogue/bg/5text.2icon";
21598       data.item: "stacking" "above";
21599       data.item: "selectraise" "on";
21600       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4 elm.text.5";
21601       data.item: "contents" "elm.icon.1 elm.icon.2";
21602       images {
21603           image: "00_list_thumbnail_bg.png" COMP;
21604       }
21605       parts {
21606          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_182_INC )
21607          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_14_INC )
21608          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_14_INC )
21609          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
21610          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
21611          part { name: "elm.icon1.bg";
21612             scale: 1;
21613             description { state: "default" 0.0;
21614                min: GENLIST_SIZE_141_INC GENLIST_SIZE_141_INC;
21615                fixed: 1 1;
21616                align: 0.0 0.5;
21617                rel1 {
21618                   relative: 1.0 0.5;
21619                   to_x: "elm.padding.left";
21620                }
21621                rel2 {
21622                   relative: 1.0 0.5;
21623                   to_x: "elm.padding.left";
21624                }
21625                image {
21626                   normal: "00_list_thumbnail_bg.png";
21627                   border: 1 1 1 1;
21628                   border_scale: 1;
21629                   middle: NONE;
21630                }
21631             }
21632          }
21633          part { name: "elm.icon.1";
21634             type: SWALLOW;
21635             description { state: "default" 0.0;
21636                rel1.to: "elm.icon1.bg";
21637                rel2.to: "elm.icon1.bg";
21638             }
21639          }
21640          part { name: "elm.padding.icon1.right";
21641             type: RECT;
21642             mouse_events: 0;
21643             scale: 1;
21644             description { state: "default" 0.0;
21645                min: GENLIST_PADDING_16_INC 0;
21646                fixed: 1 0;
21647                rel1 {
21648                    relative: 1.0 0.0;
21649                    to_x: "elm.icon1.bg";
21650                }
21651                rel2.to_x: "elm.icon1.bg";
21652                visible: 0;
21653                align: 0.0 0.5;
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_38_INC;
21663                fixed: 0 1;
21664                rel1 {
21665                   relative: 1.0 1.0;
21666                   to_x: "elm.padding.icon1.right";
21667                   to_y: "elm.padding.top";
21668                }
21669                rel2 {
21670                   relative: 0.0 1.0;
21671                   to_x: "elm.padding.right";
21672                   to_y: "elm.padding.top";
21673                }
21674                align: 0.0 0.0;
21675                color: GENLIST_DIALOGUE_FONT_APPS_NAME_COLOR_INC;
21676                text {
21677                   font: "SLP:style=Medium";
21678                   size: GENLIST_FONT_32_INC;
21679                   align: 0.0 0.5;
21680                   text_class: "list_item";
21681                }
21682             }
21683          }
21684          part { name: "elm.text.2";
21685             clip_to: "disclip";
21686             type: TEXT;
21687             mouse_events: 0;
21688             scale: 1;
21689             description { state: "default" 0.0;
21690                min: 0 GENLIST_SIZE_38_INC;
21691                fixed: 0 1;
21692                rel1 {
21693                   relative: 1.0 1.0;
21694                   to_x: "elm.padding.icon1.right";
21695                   to_y: "elm.text.1";
21696                }
21697                rel2 {
21698                   relative: 0.0 1.0;
21699                   to_x: "elm.padding.right";
21700                   to_y: "elm.text.1";
21701                }
21702                align: 0.0 0.0;
21703                color: GENLIST_DIALOGUE_FONT_APPS_INC_COLOR_INC;
21704                text {
21705                   font: "SLP:style=Medium";
21706                   size: GENLIST_FONT_28_INC;
21707                   align: 0.0 0.5;
21708                   text_class: "slp_medium";
21709                }
21710             }
21711          }
21712          part { name: "elm.icon.2";
21713             clip_to: "disclip";
21714             type: SWALLOW;
21715             mouse_events: 0;
21716             scale: 1;
21717             description { state: "default" 0.0;
21718                fixed: 1 1;
21719                rel1 {
21720                   relative: 1.0 0.0;
21721                   to_x: "elm.padding.icon1.right";
21722                   to_y: "elm.text.3";
21723                }
21724                rel2 {
21725                   relative: 1.0 1.0;
21726                   to_x: "elm.padding.icon1.right";
21727                   to_y: "elm.text.3";
21728                }
21729                align: 0.0 0.5;
21730             }
21731          }
21732          part { name: "elm.padding.icon2.right";
21733             type: RECT;
21734             mouse_events: 0;
21735             scale: 1;
21736             description { state: "default" 0.0;
21737                min: GENLIST_PADDING_16_INC 0;
21738                fixed: 1 0;
21739                rel1 {
21740                    relative: 1.0 0.0;
21741                    to_x: "elm.icon.2";
21742                }
21743                rel2.to_x: "elm.icon.2";
21744                visible: 0;
21745                align: 0.0 0.5;
21746             }
21747          }
21748          part { name: "elm.text.3";
21749             clip_to: "disclip";
21750             type: TEXT;
21751             mouse_events: 0;
21752             scale: 1;
21753             description { state: "default" 0.0;
21754                min: 0 GENLIST_SIZE_38_INC;
21755                fixed: 0 1;
21756                rel1 {
21757                   relative: 1.0 1.0;
21758                   to_x: "elm.padding.icon2.right";
21759                   to_y: "elm.text.2";
21760                }
21761                rel2 {
21762                   relative: 0.0 1.0;
21763                   to_x: "elm.padding.right";
21764                   to_y: "elm.text.2";
21765                }
21766                align: 0.0 0.0;
21767                color: GENLIST_DIALOGUE_FONT_APPS_RATING_COLOR_INC;
21768                text {
21769                   font: "SLP:style=Medium";
21770                   size: GENLIST_FONT_28_INC;
21771                   align: 0.0 0.5;
21772                   text_class: "slp_medium";
21773                }
21774             }
21775          }
21776          part { name: "elm.text.4";
21777             clip_to: "disclip";
21778             type: TEXT;
21779             mouse_events: 0;
21780             scale: 1;
21781             description { state: "default" 0.0;
21782                min: GENLIST_SIZE_96_INC GENLIST_SIZE_38_INC;
21783                fixed: 1 1;
21784                align: 0 1;
21785                rel1 {
21786                   relative: 1.0 0.0;
21787                   to_x: "elm.padding.icon1.right";
21788                   to_y: "elm.padding.bottom";
21789                }
21790                rel2 {
21791                   relative: 1.0 0.0;
21792                   to_x: "elm.padding.icon1.right";
21793                   to_y: "elm.padding.bottom";
21794                }
21795                color: GENLIST_DIALOGUE_FONT_APPS_PRICE_ORIGINAL_COLOR_INC;
21796                text {
21797                   font: "SLP:style=Medium";
21798                   size: GENLIST_FONT_28_INC;
21799                   align: 0.0 0.5;
21800                   text_class: "slp_medium";
21801                }
21802             }
21803          }
21804          part { name: "elm.padding.text4.right";
21805             type: RECT;
21806             mouse_events: 0;
21807             scale: 1;
21808             description { state: "default" 0.0;
21809                min: GENLIST_PADDING_16_INC 0;
21810                fixed: 1 0;
21811                rel1 {
21812                    relative: 1.0 0.0;
21813                    to_x: "elm.text.4";
21814                }
21815                rel2.to_x: "elm.text.4";
21816                visible: 0;
21817                align: 0.0 0.5;
21818             }
21819          }
21820          part { name: "elm.text.5";
21821             clip_to: "disclip";
21822             type: TEXT;
21823             mouse_events: 0;
21824             scale: 1;
21825             description { state: "default" 0.0;
21826                min: GENLIST_SIZE_96_INC GENLIST_SIZE_38_INC;
21827                fixed: 1 1;
21828                align: 0 1;
21829                rel1 {
21830                   relative: 1.0 0.0;
21831                   to_x: "elm.padding.text4.right";
21832                   to_y: "elm.padding.bottom";
21833                }
21834                rel2 {
21835                   relative: 1.0 0.0;
21836                   to_x: "elm.padding.text4.right";
21837                   to_y: "elm.padding.bottom";
21838                }
21839                color: GENLIST_DIALOGUE_FONT_APPS_PRICE_SALE_COLOR_INC;
21840                text {
21841                   font: "SLP:style=Medium";
21842                   size: GENLIST_FONT_28_INC;
21843                   align: 0.0 0.5;
21844                   text_class: "slp_medium";
21845                }
21846             }
21847          }
21848          GENLIST_PART_DISCLIP
21849       }
21850       programs {
21851          // signal: elm,state,%s,active
21852          //   a "check" item named %s went active
21853          // signal: elm,state,%s,passive
21854          //   a "check" item named %s went passive
21855          // default is passive
21856          /*program { name: "go_active";
21857             signal: "elm,state,selected";
21858             source: "elm";
21859             action: STATE_SET "selected" 0.0;
21860             target: "elm.text";
21861             target: "elm.text.sub";
21862          }
21863          program { name: "go_passive";
21864             signal: "elm,state,unselected";
21865             source: "elm";
21866             action: STATE_SET "default" 0.0;
21867             target: "elm.text";
21868             target: "elm.text.sub";
21869             transition: LINEAR 0.1;
21870          }*/
21871          program { name: "go_disabled";
21872             signal: "elm,state,disabled";
21873             source: "elm";
21874             action: STATE_SET "disabled" 0.0;
21875             target: "disclip";
21876          }
21877          program { name: "go_enabled";
21878             signal: "elm,state,enabled";
21879             source: "elm";
21880             action: STATE_SET "default" 0.0;
21881             target: "disclip";
21882          }
21883       }
21884    }
21885
21886    // 4.1.9
21887    group { name: "elm/genlist/item/dialogue/1icon/default";
21888       alias: "elm/genlist/item_odd/dialogue/1icon/default";
21889       alias: "elm/genlist/item_compress/dialogue/1icon/default";
21890       alias: "elm/genlist/item_compress_odd/dialogue/1icon/default";
21891       alias: "elm/layout/dialogue/1icon";
21892       data.item: "stacking" "above";
21893       data.item: "selectraise" "on";
21894       data.item: "contents" "elm.icon";
21895
21896       parts {
21897          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
21898          GENLIST_PART_DIALOGUE_BG_IMAGE
21899          GENLIST_PART_BOTTOM_LINE
21900          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
21901          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
21902          GENLIST_PART_DIALOGUE_ITEM
21903          GENLIST_PART_DIALOGUE_RIGHT_LINE
21904          part { name: "elm.icon";
21905             clip_to: "disclip";
21906             type: SWALLOW;
21907             scale: 1;
21908             description { state: "default" 0.0;
21909                rel1 {
21910                   relative: 1.0 0.0;
21911                   to_x: "elm.padding.left";
21912                }
21913                rel2 {
21914                   relative: 0.0 1.0;
21915                   to_x: "elm.padding.right";
21916                }
21917             }
21918          }
21919          GENLIST_PART_DISCLIP
21920       }
21921       programs {
21922          // signal: elm,state,%s,active
21923          //   a "check" item named %s went active
21924          // signal: elm,state,%s,passive
21925          //   a "check" item named %s went passive
21926          // default is passive
21927          /*program { name: "go_active";
21928             signal: "elm,state,selected";
21929             source: "elm";
21930             action: STATE_SET "selected" 0.0;
21931             target: "bg_image";
21932             target: "elm.text";
21933          }
21934          program { name: "go_passive";
21935             signal: "elm,state,unselected";
21936             source: "elm";
21937             action: STATE_SET "default" 0.0;
21938             target: "bg_image";
21939             target: "elm.text";
21940             transition: LINEAR 0.1;
21941          }*/
21942          program { name: "go_disabled";
21943             signal: "elm,state,disabled";
21944             source: "elm";
21945             action: STATE_SET "disabled" 0.0;
21946             target: "disclip";
21947          }
21948          program { name: "go_enabled";
21949             signal: "elm,state,enabled";
21950             source: "elm";
21951             action: STATE_SET "default" 0.0;
21952             target: "disclip";
21953          }
21954       }
21955    }
21956
21957    group { name: "elm/genlist/item/dialogue/bg/1icon/default";
21958       alias: "elm/genlist/item_odd/dialogue/bg/1icon/default";
21959       alias: "elm/genlist/item_compress/dialogue/bg/1icon/default";
21960       alias: "elm/genlist/item_compress_odd/dialogue/bg/1icon/default";
21961       alias: "elm/layout/dialogue/bg/1icon";
21962       data.item: "stacking" "above";
21963       data.item: "selectraise" "on";
21964       data.item: "contents" "elm.icon";
21965
21966       parts {
21967          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_73_INC )
21968          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
21969          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
21970          part { name: "elm.icon";
21971             clip_to: "disclip";
21972             type: SWALLOW;
21973             scale: 1;
21974             description { state: "default" 0.0;
21975                rel1 {
21976                   relative: 1.0 0.0;
21977                   to_x: "elm.padding.left";
21978                }
21979                rel2 {
21980                   relative: 0.0 1.0;
21981                   to_x: "elm.padding.right";
21982                }
21983             }
21984          }
21985          GENLIST_PART_DISCLIP
21986       }
21987       programs {
21988          // signal: elm,state,%s,active
21989          //   a "check" item named %s went active
21990          // signal: elm,state,%s,passive
21991          //   a "check" item named %s went passive
21992          // default is passive
21993          program { name: "go_disabled";
21994             signal: "elm,state,disabled";
21995             source: "elm";
21996             action: STATE_SET "disabled" 0.0;
21997             target: "disclip";
21998          }
21999          program { name: "go_enabled";
22000             signal: "elm,state,enabled";
22001             source: "elm";
22002             action: STATE_SET "default" 0.0;
22003             target: "disclip";
22004          }
22005       }
22006    }
22007
22008    group { name: "elm/genlist/item/dialogue/bg/2icon/default";
22009       alias: "elm/genlist/item_odd/dialogue/bg/2icon/default";
22010       alias: "elm/genlist/item_compress/dialogue/bg/2icon/default";
22011       alias: "elm/genlist/item_compress_odd/dialogue/bg/2icon/default";
22012       alias: "elm/layout/dialogue/bg/2icon";
22013       data.item: "stacking" "above";
22014       data.item: "selectraise" "on";
22015       data.item: "contents" "elm.icon.1 elm.icon.2";
22016
22017       parts {
22018          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_73_INC )
22019          part { name: "elm.icon.1";
22020             clip_to: "disclip";
22021             type: SWALLOW;
22022             description { state: "default" 0.0;
22023                rel1.relative: 0.021 0.0;
22024                rel2.relative: 0.492 1.0;
22025             }
22026          }
22027          part { name: "elm.icon.2";
22028             clip_to: "disclip";
22029             type: SWALLOW;
22030             description { state: "default" 0.0;
22031                rel1.relative: 0.51 0.0;
22032                rel2.relative: 0.979 1.0;
22033             }
22034          }
22035          GENLIST_PART_DISCLIP
22036       }
22037       programs {
22038          // signal: elm,state,%s,active
22039          //   a "check" item named %s went active
22040          // signal: elm,state,%s,passive
22041          //   a "check" item named %s went passive
22042          // default is passive
22043          program { name: "go_disabled";
22044             signal: "elm,state,disabled";
22045             source: "elm";
22046             action: STATE_SET "disabled" 0.0;
22047             target: "disclip";
22048          }
22049          program { name: "go_enabled";
22050             signal: "elm,state,enabled";
22051             source: "elm";
22052             action: STATE_SET "default" 0.0;
22053             target: "disclip";
22054          }
22055       }
22056    }
22057
22058    group { name: "elm/genlist/item/dialogue/bg/3icon/default";
22059       alias: "elm/genlist/item_odd/dialogue/bg/3icon/default";
22060       alias: "elm/genlist/item_compress/dialogue/bg/3icon/default";
22061       alias: "elm/genlist/item_compress_odd/dialogue/bg/3icon/default";
22062
22063       alias: "elm/genlist/item/dialogue.3icon/default";
22064       alias: "elm/genlist/item_odd/dialogue.3icon/default";
22065       alias: "elm/genlist/item_compress/dialogue.3icon/default";
22066       alias: "elm/genlist/item_compress_odd/dialogue.3icon/default";
22067
22068       alias: "elm/layout/dialogue/bg/3icon";
22069       alias: "elm/layout/dialogue/dialogue.3icon";
22070
22071       data.item: "stacking" "above";
22072       data.item: "selectraise" "on";
22073       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
22074
22075       parts {
22076          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_73_INC )
22077          part { name: "elm.icon.1";
22078             clip_to: "disclip";
22079             type: SWALLOW;
22080             description { state: "default" 0.0;
22081                rel1.relative: 0.021 0.0;
22082                rel2.relative: 0.327 1.0;
22083             }
22084          }
22085          part { name: "elm.icon.2";
22086             clip_to: "disclip";
22087             type: SWALLOW;
22088             description { state: "default" 0.0;
22089                rel1.relative: 0.348 0.0;
22090                rel2.relative: 0.652 1.0;
22091             }
22092          }
22093          part { name: "elm.icon.3";
22094             clip_to: "disclip";
22095             type: SWALLOW;
22096             description { state: "default" 0.0;
22097                rel1.relative: 0.673 0.0;
22098                rel2.relative: 0.979 1.0;
22099             }
22100          }
22101          GENLIST_PART_DISCLIP
22102       }
22103       programs {
22104          // signal: elm,state,%s,active
22105          //   a "check" item named %s went active
22106          // signal: elm,state,%s,passive
22107          //   a "check" item named %s went passive
22108          // default is passive
22109          program { name: "go_disabled";
22110             signal: "elm,state,disabled";
22111             source: "elm";
22112             action: STATE_SET "disabled" 0.0;
22113             target: "disclip";
22114          }
22115          program { name: "go_enabled";
22116             signal: "elm,state,enabled";
22117             source: "elm";
22118             action: STATE_SET "default" 0.0;
22119             target: "disclip";
22120          }
22121       }
22122    }
22123
22124    group { name: "elm/genlist/item/dialogue.3icon.2/default";
22125       alias: "elm/genlist/item_odd/dialogue.3icon.2/default";
22126       alias: "elm/genlist/item_compress/dialogue.3icon.2/default";
22127       alias: "elm/genlist/item_compress_odd/dialogue.3icon.2/default";
22128       alias: "elm/layout/dialogue/dialogue.3icon.2";
22129       data.item: "stacking" "above";
22130       data.item: "selectraise" "on";
22131       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3";
22132
22133       parts {
22134          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_89_INC )
22135          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
22136          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
22137          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_16_INC )
22138          part { name: "elm.icon.1";
22139             clip_to: "disclip";
22140             type: SWALLOW;
22141             description { state: "default" 0.0;
22142                min: GENLIST_SIZE_234_INC 0;
22143                fixed: 1 0;
22144                rel1 {
22145                   relative: 0.0 1.0;
22146                   to_x: "elm.padding.right";
22147                   to_y: "elm.padding.top";
22148                }
22149                rel2 {
22150                   relative: 0.0 1.0;
22151                   to_x: "elm.padding.right";
22152                }
22153                align: 1.0 0.5;
22154             }
22155          }
22156          part { name: "elm.padding.icon.1.left";
22157             clip_to: "disclip";
22158             type: RECT;
22159             mouse_events: 0;
22160             scale: 1;
22161             description { state: "default" 0.0;
22162                min: GENLIST_PADDING_16_INC 0;
22163                fixed: 1 0;
22164                rel1.to_x: "elm.icon.1";
22165                rel2 {
22166                   relative: 0.0 1.0;
22167                   to_x: "elm.icon.1";
22168                }
22169                visible: 0;
22170                align: 1.0 0.5;
22171             }
22172          }
22173          part { name: "elm.icon.2";
22174             clip_to: "disclip";
22175             type: SWALLOW;
22176             description { state: "default" 0.0;
22177                min: GENLIST_SIZE_234_INC 0;
22178                fixed: 1 0;
22179                rel1 {
22180                   relative: 0.0 1.0;
22181                   to_x: "elm.padding.icon.1.left";
22182                   to_y: "elm.padding.top";
22183                }
22184                rel2 {
22185                   relative: 0.0 1.0;
22186                   to_x: "elm.padding.icon.1.left";
22187                }
22188                align: 1.0 0.5;
22189             }
22190          }
22191          part { name: "elm.padding.icon.2.left";
22192             clip_to: "disclip";
22193             type: RECT;
22194             mouse_events: 0;
22195             scale: 1;
22196             description { state: "default" 0.0;
22197                min: GENLIST_PADDING_16_INC 0;
22198                fixed: 1 0;
22199                rel1.to_x: "elm.icon.2";
22200                rel2 {
22201                   relative: 0.0 1.0;
22202                   to_x: "elm.icon.2";
22203                }
22204                visible: 0;
22205                align: 1.0 0.5;
22206             }
22207          }
22208          part { name: "elm.icon.3";
22209             clip_to: "disclip";
22210             type: SWALLOW;
22211             description { state: "default" 0.0;
22212                min: GENLIST_SIZE_234_INC 0;
22213                fixed: 1 0;
22214                rel1 {
22215                   relative: 0.0 1.0;
22216                   to_x: "elm.padding.icon.2.left";
22217                   to_y: "elm.padding.top";
22218                }
22219                rel2 {
22220                   relative: 0.0 1.0;
22221                   to_x: "elm.padding.icon.2.left";
22222                }
22223                align: 1.0 0.5;
22224             }
22225          }
22226          GENLIST_PART_DISCLIP
22227       }
22228       programs {
22229          // signal: elm,state,%s,active
22230          //   a "check" item named %s went active
22231          // signal: elm,state,%s,passive
22232          //   a "check" item named %s went passive
22233          // default is passive
22234          program { name: "go_disabled";
22235             signal: "elm,state,disabled";
22236             source: "elm";
22237             action: STATE_SET "disabled" 0.0;
22238             target: "disclip";
22239          }
22240          program { name: "go_enabled";
22241             signal: "elm,state,enabled";
22242             source: "elm";
22243             action: STATE_SET "default" 0.0;
22244             target: "disclip";
22245          }
22246       }
22247    }
22248
22249    group { name: "elm/genlist/item/dialogue.1title.1text.2/default";
22250       alias: "elm/genlist/item_odd/dialogue.1title.1text.2/default";
22251       alias: "elm/genlist/item_compress/dialogue.1title.1text.2/default";
22252       alias: "elm/genlist/item_compress_odd/dialogue.1title.1text.2/default";
22253       alias: "elm/layout/dialogue/dialogue.1title.1text.2";
22254       data.item: "stacking" "above";
22255       data.item: "selectraise" "on";
22256       data.item: "texts" "elm.title elm.text";
22257
22258       images {
22259           image: "00_list_img_check.png" COMP;
22260       }
22261
22262       parts {
22263          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
22264          GENLIST_PART_DIALOGUE_BG_IMAGE
22265          GENLIST_PART_BOTTOM_LINE
22266          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
22267          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
22268          GENLIST_PART_DIALOGUE_ITEM
22269          GENLIST_PART_DIALOGUE_RIGHT_LINE
22270          part { name: "vertical_line";
22271             type: RECT;
22272             mouse_events: 0;
22273             description { state: "default" 0.0;
22274                min: 1 0;
22275                fixed: 1 0;
22276                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22277                rel1 {
22278                   relative: 1.0 0.0;
22279                   to_x: "elm.title";
22280                }
22281                rel2.to_x: "elm.title";
22282                align: 0.0 0.5;
22283             }
22284          }
22285          part { name: "elm.title";
22286             type: TEXT;
22287             mouse_events: 0;
22288             scale: 1;
22289             description { state: "default" 0.0;
22290                min: GENLIST_SIZE_163_INC 0;
22291                fixed: 1 0;
22292                rel1 {
22293                   relative: 1.0  0.0;
22294                   to_x: "elm.padding.left";
22295                }
22296                rel2.to_x: "elm.padding.left";
22297                align: 0.0 0.5;
22298                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
22299                text {
22300                   font: "SLP:style=Medium";
22301                   size: GENLIST_FONT_32_INC;
22302                   min: 0 1;
22303                   align: 0.0 0.5;
22304                   text_class: "slp_medium";
22305                }
22306             }
22307          }
22308          part { name: "elm.padding.title.right";
22309             type: RECT;
22310             mouse_events: 0;
22311             scale: 1;
22312             description { state: "default" 0.0;
22313                min: GENLIST_PADDING_16_INC 0;
22314                fixed: 1 0;
22315                rel1 {
22316                    relative: 1.0 0.0;
22317                    to_x: "vertical_line";
22318                }
22319                rel2.to_x: "vertical_line";
22320                visible: 0;
22321                align: 0.0 0.5;
22322             }
22323          }
22324          part { name: "elm.text";
22325             clip_to: "disclip";
22326             type: TEXT;
22327             mouse_events: 0;
22328             scale: 1;
22329             description { state: "default" 0.0;
22330                rel1 {
22331                   relative: 1.0  0.0;
22332                   to_x: "elm.padding.title.right";
22333                }
22334                rel2.to_x: "elm.padding.title.right";
22335                align: 0.0 0.5;
22336                fixed: 1 1;
22337                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
22338                text {
22339                   font: "SLP:style=Roman";
22340                   size: GENLIST_FONT_44_INC;
22341                   min: 1 1;
22342                   max: 1 1;
22343                   align: 0.0 0.5;
22344                   text_class: "list_item";
22345                }
22346             }
22347             description { state: "selected" 0.0;
22348                inherit: "default" 0.0;
22349                color: 217 147 26 255;
22350             }
22351          }
22352          part { name: "elm.padding.text.right";
22353             type: RECT;
22354             mouse_events: 0;
22355             scale: 1;
22356             description { state: "default" 0.0;
22357                min: GENLIST_PADDING_11_INC 0;
22358                fixed: 1 0;
22359                rel1 {
22360                    relative: 1.0 0.0;
22361                    to_x: "elm.text";
22362                }
22363                rel2.to_x: "elm.text";
22364                visible: 0;
22365                align: 0.0 0.5;
22366             }
22367          }
22368          part { name: "elm.image.check";
22369             clip_to: "disclip";
22370             mouse_events: 0;
22371             scale: 1;
22372             description { state: "default" 0.0;
22373                image.normal: "00_list_img_check.png";
22374                rel1 {
22375                   relative: 1.0 0.366;
22376                   to_x: "elm.padding.text.right";
22377                }
22378                rel2 {
22379                   relative: 3.857 0.648;
22380                   to_x: "elm.padding.text.right";
22381                }
22382                visible: 0;
22383             }
22384             description { state: "selected" 0.0;
22385                inherit: "default" 0.0;
22386                visible: 1;
22387             }
22388          }
22389          GENLIST_PART_DISCLIP
22390       }
22391       programs {
22392          // signal: elm,state,%s,active
22393          //   a "check" item named %s went active
22394          // signal: elm,state,%s,passive
22395          //   a "check" item named %s went passive
22396          // default is passive
22397          program { name: "go_active";
22398             signal: "elm,state,selected";
22399             source: "elm";
22400             action: STATE_SET "selected" 0.0;
22401             target: "elm.text";
22402             target: "elm.image.check";
22403             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
22404          }
22405          program { name: "go_passive";
22406             signal: "elm,state,unselected";
22407             source: "elm";
22408             action: STATE_SET "default" 0.0;
22409             target: "elm.text";
22410             target: "elm.image.check";
22411             transition: LINEAR 0.1;
22412          }
22413          program { name: "go_disabled";
22414             signal: "elm,state,disabled";
22415             source: "elm";
22416             action: STATE_SET "disabled" 0.0;
22417             target: "disclip";
22418          }
22419          program { name: "go_enabled";
22420             signal: "elm,state,enabled";
22421             source: "elm";
22422             action: STATE_SET "default" 0.0;
22423             target: "disclip";
22424          }
22425          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
22426       }
22427    }
22428
22429    group { name: "elm/genlist/item/dialogue/1title.4text/default";
22430       alias: "elm/genlist/item_odd/dialogue/1title.4text/default";
22431       alias: "elm/genlist/item_compress/dialogue/1title.4text/default";
22432       alias: "elm/genlist/item_compress_odd/dialogue/1title.4text/default";
22433
22434       alias: "elm/genlist/item/dialogue.1title.4text/default";
22435       alias: "elm/genlist/item_odd/dialogue.1title.4text/default";
22436       alias: "elm/genlist/item_compress/dialogue.1title.4text/default";
22437       alias: "elm/genlist/item_compress_odd/dialogue.1title.4text/default";
22438
22439       alias: "elm/layout/dialogue/1title.4text";
22440
22441       data.item: "stacking" "above";
22442       data.item: "selectraise" "on";
22443       data.item: "texts" "elm.title elm.text.1 elm.text.2 elm.text.3 elm.text.4";
22444
22445       parts {
22446          GENLIST_PART_BASE( GENLIST_HEIGHT_454_INC )
22447          GENLIST_PART_DIALOGUE_BG_IMAGE
22448          GENLIST_PART_BOTTOM_LINE
22449          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
22450          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
22451          GENLIST_PART_DIALOGUE_ITEM
22452          GENLIST_PART_DIALOGUE_RIGHT_LINE
22453          part { name: "vertical_line";
22454             type: RECT;
22455             mouse_events: 0;
22456             description { state: "default" 0.0;
22457                min: 1 0;
22458                fixed: 1 0;
22459                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22460                rel1 {
22461                   relative: 1.0 0.0;
22462                   to_x: "elm.title";
22463                }
22464                rel2.to_x: "elm.title";
22465                align: 0.0 0.5;
22466             }
22467          }
22468          part { name: "center1_line";
22469             type: RECT;
22470             mouse_events: 0;
22471             description { state: "default" 0.0;
22472                min: 0 1;
22473                fixed: 0 1;
22474                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22475                rel1 {
22476                   relative: 1.0 0.25;
22477                   to_x: "vertical_line";
22478                }
22479                rel2.relative: 1.0 0.25;
22480                align: 0.5 1.0;
22481             }
22482          }
22483          part { name: "center2_line";
22484             type: RECT;
22485             mouse_events: 0;
22486             description { state: "default" 0.0;
22487                min: 0 1;
22488                fixed: 0 1;
22489                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22490                rel1 {
22491                   relative: 1.0 0.5;
22492                   to_x: "vertical_line";
22493                }
22494                rel2.relative: 1.0 0.5;
22495                align: 0.5 1.0;
22496             }
22497          }
22498          part { name: "center3_line";
22499             type: RECT;
22500             mouse_events: 0;
22501             description { state: "default" 0.0;
22502                min: 0 1;
22503                fixed: 0 1;
22504                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22505                rel1 {
22506                   relative: 1.0 0.75;
22507                   to_x: "vertical_line";
22508                }
22509                rel2.relative: 1.0 0.75;
22510                align: 0.5 1.0;
22511             }
22512          }
22513          part { name: "elm.title";
22514             type: TEXT;
22515             mouse_events: 0;
22516             scale: 1;
22517             description { state: "default" 0.0;
22518                min: GENLIST_SIZE_163_INC 0;
22519                fixed: 1 0;
22520                rel1 {
22521                   relative: 1.0  0.0;
22522                   to_x: "elm.padding.left";
22523                }
22524                rel2.to_x: "elm.padding.left";
22525                align: 0.0 0.5;
22526                color: GENLIST_PART_FONT_MULTILINE_TEXT_COLOR_INC;
22527                text {
22528                   font: "SLP:style=Medium";
22529                   size: GENLIST_FONT_32_INC;
22530                   min: 0 1;
22531                   align: 0.0 0.5;
22532                   text_class: "slp_medium";
22533                }
22534             }
22535          }
22536          part { name: "elm.padding.title.right";
22537             type: RECT;
22538             mouse_events: 0;
22539             scale: 1;
22540             description { state: "default" 0.0;
22541                min: GENLIST_PADDING_16_INC 0;
22542                fixed: 1 0;
22543                rel1 {
22544                    relative: 1.0 0.0;
22545                    to_x: "elm.title";
22546                }
22547                rel2.to_x: "elm.title";
22548                visible: 0;
22549                align: 0.0 0.5;
22550             }
22551          }
22552          part { name: "elm.text.1";
22553             clip_to: "disclip";
22554             type: TEXT;
22555             mouse_events: 0;
22556             scale: 1;
22557             description { state: "default" 0.0;
22558                rel1 {
22559                   relative: 1.0 0.0;
22560                   to_x: "elm.padding.title.right";
22561                }
22562                rel2 {
22563                   relative: 0.0 0.0;
22564                   to_x: "elm.padding.right";
22565                   to_y: "center1_line";
22566                }
22567                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
22568                text {
22569                   font: "SLP:style=Roman";
22570                   size: GENLIST_FONT_44_INC;
22571                   min: 0 1;
22572                   align: 0.0 0.5;
22573                   text_class: "list_item";
22574                }
22575             }
22576          }
22577          part { name: "elm.text.2";
22578             clip_to: "disclip";
22579             type: TEXT;
22580             mouse_events: 0;
22581             scale: 1;
22582             description { state: "default" 0.0;
22583                rel1 {
22584                   relative: 1.0 0.25;
22585                   to_x: "elm.padding.title.right";
22586                }
22587                rel2 {
22588                   relative: 0.0 0.0;
22589                   to_x: "elm.padding.right";
22590                   to_y: "center2_line";
22591                }
22592                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
22593                text {
22594                   font: "SLP:style=Roman";
22595                   size: GENLIST_FONT_44_INC;
22596                   min: 0 1;
22597                   align: 0.0 0.5;
22598                   text_class: "list_item";
22599                }
22600             }
22601          }
22602          part { name: "elm.text.3";
22603             clip_to: "disclip";
22604             type: TEXT;
22605             mouse_events: 0;
22606             scale: 1;
22607             description { state: "default" 0.0;
22608                rel1 {
22609                   relative: 1.0  0.5;
22610                   to_x: "elm.padding.title.right";
22611                }
22612                rel2 {
22613                   relative: 0.0 0.0;
22614                   to_x: "elm.padding.right";
22615                   to_y: "center3_line";
22616                }
22617                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
22618                text {
22619                   font: "SLP:style=Roman";
22620                   size: GENLIST_FONT_44_INC;
22621                   min: 0 1;
22622                   align: 0.0 0.5;
22623                   text_class: "list_item";
22624                }
22625             }
22626          }
22627          part { name: "elm.text.4";
22628             clip_to: "disclip";
22629             type: TEXT;
22630             mouse_events: 0;
22631             scale: 1;
22632             description { state: "default" 0.0;
22633                rel1 {
22634                   relative: 1.0  0.75;
22635                   to_x: "elm.padding.title.right";
22636                }
22637                rel2 {
22638                   relative: 0.0 0.0;
22639                   to_x: "elm.padding.right";
22640                   to_y: "bottom_line";
22641                }
22642                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
22643                text {
22644                   font: "SLP:style=Roman";
22645                   size: GENLIST_FONT_44_INC;
22646                   min: 0 1;
22647                   align: 0.0 0.5;
22648                   text_class: "list_item";
22649                }
22650             }
22651          }
22652          GENLIST_PART_DISCLIP
22653       }
22654       programs {
22655          // signal: elm,state,%s,active
22656          //   a "check" item named %s went active
22657          // signal: elm,state,%s,passive
22658          //   a "check" item named %s went passive
22659          // default is passive
22660          /*program { name: "go_active";
22661             signal: "elm,state,selected";
22662             source: "elm";
22663             action: STATE_SET "selected" 0.0;
22664             target: "elm.text";
22665          }
22666          program { name: "go_passive";
22667             signal: "elm,state,unselected";
22668             source: "elm";
22669             action: STATE_SET "default" 0.0;
22670             target: "elm.text";
22671             transition: LINEAR 0.1;
22672          }*/
22673          program { name: "go_disabled";
22674             signal: "elm,state,disabled";
22675             source: "elm";
22676             action: STATE_SET "disabled" 0.0;
22677             target: "disclip";
22678          }
22679          program { name: "go_enabled";
22680             signal: "elm,state,enabled";
22681             source: "elm";
22682             action: STATE_SET "default" 0.0;
22683             target: "disclip";
22684          }
22685       }
22686    }
22687
22688    group { name: "elm/genlist/item/dialogue/1title.5text/default";
22689       alias: "elm/genlist/item_odd/dialogue/1title.5text/default";
22690       alias: "elm/genlist/item_compress/dialogue/1title.5text/default";
22691       alias: "elm/genlist/item_compress_odd/dialogue/1title.5text/default";
22692       alias: "elm/layout/dialogue/1title.5text";
22693       data.item: "stacking" "above";
22694       data.item: "selectraise" "on";
22695       data.item: "texts" "elm.title elm.text.1 elm.text.2 elm.text.3 elm.text.4 elm.text.5";
22696       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";
22697
22698       parts {
22699          GENLIST_PART_BASE( GENLIST_HEIGHT_566_INC )
22700          GENLIST_PART_DIALOGUE_BG_IMAGE
22701          GENLIST_PART_BOTTOM_LINE
22702          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_27_INC )
22703          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
22704          GENLIST_PART_DIALOGUE_ITEM
22705          GENLIST_PART_DIALOGUE_RIGHT_LINE
22706          part { name: "vertical_line";
22707             type: RECT;
22708             mouse_events: 0;
22709             description { state: "default" 0.0;
22710                min: 1 0;
22711                fixed: 1 0;
22712                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22713                rel1 {
22714                   relative: 1.0 0.0;
22715                   to_x: "elm.title";
22716                }
22717                rel2.to_x: "elm.title";
22718                align: 0.0 0.5;
22719             }
22720          }
22721          part { name: "center1_line";
22722             type: RECT;
22723             mouse_events: 0;
22724             description { state: "default" 0.0;
22725                min: 0 1;
22726                fixed: 0 1;
22727                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22728                rel1 {
22729                   relative: 1.0 0.2;
22730                   to_x: "vertical_line";
22731                }
22732                rel2.relative: 1.0 0.2;
22733                align: 0.5 1.0;
22734             }
22735          }
22736          part { name: "center2_line";
22737             type: RECT;
22738             mouse_events: 0;
22739             description { state: "default" 0.0;
22740                min: 0 1;
22741                fixed: 0 1;
22742                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22743                rel1 {
22744                   relative: 1.0 0.4;
22745                   to_x: "vertical_line";
22746                }
22747                rel2.relative: 1.0 0.4;
22748                align: 0.5 1.0;
22749             }
22750          }
22751          part { name: "center3_line";
22752             type: RECT;
22753             mouse_events: 0;
22754             description { state: "default" 0.0;
22755                min: 0 1;
22756                fixed: 0 1;
22757                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22758                rel1 {
22759                   relative: 1.0 0.6;
22760                   to_x: "vertical_line";
22761                }
22762                rel2.relative: 1.0 0.6;
22763                align: 0.5 1.0;
22764             }
22765          }
22766          part { name: "center4_line";
22767             type: RECT;
22768             mouse_events: 0;
22769             description { state: "default" 0.0;
22770                min: 0 1;
22771                fixed: 0 1;
22772                color: GENLIST_PART_LIST_LINE_COLOR_INC;
22773                rel1 {
22774                   relative: 1.0 0.8;
22775                   to_x: "vertical_line";
22776                }
22777                rel2.relative: 1.0 0.8;
22778                align: 0.5 1.0;
22779             }
22780          }
22781          part { name: "elm.title";
22782             type: TEXT;
22783             mouse_events: 0;
22784             scale: 1;
22785             description { state: "default" 0.0;
22786                min: GENLIST_SIZE_163_INC 0;
22787                fixed: 1 0;
22788                rel1 {
22789                   relative: 1.0  0.0;
22790                   to_x: "elm.padding.left";
22791                }
22792                rel2.to_x: "elm.padding.left";
22793                align: 0.0 0.5;
22794                color: GENLIST_DIALOGUE_FONT_EDIT_MODE_TEXT_01_COLOR_INC;
22795                text {
22796                   font: "SLP:style=Medium";
22797                   size: GENLIST_FONT_32_INC;
22798                   min: 0 1;
22799                   align: 0.0 0.5;
22800                   text_class: "slp_medium";
22801                }
22802             }
22803             GENLIST_DESCRIPTION_FLIP_ENABLED
22804          }
22805          part { name: "elm.flip.content.title";
22806             clip_to: "disclip";
22807             type: SWALLOW;
22808             description { state: "default" 0.0;
22809                visible: 0;
22810                fixed: 1 1;
22811                rel1.to: "elm.title";
22812                rel2.to: "elm.title";
22813             }
22814             description { state: "flip_enabled" 0.0;
22815                inherit: "default" 0.0;
22816                visible: 1;
22817             }
22818          }
22819          part { name: "elm.padding.title.right";
22820             type: RECT;
22821             mouse_events: 0;
22822             scale: 1;
22823             description { state: "default" 0.0;
22824                min: GENLIST_PADDING_16_INC 0;
22825                fixed: 1 0;
22826                rel1 {
22827                    relative: 1.0 0.0;
22828                    to_x: "elm.title";
22829                }
22830                rel2.to_x: "elm.title";
22831                visible: 0;
22832                align: 0.0 0.5;
22833             }
22834          }
22835          part { name: "elm.text.1";
22836             clip_to: "disclip";
22837             type: TEXT;
22838             mouse_events: 0;
22839             scale: 1;
22840             description { state: "default" 0.0;
22841                rel1 {
22842                   relative: 1.0 0.0;
22843                   to_x: "elm.padding.title.right";
22844                }
22845                rel2 {
22846                   relative: 0.0 0.0;
22847                   to_x: "elm.padding.right";
22848                   to_y: "center1_line";
22849                }
22850                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
22851                text {
22852                   font: "SLP:style=Roman";
22853                   size: GENLIST_FONT_44_INC;
22854                   min: 0 1;
22855                   align: 0.0 0.5;
22856                   text_class: "list_item";
22857                }
22858             }
22859             GENLIST_DESCRIPTION_FLIP_ENABLED
22860          }
22861          part { name: "elm.flip.content.1";
22862             clip_to: "disclip";
22863             type: SWALLOW;
22864             description { state: "default" 0.0;
22865                visible: 0;
22866                fixed: 1 1;
22867                rel1.to: "elm.text.1";
22868                rel2.to: "elm.text.1";
22869             }
22870             description { state: "flip_enabled" 0.0;
22871                inherit: "default" 0.0;
22872                visible: 1;
22873             }
22874          }
22875          part { name: "elm.text.2";
22876             clip_to: "disclip";
22877             type: TEXT;
22878             mouse_events: 0;
22879             scale: 1;
22880             description { state: "default" 0.0;
22881                rel1 {
22882                   relative: 1.0 0.2;
22883                   to_x: "elm.padding.title.right";
22884                }
22885                rel2 {
22886                   relative: 0.0 0.0;
22887                   to_x: "elm.padding.right";
22888                   to_y: "center2_line";
22889                }
22890                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
22891                text {
22892                   font: "SLP:style=Roman";
22893                   size: GENLIST_FONT_44_INC;
22894                   min: 0 1;
22895                   align: 0.0 0.5;
22896                   text_class: "slp_roman";
22897                }
22898             }
22899             GENLIST_DESCRIPTION_FLIP_ENABLED
22900          }
22901          part { name: "elm.flip.content.2";
22902             clip_to: "disclip";
22903             type: SWALLOW;
22904             description { state: "default" 0.0;
22905                visible: 0;
22906                fixed: 1 1;
22907                rel1.to: "elm.text.2";
22908                rel2.to: "elm.text.2";
22909             }
22910             description { state: "flip_enabled" 0.0;
22911                inherit: "default" 0.0;
22912                visible: 1;
22913             }
22914          }
22915          part { name: "elm.text.3";
22916             clip_to: "disclip";
22917             type: TEXT;
22918             mouse_events: 0;
22919             scale: 1;
22920             description { state: "default" 0.0;
22921                rel1 {
22922                   relative: 1.0  0.4;
22923                   to_x: "elm.padding.title.right";
22924                }
22925                rel2 {
22926                   relative: 0.0 0.0;
22927                   to_x: "elm.padding.right";
22928                   to_y: "center3_line";
22929                }
22930                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
22931                text {
22932                   font: "SLP:style=Roman";
22933                   size: GENLIST_FONT_44_INC;
22934                   min: 0 1;
22935                   align: 0.0 0.5;
22936                   text_class: "slp_roman";
22937                }
22938             }
22939             GENLIST_DESCRIPTION_FLIP_ENABLED
22940          }
22941          part { name: "elm.flip.content.3";
22942             clip_to: "disclip";
22943             type: SWALLOW;
22944             description { state: "default" 0.0;
22945                visible: 0;
22946                fixed: 1 1;
22947                rel1.to: "elm.text.3";
22948                rel2.to: "elm.text.3";
22949             }
22950             description { state: "flip_enabled" 0.0;
22951                inherit: "default" 0.0;
22952                visible: 1;
22953             }
22954          }
22955          part { name: "elm.text.4";
22956             clip_to: "disclip";
22957             type: TEXT;
22958             mouse_events: 0;
22959             scale: 1;
22960             description { state: "default" 0.0;
22961                rel1 {
22962                   relative: 1.0 0.6;
22963                   to_x: "elm.padding.title.right";
22964                }
22965                rel2 {
22966                   relative: 0.0 0.0;
22967                   to_x: "elm.padding.right";
22968                   to_y: "center4_line";
22969                }
22970                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
22971                text {
22972                   font: "SLP:style=Roman";
22973                   size: GENLIST_FONT_44_INC;
22974                   min: 0 1;
22975                   align: 0.0 0.5;
22976                   text_class: "slp_roman";
22977                }
22978             }
22979             GENLIST_DESCRIPTION_FLIP_ENABLED
22980          }
22981          part { name: "elm.flip.content.4";
22982             clip_to: "disclip";
22983             type: SWALLOW;
22984             description { state: "default" 0.0;
22985                visible: 0;
22986                fixed: 1 1;
22987                rel1.to: "elm.text.4";
22988                rel2.to: "elm.text.4";
22989             }
22990             description { state: "flip_enabled" 0.0;
22991                inherit: "default" 0.0;
22992                visible: 1;
22993             }
22994          }
22995          part { name: "elm.text.5";
22996             clip_to: "disclip";
22997             type: TEXT;
22998             mouse_events: 0;
22999             scale: 1;
23000             description { state: "default" 0.0;
23001                rel1 {
23002                   relative: 1.0  0.8;
23003                   to_x: "elm.padding.title.right";
23004                }
23005                rel2 {
23006                   relative: 0.0 0.0;
23007                   to_x: "elm.padding.right";
23008                   to_y: "bottom_line";
23009                }
23010                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
23011                text {
23012                   font: "SLP:style=Roman";
23013                   size: GENLIST_FONT_44_INC;
23014                   min: 0 1;
23015                   align: 0.0 0.5;
23016                   text_class: "slp_roman";
23017                }
23018             }
23019             GENLIST_DESCRIPTION_FLIP_ENABLED
23020          }
23021          part { name: "elm.flip.content.5";
23022             clip_to: "disclip";
23023             type: SWALLOW;
23024             description { state: "default" 0.0;
23025                visible: 0;
23026                fixed: 1 1;
23027                rel1.to: "elm.text.5";
23028                rel2.to: "elm.text.5";
23029             }
23030             description { state: "flip_enabled" 0.0;
23031                inherit: "default" 0.0;
23032                visible: 1;
23033             }
23034          }
23035          GENLIST_PART_DISCLIP
23036       }
23037       programs {
23038          // signal: elm,state,%s,active
23039          //   a "check" item named %s went active
23040          // signal: elm,state,%s,passive
23041          //   a "check" item named %s went passive
23042          // default is passive
23043          /*program { name: "go_active";
23044             signal: "elm,state,selected";
23045             source: "elm";
23046             action: STATE_SET "selected" 0.0;
23047             target: "elm.text";
23048          }
23049          program { name: "go_passive";
23050             signal: "elm,state,unselected";
23051             source: "elm";
23052             action: STATE_SET "default" 0.0;
23053             target: "elm.text";
23054             transition: LINEAR 0.1;
23055          }*/
23056          program { name: "go_disabled";
23057             signal: "elm,state,disabled";
23058             source: "elm";
23059             action: STATE_SET "disabled" 0.0;
23060             target: "disclip";
23061          }
23062          program { name: "go_enabled";
23063             signal: "elm,state,enabled";
23064             source: "elm";
23065             action: STATE_SET "default" 0.0;
23066             target: "disclip";
23067          }
23068          program { name: "flip_enabled";
23069             signal: "elm,state,flip,enabled";
23070             source: "elm";
23071             action: STATE_SET "flip_enabled" 0.0;
23072             target: "elm.title";
23073             target: "elm.text.1";
23074             target: "elm.text.2";
23075             target: "elm.text.3";
23076             target: "elm.text.4";
23077             target: "elm.text.5";
23078             target: "elm.flip.content.title";
23079             target: "elm.flip.content.1";
23080             target: "elm.flip.content.2";
23081             target: "elm.flip.content.3";
23082             target: "elm.flip.content.4";
23083             target: "elm.flip.content.5";
23084          }
23085          program { name: "flip_disabled";
23086             signal: "elm,state,flip,disabled";
23087             source: "elm";
23088             action: STATE_SET "default" 0.0;
23089             target: "elm.title";
23090             target: "elm.text.1";
23091             target: "elm.text.2";
23092             target: "elm.text.3";
23093             target: "elm.text.4";
23094             target: "elm.text.5";
23095             target: "elm.flip.content.title";
23096             target: "elm.flip.content.1";
23097             target: "elm.flip.content.2";
23098             target: "elm.flip.content.3";
23099             target: "elm.flip.content.4";
23100             target: "elm.flip.content.5";
23101          }
23102       }
23103    }
23104
23105 /* extended item of bg/2text.1icon.3 */
23106    group { name: "elm/genlist/item/dialogue/bg/1text/default";
23107       alias: "elm/genlist/item_odd/dialogue/bg/1text/default";
23108       alias: "elm/genlist/item_compress/dialogue/bg/1text/default";
23109       alias: "elm/genlist/item_compress_odd/dialogue/bg/1text/default";
23110       alias: "elm/layout/dialogue/bg/1text";
23111       data.item: "stacking" "above";
23112       data.item: "selectraise" "on";
23113       data.item: "texts" "elm.text";
23114       data.item: "flips" "elm.flip.content";
23115       parts {
23116          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_1LINE )
23117          GENLIST_PART_PADDING_TOP( 0 )
23118          GENLIST_PART_PADDING_BOTTOM( 0 )
23119          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
23120          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
23121          part { name: "elm.icon.bg";
23122             type: RECT;
23123             scale: 1;
23124             description { state: "default" 0.0;
23125                min: GENLIST_SIZE_160_INC 0;
23126                fixed: 1 0;
23127                align: 0.0 0.5;
23128                rel1 {
23129                   relative: 1.0 0.5;
23130                   to_x: "elm.padding.left";
23131                }
23132                rel2 {
23133                   relative: 1.0 0.5;
23134                   to_x: "elm.padding.left";
23135                }
23136                color: 0 0 0 0;
23137             }
23138          }
23139          part { name: "elm.padding.icon.right";
23140             type: RECT;
23141             mouse_events: 0;
23142             scale: 1;
23143             description { state: "default" 0.0;
23144                min: GENLIST_SIZE_16_INC 0;
23145                fixed: 1 0;
23146                rel1 {
23147                    relative: 1.0 0.0;
23148                    to_x: "elm.icon.bg";
23149                }
23150                rel2.to_x: "elm.icon.bg";
23151                color: GENLIST_PART_LIST_LINE_COLOR_INC;
23152                align: 0.0 0.5;
23153             }
23154          }
23155          part { name: "elm.padding.text.left";
23156             type: RECT;
23157             mouse_events: 0;
23158             scale: 1;
23159             description { state: "default" 0.0;
23160                min: GENLIST_SIZE_16_INC 0;
23161                fixed: 1 0;
23162                rel1 {
23163                    relative: 1.0 1.0;
23164                    to_x: "elm.padding.icon.right";
23165                    to_y: "elm.padding.top";
23166                }
23167                rel2.to_x: "elm.padding.icon.right";
23168                visible: 0;
23169                align: 0.0 0.5;
23170             }
23171          }
23172          part { name: "vertical_line";
23173             type: RECT;
23174             mouse_events: 0;
23175             description { state: "default" 0.0;
23176                visible: 0;
23177                rel1 {
23178                   relative: 1.0 0.0;
23179                   to_x: "elm.padding.icon.right";
23180                }
23181                rel2.to_x: "elm.padding.icon.right";
23182                align: 0.0 0.5;
23183             }
23184          }
23185          part { name: "elm.text.bg";
23186             clip_to: "disclip";
23187             type: RECT;
23188             mouse_events: 0;
23189             scale: 1;
23190             description { state: "default" 0.0;
23191                rel1 {
23192                   relative: 1.0 0.0;
23193                   to_x: "elm.padding.icon.right";
23194                }
23195                rel2 {
23196                   relative: 1.0 1.0;
23197                   to_x: "elm.padding.right";
23198                }
23199                color: GENLIST_PART_BG_COLOR_INC;
23200             }
23201          }
23202          part { name: "elm.text";
23203             clip_to: "disclip";
23204             type: TEXT;
23205             mouse_events: 0;
23206             scale: 1;
23207             description { state: "default" 0.0;
23208                rel1 {
23209                   relative: 1.0 0.0;
23210                   to_x: "elm.padding.text.left";
23211                   to_y: "elm.text.bg";
23212                }
23213                rel2 {
23214                   relative: 0.0 1.0;
23215                   to_x: "elm.padding.right";
23216                   to_y: "elm.text.bg";
23217                }
23218                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
23219                text {
23220                   font: "SLP:style=Roman";
23221                   size: GENLIST_FONT_44_INC;
23222                   min: 0 1;
23223                   align: 0.0 0.5;
23224                   text_class: "list_item";
23225                }
23226             }
23227             GENLIST_DESCRIPTION_FLIP_ENABLED
23228          }
23229          part { name: "elm.flip.content";
23230             clip_to: "disclip";
23231             type: SWALLOW;
23232             mouse_events: 1;
23233             scale: 1;
23234             description { state: "default" 0.0;
23235                fixed: 1 1;
23236                rel1 {
23237                   relative: 1.0 0.0;
23238                   to_x: "elm.padding.text.left";
23239                   to_y: "elm.text.bg";
23240                }
23241                rel2 {
23242                   relative: 0.0 1.0;
23243                   to_x: "elm.padding.right";
23244                   to_y: "elm.text.bg";
23245                }
23246                visible: 0;
23247             }
23248             description { state: "flip_enabled" 0.0;
23249                inherit: "default" 0.0;
23250                visible: 1;
23251             }
23252          }
23253          GENLIST_PART_DISCLIP
23254       }
23255       programs {
23256          // signal: elm,state,%s,active
23257          //   a "check" item named %s went active
23258          // signal: elm,state,%s,passive
23259          //   a "check" item named %s went passive
23260          // default is passive
23261          /*program { name: "go_active";
23262             signal: "elm,state,selected";
23263             source: "elm";
23264             action: STATE_SET "selected" 0.0;
23265             target: "elm.text";
23266          }
23267          program { name: "go_passive";
23268             signal: "elm,state,unselected";
23269             source: "elm";
23270             action: STATE_SET "default" 0.0;
23271             target: "elm.text";
23272             transition: LINEAR 0.1;
23273          }*/
23274          program { name: "go_disabled";
23275             signal: "elm,state,disabled";
23276             source: "elm";
23277             action: STATE_SET "disabled" 0.0;
23278             target: "disclip";
23279          }
23280          program { name: "go_enabled";
23281             signal: "elm,state,enabled";
23282             source: "elm";
23283             action: STATE_SET "default" 0.0;
23284             target: "disclip";
23285          }
23286          program { name: "flip_enabled";
23287             signal: "elm,state,flip,enabled";
23288             source: "elm";
23289             action: STATE_SET "flip_enabled" 0.0;
23290             target: "elm.text";
23291             target: "elm.flip.content";
23292          }
23293          program { name: "flip_disabled";
23294             signal: "elm,state,flip,disabled";
23295             source: "elm";
23296             action: STATE_SET "default" 0.0;
23297             target: "elm.text";
23298             target: "elm.flip.content";
23299          }
23300       }
23301    }
23302    // 2.2.2.38
23303    group { name: "elm/genlist/item/4text.1icon.1/default";
23304       alias: "elm/genlist/item_odd/4text.1icon.1/default";
23305       alias: "elm/genlist/item_compress/4text.1icon.1/default";
23306       alias: "elm/genlist/item_compress_odd/4text.1icon.1/default";
23307       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
23308       data.item: "contents" "elm.icon.1";
23309       data.item: "stacking" "above";
23310       data.item: "selectraise" "on";
23311       data.item: "flips" "elm.flip.content";
23312       images {
23313          image: "00_winset_list_bubble_bg.png" COMP;
23314       }
23315       parts {
23316          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
23317          GENLIST_PART_BG_IMAGE
23318          GENLIST_PART_BOTTOM_LINE
23319          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
23320          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
23321          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
23322          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
23323
23324          part { name: "elm.text.1";
23325             clip_to: "disclip";
23326             type: TEXT;
23327             scale: 1;
23328             description { state: "default" 0.0;
23329                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
23330                fixed: 0 1;
23331                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23332                rel1 { relative: 1.0 1.0;
23333                   to_x: "elm.padding.left";
23334                   to_y: "elm.padding.top";
23335                }
23336                rel2 { relative: 0.0 1.0;
23337                   to_x: "elm.padding.text1.right";
23338                   to_y: "elm.padding.text1.right";
23339                }
23340                text {
23341                   font: "SLP:style=Roman";
23342                   size: GENLIST_FONT_44_INC;
23343                   min: 0 1;
23344                   align: 0.0 0.5;
23345                   text_class: "list_item";
23346                }
23347             }
23348             description { state: "read" 0.0;
23349                inherit: "default" 0.0;
23350                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_READ_COLOR_INC;
23351             }
23352             description { state: "selected" 0.0;
23353                inherit: "default" 0.0;
23354                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_FOCUS_COLOR_INC;
23355             }
23356             GENLIST_DESCRIPTION_FLIP_ENABLED
23357          }
23358          part { name: "elm.padding.text1.right";
23359             clip_to: "disclip";
23360             type: RECT;
23361             scale: 1;
23362             description { state: "default" 0.0;
23363                fixed: 1 1 ;
23364                align: 1.0 0.0;
23365                visible: 0;
23366                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
23367                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
23368                rel1 { relative: 0.0 1.0;
23369                   to_x: "elm.text.2";
23370                   to_y: "elm.padding.top";
23371                }
23372                rel2 { relative: 0.0 1.0;
23373                   to_x: "elm.text.2";
23374                   to_y: "elm.padding.top";
23375                }
23376             }
23377          }
23378          part { name: "elm.text.2";
23379             clip_to: "disclip";
23380             type: TEXT;
23381             scale: 1;
23382             description { state: "default" 0.0;
23383                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
23384                fixed: 0 1;
23385                align: 1.0 1.0;
23386                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23387                rel1 { relative: 0.0 1.0;
23388                   to_x: "elm.padding.right";
23389                   to_y: "elm.padding.bottom";
23390                }
23391                rel2 { relative: 0.0 1.0;
23392                  to_x: "elm.padding.right";
23393                  to_y: "elm.padding.bottom";
23394                }
23395                text {
23396                   font: "SLP:style=Medium";
23397                   size: GENLIST_FONT_32_INC;
23398                   min: 1 1;
23399                   align: 0.5 0.5;
23400                   text_class: "slp_medium";
23401               }
23402             }
23403             description { state: "selected" 0.0;
23404                inherit: "default" 0.0;
23405                color: GENLIST_PART_FONT_LIST_SUB_TEXT_FOCUS_COLOR_INC;
23406             }
23407             GENLIST_DESCRIPTION_FLIP_ENABLED
23408          }
23409          part { name: "elm.bubble";
23410             type: IMAGE;
23411             description{ state: "default" 0.0;
23412                fixed: 0 1;
23413                min: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
23414                rel1 { relative: 0 0;
23415                   to_x: "elm.padding.bubble.text4.left";
23416                   to_y: "elm.padding.bubble.text4.left";
23417                }
23418                rel2 { relative: 1 1;
23419                   to_x: "elm.padding.bubble.text4.right";
23420                   to_y: "elm.padding.bubble.text4.right";
23421                }
23422                image {
23423                   normal: "00_winset_list_bubble_bg.png";
23424                   border:  6 6 0 0;
23425                }
23426             }
23427          }
23428          part { name: "elm.padding.bubble.text4.left";
23429             type: RECT;
23430             scale: 1;
23431             description { state: "default" 0.0;
23432                fixed: 1 1;
23433                align: 1 0;
23434                visible: 0;
23435                min: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
23436                max: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
23437                rel1 { relative: 0 1;
23438                   to_x: "elm.text.4";
23439                   to_y: "elm.padding.top";
23440                }
23441                rel2 { relative: 0 0;
23442                   to_x: "elm.text.4";
23443                   to_y: "elm.text.2";
23444                }
23445
23446             }
23447          }
23448          part { name: "elm.padding.bubble.text4.right";
23449             type: RECT;
23450             scale: 1;
23451             description { state: "default" 0.0;
23452                fixed: 1 1;
23453                align: 1 0;
23454                visible: 0;
23455                min: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
23456                max: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
23457                rel1 { relative: 0 1;
23458                   to_x: "elm.padding.right";
23459                   to_y: "elm.padding.top";
23460                }
23461                rel2 { relative: 0 0;
23462                   to_x: "elm.padding.right";
23463                   to_y: "elm.text.2";
23464                }
23465             }
23466          }
23467          part { name: "elm.text.4";
23468             clip_to: "disclip";
23469             type: TEXT;
23470             scale: 1;
23471             description { state: "default" 0.0;
23472                color: GENLIST_PART_FONT_LIST_BUBBLE_TEXT_COLOR_INC;
23473                fixed: 0 1;
23474                align: 1.0 0.0;
23475                min: GENLIST_SIZE_28_INC GENLIST_SIZE_48_INC;
23476                rel1 { relative: 0 1;
23477                   to_x: "elm.padding.bubble.text4.right";
23478                   to_y: "elm.padding.top";
23479                }
23480                rel2 { relative: 0 0;
23481                   to_x: "elm.padding.bubble.text4.right";
23482                   to_y: "elm.text.2";
23483                }
23484                text {
23485                   font: "SLP:style=Medium";
23486                   size: GENLIST_FONT_32_INC;
23487                   min: 1 1;
23488                   align: 0.5 0.5;
23489                   text_class: "slp_medium";
23490                }
23491             }
23492             GENLIST_DESCRIPTION_FLIP_ENABLED
23493          }
23494
23495          part { name: "elm.padding.icon1.right";
23496             clip_to: "disclip";
23497             type: RECT;
23498             scale: 1;
23499             description { state: "default" 0.0;
23500                fixed: 1 1;
23501                align: 1.0 0.0;
23502                visible: 0;
23503                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23504                rel1 { relative: 0 0;
23505                   to_x: "elm.padding.bubble.text4.left";
23506                   to_y: "elm.padding.top";
23507                }
23508                rel2 { relative: 0 0;
23509                   to_x: "elm.padding.bubble.text4.left";
23510                   to_y: "elm.padding.bubble.text4.left";
23511                }
23512             }
23513          }
23514          part { name: "elm.icon.1";
23515             clip_to: "disclip";
23516             type: SWALLOW;
23517             scale: 1;
23518             description { state: "default" 0.0;
23519                color: 0 255 255 255;
23520                fixed: 1 1;
23521                align: 1.0 0.0;
23522                min: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
23523                max: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
23524                rel1 { relative: 0 0;
23525                   to_x: "elm.padding.icon1.right";
23526                   to_y: "elm.padding.top";
23527                }
23528                rel2 { relative: 0 1;
23529                   to_x: "elm.padding.icon1.right";
23530                   to_y: "elm.padding.icon1.right";
23531                }
23532             }
23533          }
23534          part { name: "elm.padding.text3.right";
23535             clip_to: "disclip";
23536             type: RECT;
23537             scale: 1;
23538             description { state: "default" 0.0;
23539                fixed: 1 1;
23540                align: 1.0 0.0;
23541                visible: 0;
23542                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23543                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23544                rel1 { relative: 0 0;
23545                   to_x: "elm.icon.1";
23546                   to_y: "elm.icon.1";
23547                }
23548                rel2 { relative: 0 0;
23549                   to_x: "elm.icon.1";
23550                   to_y: "elm.padding.bottom";
23551                }
23552             }
23553          }
23554          part { name: "elm.text.3";
23555             clip_to: "disclip";
23556             type: TEXT;
23557             scale: 1;
23558             description { state: "default" 0.0;
23559                color: GENLIST_PART_FONT_NAME_TEXT_COLOR_INC;
23560                fixed: 0 1;
23561                align: 0.0 0.0;
23562                min: 0 GENLIST_SIZE_48_INC;
23563                rel1 { relative: 1 1;
23564                   to_x: "elm.padding.left";
23565                   to_y: "elm.text.1";
23566                }
23567                rel2 { relative: 0 1;
23568                   to_x: "elm.padding.text3.right";
23569                   to_y: "elm.padding.text3.right";
23570                }
23571                text {
23572                   font: "SLP:style=Medium";
23573                   size: GENLIST_FONT_32_INC;
23574                   min: 0 1;
23575                   align: 0.0 0.5;
23576                   text_class: "slp_medium";
23577                }
23578             }
23579             description { state: "selected" 0.0;
23580                inherit: "default" 0.0;
23581                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
23582             }
23583             GENLIST_DESCRIPTION_FLIP_ENABLED
23584          }
23585          GENLIST_PART_FLIP
23586          GENLIST_PART_DISCLIP
23587       }
23588       programs {
23589          // signal: elm,state,%s,active
23590          //   a "check" item named %s went active
23591          // signal: elm,state,%s,passive
23592          //   a "check" item named %s went passive
23593          // default is passive
23594          program { name: "go_active";
23595             signal: "elm,state,selected";
23596             source: "elm";
23597             action: STATE_SET "selected" 0.0;
23598             target: "bg_image";
23599             target: "elm.text.1";
23600             target: "elm.text.2";
23601          }
23602          program { name: "go_passive";
23603             signal: "elm,state,unselected";
23604             source: "elm";
23605             action: STATE_SET "default" 0.0;
23606             target: "bg_image";
23607             target: "elm.text.1";
23608             target: "elm.text.2";
23609             transition: LINEAR 0.1;
23610          }
23611          program { name: "go_read";
23612             signal: "elm,state,read";
23613             source: "elm";
23614             action: STATE_SET "read" 0.0;
23615             target: "elm.text.1";
23616          }
23617          program { name: "go_unread";
23618             signal: "elm,state,unread";
23619             source: "elm";
23620             action: STATE_SET "default" 0.0;
23621             target: "elm.text.1";
23622          }
23623       }
23624    }
23625    // 2.2.2.38 textblock
23626    group { name: "elm/genlist/item/4text.1icon.1.tb/default";
23627       alias: "elm/genlist/item_odd/4text.1icon.1.tb/default";
23628       alias: "elm/genlist/item_compress/4text.1icon.1.tb/default";
23629       alias: "elm/genlist/item_compress_odd/4text.1icon.1.tb/default";
23630           inherit: "elm/genlist/item/4text.1icon.1/default";
23631       parts {
23632          part { name: "elm.text.1";
23633             clip_to: "disclip";
23634             type: TEXTBLOCK;
23635             scale: 1;
23636             description { state: "default" 0.0;
23637                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
23638                fixed: 0 1;
23639                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23640                rel1 { relative: 1.0 1.0;
23641                   to_x: "elm.padding.left";
23642                   to_y: "elm.padding.top";
23643                }
23644                rel2 { relative: 0.0 1.0;
23645                   to_x: "elm.padding.text1.right";
23646                   to_y: "elm.padding.text1.right";
23647                }
23648                text {
23649                   style: "genlist_default_textblock_style";
23650                   min: 0 1;
23651                   align: 0.0 0.5;
23652                }
23653             }
23654             description { state: "read" 0.0;
23655                inherit: "default" 0.0;
23656                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_READ_COLOR_INC;
23657             }
23658             description { state: "selected" 0.0;
23659                inherit: "default" 0.0;
23660                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_FOCUS_COLOR_INC;
23661             }
23662             GENLIST_DESCRIPTION_FLIP_ENABLED
23663          }
23664          part { name: "elm.text.2";
23665             clip_to: "disclip";
23666             type: TEXT;
23667             scale: 1;
23668             description { state: "default" 0.0;
23669                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
23670                fixed: 0 1;
23671                align: 1.0 1.0;
23672                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23673                rel1 { relative: 0.0 1.0;
23674                   to_x: "elm.padding.right";
23675                   to_y: "elm.padding.bottom";
23676                }
23677                rel2 { relative: 0.0 1.0;
23678                  to_x: "elm.padding.right";
23679                  to_y: "elm.padding.bottom";
23680                }
23681                text {
23682                   font: "SLP:style=Medium";
23683                   size: GENLIST_FONT_32_INC;
23684                   min: 1 1;
23685                   align: 0.5 0.5;
23686                   text_class: "slp_medium";
23687               }
23688             }
23689             description { state: "selected" 0.0;
23690                inherit: "default" 0.0;
23691                color: GENLIST_PART_FONT_LIST_SUB_TEXT_FOCUS_COLOR_INC;
23692             }
23693             GENLIST_DESCRIPTION_FLIP_ENABLED
23694          }
23695          part { name: "elm.text.4";
23696             clip_to: "disclip";
23697             type: TEXT;
23698             scale: 1;
23699             description { state: "default" 0.0;
23700                color: GENLIST_PART_FONT_LIST_BUBBLE_TEXT_COLOR_INC;
23701                fixed: 0 1;
23702                align: 1.0 0.0;
23703                min: GENLIST_SIZE_28_INC GENLIST_SIZE_48_INC;
23704                rel1 { relative: 0 1;
23705                   to_x: "elm.padding.bubble.text4.right";
23706                   to_y: "elm.padding.top";
23707                }
23708                rel2 { relative: 0 0;
23709                   to_x: "elm.padding.bubble.text4.right";
23710                   to_y: "elm.text.2";
23711                }
23712                text {
23713                   font: "SLP:style=Medium";
23714                   size: GENLIST_FONT_32_INC;
23715                   min: 1 1;
23716                   align: 0.5 0.5;
23717                   text_class: "slp_medium";
23718                }
23719             }
23720             GENLIST_DESCRIPTION_FLIP_ENABLED
23721          }
23722          part { name: "elm.text.3";
23723             clip_to: "disclip";
23724             type: TEXT;
23725             scale: 1;
23726             description { state: "default" 0.0;
23727                color: GENLIST_PART_FONT_NAME_TEXT_COLOR_INC;
23728                fixed: 0 1;
23729                align: 0.0 0.0;
23730                min: 0 GENLIST_SIZE_48_INC;
23731                rel1 { relative: 1 1;
23732                   to_x: "elm.padding.left";
23733                   to_y: "elm.text.1";
23734                }
23735                rel2 { relative: 0 1;
23736                   to_x: "elm.padding.text3.right";
23737                   to_y: "elm.padding.text3.right";
23738                }
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             description { state: "selected" 0.0;
23748                inherit: "default" 0.0;
23749                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
23750             }
23751             GENLIST_DESCRIPTION_FLIP_ENABLED
23752          }
23753          GENLIST_PART_FLIP
23754          GENLIST_PART_DISCLIP
23755       }
23756    }
23757
23758    // 2.2.2.39
23759    group { name: "elm/genlist/item/4text.1icon.2/default";
23760       alias: "elm/genlist/item_odd/4text.1icon.2/default";
23761       alias: "elm/genlist/item_compress/4text.1icon.2/default";
23762       alias: "elm/genlist/item_compress_odd/4text.1icon.2/default";
23763       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
23764       data.item: "contents" "elm.icon.1";
23765       data.item: "stacking" "above";
23766       data.item: "selectraise" "on";
23767       data.item: "flips" "elm.flip.content";
23768       parts {
23769          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
23770          GENLIST_PART_BG_IMAGE
23771          GENLIST_PART_BOTTOM_LINE
23772          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
23773          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
23774          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
23775          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
23776
23777          part { name: "elm.text.1";
23778             clip_to: "disclip";
23779             type: TEXT;
23780             scale: 1;
23781             description { state: "default" 0.0;
23782                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
23783                fixed: 0 1;
23784                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23785                rel1 { relative: 1.0 1.0;
23786                   to_x: "elm.padding.left";
23787                   to_y: "elm.padding.top";
23788                }
23789                rel2 { relative: 0.0 1.0;
23790                   to_x: "elm.padding.text1.right";
23791                   to_y: "elm.padding.text1.right";
23792                }
23793                text {
23794                   font: "SLP:style=Roman";
23795                   size: GENLIST_FONT_44_INC;
23796                   min: 0 1;
23797                   align: 0.0 0.5;
23798                   text_class: "list_item";
23799                }
23800             }
23801             description { state: "read" 0.0;
23802                inherit: "default" 0.0;
23803                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_READ_COLOR_INC;
23804             }
23805             description { state: "selected" 0.0;
23806                inherit: "default" 0.0;
23807                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_FOCUS_COLOR_INC;
23808             }
23809             GENLIST_DESCRIPTION_FLIP_ENABLED
23810          }
23811          part { name: "elm.padding.text1.right";
23812             clip_to: "disclip";
23813             type: RECT;
23814             scale: 1;
23815             description { state: "default" 0.0;
23816                fixed: 1 1 ;
23817                align: 1.0 0.0;
23818                visible: 0;
23819                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
23820                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
23821                rel1 { relative: 0.0 1.0;
23822                   to_x: "elm.text.2";
23823                   to_y: "elm.padding.top";
23824                }
23825                rel2 { relative: 0.0 1.0;
23826                   to_x: "elm.text.2";
23827                   to_y: "elm.padding.top";
23828                }
23829             }
23830          }
23831          part { name: "elm.text.2";
23832             clip_to: "disclip";
23833             type: TEXT;
23834             scale: 1;
23835             description { state: "default" 0.0;
23836                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
23837                fixed: 1 1;
23838                align: 1.0 1.0;
23839                min: 0 GENLIST_SIZE_SLIDE_60_INC;
23840                rel1 { relative: 0.0 1.0;
23841                   to_x: "elm.padding.right";
23842                   to_y: "elm.padding.bottom";
23843                }
23844                rel2 { relative: 0.0 1.0;
23845                  to_x: "elm.padding.right";
23846                  to_y: "elm.padding.bottom";
23847                }
23848                text {
23849                   font: "SLP:style=Medium";
23850                   size: GENLIST_FONT_32_INC;
23851                   min: 1 1;
23852                   align: 0.5 0.5;
23853                   text_class: "slp_medium";
23854               }
23855             }
23856             description { state: "selected" 0.0;
23857                inherit: "default" 0.0;
23858                color: GENLIST_PART_FONT_LIST_SUB_TEXT_FOCUS_COLOR_INC;
23859             }
23860             GENLIST_DESCRIPTION_FLIP_ENABLED
23861          }
23862          part { name: "elm.text.4";
23863             clip_to: "disclip";
23864             type: TEXT;
23865             scale: 1;
23866             description { state: "default" 0.0;
23867                color: GENLIST_PART_FONT_LIST_MESSAGE_TEXT_COLOR_INC;
23868                fixed: 0 1;
23869                align: 1.0 0.0;
23870                min: 0 GENLIST_SIZE_48_INC;
23871                rel1 { relative: 0 1;
23872                   to_x: "elm.padding.right";
23873                   to_y: "elm.padding.top";
23874                }
23875                rel2 { relative: 0 0;
23876                   to_x: "elm.padding.right";
23877                   to_y: "elm.text.2";
23878                }
23879                text {
23880                   font: "SLP:style=Medium";
23881                   size: GENLIST_FONT_32_INC;
23882                   min: 1 1;
23883                   align: 0.5 0.5;
23884                   text_class: "slp_medium";
23885                }
23886             }
23887             GENLIST_DESCRIPTION_FLIP_ENABLED
23888          }
23889          part { name: "elm.padding.icon1.right";
23890             clip_to: "disclip";
23891             type: RECT;
23892             scale: 1;
23893             description { state: "default" 0.0;
23894                fixed: 1 1;
23895                align: 1.0 0.0;
23896                visible: 0;
23897                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23898                rel1 { relative: 0 0;
23899                   to_x: "elm.text.4";
23900                   to_y: "elm.padding.top";
23901                }
23902                rel2 { relative: 0 0;
23903                   to_x: "elm.text.4";
23904                   to_y: "elm.text.4";
23905                }
23906             }
23907          }
23908          part { name: "elm.icon.1";
23909             clip_to: "disclip";
23910             type: SWALLOW;
23911             scale: 1;
23912             description { state: "default" 0.0;
23913                color: 0 255 255 255;
23914                fixed: 1 1;
23915                align: 1.0 0.0;
23916                min: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
23917                max: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
23918                rel1 { relative: 0 0;
23919                   to_x: "elm.padding.icon1.right";
23920                   to_y: "elm.padding.top";
23921                }
23922                rel2 { relative: 0 1;
23923                   to_x: "elm.padding.icon1.right";
23924                   to_y: "elm.padding.icon1.right";
23925                }
23926             }
23927          }
23928          part { name: "elm.padding.text3.right";
23929             clip_to: "disclip";
23930             type: RECT;
23931             scale: 1;
23932             description { state: "default" 0.0;
23933                fixed: 1 0;
23934                align: 1.0 0.0;
23935                visible: 0;
23936                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23937                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
23938                rel1 { relative: 0 0;
23939                   to_x: "elm.text.2";
23940                   to_y: "elm.text.2";
23941                }
23942                rel2 { relative: 0 0;
23943                   to_x: "elm.text.2";
23944                   to_y: "elm.padding.bottom";
23945                }
23946             }
23947          }
23948          part { name: "elm.text.3";
23949             clip_to: "disclip";
23950             type: TEXT;
23951             scale: 1;
23952             description { state: "default" 0.0;
23953                color: GENLIST_PART_FONT_NAME_TEXT_COLOR_INC;
23954                fixed: 0 1;
23955                align: 0.0 0.0;
23956                min: 0 GENLIST_SIZE_48_INC;
23957                rel1 { relative: 1 1;
23958                   to_x: "elm.padding.left";
23959                   to_y: "elm.text.1";
23960                }
23961                rel2 { relative: 0 1;
23962                   to_x: "elm.padding.text3.right";
23963                   to_y: "elm.padding.text3.right";
23964                }
23965                text {
23966                   font: "SLP:style=Medium";
23967                   size: GENLIST_FONT_32_INC;
23968                   min: 0 1;
23969                   align: 0.0 0.5;
23970                   text_class: "slp_medium";
23971                }
23972             }
23973             description { state: "selected" 0.0;
23974                inherit: "default" 0.0;
23975                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
23976             }
23977             GENLIST_DESCRIPTION_FLIP_ENABLED
23978          }
23979          GENLIST_PART_FLIP
23980          GENLIST_PART_DISCLIP
23981       }
23982       programs {
23983          // signal: elm,state,%s,active
23984          //   a "check" item named %s went active
23985          // signal: elm,state,%s,passive
23986          //   a "check" item named %s went passive
23987          // default is passive
23988          program { name: "go_active";
23989             signal: "elm,state,selected";
23990             source: "elm";
23991             action: STATE_SET "selected" 0.0;
23992             target: "bg_image";
23993             target: "elm.text.1";
23994             target: "elm.text.2";
23995          }
23996          program { name: "go_passive";
23997             signal: "elm,state,unselected";
23998             source: "elm";
23999             action: STATE_SET "default" 0.0;
24000             target: "bg_image";
24001             target: "elm.text.1";
24002             target: "elm.text.2";
24003             transition: LINEAR 0.1;
24004          }
24005          program { name: "go_read";
24006             signal: "elm,state,read";
24007             source: "elm";
24008             action: STATE_SET "read" 0.0;
24009             target: "elm.text.1";
24010          }
24011          program { name: "go_unread";
24012             signal: "elm,state,unread";
24013             source: "elm";
24014             action: STATE_SET "default" 0.0;
24015             target: "elm.text.1";
24016          }
24017       }
24018    }
24019    // 2.2.2.40
24020    group { name: "elm/genlist/item/4text.1/default";
24021       alias: "elm/genlist/item_odd/4text.1/default";
24022       alias: "elm/genlist/item_compress/4text.1/default";
24023       alias: "elm/genlist/item_compress_odd/4text.1/default";
24024       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
24025       data.item: "stacking" "above";
24026       data.item: "selectraise" "on";
24027       data.item: "flips" "elm.flip.content";
24028       images {
24029          image: "00_winset_list_bubble_bg.png" COMP;
24030       }
24031       parts {
24032          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
24033          GENLIST_PART_BG_IMAGE
24034          GENLIST_PART_BOTTOM_LINE
24035          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
24036          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
24037          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
24038          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
24039
24040          part { name: "elm.text.1";
24041             clip_to: "disclip";
24042             type: TEXT;
24043             scale: 1;
24044             description { state: "default" 0.0;
24045                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
24046                fixed: 0 1;
24047                min: 0 GENLIST_SIZE_SLIDE_60_INC;
24048                rel1 { relative: 1.0 1.0;
24049                   to_x: "elm.padding.left";
24050                   to_y: "elm.padding.top";
24051                }
24052                rel2 { relative: 0.0 1.0;
24053                   to_x: "elm.padding.text1.right";
24054                   to_y: "elm.padding.text1.right";
24055                }
24056                text {
24057                   font: "SLP:style=Roman";
24058                   size: GENLIST_FONT_44_INC;
24059                   min: 0 1;
24060                   align: 0.0 0.5;
24061                   text_class: "list_item";
24062                }
24063             }
24064             description { state: "read" 0.0;
24065                inherit: "default" 0.0;
24066                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_READ_COLOR_INC;
24067             }
24068             description { state: "selected" 0.0;
24069                inherit: "default" 0.0;
24070                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_FOCUS_COLOR_INC;
24071             }
24072             GENLIST_DESCRIPTION_FLIP_ENABLED
24073          }
24074          part { name: "elm.padding.text1.right";
24075             clip_to: "disclip";
24076             type: RECT;
24077             scale: 1;
24078             description { state: "default" 0.0;
24079                fixed: 1 1 ;
24080                align: 1.0 0.0;
24081                visible: 0;
24082                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24083                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24084                rel1 { relative: 0.0 1.0;
24085                   to_x: "elm.text.2";
24086                   to_y: "elm.padding.top";
24087                }
24088                rel2 { relative: 0.0 1.0;
24089                   to_x: "elm.text.2";
24090                   to_y: "elm.padding.top";
24091                }
24092             }
24093          }
24094          part { name: "elm.text.2";
24095             clip_to: "disclip";
24096             type: TEXT;
24097             scale: 1;
24098             description { state: "default" 0.0;
24099                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
24100                fixed: 0 1;
24101                align: 1.0 1.0;
24102                min: 0 GENLIST_SIZE_SLIDE_60_INC;
24103                rel1 { relative: 0.0 1.0;
24104                   to_x: "elm.padding.right";
24105                   to_y: "elm.padding.bottom";
24106                }
24107                rel2 { relative: 0.0 1.0;
24108                  to_x: "elm.padding.right";
24109                  to_y: "elm.padding.bottom";
24110                }
24111                text {
24112                   font: "SLP:style=Medium";
24113                   size: GENLIST_FONT_32_INC;
24114                   min: 1 1;
24115                   align: 0.5 0.5;
24116                   text_class: "slp_medium";
24117               }
24118             }
24119             description { state: "selected" 0.0;
24120                inherit: "default" 0.0;
24121                color: GENLIST_PART_FONT_LIST_SUB_TEXT_FOCUS_COLOR_INC;
24122             }
24123             GENLIST_DESCRIPTION_FLIP_ENABLED
24124          }
24125          part { name: "elm.bubble";
24126             type: IMAGE;
24127             description{ state: "default" 0.0;
24128                fixed: 0 1;
24129                min: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
24130                rel1 { relative: 0 0;
24131                   to_x: "elm.padding.bubble.text4.left";
24132                   to_y: "elm.padding.bubble.text4.left";
24133                }
24134                rel2 { relative: 1 1;
24135                   to_x: "elm.padding.bubble.text4.right";
24136                   to_y: "elm.padding.bubble.text4.right";
24137                }
24138                image {
24139                   normal: "00_winset_list_bubble_bg.png";
24140                   border:  6 6 0 0;
24141                }
24142             }
24143          }
24144          part { name: "elm.padding.bubble.text4.left";
24145             type: RECT;
24146             scale: 1;
24147             description { state: "default" 0.0;
24148                fixed: 1 1;
24149                align: 1 0;
24150                visible: 0;
24151                min: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
24152                max: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
24153                rel1 { relative: 0 1;
24154                   to_x: "elm.text.4";
24155                   to_y: "elm.padding.top";
24156                }
24157                rel2 { relative: 0 0;
24158                   to_x: "elm.text.4";
24159                   to_y: "elm.text.2";
24160                }
24161
24162             }
24163          }
24164          part { name: "elm.padding.bubble.text4.right";
24165             type: RECT;
24166             scale: 1;
24167             description { state: "default" 0.0;
24168                fixed: 1 1;
24169                align: 1 0;
24170                visible: 0;
24171                min: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
24172                max: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
24173                rel1 { relative: 0 1;
24174                   to_x: "elm.padding.right";
24175                   to_y: "elm.padding.top";
24176                }
24177                rel2 { relative: 0 0;
24178                   to_x: "elm.padding.right";
24179                   to_y: "elm.text.2";
24180                }
24181             }
24182          }
24183          part { name: "elm.text.4";
24184             clip_to: "disclip";
24185             type: TEXT;
24186             scale: 1;
24187             description { state: "default" 0.0;
24188                color: GENLIST_PART_FONT_LIST_BUBBLE_TEXT_COLOR_INC;
24189                fixed: 0 1;
24190                align: 1.0 0.0;
24191                min: GENLIST_SIZE_28_INC GENLIST_SIZE_48_INC;
24192                rel1 { relative: 0 1;
24193                   to_x: "elm.padding.bubble.text4.right";
24194                   to_y: "elm.padding.top";
24195                }
24196                rel2 { relative: 0 0;
24197                   to_x: "elm.padding.bubble.text4.right";
24198                   to_y: "elm.text.2";
24199                }
24200                text {
24201                   font: "SLP:style=Medium";
24202                   size: GENLIST_FONT_32_INC;
24203                   min: 1 1;
24204                   align: 0.5 0.5;
24205                   text_class: "slp_medium";
24206                }
24207             }
24208             GENLIST_DESCRIPTION_FLIP_ENABLED
24209          }
24210          part { name: "elm.padding.text3.right";
24211             clip_to: "disclip";
24212             type: RECT;
24213             scale: 1;
24214             description { state: "default" 0.0;
24215                fixed: 1 1;
24216                align: 1.0 0.0;
24217                visible: 0;
24218                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24219                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24220                rel1 { relative: 0 0;
24221                   to_x: "elm.padding.bubble.text4.left";
24222                   to_y: "elm.padding.bubble.text4.left";
24223                }
24224                rel2 { relative: 0 0;
24225                   to_x: "elm.padding.bubble.text4.left";
24226                   to_y: "elm.padding.bottom";
24227                }
24228             }
24229          }
24230          part { name: "elm.text.3";
24231             clip_to: "disclip";
24232             type: TEXT;
24233             scale: 1;
24234             description { state: "default" 0.0;
24235                color: GENLIST_PART_FONT_NAME_TEXT_COLOR_INC;
24236                fixed: 0 1;
24237                align: 0.0 0.0;
24238                min: 0 GENLIST_SIZE_48_INC;
24239                rel1 { relative: 1 1;
24240                   to_x: "elm.padding.left";
24241                   to_y: "elm.text.1";
24242                }
24243                rel2 { relative: 0 1;
24244                   to_x: "elm.padding.text3.right";
24245                   to_y: "elm.padding.text3.right";
24246                }
24247                text {
24248                   font: "SLP:style=Medium";
24249                   size: GENLIST_FONT_32_INC;
24250                   min: 0 1;
24251                   align: 0.0 0.5;
24252                   text_class: "slp_medium";
24253                }
24254             }
24255             description { state: "selected" 0.0;
24256                inherit: "default" 0.0;
24257                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
24258             }
24259             GENLIST_DESCRIPTION_FLIP_ENABLED
24260          }
24261          GENLIST_PART_FLIP
24262          GENLIST_PART_DISCLIP
24263       }
24264       programs {
24265          // signal: elm,state,%s,active
24266          //   a "check" item named %s went active
24267          // signal: elm,state,%s,passive
24268          //   a "check" item named %s went passive
24269          // default is passive
24270          program { name: "go_active";
24271             signal: "elm,state,selected";
24272             source: "elm";
24273             action: STATE_SET "selected" 0.0;
24274             target: "bg_image";
24275             target: "elm.text.1";
24276             target: "elm.text.2";
24277          }
24278          program { name: "go_passive";
24279             signal: "elm,state,unselected";
24280             source: "elm";
24281             action: STATE_SET "default" 0.0;
24282             target: "bg_image";
24283             target: "elm.text.1";
24284             target: "elm.text.2";
24285             transition: LINEAR 0.1;
24286          }
24287          program { name: "go_read";
24288             signal: "elm,state,read";
24289             source: "elm";
24290             action: STATE_SET "read" 0.0;
24291             target: "elm.text.1";
24292          }
24293          program { name: "go_unread";
24294             signal: "elm,state,unread";
24295             source: "elm";
24296             action: STATE_SET "default" 0.0;
24297             target: "elm.text.1";
24298          }
24299       }
24300    }
24301    // 2.2.2.41
24302    group { name: "elm/genlist/item/4text.2/default";
24303       alias: "elm/genlist/item_odd/4text.2/default";
24304       alias: "elm/genlist/item_compress/4text.2/default";
24305       alias: "elm/genlist/item_compress_odd/4text.2/default";
24306       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
24307       data.item: "stacking" "above";
24308       data.item: "selectraise" "on";
24309       data.item: "flips" "elm.flip.content";
24310       parts {
24311          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
24312          GENLIST_PART_BG_IMAGE
24313          GENLIST_PART_BOTTOM_LINE
24314          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
24315          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
24316          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
24317          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
24318
24319          part { name: "elm.text.1";
24320             clip_to: "disclip";
24321             type: TEXT;
24322             scale: 1;
24323             description { state: "default" 0.0;
24324                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
24325                fixed: 0 1;
24326                min: 0 GENLIST_SIZE_SLIDE_60_INC;
24327                rel1 { relative: 1.0 1.0;
24328                   to_x: "elm.padding.left";
24329                   to_y: "elm.padding.top";
24330                }
24331                rel2 { relative: 0.0 1.0;
24332                   to_x: "elm.padding.text1.right";
24333                   to_y: "elm.padding.text1.right";
24334                }
24335                text {
24336                   font: "SLP:style=Roman";
24337                   size: GENLIST_FONT_44_INC;
24338                   min: 0 1;
24339                   align: 0.0 0.5;
24340                   text_class: "list_item";
24341                }
24342             }
24343             description { state: "read" 0.0;
24344                inherit: "default" 0.0;
24345                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_READ_COLOR_INC;
24346             }
24347             description { state: "selected" 0.0;
24348                inherit: "default" 0.0;
24349                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_FOCUS_COLOR_INC;
24350             }
24351             GENLIST_DESCRIPTION_FLIP_ENABLED
24352          }
24353          part { name: "elm.padding.text1.right";
24354             clip_to: "disclip";
24355             type: RECT;
24356             scale: 1;
24357             description { state: "default" 0.0;
24358                fixed: 1 1 ;
24359                align: 1.0 0.0;
24360                visible: 0;
24361                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24362                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24363                rel1 { relative: 0.0 1.0;
24364                   to_x: "elm.text.2";
24365                   to_y: "elm.padding.top";
24366                }
24367                rel2 { relative: 0.0 1.0;
24368                   to_x: "elm.text.2";
24369                   to_y: "elm.padding.top";
24370                }
24371             }
24372          }
24373          part { name: "elm.text.2";
24374             clip_to: "disclip";
24375             type: TEXT;
24376             scale: 1;
24377             description { state: "default" 0.0;
24378                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
24379                fixed: 0 1;
24380                align: 1.0 1.0;
24381                min: 0 GENLIST_SIZE_SLIDE_60_INC;
24382                rel1 { relative: 0.0 1.0;
24383                   to_x: "elm.padding.right";
24384                   to_y: "elm.padding.bottom";
24385                }
24386                rel2 { relative: 0.0 1.0;
24387                  to_x: "elm.padding.right";
24388                  to_y: "elm.padding.bottom";
24389                }
24390                text {
24391                   font: "SLP:style=Medium";
24392                   size: GENLIST_FONT_32_INC;
24393                   min: 1 1;
24394                   align: 0.5 0.5;
24395                   text_class: "slp_medium";
24396               }
24397             }
24398             description { state: "selected" 0.0;
24399                inherit: "default" 0.0;
24400                color: GENLIST_PART_FONT_LIST_SUB_TEXT_FOCUS_COLOR_INC;
24401             }
24402             GENLIST_DESCRIPTION_FLIP_ENABLED
24403          }
24404          part { name: "elm.text.4";
24405             clip_to: "disclip";
24406             type: TEXT;
24407             scale: 1;
24408             description { state: "default" 0.0;
24409                color: GENLIST_PART_FONT_LIST_MESSAGE_TEXT_COLOR_INC;
24410                fixed: 0 1;
24411                align: 1.0 0.0;
24412                min: 0 GENLIST_SIZE_48_INC;
24413                rel1 { relative: 0 1;
24414                   to_x: "elm.padding.right";
24415                   to_y: "elm.padding.top";
24416                }
24417                rel2 { relative: 0 0;
24418                   to_x: "elm.padding.right";
24419                   to_y: "elm.text.2";
24420                }
24421                text {
24422                   font: "SLP:style=Medium";
24423                   size: GENLIST_FONT_32_INC;
24424                   min: 1 1;
24425                   align: 0.5 0.5;
24426                   text_class: "slp_medium";
24427                }
24428             }
24429             GENLIST_DESCRIPTION_FLIP_ENABLED
24430          }
24431          part { name: "elm.padding.text3.right";
24432             clip_to: "disclip";
24433             type: RECT;
24434             scale: 1;
24435             description { state: "default" 0.0;
24436                fixed: 1 1;
24437                align: 1.0 0.0;
24438                visible: 0;
24439                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24440                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24441                rel1 { relative: 0 0;
24442                   to_x: "elm.text.4";
24443                   to_y: "elm.text.4";
24444                }
24445                rel2 { relative: 0 0;
24446                   to_x: "elm.text.4";
24447                   to_y: "elm.padding.bottom";
24448                }
24449             }
24450          }
24451          part { name: "elm.text.3";
24452             clip_to: "disclip";
24453             type: TEXT;
24454             scale: 1;
24455             description { state: "default" 0.0;
24456                color: GENLIST_PART_FONT_NAME_TEXT_COLOR_INC;
24457                fixed: 0 1;
24458                align: 0.0 0.0;
24459                min: 0 GENLIST_SIZE_48_INC;
24460                rel1 { relative: 1 1;
24461                   to_x: "elm.padding.left";
24462                   to_y: "elm.text.1";
24463                }
24464                rel2 { relative: 0 1;
24465                   to_x: "elm.padding.text3.right";
24466                   to_y: "elm.padding.text3.right";
24467                }
24468                text {
24469                   font: "SLP:style=Medium";
24470                   size: GENLIST_FONT_32_INC;
24471                   min: 0 1;
24472                   align: 0.0 0.5;
24473                   text_class: "slp_medium";
24474                }
24475             }
24476             description { state: "selected" 0.0;
24477                inherit: "default" 0.0;
24478                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
24479             }
24480             GENLIST_DESCRIPTION_FLIP_ENABLED
24481          }
24482          GENLIST_PART_FLIP
24483          GENLIST_PART_DISCLIP
24484       }
24485       programs {
24486          // signal: elm,state,%s,active
24487          //   a "check" item named %s went active
24488          // signal: elm,state,%s,passive
24489          //   a "check" item named %s went passive
24490          // default is passive
24491          program { name: "go_active";
24492             signal: "elm,state,selected";
24493             source: "elm";
24494             action: STATE_SET "selected" 0.0;
24495             target: "bg_image";
24496             target: "elm.text.1";
24497             target: "elm.text.2";
24498          }
24499          program { name: "go_passive";
24500             signal: "elm,state,unselected";
24501             source: "elm";
24502             action: STATE_SET "default" 0.0;
24503             target: "bg_image";
24504             target: "elm.text.1";
24505             target: "elm.text.2";
24506             transition: LINEAR 0.1;
24507          }
24508          program { name: "go_read";
24509             signal: "elm,state,read";
24510             source: "elm";
24511             action: STATE_SET "read" 0.0;
24512             target: "elm.text.1";
24513          }
24514          program { name: "go_unread";
24515             signal: "elm,state,unread";
24516             source: "elm";
24517             action: STATE_SET "default" 0.0;
24518             target: "elm.text.1";
24519          }
24520       }
24521    }
24522    // 2.2.2.42
24523    group { name: "elm/genlist/item/3text.1icon.3/default";
24524       alias: "elm/genlist/item_odd/3text.1icon.3/default";
24525       alias: "elm/genlist/item_compress/3text.1icon.3/default";
24526       alias: "elm/genlist/item_compress_odd/3text.1icon.3/default";
24527       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
24528       data.item: "contents" "elm.icon.1";
24529       data.item: "stacking" "above";
24530       data.item: "selectraise" "on";
24531       data.item: "flips" "elm.flip.content";
24532       parts {
24533          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
24534          GENLIST_PART_BG_IMAGE
24535          GENLIST_PART_BOTTOM_LINE
24536          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
24537          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
24538          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
24539          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
24540
24541          part { name: "elm.text.1";
24542             clip_to: "disclip";
24543             type: TEXT;
24544             scale: 1;
24545             description { state: "default" 0.0;
24546                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
24547                fixed: 0 1;
24548                min: 0 GENLIST_SIZE_SLIDE_60_INC;
24549                rel1 { relative: 1.0 1.0;
24550                   to_x: "elm.padding.left";
24551                   to_y: "elm.padding.top";
24552                }
24553                rel2 { relative: 0.0 1.0;
24554                   to_x: "elm.padding.text1.right";
24555                   to_y: "elm.padding.text1.right";
24556                }
24557                text {
24558                   font: "SLP:style=Roman";
24559                   size: GENLIST_FONT_44_INC;
24560                   min: 0 1;
24561                   align: 0.0 0.5;
24562                   text_class: "list_item";
24563                }
24564             }
24565             description { state: "read" 0.0;
24566                inherit: "default" 0.0;
24567                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_READ_COLOR_INC;
24568             }
24569             description { state: "selected" 0.0;
24570                inherit: "default" 0.0;
24571                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_FOCUS_COLOR_INC;
24572             }
24573             GENLIST_DESCRIPTION_FLIP_ENABLED
24574          }
24575          part { name: "elm.padding.text1.right";
24576             clip_to: "disclip";
24577             type: RECT;
24578             scale: 1;
24579             description { state: "default" 0.0;
24580                fixed: 1 1 ;
24581                align: 1.0 0.0;
24582                visible: 0;
24583                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24584                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24585                rel1 { relative: 0.0 1.0;
24586                   to_x: "elm.icon.1";
24587                   to_y: "elm.padding.top";
24588                }
24589                rel2 { relative: 0.0 1.0;
24590                   to_x: "elm.icon.1";
24591                   to_y: "elm.padding.top";
24592                }
24593             }
24594          }
24595          part { name: "elm.text.2";
24596             clip_to: "disclip";
24597             type: TEXT;
24598             scale: 1;
24599             description { state: "default" 0.0;
24600                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
24601                fixed: 0 1;
24602                align: 1.0 1.0;
24603                min: 0 GENLIST_SIZE_SLIDE_60_INC;
24604                rel1 { relative: 0.0 1.0;
24605                   to_x: "elm.padding.right";
24606                   to_y: "elm.padding.bottom";
24607                }
24608                rel2 { relative: 0.0 1.0;
24609                  to_x: "elm.padding.right";
24610                  to_y: "elm.padding.bottom";
24611                }
24612                text {
24613                   font: "SLP:style=Medium";
24614                   size: GENLIST_FONT_32_INC;
24615                   min: 1 1;
24616                   align: 0.5 0.5;
24617                   text_class: "slp_medium";
24618               }
24619             }
24620             description { state: "selected" 0.0;
24621                inherit: "default" 0.0;
24622                color: GENLIST_PART_FONT_LIST_SUB_TEXT_FOCUS_COLOR_INC;
24623             }
24624
24625             GENLIST_DESCRIPTION_FLIP_ENABLED
24626          }
24627          part { name: "elm.padding.icon1.right";
24628             clip_to: "disclip";
24629             type: RECT;
24630             scale: 1;
24631             description { state: "default" 0.0;
24632                fixed: 1 1;
24633                align: 1.0 0.0;
24634                visible: 0;
24635                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24636                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24637                rel1 { relative: 0 1;
24638                   to_x: "elm.padding.right";
24639                   to_y: "elm.padding.top";
24640                }
24641                rel2 { relative: 0 0;
24642                   to_x: "elm.padding.right";
24643                   to_y: "elm.text.2";
24644                }
24645             }
24646          }
24647          part { name: "elm.icon.1";
24648             clip_to: "disclip";
24649             type: SWALLOW;
24650             scale: 1;
24651             description { state: "default" 0.0;
24652                color: 0 255 255 255;
24653                fixed: 1 1;
24654                align: 1.0 0.0;
24655                min: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
24656                max: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
24657                rel1 { relative: 0 0;
24658                   to_x: "elm.padding.icon1.right";
24659                   to_y: "elm.padding.icon1.right";
24660                }
24661                rel2 { relative: 0 1;
24662                   to_x: "elm.padding.icon1.right";
24663                   to_y: "elm.padding.icon1.right";
24664                }
24665             }
24666          }
24667          part { name: "elm.padding.text3.right";
24668             clip_to: "disclip";
24669             type: RECT;
24670             scale: 1;
24671             description { state: "default" 0.0;
24672                fixed: 1 1;
24673                align: 1.0 0.0;
24674                visible: 0;
24675                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24676                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24677                rel1 { relative: 0 0;
24678                   to_x: "elm.text.2";
24679                   to_y: "elm.padding.top";
24680                }
24681                rel2 { relative: 0 0;
24682                   to_x: "elm.text.2";
24683                   to_y: "elm.icon.1";
24684                }
24685             }
24686          }
24687          part { name: "elm.text.3";
24688             clip_to: "disclip";
24689             type: TEXT;
24690             scale: 1;
24691             description { state: "default" 0.0;
24692                color: GENLIST_PART_FONT_NAME_TEXT_COLOR_INC;
24693                fixed: 0 1;
24694                align: 0.0 0.0;
24695                min: 0 GENLIST_SIZE_48_INC;
24696                rel1 { relative: 1 1;
24697                   to_x: "elm.padding.left";
24698                   to_y: "elm.text.1";
24699                }
24700                rel2 { relative: 0 1;
24701                   to_x: "elm.padding.text3.right";
24702                   to_y: "elm.padding.text3.right";
24703                }
24704                text {
24705                   font: "SLP:style=Medium";
24706                   size: GENLIST_FONT_32_INC;
24707                   min: 0 1;
24708                   align: 0.0 0.5;
24709                   text_class: "slp_medium";
24710                }
24711             }
24712             description { state: "selected" 0.0;
24713                inherit: "default" 0.0;
24714                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
24715             }
24716             GENLIST_DESCRIPTION_FLIP_ENABLED
24717          }
24718          GENLIST_PART_FLIP
24719          GENLIST_PART_DISCLIP
24720       }
24721       programs {
24722          // signal: elm,state,%s,active
24723          //   a "check" item named %s went active
24724          // signal: elm,state,%s,passive
24725          //   a "check" item named %s went passive
24726          // default is passive
24727          program { name: "go_active";
24728             signal: "elm,state,selected";
24729             source: "elm";
24730             action: STATE_SET "selected" 0.0;
24731             target: "bg_image";
24732             target: "elm.text.1";
24733             target: "elm.text.2";
24734          }
24735          program { name: "go_passive";
24736             signal: "elm,state,unselected";
24737             source: "elm";
24738             action: STATE_SET "default" 0.0;
24739             target: "bg_image";
24740             target: "elm.text.1";
24741             target: "elm.text.2";
24742             transition: LINEAR 0.1;
24743          }
24744          program { name: "go_read";
24745             signal: "elm,state,read";
24746             source: "elm";
24747             action: STATE_SET "read" 0.0;
24748             target: "elm.text.1";
24749          }
24750          program { name: "go_unread";
24751             signal: "elm,state,unread";
24752             source: "elm";
24753             action: STATE_SET "default" 0.0;
24754             target: "elm.text.1";
24755          }
24756       }
24757    }
24758    // 2.2.2.44
24759    group { name: "elm/genlist/item/4text.1icon.3/default";
24760       alias: "elm/genlist/item_odd/4text.1icon.3/default";
24761       alias: "elm/genlist/item_compress/4text.1icon.3/default";
24762       alias: "elm/genlist/item_compress_odd/4text.1icon.3/default";
24763       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3 elm.text.4";
24764       data.item: "stacking" "above";
24765       data.item: "selectraise" "on";
24766       data.item: "contents" "elm.icon.1";
24767       data.item: "flips" "elm.flip.content";
24768       images {
24769          image: "00_winset_list_bubble_bg.png" COMP;
24770       }
24771       parts {
24772          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
24773          GENLIST_PART_BG_IMAGE
24774          GENLIST_PART_BOTTOM_LINE
24775          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
24776          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
24777          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
24778          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
24779          part { name: "elm.icon.1";
24780             clip_to: "disclip";
24781             type: SWALLOW;
24782             scale: 1;
24783             description { state: "default" 0.0;
24784                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
24785                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
24786                fixed: 1 1;
24787                rel1 {
24788                   relative: 1.0 0.0;
24789                   to_x: "elm.padding.left";
24790                }
24791                rel2 {
24792                   relative: 1.0 1.0;
24793                   to_x: "elm.padding.left";
24794                }
24795                align: 0.0 0.5;
24796             }
24797             GENLIST_DESCRIPTION_FLIP_ENABLED
24798          }
24799          part { name: "elm.text.1";
24800             clip_to: "disclip";
24801             type: TEXT;
24802             scale: 1;
24803             description { state: "default" 0.0;
24804                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
24805                fixed: 0 1;
24806                min: 0 GENLIST_SIZE_SLIDE_60_INC;
24807                rel1 { relative: 1.0 1.0;
24808                   to_x: "elm.icon.1";
24809                   to_y: "elm.padding.top";
24810                }
24811                rel2 { relative: 0.0 1.0;
24812                   to_x: "elm.padding.text1.right";
24813                   to_y: "elm.padding.text1.right";
24814                }
24815                text {
24816                   font: "SLP:style=Roman";
24817                   size: GENLIST_FONT_44_INC;
24818                   min: 0 1;
24819                   align: 0.0 0.5;
24820                   text_class: "list_item";
24821                }
24822             }
24823             description { state: "read" 0.0;
24824                inherit: "default" 0.0;
24825                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_READ_COLOR_INC;
24826             }
24827             description { state: "selected" 0.0;
24828                inherit: "default" 0.0;
24829                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_FOCUS_COLOR_INC;
24830             }
24831             GENLIST_DESCRIPTION_FLIP_ENABLED
24832          }
24833          part { name: "elm.padding.text1.right";
24834             clip_to: "disclip";
24835             type: RECT;
24836             scale: 1;
24837             description { state: "default" 0.0;
24838                fixed: 1 1 ;
24839                align: 1.0 0.0;
24840                visible: 0;
24841                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24842                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
24843                rel1 { relative: 0.0 1.0;
24844                   to_x: "elm.text.2";
24845                   to_y: "elm.padding.top";
24846                }
24847                rel2 { relative: 0.0 1.0;
24848                   to_x: "elm.text.2";
24849                   to_y: "elm.padding.top";
24850                }
24851             }
24852          }
24853          part { name: "elm.text.2";
24854             clip_to: "disclip";
24855             type: TEXT;
24856             scale: 1;
24857             description { state: "default" 0.0;
24858                color: GENLIST_PART_FONT_LIST_SUB_TEXT_COLOR_INC;
24859                fixed: 0 1;
24860                align: 1.0 1.0;
24861                min: 0 GENLIST_SIZE_SLIDE_60_INC;
24862                rel1 { relative: 0.0 1.0;
24863                   to_x: "elm.padding.right";
24864                   to_y: "elm.padding.bottom";
24865                }
24866                rel2 { relative: 0.0 1.0;
24867                  to_x: "elm.padding.right";
24868                  to_y: "elm.padding.bottom";
24869                }
24870                text {
24871                   font: "SLP:style=Medium";
24872                   size: GENLIST_FONT_32_INC;
24873                   min: 1 1;
24874                   align: 0.5 0.5;
24875                   text_class: "slp_medium";
24876                }
24877             }
24878             description { state: "selected" 0.0;
24879                inherit: "default" 0.0;
24880                color: GENLIST_PART_FONT_LIST_SUB_TEXT_FOCUS_COLOR_INC;
24881             }
24882             GENLIST_DESCRIPTION_FLIP_ENABLED
24883          }
24884          part { name: "elm.bubble";
24885             type: IMAGE;
24886             description{ state: "default" 0.0;
24887                fixed: 0 1;
24888                min: GENLIST_SIZE_48_INC GENLIST_SIZE_48_INC;
24889                rel1 { relative: 0 0;
24890                   to_x: "elm.padding.bubble.text4.left";
24891                   to_y: "elm.padding.bubble.text4.left";
24892                }
24893                rel2 { relative: 1 1;
24894                   to_x: "elm.padding.bubble.text4.right";
24895                   to_y: "elm.padding.bubble.text4.right";
24896                }
24897                image {
24898                   normal: "00_winset_list_bubble_bg.png";
24899                   border:  6 6 0 0;
24900                }
24901             }
24902          }
24903          part { name: "elm.padding.bubble.text4.left";
24904             type: RECT;
24905             scale: 1;
24906             description { state: "default" 0.0;
24907                fixed: 1 1;
24908                align: 1 0;
24909                visible: 0;
24910                min: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
24911                max: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
24912                rel1 { relative: 0 1;
24913                   to_x: "elm.text.4";
24914                   to_y: "elm.padding.top";
24915                }
24916                rel2 { relative: 0 0;
24917                   to_x: "elm.text.4";
24918                   to_y: "elm.text.2";
24919                }
24920
24921             }
24922          }
24923          part { name: "elm.padding.bubble.text4.right";
24924             type: RECT;
24925             scale: 1;
24926             description { state: "default" 0.0;
24927                fixed: 1 1;
24928                align: 1 0;
24929                visible: 0;
24930                min: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
24931                max: GENLIST_SIZE_10_INC GENLIST_SIZE_48_INC;
24932                rel1 { relative: 0 1;
24933                   to_x: "elm.padding.right";
24934                   to_y: "elm.padding.top";
24935                }
24936                rel2 { relative: 0 0;
24937                   to_x: "elm.padding.right";
24938                   to_y: "elm.text.2";
24939                }
24940             }
24941          }
24942          part { name: "elm.text.4";
24943             clip_to: "disclip";
24944             type: TEXT;
24945             scale: 1;
24946             description { state: "default" 0.0;
24947                color: GENLIST_PART_FONT_LIST_BUBBLE_TEXT_COLOR_INC;
24948                fixed: 0 1;
24949                align: 1.0 0.0;
24950                min: GENLIST_SIZE_28_INC GENLIST_SIZE_48_INC;
24951                rel1 { relative: 0 1;
24952                   to_x: "elm.padding.bubble.text4.right";
24953                   to_y: "elm.padding.top";
24954                }
24955                rel2 { relative: 0 0;
24956                   to_x: "elm.padding.bubble.text4.right";
24957                   to_y: "elm.text.2";
24958                }
24959                text {
24960                   font: "SLP:style=Medium";
24961                   size: GENLIST_FONT_32_INC;
24962                   min: 1 1;
24963                   align: 0.5 0.5;
24964                   text_class: "slp_medium";
24965                }
24966             }
24967             GENLIST_DESCRIPTION_FLIP_ENABLED
24968          }
24969          part { name: "elm.padding.text3.right";
24970             clip_to: "disclip";
24971             type: RECT;
24972             scale: 1;
24973             description { state: "default" 0.0;
24974                fixed: 1 1;
24975                align: 1.0 0.0;
24976                visible: 0;
24977                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24978                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
24979                rel1 { relative: 0 0;
24980                   to_x: "elm.padding.bubble.text4.left";
24981                   to_y: "elm.padding.bubble.text4.left";
24982                }
24983                rel2 { relative: 0 0;
24984                   to_x: "elm.padding.bubble.text4.left";
24985                   to_y: "elm.padding.bottom";
24986                }
24987             }
24988          }
24989          part { name: "elm.text.3";
24990             clip_to: "disclip";
24991             type: TEXT;
24992             scale: 1;
24993             description { state: "default" 0.0;
24994                color: GENLIST_PART_FONT_NAME_TEXT_COLOR_INC;
24995                fixed: 0 1;
24996                align: 0.0 0.0;
24997                min: 0 GENLIST_SIZE_48_INC;
24998                rel1 { relative: 1 1;
24999                   to_x: "elm.icon.1";
25000                   to_y: "elm.text.1";
25001                }
25002                rel2 { relative: 0 1;
25003                   to_x: "elm.padding.text3.right";
25004                   to_y: "elm.padding.text3.right";
25005                }
25006                text {
25007                   font: "SLP:style=Medium";
25008                   size: GENLIST_FONT_32_INC;
25009                   min: 0 1;
25010                   align: 0.0 0.5;
25011                   text_class: "slp_medium";
25012                }
25013             }
25014             description { state: "selected" 0.0;
25015                inherit: "default" 0.0;
25016                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
25017             }
25018             GENLIST_DESCRIPTION_FLIP_ENABLED
25019          }
25020          GENLIST_PART_FLIP
25021          GENLIST_PART_DISCLIP
25022       }
25023       programs {
25024          // signal: elm,state,%s,active
25025          //   a "check" item named %s went active
25026          // signal: elm,state,%s,passive
25027          //   a "check" item named %s went passive
25028          // default is passive
25029          program { name: "go_active";
25030             signal: "elm,state,selected";
25031             source: "elm";
25032             action: STATE_SET "selected" 0.0;
25033             target: "bg_image";
25034             target: "elm.text.1";
25035             target: "elm.text.2";
25036          }
25037          program { name: "go_passive";
25038             signal: "elm,state,unselected";
25039             source: "elm";
25040             action: STATE_SET "default" 0.0;
25041             target: "bg_image";
25042             target: "elm.text.1";
25043             target: "elm.text.2";
25044             transition: LINEAR 0.1;
25045          }
25046          program { name: "go_read";
25047             signal: "elm,state,read";
25048             source: "elm";
25049             action: STATE_SET "read" 0.0;
25050             target: "elm.text.1";
25051          }
25052          program { name: "go_unread";
25053             signal: "elm,state,unread";
25054             source: "elm";
25055             action: STATE_SET "default" 0.0;
25056             target: "elm.text.1";
25057          }
25058       }
25059    }
25060    // 2.2.2.43
25061    group { name: "elm/genlist/item/2text.4icon.1/default";
25062       alias: "elm/genlist/item_odd/2text.4icon.1/default";
25063       alias: "elm/genlist/item_compress/2text.4icon.1/default";
25064       alias: "elm/genlist/item_compress_odd/2text.4icon.1/default";
25065       data.item: "texts" "elm.text.1 elm.text.2";
25066       data.item: "stacking" "above";
25067       data.item: "selectraise" "on";
25068       data.item: "contents" "elm.icon.1 elm.icon.2 elm.icon.3 elm.icon.4";
25069       data.item: "flips" "elm.flip.content";
25070       parts {
25071          GENLIST_PART_BASE( GENLIST_HEIGHT_129_INC )
25072          GENLIST_PART_BG_IMAGE
25073          GENLIST_PART_BOTTOM_LINE
25074          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_10_INC )
25075          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_10_INC )
25076          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
25077          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
25078          part { name: "elm.icon.1";
25079             clip_to: "disclip";
25080             type: SWALLOW;
25081             scale: 1;
25082             description { state: "default" 0.0;
25083                min: GENLIST_SIZE_56_INC GENLIST_SIZE_60_INC;
25084                max: GENLIST_SIZE_56_INC GENLIST_SIZE_60_INC;
25085                fixed: 1 1;
25086                rel1 {
25087                   relative: 0.0 1.0;
25088                   to_x: "elm.padding.right";
25089                   to_y: "elm.padding.top";
25090                }
25091                rel2 {
25092                   relative: 0.0 0.0;
25093                   to_x: "elm.padding.right";
25094                   to_y: "elm.padding.bottom";
25095                }
25096                align: 1.0 0.5;
25097             }
25098             GENLIST_DESCRIPTION_FLIP_ENABLED
25099          }
25100          part { name: "elm.padding.text1.right";
25101             clip_to: "disclip";
25102             type: RECT;
25103             scale: 1;
25104             description { state: "default" 0.0;
25105                fixed: 1 1 ;
25106                align: 1.0 0.0;
25107                visible: 0;
25108                min: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
25109                max: GENLIST_PADDING_16_INC GENLIST_SIZE_SLIDE_60_INC;
25110                rel1 { relative: 0.0 1.0;
25111                   to_x: "elm.icon.1";
25112                   to_y: "elm.padding.top";
25113                }
25114                rel2 { relative: 0.0 1.0;
25115                   to_x: "elm.icon.1";
25116                   to_y: "elm.padding.top";
25117                }
25118             }
25119          }
25120          part { name: "elm.text.1";
25121             clip_to: "disclip";
25122             type: TEXT;
25123             scale: 1;
25124             description { state: "default" 0.0;
25125                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
25126                fixed: 0 1;
25127                min: 0 GENLIST_SIZE_SLIDE_60_INC;
25128                rel1 { relative: 1.0 1.0;
25129                   to_x: "elm.padding.left";
25130                   to_y: "elm.padding.top";
25131                }
25132                rel2 { relative: 0.0 1.0;
25133                   to_x: "elm.padding.text1.right";
25134                   to_y: "elm.padding.text1.right";
25135                }
25136                text {
25137                   font: "SLP:style=Roman";
25138                   size: GENLIST_FONT_44_INC;
25139                   min: 0 1;
25140                   align: 0.0 0.5;
25141                   text_class: "list_item";
25142                }
25143             }
25144             description { state: "read" 0.0;
25145                inherit: "default" 0.0;
25146                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_READ_COLOR_INC;
25147             }
25148             description { state: "selected" 0.0;
25149                inherit: "default" 0.0;
25150                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_FOCUS_COLOR_INC;
25151             }
25152             GENLIST_DESCRIPTION_FLIP_ENABLED
25153          }
25154          part { name: "elm.padding.icon2.right";
25155             clip_to: "disclip";
25156             type: RECT;
25157             scale: 1;
25158             description { state: "default" 0.0;
25159                fixed: 1 1;
25160                align: 1.0 0.0;
25161                visible: 0;
25162                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25163                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25164                rel1 { relative: 0 1;
25165                   to_x: "elm.icon.1";
25166                   to_y: "elm.text.1";
25167                }
25168                rel2 { relative: 0 0;
25169                   to_x: "elm.icon.1";
25170                   to_y: "elm.padding.bottom";
25171                }
25172             }
25173          }
25174          part { name: "elm.icon.2";
25175             clip_to: "disclip";
25176             type: SWALLOW;
25177             scale: 1;
25178             description { state: "default" 0.0;
25179                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
25180                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
25181                fixed: 1 1;
25182                rel1 {
25183                   relative: 0.0 1.0;
25184                   to_x: "elm.padding.icon2.right";
25185                   to_y: "elm.text.1";
25186                }
25187                rel2 {
25188                   relative: 0.0 0.0;
25189                   to_x: "elm.padding.icon2.right";
25190                   to_y: "elm.padding.bottom";
25191                }
25192                align: 1.0 0.5;
25193             }
25194             GENLIST_DESCRIPTION_FLIP_ENABLED
25195          }
25196          part { name: "elm.padding.icon3.right";
25197             clip_to: "disclip";
25198             type: RECT;
25199             scale: 1;
25200             description { state: "default" 0.0;
25201                fixed: 1 1;
25202                align: 1.0 0.0;
25203                visible: 0;
25204                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25205                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25206                rel1 { relative: 0 1;
25207                   to_x: "elm.icon.2";
25208                   to_y: "elm.text.1";
25209                }
25210                rel2 { relative: 0 0;
25211                   to_x: "elm.icon.2";
25212                   to_y: "elm.padding.bottom";
25213                }
25214             }
25215          }
25216          part { name: "elm.icon.3";
25217             clip_to: "disclip";
25218             type: SWALLOW;
25219             scale: 1;
25220             description { state: "default" 0.0;
25221                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
25222                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
25223                fixed: 1 1;
25224                rel1 {
25225                   relative: 0.0 1.0;
25226                   to_x: "elm.padding.icon3.right";
25227                   to_y: "elm.text.1";
25228                }
25229                rel2 {
25230                   relative: 0.0 0.0;
25231                   to_x: "elm.padding.icon3.right";
25232                   to_y: "elm.padding.bottom";
25233                }
25234                align: 1.0 0.5;
25235             }
25236             GENLIST_DESCRIPTION_FLIP_ENABLED
25237          }
25238          part { name: "elm.padding.icon4.right";
25239             clip_to: "disclip";
25240             type: RECT;
25241             scale: 1;
25242             description { state: "default" 0.0;
25243                fixed: 1 1;
25244                align: 1.0 0.0;
25245                visible: 0;
25246                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25247                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25248                rel1 { relative: 0 1;
25249                   to_x: "elm.icon.3";
25250                   to_y: "elm.text.1";
25251                }
25252                rel2 { relative: 0 0;
25253                   to_x: "elm.icon.3";
25254                   to_y: "elm.padding.bottom";
25255                }
25256             }
25257          }
25258          part { name: "elm.icon.4";
25259             clip_to: "disclip";
25260             type: SWALLOW;
25261             scale: 1;
25262             description { state: "default" 0.0;
25263                min: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
25264                max: GENLIST_ICON_SMALL_SIZE GENLIST_ICON_SMALL_SIZE;
25265                fixed: 1 1;
25266                rel1 {
25267                   relative: 0.0 1.0;
25268                   to_x: "elm.padding.icon4.right";
25269                   to_y: "elm.text.1";
25270                }
25271                rel2 {
25272                   relative: 0.0 0.0;
25273                   to_x: "elm.padding.icon4.right";
25274                   to_y: "elm.padding.bottom";
25275                }
25276                align: 1.0 0.5;
25277             }
25278             GENLIST_DESCRIPTION_FLIP_ENABLED
25279          }
25280          part { name: "elm.padding.text2.right";
25281             clip_to: "disclip";
25282             type: RECT;
25283             scale: 1;
25284             description { state: "default" 0.0;
25285                fixed: 1 1;
25286                align: 1.0 0.0;
25287                visible: 0;
25288                min: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25289                max: GENLIST_PADDING_16_INC GENLIST_SIZE_48_INC;
25290                rel1 { relative: 0 1;
25291                   to_x: "elm.icon.4";
25292                   to_y: "elm.text.1";
25293                }
25294                rel2 { relative: 0 0;
25295                   to_x: "elm.icon.4";
25296                   to_y: "elm.padding.bottom";
25297                }
25298             }
25299          }
25300          part { name: "elm.text.2";
25301             clip_to: "disclip";
25302             type: TEXT;
25303             scale: 1;
25304             description { state: "default" 0.0;
25305                color: GENLIST_PART_FONT_NAME_TEXT_COLOR_INC;
25306                fixed: 0 1;
25307                align: 0.0 0.0;
25308                min: 0 GENLIST_SIZE_48_INC;
25309                rel1 { relative: 1 1;
25310                   to_x: "elm.padding.left";
25311                   to_y: "elm.text.1";
25312                }
25313                rel2 { relative: 0 1;
25314                   to_x: "elm.padding.text2.right";
25315                   to_y: "elm.padding.text2.right";
25316                }
25317                text {
25318                   font: "SLP:style=Medium";
25319                   size: GENLIST_FONT_32_INC;
25320                   min: 0 1;
25321                   align: 0.0 0.5;
25322                   text_class: "slp_medium";
25323                }
25324             }
25325             description { state: "selected" 0.0;
25326                inherit: "default" 0.0;
25327                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
25328             }
25329             GENLIST_DESCRIPTION_FLIP_ENABLED
25330          }
25331          GENLIST_PART_FLIP
25332          GENLIST_PART_DISCLIP
25333       }
25334       programs {
25335          // signal: elm,state,%s,active
25336          //   a "check" item named %s went active
25337          // signal: elm,state,%s,passive
25338          //   a "check" item named %s went passive
25339          // default is passive
25340          program { name: "go_active";
25341             signal: "elm,state,selected";
25342             source: "elm";
25343             action: STATE_SET "selected" 0.0;
25344             target: "bg_image";
25345             target: "elm.text.1";
25346          }
25347          program { name: "go_passive";
25348             signal: "elm,state,unselected";
25349             source: "elm";
25350             action: STATE_SET "default" 0.0;
25351             target: "bg_image";
25352             target: "elm.text.1";
25353             transition: LINEAR 0.1;
25354          }
25355          program { name: "go_read";
25356             signal: "elm,state,read";
25357             source: "elm";
25358             action: STATE_SET "read" 0.0;
25359             target: "elm.text.1";
25360          }
25361          program { name: "go_unread";
25362             signal: "elm,state,unread";
25363             source: "elm";
25364             action: STATE_SET "default" 0.0;
25365             target: "elm.text.1";
25366          }
25367       }
25368    }
25369
25370    group { name: "elm/genlist/item/dialogue/bg/2text.1icon.2/default";
25371       alias: "elm/genlist/item_odd/dialogue/bg/2text.1icon.2/default";
25372       alias: "elm/genlist/item_compress/dialogue/bg/2text.1icon.2/default";
25373       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.1icon.2/default";
25374       alias: "elm/genlist/item/dialogue.2text.1icon.2/default";
25375       alias: "elm/genlist/item_odd/dialogue.2text.1icon.2/default";
25376       alias: "elm/genlist/item_compress/dialogue.2text.1icon.2/default";
25377       alias: "elm/genlist/item_compress_odd/dialogue.2text.1icon.2/default";
25378       alias: "elm/layout/dialogue/bg/2text.1icon.2";
25379       data.item: "stacking" "above";
25380       data.item: "selectraise" "on";
25381       data.item: "texts" "elm.text.1 elm.text.2";
25382       data.item: "contents" "elm.icon";
25383       data.item: "flips" "elm.flip.content.1 elm.flip.content.2";
25384       images {
25385           image: "00_list_thumbnail_bg.png" COMP;
25386       }
25387       parts {
25388          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_291_INC )
25389          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_32_INC )
25390          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_32_INC )
25391          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
25392          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
25393          part { name: "elm.icon.bg";
25394             scale: 1;
25395             description { state: "default" 0.0;
25396                min: GENLIST_SIZE_144_INC GENLIST_SIZE_90_INC;
25397                fixed: 1 1;
25398                align: 0.0 0.8;
25399                rel1 {
25400                   relative: 1.0 0.5;
25401                   to_x: "elm.padding.left";
25402                }
25403                rel2 {
25404                   relative: 1.0 0.5;
25405                   to_x: "elm.padding.left";
25406                }
25407                image {
25408                   normal: "00_list_thumbnail_bg.png";
25409                   border: 1 1 1 1;
25410                   border_scale: 1;
25411                   middle: NONE;
25412                }
25413             }
25414          }
25415          part { name: "elm.icon";
25416             type: SWALLOW;
25417             description { state: "default" 0.0;
25418                rel1.to: "elm.icon.bg";
25419                rel2.to: "elm.icon.bg";
25420             }
25421          }
25422          part { name: "elm.padding.icon.right";
25423             type: RECT;
25424             mouse_events: 0;
25425             scale: 1;
25426             description { state: "default" 0.0;
25427                min: GENLIST_PADDING_16_INC 0;
25428                fixed: 1 0;
25429                rel1 {
25430                    relative: 1.0 0.0;
25431                    to_x: "elm.icon.bg";
25432                }
25433                rel2.to_x: "elm.icon.bg";
25434                visible: 0;
25435                align: 0.0 0.5;
25436             }
25437          }
25438          part { name: "elm.padding.text.left";
25439             type: RECT;
25440             mouse_events: 0;
25441             scale: 1;
25442             description { state: "default" 0.0;
25443                min: GENLIST_PADDING_16_INC 0;
25444                fixed: 1 0;
25445                rel1 {
25446                    relative: 1.0 1.0;
25447                    to_x: "elm.padding.icon.right";
25448                    to_y: "elm.padding.top";
25449                }
25450                rel2.to_x: "elm.padding.icon.right";
25451                visible: 0;
25452                align: 1.0 0.5;
25453             }
25454          }
25455          part { name: "vertical_line";
25456             type: RECT;
25457             mouse_events: 0;
25458             description { state: "default" 0.0;
25459                min: 1 0;
25460                fixed: 1 0;
25461                color: GENLIST_PART_LIST_LINE_COLOR_INC;
25462                rel1 {
25463                   relative: 1.0 1.0;
25464                   to_x: "elm.padding.text.left";
25465                   to_y: "elm.padding.top";
25466                }
25467                rel2 {
25468                   relative: 1.0 0.0;
25469                   to_x: "elm.padding.text.left";
25470                   to_y: "elm.padding.bottom";
25471                }
25472                align: 0.0 0.5;
25473             }
25474          }
25475          part { name: "text_vertical_rect";
25476             type: RECT;
25477             mouse_events: 0;
25478             description { state: "default" 0.0;
25479                min: GENLIST_PADDING_16_INC 0;
25480                fixed: 1 0;
25481                color: GENLIST_DIALOGUE_GROUP_LEFT_BG_COLOR_INC;
25482                rel1 {
25483                   relative: 1.0 1.0;
25484                   to_x: "vertical_line";
25485                   to_y: "elm.padding.top";
25486                }
25487                rel2 {
25488                   relative: 1.0 0.0;
25489                   to_x: "elm.padding.text.left";
25490                   to_y: "elm.padding.bottom";
25491                }
25492                align: 0.0 0.5;
25493             }
25494          }
25495          part { name: "elm.padding.text.right";
25496             type: RECT;
25497             mouse_events: 0;
25498             scale: 1;
25499             description { state: "default" 0.0;
25500                min: GENLIST_PADDING_16_INC 0;
25501                fixed: 1 0;
25502                rel1 {
25503                    relative: 1.0 0.0;
25504                    to_x: "text_vertical_rect";
25505                }
25506                rel2.to_x: "text_vertical_rect";
25507                visible: 0;
25508                align: 0.0 0.5;
25509             }
25510          }
25511          part { name: "text_top_line";
25512             type: RECT;
25513             mouse_events: 0;
25514             description { state: "default" 0.0;
25515                min: 0 1;
25516                fixed: 0 1;
25517                color: GENLIST_PART_LIST_LINE_COLOR_INC;
25518                rel1 {
25519                   relative: 1.0 0.0;
25520                   to_x: "text_vertical_rect";
25521                   to_y: "text_vertical_rect";
25522                }
25523                rel2 {
25524                   relative: 1.0 0.0;
25525                   to_y: "text_vertical_rect";
25526                }
25527                align: 0.0 0.0;
25528             }
25529          }
25530          part { name: "text_center_line";
25531             type: RECT;
25532             mouse_events: 0;
25533             description { state: "default" 0.0;
25534                min: 0 1;
25535                fixed: 0 1;
25536                color: GENLIST_PART_LIST_LINE_COLOR_INC;
25537                rel1 {
25538                   relative: 1.0 0.5;
25539                   to_x: "text_vertical_rect";
25540                }
25541                rel2.relative: 1.0 0.5;
25542                align: 0.5 0.5;
25543             }
25544          }
25545          part { name: "text_bottom_line";
25546             type: RECT;
25547             mouse_events: 0;
25548             description { state: "default" 0.0;
25549                min: 0 1;
25550                fixed: 0 1;
25551                color: GENLIST_PART_LIST_LINE_COLOR_INC;
25552                rel1 {
25553                   relative: 1.0 1.0;
25554                   to_x: "text_vertical_rect";
25555                   to_y: "text_vertical_rect";
25556                }
25557                rel2 {
25558                   relative: 1.0 1.0;
25559                   to_y: "text_vertical_rect";
25560                }
25561                align: 0.0 1.0;
25562             }
25563          }
25564          part { name: "elm.text.bg.1";
25565             clip_to: "disclip";
25566             type: RECT;
25567             mouse_events: 0;
25568             scale: 1;
25569             description { state: "default" 0.0;
25570                rel1 {
25571                   relative: 1.0 1.0;
25572                   to_x: "text_vertical_rect";
25573                   to_y: "text_top_line";
25574                }
25575                rel2 {
25576                   relative: 1.0 0.0;
25577                   to_x: "elm.padding.right";
25578                   to_y: "text_center_line";
25579                }
25580                color: GENLIST_PART_BG_COLOR_INC;
25581             }
25582          }
25583          part { name: "elm.text.1";
25584             type: TEXT;
25585             mouse_events: 0;
25586             scale: 1;
25587             description { state: "default" 0.0;
25588                min: 0 GENLIST_SIZE_54_INC;
25589                rel1 {
25590                   relative: 1.0 0.0;
25591                   to_x: "elm.padding.text.right";
25592                   to_y: "elm.text.bg.1";
25593                }
25594                rel2 {
25595                   relative: 0.0 1.0;
25596                   to_x: "elm.padding.right";
25597                   to_y: "elm.text.bg.1";
25598                }
25599                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
25600                text {
25601                   font: "SLP:style=Roman";
25602                   size: GENLIST_FONT_48_INC;
25603                   align: 0.0 0.5;
25604                   text_class: "list_item";
25605                }
25606             }
25607             GENLIST_DESCRIPTION_FLIP_ENABLED
25608          }
25609          part { name: "elm.flip.content.1";
25610             clip_to: "disclip";
25611             type: SWALLOW;
25612             description { state: "default" 0.0;
25613                visible: 0;
25614                fixed: 1 1;
25615                rel1.to: "elm.text.1";
25616                rel2.to: "elm.text.1";
25617             }
25618             description { state: "flip_enabled" 0.0;
25619                inherit: "default" 0.0;
25620                visible: 1;
25621             }
25622          }
25623          part { name: "elm.text.bg.2";
25624             clip_to: "disclip";
25625             type: RECT;
25626             mouse_events: 0;
25627             scale: 1;
25628             description { state: "default" 0.0;
25629                rel1 {
25630                   relative: 1.0 1.0;
25631                   to_x: "text_vertical_rect";
25632                   to_y: "text_center_line";
25633                }
25634                rel2 {
25635                   relative: 1.0 0.0;
25636                   to_x: "elm.padding.right";
25637                   to_y: "text_bottom_line";
25638                }
25639                color: GENLIST_PART_BG_COLOR_INC;
25640             }
25641          }
25642          part { name: "elm.text.2";
25643             clip_to: "disclip";
25644             type: TEXT;
25645             mouse_events: 0;
25646             scale: 1;
25647             description { state: "default" 0.0;
25648                min: 0 GENLIST_SIZE_54_INC;
25649                rel1 {
25650                   relative: 1.0 0.0;
25651                   to_x: "elm.padding.text.right";
25652                   to_y: "elm.text.bg.2";
25653                }
25654                rel2 {
25655                   relative: 0.0 1.0;
25656                   to_x: "elm.padding.right";
25657                   to_y: "elm.text.bg.2";
25658                }
25659                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
25660                text {
25661                   font: "SLP:style=Roman";
25662                   size: GENLIST_FONT_48_INC;
25663                   align: 0.0 0.5;
25664                   text_class: "slp_roman";
25665                }
25666             }
25667             GENLIST_DESCRIPTION_FLIP_ENABLED
25668          }
25669          part { name: "elm.flip.content.2";
25670             clip_to: "disclip";
25671             type: SWALLOW;
25672             description { state: "default" 0.0;
25673                visible: 0;
25674                fixed: 1 1;
25675                rel1.to: "elm.text.2";
25676                rel2.to: "elm.text.2";
25677             }
25678             description { state: "flip_enabled" 0.0;
25679                inherit: "default" 0.0;
25680                visible: 1;
25681             }
25682          }
25683          GENLIST_PART_DISCLIP
25684       }
25685       programs {
25686          // signal: elm,state,%s,active
25687          //   a "check" item named %s went active
25688          // signal: elm,state,%s,passive
25689          //   a "check" item named %s went passive
25690          // default is passive
25691          /*program { name: "go_active";
25692             signal: "elm,state,selected";
25693             source: "elm";
25694             action: STATE_SET "selected" 0.0;
25695             target: "elm.text";
25696             target: "elm.text.sub";
25697          }
25698          program { name: "go_passive";
25699             signal: "elm,state,unselected";
25700             source: "elm";
25701             action: STATE_SET "default" 0.0;
25702             target: "elm.text";
25703             target: "elm.text.sub";
25704             transition: LINEAR 0.1;
25705          }*/
25706          program { name: "go_disabled";
25707             signal: "elm,state,disabled";
25708             source: "elm";
25709             action: STATE_SET "disabled" 0.0;
25710             target: "disclip";
25711          }
25712          program { name: "go_enabled";
25713             signal: "elm,state,enabled";
25714             source: "elm";
25715             action: STATE_SET "default" 0.0;
25716             target: "disclip";
25717          }
25718          program { name: "flip_enabled";
25719             signal: "elm,state,flip,enabled";
25720             source: "elm";
25721             action: STATE_SET "flip_enabled" 0.0;
25722             target: "elm.text.1";
25723             target: "elm.text.2";
25724             target: "elm.flip.content.1";
25725             target: "elm.flip.content.2";
25726          }
25727          program { name: "flip_disabled";
25728             signal: "elm,state,flip,disabled";
25729             source: "elm";
25730             action: STATE_SET "default" 0.0;
25731             target: "elm.text.1";
25732             target: "elm.text.2";
25733             target: "elm.flip.content.1";
25734             target: "elm.flip.content.2";
25735          }
25736       }
25737    }
25738
25739 /* non-bottom-border-area version of 2text.1icon.2 */
25740    group { name: "elm/genlist/item/dialogue/bg/2text.1icon.3/default";
25741       alias: "elm/genlist/item_odd/dialogue/bg/2text.1icon.3/default";
25742       alias: "elm/genlist/item_compress/dialogue/bg/2text.1icon.3/default";
25743       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.1icon.3/default";
25744       alias: "elm/layout/dialogue/bg/2text.1icon.3";
25745       data.item: "stacking" "above";
25746       data.item: "selectraise" "on";
25747       data.item: "texts" "elm.text.1 elm.text.2";
25748       data.item: "contents" "elm.icon";
25749       data.item: "flips" "elm.flip.content.1 elm.flip.content.2";
25750       images {
25751           image: "00_list_thumbnail_bg.png" COMP;
25752       }
25753       parts {
25754          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_260_INC )
25755          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_32_INC )
25756          GENLIST_PART_PADDING_BOTTOM( 0 )
25757          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
25758          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
25759          part { name: "elm.icon.bg";
25760             scale: 1;
25761             description { state: "default" 0.0;
25762                min: GENLIST_SIZE_144_INC GENLIST_SIZE_90_INC;
25763                fixed: 1 1;
25764                align: 0.0 0.7;
25765                rel1 {
25766                   relative: 1.0 0.5;
25767                   to_x: "elm.padding.left";
25768                }
25769                rel2 {
25770                   relative: 1.0 0.5;
25771                   to_x: "elm.padding.left";
25772                }
25773                image {
25774                   normal: "00_list_thumbnail_bg.png";
25775                   border: 1 1 1 1;
25776                   border_scale: 1;
25777                   middle: NONE;
25778                }
25779             }
25780          }
25781          part { name: "elm.icon";
25782             type: SWALLOW;
25783             description { state: "default" 0.0;
25784                rel1.to: "elm.icon.bg";
25785                rel2.to: "elm.icon.bg";
25786             }
25787          }
25788          part { name: "elm.padding.icon.right";
25789             type: RECT;
25790             mouse_events: 0;
25791             scale: 1;
25792             description { state: "default" 0.0;
25793                min: GENLIST_PADDING_16_INC 0;
25794                fixed: 1 0;
25795                rel1 {
25796                    relative: 1.0 0.0;
25797                    to_x: "elm.icon.bg";
25798                }
25799                rel2.to_x: "elm.icon.bg";
25800                visible: 0;
25801                align: 0.0 0.5;
25802             }
25803          }
25804          part { name: "elm.padding.text.left";
25805             type: RECT;
25806             mouse_events: 0;
25807             scale: 1;
25808             description { state: "default" 0.0;
25809                min: GENLIST_PADDING_16_INC 0;
25810                fixed: 1 0;
25811                rel1 {
25812                    relative: 1.0 1.0;
25813                    to_x: "elm.padding.icon.right";
25814                    to_y: "elm.padding.top";
25815                }
25816                rel2.to_x: "elm.padding.icon.right";
25817                visible: 0;
25818                align: 1.0 0.5;
25819             }
25820          }
25821          part { name: "vertical_line";
25822             type: RECT;
25823             mouse_events: 0;
25824             description { state: "default" 0.0;
25825                visible: 0;
25826                rel1 {
25827                   relative: 1.0 1.0;
25828                   to_x: "elm.padding.text.left";
25829                   to_y: "elm.padding.top";
25830                }
25831                rel2 {
25832                   relative: 1.0 0.0;
25833                   to_x: "elm.padding.text.left";
25834                   to_y: "elm.padding.bottom";
25835                }
25836             }
25837          }
25838          part { name: "text_vertical_rect";
25839             type: RECT;
25840             mouse_events: 0;
25841             scale: 1;
25842             description { state: "default" 0.0;
25843                min: GENLIST_SIZE_16_INC 0;
25844                fixed: 1 0;
25845                color: GENLIST_DIALOGUE_GROUP_LEFT_BG_COLOR_INC;
25846                rel1 {
25847                   relative: 1.0 1.0;
25848                   to_x: "vertical_line";
25849                   to_y: "elm.padding.top";
25850                }
25851                rel2 {
25852                   relative: 1.0 0.0;
25853                   to_x: "elm.padding.text.left";
25854                   to_y: "elm.padding.bottom";
25855                }
25856                align: 0.0 0.5;
25857             }
25858          }
25859          part { name: "elm.padding.text.right";
25860             type: RECT;
25861             mouse_events: 0;
25862             scale: 1;
25863             description { state: "default" 0.0;
25864                min: GENLIST_PADDING_16_INC 0;
25865                fixed: 1 0;
25866                rel1 {
25867                    relative: 1.0 0.0;
25868                    to_x: "text_vertical_rect";
25869                }
25870                rel2.to_x: "text_vertical_rect";
25871                visible: 0;
25872                align: 0.0 0.5;
25873             }
25874          }
25875          part { name: "text_top_line";
25876             type: RECT;
25877             mouse_events: 0;
25878             description { state: "default" 0.0;
25879                min: 0 1;
25880                fixed: 0 1;
25881                color: GENLIST_PART_LIST_LINE_COLOR_INC;
25882                rel1 {
25883                   relative: 1.0 0.0;
25884                   to_x: "text_vertical_rect";
25885                   to_y: "text_vertical_rect";
25886                }
25887                rel2 {
25888                   relative: 1.0 0.0;
25889                   to_y: "text_vertical_rect";
25890                }
25891                align: 0.0 0.0;
25892             }
25893          }
25894          part { name: "text_center_line";
25895             type: RECT;
25896             mouse_events: 0;
25897             description { state: "default" 0.0;
25898                min: 0 1;
25899                fixed: 0 1;
25900                color: GENLIST_PART_LIST_LINE_COLOR_INC;
25901                rel1 {
25902                   relative: 1.0 0.56;
25903                   to_x: "text_vertical_rect";
25904                }
25905                rel2.relative: 1.0 0.56;
25906                align: 0.5 0.5;
25907             }
25908          }
25909          part { name: "text_bottom_line";
25910             type: RECT;
25911             mouse_events: 0;
25912             description { state: "default" 0.0;
25913                min: 0 1;
25914                fixed: 0 1;
25915                color: GENLIST_PART_LIST_LINE_COLOR_INC;
25916                rel1 {
25917                   relative: 1.0 1.0;
25918                   to_x: "text_vertical_rect";
25919                   to_y: "text_vertical_rect";
25920                }
25921                rel2 {
25922                   relative: 1.0 1.0;
25923                   to_y: "text_vertical_rect";
25924                }
25925                align: 0.0 1.0;
25926             }
25927          }
25928          part { name: "elm.text.bg.1";
25929             clip_to: "disclip";
25930             type: RECT;
25931             mouse_events: 0;
25932             scale: 1;
25933             description { state: "default" 0.0;
25934                rel1 {
25935                   relative: 1.0 1.0;
25936                   to_x: "text_vertical_rect";
25937                   to_y: "text_top_line";
25938                }
25939                rel2 {
25940                   relative: 1.0 0.0;
25941                   to_x: "elm.padding.right";
25942                   to_y: "text_center_line";
25943                }
25944                color: GENLIST_PART_BG_COLOR_INC;
25945             }
25946          }
25947          part { name: "elm.text.1";
25948             type: TEXT;
25949             mouse_events: 0;
25950             scale: 1;
25951             description { state: "default" 0.0;
25952                min: 0 GENLIST_SIZE_54_INC;
25953                rel1 {
25954                   relative: 1.0 0.0;
25955                   to_x: "elm.padding.text.right";
25956                   to_y: "elm.text.bg.1";
25957                }
25958                rel2 {
25959                   relative: 0.0 1.0;
25960                   to_x: "elm.padding.right";
25961                   to_y: "elm.text.bg.1";
25962                }
25963                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
25964                text {
25965                   font: "SLP:style=Roman";
25966                   size: GENLIST_FONT_48_INC;
25967                   align: 0.0 0.5;
25968                   text_class: "list_item";
25969                }
25970             }
25971             GENLIST_DESCRIPTION_FLIP_ENABLED
25972          }
25973          part { name: "elm.flip.content.1";
25974             type: SWALLOW;
25975             description { state: "default" 0.0;
25976                visible: 0;
25977                fixed: 1 1;
25978                rel1.to: "elm.text.1";
25979                rel2.to: "elm.text.1";
25980             }
25981             description { state: "flip_enabled" 0.0;
25982                inherit: "default" 0.0;
25983                visible: 1;
25984             }
25985          }
25986          part { name: "elm.text.bg.2";
25987             clip_to: "disclip";
25988             type: RECT;
25989             mouse_events: 0;
25990             scale: 1;
25991             description { state: "default" 0.0;
25992                rel1 {
25993                   relative: 1.0 1.0;
25994                   to_x: "text_vertical_rect";
25995                   to_y: "text_center_line";
25996                }
25997                rel2 {
25998                   relative: 1.0 0.0;
25999                   to_x: "elm.padding.right";
26000                   to_y: "text_bottom_line";
26001                }
26002                color: GENLIST_PART_BG_COLOR_INC;
26003             }
26004          }
26005          part { name: "elm.text.2";
26006             clip_to: "disclip";
26007             type: TEXT;
26008             mouse_events: 0;
26009             scale: 1;
26010             description { state: "default" 0.0;
26011                min: 0 GENLIST_SIZE_54_INC;
26012                rel1 {
26013                   relative: 1.0 0.0;
26014                   to_x: "elm.padding.text.right";
26015                   to_y: "elm.text.bg.2";
26016                }
26017                rel2 {
26018                   relative: 0.0 1.0;
26019                   to_x: "elm.padding.right";
26020                   to_y: "elm.text.bg.2";
26021                }
26022                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
26023                text {
26024                   font: "SLP:style=Roman";
26025                   size: GENLIST_FONT_48_INC;
26026                   text_class: "slp_roman";
26027                }
26028             }
26029             GENLIST_DESCRIPTION_FLIP_ENABLED
26030          }
26031          part { name: "elm.flip.content.2";
26032             type: SWALLOW;
26033             description { state: "default" 0.0;
26034                visible: 0;
26035                fixed: 1 1;
26036                rel1.to: "elm.text.2";
26037                rel2.to: "elm.text.2";
26038             }
26039             description { state: "flip_enabled" 0.0;
26040                inherit: "default" 0.0;
26041                visible: 1;
26042             }
26043          }
26044          GENLIST_PART_DISCLIP
26045       }
26046       programs {
26047          // signal: elm,state,%s,active
26048          //   a "check" item named %s went active
26049          // signal: elm,state,%s,passive
26050          //   a "check" item named %s went passive
26051          // default is passive
26052          /*program { name: "go_active";
26053             signal: "elm,state,selected";
26054             source: "elm";
26055             action: STATE_SET "selected" 0.0;
26056             target: "elm.text";
26057             target: "elm.text.sub";
26058          }
26059          program { name: "go_passive";
26060             signal: "elm,state,unselected";
26061             source: "elm";
26062             action: STATE_SET "default" 0.0;
26063             target: "elm.text";
26064             target: "elm.text.sub";
26065             transition: LINEAR 0.1;
26066          }*/
26067          program { name: "go_disabled";
26068             signal: "elm,state,disabled";
26069             source: "elm";
26070             action: STATE_SET "disabled" 0.0;
26071             target: "disclip";
26072          }
26073          program { name: "go_enabled";
26074             signal: "elm,state,enabled";
26075             source: "elm";
26076             action: STATE_SET "default" 0.0;
26077             target: "disclip";
26078          }
26079          program { name: "flip_enabled";
26080             signal: "elm,state,flip,enabled";
26081             source: "elm";
26082             action: STATE_SET "flip_enabled" 0.0;
26083             target: "elm.text.1";
26084             target: "elm.text.2";
26085             target: "elm.flip.content.1";
26086             target: "elm.flip.content.2";
26087          }
26088          program { name: "flip_disabled";
26089             signal: "elm,state,flip,disabled";
26090             source: "elm";
26091             action: STATE_SET "default" 0.0;
26092             target: "elm.text.1";
26093             target: "elm.text.2";
26094             target: "elm.flip.content.1";
26095             target: "elm.flip.content.2";
26096          }
26097       }
26098    }
26099
26100    ///////// will be removed /////////
26101    group { name: "elm/genlist/item/dialogue/1icon.2/default";
26102       alias: "elm/genlist/item_odd/dialogue/1icon.2/default";
26103       alias: "elm/genlist/item_compress/dialogue/1icon.2/default";
26104       alias: "elm/genlist/item_compress_odd/dialogue/1icon.2/default";
26105       alias: "elm/layout/dialogue/1icon.2";
26106       data.item: "stacking" "above";
26107       data.item: "selectraise" "on";
26108       data.item: "contents" "elm.icon";
26109
26110       parts {
26111          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
26112          GENLIST_PART_DIALOGUE_BG_IMAGE
26113          GENLIST_PART_BOTTOM_LINE
26114          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
26115          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
26116          GENLIST_PART_DIALOGUE_ITEM
26117          GENLIST_PART_DIALOGUE_RIGHT_LINE
26118          part { name: "elm.icon";
26119             clip_to: "disclip";
26120             type: SWALLOW;
26121             scale: 1;
26122             description { state: "default" 0.0;
26123                rel1 {
26124                   relative: 1.0 0.0;
26125                   to_x: "elm.padding.left";
26126                }
26127                rel2 {
26128                   relative: 0.0 1.0;
26129                   to_x: "elm.padding.right";
26130                }
26131             }
26132          }
26133          GENLIST_PART_DISCLIP
26134       }
26135       programs {
26136          // signal: elm,state,%s,active
26137          //   a "check" item named %s went active
26138          // signal: elm,state,%s,passive
26139          //   a "check" item named %s went passive
26140          // default is passive
26141          /*program { name: "go_active";
26142             signal: "elm,state,selected";
26143             source: "elm";
26144             action: STATE_SET "selected" 0.0;
26145             target: "bg_image";
26146             target: "elm.text";
26147          }
26148          program { name: "go_passive";
26149             signal: "elm,state,unselected";
26150             source: "elm";
26151             action: STATE_SET "default" 0.0;
26152             target: "bg_image";
26153             target: "elm.text";
26154             transition: LINEAR 0.1;
26155          }*/
26156          program { name: "go_disabled";
26157             signal: "elm,state,disabled";
26158             source: "elm";
26159             action: STATE_SET "disabled" 0.0;
26160             target: "disclip";
26161          }
26162          program { name: "go_enabled";
26163             signal: "elm,state,enabled";
26164             source: "elm";
26165             action: STATE_SET "default" 0.0;
26166             target: "disclip";
26167          }
26168       }
26169    }
26170
26171    //////////////////////// will be removed //////////////////////////
26172    group { name: "elm/genlist/item/dialogue/bg/2text.1icon/default";
26173       alias: "elm/genlist/item_odd/dialogue/bg/2text.1icon/default";
26174       alias: "elm/genlist/item_compress/dialogue/bg/2text.1icon/default";
26175       alias: "elm/genlist/item_compress_odd/dialogue/bg/2text.1icon/default";
26176       alias: "elm/genlist/item/dialogue.1icon.2text/default";
26177       alias: "elm/genlist/item_odd/dialogue.1icon.2text/default";
26178       alias: "elm/genlist/item_compress/dialogue.1icon.2text/default";
26179       alias: "elm/genlist/item_compress_odd/dialogue.1icon.2text/default";
26180       alias: "elm/layout/dialogue/bg/2text.1icon";
26181       data.item: "stacking" "above";
26182       data.item: "selectraise" "on";
26183       data.item: "texts" "elm.text.1 elm.text.2";
26184       data.item: "contents" "elm.icon";
26185       images {
26186           image: "00_list_thumbnail_bg.png" COMP;
26187       }
26188       parts {
26189          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_190_INC )
26190          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_46_INC )
26191          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_48_INC )
26192          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
26193          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
26194          part { name: "elm.icon.bg";
26195             scale: 1;
26196             description { state: "default" 0.0;
26197                min: GENLIST_SIZE_128_INC GENLIST_SIZE_128_INC;
26198                fixed: 1 1;
26199                align: 0.0 0.5;
26200                rel1 {
26201                   relative: 1.0 0.5;
26202                   to_x: "elm.padding.left";
26203                }
26204                rel2 {
26205                   relative: 1.0 0.5;
26206                   to_x: "elm.padding.left";
26207                }
26208                image {
26209                   normal: "00_list_thumbnail_bg.png";
26210                   border: 1 1 1 1;
26211                   border_scale: 1;
26212                   middle: NONE;
26213                }
26214             }
26215          }
26216          part { name: "elm.icon";
26217             type: SWALLOW;
26218             description { state: "default" 0.0;
26219                rel1.to: "elm.icon.bg";
26220                rel2.to: "elm.icon.bg";
26221             }
26222          }
26223          part { name: "elm.padding.icon.right";
26224             type: RECT;
26225             mouse_events: 0;
26226             scale: 1;
26227             description { state: "default" 0.0;
26228                min: GENLIST_PADDING_24_INC 0;
26229                fixed: 1 0;
26230                rel1 {
26231                    relative: 1.0 0.0;
26232                    to_x: "elm.icon.bg";
26233                }
26234                rel2.to_x: "elm.icon.bg";
26235                visible: 0;
26236                align: 0.0 0.5;
26237             }
26238          }
26239          part { name: "elm.text.1";
26240             clip_to: "disclip";
26241             type: TEXT;
26242             mouse_events: 0;
26243             scale: 1;
26244             description { state: "default" 0.0;
26245                min: 0 GENLIST_SIZE_54_INC;
26246                fixed: 0 1;
26247                align: 0 0;
26248                rel1 {
26249                   relative: 1.0 1.0;
26250                   to_x: "elm.padding.icon.right";
26251                   to_y: "elm.padding.top";
26252                }
26253                rel2 {
26254                   relative: 0.0 1.0;
26255                   to_x: "elm.padding.right";
26256                   to_y: "elm.padding.top";
26257                }
26258                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_MAIN_COLOR_INC;
26259                text {
26260                   font: "SLP:style=Roman";
26261                   size: GENLIST_FONT_48_INC;
26262                   align: 0.0 0.0;
26263                   text_class: "list_item";
26264                }
26265             }
26266          }
26267          part { name: "elm.text.2";
26268             clip_to: "disclip";
26269             type: TEXT;
26270             mouse_events: 0;
26271             scale: 1;
26272             description { state: "default" 0.0;
26273                rel1 {
26274                   relative: 1.0 1.0;
26275                   to_x: "elm.padding.icon.right";
26276                   to_y: "elm.text.1";
26277                }
26278                rel2 {
26279                   relative: 0.0 0.0;
26280                   to_x: "elm.padding.right";
26281                   to_y: "elm.padding.bottom";
26282                }
26283                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
26284                text {
26285                   font: "SLP:style=Medium";
26286                   size: GENLIST_FONT_32_INC;
26287                   align: 0.0 1.0;
26288                   text_class: "slp_medium";
26289                }
26290             }
26291          }
26292          GENLIST_PART_DISCLIP
26293       }
26294       programs {
26295          // signal: elm,state,%s,active
26296          //   a "check" item named %s went active
26297          // signal: elm,state,%s,passive
26298          //   a "check" item named %s went passive
26299          // default is passive
26300          /*program { name: "go_active";
26301             signal: "elm,state,selected";
26302             source: "elm";
26303             action: STATE_SET "selected" 0.0;
26304             target: "elm.text";
26305             target: "elm.text.sub";
26306          }
26307          program { name: "go_passive";
26308             signal: "elm,state,unselected";
26309             source: "elm";
26310             action: STATE_SET "default" 0.0;
26311             target: "elm.text";
26312             target: "elm.text.sub";
26313             transition: LINEAR 0.1;
26314          }*/
26315          program { name: "go_disabled";
26316             signal: "elm,state,disabled";
26317             source: "elm";
26318             action: STATE_SET "disabled" 0.0;
26319             target: "disclip";
26320          }
26321          program { name: "go_enabled";
26322             signal: "elm,state,enabled";
26323             source: "elm";
26324             action: STATE_SET "default" 0.0;
26325             target: "disclip";
26326          }
26327       }
26328    }
26329
26330 // 4.3.2 (old)
26331    group { name: "elm/genlist/item/dialogue/bg/3text.1icon/default";
26332       alias: "elm/genlist/item_odd/dialogue/bg/3text.1icon/default";
26333       alias: "elm/genlist/item_compress/dialogue/bg/3text.1icon/default";
26334       alias: "elm/genlist/item_compress_odd/dialogue/bg/3text.1icon/default";
26335       alias: "elm/layout/dialogue/bg/3text.1icon";
26336       data.item: "stacking" "above";
26337       data.item: "selectraise" "on";
26338       data.item: "texts" "elm.text.1 elm.text.2 elm.text.3";
26339       data.item: "contents" "elm.icon";
26340       images {
26341           image: "00_list_thumbnail_bg.png" COMP;
26342       }
26343       parts {
26344          GENLIST_PART_DIALOGUE_BASE( GENLIST_HEIGHT_190_INC )
26345          GENLIST_PART_PADDING_TOP( GENLIST_PADDING_34_INC )
26346          GENLIST_PART_PADDING_BOTTOM( GENLIST_PADDING_34_INC )
26347          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_32_INC )
26348          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
26349          part { name: "elm.icon.bg";
26350             scale: 1;
26351             description { state: "default" 0.0;
26352                min: GENLIST_SIZE_128_INC GENLIST_SIZE_128_INC;
26353                fixed: 1 1;
26354                align: 0.0 0.5;
26355                rel1 {
26356                   relative: 1.0 0.5;
26357                   to_x: "elm.padding.left";
26358                }
26359                rel2 {
26360                   relative: 1.0 0.5;
26361                   to_x: "elm.padding.left";
26362                }
26363                image {
26364                   normal: "00_list_thumbnail_bg.png";
26365                   border: 1 1 1 1;
26366                   border_scale: 1;
26367                   middle: NONE;
26368                }
26369             }
26370          }
26371          part { name: "elm.icon";
26372             type: SWALLOW;
26373             description { state: "default" 0.0;
26374                rel1.to: "elm.icon.bg";
26375                rel2.to: "elm.icon.bg";
26376             }
26377          }
26378          part { name: "elm.padding.icon.right";
26379             type: RECT;
26380             mouse_events: 0;
26381             scale: 1;
26382             description { state: "default" 0.0;
26383                min: GENLIST_PADDING_24_INC 0;
26384                fixed: 1 0;
26385                rel1 {
26386                    relative: 1.0 0.0;
26387                    to_x: "elm.icon.bg";
26388                }
26389                rel2.to_x: "elm.icon.bg";
26390                visible: 0;
26391                align: 0.0 0.5;
26392             }
26393          }
26394          part { name: "elm.text.1";
26395             clip_to: "disclip";
26396             type: TEXT;
26397             mouse_events: 0;
26398             scale: 1;
26399             description { state: "default" 0.0;
26400                min: 0 GENLIST_SIZE_54_INC;
26401                fixed: 0 1;
26402                align: 0 0;
26403                rel1 {
26404                   relative: 1.0 1.0;
26405                   to_x: "elm.padding.icon.right";
26406                   to_y: "elm.padding.top";
26407                }
26408                rel2 {
26409                   relative: 0.0 1.0;
26410                   to_x: "elm.padding.right";
26411                   to_y: "elm.padding.top";
26412                }
26413                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_MAIN_COLOR_INC;
26414                text {
26415                   font: "SLP:style=Roman";
26416                   size: GENLIST_FONT_48_INC;
26417                   align: 0.0 0.0;
26418                   text_class: "list_item";
26419                }
26420             }
26421          }
26422          part { name: "elm.text.2";
26423             clip_to: "disclip";
26424             type: TEXT;
26425             mouse_events: 0;
26426             scale: 1;
26427             description { state: "default" 0.0;
26428                rel1 {
26429                   relative: 1.0 1.0;
26430                   to_x: "elm.padding.icon.right";
26431                   to_y: "elm.text.1";
26432                }
26433                rel2 {
26434                   relative: 0.0 0.0;
26435                   to_x: "elm.padding.right";
26436                   to_y: "elm.text.3";
26437                }
26438                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
26439                text {
26440                   font: "SLP:style=Medium";
26441                   size: GENLIST_FONT_32_INC;
26442                   align: 0.0 1.0;
26443                   text_class: "slp_medium";
26444                }
26445             }
26446          }
26447          part { name: "elm.text.3";
26448             clip_to: "disclip";
26449             type: TEXT;
26450             mouse_events: 0;
26451             scale: 1;
26452             description { state: "default" 0.0;
26453                min: 0 GENLIST_ICON_SMALL_SIZE;
26454                fixed: 0 1;
26455                align: 0 1;
26456                rel1 {
26457                   relative: 1.0 0.0;
26458                   to_x: "elm.padding.icon.right";
26459                   to_y: "elm.padding.bottom";
26460                }
26461                rel2 {
26462                   relative: 0.0 0.0;
26463                   to_x: "elm.padding.right";
26464                   to_y: "elm.padding.bottom";
26465                }
26466                color: GENLIST_DIALOGUE_FONT_DETAIL_TEXT_SUB_COLOR_INC;
26467                text {
26468                   font: "SLP:style=Medium";
26469                   size: GENLIST_FONT_32_INC;
26470                   align: 0.0 1.0;
26471                   text_class: "slp_medium";
26472                }
26473             }
26474          }
26475          GENLIST_PART_DISCLIP
26476       }
26477       programs {
26478          // signal: elm,state,%s,active
26479          //   a "check" item named %s went active
26480          // signal: elm,state,%s,passive
26481          //   a "check" item named %s went passive
26482          // default is passive
26483          /*program { name: "go_active";
26484             signal: "elm,state,selected";
26485             source: "elm";
26486             action: STATE_SET "selected" 0.0;
26487             target: "elm.text";
26488             target: "elm.text.sub";
26489          }
26490          program { name: "go_passive";
26491             signal: "elm,state,unselected";
26492             source: "elm";
26493             action: STATE_SET "default" 0.0;
26494             target: "elm.text";
26495             target: "elm.text.sub";
26496             transition: LINEAR 0.1;
26497          }*/
26498          program { name: "go_disabled";
26499             signal: "elm,state,disabled";
26500             source: "elm";
26501             action: STATE_SET "disabled" 0.0;
26502             target: "disclip";
26503          }
26504          program { name: "go_enabled";
26505             signal: "elm,state,enabled";
26506             source: "elm";
26507             action: STATE_SET "default" 0.0;
26508             target: "disclip";
26509          }
26510       }
26511   }
26512
26513 ////////////////////////////////////////////////////////
26514 // Check that belows are used
26515    group { name: "elm/genlist/item/1icon/with_no_line/default";
26516       alias: "elm/genlist/item_odd/1icon/with_no_line/default";
26517       alias: "elm/genlist/item_compress/1icon/with_no_line/default";
26518       alias: "elm/genlist/item_compress_odd/1icon/with_no_line/default";
26519       data.item: "stacking" "above";
26520       data.item: "selectraise" "on";
26521       data.item: "contents" "elm.icon";
26522       parts {
26523          part { name: "base";
26524             type: RECT;
26525             repeat_events: 1;
26526             scale: 1;
26527             description { state: "default" 0.0;
26528                color: GENLIST_PART_BG_COLOR_INC;
26529             }
26530          }
26531          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
26532          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
26533          part { name: "elm.icon";
26534             clip_to: "disclip";
26535             type: SWALLOW;
26536             description { state: "default" 0.0;
26537                rel1 {
26538                   relative: 1.0 0.0;
26539                   to_x: "elm.padding.left";
26540                }
26541                rel2 {
26542                   relative: 0.0 1.0;
26543                   to_x: "elm.padding.right";
26544                }
26545             }
26546          }
26547          GENLIST_PART_DISCLIP
26548       }
26549       programs {
26550          // signal: elm,state,%s,active
26551          //   a "check" item named %s went active
26552          // signal: elm,state,%s,passive
26553          //   a "check" item named %s went passive
26554          // default is passive
26555          program { name: "go_disabled";
26556             signal: "elm,state,disabled";
26557             source: "elm";
26558             action: STATE_SET "disabled" 0.0;
26559             target: "disclip";
26560          }
26561          program { name: "go_enabled";
26562             signal: "elm,state,enabled";
26563             source: "elm";
26564             action: STATE_SET "default" 0.0;
26565             target: "disclip";
26566          }
26567       }
26568    }
26569    group { name: "elm/genlist/item/1icon/default";
26570       alias: "elm/genlist/item_odd/1icon/default";
26571       alias: "elm/genlist/item_compress/1icon/default";
26572       alias: "elm/genlist/item_compress_odd/1icon/default";
26573       inherit: "elm/genlist/item/1icon/with_no_line/default";
26574       parts {
26575          part { name: "bottom_line";
26576             insert_after: "elm.padding.right";
26577             type: RECT;
26578             mouse_events: 0;
26579             description { state: "default" 0.0;
26580                min: 0 1;
26581                fixed: 0 1;
26582                visible: 1;
26583                color: GENLIST_PART_LIST_LINE_COLOR_INC;
26584                rel1 {
26585                   relative: 0.0 1.0;
26586                   offset: 0 -1;
26587                }
26588             }
26589          }
26590       }
26591    }
26592    group { name: "elm/genlist/item/1text.2/default";
26593       alias: "elm/genlist/item_odd/1text.2/default";
26594       alias: "elm/genlist/item_compress/1text.2/default";
26595       alias: "elm/genlist/item_compress_odd/1text.2/default";
26596       data.item: "stacking" "above";
26597       data.item: "selectraise" "on";
26598       data.item: "texts" "elm.text";
26599       data.item: "flips" "elm.flip.content";
26600       images {
26601          image: "00_list_bar_press_1x80.png" COMP;
26602       }
26603       parts {
26604          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
26605          GENLIST_PART_BG_IMAGE
26606          GENLIST_PART_BOTTOM_LINE
26607          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
26608          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
26609          part { name: "temp_center_line"; //temporary
26610             clip_to: "disclip";
26611             type: RECT;
26612             mouse_events: 0;
26613             scale: 1;
26614             description { state: "default" 0.0;
26615                rel1 {
26616                   relative: 0.0 0.5;
26617                   to: "base";
26618                }
26619                rel2 {
26620                   relative: 1.0 0.5;
26621                   to: "base";
26622                }
26623             }
26624          }
26625          part { name: "elm.text";
26626             clip_to: "disclip";
26627             type: TEXTBLOCK;
26628             mouse_events: 0;
26629             scale: 1;
26630             multiline: 0;
26631             description { state: "default" 0.0;
26632                fixed: 1 1;
26633                rel1 {
26634                   relative: 1.0 0.5;
26635                   to_x: "elm.padding.left";
26636                   to_y: "temp_center_line";
26637                }
26638                rel2 {
26639                   relative: 0.0 0.5;
26640                   to_x: "elm.padding.right";
26641                   to_y: "temp_center_line";
26642                }
26643                align: 0.0 0.5;
26644                text {
26645                   style: "genlist_default_textblock_style";
26646                   min: 0 1;
26647                   align: 0.0 0.5;
26648                }
26649             }
26650             description { state: "selected" 0.0;
26651                inherit: "default" 0.0;
26652                text.style: "genlist_default_textblock_selected_style";
26653             }
26654             GENLIST_DESCRIPTION_INVISIBLE_SELECTED
26655             GENLIST_DESCRIPTION_FLIP_ENABLED
26656          }
26657          GENLIST_PART_FLIP
26658          GENLIST_PART_DISCLIP
26659       }
26660       programs {
26661          // signal: elm,state,%s,active
26662          //   a "check" item named %s went active
26663          // signal: elm,state,%s,passive
26664          //   a "check" item named %s went passive
26665          // default is passive
26666          program { name: "go_active";
26667             signal: "elm,state,selected";
26668             source: "elm";
26669             action: STATE_SET "selected" 0.0;
26670             GENLIST_PROGRAM_SCRIPT_FLIP_SELECT_1TEXT
26671             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
26672          }
26673          program { name: "go_passive";
26674             signal: "elm,state,unselected";
26675             source: "elm";
26676             action: STATE_SET "default" 0.0;
26677             target: "bg_image";
26678             target: "elm.text";
26679             transition: LINEAR 0.1;
26680          }
26681          program { name: "go_disabled";
26682             signal: "elm,state,disabled";
26683             source: "elm";
26684             action: STATE_SET "disabled" 0.0;
26685             target: "disclip";
26686          }
26687          program { name: "go_enabled";
26688             signal: "elm,state,enabled";
26689             source: "elm";
26690             action: STATE_SET "default" 0.0;
26691             target: "disclip";
26692          }
26693          //GENLIST_PROGRAM_FLIP_1TEXT
26694          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
26695       }
26696    }
26697
26698 // 3.1.17
26699    group { name: "elm/genlist/item/1text.2icon.4/default";
26700       alias: "elm/genlist/item_odd/1text.2icon.4/default";
26701       alias: "elm/genlist/item_compress/1text.2icon.4/default";
26702       alias: "elm/genlist/item_compress_odd/1text.2icon.4/default";
26703       data.item: "stacking" "above";
26704       data.item: "selectraise" "on";
26705       data.item: "texts" "elm.text";
26706       data.item: "contents" "elm.icon.1 elm.icon.2";
26707       data.item: "flips" "elm.flip.content";
26708       images {
26709          image: "00_list_bar_press_1x80.png" COMP;
26710       }
26711       parts {
26712          GENLIST_PART_BASE( GENLIST_HEIGHT_1LINE )
26713          GENLIST_PART_BG_IMAGE
26714          GENLIST_PART_BOTTOM_LINE
26715          GENLIST_PART_PADDING_LEFT( GENLIST_PADDING_SIZE_LEFT )
26716          GENLIST_PART_PADDING_RIGHT( GENLIST_PADDING_SIZE_RIGHT )
26717          part { name: "elm.icon.1";
26718             clip_to: "disclip";
26719             type: SWALLOW;
26720             scale: 1;
26721             description { state: "default" 0.0;
26722                min: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
26723                max: GENLIST_SIZE_60_INC GENLIST_SIZE_60_INC;
26724                fixed: 1 1;
26725                rel1 {
26726                   relative: 1.0 0.0;
26727                   to_x: "elm.padding.left";
26728                }
26729                rel2.to_x: "elm.padding.left";
26730                align: 0.0 0.5;
26731             }
26732             GENLIST_DESCRIPTION_FLIP_ENABLED
26733          }
26734          part { name: "elm.padding.icon1.right";
26735             clip_to: "disclip";
26736             type: RECT;
26737             scale: 1;
26738             description { state: "default" 0.0;
26739                min: GENLIST_PADDING_16_INC 0;
26740                fixed: 1 0;
26741                rel1 {
26742                   relative: 1.0 0.0;
26743                   to_x: "elm.icon.1";
26744                }
26745                rel2.to_x: "elm.icon.1";
26746                visible: 0;
26747             }
26748          }
26749          part { name: "elm.icon.2";
26750             clip_to: "disclip";
26751             type: SWALLOW;
26752             scale: 1;
26753             description { state: "default" 0.0;
26754                min: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
26755                max: GENLIST_ICON_BIG_SIZE GENLIST_ICON_BIG_SIZE;
26756                fixed: 1 1;
26757                rel1 {
26758                   relative: 0.0 0.0;
26759                   to_x: "elm.padding.right";
26760                }
26761                rel2 {
26762                   relative: 0.0 1.0;
26763                   to_x: "elm.padding.right";
26764                }
26765                align: 1.0 0.5;
26766             }
26767             GENLIST_DESCRIPTION_FLIP_ENABLED
26768          }
26769          part { name: "elm.padding.icon2.left";
26770             clip_to: "disclip";
26771             type: RECT;
26772             scale: 1;
26773             description { state: "default" 0.0;
26774                min: GENLIST_PADDING_16_INC 0;
26775                fixed: 1 0;
26776                rel1.to_x: "elm.icon.2";
26777                rel2 {
26778                   relative: 0.0 1.0;
26779                   to_x: "elm.icon.2";
26780                }
26781                align: 1.0 0.0;
26782                visible: 0;
26783             }
26784          }
26785          part { name: "elm.text";
26786             clip_to: "disclip";
26787             type: TEXT;
26788             mouse_events: 0;
26789             scale: 1;
26790             description { state: "default" 0.0;
26791                rel1 {
26792                   relative: 1.0 0.0;
26793                   to_x: "elm.padding.icon1.right";
26794                }
26795                rel2 {
26796                   relative: 0.0 1.0;
26797                   to_x: "elm.padding.icon2.left";
26798                }
26799                align: 0.0 0.5;
26800                color: GENLIST_PART_FONT_LIST_MAIN_TEXT_UNREAD_COLOR_INC;
26801                text {
26802                   font: "SLP:style=Roman";
26803                   size: GENLIST_FONT_44_INC;
26804                   min: 0 1;
26805                   align: 0.0 0.5;
26806                   text_class: "list_item";
26807                }
26808             }
26809             description { state: "selected" 0.0;
26810                inherit: "default" 0.0;
26811                color: GENLIST_PART_TEXT_PRESS_COLOR_INC;
26812             }
26813             GENLIST_DESCRIPTION_FLIP_ENABLED
26814          }
26815          GENLIST_PART_FLIP
26816          GENLIST_PART_DISCLIP
26817       }
26818       programs {
26819          program { name: "go_active";
26820             signal: "elm,state,selected";
26821             source: "elm";
26822             action: STATE_SET "selected" 0.0;
26823             target: "bg_image";
26824             target: "elm.text";
26825             GENLIST_PROGRAM_AFTER_PLAY_BUTTON_PRESS
26826          }
26827          program { name: "go_passive";
26828             signal: "elm,state,unselected";
26829             source: "elm";
26830             action: STATE_SET "default" 0.0;
26831             target: "bg_image";
26832             target: "elm.text";
26833             transition: LINEAR 0.1;
26834          }
26835          program { name: "go_disabled";
26836             signal: "elm,state,disabled";
26837             source: "elm";
26838             action: STATE_SET "disabled" 0.0;
26839             target: "disclip";
26840          }
26841          program { name: "go_enabled";
26842             signal: "elm,state,enabled";
26843             source: "elm";
26844             action: STATE_SET "default" 0.0;
26845             target: "disclip";
26846          }
26847          GENLIST_PROGRAM_FLIP_1TEXT_2ICON
26848          GENLIST_PROGRAM_PLAY_BUTTON_PRESS
26849       }
26850    }
26851